diff --git a/packages/sonataflow-deployment-webapp/package.json b/packages/sonataflow-deployment-webapp/package.json index 8a0223e7f51..2231e2d12e9 100644 --- a/packages/sonataflow-deployment-webapp/package.json +++ b/packages/sonataflow-deployment-webapp/package.json @@ -43,17 +43,12 @@ "@patternfly/patternfly": "^4.224.2", "@patternfly/react-core": "^4.276.6", "@patternfly/react-icons": "^4.93.6", - "@patternfly/react-table": "^4.112.39", - "apollo-cache-inmemory": "1.6.6", - "apollo-client": "2.6.10", - "apollo-link-http": "1.5.17", "openapi-types": "^7.0.1", "react": "^17.0.2", "react-dom": "^17.0.2", "react-router": "^5.3.4", "react-router-dom": "^5.3.4", - "typescript": "^5.5.3", - "util": "^0.12.5" + "typescript": "^5.5.3" }, "devDependencies": { "@babel/core": "^7.16.0", diff --git a/packages/sonataflow-deployment-webapp/src/App.tsx b/packages/sonataflow-deployment-webapp/src/App.tsx index bc52ba624d7..23be87434b0 100644 --- a/packages/sonataflow-deployment-webapp/src/App.tsx +++ b/packages/sonataflow-deployment-webapp/src/App.tsx @@ -24,6 +24,7 @@ import { OpenApiContextProvider } from "./context/OpenApiContextProvider"; import { RoutesSwitch } from "./navigation/RoutesSwitch"; import { DeploymentWorkflowListContextProvider } from "./runtimeTools/contexts/DeploymentWorkflowListContextProvider"; import { DeploymentWorkflowDetailsContextProvider } from "./runtimeTools/contexts/DeploymentWorkflowDetailsContextProvider"; +import { DeploymentWorkflowDefinitionListContextProvider } from "./runtimeTools/contexts/DeploymentWorkflowDefinitionListContextProvider"; export const App = () => ( @@ -32,6 +33,7 @@ export const App = () => ( [OpenApiContextProvider, {}], [DeploymentWorkflowListContextProvider, {}], [DeploymentWorkflowDetailsContextProvider, {}], + [DeploymentWorkflowDefinitionListContextProvider, {}], [RoutesSwitch, {}] )} diff --git a/packages/sonataflow-deployment-webapp/src/navigation/RoutesSwitch.tsx b/packages/sonataflow-deployment-webapp/src/navigation/RoutesSwitch.tsx index b363566dcf4..a146b7dbe3f 100644 --- a/packages/sonataflow-deployment-webapp/src/navigation/RoutesSwitch.tsx +++ b/packages/sonataflow-deployment-webapp/src/navigation/RoutesSwitch.tsx @@ -21,7 +21,6 @@ import { Redirect, Route, Switch } from "react-router-dom"; import { APPDATA_JSON_FILENAME } from "../AppConstants"; import { ErrorKind, ErrorPage } from "../pages/ErrorPage"; import { NoMatchPage } from "../pages/NoMatchPage"; -import { Workflows } from "../pages/Workflows/"; import { CloudEventFormPage } from "../pages/Workflows/CloudEventFormPage"; import { WorkflowFormPage } from "../pages/Workflows/WorkflowFormPage"; import { routes } from "../routes"; @@ -36,9 +35,6 @@ export function RoutesSwitch() { - - - @@ -46,7 +42,7 @@ export function RoutesSwitch() { - + diff --git a/packages/sonataflow-deployment-webapp/src/navigation/RuntimeToolsRoutesSwitch.tsx b/packages/sonataflow-deployment-webapp/src/navigation/RuntimeToolsRoutesSwitch.tsx index a4a1c3a5afb..50c00c402ad 100644 --- a/packages/sonataflow-deployment-webapp/src/navigation/RuntimeToolsRoutesSwitch.tsx +++ b/packages/sonataflow-deployment-webapp/src/navigation/RuntimeToolsRoutesSwitch.tsx @@ -21,10 +21,14 @@ import { Route, Switch } from "react-router-dom"; import { RuntimeToolsWorkflowInstances } from "../runtimeTools/pages/RuntimeToolsWorkflowInstances"; import { routes } from "../routes"; import { RuntimeToolsWorkflowDetails } from "../runtimeTools/pages/RuntimeToolsWorkflowDetails"; +import { RuntimeToolsWorkflowDefinitions } from "../runtimeTools/pages/RuntimeToolsWorkflowDefinitions"; export function RuntimeToolsRoutesSwitch() { return ( + + + diff --git a/packages/sonataflow-deployment-webapp/src/pages/Workflows/Workflows.tsx b/packages/sonataflow-deployment-webapp/src/pages/Workflows/Workflows.tsx deleted file mode 100644 index f6378bd3e74..00000000000 --- a/packages/sonataflow-deployment-webapp/src/pages/Workflows/Workflows.tsx +++ /dev/null @@ -1,178 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF 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 { PromiseStateStatus, PromiseStateWrapper } from "@kie-tools-core/react-hooks/dist/PromiseState"; -import { Button } from "@patternfly/react-core/dist/js/components/Button"; -import { EmptyState, EmptyStateBody, EmptyStateIcon } from "@patternfly/react-core/dist/js/components/EmptyState"; -import { PageSection } from "@patternfly/react-core/dist/js/components/Page"; -import { Skeleton } from "@patternfly/react-core/dist/js/components/Skeleton"; -import { Text, TextContent, TextVariants } from "@patternfly/react-core/dist/js/components/Text"; -import { Title } from "@patternfly/react-core/dist/js/components/Title"; -import { Toolbar, ToolbarContent, ToolbarItem } from "@patternfly/react-core/dist/js/components/Toolbar"; -import { Bullseye } from "@patternfly/react-core/dist/js/layouts/Bullseye"; -import { CubesIcon, ExclamationCircleIcon, PlayIcon } from "@patternfly/react-icons/dist/js/icons"; -import { Table } from "@patternfly/react-table/dist/js/components/Table"; -import { Tbody, Td, Th, Thead, Tr } from "@patternfly/react-table/dist/js/components/TableComposable"; -import { KUBESMARTS_URL } from "../../AppConstants"; -import { useOpenApi } from "../../context/OpenApiContext"; -import { BasePage } from "../BasePage"; -import { Link } from "react-router-dom"; -import { routes } from "../../routes"; -import { ErrorKind, ErrorPage } from "../ErrorPage"; - -export function Workflows() { - const openApi = useOpenApi(); - - if (openApi.openApiPromise.status === PromiseStateStatus.REJECTED) { - return ; - } - - return ( - - - - Workflows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - } - rejected={(errors) => } - resolved={(data) => - !data.tags || !data.tags.length ? ( - - ) : ( - data.tags?.map((tag) => ( - - - - - - )) - ) - } - /> - -
Workflow NameEndpointActions
- - - - - -
- - - - - -
{tag.name} - {window.location.origin}/{tag.name} - - - - -
-
-
- ); -} - -function EmptyTableState() { - return ( - - - - - - - {`Nothing here`} - - - - - Start by creating a model on{" "} - - {KUBESMARTS_URL} - - - - - - - - - ); -} - -function ErrorTableState(props: { errors: string[] }) { - return ( - - - - - - - {`Unable to connect`} - - - - There was a problem fetching the data: {props.errors.join(", ")}! - - - - - - - ); -} diff --git a/packages/sonataflow-deployment-webapp/src/pages/Workflows/index.tsx b/packages/sonataflow-deployment-webapp/src/pages/Workflows/index.tsx index 0ce6c100c96..37e3ef88596 100644 --- a/packages/sonataflow-deployment-webapp/src/pages/Workflows/index.tsx +++ b/packages/sonataflow-deployment-webapp/src/pages/Workflows/index.tsx @@ -17,5 +17,4 @@ * under the License. */ -export * from "./Workflows"; export * from "./WorkflowFormPage"; diff --git a/packages/sonataflow-deployment-webapp/src/routes/index.ts b/packages/sonataflow-deployment-webapp/src/routes/index.ts index a1dccb67c14..f7689635268 100644 --- a/packages/sonataflow-deployment-webapp/src/routes/index.ts +++ b/packages/sonataflow-deployment-webapp/src/routes/index.ts @@ -30,6 +30,7 @@ export enum QueryParams { export enum PathParams { WORKFLOW_ID = "workflowId", + WORKFLOW_NAME = "workflowName", } export class Route< @@ -105,8 +106,8 @@ export const routes = { queryParams: QueryParams.FILTERS | QueryParams.SORT_BY; pathParams: PathParams.WORKFLOW_ID; }>(({ workflowId }) => RUNTIME_TOOLS_ROUTE + `/workflow-details/${workflowId}`), + workflowDefinitions: new Route<{}>(() => RUNTIME_TOOLS_ROUTE + `/workflow-definitions`), }, - dataJson: new Route<{}>(() => "/" + APPDATA_JSON_FILENAME), openApiJson: new Route<{}>(() => "/q/openapi.json"), }; diff --git a/packages/sonataflow-deployment-webapp/src/runtimeTools/contexts/DeploymentWorkflowDefinitionListContextProvider.tsx b/packages/sonataflow-deployment-webapp/src/runtimeTools/contexts/DeploymentWorkflowDefinitionListContextProvider.tsx new file mode 100644 index 00000000000..8568e5e0d88 --- /dev/null +++ b/packages/sonataflow-deployment-webapp/src/runtimeTools/contexts/DeploymentWorkflowDefinitionListContextProvider.tsx @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF 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 React from "react"; +import { WorkflowDefinitionListContextProvider } from "@kie-tools/runtime-tools-swf-webapp-components/dist/WorkflowDefinitionList"; +import { useApp } from "../../context/AppContext"; + +export function DeploymentWorkflowDefinitionListContextProvider(props: React.PropsWithChildren<{}>) { + const app = useApp(); + + return ( + + {props.children} + + ); +} diff --git a/packages/sonataflow-deployment-webapp/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx b/packages/sonataflow-deployment-webapp/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx new file mode 100644 index 00000000000..17208fb4325 --- /dev/null +++ b/packages/sonataflow-deployment-webapp/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF 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, { useCallback } from "react"; +import { WorkflowDefinitionListContainer } from "@kie-tools/runtime-tools-swf-webapp-components/dist/WorkflowDefinitionListContainer"; +import { Card } from "@patternfly/react-core/dist/esm/components/Card"; +import { Page, PageSection } from "@patternfly/react-core/dist/js/components/Page"; +import { Text, TextContent, TextVariants } from "@patternfly/react-core/dist/js/components/Text"; +import { useHistory } from "react-router"; +import { routes } from "../../routes"; +import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; +import { CloudEventPageSource } from "@kie-tools/runtime-tools-swf-webapp-components/dist/CloudEventForm"; +import { BasePage } from "../../pages/BasePage"; + +const PAGE_TITLE = "Workflow Definitions"; + +export function RuntimeToolsWorkflowDefinitions() { + const history = useHistory(); + + const onOpenWorkflowForm = useCallback( + (workflowDefinition: WorkflowDefinition) => { + history.push({ + pathname: routes.workflows.form.path({ workflowId: workflowDefinition.workflowName }), + state: { + workflowDefinition: { + workflowName: workflowDefinition.workflowName, + endpoint: workflowDefinition.endpoint, + serviceUrl: workflowDefinition.serviceUrl, + }, + }, + }); + }, + [history] + ); + + const onOpenTriggerCloudEventForWorkflow = useCallback( + (workflowDefinition: WorkflowDefinition) => { + history.push({ + pathname: routes.workflows.cloudEvent.path({ + workflowId: workflowDefinition.workflowName, + }), + state: { + workflowDefinition: { + workflowName: workflowDefinition.workflowName, + endpoint: workflowDefinition.endpoint, + serviceUrl: workflowDefinition.serviceUrl, + }, + source: CloudEventPageSource.DEFINITIONS, + }, + }); + }, + [history] + ); + + return ( + + + + + {PAGE_TITLE} + + Start new workflow instances from the SonataFlow service linked in your Runtime Tools settings. + + + + + + + + + + + + ); +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6e4a4dfe55a..34bb97c7a6a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7177,16 +7177,16 @@ importers: devDependencies: '@babel/core': specifier: ^7.16.0 - version: 7.24.9 + version: 7.23.9 '@babel/preset-env': specifier: ^7.16.0 - version: 7.24.7(@babel/core@7.24.9) + version: 7.23.9(@babel/core@7.23.9) '@graphql-codegen/add': specifier: ^3.2.3 version: 3.2.3(graphql@14.3.1) '@graphql-codegen/cli': specifier: ^2.16.5 - version: 2.16.5(@babel/core@7.24.9)(@swc/core@1.3.92)(@types/node@22.5.2)(encoding@0.1.13)(enquirer@2.4.1)(graphql@14.3.1)(typescript@5.5.3) + version: 2.16.5(@babel/core@7.23.9)(@swc/core@1.3.92)(@types/node@22.5.2)(encoding@0.1.13)(enquirer@2.4.1)(graphql@14.3.1)(typescript@5.5.3) '@graphql-codegen/introspection': specifier: ^2.2.3 version: 2.2.3(encoding@0.1.13)(graphql@14.3.1) @@ -7324,7 +7324,7 @@ importers: version: 4.15.1(webpack-cli@4.10.0)(webpack@5.94.0) webpack-merge: specifier: ^5.9.0 - version: 5.10.0 + version: 5.9.0 packages/runtime-tools-process-dev-ui-webapp: dependencies: @@ -7372,7 +7372,7 @@ importers: version: 4.224.2 '@patternfly/react-code-editor': specifier: 4.82.113 - version: 4.82.113(react-dom@17.0.2(react@17.0.2))(react-monaco-editor@0.49.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2))(react@17.0.2) + version: 4.82.113(react-dom@17.0.2(react@17.0.2))(react-monaco-editor@0.51.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2))(react@17.0.2) '@patternfly/react-core': specifier: ^4.276.6 version: 4.276.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -7433,19 +7433,19 @@ importers: devDependencies: '@babel/core': specifier: ^7.16.0 - version: 7.24.9 + version: 7.23.9 '@babel/preset-env': specifier: ^7.16.0 - version: 7.24.7(@babel/core@7.24.9) + version: 7.23.9(@babel/core@7.23.9) '@babel/preset-react': specifier: ^7.16.0 - version: 7.22.15(@babel/core@7.24.9) + version: 7.22.15(@babel/core@7.23.9) '@graphql-codegen/add': specifier: ^3.2.3 version: 3.2.3(graphql@14.3.1) '@graphql-codegen/cli': specifier: ^2.16.5 - version: 2.16.5(@babel/core@7.24.9)(@swc/core@1.3.92)(@types/node@22.5.2)(encoding@0.1.13)(enquirer@2.4.1)(graphql@14.3.1)(typescript@5.5.3) + version: 2.16.5(@babel/core@7.23.9)(@swc/core@1.3.92)(@types/node@22.5.2)(encoding@0.1.13)(enquirer@2.4.1)(graphql@14.3.1)(typescript@5.5.3) '@graphql-codegen/introspection': specifier: ^2.2.3 version: 2.2.3(encoding@0.1.13)(graphql@14.3.1) @@ -7472,7 +7472,7 @@ importers: version: link:../tsconfig '@types/history': specifier: ^4.7.3 - version: 4.7.11 + version: 4.7.5 '@types/react': specifier: ^17.0.6 version: 17.0.21 @@ -7598,7 +7598,7 @@ importers: version: 4.15.1(webpack-cli@4.10.0)(webpack@5.94.0) webpack-merge: specifier: ^5.9.0 - version: 5.10.0 + version: 5.9.0 packages/runtime-tools-process-enveloped-components: dependencies: @@ -10636,18 +10636,6 @@ importers: '@patternfly/react-icons': specifier: ^4.93.6 version: 4.93.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@patternfly/react-table': - specifier: ^4.112.39 - version: 4.112.39(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - apollo-cache-inmemory: - specifier: 1.6.6 - version: 1.6.6(graphql@14.3.1) - apollo-client: - specifier: 2.6.10 - version: 2.6.10(graphql@14.3.1) - apollo-link-http: - specifier: 1.5.17 - version: 1.5.17(graphql@14.3.1) openapi-types: specifier: ^7.0.1 version: 7.2.3 @@ -10666,9 +10654,6 @@ importers: typescript: specifier: ^5.5.3 version: 5.5.3 - util: - specifier: ^0.12.5 - version: 0.12.5 devDependencies: '@babel/core': specifier: ^7.16.0 @@ -13227,7 +13212,7 @@ importers: version: 7.16.11(@babel/core@7.16.12) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.5.2)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.5.2)) + version: 29.7.0(@types/node@20.14.2)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2)) jest-junit: specifier: ^16.0.0 version: 16.0.0 @@ -19017,6 +19002,9 @@ packages: '@types/estree@0.0.51': resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + '@types/estree@1.0.1': + resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} @@ -26563,18 +26551,36 @@ packages: peerDependencies: postcss: ^8.4.31 + postcss-modules-extract-imports@3.0.0: + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + 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@4.0.0: + resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + 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@3.0.0: + resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + postcss-modules-scope@3.2.0: resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} engines: {node: ^10 || ^12 || >= 14} @@ -26678,6 +26684,10 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + postcss@8.4.12: + resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==} + engines: {node: ^10 || ^12 || >=14} + postcss@8.4.38: resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} @@ -27150,6 +27160,13 @@ packages: monaco-editor: ^0.33.0 react: '>=17 <= 18' + react-monaco-editor@0.51.0: + resolution: {integrity: sha512-6jx1V8p6gHVKJHFaTvicOtmlhFjOJhekobeNd92ZAo7F5UvAin1cF7bxWLCKgtxClYZ7CB3Ar284Kpbhj22FpQ==} + peerDependencies: + '@types/react': ^17.0.6 + monaco-editor: ^0.34.1 + react: '>=17 <= 18' + react-pure-loaders@3.0.1: resolution: {integrity: sha512-FwJy+NNCGS0ojtslaY0ubhzayw1zgYCY3nGKLEAMjNhIH5p/ld+MOe/JIdh50dUaYf3rqH4TNlJLPl/iy9UOLA==} peerDependencies: @@ -30119,7 +30136,7 @@ snapshots: dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1801.3(chokidar@3.6.0) - '@angular-devkit/build-webpack': 0.1801.3(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.92.1(esbuild@0.21.5)))(webpack@5.92.1(esbuild@0.21.5)) + '@angular-devkit/build-webpack': 0.1801.3(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0))(webpack@5.92.1(esbuild@0.21.5)) '@angular-devkit/core': 18.1.3(chokidar@3.6.0) '@angular/build': 18.1.3(@angular/compiler-cli@18.1.3(@angular/compiler@18.1.3(@angular/core@18.1.3(rxjs@7.5.2)(zone.js@0.14.8)))(typescript@5.5.3))(@types/node@22.5.2)(chokidar@3.6.0)(less@4.2.0)(postcss@8.4.38)(stylus@0.59.0)(terser@5.29.2)(typescript@5.5.3) '@angular/compiler-cli': 18.1.3(@angular/compiler@18.1.3(@angular/core@18.1.3(rxjs@7.5.2)(zone.js@0.14.8)))(typescript@5.5.3) @@ -30205,7 +30222,7 @@ snapshots: - utf-8-validate - webpack-cli - '@angular-devkit/build-webpack@0.1801.3(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.92.1(esbuild@0.21.5)))(webpack@5.92.1(esbuild@0.21.5))': + '@angular-devkit/build-webpack@0.1801.3(chokidar@3.6.0)(webpack-dev-server@5.0.4(webpack@5.94.0))(webpack@5.92.1(esbuild@0.21.5))': dependencies: '@angular-devkit/architect': 0.1801.3(chokidar@3.6.0) rxjs: 7.8.1 @@ -30247,7 +30264,7 @@ snapshots: '@inquirer/confirm': 3.1.11 '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.3.2(@types/node@22.5.2)(less@4.2.0)(sass@1.77.6)(stylus@0.59.0)(terser@5.29.2)) ansi-colors: 4.1.3 - browserslist: 4.23.2 + browserslist: 4.23.0 critters: 0.0.24 esbuild: 0.21.5 fast-glob: 3.3.2 @@ -30598,13 +30615,13 @@ snapshots: '@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@14.3.1)': dependencies: - '@babel/core': 7.24.9 - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 + '@babel/core': 7.23.9 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.9 '@babel/runtime': 7.23.6 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 - babel-preset-fbjs: 3.4.0(@babel/core@7.24.9) + '@babel/traverse': 7.23.9 + '@babel/types': 7.23.9 + babel-preset-fbjs: 3.4.0(@babel/core@7.23.9) chalk: 4.1.2 fb-watchman: 2.0.1 fbjs: 3.0.2(encoding@0.1.13) @@ -30734,7 +30751,7 @@ snapshots: '@babel/code-frame@7.24.7': dependencies: '@babel/highlight': 7.24.7 - picocolors: 1.0.1 + picocolors: 1.0.0 '@babel/compat-data@7.17.7': {} @@ -30848,7 +30865,7 @@ snapshots: '@babel/core@7.24.9': dependencies: - '@ampproject/remapping': 2.3.0 + '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.24.7 '@babel/generator': 7.25.0 '@babel/helper-compilation-targets': 7.25.2 @@ -30915,7 +30932,7 @@ snapshots: '@babel/helper-annotate-as-pure@7.22.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-annotate-as-pure@7.24.7': dependencies: @@ -30923,11 +30940,11 @@ snapshots: '@babel/helper-builder-binary-assignment-operator-visitor@7.21.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': dependencies: @@ -30957,7 +30974,7 @@ snapshots: '@babel/compat-data': 7.23.5 '@babel/core': 7.18.10 '@babel/helper-validator-option': 7.23.5 - browserslist: 4.23.2 + browserslist: 4.23.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -30965,7 +30982,7 @@ snapshots: dependencies: '@babel/compat-data': 7.23.5 '@babel/helper-validator-option': 7.23.5 - browserslist: 4.23.2 + browserslist: 4.23.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -30973,7 +30990,7 @@ snapshots: dependencies: '@babel/compat-data': 7.23.5 '@babel/helper-validator-option': 7.23.5 - browserslist: 4.23.2 + browserslist: 4.23.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -30981,7 +30998,7 @@ snapshots: dependencies: '@babel/compat-data': 7.25.2 '@babel/helper-validator-option': 7.24.8 - browserslist: 4.23.2 + browserslist: 4.23.3 lru-cache: 5.1.1 semver: 6.3.1 @@ -31050,6 +31067,19 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-member-expression-to-functions': 7.24.8 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.23.9) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/traverse': 7.25.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31132,6 +31162,13 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.24.7 + regexpu-core: 5.3.2 + semver: 6.3.1 + '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31149,7 +31186,7 @@ snapshots: '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.16.12)': dependencies: '@babel/core': 7.16.12 - '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.5 lodash.debounce: 4.0.8 @@ -31161,7 +31198,7 @@ snapshots: '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.18.10)': dependencies: '@babel/core': 7.18.10 - '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.5 lodash.debounce: 4.0.8 @@ -31173,7 +31210,7 @@ snapshots: '@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 - '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.5 lodash.debounce: 4.0.8 @@ -31185,8 +31222,8 @@ snapshots: '@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.0)': dependencies: '@babel/core': 7.23.0 - '@babel/helper-compilation-targets': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.5 lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -31196,8 +31233,8 @@ snapshots: '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.0)': dependencies: '@babel/core': 7.23.0 - '@babel/helper-compilation-targets': 7.25.2 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.5 lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -31205,11 +31242,22 @@ snapshots: - supports-color '@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + debug: 4.3.5 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - debug: 4.3.5 + debug: 4.3.6 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -31220,7 +31268,7 @@ snapshots: '@babel/core': 7.24.7 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - debug: 4.3.5 + debug: 4.3.6 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -31231,7 +31279,7 @@ snapshots: '@babel/core': 7.24.9 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - debug: 4.3.5 + debug: 4.3.6 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -31256,8 +31304,8 @@ snapshots: '@babel/helper-function-name@7.23.0': dependencies: - '@babel/template': 7.25.0 - '@babel/types': 7.25.2 + '@babel/template': 7.23.9 + '@babel/types': 7.23.9 '@babel/helper-hoist-variables@7.16.7': dependencies: @@ -31265,11 +31313,11 @@ snapshots: '@babel/helper-hoist-variables@7.22.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-member-expression-to-functions@7.23.0': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-member-expression-to-functions@7.24.8': dependencies: @@ -31280,7 +31328,7 @@ snapshots: '@babel/helper-module-imports@7.22.15': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-module-imports@7.24.7': dependencies: @@ -31369,6 +31417,16 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-module-transforms@7.25.2(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.25.2(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31391,7 +31449,7 @@ snapshots: '@babel/helper-optimise-call-expression@7.22.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-optimise-call-expression@7.24.7': dependencies: @@ -31411,7 +31469,7 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.24.9)': dependencies: @@ -31419,7 +31477,7 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.18.10)': dependencies: @@ -31442,6 +31500,15 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 + '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-wrap-function': 7.25.0 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31495,6 +31562,15 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-member-expression-to-functions': 7.24.8 + '@babel/helper-optimise-call-expression': 7.24.7 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/helper-replace-supers@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31515,7 +31591,7 @@ snapshots: '@babel/helper-simple-access@7.22.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-simple-access@7.24.7': dependencies: @@ -31526,7 +31602,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: @@ -31541,11 +31617,11 @@ snapshots: '@babel/helper-split-export-declaration@7.18.6': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-split-export-declaration@7.22.6': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@babel/helper-split-export-declaration@7.24.7': dependencies: @@ -31572,8 +31648,8 @@ snapshots: '@babel/helper-wrap-function@7.22.20': dependencies: '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.25.0 - '@babel/types': 7.25.2 + '@babel/template': 7.23.9 + '@babel/types': 7.23.9 '@babel/helper-wrap-function@7.25.0': dependencies: @@ -31663,6 +31739,14 @@ snapshots: dependencies: '@babel/types': 7.25.2 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31709,6 +31793,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31761,6 +31850,15 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31791,6 +31889,14 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -31847,6 +31953,12 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.10) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 @@ -32015,14 +32127,14 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.10) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.18.10) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.9)': + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.9)': dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.24.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9) '@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.16.12)': dependencies: @@ -32418,6 +32530,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -32834,6 +32951,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -32868,6 +32990,16 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9) + '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-environment-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -32930,6 +33062,15 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9) + '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -32978,6 +33119,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33018,6 +33164,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33046,6 +33197,14 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33083,6 +33242,15 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9) + '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33175,6 +33343,18 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 + '@babel/plugin-transform-classes@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.23.9) + '@babel/traverse': 7.25.3 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-classes@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33233,6 +33413,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.23.9 + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/template': 7.25.0 + '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33275,6 +33461,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33339,6 +33530,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33381,6 +33578,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33409,6 +33611,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33457,6 +33665,14 @@ snapshots: '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33491,6 +33707,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33565,6 +33787,14 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33623,6 +33853,15 @@ snapshots: '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33659,6 +33898,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33701,6 +33946,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-literals@7.25.2(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-literals@7.25.2(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33729,6 +33979,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33771,6 +34027,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33819,6 +34080,14 @@ snapshots: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33900,6 +34169,15 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 + '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-simple-access': 7.24.7 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -33968,6 +34246,16 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 + '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-validator-identifier': 7.24.7 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34024,6 +34312,14 @@ snapshots: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34068,6 +34364,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34110,6 +34412,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34138,6 +34445,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34168,6 +34481,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34207,6 +34526,14 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9) + '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34259,6 +34586,14 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9) + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-replace-supers': 7.25.0(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34293,6 +34628,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34326,6 +34667,15 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34389,6 +34739,11 @@ snapshots: '@babel/core': 7.24.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34417,6 +34772,14 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34457,6 +34820,16 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9) + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34507,6 +34880,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34517,10 +34895,10 @@ snapshots: '@babel/core': 7.24.9 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-transform-react-constant-elements@7.17.12(@babel/core@7.24.9)': + '@babel/plugin-transform-react-constant-elements@7.17.12(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-transform-react-display-name@7.16.0(@babel/core@7.16.12)': dependencies: @@ -34557,11 +34935,6 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.24.9)': - dependencies: - '@babel/core': 7.24.9 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-jsx-development@7.16.0(@babel/core@7.16.12)': dependencies: '@babel/core': 7.16.12 @@ -34597,11 +34970,6 @@ snapshots: '@babel/core': 7.23.9 '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.9) - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.9)': - dependencies: - '@babel/core': 7.24.9 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.24.9) - '@babel/plugin-transform-react-jsx@7.16.0(@babel/core@7.16.12)': dependencies: '@babel/core': 7.16.12 @@ -34716,12 +35084,6 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.24.9)': - dependencies: - '@babel/core': 7.24.9 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-regenerator@7.17.9(@babel/core@7.16.12)': dependencies: '@babel/core': 7.16.12 @@ -34756,6 +35118,12 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 + '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + regenerator-transform: 0.15.2 + '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34798,6 +35166,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34850,6 +35223,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34896,6 +35274,14 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 + transitivePeerDependencies: + - supports-color + '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34942,6 +35328,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -34982,6 +35373,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -35022,6 +35418,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -35102,6 +35503,11 @@ snapshots: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -35130,6 +35536,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -35178,6 +35590,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -35208,6 +35626,12 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 @@ -35719,6 +36143,93 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/preset-env@7.24.7(@babel/core@7.23.9)': + dependencies: + '@babel/compat-data': 7.25.2 + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-validator-option': 7.24.8 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.23.9) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.9) + '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.23.9) + '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.23.9) + '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.23.9) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.9) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.23.9) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.23.9) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.23.9) + core-js-compat: 3.37.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/preset-env@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/compat-data': 7.25.2 @@ -35896,36 +36407,36 @@ snapshots: '@babel/preset-flow@7.22.15(@babel/core@7.16.12)': dependencies: '@babel/core': 7.16.12 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.16.12) '@babel/preset-flow@7.22.15(@babel/core@7.18.10)': dependencies: '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.18.10) '@babel/preset-flow@7.22.15(@babel/core@7.23.0)': dependencies: '@babel/core': 7.23.0 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.0) '@babel/preset-flow@7.22.15(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.9) '@babel/preset-flow@7.22.15(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 - '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-option': 7.24.8 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.24.9) '@babel/preset-modules@0.1.5(@babel/core@7.16.12)': @@ -36053,16 +36564,6 @@ snapshots: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.9) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.9) - '@babel/preset-react@7.22.15(@babel/core@7.24.9)': - dependencies: - '@babel/core': 7.24.9 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.24.9) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.24.9) - '@babel/preset-typescript@7.23.0(@babel/core@7.16.12)': dependencies: '@babel/core': 7.16.12 @@ -36108,6 +36609,15 @@ snapshots: '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.9) '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.24.9) + '@babel/register@7.22.15(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.6 + source-map-support: 0.5.21 + '@babel/register@7.22.15(@babel/core@7.24.9)': dependencies: '@babel/core': 7.24.9 @@ -36619,57 +37129,6 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/cli@2.16.5(@babel/core@7.24.9)(@swc/core@1.3.92)(@types/node@22.5.2)(encoding@0.1.13)(enquirer@2.4.1)(graphql@14.3.1)(typescript@5.5.3)': - dependencies: - '@babel/generator': 7.23.6 - '@babel/template': 7.23.9 - '@babel/types': 7.23.9 - '@graphql-codegen/core': 2.6.8(graphql@14.3.1) - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.3.1) - '@graphql-tools/apollo-engine-loader': 7.3.26(encoding@0.1.13)(graphql@14.3.1) - '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.9)(graphql@14.3.1) - '@graphql-tools/git-loader': 7.3.0(@babel/core@7.24.9)(graphql@14.3.1) - '@graphql-tools/github-loader': 7.3.28(@babel/core@7.24.9)(@types/node@22.5.2)(encoding@0.1.13)(graphql@14.3.1) - '@graphql-tools/graphql-file-loader': 7.5.17(graphql@14.3.1) - '@graphql-tools/json-file-loader': 7.4.18(graphql@14.3.1) - '@graphql-tools/load': 7.8.14(graphql@14.3.1) - '@graphql-tools/prisma-loader': 7.2.72(@types/node@22.5.2)(encoding@0.1.13)(graphql@14.3.1) - '@graphql-tools/url-loader': 7.17.18(@types/node@22.5.2)(encoding@0.1.13)(graphql@14.3.1) - '@graphql-tools/utils': 9.2.1(graphql@14.3.1) - '@whatwg-node/fetch': 0.6.9(@types/node@22.5.2) - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 4.4.0(@types/node@22.5.2)(cosmiconfig@7.0.1)(ts-node@10.9.2(@swc/core@1.3.92)(@types/node@22.5.2)(typescript@5.5.3))(typescript@5.5.3) - debounce: 1.2.1 - detect-indent: 6.1.0 - graphql: 14.3.1 - graphql-config: 4.5.0(@types/node@22.5.2)(encoding@0.1.13)(graphql@14.3.1) - inquirer: 8.2.4 - is-glob: 4.0.3 - json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.4.1) - log-symbols: 4.1.0 - shell-quote: 1.8.1 - string-env-interpolation: 1.0.1 - ts-log: 2.2.5 - ts-node: 10.9.2(@swc/core@1.3.92)(@types/node@22.5.2)(typescript@5.5.3) - tslib: 2.6.2 - yaml: 1.10.2 - yargs: 17.7.2 - transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - cosmiconfig-toml-loader - - encoding - - enquirer - - supports-color - - typescript - - utf-8-validate - '@graphql-codegen/core@2.6.8(graphql@14.3.1)': dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@14.3.1) @@ -36823,19 +37282,7 @@ snapshots: '@graphql-tools/utils': 9.2.1(graphql@14.3.1) globby: 11.1.0 graphql: 14.3.1 - tslib: 2.6.2 - unixify: 1.0.0 - transitivePeerDependencies: - - '@babel/core' - - supports-color - - '@graphql-tools/code-file-loader@7.3.23(@babel/core@7.24.9)(graphql@14.3.1)': - dependencies: - '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.9)(graphql@14.3.1) - '@graphql-tools/utils': 9.2.1(graphql@14.3.1) - globby: 11.1.0 - graphql: 14.3.1 - tslib: 2.6.2 + tslib: 2.7.0 unixify: 1.0.0 transitivePeerDependencies: - '@babel/core' @@ -36907,21 +37354,8 @@ snapshots: '@graphql-tools/utils': 9.2.1(graphql@14.3.1) graphql: 14.3.1 is-glob: 4.0.3 - micromatch: 4.0.5 - tslib: 2.6.2 - unixify: 1.0.0 - transitivePeerDependencies: - - '@babel/core' - - supports-color - - '@graphql-tools/git-loader@7.3.0(@babel/core@7.24.9)(graphql@14.3.1)': - dependencies: - '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.9)(graphql@14.3.1) - '@graphql-tools/utils': 9.2.1(graphql@14.3.1) - graphql: 14.3.1 - is-glob: 4.0.3 - micromatch: 4.0.5 - tslib: 2.6.2 + micromatch: 4.0.8 + tslib: 2.7.0 unixify: 1.0.0 transitivePeerDependencies: - '@babel/core' @@ -36935,23 +37369,7 @@ snapshots: '@graphql-tools/utils': 9.2.1(graphql@14.3.1) '@whatwg-node/fetch': 0.8.8 graphql: 14.3.1 - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@babel/core' - - '@types/node' - - encoding - - supports-color - - '@graphql-tools/github-loader@7.3.28(@babel/core@7.24.9)(@types/node@22.5.2)(encoding@0.1.13)(graphql@14.3.1)': - dependencies: - '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 0.1.10(@types/node@22.5.2)(graphql@14.3.1) - '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.9)(graphql@14.3.1) - '@graphql-tools/utils': 9.2.1(graphql@14.3.1) - '@whatwg-node/fetch': 0.8.8 - graphql: 14.3.1 - tslib: 2.6.2 + tslib: 2.7.0 value-or-promise: 1.0.12 transitivePeerDependencies: - '@babel/core' @@ -36976,20 +37394,7 @@ snapshots: '@babel/types': 7.25.2 '@graphql-tools/utils': 9.2.1(graphql@14.3.1) graphql: 14.3.1 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/core' - - supports-color - - '@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.24.9)(graphql@14.3.1)': - dependencies: - '@babel/parser': 7.25.3 - '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.9) - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 - '@graphql-tools/utils': 9.2.1(graphql@14.3.1) - graphql: 14.3.1 - tslib: 2.6.2 + tslib: 2.7.0 transitivePeerDependencies: - '@babel/core' - supports-color @@ -37021,7 +37426,7 @@ snapshots: dependencies: '@graphql-tools/utils': 8.9.0(graphql@14.3.1) graphql: 14.3.1 - tslib: 2.6.3 + tslib: 2.6.2 '@graphql-tools/merge@8.4.2(graphql@14.3.1)': dependencies: @@ -37035,7 +37440,7 @@ snapshots: '@graphql-tools/utils': 9.2.1(graphql@14.3.1) fast-json-stable-stringify: 2.1.0 graphql: 14.3.1 - tslib: 2.6.3 + tslib: 2.6.2 '@graphql-tools/optimize@1.4.0(graphql@14.3.1)': dependencies: @@ -37085,7 +37490,7 @@ snapshots: '@graphql-tools/merge': 8.3.1(graphql@14.3.1) '@graphql-tools/utils': 8.9.0(graphql@14.3.1) graphql: 14.3.1 - tslib: 2.6.3 + tslib: 2.6.2 value-or-promise: 1.0.11 '@graphql-tools/schema@9.0.19(graphql@14.3.1)': @@ -37126,7 +37531,7 @@ snapshots: '@graphql-tools/utils@8.9.0(graphql@14.3.1)': dependencies: graphql: 14.3.1 - tslib: 2.6.3 + tslib: 2.6.2 '@graphql-tools/utils@9.2.1(graphql@14.3.1)': dependencies: @@ -37414,6 +37819,43 @@ snapshots: - supports-color - ts-node + '@jest/core@29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2))': + 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': 20.14.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.3.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)) + 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.5 + 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(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.5.2)(typescript@5.5.3))': dependencies: '@jest/console': 29.7.0 @@ -37566,7 +38008,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.18 '@types/node': 20.14.2 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -37595,7 +38037,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.18 '@types/node': 20.14.2 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -37625,7 +38067,7 @@ snapshots: '@jest/source-map@29.6.3': dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.18 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -37666,7 +38108,7 @@ snapshots: '@jest/transform@29.7.0': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -37728,7 +38170,7 @@ snapshots: '@jridgewell/source-map@0.3.3': dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.18 '@jridgewell/source-map@0.3.6': dependencies: @@ -37944,7 +38386,7 @@ snapshots: '@npmcli/fs@3.1.1': dependencies: - semver: 7.6.2 + semver: 7.6.3 '@npmcli/git@5.0.8': dependencies: @@ -38152,7 +38594,7 @@ snapshots: victory-voronoi-container: 36.6.8(react@17.0.2) victory-zoom-container: 36.6.8(react@17.0.2) - '@patternfly/react-code-editor@4.82.113(react-dom@17.0.2(react@17.0.2))(react-monaco-editor@0.49.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2))(react@17.0.2)': + '@patternfly/react-code-editor@4.82.113(react-dom@17.0.2(react@17.0.2))(react-monaco-editor@0.51.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2))(react@17.0.2)': dependencies: '@patternfly/react-core': 4.276.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@patternfly/react-icons': 4.93.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -38160,8 +38602,8 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-dropzone: 11.7.1(react@17.0.2) - react-monaco-editor: 0.49.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2) - tslib: 2.6.3 + react-monaco-editor: 0.51.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2) + tslib: 2.6.2 '@patternfly/react-core@4.276.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: @@ -40050,7 +40492,7 @@ snapshots: '@storybook/builder-webpack5@7.4.6(@types/react-dom@17.0.8)(@types/react@17.0.21)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.5.3)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@storybook/addons': 7.4.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/channels': 7.4.6 '@storybook/client-api': 7.4.6 @@ -40070,7 +40512,7 @@ snapshots: '@swc/core': 1.3.92 '@types/node': 16.18.58 '@types/semver': 7.5.2 - babel-loader: 9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)) + babel-loader: 9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -40110,7 +40552,7 @@ snapshots: '@storybook/builder-webpack5@7.4.6(@types/react-dom@17.0.8)(@types/react@17.0.21)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.5.3)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@storybook/addons': 7.4.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/channels': 7.4.6 '@storybook/client-api': 7.4.6 @@ -40130,7 +40572,7 @@ snapshots: '@swc/core': 1.3.92 '@types/node': 16.18.58 '@types/semver': 7.5.2 - babel-loader: 9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)) + babel-loader: 9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -40170,7 +40612,7 @@ snapshots: '@storybook/builder-webpack5@7.6.13(encoding@0.1.13)(esbuild@0.18.20)(typescript@5.5.3)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@storybook/channels': 7.6.13 '@storybook/client-logger': 7.6.13 '@storybook/core-common': 7.6.13(encoding@0.1.13) @@ -40182,7 +40624,7 @@ snapshots: '@swc/core': 1.3.92 '@types/node': 18.17.18 '@types/semver': 7.5.2 - babel-loader: 9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)) + babel-loader: 9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.2.3 @@ -40220,7 +40662,7 @@ snapshots: '@storybook/builder-webpack5@7.6.13(encoding@0.1.13)(typescript@5.5.3)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0))': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@storybook/channels': 7.6.13 '@storybook/client-logger': 7.6.13 '@storybook/core-common': 7.6.13(encoding@0.1.13) @@ -40232,7 +40674,7 @@ snapshots: '@swc/core': 1.3.92 '@types/node': 18.17.18 '@types/semver': 7.5.2 - babel-loader: 9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0))) + babel-loader: 9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0))) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.2.3 @@ -40270,7 +40712,7 @@ snapshots: '@storybook/builder-webpack5@7.6.13(encoding@0.1.13)(typescript@5.5.3)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@storybook/channels': 7.6.13 '@storybook/client-logger': 7.6.13 '@storybook/core-common': 7.6.13(encoding@0.1.13) @@ -40282,7 +40724,7 @@ snapshots: '@swc/core': 1.3.92 '@types/node': 18.17.18 '@types/semver': 7.5.2 - babel-loader: 9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))) + babel-loader: 9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.2.3 @@ -40436,8 +40878,8 @@ snapshots: '@storybook/cli@7.6.13(encoding@0.1.13)': dependencies: - '@babel/core': 7.24.9 - '@babel/preset-env': 7.24.7(@babel/core@7.24.9) + '@babel/core': 7.23.9 + '@babel/preset-env': 7.24.7(@babel/core@7.23.9) '@babel/types': 7.23.9 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.6.13 @@ -40464,7 +40906,7 @@ snapshots: get-port: 5.1.1 giget: 1.1.3 globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.24.7(@babel/core@7.24.9)) + jscodeshift: 0.15.1(@babel/preset-env@7.24.7(@babel/core@7.23.9)) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -40497,9 +40939,9 @@ snapshots: '@storybook/codemod@7.4.6': dependencies: - '@babel/core': 7.24.9 - '@babel/preset-env': 7.24.7(@babel/core@7.24.9) - '@babel/types': 7.25.2 + '@babel/core': 7.23.9 + '@babel/preset-env': 7.24.7(@babel/core@7.23.9) + '@babel/types': 7.23.9 '@storybook/csf': 0.1.2 '@storybook/csf-tools': 7.4.6 '@storybook/node-logger': 7.4.6 @@ -40507,7 +40949,7 @@ snapshots: '@types/cross-spawn': 6.0.3 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.9)) + jscodeshift: 0.14.0(@babel/preset-env@7.24.7(@babel/core@7.23.9)) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.4 @@ -40516,9 +40958,9 @@ snapshots: '@storybook/codemod@7.6.13': dependencies: - '@babel/core': 7.24.9 - '@babel/preset-env': 7.24.7(@babel/core@7.24.9) - '@babel/types': 7.25.2 + '@babel/core': 7.23.9 + '@babel/preset-env': 7.24.7(@babel/core@7.23.9) + '@babel/types': 7.23.9 '@storybook/csf': 0.1.2 '@storybook/csf-tools': 7.6.13 '@storybook/node-logger': 7.6.13 @@ -40526,7 +40968,7 @@ snapshots: '@types/cross-spawn': 6.0.3 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.15.1(@babel/preset-env@7.24.7(@babel/core@7.24.9)) + jscodeshift: 0.15.1(@babel/preset-env@7.24.7(@babel/core@7.23.9)) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.4 @@ -40709,7 +41151,7 @@ snapshots: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.6.2 + semver: 7.6.3 telejson: 7.2.0 tiny-invariant: 1.3.1 ts-dedent: 2.2.0 @@ -40758,7 +41200,7 @@ snapshots: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.6.2 + semver: 7.6.3 telejson: 7.2.0 tiny-invariant: 1.3.1 ts-dedent: 2.2.0 @@ -40807,7 +41249,7 @@ snapshots: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.6.2 + semver: 7.6.3 telejson: 7.2.0 tiny-invariant: 1.3.1 ts-dedent: 2.2.0 @@ -40877,10 +41319,10 @@ snapshots: '@storybook/csf-tools@7.6.13': dependencies: - '@babel/generator': 7.25.0 - '@babel/parser': 7.25.3 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.9 + '@babel/traverse': 7.23.9 + '@babel/types': 7.23.9 '@storybook/csf': 0.1.2 '@storybook/types': 7.6.13 fs-extra: 11.2.0 @@ -41588,49 +42030,49 @@ snapshots: '@types/express': 4.17.17 file-system-cache: 2.3.0 - '@svgr/babel-plugin-add-jsx-attribute@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-add-jsx-attribute@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-remove-jsx-attribute@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-remove-jsx-attribute@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-remove-jsx-empty-expression@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-remove-jsx-empty-expression@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-replace-jsx-attribute-value@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-replace-jsx-attribute-value@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-svg-dynamic-title@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-svg-dynamic-title@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-svg-em-dimensions@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-svg-em-dimensions@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-transform-react-native-svg@6.0.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-transform-react-native-svg@6.0.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-plugin-transform-svg-component@6.2.0(@babel/core@7.24.9)': + '@svgr/babel-plugin-transform-svg-component@6.2.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 - '@svgr/babel-preset@6.2.0(@babel/core@7.24.9)': + '@svgr/babel-preset@6.2.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.24.9 - '@svgr/babel-plugin-add-jsx-attribute': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-svg-dynamic-title': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-svg-em-dimensions': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-transform-react-native-svg': 6.0.0(@babel/core@7.24.9) - '@svgr/babel-plugin-transform-svg-component': 6.2.0(@babel/core@7.24.9) + '@babel/core': 7.23.9 + '@svgr/babel-plugin-add-jsx-attribute': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-svg-dynamic-title': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-svg-em-dimensions': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-transform-react-native-svg': 6.0.0(@babel/core@7.23.9) + '@svgr/babel-plugin-transform-svg-component': 6.2.0(@babel/core@7.23.9) '@svgr/core@6.2.1': dependencies: @@ -41642,13 +42084,13 @@ snapshots: '@svgr/hast-util-to-babel-ast@6.2.1': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 entities: 3.0.1 '@svgr/plugin-jsx@6.2.1(@svgr/core@6.2.1)': dependencies: - '@babel/core': 7.24.9 - '@svgr/babel-preset': 6.2.0(@babel/core@7.24.9) + '@babel/core': 7.23.9 + '@svgr/babel-preset': 6.2.0(@babel/core@7.23.9) '@svgr/core': 6.2.1 '@svgr/hast-util-to-babel-ast': 6.2.1 svg-parser: 2.0.4 @@ -41664,11 +42106,11 @@ snapshots: '@svgr/webpack@6.2.1': dependencies: - '@babel/core': 7.24.9 - '@babel/plugin-transform-react-constant-elements': 7.17.12(@babel/core@7.24.9) - '@babel/preset-env': 7.24.7(@babel/core@7.24.9) - '@babel/preset-react': 7.22.15(@babel/core@7.24.9) - '@babel/preset-typescript': 7.23.0(@babel/core@7.24.9) + '@babel/core': 7.23.9 + '@babel/plugin-transform-react-constant-elements': 7.17.12(@babel/core@7.23.9) + '@babel/preset-env': 7.23.9(@babel/core@7.23.9) + '@babel/preset-react': 7.22.15(@babel/core@7.23.9) + '@babel/preset-typescript': 7.23.0(@babel/core@7.23.9) '@svgr/core': 6.2.1 '@svgr/plugin-jsx': 6.2.1(@svgr/core@6.2.1) '@svgr/plugin-svgo': 6.2.0(@svgr/core@6.2.1) @@ -41834,7 +42276,7 @@ snapshots: '@types/accepts@1.3.7': dependencies: - '@types/node': 20.14.13 + '@types/node': 20.14.2 '@types/archiver@5.3.1': dependencies: @@ -41852,7 +42294,7 @@ snapshots: '@types/babel__generator@7.6.1': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@types/babel__standalone@7.1.7': dependencies: @@ -41860,12 +42302,12 @@ snapshots: '@types/babel__template@7.0.2': dependencies: - '@babel/parser': 7.25.3 - '@babel/types': 7.25.2 + '@babel/parser': 7.23.9 + '@babel/types': 7.23.9 '@types/babel__traverse@7.20.5': dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.23.9 '@types/body-parser@1.19.2': dependencies: @@ -41926,7 +42368,7 @@ snapshots: '@types/cross-spawn@6.0.3': dependencies: - '@types/node': 20.14.13 + '@types/node': 20.14.2 '@types/cypress@1.1.3': dependencies: @@ -42092,20 +42534,22 @@ snapshots: '@types/eslint-scope@3.7.3': dependencies: '@types/eslint': 7.2.10 - '@types/estree': 1.0.5 + '@types/estree': 1.0.1 '@types/eslint@7.2.10': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.1 '@types/json-schema': 7.0.15 '@types/estree@0.0.51': {} + '@types/estree@1.0.1': {} + '@types/estree@1.0.5': {} '@types/express-serve-static-core@4.17.31': dependencies: - '@types/node': 20.14.13 + '@types/node': 20.14.2 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 @@ -42121,7 +42565,7 @@ snapshots: '@types/body-parser': 1.19.2 '@types/express-serve-static-core': 4.17.35 '@types/qs': 6.9.7 - '@types/serve-static': 1.15.7 + '@types/serve-static': 1.13.10 '@types/express@4.17.17': dependencies: @@ -42159,7 +42603,7 @@ snapshots: '@types/graceful-fs@4.1.3': dependencies: - '@types/node': 20.14.13 + '@types/node': 20.14.2 '@types/har-format@1.2.5': {} @@ -43295,7 +43739,7 @@ snapshots: agent-base@7.1.1: dependencies: - debug: 4.3.5 + debug: 4.3.6 transitivePeerDependencies: - supports-color @@ -43795,7 +44239,7 @@ snapshots: ast-types@0.15.2: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 ast-types@0.16.1: dependencies: @@ -43833,7 +44277,7 @@ snapshots: autoprefixer@10.4.19(postcss@8.4.38): dependencies: - browserslist: 4.23.2 + browserslist: 4.23.0 caniuse-lite: 1.0.30001600 fraction.js: 4.3.7 normalize-range: 0.1.2 @@ -43882,6 +44326,10 @@ snapshots: tunnel: 0.0.6 typed-rest-client: 1.8.4 + babel-core@7.0.0-bridge.0(@babel/core@7.23.9): + dependencies: + '@babel/core': 7.23.9 + babel-core@7.0.0-bridge.0(@babel/core@7.24.9): dependencies: '@babel/core': 7.24.9 @@ -43968,7 +44416,6 @@ snapshots: slash: 3.0.0 transitivePeerDependencies: - supports-color - optional: true babel-jest@29.7.0(@babel/core@7.24.9): dependencies: @@ -43982,6 +44429,7 @@ snapshots: slash: 3.0.0 transitivePeerDependencies: - supports-color + optional: true babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)): dependencies: @@ -43990,54 +44438,47 @@ snapshots: schema-utils: 4.2.0 webpack: 5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0) - babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(esbuild@0.18.20)): + babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)): dependencies: '@babel/core': 7.23.9 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(esbuild@0.18.20) + webpack: 5.94.0(@swc/core@1.3.92)(esbuild@0.18.20) - babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(webpack-cli@4.10.0)): + babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0))): dependencies: '@babel/core': 7.23.9 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(webpack-cli@4.10.0) - - babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.92.1(esbuild@0.21.5)): - dependencies: - '@babel/core': 7.24.7 - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.92.1(esbuild@0.21.5) + webpack: 5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0)) - babel-loader@9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)): + babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0) + webpack: 5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0)) - babel-loader@9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)): + babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(esbuild@0.18.20)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(@swc/core@1.3.92)(esbuild@0.18.20) + webpack: 5.94.0(esbuild@0.18.20) - babel-loader@9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0))): + babel-loader@9.1.3(@babel/core@7.23.9)(webpack@5.94.0(webpack-cli@4.10.0)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0)) + webpack: 5.94.0(webpack-cli@4.10.0) - babel-loader@9.1.3(@babel/core@7.24.9)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))): + babel-loader@9.1.3(@babel/core@7.24.7)(webpack@5.92.1(esbuild@0.21.5)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.24.7 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0)) + webpack: 5.92.1(esbuild@0.21.5) babel-plugin-add-react-displayname@0.0.5: {} @@ -44060,7 +44501,7 @@ snapshots: babel-plugin-istanbul@6.1.1: dependencies: - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.22.5 '@istanbuljs/load-nyc-config': 1.0.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.1.0 @@ -44083,7 +44524,7 @@ snapshots: babel-plugin-macros@2.8.0: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 cosmiconfig: 6.0.0 resolve: 1.22.8 @@ -44116,6 +44557,15 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.23.9): + dependencies: + '@babel/compat-data': 7.25.2 + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.9) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.7): dependencies: '@babel/compat-data': 7.25.2 @@ -44161,6 +44611,14 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.23.9): + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.9) + core-js-compat: 3.37.1 + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 @@ -44267,6 +44725,13 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.23.9): + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.7): dependencies: '@babel/core': 7.24.7 @@ -44389,7 +44854,6 @@ snapshots: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9) - optional: true babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.9): dependencies: @@ -44406,36 +44870,37 @@ snapshots: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.9) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.9) + optional: true - babel-preset-fbjs@3.4.0(@babel/core@7.24.9): + babel-preset-fbjs@3.4.0(@babel/core@7.23.9): dependencies: - '@babel/core': 7.24.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.9) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9) - '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.24.9) - '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.24.9) - '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.9) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.24.9) - '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.24.9) - '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9) - '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.24.9) - '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.9) + '@babel/core': 7.23.9 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.9) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.9) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) + '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.23.9) + '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.9) + '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.23.9) + '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.23.9) + '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.9) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.9) + '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.23.9) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color @@ -44478,13 +44943,13 @@ snapshots: '@babel/core': 7.23.9 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.9) - optional: true babel-preset-jest@29.6.3(@babel/core@7.24.9): dependencies: '@babel/core': 7.24.9 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.9) + optional: true balanced-match@0.4.2: {} @@ -45554,20 +46019,20 @@ snapshots: core-js-compat@3.21.1: dependencies: - browserslist: 4.23.2 + browserslist: 4.23.0 semver: 7.0.0 core-js-compat@3.30.2: dependencies: - browserslist: 4.23.2 + browserslist: 4.23.0 core-js-compat@3.33.0: dependencies: - browserslist: 4.23.2 + browserslist: 4.23.0 core-js-compat@3.35.1: dependencies: - browserslist: 4.23.2 + browserslist: 4.23.0 core-js-compat@3.37.1: dependencies: @@ -45677,6 +46142,21 @@ snapshots: - supports-color - ts-node + create-jest@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)): + 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@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)) + 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@22.5.2): dependencies: '@jest/types': 29.6.3 @@ -45810,13 +46290,13 @@ snapshots: css-loader@5.2.7(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0)): dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - loader-utils: 2.0.4 - postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) - postcss-modules-values: 4.0.0(postcss@8.4.38) + icss-utils: 5.1.0(postcss@8.4.12) + loader-utils: 2.0.2 + postcss: 8.4.12 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.12) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.12) + postcss-modules-scope: 3.0.0(postcss@8.4.12) + postcss-modules-values: 4.0.0(postcss@8.4.12) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.2 @@ -45824,13 +46304,13 @@ snapshots: css-loader@5.2.7(webpack@5.94.0(webpack-cli@4.10.0)): dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - loader-utils: 2.0.4 - postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) - postcss-modules-values: 4.0.0(postcss@8.4.38) + icss-utils: 5.1.0(postcss@8.4.12) + loader-utils: 2.0.2 + postcss: 8.4.12 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.12) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.12) + postcss-modules-scope: 3.0.0(postcss@8.4.12) + postcss-modules-values: 4.0.0(postcss@8.4.12) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.2 @@ -45838,13 +46318,13 @@ snapshots: css-loader@5.2.7(webpack@5.94.0): dependencies: - icss-utils: 5.1.0(postcss@8.4.38) - loader-utils: 2.0.4 - postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) - postcss-modules-values: 4.0.0(postcss@8.4.38) + icss-utils: 5.1.0(postcss@8.4.12) + loader-utils: 2.0.2 + postcss: 8.4.12 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.12) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.12) + postcss-modules-scope: 3.0.0(postcss@8.4.12) + postcss-modules-values: 4.0.0(postcss@8.4.12) postcss-value-parser: 4.2.0 schema-utils: 3.3.0 semver: 7.6.2 @@ -45854,9 +46334,9 @@ snapshots: dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.38) + postcss-modules-scope: 3.0.0(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.2 @@ -45866,9 +46346,9 @@ snapshots: dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.38) + postcss-modules-scope: 3.0.0(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.2 @@ -45878,9 +46358,9 @@ snapshots: dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.38) + postcss-modules-scope: 3.0.0(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.2 @@ -45890,9 +46370,9 @@ snapshots: dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 - postcss-modules-extract-imports: 3.1.0(postcss@8.4.38) - postcss-modules-local-by-default: 4.0.5(postcss@8.4.38) - postcss-modules-scope: 3.2.0(postcss@8.4.38) + postcss-modules-extract-imports: 3.0.0(postcss@8.4.38) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.38) + postcss-modules-scope: 3.0.0(postcss@8.4.38) postcss-modules-values: 4.0.0(postcss@8.4.38) postcss-value-parser: 4.2.0 semver: 7.6.2 @@ -45913,7 +46393,7 @@ snapshots: css-minimizer-webpack-plugin@5.0.1(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.18 cssnano: 6.1.2(postcss@8.4.38) jest-worker: 29.7.0 postcss: 8.4.38 @@ -46332,7 +46812,7 @@ snapshots: date-fns@2.30.0: dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 date-format@4.0.3: {} @@ -46383,7 +46863,6 @@ snapshots: debug@4.3.6: dependencies: ms: 2.1.2 - optional: true debug@4.3.6(supports-color@8.1.1): dependencies: @@ -47477,7 +47956,7 @@ snapshots: estree-to-babel@3.2.1: dependencies: - '@babel/traverse': 7.25.3 + '@babel/traverse': 7.23.9 '@babel/types': 7.25.2 c8: 7.14.0 transitivePeerDependencies: @@ -48050,7 +48529,7 @@ snapshots: fork-ts-checker-webpack-plugin@8.0.0(typescript@5.5.3)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0)): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 @@ -48060,14 +48539,14 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.6.2 + semver: 7.5.4 tapable: 2.2.1 typescript: 5.5.3 webpack: 5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)(webpack-cli@4.10.0) fork-ts-checker-webpack-plugin@8.0.0(typescript@5.5.3)(webpack@5.94.0(@swc/core@1.3.92)(esbuild@0.18.20)): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 @@ -48077,14 +48556,14 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.6.2 + semver: 7.5.4 tapable: 2.2.1 typescript: 5.5.3 webpack: 5.94.0(@swc/core@1.3.92)(esbuild@0.18.20) fork-ts-checker-webpack-plugin@8.0.0(typescript@5.5.3)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0))): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 @@ -48094,14 +48573,14 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.6.2 + semver: 7.5.4 tapable: 2.2.1 typescript: 5.5.3 webpack: 5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack-dev-server@4.15.1)(webpack@5.94.0)) fork-ts-checker-webpack-plugin@8.0.0(typescript@5.5.3)(webpack@5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0))): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 @@ -48111,7 +48590,7 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.6.2 + semver: 7.5.4 tapable: 2.2.1 typescript: 5.5.3 webpack: 5.94.0(@swc/core@1.3.92)(webpack-cli@4.10.0(webpack-dev-server@4.15.1)(webpack@5.94.0)) @@ -48892,7 +49371,7 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.0 - debug: 4.3.5 + debug: 4.3.6 transitivePeerDependencies: - supports-color @@ -49024,6 +49503,10 @@ snapshots: dependencies: safer-buffer: 2.1.2 + icss-utils@5.1.0(postcss@8.4.12): + dependencies: + postcss: 8.4.12 + icss-utils@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -49489,8 +49972,8 @@ snapshots: istanbul-lib-instrument@5.1.0: dependencies: - '@babel/core': 7.24.9 - '@babel/parser': 7.25.3 + '@babel/core': 7.23.9 + '@babel/parser': 7.23.9 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.1 @@ -49499,7 +49982,7 @@ snapshots: istanbul-lib-instrument@6.0.2: dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.24.7 '@babel/parser': 7.23.9 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -49569,7 +50052,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.13 + '@types/node': 20.14.2 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.3 @@ -49610,6 +50093,27 @@ snapshots: - supports-color - ts-node + jest-cli@29.7.0(@types/node@20.14.2)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2)): + dependencies: + '@jest/core': 29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + chalk: 4.1.2 + create-jest: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)) + exit: 0.1.2 + import-local: 3.0.2 + jest-config: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.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@22.5.2): dependencies: '@jest/core': 29.7.0 @@ -49714,10 +50218,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.2): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49745,10 +50249,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@swc/core@1.3.92)(@types/node@22.5.2)(typescript@5.5.3)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49776,10 +50280,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.5.3)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49805,12 +50309,43 @@ snapshots: - babel-plugin-macros - supports-color + jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)): + dependencies: + '@babel/core': 7.23.9 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 + babel-jest: 29.7.0(@babel/core@7.23.9) + chalk: 4.1.2 + ci-info: 3.3.2 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 29.7.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.5 + parse-json: 5.2.0 + pretty-format: 29.7.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + optionalDependencies: + '@types/node': 20.14.2 + ts-node: 10.9.2(@types/node@20.14.2) + transitivePeerDependencies: + - babel-plugin-macros + - supports-color + jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@22.5.2)(typescript@5.5.3)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49838,10 +50373,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@22.5.2)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49869,10 +50404,10 @@ snapshots: jest-config@29.7.0(@types/node@22.5.2): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49900,10 +50435,10 @@ snapshots: jest-config@29.7.0(@types/node@22.5.2)(ts-node@10.9.2(@swc/core@1.3.92)(@types/node@22.5.2)(typescript@5.5.3)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49931,10 +50466,10 @@ snapshots: jest-config@29.7.0(@types/node@22.5.2)(ts-node@10.9.2(@types/node@22.5.2)(typescript@5.5.3)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -49962,10 +50497,10 @@ snapshots: jest-config@29.7.0(@types/node@22.5.2)(ts-node@10.9.2(@types/node@22.5.2)): dependencies: - '@babel/core': 7.24.9 + '@babel/core': 7.23.9 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.9) + babel-jest: 29.7.0(@babel/core@7.23.9) chalk: 4.1.2 ci-info: 3.3.2 deepmerge: 4.2.2 @@ -50030,7 +50565,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.14.13 + '@types/node': 20.14.2 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -50099,7 +50634,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.0 chalk: 4.1.2 @@ -50201,15 +50736,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.24.9 - '@babel/generator': 7.25.0 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.9) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.24.9) - '@babel/types': 7.25.2 + '@babel/core': 7.23.9 + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.9) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.9) + '@babel/types': 7.23.9 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.9) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.9) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -50220,7 +50755,7 @@ snapshots: jest-util: 29.7.0 natural-compare: 1.4.0 pretty-format: 29.7.0 - semver: 7.6.2 + semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -50298,7 +50833,7 @@ snapshots: jest-worker@29.7.0: dependencies: - '@types/node': 20.14.13 + '@types/node': 20.14.2 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -50317,6 +50852,20 @@ snapshots: - supports-color - ts-node + jest@29.7.0(@types/node@20.14.2)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2)): + dependencies: + '@jest/core': 29.7.0(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2)) + '@jest/types': 29.6.3 + import-local: 3.0.2 + jest-cli: 29.7.0(@types/node@20.14.2)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@20.14.2)) + optionalDependencies: + node-notifier: 8.0.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + jest@29.7.0(@types/node@22.5.2): dependencies: '@jest/core': 29.7.0 @@ -50420,7 +50969,7 @@ snapshots: jsbn@1.1.0: {} - jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.9)): + jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.23.9)): dependencies: '@babel/core': 7.24.9 '@babel/parser': 7.25.3 @@ -50428,7 +50977,7 @@ snapshots: '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.9) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.9) '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9) - '@babel/preset-env': 7.24.7(@babel/core@7.24.9) + '@babel/preset-env': 7.24.7(@babel/core@7.23.9) '@babel/preset-flow': 7.22.15(@babel/core@7.24.9) '@babel/preset-typescript': 7.23.0(@babel/core@7.24.9) '@babel/register': 7.22.15(@babel/core@7.24.9) @@ -50436,7 +50985,7 @@ snapshots: chalk: 4.1.2 flow-parser: 0.218.0 graceful-fs: 4.2.11 - micromatch: 4.0.5 + micromatch: 4.0.8 neo-async: 2.6.2 node-dir: 0.1.17 recast: 0.21.5 @@ -50445,15 +50994,15 @@ snapshots: transitivePeerDependencies: - supports-color - jscodeshift@0.15.1(@babel/preset-env@7.24.7(@babel/core@7.24.9)): + jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.9)): dependencies: '@babel/core': 7.24.9 '@babel/parser': 7.25.3 - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.9) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.9) '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.9) - '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.9) - '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.9) + '@babel/preset-env': 7.24.7(@babel/core@7.24.9) '@babel/preset-flow': 7.22.15(@babel/core@7.24.9) '@babel/preset-typescript': 7.23.0(@babel/core@7.24.9) '@babel/register': 7.22.15(@babel/core@7.24.9) @@ -50461,6 +51010,31 @@ snapshots: chalk: 4.1.2 flow-parser: 0.218.0 graceful-fs: 4.2.11 + micromatch: 4.0.8 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.21.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + + jscodeshift@0.15.1(@babel/preset-env@7.24.7(@babel/core@7.23.9)): + dependencies: + '@babel/core': 7.23.9 + '@babel/parser': 7.23.9 + '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.23.9) + '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.23.9) + '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.23.9) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.9) + '@babel/preset-typescript': 7.23.0(@babel/core@7.23.9) + '@babel/register': 7.22.15(@babel/core@7.23.9) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.9) + chalk: 4.1.2 + flow-parser: 0.218.0 + graceful-fs: 4.2.11 micromatch: 4.0.5 neo-async: 2.6.2 node-dir: 0.1.17 @@ -50468,7 +51042,7 @@ snapshots: temp: 0.8.4 write-file-atomic: 2.4.3 optionalDependencies: - '@babel/preset-env': 7.24.7(@babel/core@7.24.9) + '@babel/preset-env': 7.24.7(@babel/core@7.23.9) transitivePeerDependencies: - supports-color @@ -50635,7 +51209,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.6.2 + semver: 7.6.3 jsprim@2.0.2: dependencies: @@ -51237,7 +51811,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.6.2 + semver: 7.6.3 make-error@1.3.6: {} @@ -51816,7 +52390,7 @@ snapshots: node-abi@3.43.0: dependencies: - semver: 7.6.2 + semver: 7.5.4 node-abort-controller@3.1.1: {} @@ -51887,7 +52461,7 @@ snapshots: make-fetch-happen: 13.0.1 nopt: 7.2.1 proc-log: 4.2.0 - semver: 7.6.2 + semver: 7.6.3 tar: 6.2.1 which: 4.0.0 transitivePeerDependencies: @@ -52035,7 +52609,7 @@ snapshots: normalize-package-data@6.0.2: dependencies: hosted-git-info: 7.0.2 - semver: 7.6.2 + semver: 7.6.3 validate-npm-package-license: 3.0.4 normalize-path@2.1.1: @@ -52462,7 +53036,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.1.6 @@ -52827,10 +53401,32 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.16 + postcss-modules-extract-imports@3.0.0(postcss@8.4.12): + dependencies: + postcss: 8.4.12 + + postcss-modules-extract-imports@3.0.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-modules-extract-imports@3.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 + postcss-modules-local-by-default@4.0.0(postcss@8.4.12): + dependencies: + icss-utils: 5.1.0(postcss@8.4.12) + postcss: 8.4.12 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + + postcss-modules-local-by-default@4.0.0(postcss@8.4.38): + dependencies: + icss-utils: 5.1.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + postcss-value-parser: 4.2.0 + postcss-modules-local-by-default@4.0.5(postcss@8.4.38): dependencies: icss-utils: 5.1.0(postcss@8.4.38) @@ -52838,11 +53434,26 @@ snapshots: postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 + postcss-modules-scope@3.0.0(postcss@8.4.12): + dependencies: + postcss: 8.4.12 + postcss-selector-parser: 6.0.16 + + postcss-modules-scope@3.0.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 + postcss-modules-scope@3.2.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.0.16 + postcss-modules-values@4.0.0(postcss@8.4.12): + dependencies: + icss-utils: 5.1.0(postcss@8.4.12) + postcss: 8.4.12 + postcss-modules-values@4.0.0(postcss@8.4.38): dependencies: icss-utils: 5.1.0(postcss@8.4.38) @@ -52928,6 +53539,12 @@ snapshots: postcss-value-parser@4.2.0: {} + postcss@8.4.12: + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.2.0 + postcss@8.4.38: dependencies: nanoid: 3.3.7 @@ -53383,9 +54000,9 @@ snapshots: react-docgen@5.4.3: dependencies: - '@babel/core': 7.24.9 - '@babel/generator': 7.25.0 - '@babel/runtime': 7.24.7 + '@babel/core': 7.23.9 + '@babel/generator': 7.23.6 + '@babel/runtime': 7.23.6 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -53398,9 +54015,9 @@ snapshots: react-docgen@7.0.3: dependencies: - '@babel/core': 7.24.9 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/core': 7.23.9 + '@babel/traverse': 7.23.9 + '@babel/types': 7.23.9 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.5 '@types/doctrine': 0.0.9 @@ -53537,6 +54154,13 @@ snapshots: prop-types: 15.8.1 react: 17.0.2 + react-monaco-editor@0.51.0(@types/react@17.0.21)(monaco-editor@0.39.0)(react@17.0.2): + dependencies: + '@types/react': 17.0.21 + monaco-editor: 0.39.0 + prop-types: 15.8.1 + react: 17.0.2 + react-pure-loaders@3.0.1(@emotion/core@10.3.1(react@17.0.2))(react@17.0.2): dependencies: '@emotion/core': 10.3.1(react@17.0.2) @@ -53848,7 +54472,7 @@ snapshots: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.2 + tslib: 2.7.0 recast@0.23.4: dependencies: @@ -53956,7 +54580,7 @@ snapshots: relay-runtime@12.0.0(encoding@0.1.13): dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 fbjs: 3.0.2(encoding@0.1.13) invariant: 2.2.4 transitivePeerDependencies: @@ -54737,7 +55361,7 @@ snapshots: socks-proxy-agent@8.0.4: dependencies: agent-base: 7.1.1 - debug: 4.3.5 + debug: 4.3.6 socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -55202,7 +55826,7 @@ snapshots: mime: 2.6.0 qs: 6.11.2 readable-stream: 3.6.0 - semver: 7.6.2 + semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -56025,6 +56649,24 @@ snapshots: optionalDependencies: '@swc/core': 1.3.92 + ts-node@10.9.2(@types/node@20.14.2): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 20.14.2 + acorn: 8.12.1 + acorn-walk: 8.2.0 + arg: 4.1.0 + create-require: 1.1.1 + diff: 4.0.1 + make-error: 1.3.6 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + optional: true + ts-node@10.9.2(@types/node@20.14.2)(typescript@5.5.3): dependencies: '@cspotcode/source-map-support': 0.8.1 @@ -56554,7 +57196,7 @@ snapshots: v8-to-istanbul@9.1.3: dependencies: - '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/trace-mapping': 0.3.18 '@types/istanbul-lib-coverage': 2.0.1 convert-source-map: 2.0.0