diff --git a/.changeset/funny-bikes-provide.md b/.changeset/funny-bikes-provide.md
new file mode 100644
index 0000000000..2637e81e2e
--- /dev/null
+++ b/.changeset/funny-bikes-provide.md
@@ -0,0 +1,19 @@
+---
+'@equinor/fusion-framework-module-ag-grid': patch
+---
+
+---
+
+## "@equinor/fusion-framework-module-ag-grid": patch
+
+**@equinor/fusion-framework-module-ag-grid:**
+
+- Updated `README.md` with detailed documentation for the AG Grid React for Fusion Framework, including installation, configuration, theming, customizing a grid instance, and upgrading from version 32 to 33.
+- Refactor: `package.json` to include peer dependencies for `ag-grid-community` and `ag-grid-enterprise`.
+- Fixed: `AgGridConfigurator` class to setting the license key on initialization.
+- Refactor: import statements to use `ag-grid-enterprise` and `ag-grid-community`.
+- Feature: Added `createThemeFromExistingTheme` function to decontruct an existing theme and create a new theme _(AG-Grid type checks with `instanceof` which will break since the parent scope has another instance than the consumer)._
+
+We have chose to only `patch` this release, to conform with the AG Grid versioning scheme, event tho there are some breaking changes. This is because the breaking changes are not related to the API of the module itself, but rather to the dependencies of the module.
+
+- `@equinor/fusion-framework-module-ag-grid/enterprise` and `@equinor/fusion-framework-module-ag-grid/community` have been removed. Instead, the module now relies on the `ag-grid-enterprise` and `ag-grid-community` packages as peer dependencies. This means that you will have to install these packages yourself.
diff --git a/.changeset/initial-release-ag-grid.md b/.changeset/initial-release-ag-grid.md
new file mode 100644
index 0000000000..833253c2a4
--- /dev/null
+++ b/.changeset/initial-release-ag-grid.md
@@ -0,0 +1,32 @@
+---
+"@equinor/fusion-framework-react-ag-grid": major
+---
+
+Created a new package for AG Grid integration with Fusion Framework React.
+This package is a wrapper for `ag-grid-react`, `ag-grid-community` and `ag-grid-enterprise` packages.
+
+## Features
+
+- Consolidated AG Grid dependencies into a single package.
+- Method for enabling Fusion Framework AG Grid module
+- Utilities for extending Fusion themes
+
+## Getting started
+
+To install the package, run:
+
+```sh
+pnpm i @equinor/fusion-framework-react-ag-grid
+```
+
+To enable the AG Grid module, add the following to your `config.ts`:
+
+```ts
+import { enableAgGrid } from '@equinor/fusion-framework-react-ag-grid';
+
+const configure = (config: Config) => {
+ enableAgGrid(config);
+};
+```
+
+See more in [packages/react/ag-grid/README.md](https://github.com/equinor/fusion-framework/blob/main/packages/react/ag-grid/README.md)
diff --git a/.changeset/seven-pans-watch.md b/.changeset/seven-pans-watch.md
new file mode 100644
index 0000000000..0226e8d7c7
--- /dev/null
+++ b/.changeset/seven-pans-watch.md
@@ -0,0 +1,14 @@
+---
+'@equinor/fusion-framework-cookbook-app-react-ag-grid': patch
+---
+
+---
+
+## "@equinor/fusion-framework-cookbook-app-react-ag-grid": patch
+
+Updated the package to use `@equinor/fusion-framework-react-ag-grid` instead of `@equinor/fusion-framework-module-ag-grid`.
+
+- Replaced `@equinor/fusion-framework-module-ag-grid` with `@equinor/fusion-framework-react-ag-grid` in `package.json`.
+- Updated imports in `App.tsx` and `config.ts` to use `@equinor/fusion-framework-react-ag-grid`.
+- Modified `tsconfig.json` to use `react-jsx` instead of `react-jsxdev`.
+- Added `app.manifest.config.ts` to define the app manifest.
diff --git a/cookbooks/app-react-ag-grid/app.manifest.config.ts b/cookbooks/app-react-ag-grid/app.manifest.config.ts
new file mode 100644
index 0000000000..bbfa3db165
--- /dev/null
+++ b/cookbooks/app-react-ag-grid/app.manifest.config.ts
@@ -0,0 +1,3 @@
+import { defineAppManifest } from '@equinor/fusion-framework-cli';
+
+export default defineAppManifest(async () => ({ appKey: 'cookbook-ag-grid' }));
diff --git a/cookbooks/app-react-ag-grid/package.json b/cookbooks/app-react-ag-grid/package.json
index 01f1525179..b22bbd384d 100644
--- a/cookbooks/app-react-ag-grid/package.json
+++ b/cookbooks/app-react-ag-grid/package.json
@@ -1,6 +1,6 @@
{
"name": "@equinor/fusion-framework-cookbook-app-react-ag-grid",
- "version": "0.6.2",
+ "version": "0.6.2-17",
"description": "Setup AG-grid with fusion-framework",
"private": true,
"type": "module",
@@ -14,11 +14,10 @@
"license": "ISC",
"dependencies": {
"@equinor/fusion-framework-cli": "workspace:^",
- "@equinor/fusion-framework-module-ag-grid": "workspace:^",
"@equinor/fusion-framework-react-app": "workspace:^",
+ "@equinor/fusion-framework-react-ag-grid": "workspace:*",
"@types/react": "^18.2.50",
"@types/react-dom": "^18.2.7",
- "ag-grid-react": "^33.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.5.4"
diff --git a/cookbooks/app-react-ag-grid/src/App.tsx b/cookbooks/app-react-ag-grid/src/App.tsx
index e6101b581d..9ca67be66d 100644
--- a/cookbooks/app-react-ag-grid/src/App.tsx
+++ b/cookbooks/app-react-ag-grid/src/App.tsx
@@ -1,8 +1,7 @@
// Import necessary hooks and components from React and Ag-Grid
import { useCallback, useMemo, useState } from 'react';
-import { AgGridReact } from 'ag-grid-react';
-import { type ColDef } from '@equinor/fusion-framework-module-ag-grid/community';
-import { createTheme } from '@equinor/fusion-framework-module-ag-grid/themes';
+import { AgGridReact } from '@equinor/fusion-framework-react-ag-grid';
+import { createTheme, type ColDef } from '@equinor/fusion-framework-react-ag-grid/community';
// Import custom table configuration
import { defaultColDef, sideBar } from './table';
@@ -64,6 +63,7 @@ export const App = (): JSX.Element => {
}),
[],
);
+ customTheme;
return (
<>
@@ -73,8 +73,8 @@ export const App = (): JSX.Element => {
{
/** print render environment arguments */
@@ -22,11 +22,11 @@ export const configure: AppModuleInitiator = (configurator, { env }) => {
ExcelExportModule,
ClipboardModule,
]);
- builder.setTheme((theme) => {
- return theme.withParams({
- backgroundColor: 'blue',
- });
- });
+ // builder.setTheme((theme) => {
+ // return theme.withParams({
+ // backgroundColor: 'blue',
+ // });
+ // });
});
/** callback when configurations is created */
diff --git a/cookbooks/app-react-ag-grid/tsconfig.json b/cookbooks/app-react-ag-grid/tsconfig.json
index fe69b11925..3d73e8ac21 100644
--- a/cookbooks/app-react-ag-grid/tsconfig.json
+++ b/cookbooks/app-react-ag-grid/tsconfig.json
@@ -12,7 +12,7 @@
"esModuleInterop": true,
"rootDir": "src",
- "jsx": "react-jsxdev",
+ "jsx": "react-jsx",
},
"include": [
"src/**/*"
diff --git a/packages/modules/ag-grid/README.md b/packages/modules/ag-grid/README.md
index 476160e262..dc4e477af0 100644
--- a/packages/modules/ag-grid/README.md
+++ b/packages/modules/ag-grid/README.md
@@ -4,27 +4,23 @@ This module provides an agnostic wrapper around the [AG Grid](https://www.ag-gri
The intention of this module is to provide a consistent way to configure AG Grid and to ensure that the correct version of AG Grid is used.
+> [!TIP]
+> This is the base package for AG Grid in Fusion, which means that `ag-grid-enterprise` and `ag-grid-community` is required to be installed. This package should be consumed by the host (portal) which configures AG Grid for the applications. See [`@equinor/fusion-framework-module-ag-grid`](https://www.npmjs.com/package/@equinor/fusion-framework-react-ag-grid) for usage in applications.
+
## Installation
```sh
npm i @equinor/fusion-framework-module-ag-grid
-npm i ag-grid-react // or the framework of your choice
```
> [!WARNING]
> Fusion will try to keep the semantic major and minor versions in sync with AG Grid, but there might be cases where this is not possible. So `@equinor/fusion-framework-module-ag-grid` and `ag-grid` might have different __patch__ versions.
->
-> It is possible to install `ag-grid-enterprise` and `ag-grid-community` if needed, but it is recommended to use the modules provided by this package.
> [!IMPORTANT]
> Before upgrading to AG Grid 33, please read remove all previous references to `@equinor/fusion-react-ag-grid-styles`, `@ag-grid-community/*` and `@ag-grid-enterprise/*` from your project dependencies.
## Configuration
-> [!IMPORTANT]
-> Since ag-grid is re-exported from this package, node has a hard time resolving the correct types.
-> The solution for now is to have `"moduleResolution": "bundler"` in your `tsconfig.json`.
-
### Portal
```ts
@@ -38,22 +34,6 @@ export async function configure(config: FrameworkConfigurator) {
}
```
-### Application
-
-To use AG Grid in an application, the module needs to be enabled in the application configuration.
-
-> [!NOTE]
-> All configuration is scoped to the application.
-
-```ts
-import { type AppModuleInitiator } from '@equinor/fusion-framework-react-app';
-import { enableAgGrid } from '@equinor/fusion-framework-module-ag-grid';
-
-export const configure: AppModuleInitiator = (configurator, { env }) => {
- enableAgGrid(configurator);
-};
-```
-
## Theming
This module uses the `alpine` theme as the base [theme for AG Grid](https://www.ag-grid.com/react-data-grid/theming/).
diff --git a/packages/modules/ag-grid/package.json b/packages/modules/ag-grid/package.json
index 5e34edade7..555a0460fe 100644
--- a/packages/modules/ag-grid/package.json
+++ b/packages/modules/ag-grid/package.json
@@ -9,14 +9,6 @@
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
- "./community": {
- "import": "./dist/esm/community.js",
- "types": "./dist/types/community.d.ts"
- },
- "./enterprise": {
- "import": "./dist/esm/enterprise.js",
- "types": "./dist/types/enterprise.d.ts"
- },
"./themes": {
"import": "./dist/esm/themes.js",
"types": "./dist/types/themes.d.ts"
@@ -49,15 +41,16 @@
"url": "git+https://github.com/equinor/fusion-framework.git",
"directory": "packages/modules/ag-grid"
},
- "dependencies": {
- "ag-grid-community": "^33.0.3",
- "ag-grid-enterprise": "^33.0.3"
- },
+ "dependencies": {},
"devDependencies": {
"@equinor/fusion-framework-module": "workspace:^",
- "typescript": "^5.5.4"
+ "typescript": "^5.5.4",
+ "ag-grid-community": "33.0.3",
+ "ag-grid-enterprise": "33.0.3"
},
"peerDependencies": {
- "@equinor/fusion-framework-module": "workspace:^"
+ "@equinor/fusion-framework-module": "workspace:^",
+ "ag-grid-community": ">=33.0.3",
+ "ag-grid-enterprise": ">=33.0.3"
}
}
\ No newline at end of file
diff --git a/packages/modules/ag-grid/src/AgGridConfigurator.ts b/packages/modules/ag-grid/src/AgGridConfigurator.ts
index e79ae843ce..05b7a455f4 100644
--- a/packages/modules/ag-grid/src/AgGridConfigurator.ts
+++ b/packages/modules/ag-grid/src/AgGridConfigurator.ts
@@ -21,6 +21,7 @@ export class AgGridConfigurator
// set config properties
this._set('modules', async () => [...this.#modules]);
this._set('theme', async () => this.#theme);
+ this.setLicenseKey(args.licenseKey);
}
setLicenseKey(value: string | undefined): void {
diff --git a/packages/modules/ag-grid/src/AgGridProvider.ts b/packages/modules/ag-grid/src/AgGridProvider.ts
index f35c6db93b..dfdc0372be 100644
--- a/packages/modules/ag-grid/src/AgGridProvider.ts
+++ b/packages/modules/ag-grid/src/AgGridProvider.ts
@@ -1,5 +1,5 @@
-import { LicenseManager } from './enterprise';
-import { ModuleRegistry, provideGlobalGridOptions, type Theme } from './community';
+import { LicenseManager } from 'ag-grid-enterprise';
+import { ModuleRegistry, provideGlobalGridOptions, type Theme } from 'ag-grid-community';
import { AgGridConfig } from './AgGridConfigurator.interface';
diff --git a/packages/modules/ag-grid/src/default-modules.ts b/packages/modules/ag-grid/src/default-modules.ts
index 0c84050b04..d0ae2c814d 100644
--- a/packages/modules/ag-grid/src/default-modules.ts
+++ b/packages/modules/ag-grid/src/default-modules.ts
@@ -1,4 +1,4 @@
-import { type Module } from './enterprise';
+import { type Module } from 'ag-grid-enterprise';
// TODO: Add default modules here which all consumers of the module will use
// NOTE: Adding modules here will increase the bundle size
diff --git a/packages/modules/ag-grid/src/index.ts b/packages/modules/ag-grid/src/index.ts
index efc208fc0d..53008003f1 100644
--- a/packages/modules/ag-grid/src/index.ts
+++ b/packages/modules/ag-grid/src/index.ts
@@ -1,4 +1,8 @@
-export * from './AgGridConfigurator';
-export * from './AgGridProvider';
-export * from './module';
-export { default } from './module';
+export { AgGridConfigurator } from './AgGridConfigurator';
+export { AgGridProvider, type IAgGridProvider } from './AgGridProvider';
+export {
+ enableAgGrid,
+ type AgGridModule,
+ type AgGridBuilderCallback,
+ module as default,
+} from './module';
diff --git a/packages/modules/ag-grid/src/module.ts b/packages/modules/ag-grid/src/module.ts
index 68a01134df..76717c25fe 100644
--- a/packages/modules/ag-grid/src/module.ts
+++ b/packages/modules/ag-grid/src/module.ts
@@ -1,14 +1,16 @@
+import {
+ type IModulesConfigurator,
+ type Module,
+ type ModulesInstanceType,
+} from '@equinor/fusion-framework-module';
+
import { AgGridConfigurator } from './AgGridConfigurator';
import { defaultModules } from './default-modules';
import { IAgGridProvider, AgGridProvider } from './AgGridProvider';
-import type {
- IModulesConfigurator,
- Module,
- ModulesInstanceType,
-} from '@equinor/fusion-framework-module';
+
import { type IAgGridConfigurator } from './AgGridConfigurator.interface';
-import { fusionTheme } from './themes';
+import { fusionTheme, createThemeFromTheme } from './themes';
export type AgGridModule = Module<'agGrid', IAgGridProvider, IAgGridConfigurator>;
@@ -18,7 +20,8 @@ export const module: AgGridModule = {
name: 'agGrid',
configure: (ref?: ModulesInstanceType<[AgGridModule]>) => {
const licenseKey = ref?.agGrid?.licenseKey;
- const theme = ref?.agGrid?.theme ?? fusionTheme;
+
+ const theme = ref?.agGrid?.theme ? createThemeFromTheme(ref.agGrid.theme) : fusionTheme;
return new AgGridConfigurator({
licenseKey,
theme,
diff --git a/packages/modules/ag-grid/src/themes.ts b/packages/modules/ag-grid/src/themes.ts
index 7ff316f405..f356e16223 100644
--- a/packages/modules/ag-grid/src/themes.ts
+++ b/packages/modules/ag-grid/src/themes.ts
@@ -1,9 +1,44 @@
-import { type Theme, themeAlpine, createTheme } from './community';
+import { type Theme, themeAlpine, createTheme, createPart } from 'ag-grid-community';
export const fusionTheme: Theme = themeAlpine.withParams({
fontFamily: 'Equinor, sans-serif',
+ accentColor: '#00A2FF',
+ backgroundColor: '#21222C',
+ borderColor: '#429356',
+ borderRadius: 0,
+ browserColorScheme: 'dark',
+ cellHorizontalPaddingScale: 0.8,
+ cellTextColor: '#50F178',
+ columnBorder: true,
+ fontSize: 12,
+ foregroundColor: '#68FF8E',
+ headerBackgroundColor: '#21222C',
+ headerFontSize: 14,
+ headerFontWeight: 700,
+ headerTextColor: '#68FF8E',
+ headerVerticalPaddingScale: 1.5,
+ oddRowBackgroundColor: '#21222C',
+ rangeSelectionBackgroundColor: '#FFFF0020',
+ rangeSelectionBorderColor: 'yellow',
+ rangeSelectionBorderStyle: 'dashed',
+ rowBorder: true,
+ rowVerticalPaddingScale: 1.5,
+ sidePanelBorder: true,
+ spacing: 4,
+ wrapperBorder: true,
+ wrapperBorderRadius: 0,
});
+export const createThemeFromTheme = (theme: Theme): Theme => {
+ const newTheme = createTheme();
+ if ('parts' in theme && Array.isArray(theme.parts)) {
+ for (const part of theme.parts) {
+ newTheme.withPart(createPart(part));
+ }
+ }
+ return newTheme;
+};
+
export { createTheme, type Theme };
export default { fusionTheme };
diff --git a/packages/react/ag-grid/README.md b/packages/react/ag-grid/README.md
new file mode 100644
index 0000000000..2f93fa1e1b
--- /dev/null
+++ b/packages/react/ag-grid/README.md
@@ -0,0 +1,77 @@
+# AG Grid React for Fusion Framework
+
+## Installation
+
+```sh
+npm i @equinor/fusion-framework-react-ag-grid
+```
+
+## Configuration
+
+```ts
+// config.ts
+import { enableAgGrid } from '@equinor/fusion-framework-react-ag-grid';
+
+export const configure = (configurator) => {
+ enableAgGrid(configurator);
+};
+```
+
+> [!IMPORTANT]
+> Since ag-grid is re-exported from this package, node has a hard time resolving the correct types.
+> The solution for now is to have `"moduleResolution": "bundler"` in your `tsconfig.json`.
+
+## Theming
+
+Theming will be provided the host (portal) which configures AG Grid for the applications. But the application can override the theme by providing a custom theme.
+
+```ts
+enableAgGrid(configurator, (builder) => {
+ builder.setTheme((theme) => {
+ return theme.withParams({
+ backgroundColor: "#1f2836",
+ browserColorScheme: "dark",
+ chromeBackgroundColor: {
+ ref: "foregroundColor",
+ mix: 0.07,
+ onto: "backgroundColor"
+ },
+ foregroundColor: "#FFF",
+ headerFontSize: 14
+ });
+ });
+});
+```
+
+> [!TIP]
+> AG Grid has a [theme builder](https://www.ag-grid.com/theme-builder/) that can be used to preview and generate a custom theme.
+
+### Customizing a grid instance
+
+The module provides a hook to customize a grid instance.
+
+```tsx
+import { useTheme } from '@equinor/fusion-framework-react-app/ag-grid';
+
+const MyComponent = () => {
+ const baseTheme = useTheme();
+ const [hasError, setHasError] = useState(false);
+ const theme = useMemo(() => baseTheme.withParams({
+ // add red text color if error
+ cellTextColor: hasError ? "#FF0000" : baseTheme.cellTextColor,
+ }), [baseTheme, hasError]);
+
+ return (
+
+ );
+};
+```
+
+## Upgrading from 32 to 33
+
+Before upgrading to AG Grid 33, please read remove all previous references to `@equinor/fusion-react-ag-grid-styles`, `@ag-grid-community/*` and `@ag-grid-enterprise/*` from your project dependencies.
+
+__Only `@equinor/fusion-framework-react-ag-grid` should be installed.__ All references to ag-grid should be removed.
\ No newline at end of file
diff --git a/packages/react/ag-grid/package.json b/packages/react/ag-grid/package.json
new file mode 100644
index 0000000000..cd369a67ce
--- /dev/null
+++ b/packages/react/ag-grid/package.json
@@ -0,0 +1,62 @@
+{
+ "name": "@equinor/fusion-framework-react-ag-grid",
+ "version": "32.0.0",
+ "description": "Fusion module for using AG Grid",
+ "main": "dist/esm/index.js",
+ "types": "dist/types/index.d.ts",
+ "exports": {
+ ".": {
+ "import": "./dist/esm/index.js",
+ "types": "./dist/types/index.d.ts"
+ },
+ "./community": {
+ "import": "./dist/esm/community.js",
+ "types": "./dist/types/community.d.ts"
+ },
+ "./enterprise": {
+ "import": "./dist/esm/enterprise.js",
+ "types": "./dist/types/enterprise.d.ts"
+ },
+ "./themes": {
+ "import": "./dist/esm/themes.js",
+ "types": "./dist/types/themes.d.ts"
+ },
+ "./package.json": "./package.json",
+ "./README.md": "./README.md"
+ },
+ "typesVersions": {
+ "*": {
+ "themes": [
+ "dist/types/themes.d.ts"
+ ]
+ }
+ },
+ "scripts": {
+ "build": "tsc -b",
+ "prepack": "pnpm build"
+ },
+ "keywords": [
+ "ag-grid",
+ "table"
+ ],
+ "author": "",
+ "license": "ISC",
+ "publishConfig": {
+ "access": "public"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/equinor/fusion-framework.git",
+ "directory": "packages/react/modules/ag-grid"
+ },
+ "dependencies": {
+ "@equinor/fusion-framework-module-ag-grid": "workspace:*",
+ "ag-grid-community": "33.0.3",
+ "ag-grid-enterprise": "33.0.3",
+ "ag-grid-react": "33.0.3"
+ },
+ "devDependencies": {
+ "@equinor/fusion-framework-react-module": "workspace:^",
+ "typescript": "^5.5.4"
+ }
+}
\ No newline at end of file
diff --git a/packages/modules/ag-grid/src/community.ts b/packages/react/ag-grid/src/community.ts
similarity index 100%
rename from packages/modules/ag-grid/src/community.ts
rename to packages/react/ag-grid/src/community.ts
diff --git a/packages/modules/ag-grid/src/enterprise.ts b/packages/react/ag-grid/src/enterprise.ts
similarity index 100%
rename from packages/modules/ag-grid/src/enterprise.ts
rename to packages/react/ag-grid/src/enterprise.ts
diff --git a/packages/react/ag-grid/src/index.ts b/packages/react/ag-grid/src/index.ts
new file mode 100644
index 0000000000..2ee1b4cbbe
--- /dev/null
+++ b/packages/react/ag-grid/src/index.ts
@@ -0,0 +1,9 @@
+export { AgGridReact } from 'ag-grid-react';
+
+export { enableAgGrid, type IAgGridProvider } from '@equinor/fusion-framework-module-ag-grid';
+
+export {
+ fusionTheme,
+ createTheme,
+ type Theme,
+} from '@equinor/fusion-framework-module-ag-grid/themes';
diff --git a/packages/react/ag-grid/src/useTheme.ts b/packages/react/ag-grid/src/useTheme.ts
new file mode 100644
index 0000000000..4be941bd8b
--- /dev/null
+++ b/packages/react/ag-grid/src/useTheme.ts
@@ -0,0 +1,18 @@
+import { useModule } from '@equinor/fusion-framework-react-module';
+import { type AgGridModule } from '@equinor/fusion-framework-module-ag-grid';
+import { type Theme } from '@equinor/fusion-framework-module-ag-grid/themes';
+
+/**
+ * Hook for using the current AG Grid theme.
+ */
+export const useTheme = (): Theme => {
+ const agGrid = useModule('agGrid');
+
+ if (!agGrid) {
+ throw new Error('agGrid module is not available');
+ }
+
+ return agGrid.theme as Theme;
+};
+
+export default useTheme;
diff --git a/packages/react/ag-grid/tsconfig.json b/packages/react/ag-grid/tsconfig.json
new file mode 100644
index 0000000000..00bf5c0ce0
--- /dev/null
+++ b/packages/react/ag-grid/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "extends": "../tsconfig.react.json",
+ "compilerOptions": {
+ "outDir": "dist/esm",
+ "rootDir": "src",
+ "declarationDir": "./dist/types",
+ "paths": {
+ "react": [
+ "./node_modules/@types/react"
+ ],
+ },
+ },
+ "references": [
+ {
+ "path": "../../modules/ag-grid"
+ },
+ {
+ "path": "../modules/module"
+ }
+ ],
+ "include": [
+ "src/**/*"
+ ],
+ "exclude": [
+ "node_modules",
+ "lib"
+ ]
+}
\ No newline at end of file
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2e6d2c447a..9b17fb0c8f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -16,16 +16,16 @@ importers:
version: 2.27.12
'@equinor/eslint-config-fusion':
specifier: ^2.1.4
- version: 2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.7.3)
+ version: 2.3.0(eslint@8.57.1)(prettier@3.4.2)(typescript@5.7.3)
'@equinor/eslint-config-fusion-react':
specifier: ^2.0.1
- version: 2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.7.3))(eslint@8.57.1)
+ version: 2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.4.2)(typescript@5.7.3))(eslint@8.57.1)
'@typescript-eslint/eslint-plugin':
specifier: ^7.7.1
version: 7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3)
'@vitest/coverage-v8':
specifier: ^2.0.1
- version: 2.0.5(vitest@2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8))
+ version: 2.0.5(vitest@2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0))
eslint:
specifier: ^8.47.0
version: 8.57.1
@@ -34,7 +34,7 @@ importers:
version: 1.0.6
eslint-plugin-prettier:
specifier: ^5.0.0
- version: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.0)
+ version: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2)
eslint-plugin-rxjs:
specifier: ^5.0.3
version: 5.0.3(eslint@8.57.1)(typescript@5.7.3)
@@ -43,13 +43,13 @@ importers:
version: 3.2.0
happy-dom:
specifier: ^17.0.3
- version: 17.0.3
+ version: 17.0.4
lerna-update-wizard:
specifier: ^1.1.2
version: 1.1.2
prettier:
specifier: ^3.0.2
- version: 3.5.0
+ version: 3.4.2
rimraf:
specifier: ^6.0.0
version: 6.0.1
@@ -58,16 +58,16 @@ importers:
version: 2.8.1
turbo:
specifier: ^2.0.6
- version: 2.4.1
+ version: 2.3.4
typescript:
specifier: ^5.5.4
version: 5.7.3
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ version: 2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
vitest-github-actions-reporter:
specifier: ^0.11.1
- version: 0.11.1(vitest@2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8))
+ version: 0.11.1(vitest@2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0))
cookbooks/app-react:
devDependencies:
@@ -98,9 +98,9 @@ importers:
'@equinor/fusion-framework-cli':
specifier: workspace:^
version: link:../../packages/cli
- '@equinor/fusion-framework-module-ag-grid':
- specifier: workspace:^
- version: link:../../packages/modules/ag-grid
+ '@equinor/fusion-framework-react-ag-grid':
+ specifier: workspace:*
+ version: link:../../packages/react/ag-grid
'@equinor/fusion-framework-react-app':
specifier: workspace:^
version: link:../../packages/react/app
@@ -110,9 +110,6 @@ importers:
'@types/react-dom':
specifier: ^18.2.7
version: 18.3.0
- ag-grid-react:
- specifier: ^33.0.3
- version: 33.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.2.0
version: 18.3.1
@@ -415,7 +412,7 @@ importers:
dependencies:
'@equinor/eds-core-react':
specifier: ^0.43.0
- version: 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@equinor/eds-icons':
specifier: ^0.22.0
version: 0.22.0
@@ -433,7 +430,7 @@ importers:
version: 6.25.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
styled-components:
specifier: ^6.0.7
- version: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@equinor/fusion-framework-cli':
specifier: workspace:^
@@ -563,7 +560,7 @@ importers:
version: link:../../packages/react/app
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.4(vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))
+ version: 4.3.4(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))
is-mergeable-object:
specifier: ^1.1.1
version: 1.1.1
@@ -575,10 +572,10 @@ importers:
version: 18.3.1(react@18.3.1)
vite:
specifier: ^6.0.7
- version: 6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ version: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
vite-plugin-environment:
specifier: ^1.1.3
- version: 1.1.3(vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))
+ version: 1.1.3(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))
devDependencies:
'@types/react':
specifier: ^18.2.50
@@ -622,7 +619,7 @@ importers:
dependencies:
'@vitejs/plugin-react':
specifier: ^4.0.4
- version: 4.3.4(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))
+ version: 4.3.4(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))
adm-zip:
specifier: ^0.5.10
version: 0.5.16
@@ -652,7 +649,7 @@ importers:
version: 3.3.2
ora:
specifier: ^8.0.1
- version: 8.2.0
+ version: 8.0.1
portfinder:
specifier: ^1.0.32
version: 1.0.32
@@ -664,26 +661,26 @@ importers:
version: 11.0.0
semver:
specifier: ^7.5.4
- version: 7.7.1
+ version: 7.7.0
vite:
specifier: ^6.0.7
- version: 6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ version: 6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
vite-plugin-environment:
specifier: ^1.1.3
- version: 1.1.3(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))
+ version: 1.1.3(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))
vite-plugin-restart:
specifier: ^0.4.0
- version: 0.4.2(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))
+ version: 0.4.2(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))
vite-tsconfig-paths:
specifier: ^4.2.0
- version: 4.3.2(typescript@5.5.4)(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))
+ version: 4.3.2(typescript@5.5.4)(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))
zod:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
'@equinor/eds-core-react':
specifier: ^0.43.0
- version: 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@equinor/eds-icons':
specifier: ^0.22.0
version: 0.22.0
@@ -692,7 +689,7 @@ importers:
version: 0.9.2
'@equinor/eslint-config-fusion-react':
specifier: ^2.0.1
- version: 2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.5.4))(eslint@8.57.1)
+ version: 2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@9.20.0(jiti@2.4.2))(prettier@3.5.0)(typescript@5.5.4))(eslint@9.20.0(jiti@2.4.2))
'@equinor/fusion-framework':
specifier: workspace:^
version: link:../framework
@@ -746,7 +743,7 @@ importers:
version: 0.3.0(react@18.3.1)
'@equinor/fusion-react-side-sheet':
specifier: 1.3.4
- version: 1.3.4(@equinor/eds-core-react@0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)))(@equinor/eds-icons@0.22.0)(@equinor/eds-tokens@0.9.2)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 1.3.4(@equinor/eds-core-react@0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)))(@equinor/eds-icons@0.22.0)(@equinor/eds-tokens@0.9.2)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@equinor/fusion-react-styles':
specifier: ^0.6.0
version: 0.6.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -782,7 +779,7 @@ importers:
version: 7.5.8
eslint-plugin-rxjs:
specifier: ^5.0.3
- version: 5.0.3(eslint@8.57.1)(typescript@5.5.4)
+ version: 5.0.3(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
react:
specifier: ^18.2.0
version: 18.3.1
@@ -794,13 +791,13 @@ importers:
version: 6.25.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rollup:
specifier: ^4.22.4
- version: 4.34.6
+ version: 4.32.1
rxjs:
specifier: ^7.8.1
version: 7.8.1
styled-components:
specifier: ^6.0.7
- version: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -837,17 +834,16 @@ importers:
version: 5.5.4
packages/modules/ag-grid:
- dependencies:
- ag-grid-community:
- specifier: ^33.0.3
- version: 33.0.3
- ag-grid-enterprise:
- specifier: ^33.0.3
- version: 33.0.3
devDependencies:
'@equinor/fusion-framework-module':
specifier: workspace:^
version: link:../module
+ ag-grid-community:
+ specifier: 33.0.3
+ version: 33.0.3
+ ag-grid-enterprise:
+ specifier: 33.0.3
+ version: 33.0.3
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -1048,7 +1044,7 @@ importers:
version: 5.5.4
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ version: 2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
packages/modules/module:
dependencies:
@@ -1057,7 +1053,7 @@ importers:
version: 7.8.1
semver:
specifier: ^7.5.4
- version: 7.7.1
+ version: 7.7.0
devDependencies:
'@types/node':
specifier: ^20.11.14
@@ -1174,7 +1170,7 @@ importers:
version: link:../msal
'@microsoft/applicationinsights-web':
specifier: ^3.0.2
- version: 3.3.5(tslib@2.8.1)
+ version: 3.3.4(tslib@2.8.1)
devDependencies:
typescript:
specifier: ^5.5.4
@@ -1211,6 +1207,28 @@ importers:
specifier: ^5.5.4
version: 5.5.4
+ packages/react/ag-grid:
+ dependencies:
+ '@equinor/fusion-framework-module-ag-grid':
+ specifier: workspace:*
+ version: link:../../modules/ag-grid
+ ag-grid-community:
+ specifier: 33.0.3
+ version: 33.0.3
+ ag-grid-enterprise:
+ specifier: 33.0.3
+ version: 33.0.3
+ ag-grid-react:
+ specifier: 33.0.3
+ version: 33.0.3(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ devDependencies:
+ '@equinor/fusion-framework-react-module':
+ specifier: workspace:^
+ version: link:../modules/module
+ typescript:
+ specifier: ^5.5.4
+ version: 5.7.3
+
packages/react/app:
dependencies:
'@equinor/fusion-framework-app':
@@ -1295,7 +1313,7 @@ importers:
devDependencies:
'@equinor/eds-core-react':
specifier: ^0.43.0
- version: 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 0.43.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1))
'@equinor/eds-icons':
specifier: ^0.22.0
version: 0.22.0
@@ -1304,7 +1322,7 @@ importers:
version: 0.9.2
'@equinor/eds-utils':
specifier: ^0.8.5
- version: 0.8.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 0.8.6(react-dom@19.0.0(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1))
'@equinor/fusion-framework-module-app':
specifier: workspace:^
version: link:../../../modules/app
@@ -1322,7 +1340,7 @@ importers:
version: 18.3.1
styled-components:
specifier: ^6.0.7
- version: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
typescript:
specifier: ^5.5.4
version: 5.5.4
@@ -1439,7 +1457,7 @@ importers:
version: 3.4.16(tslib@2.8.1)
'@equinor/fusion-components':
specifier: ^2.10.5
- version: 2.15.1(@equinor/fusion@3.4.16(tslib@2.8.1))(@types/react@18.3.3)(history@4.10.1)(pixi.js-legacy@5.3.12)(powerbi-client@2.23.1)(react-dom@18.3.1(react@18.3.1))(react-router-dom@5.3.4(react@18.3.1))(react@18.3.1)
+ version: 2.15.1(@equinor/fusion@3.4.16(tslib@2.8.1))(@types/react@18.3.3)(history@4.10.1)(pixi.js-legacy@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/extract@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))(@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))(powerbi-client@2.23.1)(react-dom@18.3.1(react@18.3.1))(react-router-dom@5.3.4(react@18.3.1))(react@18.3.1)
'@equinor/fusion-framework':
specifier: workspace:^
version: link:../../framework
@@ -1713,7 +1731,7 @@ importers:
version: 5.5.4
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@20.14.12)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ version: 2.0.5(@types/node@20.14.12)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
packages/utils/observable:
dependencies:
@@ -1729,7 +1747,7 @@ importers:
devDependencies:
'@testing-library/react':
specifier: ^16.0.0
- version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.3)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.3(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
'@types/node':
specifier: ^20.11.14
version: 20.14.12
@@ -1741,7 +1759,7 @@ importers:
version: 10.0.0
happy-dom:
specifier: ^17.0.3
- version: 17.0.3
+ version: 17.0.4
react:
specifier: ^18.2.0
version: 18.3.1
@@ -1753,7 +1771,7 @@ importers:
version: 5.5.4
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@20.14.12)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ version: 2.0.5(@types/node@20.14.12)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
packages/utils/query:
dependencies:
@@ -1790,7 +1808,7 @@ importers:
version: 5.5.4
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@20.14.12)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ version: 2.0.5(@types/node@20.14.12)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
packages/widget:
dependencies:
@@ -1821,7 +1839,7 @@ importers:
devDependencies:
'@vuepress/bundler-vite':
specifier: 2.0.0-rc.19
- version: 2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0)
+ version: 2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0)
'@vuepress/cli':
specifier: 2.0.0-rc.19
version: 2.0.0-rc.19(typescript@5.5.4)
@@ -1830,7 +1848,7 @@ importers:
version: 2.0.0-rc.19(typescript@5.5.4)
'@vuepress/plugin-register-components':
specifier: 2.0.0-rc.66
- version: 2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ version: 2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
'@vuepress/utils':
specifier: 2.0.0-rc.19
version: 2.0.0-rc.19
@@ -1845,10 +1863,10 @@ importers:
version: 3.4.38(typescript@5.5.4)
vuepress:
specifier: 2.0.0-rc.19
- version: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ version: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
vuepress-theme-hope:
specifier: 2.0.0-rc.59
- version: 2.0.0-rc.59(katex@0.16.21)(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ version: 2.0.0-rc.59(katex@0.16.21)(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
packages:
@@ -1858,6 +1876,9 @@ packages:
'@actions/http-client@2.2.1':
resolution: {integrity: sha512-KhC/cZsq7f8I4LfZSJKgCvEwfkE8o1538VoBeoGzokVLLnbFDEAdFD3UhoMklxo2un9NJVBdANOresx7vTHlHw==}
+ '@adobe/css-tools@4.3.3':
+ resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
+
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -2621,18 +2642,56 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
'@eslint-community/regexpp@4.11.0':
resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+ '@eslint/config-array@0.19.2':
+ resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/core@0.10.0':
+ resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/core@0.11.0':
+ resolution: {integrity: sha512-DWUB2pksgNEb6Bz2fggIy1wh6fGgZP4Xyy/Mt0QZPiloKKXerbqq9D3SBQTlCRYOrcRPu4vuz+CGjwdfqxnoWA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/eslintrc@3.2.0':
+ resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/js@8.57.1':
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/js@9.20.0':
+ resolution: {integrity: sha512-iZA07H9io9Wn836aVTytRaNqh00Sad+EamwOVJT12GTLw1VGMFV/4JaME+JjLtr9fiGaoWgYnS54wrfWsSs4oQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.6':
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.2.5':
+ resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@fastify/busboy@2.1.1':
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
@@ -2679,6 +2738,14 @@ packages:
'@formatjs/intl-localematcher@0.5.10':
resolution: {integrity: sha512-af3qATX+m4Rnd9+wHcjJ4w2ijq+rAVP3CCinJQvFv1kgSu1W6jypUmvleJxcewdxmutM8dmIRZFxO/IQBZmP2Q==}
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.6':
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ engines: {node: '>=18.18.0'}
+
'@humanwhocodes/config-array@0.13.0':
resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
@@ -2692,6 +2759,14 @@ packages:
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
deprecated: Use @eslint/object-schema instead
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
+ engines: {node: '>=18.18'}
+
+ '@humanwhocodes/retry@0.4.1':
+ resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ engines: {node: '>=18.18'}
+
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -3156,13 +3231,13 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-analytics-js@3.3.5':
- resolution: {integrity: sha512-79EfjQpch2x/B6Ae9dKQixwewWkPSR5vF3KtiJtTZV5udQdlgrcVZgtk3RlqdSaWEMC/xcwBXl7bCiKntd+v/g==}
+ '@microsoft/applicationinsights-analytics-js@3.3.4':
+ resolution: {integrity: sha512-RxxyiIgt3TJ/tvLhg1wth1862wrPmru6dBS7vyThFEUkCZ/AYqEAzdH1JiixgTL/e72NesqmgKcvUUPv9kl9rg==}
peerDependencies:
tslib: '>= 1.0.0'
- '@microsoft/applicationinsights-cfgsync-js@3.3.5':
- resolution: {integrity: sha512-18Kct8zgtKq6Vyl1uzGQlAHFZ2D5bJWvGsDkC4OsEduqAHRfA5mfizvtmHJoTTHgTg9mPvdTLDcSpuntndEu4g==}
+ '@microsoft/applicationinsights-cfgsync-js@3.3.4':
+ resolution: {integrity: sha512-Q5aLy6e6dFf4zr+FJdO46dOfHIvRgt/6QG1lJNC9tiuyjWYOKBkOSTop/5+2vvFK5IY4p3g0mxJOSeoHsr8RQQ==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3171,8 +3246,8 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-channel-js@3.3.5':
- resolution: {integrity: sha512-q9iE5alabgddwnxIDxgYLwC/3OMjYNOPk87p3jY+KxO0UmJGhiv7C1uI62zpx4AHBGT2+q6pMbIZdgld9TmMrw==}
+ '@microsoft/applicationinsights-channel-js@3.3.4':
+ resolution: {integrity: sha512-Z4nrxYwGKP9iyrYtm7iPQXVOFy4FsEsX0nDKkAi96Qpgw+vEh6NH4ORxMMuES0EollBQ3faJyvYCwckuCVIj0g==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3181,8 +3256,8 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-common@3.3.5':
- resolution: {integrity: sha512-zZgMOY3ePBhjTrZ8+MXwAb0Y+Yi4iVDKOqIaz/KoCmj1BxX5JKFgaqYiN8Tvu5O0YPJpEKS4coYXRHbStDm/Hw==}
+ '@microsoft/applicationinsights-common@3.3.4':
+ resolution: {integrity: sha512-4ms16MlIvcP4WiUPqopifNxcWCcrXQJ2ADAK/75uok2mNQe6ZNRsqb/P+pvhUxc8A5HRlvoXPP1ptDSN5Girgw==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3191,8 +3266,8 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-core-js@3.3.5':
- resolution: {integrity: sha512-8Gg18W5eOE3usXtkZ5iOqWAMU97hyjb7Oi1CtkWmxEoMUHMlQmqUD62n9BmVq/s5YfbUihGZHxc0keMJy0txAA==}
+ '@microsoft/applicationinsights-core-js@3.3.4':
+ resolution: {integrity: sha512-MummANF0mgKIkdvVvfmHQTBliK114IZLRhTL0X0Ep+zjDwWMHqYZgew0nlFKAl6ggu42abPZFK5afpE7qjtYJA==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3201,8 +3276,8 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-dependencies-js@3.3.5':
- resolution: {integrity: sha512-6yCrMUjgzzGHelj4UcEftFelcBUoEXmmLP7cuur/+MgfULiNUNbhIcyM0NzehbzDU2h51mQmMapwdw6R7goKFQ==}
+ '@microsoft/applicationinsights-dependencies-js@3.3.4':
+ resolution: {integrity: sha512-RBEFs78v1Zl+9I85nUyw2KdXUKnjxDvdMC0Ul86v7i9ApFrrPJTJ0AVS8h+ydxtJcO2f2nHUEbtVWCf1ixRHiQ==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3211,8 +3286,8 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-properties-js@3.3.5':
- resolution: {integrity: sha512-5pPCys+9CVaW9PlEon7HmGPeNynUch5MZzj4x884TTpl1idKI9GRNVYRpzhivwabaMNvvQIqLBpIMacaD1Xc0w==}
+ '@microsoft/applicationinsights-properties-js@3.3.4':
+ resolution: {integrity: sha512-iI26hM34ysqxVmdOxVetBeoinPoBnNxSb0/c3A+zbY9iCelvf7HF4tn1Qf+sS9Jqn1Z1XjzzKvan8k82+cK+XA==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3227,8 +3302,8 @@ packages:
peerDependencies:
tslib: '*'
- '@microsoft/applicationinsights-web@3.3.5':
- resolution: {integrity: sha512-lf1eqFXDL1m7ObychpecTChiUXtMltTxekETJjp05nK8X618mmfcnTCdJgWSvmAG2m09GNz6Wd26omJlNknSdQ==}
+ '@microsoft/applicationinsights-web@3.3.4':
+ resolution: {integrity: sha512-aZdGnI0fby/OoRNIKkYC9xqNjqFJyb7fKiYtIejCGbE/i2sClnHq7tnwiTk1UKBy9oflwryoFFNs0MM6PDBuMA==}
peerDependencies:
tslib: '>= 1.0.0'
@@ -3344,137 +3419,275 @@ packages:
resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
- '@pixi/accessibility@5.3.12':
- resolution: {integrity: sha512-JnfII2VsIeIpvyn1VMNDlhhq5BzHwwHn8sMRKhS3kFyxn4CdP0E4Ktn3/QK0vmL9sHCeTlto5Ybj3uuoKZwCWg==}
+ '@pixi/accessibility@7.4.2':
+ resolution: {integrity: sha512-R6VEolm8uyy1FB1F2qaLKxVbzXAFTZCF2ka8fl9lsz7We6ZfO4QpXv9ur7DvzratjCQUQVCKo0/V7xL5q1EV/g==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/events': 7.4.2
+
+ '@pixi/app@7.4.2':
+ resolution: {integrity: sha512-ugkH3kOgjT8P1mTMY29yCOgEh+KuVMAn8uBxeY0aMqaUgIMysfpnFv+Aepp2CtvI9ygr22NC+OiKl+u+eEaQHw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+
+ '@pixi/assets@7.4.2':
+ resolution: {integrity: sha512-anxho59H9egZwoaEdM5aLvYyxoz6NCy3CaQIvNHD1bbGg8L16Ih0e26QSBR5fu53jl8OjT6M7s+p6n7uu4+fGA==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+
+ '@pixi/canvas-display@7.4.2':
+ resolution: {integrity: sha512-cKplWdhy+ReYRQK9ideLlKoBdTI9cB10382jWkLDiBeguM9cWSIOrmY5Bd84V0/5FOTLc/AFl4LL1wws27MVKg==}
+ peerDependencies:
+ '@pixi/display': 7.4.2
+
+ '@pixi/canvas-extract@7.4.2':
+ resolution: {integrity: sha512-4rbH4sLPcPEz+OjehFUluFHN8mup9zwzedJLYc7KtqScg/npYKtVmDSaI/0cZBr9vmael+ZuCg/hjaDYTJhubg==}
+ peerDependencies:
+ '@pixi/canvas-renderer': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/extract': 7.4.2
- '@pixi/app@5.3.12':
- resolution: {integrity: sha512-XMpqoO+1BFIVakgHX/VlBaO4qWxg9TitvybDeXZxyVlSCG84DMNulN55jYufVp92nqHhiRr2fAIc9JDccOcNcQ==}
+ '@pixi/canvas-graphics@7.4.2':
+ resolution: {integrity: sha512-1ANBcV5IietfQuABT2PUxTs4TsQP4kmpwUnkRLpZgvM5NL0UBMUZCqBhcBnbfAyV7zvpPm3i+eWhIwn6Xz/2Tg==}
+ peerDependencies:
+ '@pixi/canvas-display': 7.4.2
+ '@pixi/canvas-renderer': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/graphics': 7.4.2
- '@pixi/canvas-display@5.3.12':
- resolution: {integrity: sha512-IMqXmAF0X7xcmYTZ2fYn/pToXgUTpRoraI+zarBGv2HfklbF7woQBicNmAVacR+5lXK3+MEl1zrPt64yuPEdDA==}
+ '@pixi/canvas-mesh@7.4.2':
+ resolution: {integrity: sha512-CdxlV6a6H3wULwwFtURIycQT7oCtvFGDMotz3glyAj625EEx+mwSLo1mAVzs8Hl9pmetFmNKj4Z1gy890VSemw==}
+ peerDependencies:
+ '@pixi/canvas-display': 7.4.2
+ '@pixi/canvas-renderer': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/mesh': 7.4.2
+ '@pixi/mesh-extras': 7.4.2
- '@pixi/canvas-extract@5.3.12':
- resolution: {integrity: sha512-iHEp5XZcHbhIQUKdDZzB3eHBkkmDxXONCBBWJp8Gf8+LqwdnsUneB3eAdazCoG6DSEPuYWniu/7pUf9fHtfsKQ==}
+ '@pixi/canvas-particle-container@7.4.2':
+ resolution: {integrity: sha512-775rF/d7atlZTq5oODr6K3qDZ+awWkDe0QQ4BvGqPAXaWXB5doGs3j5KpTEoFD/JnbX7Q7o8ZTVGla6qsBnT6A==}
+ peerDependencies:
+ '@pixi/particle-container': 7.4.2
- '@pixi/canvas-graphics@5.3.12':
- resolution: {integrity: sha512-dRrh30xcVuCDcFhZ+EpWL3l6P59gpT1gTKs9SyYG51p3AJcij4njteBAdUtEloN4+pIqNVFs20HrntcwDTgvPg==}
+ '@pixi/canvas-prepare@7.4.2':
+ resolution: {integrity: sha512-BB50HZb8ttPMkef+9BXfzeT1HS/AUkXRS0uwhwpq4L75D7XwIlIfwS0lCv2bw2KflavA8wT0qWuwlQTgHSalcA==}
+ peerDependencies:
+ '@pixi/canvas-renderer': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/prepare': 7.4.2
- '@pixi/canvas-mesh@5.3.12':
- resolution: {integrity: sha512-FoDuRkxrqXWvq6cosG5xax/Nv+YJHeOh2QP2qY9QQKkjGBWPQLgCoHZ+PUxbjY4fzSjs8NFlJIdbXAEox6PmiA==}
+ '@pixi/canvas-renderer@7.4.2':
+ resolution: {integrity: sha512-5qBrr4hJ3hQYMJwxIkKCnvMxL9m7aL26h4zbacK0KH7SQ0i+RCcZS2NzvPa451FtnhquIUjwuuWQyjPFdM5R7g==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/canvas-particles@5.3.12':
- resolution: {integrity: sha512-mDIfh3hOZSOLiajL72HnSWWRh/vMHRa1zjosyNe9MOwh0gpdsa33PqgSI+c88XYj054vU/xw4Uu9CoiQO59IWg==}
+ '@pixi/canvas-sprite-tiling@7.4.2':
+ resolution: {integrity: sha512-3/YEohGAiiVHnkOkL1wyjGBJlndXsLPG4XFn3Lpc84Cm5kbR/C6RvNvDcRckQod+jWmqQ8n4x4SjhoFBjdP+dQ==}
+ peerDependencies:
+ '@pixi/canvas-renderer': 7.4.2
+ '@pixi/canvas-sprite': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/sprite-tiling': 7.4.2
- '@pixi/canvas-prepare@5.3.12':
- resolution: {integrity: sha512-LOj/yTi6th0iFQUSGoaKM0sPCVDEmyn4wxefPwS3baAlWaMewHYwYaef9s6Pyo475aVOuz9bKt2+B1pnV7c0HA==}
+ '@pixi/canvas-sprite@7.4.2':
+ resolution: {integrity: sha512-XM6O6liAm2okHlSpUd0+muQAqLzY6EdQtfuqVP628FjHQkLJ/nb6Rg7qqtt3a3T4eyxzMBkqkzqBNBXomgf1SA==}
+ peerDependencies:
+ '@pixi/canvas-display': 7.4.2
+ '@pixi/canvas-renderer': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/canvas-renderer@5.3.12':
- resolution: {integrity: sha512-BuUgEeapZH4Twhv3TGlUXkKhGDFCuHDClQWJEJX/R6JzxmXJ9wi6CeSK+fk6/We8899/3y2R+jvEUD51wAMx9g==}
+ '@pixi/canvas-text@7.4.2':
+ resolution: {integrity: sha512-EOzYNaNcD4QWwL7LQ3v2WM4LQNXeS0aJbNOwJ1+9xiNjY53iF0w5XgSGcfGef4itym6nrwTBft1QwKyTE23zhQ==}
+ peerDependencies:
+ '@pixi/canvas-sprite': 7.4.2
+ '@pixi/sprite': 7.4.2
+ '@pixi/text': 7.4.2
- '@pixi/canvas-sprite-tiling@5.3.12':
- resolution: {integrity: sha512-5Y5JSA6AQhfq1gBqF8KKNcdJlztF3uqK4Eg1h64GadkbLYrwgFCcU/TYn7jNq8/1rjZ5uxgB+HtzC3fOFO+nLw==}
+ '@pixi/color@7.4.2':
+ resolution: {integrity: sha512-av1LOvhHsiaW8+T4n/FgnOKHby55/w7VcA1HzPIHRBtEcsmxvSCDanT1HU2LslNhrxLPzyVx18nlmalOyt5OBg==}
- '@pixi/canvas-sprite@5.3.12':
- resolution: {integrity: sha512-oq3IDaidhQMlzgkHSjir3h9CGFteIFrytukzpV845AqPE02wOkFKwdZJ/FKOSgnlx64XEHXORXKgjqdn5ZHqKQ==}
+ '@pixi/colord@2.9.6':
+ resolution: {integrity: sha512-nezytU2pw587fQstUu1AsJZDVEynjskwOL+kibwcdxsMBFqPsFFNA7xl0ii/gXuDi6M0xj3mfRJj8pBSc2jCfA==}
- '@pixi/canvas-text@5.3.12':
- resolution: {integrity: sha512-5sWkBUSfMp3ufs4SNu8uNGsauQvnQ0qlNJiAVrqFE+V+tYtmweRVK9bopzJ8xydDGD4UzHSyLWd8g42+9WqSmA==}
+ '@pixi/compressed-textures@7.4.2':
+ resolution: {integrity: sha512-VJrt7el6O4ZJSWkeOGXwrhJaiLg1UBhHB3fj42VR4YloYkAxpfd9K6s6IcbcVz7n9L48APKBMgHyaB2pX2Ck/A==}
+ peerDependencies:
+ '@pixi/assets': 7.4.2
+ '@pixi/core': 7.4.2
- '@pixi/constants@5.3.12':
- resolution: {integrity: sha512-UcuvZZ8cQu+ZC7ufLpKi8NfZX0FncPuxKd0Rf6u6pzO2SmHPq4C1moXYGDnkZjPFAjNYFFHC7chU+zolMtkL/g==}
+ '@pixi/constants@7.4.2':
+ resolution: {integrity: sha512-N9vn6Wpz5WIQg7ugUg2+SdqD2u2+NM0QthE8YzLJ4tLH2Iz+/TrnPKUJzeyIqbg3sxJG5ZpGGPiacqIBpy1KyA==}
- '@pixi/core@5.3.12':
- resolution: {integrity: sha512-SKZPU2mP4UE4trWOTcubGekKwopnotbyR2X8nb68wffBd1GzMoaxyakltfJF2oCV/ivrru/biP4CkW9K6MJ56g==}
+ '@pixi/core@7.4.2':
+ resolution: {integrity: sha512-UbMtgSEnyCOFPzbE6ThB9qopXxbZ5GCof2ArB4FXOC5Xi/83MOIIYg5kf5M8689C5HJMhg2SrJu3xLKppF+CMg==}
- '@pixi/display@5.3.12':
- resolution: {integrity: sha512-/fsH/GAxc62rvwTnmrnV8oGCkk4LwJ9pt2Jv3UIorNsjXyL0V5fGw7uZnilF2eSdu6LgQKBMWPOtBF0TNML3lg==}
+ '@pixi/display@7.4.2':
+ resolution: {integrity: sha512-DaD0J7gIlNlzO0Fdlby/0OH+tB5LtCY6rgFeCBKVDnzmn8wKW3zYZRenWBSFJ0Psx6vLqXYkSIM/rcokaKviIw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/extract@5.3.12':
- resolution: {integrity: sha512-PRs9sKeZT+eYSD8wGUqSjHhIRrfvnLU65IIJYlmgTxYo9U4rwzykt74v09ggMj/GFUpjsILISA5VIXM1TV79PQ==}
+ '@pixi/events@7.4.2':
+ resolution: {integrity: sha512-Jw/w57heZjzZShIXL0bxOvKB+XgGIevyezhGtfF2ZSzQoSBWo+Fj1uE0QwKd0RIaXegZw/DhSmiMJSbNmcjifA==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
- '@pixi/filter-alpha@5.3.12':
- resolution: {integrity: sha512-/VG+ojZZwStLfiYVKcX4XsXNiPZpv40ZgiDL6igZOMqUsWn7n7dhIgytmbx6uTUWfxIPlOQH3bJGEyAHVEgzZA==}
+ '@pixi/extensions@7.4.2':
+ resolution: {integrity: sha512-Hmx2+O0yZ8XIvgomHM9GZEGcy9S9Dd8flmtOK5Aa3fXs/8v7xD08+ANQpN9ZqWU2Xs+C6UBlpqlt2BWALvKKKA==}
- '@pixi/filter-blur@5.3.12':
- resolution: {integrity: sha512-8zuOmztmuXCl1pXQpycKTS8HmXPtkmMe6xM93Q1gT7CRLzyS97H3pQAh4YuaGOrJslOKBNDrGVzLVY95fxjcTQ==}
+ '@pixi/extract@7.4.2':
+ resolution: {integrity: sha512-JOX27TRWjVEjauGBbF8PU7/g6LYXnivehdgqS5QlVDv1CNHTOrz/j3MdKcVWOhyZPbH5c9sh7lxyRxvd9AIuTQ==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/filter-color-matrix@5.3.12':
- resolution: {integrity: sha512-CblKOry/TvFm7L7iangxYtvQgO3a9n5MsmxDUue68DWZa/iI4r/3TSnsvA+Iijr590e9GsWxy3mj9P4HBMOGTA==}
+ '@pixi/filter-alpha@7.4.2':
+ resolution: {integrity: sha512-9OsKJ+yvY2wIcQXwswj5HQBiwNGymwmqdxfp7mo+nZSBoDmxUqvMZzE9UNJ3eUlswuNvNRO8zNOsQvwdz7WFww==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/filter-displacement@5.3.12':
- resolution: {integrity: sha512-D/LpJxnGi85wHB6VeBpw0FQAN0mzHHUYNxCADwUhknY+SKfP5RhaYOlk79zqOuakBfQTzL3lPgMNH2EC85EJPw==}
+ '@pixi/filter-blur@7.4.2':
+ resolution: {integrity: sha512-gOXBbIUx6CRZP1fmsis2wLzzSsofrqmIHhbf1gIkZMIQaLsc9T7brj+PaLTTiOiyJgnvGN5j20RZnkERWWKV0Q==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/filter-fxaa@5.3.12':
- resolution: {integrity: sha512-EI+foorDnYUAy7VF3fzi635u/dyf5EHZOFovGEDrHm/ZTmEJ1i6RolwexCN94vf6HGfaDrIgNmqFcKWtbIvJFA==}
+ '@pixi/filter-color-matrix@7.4.2':
+ resolution: {integrity: sha512-ykZiR59Gvj80UKs9qm7jeUTKvn+wWk6HBVJOmJbK9jFK5juakDWp7BbH26U78Q61EWj97kI1FdfcbMkuQ7rqkA==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/filter-noise@5.3.12':
- resolution: {integrity: sha512-9KWmlM2zRryY6o0bfNOHAckdCk8X7g9XWZbmEIXZZs7Jr90C1+RhDreqNs8OrMukmNo2cW9hMrshHgJ9aA1ftQ==}
+ '@pixi/filter-displacement@7.4.2':
+ resolution: {integrity: sha512-QS/eWp/ivsxef3xapNeGwpPX7vrqQQeo99Fux4k5zsvplnNEsf91t6QYJLG776AbZEu/qh8VYRBA5raIVY/REw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/graphics@5.3.12':
- resolution: {integrity: sha512-uBmFvq15rX0f459/4F2EnR2UhCgfwMWVJDB1L3OnCqQePE/z3ju4mfWEwOT+I7gGejWlGNE6YLdEMVNw/3zb6w==}
+ '@pixi/filter-fxaa@7.4.2':
+ resolution: {integrity: sha512-U/ptJgDsfs/r8y2a6gCaiPfDu2IFAxpQ4wtfmBpz6vRhqeE4kI8yNIUx5dZbui57zlsJaW0BNacOQxHU0vLkyQ==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/interaction@5.3.12':
- resolution: {integrity: sha512-Ks7vHDfDI58r1TzKHabnQXcXzFbUu2Sb4eQ3/jnzI/xGB5Z8Q0kS7RwJtFOWNZ67HHQdoHFkQIozTUXVXHs3oA==}
+ '@pixi/filter-noise@7.4.2':
+ resolution: {integrity: sha512-Vy9ViBFhZEGh6xKkd3kFWErolZTwv1Y5Qb1bV7qPIYbvBECYsqzlR4uCrrjBV6KKm0PufpG/+NKC5vICZaqKzg==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
- '@pixi/loaders@5.3.12':
- resolution: {integrity: sha512-M56m1GKpCChFqSic9xrdtQOXFqwYMvGzDXNpsKIsQbkHooaJhUR5UxSPaNiGC4qWv0TO9w8ANouxeX2v6js4eg==}
+ '@pixi/graphics@7.4.2':
+ resolution: {integrity: sha512-jH4/Tum2RqWzHGzvlwEr7HIVduoLO57Ze705N2zQPkUD57TInn5911aGUeoua7f/wK8cTLGzgB9BzSo2kTdcHw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/math@5.3.12':
- resolution: {integrity: sha512-VMccUVKSRlLFTGQu6Z450q/W6LVibaFWEo2eSZZfxz+hwjlYiqRPx4heG++4Y6tGskZK7W8l8h+2ixjmo65FCg==}
+ '@pixi/math@7.4.2':
+ resolution: {integrity: sha512-7jHmCQoYk6e0rfSKjdNFOPl0wCcdgoraxgteXJTTHv3r0bMNx2pHD9FJ0VvocEUG7XHfj55O3+u7yItOAx0JaQ==}
- '@pixi/mesh-extras@5.3.12':
- resolution: {integrity: sha512-tEBEEIh96aSGJ/KObdtlNcSzVfgrl9fBhvdUDOHepSyVG+SkmX4LMqP3DkGl6iUBDiq9FBRFaRgbxEd8G2U7yw==}
+ '@pixi/mesh-extras@7.4.2':
+ resolution: {integrity: sha512-vNR/7wjxjs7sv9fGoKkHyU91ZAD+7EnMHBS5F3CVISlOIFxLi96NNZCB81oUIdky/90pHw40johd/4izR5zTyw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/mesh': 7.4.2
- '@pixi/mesh@5.3.12':
- resolution: {integrity: sha512-8ZiGZsZQBWoP1p8t9bSl/AfERb5l3QlwnY9zYVMDydF/UWfN1gKcYO4lKvaXw/HnLi4ZjE+OHoZVmePss9zzaw==}
+ '@pixi/mesh@7.4.2':
+ resolution: {integrity: sha512-mEkKyQvvMrYXC3pahvH5WBIKtrtB63WixRr91ANFI7zXD+ESG6Ap6XtxMCJmXDQPwBDNk7SWVMiCflYuchG7kA==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
- '@pixi/mixin-cache-as-bitmap@5.3.12':
- resolution: {integrity: sha512-hPiu8jCQJctN3OVJDgh7jqdtRgyB3qH1BWLM742MOZLjYnbOSamnqmI8snG+tba5yj/WfdjKB+8v0WNwEXlH6w==}
+ '@pixi/mixin-cache-as-bitmap@7.4.2':
+ resolution: {integrity: sha512-6dgthi2ruUT/lervSrFDQ7vXkEsHo6CxdgV7W/wNdW1dqgQlKfDvO6FhjXzyIMRLSooUf5FoeluVtfsjkUIYrw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/mixin-get-child-by-name@5.3.12':
- resolution: {integrity: sha512-VQv0GMNmfyBfug9pnvN5s/ZMKJ/AXvg+4RULTpwHFtAwlCdZu9IeNb4eviSSAwtOeBAtqk5c0MQSsdOUWOeIkA==}
+ '@pixi/mixin-get-child-by-name@7.4.2':
+ resolution: {integrity: sha512-0Cfw8JpQhsixprxiYph4Lj+B5n83Kk4ftNMXgM5xtZz+tVLz5s91qR0MqcdzwTGTJ7utVygiGmS4/3EfR/duRQ==}
+ peerDependencies:
+ '@pixi/display': 7.4.2
- '@pixi/mixin-get-global-position@5.3.12':
- resolution: {integrity: sha512-qxsfCC9BsKSjBlMH1Su/AVwsrzY8NHfcut5GkVvm2wa9+ypxFwU5fVsmk6+4a9G7af3iqmOlc9YDymAvbi+e8g==}
+ '@pixi/mixin-get-global-position@7.4.2':
+ resolution: {integrity: sha512-LcsahbVdX4DFS2IcGfNp4KaXuu7SjAwUp/flZSGIfstyKOKb5FWFgihtqcc9ZT4coyri3gs2JbILZub/zPZj1w==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
- '@pixi/particles@5.3.12':
- resolution: {integrity: sha512-SV/gOJBFa4jpsEM90f1bz5EuMMiNAz81mu+lhiUxdQQjZ8y/S4TiK7OAiyc+hUtp97JbJ//6u+4ynGwbhV+WDA==}
+ '@pixi/particle-container@7.4.2':
+ resolution: {integrity: sha512-B78Qq86kt0lEa5WtB2YFIm3+PjhKfw9La9R++GBSgABl+g13s2UaZ6BIPxvY3JxWMdxPm4iPrQPFX1QWRN68mw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/polyfill@5.3.12':
- resolution: {integrity: sha512-qkm8TBIb6m7FmE/Cd/yVagONDlVF5/cWFSSnk4pWA/vt/HLNrXgY9Tx0IXAk6NNK/xc5deGcLPc4iw+DlEhsQw==}
+ '@pixi/prepare@7.4.2':
+ resolution: {integrity: sha512-PugyMzReCHXUzc3so9PPJj2OdHwibpUNWyqG4mWY2UUkb6c8NAGK1AnAPiscOvLilJcv/XQSFoNhX+N1jrvJEg==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/graphics': 7.4.2
+ '@pixi/text': 7.4.2
- '@pixi/prepare@5.3.12':
- resolution: {integrity: sha512-loZhLzV4riet9MU72WpWIYF6LgbRM78S4soeZOr5SzL1/U5mBneOOmfStaui7dN2GKQKp5GLygDF4dH3FPalnA==}
+ '@pixi/runner@7.4.2':
+ resolution: {integrity: sha512-LPBpwym4vdyyDY5ucF4INQccaGyxztERyLTY1YN6aqJyyMmnc7iqXlIKt+a0euMBtNoLoxy6MWMvIuZj0JfFPA==}
- '@pixi/runner@5.3.12':
- resolution: {integrity: sha512-I5mXx4BiP8Bx5CFIXy3XV3ABYFXbIWaY6FxWsNFkySn0KUhizN7SarPdhFGs//hJuC54EH2FsKKNa98Lfc2nCQ==}
+ '@pixi/settings@7.4.2':
+ resolution: {integrity: sha512-pMN+L6aWgvUbwhFIL/BTHKe2ShYGPZ8h9wlVBnFHMtUcJcFLMF1B3lzuvCayZRepOphs6RY0TqvnDvVb585JhQ==}
- '@pixi/settings@5.3.12':
- resolution: {integrity: sha512-tLAa8tpDGllgj88NMUQn2Obn9MFJfHNF/CKs8aBhfeZGU4yL4PZDtlI+tqaB1ITGl3xxyHmJK+qfmv5lJn+zyA==}
+ '@pixi/sprite-animated@7.4.2':
+ resolution: {integrity: sha512-QPT6yxCUGOBN+98H3pyIZ1ZO6Y7BN1o0Q2IMZEsD1rNfZJrTYS3Q8VlCG5t2YlFlcB8j5iBo24bZb6FUxLOmsQ==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/sprite-animated@5.3.12':
- resolution: {integrity: sha512-WkGdGRfqboXFzMZ/SM6pCVukYmG2E2IlpcFz7aEeWvKL2Icm4YtaCBpHHDU07vvA6fP6JrstlCx1RyTENtOeGA==}
+ '@pixi/sprite-tiling@7.4.2':
+ resolution: {integrity: sha512-Z8PP6ewy3nuDYL+NeEdltHAhuucVgia33uzAitvH3OqqRSx6a6YRBFbNLUM9Sx+fBO2Lk3PpV1g6QZX+NE5LOg==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/sprite-tiling@5.3.12':
- resolution: {integrity: sha512-5/gtNT46jIo7M69sixqkta1aXVhl4NTwksD9wzqjdZkQG8XPpKmHtXamROY2Fw3R+m+KGgyK8ywAf78tPvxPwg==}
+ '@pixi/sprite@7.4.2':
+ resolution: {integrity: sha512-Ccf/OVQsB+HQV0Fyf5lwD+jk1jeU7uSIqEjbxenNNssmEdB7S5qlkTBV2EJTHT83+T6Z9OMOHsreJZerydpjeg==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
- '@pixi/sprite@5.3.12':
- resolution: {integrity: sha512-vticet92RFZ3nDZ6/VDwZ7RANO0jzyXOF/5RuJf0yNVJgBoH4cNix520FfsBWE2ormD+z5t1KEmFeW4e35z2kw==}
+ '@pixi/spritesheet@7.4.2':
+ resolution: {integrity: sha512-YIvHdpXW+AYp8vD0NkjJmrdnVHTZKidCnx6k8ATSuuvCT6O5Tuh2N/Ul2oDj4/QaePy0lVhyhAbZpJW00Jr7mQ==}
+ peerDependencies:
+ '@pixi/assets': 7.4.2
+ '@pixi/core': 7.4.2
- '@pixi/spritesheet@5.3.12':
- resolution: {integrity: sha512-0t5HKgLx0uWtENtkW0zVpqvmfoxqMcRAYB7Nwk2lkgZMBPCOFtFF/4Kdp9Sam5X0EBMRGkmIelW3fD6pniSvCw==}
+ '@pixi/text-bitmap@7.4.2':
+ resolution: {integrity: sha512-lPBMJ83JnpFVL+6ckQ8KO8QmwdPm0z9Zs/M0NgFKH2F+BcjelRNnk80NI3O0qBDYSEDQIE+cFbKoZ213kf7zwA==}
+ peerDependencies:
+ '@pixi/assets': 7.4.2
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/mesh': 7.4.2
+ '@pixi/text': 7.4.2
- '@pixi/text-bitmap@5.3.12':
- resolution: {integrity: sha512-tiorA3XdriJKJtUhMDcKX1umE3hGbaNJ/y0ZLuQ0lCvoTLrN9674HtveutoR9KkXWguDHCSk2cY+y3mNAvjPHA==}
+ '@pixi/text-html@7.4.2':
+ resolution: {integrity: sha512-duOu8oDYeDNuyPozj2DAsQ5VZBbRiwIXy78Gn7H2pCiEAefw/Uv5jJYwdgneKME0e1tOxz1eOUGKPcI6IJnZjw==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2
+ '@pixi/sprite': 7.4.2
+ '@pixi/text': 7.4.2
- '@pixi/text@5.3.12':
- resolution: {integrity: sha512-tvrDVetwVjq1PVDR6jq4umN/Mv/EPHioEOHhyep63yvFIBFv75mDTg2Ye0CPzkmjqwXXvAY+hHpNwuOXTB40xw==}
+ '@pixi/text@7.4.2':
+ resolution: {integrity: sha512-rZZWpJNsIQ8WoCWrcVg8Gi6L/PDakB941clo6dO3XjoII2ucoOUcnpe5HIkudxi2xPvS/8Bfq990gFEx50TP5A==}
+ peerDependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/sprite': 7.4.2
- '@pixi/ticker@5.3.12':
- resolution: {integrity: sha512-YNYUj94XgogipYhPOjbdFBIsy7+U6KmolvK+Av1G88GDac5SDoALb1Nt6s23fd8HIz6b4YnabHOdXGz3zPir1Q==}
+ '@pixi/ticker@7.4.2':
+ resolution: {integrity: sha512-cAvxCh/KI6IW4m3tp2b+GQIf+DoSj9NNmPJmsOeEJ7LzvruG8Ps7SKI6CdjQob5WbceL1apBTDbqZ/f77hFDiQ==}
- '@pixi/utils@5.3.12':
- resolution: {integrity: sha512-PU/L852YjVbTy/6fDKQtYji6Vqcwi5FZNIjK6JXKuDPF411QfJK3QBaEqJTrexzHlc9Odr0tYECjwtXkCUR02g==}
+ '@pixi/utils@7.4.2':
+ resolution: {integrity: sha512-aU/itcyMC4TxFbmdngmak6ey4kC5c16Y5ntIYob9QnjNAfD/7GTsYIBnP6FqEAyO1eq0MjkAALxdONuay1BG3g==}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
@@ -4008,8 +4221,8 @@ packages:
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm-eabi@4.34.6':
- resolution: {integrity: sha512-+GcCXtOQoWuC7hhX1P00LqjjIiS/iOouHXhMdiDSnq/1DGTox4SpUvO52Xm+div6+106r+TcvOeo/cxvyEyTgg==}
+ '@rollup/rollup-android-arm-eabi@4.32.1':
+ resolution: {integrity: sha512-/pqA4DmqyCm8u5YIDzIdlLcEmuvxb0v8fZdFhVMszSpDTgbQKdw3/mB3eMUHIbubtJ6F9j+LtmyCnHTEqIHyzA==}
cpu: [arm]
os: [android]
@@ -4018,8 +4231,8 @@ packages:
cpu: [arm64]
os: [android]
- '@rollup/rollup-android-arm64@4.34.6':
- resolution: {integrity: sha512-E8+2qCIjciYUnCa1AiVF1BkRgqIGW9KzJeesQqVfyRITGQN+dFuoivO0hnro1DjT74wXLRZ7QF8MIbz+luGaJA==}
+ '@rollup/rollup-android-arm64@4.32.1':
+ resolution: {integrity: sha512-If3PDskT77q7zgqVqYuj7WG3WC08G1kwXGVFi9Jr8nY6eHucREHkfpX79c0ACAjLj3QIWKPJR7w4i+f5EdLH5Q==}
cpu: [arm64]
os: [android]
@@ -4028,8 +4241,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-arm64@4.34.6':
- resolution: {integrity: sha512-z9Ib+OzqN3DZEjX7PDQMHEhtF+t6Mi2z/ueChQPLS/qUMKY7Ybn5A2ggFoKRNRh1q1T03YTQfBTQCJZiepESAg==}
+ '@rollup/rollup-darwin-arm64@4.32.1':
+ resolution: {integrity: sha512-zCpKHioQ9KgZToFp5Wvz6zaWbMzYQ2LJHQ+QixDKq52KKrF65ueu6Af4hLlLWHjX1Wf/0G5kSJM9PySW9IrvHA==}
cpu: [arm64]
os: [darwin]
@@ -4038,8 +4251,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.34.6':
- resolution: {integrity: sha512-PShKVY4u0FDAR7jskyFIYVyHEPCPnIQY8s5OcXkdU8mz3Y7eXDJPdyM/ZWjkYdR2m0izD9HHWA8sGcXn+Qrsyg==}
+ '@rollup/rollup-darwin-x64@4.32.1':
+ resolution: {integrity: sha512-sFvF+t2+TyUo/ZQqUcifrJIgznx58oFZbdHS9TvHq3xhPVL9nOp+yZ6LKrO9GWTP+6DbFtoyLDbjTpR62Mbr3Q==}
cpu: [x64]
os: [darwin]
@@ -4048,8 +4261,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-arm64@4.34.6':
- resolution: {integrity: sha512-YSwyOqlDAdKqs0iKuqvRHLN4SrD2TiswfoLfvYXseKbL47ht1grQpq46MSiQAx6rQEN8o8URtpXARCpqabqxGQ==}
+ '@rollup/rollup-freebsd-arm64@4.32.1':
+ resolution: {integrity: sha512-NbOa+7InvMWRcY9RG+B6kKIMD/FsnQPH0MWUvDlQB1iXnF/UcKSudCXZtv4lW+C276g3w5AxPbfry5rSYvyeYA==}
cpu: [arm64]
os: [freebsd]
@@ -4058,8 +4271,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.34.6':
- resolution: {integrity: sha512-HEP4CgPAY1RxXwwL5sPFv6BBM3tVeLnshF03HMhJYCNc6kvSqBgTMmsEjb72RkZBAWIqiPUyF1JpEBv5XT9wKQ==}
+ '@rollup/rollup-freebsd-x64@4.32.1':
+ resolution: {integrity: sha512-JRBRmwvHPXR881j2xjry8HZ86wIPK2CcDw0EXchE1UgU0ubWp9nvlT7cZYKc6bkypBt745b4bglf3+xJ7hXWWw==}
cpu: [x64]
os: [freebsd]
@@ -4068,8 +4281,8 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-gnueabihf@4.34.6':
- resolution: {integrity: sha512-88fSzjC5xeH9S2Vg3rPgXJULkHcLYMkh8faix8DX4h4TIAL65ekwuQMA/g2CXq8W+NJC43V6fUpYZNjaX3+IIg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.32.1':
+ resolution: {integrity: sha512-PKvszb+9o/vVdUzCCjL0sKHukEQV39tD3fepXxYrHE3sTKrRdCydI7uldRLbjLmDA3TFDmh418XH19NOsDRH8g==}
cpu: [arm]
os: [linux]
@@ -4078,8 +4291,8 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.34.6':
- resolution: {integrity: sha512-wM4ztnutBqYFyvNeR7Av+reWI/enK9tDOTKNF+6Kk2Q96k9bwhDDOlnCUNRPvromlVXo04riSliMBs/Z7RteEg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.32.1':
+ resolution: {integrity: sha512-9WHEMV6Y89eL606ReYowXuGF1Yb2vwfKWKdD1A5h+OYnPZSJvxbEjxTRKPgi7tkP2DSnW0YLab1ooy+i/FQp/Q==}
cpu: [arm]
os: [linux]
@@ -4088,8 +4301,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.34.6':
- resolution: {integrity: sha512-9RyprECbRa9zEjXLtvvshhw4CMrRa3K+0wcp3KME0zmBe1ILmvcVHnypZ/aIDXpRyfhSYSuN4EPdCCj5Du8FIA==}
+ '@rollup/rollup-linux-arm64-gnu@4.32.1':
+ resolution: {integrity: sha512-tZWc9iEt5fGJ1CL2LRPw8OttkCBDs+D8D3oEM8mH8S1ICZCtFJhD7DZ3XMGM8kpqHvhGUTvNUYVDnmkj4BDXnw==}
cpu: [arm64]
os: [linux]
@@ -4098,8 +4311,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.34.6':
- resolution: {integrity: sha512-qTmklhCTyaJSB05S+iSovfo++EwnIEZxHkzv5dep4qoszUMX5Ca4WM4zAVUMbfdviLgCSQOu5oU8YoGk1s6M9Q==}
+ '@rollup/rollup-linux-arm64-musl@4.32.1':
+ resolution: {integrity: sha512-FTYc2YoTWUsBz5GTTgGkRYYJ5NGJIi/rCY4oK/I8aKowx1ToXeoVVbIE4LGAjsauvlhjfl0MYacxClLld1VrOw==}
cpu: [arm64]
os: [linux]
@@ -4108,8 +4321,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.34.6':
- resolution: {integrity: sha512-4Qmkaps9yqmpjY5pvpkfOerYgKNUGzQpFxV6rnS7c/JfYbDSU0y6WpbbredB5cCpLFGJEqYX40WUmxMkwhWCjw==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.32.1':
+ resolution: {integrity: sha512-F51qLdOtpS6P1zJVRzYM0v6MrBNypyPEN1GfMiz0gPu9jN8ScGaEFIZQwteSsGKg799oR5EaP7+B2jHgL+d+Kw==}
cpu: [loong64]
os: [linux]
@@ -4118,8 +4331,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
- resolution: {integrity: sha512-Zsrtux3PuaxuBTX/zHdLaFmcofWGzaWW1scwLU3ZbW/X+hSsFbz9wDIp6XvnT7pzYRl9MezWqEqKy7ssmDEnuQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.32.1':
+ resolution: {integrity: sha512-wO0WkfSppfX4YFm5KhdCCpnpGbtgQNj/tgvYzrVYFKDpven8w2N6Gg5nB6w+wAMO3AIfSTWeTjfVe+uZ23zAlg==}
cpu: [ppc64]
os: [linux]
@@ -4128,8 +4341,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.34.6':
- resolution: {integrity: sha512-aK+Zp+CRM55iPrlyKiU3/zyhgzWBxLVrw2mwiQSYJRobCURb781+XstzvA8Gkjg/hbdQFuDw44aUOxVQFycrAg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.32.1':
+ resolution: {integrity: sha512-iWswS9cIXfJO1MFYtI/4jjlrGb/V58oMu4dYJIKnR5UIwbkzR0PJ09O0PDZT0oJ3LYWXBSWahNf/Mjo6i1E5/g==}
cpu: [riscv64]
os: [linux]
@@ -4138,8 +4351,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.34.6':
- resolution: {integrity: sha512-WoKLVrY9ogmaYPXwTH326+ErlCIgMmsoRSx6bO+l68YgJnlOXhygDYSZe/qbUJCSiCiZAQ+tKm88NcWuUXqOzw==}
+ '@rollup/rollup-linux-s390x-gnu@4.32.1':
+ resolution: {integrity: sha512-RKt8NI9tebzmEthMnfVgG3i/XeECkMPS+ibVZjZ6mNekpbbUmkNWuIN2yHsb/mBPyZke4nlI4YqIdFPgKuoyQQ==}
cpu: [s390x]
os: [linux]
@@ -4148,8 +4361,8 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.34.6':
- resolution: {integrity: sha512-Sht4aFvmA4ToHd2vFzwMFaQCiYm2lDFho5rPcvPBT5pCdC+GwHG6CMch4GQfmWTQ1SwRKS0dhDYb54khSrjDWw==}
+ '@rollup/rollup-linux-x64-gnu@4.32.1':
+ resolution: {integrity: sha512-WQFLZ9c42ECqEjwg/GHHsouij3pzLXkFdz0UxHa/0OM12LzvX7DzedlY0SIEly2v18YZLRhCRoHZDxbBSWoGYg==}
cpu: [x64]
os: [linux]
@@ -4158,8 +4371,8 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.34.6':
- resolution: {integrity: sha512-zmmpOQh8vXc2QITsnCiODCDGXFC8LMi64+/oPpPx5qz3pqv0s6x46ps4xoycfUiVZps5PFn1gksZzo4RGTKT+A==}
+ '@rollup/rollup-linux-x64-musl@4.32.1':
+ resolution: {integrity: sha512-BLoiyHDOWoS3uccNSADMza6V6vCNiphi94tQlVIL5de+r6r/CCQuNnerf+1g2mnk2b6edp5dk0nhdZ7aEjOBsA==}
cpu: [x64]
os: [linux]
@@ -4168,8 +4381,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-arm64-msvc@4.34.6':
- resolution: {integrity: sha512-3/q1qUsO/tLqGBaD4uXsB6coVGB3usxw3qyeVb59aArCgedSF66MPdgRStUd7vbZOsko/CgVaY5fo2vkvPLWiA==}
+ '@rollup/rollup-win32-arm64-msvc@4.32.1':
+ resolution: {integrity: sha512-w2l3UnlgYTNNU+Z6wOR8YdaioqfEnwPjIsJ66KxKAf0p+AuL2FHeTX6qvM+p/Ue3XPBVNyVSfCrfZiQh7vZHLQ==}
cpu: [arm64]
os: [win32]
@@ -4178,8 +4391,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.34.6':
- resolution: {integrity: sha512-oLHxuyywc6efdKVTxvc0135zPrRdtYVjtVD5GUm55I3ODxhU/PwkQFD97z16Xzxa1Fz0AEe4W/2hzRtd+IfpOA==}
+ '@rollup/rollup-win32-ia32-msvc@4.32.1':
+ resolution: {integrity: sha512-Am9H+TGLomPGkBnaPWie4F3x+yQ2rr4Bk2jpwy+iV+Gel9jLAu/KqT8k3X4jxFPW6Zf8OMnehyutsd+eHoq1WQ==}
cpu: [ia32]
os: [win32]
@@ -4188,8 +4401,8 @@ packages:
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.34.6':
- resolution: {integrity: sha512-0PVwmgzZ8+TZ9oGBmdZoQVXflbvuwzN/HRclujpl4N/q3i+y0lqLw8n1bXA8ru3sApDjlmONaNAuYr38y1Kr9w==}
+ '@rollup/rollup-win32-x64-msvc@4.32.1':
+ resolution: {integrity: sha512-ar80GhdZb4DgmW3myIS9nRFYcpJRSME8iqWgzH2i44u+IdrzmiXVxeFnExQ5v4JYUSpg94bWjevMG8JHf1Da5Q==}
cpu: [x64]
os: [win32]
@@ -4338,6 +4551,9 @@ packages:
'@types/babel__traverse@7.20.6':
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+ '@types/css-font-loading-module@0.0.12':
+ resolution: {integrity: sha512-x2tZZYkSxXqWvTDgveSynfjq/T2HyiZHXb00j/+gy19yp70PHCizM48XFdjBCWH7eHBD0R5i/pw9yMBP/BH5uA==}
+
'@types/d3-array@3.2.1':
resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==}
@@ -4434,6 +4650,9 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+ '@types/earcut@2.1.4':
+ resolution: {integrity: sha512-qp3m9PPz4gULB9MhjGID7wpo3gJ4bTGXm7ltNDsmOvsPduTeHp8wSW9YckBj3mljeOh4F0m2z/0JKAALRKbmLQ==}
+
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
@@ -4506,6 +4725,9 @@ packages:
'@types/node@22.10.10':
resolution: {integrity: sha512-X47y/mPNzxviAGY5TcYPtYL8JsY3kAq2n8fMmKoRCxq/c4v4pyGNCzM2R6+M5/umG4ZfHuT+sgqDYqWc9rJ6ww==}
+ '@types/node@22.13.1':
+ resolution: {integrity: sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==}
+
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -4521,6 +4743,11 @@ packages:
'@types/react-dom@18.3.1':
resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
+ '@types/react-dom@19.0.3':
+ resolution: {integrity: sha512-0Knk+HJiMP/qOZgMyNFamlIjw9OFCsyC2ZbigmEEyXXixgre6IQpm/4V+r3qH4GC1JPvRJKInw+on2rV6YZLeA==}
+ peerDependencies:
+ '@types/react': ^19.0.0
+
'@types/react-router-dom@5.3.3':
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
@@ -5032,20 +5259,14 @@ packages:
ag-charts-types@11.0.3:
resolution: {integrity: sha512-q7O2viQXPyO014QVH7KjFCUmQ/NvMBx9ReZtramQ44u+/aAa0ttLi/coK+V0Hse4/MG1eB/2XhgymdooQ0Kalg==}
- ag-charts-types@11.0.4:
- resolution: {integrity: sha512-K/Mi7FXvSCoABLSrqQ70k1QrIL5R6RNCt2NAppOxMEir+DVFPqKZtghruobc2MGVUUKkT9MCn6Dun+fL6yZjfA==}
-
ag-grid-community@33.0.3:
resolution: {integrity: sha512-HZeVmVieZ5Gm9j09Itecqm+OIX8X6cU4TJToUbsXv3DxdO9SK5/s8aAJAwBHtNRXOhHrhqQYwrY2yc3OtzWwcQ==}
- ag-grid-community@33.0.4:
- resolution: {integrity: sha512-iBD8g8bNIl95w9CzCQpDid+eTdmOoT39204sPUOhE9eE50vfoDHIaF5U4fRYQHbLsT4bwbXfQYdsqBAOLJL24w==}
-
ag-grid-enterprise@33.0.3:
resolution: {integrity: sha512-Xdp89+s6vqiAOL3C07XRWKOb5EBeTe1SC21sH4bAtt3cfDvoZatUVZutBN6k/kdKJIE72G7TABjriUyvxwUuMA==}
- ag-grid-react@33.0.4:
- resolution: {integrity: sha512-0Y54BmY03athtqfpO5kTR/gjyP6Qw4LP+EQD2duBZ3yj4SWWlwE1Ob7Lc7OuZRHxl2dxLQy2edagJHrqnmopKw==}
+ ag-grid-react@33.0.3:
+ resolution: {integrity: sha512-6IcraSVqsUG/hzTeZ0D0dtddAcZKcWdN75ek/O+lCA6r22abJPe33nHBYVezkTV8k6D3JhA24mlTwduzn0GZLQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -5065,8 +5286,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.1.0:
- resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
+ ansi-regex@6.0.1:
+ resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
ansi-styles@4.3.0:
@@ -5149,11 +5370,6 @@ packages:
async@3.2.5:
resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
- atob@2.1.2:
- resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
- engines: {node: '>= 4.5.0'}
- hasBin: true
-
autoprefixer@10.4.20:
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
@@ -5295,6 +5511,10 @@ packages:
resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ chalk@5.4.1:
+ resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
@@ -5339,6 +5559,10 @@ packages:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
+ cli-cursor@4.0.0:
+ resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
cli-cursor@5.0.0:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
@@ -5441,9 +5665,6 @@ packages:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- css-parse@2.0.0:
- resolution: {integrity: sha512-UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA==}
-
css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
@@ -5457,9 +5678,6 @@ packages:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
- css@2.2.4:
- resolution: {integrity: sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==}
-
csstype@2.6.21:
resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
@@ -5657,14 +5875,6 @@ packages:
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
- debug@3.1.0:
- resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
@@ -5715,10 +5925,6 @@ packages:
decimal.js@10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
- decode-uri-component@0.2.2:
- resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
- engines: {node: '>=0.10'}
-
deep-eql@5.0.2:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
@@ -5837,8 +6043,8 @@ packages:
emoji-regex-xs@1.0.0:
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
- emoji-regex@10.4.0:
- resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
+ emoji-regex@10.3.0:
+ resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -5911,9 +6117,6 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- es6-promise-polyfill@1.2.0:
- resolution: {integrity: sha512-HHb0vydCpoclpd0ySPkRXMmBw80MRt1wM4RBJBlXkux97K7gleabZdsR0gvE1nNPM9mgOZIBTzjjXiPxf4lIqQ==}
-
es6-promise@3.3.1:
resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
@@ -6009,16 +6212,38 @@ packages:
resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
eslint@8.57.1:
resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
hasBin: true
+ eslint@9.20.0:
+ resolution: {integrity: sha512-aL4F8167Hg4IvsW89ejnpTwx+B/UQRzJPGgbIOl+4XqffWsahVVsLEWoZvnrVuwpWmnRd7XeXmQI1zlKcFDteA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
+
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
espree@9.6.1:
resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -6058,8 +6283,8 @@ packages:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- eventemitter3@3.1.2:
- resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==}
+ eventemitter3@4.0.7:
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
eventsource@2.0.2:
resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==}
@@ -6132,6 +6357,10 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
+
filelist@1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
@@ -6162,9 +6391,16 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
+
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flatted@3.3.2:
+ resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+
for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
@@ -6226,8 +6462,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.0:
- resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
+ get-east-asian-width@1.2.0:
+ resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
engines: {node: '>=18'}
get-func-name@2.0.2:
@@ -6292,6 +6528,10 @@ packages:
resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
engines: {node: '>=8'}
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
globals@15.14.0:
resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
engines: {node: '>=18'}
@@ -6331,8 +6571,8 @@ packages:
hachure-fill@0.5.2:
resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==}
- happy-dom@17.0.3:
- resolution: {integrity: sha512-1vWCwpeguN02wQF8kGeaj69FDX19bXKQXmyUKcE+O0WLY0uhS0RPTLCJR8Omy8hrjMHwV3dUJ24JUrK07aOA9Q==}
+ happy-dom@17.0.4:
+ resolution: {integrity: sha512-yVo3MZnvsirE4pb/P+ipllK/lfCmxDiBoKaz9IU3uJkyDl7WYF1J9mJkNWkpKRyy7w2Y60mYz5ISpEtN9sfpUA==}
engines: {node: '>=18.0.0'}
hard-rejection@2.1.0:
@@ -6453,6 +6693,10 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+ engines: {node: '>=6'}
+
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
@@ -6657,6 +6901,10 @@ packages:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
+ is-unicode-supported@2.0.0:
+ resolution: {integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==}
+ engines: {node: '>=18'}
+
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
@@ -6727,8 +6975,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- jiti@1.21.6:
- resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
+ jiti@2.4.2:
+ resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
js-tokens@4.0.0:
@@ -7082,9 +7330,6 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-signals@1.2.0:
- resolution: {integrity: sha512-alffqMkGCjjTSwvYMVLx+7QeJ6sTuxbXqBkP21my4iWU5+QpTQAJt3h7htA1OKm9F3BpMM0vnu72QIoiJakrLA==}
-
minimatch@10.0.1:
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
engines: {node: 20 || >=22}
@@ -7118,11 +7363,6 @@ packages:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
- mkdirp@1.0.4:
- resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
- engines: {node: '>=10'}
- hasBin: true
-
mlly@1.7.4:
resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==}
@@ -7130,9 +7370,6 @@ packages:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- ms@2.0.0:
- resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
-
ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
@@ -7280,8 +7517,12 @@ packages:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- ora@8.2.0:
- resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
+ ora@8.0.1:
+ resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==}
+ engines: {node: '>=18'}
+
+ ora@8.1.1:
+ resolution: {integrity: sha512-YWielGi1XzG1UTvOaCFaNgEnuhZVMSHYkW/FQ7UX8O26PtlpdM84c0f7wLPlkvx2RfiQmnzd61d/MGxmpQeJPw==}
engines: {node: '>=18'}
orderedmap@2.1.1:
@@ -7355,10 +7596,6 @@ packages:
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
engines: {node: '>=18'}
- parse-uri@1.0.9:
- resolution: {integrity: sha512-YZfRHHkEZa6qTfPF/xgZ1ErQYCABfud/Vcqp1Q1GNa7RKwv6Oe0YaxXfQQMnQsGdNTo3fwaT0GbVEX7dMAr7tw==}
- engines: {node: '>= 0.10'}
-
parse5-htmlparser2-tree-adapter@7.1.0:
resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
@@ -7445,11 +7682,11 @@ packages:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- pixi.js-legacy@5.3.12:
- resolution: {integrity: sha512-GHq2ZfQZ+9hOXObipbqbRSqPQ/xRSq5lw/1ACsDWVQex88Owq/BRZUUzyoKcym4FtztLdJwXW/zSDoqucj0JnQ==}
+ pixi.js-legacy@7.4.2:
+ resolution: {integrity: sha512-azGsuJvLHk/VJwt45AjlathtTNdUjLDSoaGt8JBNjzG/05cxVswFLL7GsSe83eNSe0eEuIrxiNIt3vBRNyU3AA==}
- pixi.js@5.3.12:
- resolution: {integrity: sha512-XZzUhrq/m6fx3E0ESv/zXKEVR/GW82dPmbwdapIqsgAldKT2QqBYMfz1WuPf+Q9moPapywVNjjyxPvh+DNPmIg==}
+ pixi.js@7.4.2:
+ resolution: {integrity: sha512-TifqgHGNofO7UCEbdZJOpUu7dUnpu4YZ0o76kfCqxDa4RS8ITc9zjECCbtalmuNXkVhSEZmBKQvE7qhHMqw/xg==}
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
@@ -7493,6 +7730,10 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ postcss@8.4.38:
+ resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ engines: {node: ^10 || ^12 || >=14}
+
postcss@8.4.49:
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
@@ -7501,10 +7742,6 @@ packages:
resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.2:
- resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
- engines: {node: ^10 || ^12 || >=14}
-
powerbi-client-react@1.4.0:
resolution: {integrity: sha512-AfS96lP+emEc4drguCUqLG0s4cFa15OM9eqDaP1sJZ+ca0V+FdvFeI1bD6EyC3smPlpRcl862uSzYexVeUxdIQ==}
peerDependencies:
@@ -7532,6 +7769,11 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
+ prettier@3.4.2:
+ resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ engines: {node: '>=14'}
+ hasBin: true
+
prettier@3.5.0:
resolution: {integrity: sha512-quyMrVt6svPS7CjQ9gKb3GLEX/rl3BCL2oa/QkNcXv4YNVBC9olt3s+H7ukto06q7B1Qz46PbrKLO34PR6vXcA==}
engines: {node: '>=14'}
@@ -7659,6 +7901,11 @@ packages:
peerDependencies:
react: ^18.3.1
+ react-dom@19.0.0:
+ resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
+ peerDependencies:
+ react: ^19.0.0
+
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -7804,10 +8051,6 @@ packages:
resolve-pathname@3.0.0:
resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==}
- resolve-url@0.2.1:
- resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
- deprecated: https://github.com/lydell/resolve-url#deprecated
-
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -7816,13 +8059,14 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- resource-loader@3.0.1:
- resolution: {integrity: sha512-fBuCRbEHdLCI1eglzQhUv9Rrdcmqkydr1r6uHE2cYHvRBrcLXeSmbE/qI/urFt8rPr/IGxir3BUwM5kUK8XoyA==}
-
restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
+ restore-cursor@4.0.0:
+ resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
restore-cursor@5.1.0:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
@@ -7852,8 +8096,8 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.34.6:
- resolution: {integrity: sha512-wc2cBWqJgkU3Iz5oztRkQbfVkbxoz5EhnCGOrnJvnLnQ7O0WhQUYyv18qQI79O8L7DdHrrlJNeCHd4VGpnaXKQ==}
+ rollup@4.32.1:
+ resolution: {integrity: sha512-z+aeEsOeEa3mEbS1Tjl6sAZ8NE3+AalQz1RJGj81M+fizusbdDMoEJwdJNHfaB40Scr4qNu+welOfes7maKonA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -7901,20 +8145,20 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.83.1:
- resolution: {integrity: sha512-EVJbDaEs4Rr3F0glJzFSOvtg2/oy2V/YrGFPqPY24UqcLDWcI9ZY5sN+qyO3c/QCZwzgfirvhXvINiJCE/OLcA==}
+ sass@1.84.0:
+ resolution: {integrity: sha512-XDAbhEPJRxi7H0SxrnOpiXFQoUJHwkR2u3Zc4el+fK/Tt5Hpzw5kkQ59qVDfvdaUq6gCrEZIbySFBM2T9DNKHg==}
engines: {node: '>=14.0.0'}
hasBin: true
- sax@1.2.4:
- resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
-
sax@1.4.1:
resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
+ scheduler@0.25.0:
+ resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
+
section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
@@ -7930,8 +8174,8 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ semver@7.7.0:
+ resolution: {integrity: sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==}
engines: {node: '>=10'}
hasBin: true
@@ -8017,17 +8261,9 @@ packages:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
- source-map-resolve@0.5.3:
- resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
- deprecated: See https://github.com/lydell/source-map-resolve#deprecated
-
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
- source-map-url@0.4.1:
- resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
- deprecated: See https://github.com/lydell/source-map-url#deprecated
-
source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
@@ -8149,6 +8385,13 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
+ styled-components@6.1.14:
+ resolution: {integrity: sha512-KtfwhU5jw7UoxdM0g6XU9VZQFV4do+KrM8idiVCH5h4v49W+3p3yMe0icYwJgZQZepa5DbH04Qv8P0/RdcLcgg==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
+
styled-components@6.1.15:
resolution: {integrity: sha512-PpOTEztW87Ua2xbmLa7yssjNyUF9vE7wdldRfn1I2E6RTkqknkBYpj771OxM/xrvRGinLy2oysa7GOd7NcZZIA==}
engines: {node: '>= 16'}
@@ -8162,8 +8405,9 @@ packages:
stylis@4.3.5:
resolution: {integrity: sha512-K7npNOKGRYuhAFFzkzMGfxFDpN6gDwf8hcMiE+uveTVbBgm93HrNP3ZDUpKqzZ4pG7TP6fmb+EMAQPjq9FqqvA==}
- stylus@0.54.8:
- resolution: {integrity: sha512-vr54Or4BZ7pJafo2mpf0ZcwA74rpuYCZbxrHBsH8kbcXOwSfvBFwsRfpGO5OD5fhG5HDCFW737PKaawI7OqEAg==}
+ stylus@0.64.0:
+ resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==}
+ engines: {node: '>=16'}
hasBin: true
superjson@2.2.2:
@@ -8302,38 +8546,38 @@ packages:
resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
- turbo-darwin-64@2.4.1:
- resolution: {integrity: sha512-oos3Gz5N6ol2/7+ys0wPENhl7ZzeVKIumn2BR7X2oE5dEPxNPDMOpKBwreU9ToCxM94e+uFTzKgjcUJpBqpTHA==}
+ turbo-darwin-64@2.3.4:
+ resolution: {integrity: sha512-uOi/cUIGQI7uakZygH+cZQ5D4w+aMLlVCN2KTGot+cmefatps2ZmRRufuHrEM0Rl63opdKD8/JIu+54s25qkfg==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@2.4.1:
- resolution: {integrity: sha512-NoIQsSSvCJDTShgX+v+doSP/g0kAhHhq5p2fpsEAlougs2wcQvwv/LndeqojzkHbxB39lOQmqBYHJcki46Q3oQ==}
+ turbo-darwin-arm64@2.3.4:
+ resolution: {integrity: sha512-IIM1Lq5R+EGMtM1YFGl4x8Xkr0MWb4HvyU8N4LNoQ1Be5aycrOE+VVfH+cDg/Q4csn+8bxCOxhRp5KmUflrVTQ==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@2.4.1:
- resolution: {integrity: sha512-iXIeG8YhluaJF/5KQEudRf8ECBWND8X0yxXDrFIq2wmLLCg4A7gSSzVcBq30rYYeyyU4xMj/sm3HbsAaao3jjg==}
+ turbo-linux-64@2.3.4:
+ resolution: {integrity: sha512-1aD2EfR7NfjFXNH3mYU5gybLJEFi2IGOoKwoPLchAFRQ6OEJQj201/oNo9CDL75IIrQo64/NpEgVyZtoPlfhfA==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@2.4.1:
- resolution: {integrity: sha512-jd5apBV7lBGn3CnkQN/hEMbwazNgZcrwLt6DIkWy/TSi5xfSQEqcR3k9HxviQ7hKMcr1Q1hN6FHWm8Vw90Ej4A==}
+ turbo-linux-arm64@2.3.4:
+ resolution: {integrity: sha512-MxTpdKwxCaA5IlybPxgGLu54fT2svdqTIxRd0TQmpRJIjM0s4kbM+7YiLk0mOh6dGqlWPUsxz/A0Mkn8Xr5o7Q==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@2.4.1:
- resolution: {integrity: sha512-4RYRAijohyQ7uetZY4SSikSgGccq+7tmnljdm/XezpK9t0+3gldKA2vHF0++yLZeZr+CFgqmBeGSFi7B+vhc2g==}
+ turbo-windows-64@2.3.4:
+ resolution: {integrity: sha512-yyCrWqcRGu1AOOlrYzRnizEtdkqi+qKP0MW9dbk9OsMDXaOI5jlWtTY/AtWMkLw/czVJ7yS9Ex1vi9DB6YsFvw==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@2.4.1:
- resolution: {integrity: sha512-4lZB0+AxWB01Adx5xHZhO746FgaHR0T3qzEDF2nf/nx8LAUtN3iwaZQgAsTsblaAKjiM7lxWDI0s/Q3fektsPg==}
+ turbo-windows-arm64@2.3.4:
+ resolution: {integrity: sha512-PggC3qH+njPfn1PDVwKrQvvQby8X09ufbqZ2Ha4uSu+5TvPorHHkAbZVHKYj2Y+tvVzxRzi4Sv6NdHXBS9Be5w==}
cpu: [arm64]
os: [win32]
- turbo@2.4.1:
- resolution: {integrity: sha512-XIIHXAhvD3sv34WLaN/969WTHCHYmm3zf0XQ+CrEP1A7ffIQG50cwNcp7Gh96CaGyjEXMh9odoHyggoZQ3Prvw==}
+ turbo@2.3.4:
+ resolution: {integrity: sha512-1kiLO5C0Okh5ay1DbHsxkPsw9Sjsbjzm6cF85CpWjR0BIyBFNDbKqtUyqGADRS1dbbZoQanJZVj4MS5kk8J42Q==}
hasBin: true
type-check@0.4.0:
@@ -8481,10 +8725,6 @@ packages:
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
- urix@0.1.0:
- resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
- deprecated: Please see https://github.com/lydell/urix#deprecated
-
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
@@ -8975,8 +9215,8 @@ packages:
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
+ yaml@2.7.0:
+ resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
engines: {node: '>= 14'}
hasBin: true
@@ -9030,6 +9270,9 @@ snapshots:
tunnel: 0.0.6
undici: 5.28.4
+ '@adobe/css-tools@4.3.3':
+ optional: true
+
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -9244,7 +9487,7 @@ snapshots:
outdent: 0.5.0
prettier: 2.8.8
resolve-from: 5.0.0
- semver: 7.7.1
+ semver: 7.7.0
'@changesets/assemble-release-plan@6.0.5':
dependencies:
@@ -9253,7 +9496,7 @@ snapshots:
'@changesets/should-skip-package': 0.1.1
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
- semver: 7.7.1
+ semver: 7.7.0
'@changesets/changelog-git@0.2.0':
dependencies:
@@ -9294,7 +9537,7 @@ snapshots:
package-manager-detector: 0.2.8
picocolors: 1.1.1
resolve-from: 5.0.0
- semver: 7.7.1
+ semver: 7.7.0
spawndamnit: 3.0.1
term-size: 2.2.1
@@ -9317,7 +9560,7 @@ snapshots:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
picocolors: 1.1.1
- semver: 7.7.1
+ semver: 7.7.0
'@changesets/get-github-info@0.6.0':
dependencies:
@@ -9414,6 +9657,25 @@ snapshots:
'@emotion/unitless@0.8.1': {}
+ '@equinor/eds-core-react@0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ '@babel/runtime': 7.26.7
+ '@equinor/eds-icons': 0.22.0
+ '@equinor/eds-tokens': 0.9.2
+ '@equinor/eds-utils': 0.8.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@floating-ui/react': 0.27.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@internationalized/date': 3.7.0
+ '@react-aria/utils': 3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-stately/calendar': 3.7.0(react@18.3.1)
+ '@react-stately/datepicker': 3.12.0(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@tanstack/react-virtual': 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ downshift: 9.0.8(react@18.3.1)
+ react: 18.3.1
+ react-aria: 3.37.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+
'@equinor/eds-core-react@0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@babel/runtime': 7.26.7
@@ -9433,6 +9695,25 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
styled-components: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@equinor/eds-core-react@0.43.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ '@babel/runtime': 7.26.7
+ '@equinor/eds-icons': 0.22.0
+ '@equinor/eds-tokens': 0.9.2
+ '@equinor/eds-utils': 0.8.6(react-dom@19.0.0(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1))
+ '@floating-ui/react': 0.27.3(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@internationalized/date': 3.7.0
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/calendar': 3.7.0(react@18.3.1)
+ '@react-stately/datepicker': 3.12.0(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@tanstack/react-virtual': 3.11.2(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ downshift: 9.0.8(react@18.3.1)
+ react: 18.3.1
+ react-aria: 3.37.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ react-dom: 19.0.0(react@18.3.1)
+ styled-components: 6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+
'@equinor/eds-icons@0.19.3': {}
'@equinor/eds-icons@0.21.0': {}
@@ -9441,6 +9722,14 @@ snapshots:
'@equinor/eds-tokens@0.9.2': {}
+ '@equinor/eds-utils@0.8.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@equinor/eds-tokens': 0.9.2
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+
'@equinor/eds-utils@0.8.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
'@babel/runtime': 7.26.0
@@ -9449,52 +9738,60 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
styled-components: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@equinor/eslint-config-fusion-react@2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.5.4))(eslint@8.57.1)':
+ '@equinor/eds-utils@0.8.6(react-dom@19.0.0(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@equinor/eds-tokens': 0.9.2
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+ styled-components: 6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+
+ '@equinor/eslint-config-fusion-react@2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.4.2)(typescript@5.7.3))(eslint@8.57.1)':
dependencies:
- '@equinor/eslint-config-fusion': 2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.5.4)
+ '@equinor/eslint-config-fusion': 2.3.0(eslint@8.57.1)(prettier@3.4.2)(typescript@5.7.3)
eslint-plugin-react: 7.35.0(eslint@8.57.1)
eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
eslint-plugin-styled-components-a11y: 2.1.35(eslint@8.57.1)
transitivePeerDependencies:
- eslint
- '@equinor/eslint-config-fusion-react@2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.7.3))(eslint@8.57.1)':
+ '@equinor/eslint-config-fusion-react@2.1.1(@equinor/eslint-config-fusion@2.3.0(eslint@9.20.0(jiti@2.4.2))(prettier@3.5.0)(typescript@5.5.4))(eslint@9.20.0(jiti@2.4.2))':
dependencies:
- '@equinor/eslint-config-fusion': 2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.7.3)
- eslint-plugin-react: 7.35.0(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
- eslint-plugin-styled-components-a11y: 2.1.35(eslint@8.57.1)
+ '@equinor/eslint-config-fusion': 2.3.0(eslint@9.20.0(jiti@2.4.2))(prettier@3.5.0)(typescript@5.5.4)
+ eslint-plugin-react: 7.35.0(eslint@9.20.0(jiti@2.4.2))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.20.0(jiti@2.4.2))
+ eslint-plugin-styled-components-a11y: 2.1.35(eslint@9.20.0(jiti@2.4.2))
transitivePeerDependencies:
- eslint
- '@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.5.4)':
+ '@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.4.2)(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/eslint-plugin': 7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)
- '@typescript-eslint/parser': 7.17.0(eslint@8.57.1)(typescript@5.5.4)
+ '@typescript-eslint/eslint-plugin': 7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3)
+ '@typescript-eslint/parser': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
eslint: 8.57.1
eslint-config-prettier: 9.1.0(eslint@8.57.1)
- eslint-plugin-prettier: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.0)
- prettier: 3.5.0
- typescript: 5.5.4
+ eslint-plugin-prettier: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2)
+ prettier: 3.4.2
+ typescript: 5.7.3
transitivePeerDependencies:
- '@types/eslint'
- supports-color
- '@equinor/eslint-config-fusion@2.3.0(eslint@8.57.1)(prettier@3.5.0)(typescript@5.7.3)':
+ '@equinor/eslint-config-fusion@2.3.0(eslint@9.20.0(jiti@2.4.2))(prettier@3.5.0)(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/eslint-plugin': 7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3)
- '@typescript-eslint/parser': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
- eslint: 8.57.1
- eslint-config-prettier: 9.1.0(eslint@8.57.1)
- eslint-plugin-prettier: 5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.0)
+ '@typescript-eslint/eslint-plugin': 7.17.0(@typescript-eslint/parser@7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
+ eslint: 9.20.0(jiti@2.4.2)
+ eslint-config-prettier: 9.1.0(eslint@9.20.0(jiti@2.4.2))
+ eslint-plugin-prettier: 5.2.3(eslint-config-prettier@9.1.0(eslint@9.20.0(jiti@2.4.2)))(eslint@9.20.0(jiti@2.4.2))(prettier@3.5.0)
prettier: 3.5.0
- typescript: 5.7.3
+ typescript: 5.5.4
transitivePeerDependencies:
- '@types/eslint'
- supports-color
- '@equinor/fusion-components@2.15.1(@equinor/fusion@3.4.16(tslib@2.8.1))(@types/react@18.3.3)(history@4.10.1)(pixi.js-legacy@5.3.12)(powerbi-client@2.23.1)(react-dom@18.3.1(react@18.3.1))(react-router-dom@5.3.4(react@18.3.1))(react@18.3.1)':
- dependencies:
+ ? '@equinor/fusion-components@2.15.1(@equinor/fusion@3.4.16(tslib@2.8.1))(@types/react@18.3.3)(history@4.10.1)(pixi.js-legacy@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/extract@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))(@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))(powerbi-client@2.23.1)(react-dom@18.3.1(react@18.3.1))(react-router-dom@5.3.4(react@18.3.1))(react@18.3.1)'
+ : dependencies:
'@equinor/fusion': 3.4.16(tslib@2.8.1)
'@equinor/fusion-observable': 8.3.3(@types/react@18.3.3)(react@18.3.1)
'@equinor/fusion-react-checkbox': 0.5.17(react@18.3.1)
@@ -9510,7 +9807,7 @@ snapshots:
loader-utils: 2.0.4
lodash.throttle: 4.1.1
npm-force-resolutions: 0.0.10
- pixi.js-legacy: 5.3.12
+ pixi.js-legacy: 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/extract@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))(@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
powerbi-client: 2.23.1
powerbi-client-react: 1.4.0(react@18.3.1)
prosemirror-commands: 1.5.2
@@ -9597,15 +9894,15 @@ snapshots:
transitivePeerDependencies:
- react
- '@equinor/fusion-react-side-sheet@1.3.4(@equinor/eds-core-react@0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)))(@equinor/eds-icons@0.22.0)(@equinor/eds-tokens@0.9.2)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ '@equinor/fusion-react-side-sheet@1.3.4(@equinor/eds-core-react@0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)))(@equinor/eds-icons@0.22.0)(@equinor/eds-tokens@0.9.2)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
dependencies:
- '@equinor/eds-core-react': 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@equinor/eds-core-react': 0.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
'@equinor/eds-icons': 0.22.0
'@equinor/eds-tokens': 0.9.2
re-resizable: 6.9.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-keyed-flatten-children: 3.0.0(react@18.3.1)
- styled-components: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ styled-components: 6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.3
react-dom: 18.3.1(react@18.3.1)
@@ -10012,8 +10309,36 @@ snapshots:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.20.0(jiti@2.4.2))':
+ dependencies:
+ eslint: 9.20.0(jiti@2.4.2)
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.20.0(jiti@2.4.2))':
+ dependencies:
+ eslint: 9.20.0(jiti@2.4.2)
+ eslint-visitor-keys: 3.4.3
+
'@eslint-community/regexpp@4.11.0': {}
+ '@eslint-community/regexpp@4.12.1': {}
+
+ '@eslint/config-array@0.19.2':
+ dependencies:
+ '@eslint/object-schema': 2.1.6
+ debug: 4.4.0
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/core@0.10.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
+ '@eslint/core@0.11.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
@@ -10028,8 +10353,31 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@eslint/eslintrc@3.2.0':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.4.0
+ espree: 10.3.0
+ globals: 14.0.0
+ ignore: 5.3.2
+ import-fresh: 3.3.1
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+
'@eslint/js@8.57.1': {}
+ '@eslint/js@9.20.0': {}
+
+ '@eslint/object-schema@2.1.6': {}
+
+ '@eslint/plugin-kit@0.2.5':
+ dependencies:
+ '@eslint/core': 0.10.0
+ levn: 0.4.1
+
'@fastify/busboy@2.1.1': {}
'@floating-ui/core@1.6.8':
@@ -10056,6 +10404,12 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@floating-ui/dom': 1.6.13
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@floating-ui/react@0.27.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -10064,6 +10418,14 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
tabbable: 6.2.0
+ '@floating-ui/react@0.27.3(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@floating-ui/utils': 0.2.9
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+ tabbable: 6.2.0
+
'@floating-ui/utils@0.2.9': {}
'@formatjs/ecma402-abstract@2.3.2':
@@ -10092,6 +10454,13 @@ snapshots:
dependencies:
tslib: 2.8.1
+ '@humanfs/core@0.19.1': {}
+
+ '@humanfs/node@0.16.6':
+ dependencies:
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.1
+
'@humanwhocodes/config-array@0.13.0':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
@@ -10104,6 +10473,10 @@ snapshots:
'@humanwhocodes/object-schema@2.0.3': {}
+ '@humanwhocodes/retry@0.3.1': {}
+
+ '@humanwhocodes/retry@0.4.1': {}
+
'@iconify/types@2.0.0': {}
'@iconify/utils@2.2.1':
@@ -10728,19 +11101,19 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-analytics-js@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-analytics-js@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-common': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-common': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-utils': 0.11.6
tslib: 2.8.1
- '@microsoft/applicationinsights-cfgsync-js@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-cfgsync-js@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-common': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-common': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-async': 0.5.4
@@ -10755,10 +11128,10 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-channel-js@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-channel-js@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-common': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-common': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-async': 0.5.4
@@ -10772,9 +11145,9 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-common@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-common@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-utils': 0.11.6
@@ -10786,7 +11159,7 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-core-js@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-core-js@3.3.4(tslib@2.8.1)':
dependencies:
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
@@ -10802,10 +11175,10 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-dependencies-js@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-dependencies-js@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-common': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-common': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-async': 0.5.4
@@ -10820,10 +11193,10 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-properties-js@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-properties-js@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-common': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-common': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-utils': 0.11.6
@@ -10847,15 +11220,15 @@ snapshots:
'@microsoft/dynamicproto-js': 1.1.11
tslib: 2.8.1
- '@microsoft/applicationinsights-web@3.3.5(tslib@2.8.1)':
+ '@microsoft/applicationinsights-web@3.3.4(tslib@2.8.1)':
dependencies:
- '@microsoft/applicationinsights-analytics-js': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-cfgsync-js': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-channel-js': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-common': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-core-js': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-dependencies-js': 3.3.5(tslib@2.8.1)
- '@microsoft/applicationinsights-properties-js': 3.3.5(tslib@2.8.1)
+ '@microsoft/applicationinsights-analytics-js': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-cfgsync-js': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-channel-js': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-common': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-core-js': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-dependencies-js': 3.3.4(tslib@2.8.1)
+ '@microsoft/applicationinsights-properties-js': 3.3.4(tslib@2.8.1)
'@microsoft/applicationinsights-shims': 3.0.1
'@microsoft/dynamicproto-js': 2.0.3
'@nevware21/ts-async': 0.5.4
@@ -10971,280 +11344,254 @@ snapshots:
'@parcel/watcher-win32-x64': 2.5.1
optional: true
- '@pixi/accessibility@5.3.12':
+ '@pixi/accessibility@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/events@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/events': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/app@5.3.12':
+ '@pixi/app@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
- '@pixi/canvas-display@5.3.12':
+ '@pixi/assets@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/display': 5.3.12
+ '@pixi/core': 7.4.2
+ '@types/css-font-loading-module': 0.0.12
- '@pixi/canvas-extract@5.3.12':
+ '@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
- '@pixi/canvas-graphics@5.3.12':
+ '@pixi/canvas-extract@7.4.2(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/extract@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/graphics': 5.3.12
- '@pixi/math': 5.3.12
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/extract': 7.4.2(@pixi/core@7.4.2)
- '@pixi/canvas-mesh@5.3.12':
+ '@pixi/canvas-graphics@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/constants': 5.3.12
- '@pixi/mesh': 5.3.12
- '@pixi/mesh-extras': 5.3.12
- '@pixi/settings': 5.3.12
+ '@pixi/canvas-display': 7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/graphics': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/canvas-particles@5.3.12':
+ '@pixi/canvas-mesh@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/particles': 5.3.12
+ '@pixi/canvas-display': 7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/mesh': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/mesh-extras': 7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/canvas-prepare@5.3.12':
+ '@pixi/canvas-particle-container@7.4.2(@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/prepare': 5.3.12
+ '@pixi/particle-container': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/canvas-renderer@5.3.12':
+ '@pixi/canvas-prepare@7.4.2(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/prepare': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
- '@pixi/canvas-sprite-tiling@5.3.12':
+ '@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/canvas-sprite': 5.3.12
- '@pixi/sprite-tiling': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/canvas-sprite@5.3.12':
+ '@pixi/canvas-sprite-tiling@7.4.2(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/canvas-sprite@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/core@7.4.2)(@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/constants': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/canvas-sprite': 7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/core': 7.4.2
+ '@pixi/sprite-tiling': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/canvas-text@5.3.12':
+ '@pixi/canvas-sprite@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/sprite': 5.3.12
- '@pixi/text': 5.3.12
-
- '@pixi/constants@5.3.12': {}
+ '@pixi/canvas-display': 7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/core@5.3.12':
+ '@pixi/canvas-text@7.4.2(@pixi/canvas-sprite@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/runner': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/ticker': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/canvas-sprite': 7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/text': 7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/display@5.3.12':
+ '@pixi/color@7.4.2':
dependencies:
- '@pixi/math': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/colord': 2.9.6
+
+ '@pixi/colord@2.9.6': {}
- '@pixi/extract@5.3.12':
+ '@pixi/compressed-textures@7.4.2(@pixi/assets@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/assets': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
- '@pixi/filter-alpha@5.3.12':
+ '@pixi/constants@7.4.2': {}
+
+ '@pixi/core@7.4.2':
dependencies:
- '@pixi/core': 5.3.12
+ '@pixi/color': 7.4.2
+ '@pixi/constants': 7.4.2
+ '@pixi/extensions': 7.4.2
+ '@pixi/math': 7.4.2
+ '@pixi/runner': 7.4.2
+ '@pixi/settings': 7.4.2
+ '@pixi/ticker': 7.4.2
+ '@pixi/utils': 7.4.2
- '@pixi/filter-blur@5.3.12':
+ '@pixi/display@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/settings': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/filter-color-matrix@5.3.12':
+ '@pixi/events@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/core': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+
+ '@pixi/extensions@7.4.2': {}
- '@pixi/filter-displacement@5.3.12':
+ '@pixi/extract@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/math': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/filter-fxaa@5.3.12':
+ '@pixi/filter-alpha@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/filter-noise@5.3.12':
+ '@pixi/filter-blur@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/graphics@5.3.12':
+ '@pixi/filter-color-matrix@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/interaction@5.3.12':
+ '@pixi/filter-displacement@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/ticker': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
- '@pixi/loaders@5.3.12':
+ '@pixi/filter-fxaa@7.4.2(@pixi/core@7.4.2)':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/utils': 5.3.12
- resource-loader: 3.0.1
+ '@pixi/core': 7.4.2
- '@pixi/math@5.3.12': {}
+ '@pixi/filter-noise@7.4.2(@pixi/core@7.4.2)':
+ dependencies:
+ '@pixi/core': 7.4.2
- '@pixi/mesh-extras@5.3.12':
+ '@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/mesh': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+
+ '@pixi/math@7.4.2': {}
- '@pixi/mesh@5.3.12':
+ '@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/mesh': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/mixin-cache-as-bitmap@5.3.12':
+ '@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
- '@pixi/mixin-get-child-by-name@5.3.12':
+ '@pixi/mixin-cache-as-bitmap@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/display': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/mixin-get-global-position@5.3.12':
+ '@pixi/mixin-get-child-by-name@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
- '@pixi/particles@5.3.12':
+ '@pixi/mixin-get-global-position@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
- '@pixi/polyfill@5.3.12':
+ '@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- es6-promise-polyfill: 1.2.0
- object-assign: 4.1.1
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/prepare@5.3.12':
+ '@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/graphics': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/text': 5.3.12
- '@pixi/ticker': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/graphics': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/text': 7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/runner@5.3.12': {}
+ '@pixi/runner@7.4.2': {}
- '@pixi/settings@5.3.12':
+ '@pixi/settings@7.4.2':
dependencies:
+ '@pixi/constants': 7.4.2
+ '@types/css-font-loading-module': 0.0.12
ismobilejs: 1.1.1
- '@pixi/sprite-animated@5.3.12':
+ '@pixi/sprite-animated@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
+ dependencies:
+ '@pixi/core': 7.4.2
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+
+ '@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/ticker': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/sprite-tiling@5.3.12':
+ '@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
- '@pixi/sprite@5.3.12':
+ '@pixi/spritesheet@7.4.2(@pixi/assets@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/assets': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
- '@pixi/spritesheet@5.3.12':
+ '@pixi/text-bitmap@7.4.2(@pixi/assets@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/loaders': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/assets': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/mesh': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/text': 7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/text-bitmap@5.3.12':
+ '@pixi/text-html@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/loaders': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/mesh': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/text': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/text': 7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
- '@pixi/text@5.3.12':
+ '@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))':
dependencies:
- '@pixi/core': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/utils': 5.3.12
+ '@pixi/core': 7.4.2
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
- '@pixi/ticker@5.3.12':
+ '@pixi/ticker@7.4.2':
dependencies:
- '@pixi/settings': 5.3.12
+ '@pixi/extensions': 7.4.2
+ '@pixi/settings': 7.4.2
+ '@pixi/utils': 7.4.2
- '@pixi/utils@5.3.12':
+ '@pixi/utils@7.4.2':
dependencies:
- '@pixi/constants': 5.3.12
- '@pixi/settings': 5.3.12
+ '@pixi/color': 7.4.2
+ '@pixi/constants': 7.4.2
+ '@pixi/settings': 7.4.2
+ '@types/earcut': 2.1.4
earcut: 2.2.4
- eventemitter3: 3.1.2
+ eventemitter3: 4.0.7
url: 0.11.4
'@pkgjs/parseargs@0.11.0':
@@ -11263,6 +11610,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/breadcrumbs@3.5.20(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/link': 3.7.8(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/breadcrumbs': 3.7.10(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/button@3.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11276,6 +11634,19 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/button@3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/toolbar': 3.0.0-beta.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/toggle': 3.8.1(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/calendar@3.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@internationalized/date': 3.7.0
@@ -11291,6 +11662,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/calendar@3.7.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.7.0
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.1
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/calendar': 3.7.0(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/calendar': 3.6.0(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/checkbox@3.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/form': 3.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11307,6 +11693,22 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/checkbox@3.15.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/form': 3.0.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/toggle': 3.10.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/checkbox': 3.6.11(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-stately/toggle': 3.8.1(react@18.3.1)
+ '@react-types/checkbox': 3.9.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/color@3.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/i18n': 3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11325,6 +11727,24 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/color@3.0.3(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/numberfield': 3.11.10(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/slider': 3.7.15(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/spinbutton': 3.6.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/color': 3.8.2(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-types/color': 3.0.2(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/combobox@3.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/i18n': 3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11345,6 +11765,26 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/combobox@3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/listbox': 3.14.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.1
+ '@react-aria/menu': 3.17.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/collections': 3.12.1(react@18.3.1)
+ '@react-stately/combobox': 3.10.2(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/combobox': 3.13.2(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/datepicker@3.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@internationalized/date': 3.7.0
@@ -11368,6 +11808,29 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/datepicker@3.13.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.7.0
+ '@internationalized/number': 3.6.0
+ '@internationalized/string': 3.2.5
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/form': 3.0.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/spinbutton': 3.6.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/datepicker': 3.12.0(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/calendar': 3.6.0(react@18.3.1)
+ '@react-types/datepicker': 3.10.0(react@18.3.1)
+ '@react-types/dialog': 3.5.15(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/dialog@3.5.21(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11379,6 +11842,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/dialog@3.5.21(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/dialog': 3.5.15(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/disclosure@3.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/ssr': 3.9.7(react@18.3.1)
@@ -11389,6 +11863,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/disclosure@3.0.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.7(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/disclosure': 3.0.1(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/dnd@3.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@internationalized/string': 3.2.5
@@ -11404,6 +11888,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/dnd@3.8.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@internationalized/string': 3.2.5
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.1
+ '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/dnd': 3.5.1(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/focus@3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/interactions': 3.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11414,6 +11913,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/focus@3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ clsx: 2.1.1
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/form@3.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/interactions': 3.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11424,6 +11933,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/form@3.0.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/grid@3.11.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11442,6 +11961,24 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/grid@3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.1
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/collections': 3.12.1(react@18.3.1)
+ '@react-stately/grid': 3.10.1(react@18.3.1)
+ '@react-stately/selection': 3.19.0(react@18.3.1)
+ '@react-types/checkbox': 3.9.1(react@18.3.1)
+ '@react-types/grid': 3.2.11(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/gridlist@3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11458,6 +11995,22 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/gridlist@3.10.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/grid': 3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/collections': 3.12.1(react@18.3.1)
+ '@react-stately/list': 3.11.2(react@18.3.1)
+ '@react-stately/tree': 3.8.7(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/i18n@3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@internationalized/date': 3.7.0
@@ -11471,6 +12024,19 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/i18n@3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@internationalized/date': 3.7.0
+ '@internationalized/message': 3.1.6
+ '@internationalized/number': 3.6.0
+ '@internationalized/string': 3.2.5
+ '@react-aria/ssr': 3.9.7(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/interactions@3.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/ssr': 3.9.7(react@18.3.1)
@@ -11480,6 +12046,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/interactions@3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.7(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/label@3.7.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/utils': 3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11488,6 +12063,14 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/label@3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/link@3.7.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11499,6 +12082,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/link@3.7.8(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/link': 3.5.10(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/listbox@3.14.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/interactions': 3.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11513,6 +12107,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/listbox@3.14.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/collections': 3.12.1(react@18.3.1)
+ '@react-stately/list': 3.11.2(react@18.3.1)
+ '@react-types/listbox': 3.5.4(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/live-announcer@3.4.1':
dependencies:
'@swc/helpers': 0.5.15
@@ -11536,6 +12144,25 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/menu@3.17.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/collections': 3.12.1(react@18.3.1)
+ '@react-stately/menu': 3.9.1(react@18.3.1)
+ '@react-stately/selection': 3.19.0(react@18.3.1)
+ '@react-stately/tree': 3.8.7(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/menu': 3.9.14(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/meter@3.4.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/progress': 3.4.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11546,6 +12173,16 @@ snapshots:
transitivePeerDependencies:
- react-dom
+ '@react-aria/meter@3.4.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/progress': 3.4.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/meter': 3.4.6(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ transitivePeerDependencies:
+ - react-dom
+
'@react-aria/numberfield@3.11.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/i18n': 3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11562,6 +12199,22 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/numberfield@3.11.10(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/spinbutton': 3.6.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-stately/numberfield': 3.9.9(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/numberfield': 3.8.8(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/overlays@3.25.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11578,6 +12231,22 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/overlays@3.25.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/ssr': 3.9.7(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/overlays': 3.6.13(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/overlays': 3.8.12(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/progress@3.4.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/i18n': 3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11589,6 +12258,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/progress@3.4.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/progress': 3.5.9(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/radio@3.10.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11604,6 +12284,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/radio@3.10.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/form': 3.0.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/radio': 3.10.10(react@18.3.1)
+ '@react-types/radio': 3.8.6(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/searchfield@3.8.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/i18n': 3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11617,6 +12312,19 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/searchfield@3.8.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/searchfield': 3.5.9(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/searchfield': 3.5.11(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/select@3.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/form': 3.0.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11636,6 +12344,25 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/select@3.15.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/form': 3.0.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/listbox': 3.14.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/menu': 3.17.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/select': 3.6.10(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/select': 3.9.9(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/selection@3.22.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11648,6 +12375,18 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/selection@3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/selection': 3.19.0(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/separator@3.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/utils': 3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11656,6 +12395,14 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/separator@3.4.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/slider@3.7.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11670,6 +12417,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/slider@3.7.15(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/slider': 3.6.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@react-types/slider': 3.7.8(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/spinbutton@3.6.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/i18n': 3.12.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11681,6 +12442,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/spinbutton@3.6.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.1
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/ssr@3.9.7(react@18.3.1)':
dependencies:
'@swc/helpers': 0.5.15
@@ -11697,6 +12469,17 @@ snapshots:
transitivePeerDependencies:
- react-dom
+ '@react-aria/switch@3.6.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/toggle': 3.10.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/toggle': 3.8.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@react-types/switch': 3.5.8(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ transitivePeerDependencies:
+ - react-dom
+
'@react-aria/table@3.16.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11717,6 +12500,26 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/table@3.16.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/grid': 3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/live-announcer': 3.4.1
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/collections': 3.12.1(react@18.3.1)
+ '@react-stately/flags': 3.0.5
+ '@react-stately/table': 3.13.1(react@18.3.1)
+ '@react-types/checkbox': 3.9.1(react@18.3.1)
+ '@react-types/grid': 3.2.11(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@react-types/table': 3.10.4(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/tabs@3.9.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11730,6 +12533,19 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/tabs@3.9.9(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/tabs': 3.7.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@react-types/tabs': 3.3.12(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/tag@3.4.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/gridlist': 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11745,6 +12561,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/tag@3.4.9(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/gridlist': 3.10.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/list': 3.11.2(react@18.3.1)
+ '@react-types/button': 3.10.2(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/textfield@3.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11759,6 +12590,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/textfield@3.16.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/form': 3.0.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/form': 3.1.1(react@18.3.1)
+ '@react-stately/utils': 3.10.5(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@react-types/textfield': 3.11.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/toggle@3.10.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11771,6 +12616,18 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/toggle@3.10.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/toggle': 3.8.1(react@18.3.1)
+ '@react-types/checkbox': 3.9.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/toolbar@3.0.0-beta.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11781,6 +12638,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/toolbar@3.0.0-beta.12(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/tooltip@3.7.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/focus': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11793,6 +12660,18 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/tooltip@3.7.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-stately/tooltip': 3.5.1(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@react-types/tooltip': 3.4.14(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/utils@3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/ssr': 3.9.7(react@18.3.1)
@@ -11803,6 +12682,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/utils@3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/ssr': 3.9.7(react@18.3.1)
+ '@react-stately/utils': 3.10.5(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ clsx: 2.1.1
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-aria/visually-hidden@3.8.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@react-aria/interactions': 3.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -11812,6 +12701,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/visually-hidden@3.8.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ '@swc/helpers': 0.5.15
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@react-stately/calendar@3.7.0(react@18.3.1)':
dependencies:
'@internationalized/date': 3.7.0
@@ -12179,115 +13077,115 @@ snapshots:
'@rollup/rollup-android-arm-eabi@4.32.0':
optional: true
- '@rollup/rollup-android-arm-eabi@4.34.6':
+ '@rollup/rollup-android-arm-eabi@4.32.1':
optional: true
'@rollup/rollup-android-arm64@4.32.0':
optional: true
- '@rollup/rollup-android-arm64@4.34.6':
+ '@rollup/rollup-android-arm64@4.32.1':
optional: true
'@rollup/rollup-darwin-arm64@4.32.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.34.6':
+ '@rollup/rollup-darwin-arm64@4.32.1':
optional: true
'@rollup/rollup-darwin-x64@4.32.0':
optional: true
- '@rollup/rollup-darwin-x64@4.34.6':
+ '@rollup/rollup-darwin-x64@4.32.1':
optional: true
'@rollup/rollup-freebsd-arm64@4.32.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.34.6':
+ '@rollup/rollup-freebsd-arm64@4.32.1':
optional: true
'@rollup/rollup-freebsd-x64@4.32.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.34.6':
+ '@rollup/rollup-freebsd-x64@4.32.1':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.32.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.6':
+ '@rollup/rollup-linux-arm-gnueabihf@4.32.1':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.32.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.34.6':
+ '@rollup/rollup-linux-arm-musleabihf@4.32.1':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.32.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.34.6':
+ '@rollup/rollup-linux-arm64-gnu@4.32.1':
optional: true
'@rollup/rollup-linux-arm64-musl@4.32.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.34.6':
+ '@rollup/rollup-linux-arm64-musl@4.32.1':
optional: true
'@rollup/rollup-linux-loongarch64-gnu@4.32.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.34.6':
+ '@rollup/rollup-linux-loongarch64-gnu@4.32.1':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.32.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.32.1':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.32.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.34.6':
+ '@rollup/rollup-linux-riscv64-gnu@4.32.1':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.32.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.34.6':
+ '@rollup/rollup-linux-s390x-gnu@4.32.1':
optional: true
'@rollup/rollup-linux-x64-gnu@4.32.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.34.6':
+ '@rollup/rollup-linux-x64-gnu@4.32.1':
optional: true
'@rollup/rollup-linux-x64-musl@4.32.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.34.6':
+ '@rollup/rollup-linux-x64-musl@4.32.1':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.32.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.34.6':
+ '@rollup/rollup-win32-arm64-msvc@4.32.1':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.32.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.34.6':
+ '@rollup/rollup-win32-ia32-msvc@4.32.1':
optional: true
'@rollup/rollup-win32-x64-msvc@4.32.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.34.6':
+ '@rollup/rollup-win32-x64-msvc@4.32.1':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
@@ -12458,6 +13356,12 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@tanstack/react-virtual@3.11.2(react-dom@19.0.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@tanstack/virtual-core': 3.11.2
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
'@tanstack/virtual-core@3.11.2': {}
'@testing-library/dom@10.4.0':
@@ -12471,7 +13375,7 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.3)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.3(@types/react@18.3.3))(@types/react@18.3.3)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
dependencies:
'@babel/runtime': 7.26.0
'@testing-library/dom': 10.4.0
@@ -12479,7 +13383,7 @@ snapshots:
react-dom: 18.2.0(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.3
- '@types/react-dom': 18.3.1
+ '@types/react-dom': 19.0.3(@types/react@18.3.3)
'@types/adm-zip@0.5.7':
dependencies:
@@ -12508,6 +13412,8 @@ snapshots:
dependencies:
'@babel/types': 7.26.5
+ '@types/css-font-loading-module@0.0.12': {}
+
'@types/d3-array@3.2.1': {}
'@types/d3-axis@3.0.6':
@@ -12629,6 +13535,8 @@ snapshots:
dependencies:
'@types/ms': 0.7.34
+ '@types/earcut@2.1.4': {}
+
'@types/estree@1.0.6': {}
'@types/fs-extra@11.0.4':
@@ -12700,6 +13608,11 @@ snapshots:
dependencies:
undici-types: 6.20.0
+ '@types/node@22.13.1':
+ dependencies:
+ undici-types: 6.20.0
+ optional: true
+
'@types/normalize-package-data@2.4.4': {}
'@types/prop-types@15.7.12': {}
@@ -12714,6 +13627,11 @@ snapshots:
dependencies:
'@types/react': 18.3.12
+ '@types/react-dom@19.0.3(@types/react@18.3.3)':
+ dependencies:
+ '@types/react': 18.3.3
+ optional: true
+
'@types/react-router-dom@5.3.3':
dependencies:
'@types/history': 4.7.11
@@ -12737,7 +13655,7 @@ snapshots:
'@types/rollup@0.54.0':
dependencies:
- rollup: 4.34.6
+ rollup: 4.32.1
'@types/sax@1.2.7':
dependencies:
@@ -12788,81 +13706,81 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.17.0(eslint@8.57.1)(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
'@typescript-eslint/scope-manager': 7.17.0
- '@typescript-eslint/type-utils': 7.17.0(eslint@8.57.1)(typescript@5.5.4)
- '@typescript-eslint/utils': 7.17.0(eslint@8.57.1)(typescript@5.5.4)
+ '@typescript-eslint/type-utils': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
+ '@typescript-eslint/utils': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
'@typescript-eslint/visitor-keys': 7.17.0
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.7.3)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.17.0(@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3))(eslint@8.57.1)(typescript@5.7.3)':
+ '@typescript-eslint/eslint-plugin@7.17.0(@typescript-eslint/parser@7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4))(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
+ '@typescript-eslint/parser': 7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
'@typescript-eslint/scope-manager': 7.17.0
- '@typescript-eslint/type-utils': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
- '@typescript-eslint/utils': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
+ '@typescript-eslint/type-utils': 7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.17.0
- eslint: 8.57.1
+ eslint: 9.20.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.7.3)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.7.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.1)(typescript@5.5.4)':
+ '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.1)(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.5.4)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.1)(typescript@5.7.3)':
+ '@typescript-eslint/experimental-utils@5.62.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.7.3)
- eslint: 8.57.1
+ '@typescript-eslint/utils': 5.62.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
+ eslint: 9.20.0(jiti@2.4.2)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.5.4)':
+ '@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.17.0
'@typescript-eslint/types': 7.17.0
- '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.7.3)
'@typescript-eslint/visitor-keys': 7.17.0
debug: 4.4.0
eslint: 8.57.1
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.17.0(eslint@8.57.1)(typescript@5.7.3)':
+ '@typescript-eslint/parser@7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 7.17.0
'@typescript-eslint/types': 7.17.0
- '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.7.3)
+ '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.17.0
debug: 4.4.0
- eslint: 8.57.1
+ eslint: 9.20.0(jiti@2.4.2)
optionalDependencies:
- typescript: 5.7.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
@@ -12876,27 +13794,27 @@ snapshots:
'@typescript-eslint/types': 7.17.0
'@typescript-eslint/visitor-keys': 7.17.0
- '@typescript-eslint/type-utils@7.17.0(eslint@8.57.1)(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@7.17.0(eslint@8.57.1)(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.5.4)
- '@typescript-eslint/utils': 7.17.0(eslint@8.57.1)(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.7.3)
+ '@typescript-eslint/utils': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
debug: 4.4.0
eslint: 8.57.1
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.7.3)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.17.0(eslint@8.57.1)(typescript@5.7.3)':
+ '@typescript-eslint/type-utils@7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.7.3)
- '@typescript-eslint/utils': 7.17.0(eslint@8.57.1)(typescript@5.7.3)
+ '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
debug: 4.4.0
- eslint: 8.57.1
- ts-api-utils: 1.3.0(typescript@5.7.3)
+ eslint: 9.20.0(jiti@2.4.2)
+ ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
- typescript: 5.7.3
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
@@ -12911,7 +13829,7 @@ snapshots:
debug: 4.4.0
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.7.1
+ semver: 7.7.0
tsutils: 3.21.0(typescript@5.5.4)
optionalDependencies:
typescript: 5.5.4
@@ -12925,7 +13843,7 @@ snapshots:
debug: 4.4.0
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.7.1
+ semver: 7.7.0
tsutils: 3.21.0(typescript@5.7.3)
optionalDependencies:
typescript: 5.7.3
@@ -12940,7 +13858,7 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.0
ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
typescript: 5.5.4
@@ -12955,61 +13873,61 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.0
ts-api-utils: 1.3.0(typescript@5.7.3)
optionalDependencies:
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.5.4)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.7.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.3)
eslint: 8.57.1
eslint-scope: 5.1.1
- semver: 7.7.1
+ semver: 7.7.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.7.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.20.0(jiti@2.4.2))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.3)
- eslint: 8.57.1
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
+ eslint: 9.20.0(jiti@2.4.2)
eslint-scope: 5.1.1
- semver: 7.7.1
+ semver: 7.7.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.17.0(eslint@8.57.1)(typescript@5.5.4)':
+ '@typescript-eslint/utils@7.17.0(eslint@8.57.1)(typescript@5.7.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
'@typescript-eslint/scope-manager': 7.17.0
'@typescript-eslint/types': 7.17.0
- '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.7.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.17.0(eslint@8.57.1)(typescript@5.7.3)':
+ '@typescript-eslint/utils@7.17.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.20.0(jiti@2.4.2))
'@typescript-eslint/scope-manager': 7.17.0
'@typescript-eslint/types': 7.17.0
- '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.7.3)
- eslint: 8.57.1
+ '@typescript-eslint/typescript-estree': 7.17.0(typescript@5.5.4)
+ eslint: 9.20.0(jiti@2.4.2)
transitivePeerDependencies:
- supports-color
- typescript
@@ -13028,34 +13946,34 @@ snapshots:
'@ungap/structured-clone@1.2.1': {}
- '@vitejs/plugin-react@4.3.4(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))':
+ '@vitejs/plugin-react@4.3.4(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.3.4(vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))':
+ '@vitejs/plugin-react@4.3.4(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.1(vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))(vue@3.5.13(typescript@5.5.4))':
+ '@vitejs/plugin-vue@5.2.1(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.4))':
dependencies:
- vite: 6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
vue: 3.5.13(typescript@5.5.4)
- '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8))':
+ '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -13069,7 +13987,7 @@ snapshots:
std-env: 3.7.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ vitest: 2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
transitivePeerDependencies:
- supports-color
@@ -13141,7 +14059,7 @@ snapshots:
'@vue/shared': 3.4.38
estree-walker: 2.0.2
magic-string: 0.30.11
- postcss: 8.5.2
+ postcss: 8.5.1
source-map-js: 1.2.0
'@vue/compiler-sfc@3.5.13':
@@ -13234,9 +14152,9 @@ snapshots:
'@vue/shared@3.5.13': {}
- '@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0)':
+ '@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0)':
dependencies:
- '@vitejs/plugin-vue': 5.2.1(vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0))(vue@3.5.13(typescript@5.5.4))
+ '@vitejs/plugin-vue': 5.2.1(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0))(vue@3.5.13(typescript@5.5.4))
'@vuepress/bundlerutils': 2.0.0-rc.19(typescript@5.5.4)
'@vuepress/client': 2.0.0-rc.19(typescript@5.5.4)
'@vuepress/core': 2.0.0-rc.19(typescript@5.5.4)
@@ -13245,9 +14163,9 @@ snapshots:
autoprefixer: 10.4.20(postcss@8.4.49)
connect-history-api-fallback: 2.0.0
postcss: 8.4.49
- postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.49)(yaml@2.5.0)
- rollup: 4.34.6
- vite: 6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.4.49)(yaml@2.7.0)
+ rollup: 4.32.1
+ vite: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
vue: 3.5.13(typescript@5.5.4)
vue-router: 4.5.0(vue@3.5.13(typescript@5.5.4))
transitivePeerDependencies:
@@ -13310,22 +14228,22 @@ snapshots:
- supports-color
- typescript
- '@vuepress/helper@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/helper@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@vue/shared': 3.5.13
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
cheerio: 1.0.0
fflate: 0.8.2
gray-matter: 4.0.3
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/highlighter-helper@2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/highlighter-helper@2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
optionalDependencies:
'@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
@@ -13350,123 +14268,123 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@vuepress/plugin-active-header-links@2.0.0-rc.55(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-active-header-links@2.0.0-rc.55(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-back-to-top@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-back-to-top@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-blog@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-blog@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
chokidar: 3.6.0
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-catalog@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-catalog@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-comment@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-comment@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
giscus: 1.6.0
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-copy-code@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-copy-code@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-copyright@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-copyright@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-git@2.0.0-rc.54(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-git@2.0.0-rc.54(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
execa: 9.5.2
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
- '@vuepress/plugin-links-check@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-links-check@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-markdown-hint@2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-markdown-hint@2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@mdit/plugin-alert': 0.13.1(markdown-it@14.1.0)
'@mdit/plugin-container': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- markdown-it
- typescript
- vue
- '@vuepress/plugin-markdown-image@2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-markdown-image@2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@mdit/plugin-figure': 0.13.1(markdown-it@14.1.0)
'@mdit/plugin-img-lazyload': 0.13.1(markdown-it@14.1.0)
'@mdit/plugin-img-mark': 0.13.1(markdown-it@14.1.0)
'@mdit/plugin-img-size': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- markdown-it
- typescript
- '@vuepress/plugin-markdown-math@2.0.0-rc.56(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-markdown-math@2.0.0-rc.56(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@mdit/plugin-katex-slim': 0.13.1(katex@0.16.21)(markdown-it@14.1.0)
'@mdit/plugin-mathjax-slim': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
optionalDependencies:
katex: 0.16.21
transitivePeerDependencies:
@@ -13474,137 +14392,137 @@ snapshots:
- markdown-it
- typescript
- '@vuepress/plugin-markdown-tab@2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-markdown-tab@2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@mdit/plugin-tab': 0.13.2(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- markdown-it
- typescript
- '@vuepress/plugin-notice@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-notice@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-nprogress@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-nprogress@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-photo-swipe@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-photo-swipe@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
photoswipe: 5.4.4
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-reading-time@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-reading-time@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-redirect@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-redirect@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
cac: 6.7.14
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-register-components@2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-register-components@2.0.0-rc.66(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
chokidar: 3.6.0
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
- '@vuepress/plugin-rtl@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-rtl@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-sass-palette@2.0.0-rc.56(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-sass-palette@2.0.0-rc.56(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
chokidar: 4.0.3
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
optionalDependencies:
- sass: 1.83.1
+ sass: 1.84.0
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-seo@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-seo@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-shiki@2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-shiki@2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@shikijs/transformers': 1.26.1
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/highlighter-helper': 2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/highlighter-helper': 2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
nanoid: 5.0.9
shiki: 1.26.1
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- '@vueuse/core'
- typescript
- '@vuepress/plugin-sitemap@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-sitemap@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
sitemap: 8.0.0
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- '@vuepress/plugin-theme-data@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-theme-data@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
'@vue/devtools-api': 7.6.8
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- typescript
- '@vuepress/plugin-watermark@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
+ '@vuepress/plugin-watermark@2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))':
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
watermark-js-plus: 1.5.7
transitivePeerDependencies:
- '@vue/composition-api'
@@ -13624,7 +14542,7 @@ snapshots:
fs-extra: 11.2.0
globby: 14.0.2
hash-sum: 2.0.0
- ora: 8.2.0
+ ora: 8.1.1
picocolors: 1.1.1
upath: 2.0.1
transitivePeerDependencies:
@@ -13640,6 +14558,16 @@ snapshots:
- '@vue/composition-api'
- vue
+ '@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4))':
+ dependencies:
+ '@types/web-bluetooth': 0.0.20
+ '@vueuse/metadata': 11.3.0
+ '@vueuse/shared': 11.3.0(vue@3.5.13(typescript@5.5.4))
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.4))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
'@vueuse/metadata@11.3.0': {}
'@vueuse/shared@11.3.0(vue@3.4.38(typescript@5.5.4))':
@@ -13649,6 +14577,13 @@ snapshots:
- '@vue/composition-api'
- vue
+ '@vueuse/shared@11.3.0(vue@3.5.13(typescript@5.5.4))':
+ dependencies:
+ vue-demi: 0.14.10(vue@3.5.13(typescript@5.5.4))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
'@webcomponents/custom-elements@1.6.0': {}
abort-controller@3.0.0:
@@ -13659,6 +14594,10 @@ snapshots:
dependencies:
acorn: 8.12.1
+ acorn-jsx@5.3.2(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
+
acorn@8.12.1: {}
acorn@8.14.0: {}
@@ -13681,16 +14620,10 @@ snapshots:
ag-charts-types@11.0.3: {}
- ag-charts-types@11.0.4: {}
-
ag-grid-community@33.0.3:
dependencies:
ag-charts-types: 11.0.3
- ag-grid-community@33.0.4:
- dependencies:
- ag-charts-types: 11.0.4
-
ag-grid-enterprise@33.0.3:
dependencies:
ag-grid-community: 33.0.3
@@ -13698,12 +14631,12 @@ snapshots:
ag-charts-community: 11.0.3
ag-charts-enterprise: 11.0.3
- ag-grid-react@33.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ ag-grid-react@33.0.3(react-dom@19.0.0(react@18.3.1))(react@18.3.1):
dependencies:
- ag-grid-community: 33.0.4
+ ag-grid-community: 33.0.3
prop-types: 15.8.1
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react-dom: 19.0.0(react@18.3.1)
ajv@6.12.6:
dependencies:
@@ -13720,7 +14653,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.1.0: {}
+ ansi-regex@6.0.1: {}
ansi-styles@4.3.0:
dependencies:
@@ -13821,9 +14754,6 @@ snapshots:
async@3.2.5: {}
- atob@2.1.2:
- optional: true
-
autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
browserslist: 4.24.3
@@ -13969,6 +14899,8 @@ snapshots:
chalk@5.3.0: {}
+ chalk@5.4.1: {}
+
character-entities-html4@2.1.0: {}
character-entities-legacy@3.0.0: {}
@@ -14036,6 +14968,10 @@ snapshots:
dependencies:
restore-cursor: 3.1.0
+ cli-cursor@4.0.0:
+ dependencies:
+ restore-cursor: 4.0.0
+
cli-cursor@5.0.0:
dependencies:
restore-cursor: 5.1.0
@@ -14118,11 +15054,6 @@ snapshots:
css-color-keywords@1.0.0: {}
- css-parse@2.0.0:
- dependencies:
- css: 2.2.4
- optional: true
-
css-select@5.1.0:
dependencies:
boolbase: 1.0.0
@@ -14144,14 +15075,6 @@ snapshots:
css-what@6.1.0: {}
- css@2.2.4:
- dependencies:
- inherits: 2.0.4
- source-map: 0.6.1
- source-map-resolve: 0.5.3
- urix: 0.1.0
- optional: true
-
csstype@2.6.21: {}
csstype@3.1.3: {}
@@ -14374,11 +15297,6 @@ snapshots:
dayjs@1.11.13: {}
- debug@3.1.0:
- dependencies:
- ms: 2.0.0
- optional: true
-
debug@3.2.7:
dependencies:
ms: 2.1.3
@@ -14406,9 +15324,6 @@ snapshots:
decimal.js@10.5.0: {}
- decode-uri-component@0.2.2:
- optional: true
-
deep-eql@5.0.2: {}
deep-equal@2.2.3:
@@ -14542,7 +15457,7 @@ snapshots:
emoji-regex-xs@1.0.0: {}
- emoji-regex@10.4.0: {}
+ emoji-regex@10.3.0: {}
emoji-regex@8.0.0: {}
@@ -14678,8 +15593,6 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- es6-promise-polyfill@1.2.0: {}
-
es6-promise@3.3.1: {}
esbuild@0.21.5:
@@ -14748,15 +15661,9 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-etc@5.2.1(eslint@8.57.1)(typescript@5.5.4):
+ eslint-config-prettier@9.1.0(eslint@9.20.0(jiti@2.4.2)):
dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.5.4)
- eslint: 8.57.1
- tsutils: 3.21.0(typescript@5.5.4)
- tsutils-etc: 1.4.2(tsutils@3.21.0(typescript@5.5.4))(typescript@5.5.4)
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
+ eslint: 9.20.0(jiti@2.4.2)
eslint-etc@5.2.1(eslint@8.57.1)(typescript@5.7.3):
dependencies:
@@ -14768,6 +15675,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ eslint-etc@5.2.1(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4):
+ dependencies:
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
+ eslint: 9.20.0(jiti@2.4.2)
+ tsutils: 3.21.0(typescript@5.5.4)
+ tsutils-etc: 1.4.2(tsutils@3.21.0(typescript@5.5.4))(typescript@5.5.4)
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
eslint-formatter-rdjson@1.0.6: {}
eslint-plugin-jsx-a11y@6.9.0(eslint@8.57.1):
@@ -14790,19 +15707,52 @@ snapshots:
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.0
- eslint-plugin-prettier@5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.5.0):
+ eslint-plugin-jsx-a11y@6.9.0(eslint@9.20.0(jiti@2.4.2)):
+ dependencies:
+ aria-query: 5.1.3
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.2
+ ast-types-flow: 0.0.8
+ axe-core: 4.9.1
+ axobject-query: 3.1.1
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 9.2.2
+ es-iterator-helpers: 1.0.19
+ eslint: 9.20.0(jiti@2.4.2)
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ language-tags: 1.0.9
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ safe-regex-test: 1.0.3
+ string.prototype.includes: 2.0.0
+
+ eslint-plugin-prettier@5.2.3(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2):
dependencies:
eslint: 8.57.1
- prettier: 3.5.0
+ prettier: 3.4.2
prettier-linter-helpers: 1.0.0
synckit: 0.9.2
optionalDependencies:
eslint-config-prettier: 9.1.0(eslint@8.57.1)
+ eslint-plugin-prettier@5.2.3(eslint-config-prettier@9.1.0(eslint@9.20.0(jiti@2.4.2)))(eslint@9.20.0(jiti@2.4.2))(prettier@3.5.0):
+ dependencies:
+ eslint: 9.20.0(jiti@2.4.2)
+ prettier: 3.5.0
+ prettier-linter-helpers: 1.0.0
+ synckit: 0.9.2
+ optionalDependencies:
+ eslint-config-prettier: 9.1.0(eslint@9.20.0(jiti@2.4.2))
+
eslint-plugin-react-hooks@4.6.2(eslint@8.57.1):
dependencies:
eslint: 8.57.1
+ eslint-plugin-react-hooks@4.6.2(eslint@9.20.0(jiti@2.4.2)):
+ dependencies:
+ eslint: 9.20.0(jiti@2.4.2)
+
eslint-plugin-react@7.35.0(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
@@ -14825,35 +15775,57 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-rxjs@5.0.3(eslint@8.57.1)(typescript@5.5.4):
+ eslint-plugin-react@7.35.0(eslint@9.20.0(jiti@2.4.2)):
+ dependencies:
+ array-includes: 3.1.8
+ array.prototype.findlast: 1.2.5
+ array.prototype.flatmap: 1.3.2
+ array.prototype.tosorted: 1.1.4
+ doctrine: 2.1.0
+ es-iterator-helpers: 1.0.19
+ eslint: 9.20.0(jiti@2.4.2)
+ estraverse: 5.3.0
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ object.fromentries: 2.0.8
+ object.values: 1.2.0
+ prop-types: 15.8.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ string.prototype.matchall: 4.0.11
+ string.prototype.repeat: 1.0.0
+
+ eslint-plugin-rxjs@5.0.3(eslint@8.57.1)(typescript@5.7.3):
dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.5.4)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.7.3)
common-tags: 1.8.2
decamelize: 5.0.1
eslint: 8.57.1
- eslint-etc: 5.2.1(eslint@8.57.1)(typescript@5.5.4)
+ eslint-etc: 5.2.1(eslint@8.57.1)(typescript@5.7.3)
requireindex: 1.2.0
rxjs-report-usage: 1.0.6
tslib: 2.8.1
- tsutils: 3.21.0(typescript@5.5.4)
- tsutils-etc: 1.4.2(tsutils@3.21.0(typescript@5.5.4))(typescript@5.5.4)
- typescript: 5.5.4
+ tsutils: 3.21.0(typescript@5.7.3)
+ tsutils-etc: 1.4.2(tsutils@3.21.0(typescript@5.7.3))(typescript@5.7.3)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- eslint-plugin-rxjs@5.0.3(eslint@8.57.1)(typescript@5.7.3):
+ eslint-plugin-rxjs@5.0.3(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.7.3)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
common-tags: 1.8.2
decamelize: 5.0.1
- eslint: 8.57.1
- eslint-etc: 5.2.1(eslint@8.57.1)(typescript@5.7.3)
+ eslint: 9.20.0(jiti@2.4.2)
+ eslint-etc: 5.2.1(eslint@9.20.0(jiti@2.4.2))(typescript@5.5.4)
requireindex: 1.2.0
rxjs-report-usage: 1.0.6
tslib: 2.8.1
- tsutils: 3.21.0(typescript@5.7.3)
- tsutils-etc: 1.4.2(tsutils@3.21.0(typescript@5.7.3))(typescript@5.7.3)
- typescript: 5.7.3
+ tsutils: 3.21.0(typescript@5.5.4)
+ tsutils-etc: 1.4.2(tsutils@3.21.0(typescript@5.5.4))(typescript@5.5.4)
+ typescript: 5.5.4
transitivePeerDependencies:
- supports-color
@@ -14863,6 +15835,12 @@ snapshots:
eslint: 8.57.1
eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.1)
+ eslint-plugin-styled-components-a11y@2.1.35(eslint@9.20.0(jiti@2.4.2)):
+ dependencies:
+ '@babel/parser': 7.25.4
+ eslint: 9.20.0(jiti@2.4.2)
+ eslint-plugin-jsx-a11y: 6.9.0(eslint@9.20.0(jiti@2.4.2))
+
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
@@ -14873,8 +15851,15 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
+ eslint-scope@8.2.0:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
eslint-visitor-keys@3.4.3: {}
+ eslint-visitor-keys@4.2.0: {}
+
eslint@8.57.1:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
@@ -14918,6 +15903,53 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ eslint@9.20.0(jiti@2.4.2):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.20.0(jiti@2.4.2))
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.19.2
+ '@eslint/core': 0.11.0
+ '@eslint/eslintrc': 3.2.0
+ '@eslint/js': 9.20.0
+ '@eslint/plugin-kit': 0.2.5
+ '@humanfs/node': 0.16.6
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.4.1
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ debug: 4.4.0
+ escape-string-regexp: 4.0.0
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ esquery: 1.6.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 8.0.0
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ ignore: 5.3.2
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ json-stable-stringify-without-jsonify: 1.0.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ optionalDependencies:
+ jiti: 2.4.2
+ transitivePeerDependencies:
+ - supports-color
+
+ espree@10.3.0:
+ dependencies:
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.2.0
+
espree@9.6.1:
dependencies:
acorn: 8.12.1
@@ -14948,7 +15980,7 @@ snapshots:
event-target-shim@5.0.1: {}
- eventemitter3@3.1.2: {}
+ eventemitter3@4.0.7: {}
eventsource@2.0.2: {}
@@ -15047,6 +16079,10 @@ snapshots:
dependencies:
flat-cache: 3.2.0
+ file-entry-cache@8.0.0:
+ dependencies:
+ flat-cache: 4.0.1
+
filelist@1.0.4:
dependencies:
minimatch: 5.1.6
@@ -15083,8 +16119,15 @@ snapshots:
keyv: 4.5.4
rimraf: 3.0.2
+ flat-cache@4.0.1:
+ dependencies:
+ flatted: 3.3.2
+ keyv: 4.5.4
+
flatted@3.3.1: {}
+ flatted@3.3.2: {}
+
for-each@0.3.3:
dependencies:
is-callable: 1.2.7
@@ -15150,7 +16193,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.0: {}
+ get-east-asian-width@1.2.0: {}
get-func-name@2.0.2: {}
@@ -15243,6 +16286,8 @@ snapshots:
dependencies:
type-fest: 0.20.2
+ globals@14.0.0: {}
+
globals@15.14.0: {}
globalthis@1.0.4:
@@ -15289,7 +16334,7 @@ snapshots:
hachure-fill@0.5.2: {}
- happy-dom@17.0.3:
+ happy-dom@17.0.4:
dependencies:
webidl-conversions: 7.0.0
whatwg-mimetype: 3.0.0
@@ -15410,6 +16455,11 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
+ import-fresh@3.3.1:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+
imurmurhash@0.1.4: {}
indent-string@4.0.0: {}
@@ -15595,6 +16645,8 @@ snapshots:
is-unicode-supported@1.3.0: {}
+ is-unicode-supported@2.0.0: {}
+
is-unicode-supported@2.1.0: {}
is-weakmap@2.0.2: {}
@@ -15670,7 +16722,7 @@ snapshots:
filelist: 1.0.4
minimatch: 3.1.2
- jiti@1.21.6:
+ jiti@2.4.2:
optional: true
js-tokens@4.0.0: {}
@@ -15926,7 +16978,7 @@ snapshots:
log-symbols@6.0.0:
dependencies:
- chalk: 5.3.0
+ chalk: 5.4.1
is-unicode-supported: 1.3.0
loose-envify@1.4.0:
@@ -15967,7 +17019,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.7.1
+ semver: 7.7.0
map-obj@1.0.1: {}
@@ -16093,8 +17145,6 @@ snapshots:
min-indent@1.0.1: {}
- mini-signals@1.2.0: {}
-
minimatch@10.0.1:
dependencies:
brace-expansion: 2.0.1
@@ -16127,9 +17177,6 @@ snapshots:
dependencies:
minimist: 1.2.8
- mkdirp@1.0.4:
- optional: true
-
mlly@1.7.4:
dependencies:
acorn: 8.14.0
@@ -16139,9 +17186,6 @@ snapshots:
mri@1.2.0: {}
- ms@2.0.0:
- optional: true
-
ms@2.1.2: {}
ms@2.1.3: {}
@@ -16182,13 +17226,13 @@ snapshots:
dependencies:
hosted-git-info: 4.1.0
is-core-module: 2.15.0
- semver: 7.7.1
+ semver: 7.7.0
validate-npm-package-license: 3.0.4
normalize-package-data@6.0.2:
dependencies:
hosted-git-info: 7.0.2
- semver: 7.7.1
+ semver: 7.7.0
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -16305,9 +17349,21 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@8.2.0:
+ ora@8.0.1:
+ dependencies:
+ chalk: 5.4.1
+ cli-cursor: 4.0.0
+ cli-spinners: 2.9.2
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.0.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+
+ ora@8.1.1:
dependencies:
- chalk: 5.3.0
+ chalk: 5.4.1
cli-cursor: 5.0.0
cli-spinners: 2.9.2
is-interactive: 2.0.0
@@ -16382,8 +17438,6 @@ snapshots:
parse-ms@4.0.0: {}
- parse-uri@1.0.9: {}
-
parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
@@ -16447,56 +17501,64 @@ snapshots:
pify@4.0.1: {}
- pixi.js-legacy@5.3.12:
- dependencies:
- '@pixi/canvas-display': 5.3.12
- '@pixi/canvas-extract': 5.3.12
- '@pixi/canvas-graphics': 5.3.12
- '@pixi/canvas-mesh': 5.3.12
- '@pixi/canvas-particles': 5.3.12
- '@pixi/canvas-prepare': 5.3.12
- '@pixi/canvas-renderer': 5.3.12
- '@pixi/canvas-sprite': 5.3.12
- '@pixi/canvas-sprite-tiling': 5.3.12
- '@pixi/canvas-text': 5.3.12
- pixi.js: 5.3.12
-
- pixi.js@5.3.12:
- dependencies:
- '@pixi/accessibility': 5.3.12
- '@pixi/app': 5.3.12
- '@pixi/constants': 5.3.12
- '@pixi/core': 5.3.12
- '@pixi/display': 5.3.12
- '@pixi/extract': 5.3.12
- '@pixi/filter-alpha': 5.3.12
- '@pixi/filter-blur': 5.3.12
- '@pixi/filter-color-matrix': 5.3.12
- '@pixi/filter-displacement': 5.3.12
- '@pixi/filter-fxaa': 5.3.12
- '@pixi/filter-noise': 5.3.12
- '@pixi/graphics': 5.3.12
- '@pixi/interaction': 5.3.12
- '@pixi/loaders': 5.3.12
- '@pixi/math': 5.3.12
- '@pixi/mesh': 5.3.12
- '@pixi/mesh-extras': 5.3.12
- '@pixi/mixin-cache-as-bitmap': 5.3.12
- '@pixi/mixin-get-child-by-name': 5.3.12
- '@pixi/mixin-get-global-position': 5.3.12
- '@pixi/particles': 5.3.12
- '@pixi/polyfill': 5.3.12
- '@pixi/prepare': 5.3.12
- '@pixi/runner': 5.3.12
- '@pixi/settings': 5.3.12
- '@pixi/sprite': 5.3.12
- '@pixi/sprite-animated': 5.3.12
- '@pixi/sprite-tiling': 5.3.12
- '@pixi/spritesheet': 5.3.12
- '@pixi/text': 5.3.12
- '@pixi/text-bitmap': 5.3.12
- '@pixi/ticker': 5.3.12
- '@pixi/utils': 5.3.12
+ ? pixi.js-legacy@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/extract@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))(@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ : dependencies:
+ '@pixi/canvas-display': 7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/canvas-extract': 7.4.2(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/extract@7.4.2(@pixi/core@7.4.2))
+ '@pixi/canvas-graphics': 7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ '@pixi/canvas-mesh': 7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/mesh-extras@7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/canvas-particle-container': 7.4.2(@pixi/particle-container@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ '@pixi/canvas-prepare': 7.4.2(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/prepare@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))))
+ '@pixi/canvas-renderer': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/canvas-sprite': 7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/canvas-sprite-tiling': 7.4.2(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/canvas-sprite@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/core@7.4.2)(@pixi/sprite-tiling@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ '@pixi/canvas-text': 7.4.2(@pixi/canvas-sprite@7.4.2(@pixi/canvas-display@7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/canvas-renderer@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ pixi.js: 7.4.2
+ transitivePeerDependencies:
+ - '@pixi/core'
+ - '@pixi/display'
+ - '@pixi/extract'
+ - '@pixi/graphics'
+ - '@pixi/mesh'
+ - '@pixi/mesh-extras'
+ - '@pixi/particle-container'
+ - '@pixi/prepare'
+ - '@pixi/sprite'
+ - '@pixi/sprite-tiling'
+ - '@pixi/text'
+
+ pixi.js@7.4.2:
+ dependencies:
+ '@pixi/accessibility': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/events@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/app': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/assets': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/compressed-textures': 7.4.2(@pixi/assets@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)
+ '@pixi/core': 7.4.2
+ '@pixi/display': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/events': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/extensions': 7.4.2
+ '@pixi/extract': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/filter-alpha': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/filter-blur': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/filter-color-matrix': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/filter-displacement': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/filter-fxaa': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/filter-noise': 7.4.2(@pixi/core@7.4.2)
+ '@pixi/graphics': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/mesh': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/mesh-extras': 7.4.2(@pixi/core@7.4.2)(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/mixin-cache-as-bitmap': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/mixin-get-child-by-name': 7.4.2(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/mixin-get-global-position': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/particle-container': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/prepare': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/graphics@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ '@pixi/sprite': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))
+ '@pixi/sprite-animated': 7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/sprite-tiling': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/spritesheet': 7.4.2(@pixi/assets@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)
+ '@pixi/text': 7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))
+ '@pixi/text-bitmap': 7.4.2(@pixi/assets@7.4.2(@pixi/core@7.4.2))(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/mesh@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
+ '@pixi/text-html': 7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2)))(@pixi/text@7.4.2(@pixi/core@7.4.2)(@pixi/sprite@7.4.2(@pixi/core@7.4.2)(@pixi/display@7.4.2(@pixi/core@7.4.2))))
pkg-types@1.3.1:
dependencies:
@@ -16523,29 +17585,29 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.49)(yaml@2.5.0):
+ postcss-load-config@6.0.1(jiti@2.4.2)(postcss@8.4.49)(yaml@2.7.0):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
- jiti: 1.21.6
+ jiti: 2.4.2
postcss: 8.4.49
- yaml: 2.5.0
+ yaml: 2.7.0
postcss-value-parser@4.2.0: {}
- postcss@8.4.49:
+ postcss@8.4.38:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.1:
+ postcss@8.4.49:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.2:
+ postcss@8.5.1:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
@@ -16579,6 +17641,8 @@ snapshots:
prettier@2.8.8: {}
+ prettier@3.4.2: {}
+
prettier@3.5.0: {}
pretty-bytes@6.1.1: {}
@@ -16745,6 +17809,50 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-aria@3.37.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@internationalized/string': 3.2.5
+ '@react-aria/breadcrumbs': 3.5.20(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/button': 3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/calendar': 3.7.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/checkbox': 3.15.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/color': 3.0.3(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/combobox': 3.11.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/datepicker': 3.13.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/dialog': 3.5.21(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/disclosure': 3.0.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/dnd': 3.8.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/gridlist': 3.10.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/label': 3.7.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/link': 3.7.8(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/listbox': 3.14.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/menu': 3.17.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/meter': 3.4.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/numberfield': 3.11.10(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/progress': 3.4.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/radio': 3.10.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/searchfield': 3.8.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/select': 3.15.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/separator': 3.4.5(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/slider': 3.7.15(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/ssr': 3.9.7(react@18.3.1)
+ '@react-aria/switch': 3.6.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/table': 3.16.1(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/tabs': 3.9.9(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/tag': 3.4.9(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/tooltip': 3.7.11(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@18.3.1))(react@18.3.1)
+ '@react-types/shared': 3.27.0(react@18.3.1)
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+
react-dom@18.2.0(react@18.3.1):
dependencies:
loose-envify: 1.4.0
@@ -16757,6 +17865,11 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
+ react-dom@19.0.0(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ scheduler: 0.25.0
+
react-is@16.13.1: {}
react-is@17.0.2: {}
@@ -16957,9 +18070,6 @@ snapshots:
resolve-pathname@3.0.0: {}
- resolve-url@0.2.1:
- optional: true
-
resolve@1.22.8:
dependencies:
is-core-module: 2.15.0
@@ -16972,12 +18082,12 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resource-loader@3.0.1:
+ restore-cursor@3.1.0:
dependencies:
- mini-signals: 1.2.0
- parse-uri: 1.0.9
+ onetime: 5.1.2
+ signal-exit: 3.0.7
- restore-cursor@3.1.0:
+ restore-cursor@4.0.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
@@ -17027,29 +18137,29 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.32.0
fsevents: 2.3.3
- rollup@4.34.6:
+ rollup@4.32.1:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.34.6
- '@rollup/rollup-android-arm64': 4.34.6
- '@rollup/rollup-darwin-arm64': 4.34.6
- '@rollup/rollup-darwin-x64': 4.34.6
- '@rollup/rollup-freebsd-arm64': 4.34.6
- '@rollup/rollup-freebsd-x64': 4.34.6
- '@rollup/rollup-linux-arm-gnueabihf': 4.34.6
- '@rollup/rollup-linux-arm-musleabihf': 4.34.6
- '@rollup/rollup-linux-arm64-gnu': 4.34.6
- '@rollup/rollup-linux-arm64-musl': 4.34.6
- '@rollup/rollup-linux-loongarch64-gnu': 4.34.6
- '@rollup/rollup-linux-powerpc64le-gnu': 4.34.6
- '@rollup/rollup-linux-riscv64-gnu': 4.34.6
- '@rollup/rollup-linux-s390x-gnu': 4.34.6
- '@rollup/rollup-linux-x64-gnu': 4.34.6
- '@rollup/rollup-linux-x64-musl': 4.34.6
- '@rollup/rollup-win32-arm64-msvc': 4.34.6
- '@rollup/rollup-win32-ia32-msvc': 4.34.6
- '@rollup/rollup-win32-x64-msvc': 4.34.6
+ '@rollup/rollup-android-arm-eabi': 4.32.1
+ '@rollup/rollup-android-arm64': 4.32.1
+ '@rollup/rollup-darwin-arm64': 4.32.1
+ '@rollup/rollup-darwin-x64': 4.32.1
+ '@rollup/rollup-freebsd-arm64': 4.32.1
+ '@rollup/rollup-freebsd-x64': 4.32.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.32.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.32.1
+ '@rollup/rollup-linux-arm64-gnu': 4.32.1
+ '@rollup/rollup-linux-arm64-musl': 4.32.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.32.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.32.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.32.1
+ '@rollup/rollup-linux-s390x-gnu': 4.32.1
+ '@rollup/rollup-linux-x64-gnu': 4.32.1
+ '@rollup/rollup-linux-x64-musl': 4.32.1
+ '@rollup/rollup-win32-arm64-msvc': 4.32.1
+ '@rollup/rollup-win32-ia32-msvc': 4.32.1
+ '@rollup/rollup-win32-x64-msvc': 4.32.1
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -17108,7 +18218,7 @@ snapshots:
safer-buffer@2.1.2: {}
- sass@1.83.1:
+ sass@1.84.0:
dependencies:
chokidar: 4.0.3
immutable: 5.0.3
@@ -17117,15 +18227,14 @@ snapshots:
'@parcel/watcher': 2.5.1
optional: true
- sax@1.2.4:
- optional: true
-
sax@1.4.1: {}
scheduler@0.23.2:
dependencies:
loose-envify: 1.4.0
+ scheduler@0.25.0: {}
+
section-matter@1.0.0:
dependencies:
extend-shallow: 2.0.1
@@ -17137,7 +18246,7 @@ snapshots:
semver@6.3.1: {}
- semver@7.7.1: {}
+ semver@7.7.0: {}
set-blocking@2.0.0: {}
@@ -17236,23 +18345,11 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-resolve@0.5.3:
- dependencies:
- atob: 2.1.2
- decode-uri-component: 0.2.2
- resolve-url: 0.2.1
- source-map-url: 0.4.1
- urix: 0.1.0
- optional: true
-
source-map-support@0.5.21:
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- source-map-url@0.4.1:
- optional: true
-
source-map@0.6.1: {}
source-map@0.7.4: {}
@@ -17308,8 +18405,8 @@ snapshots:
string-width@7.2.0:
dependencies:
- emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
+ emoji-regex: 10.3.0
+ get-east-asian-width: 1.2.0
strip-ansi: 7.1.0
string.prototype.includes@2.0.0:
@@ -17371,7 +18468,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.1.0
+ ansi-regex: 6.0.1
strip-bom-string@1.0.0: {}
@@ -17387,6 +18484,34 @@ snapshots:
strip-json-comments@3.1.1: {}
+ styled-components@6.1.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/unitless': 0.8.1
+ '@types/stylis': 4.2.5
+ css-to-react-native: 3.2.0
+ csstype: 3.1.3
+ postcss: 8.4.38
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ shallowequal: 1.1.0
+ stylis: 4.3.2
+ tslib: 2.6.2
+
+ styled-components@6.1.14(react-dom@19.0.0(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/unitless': 0.8.1
+ '@types/stylis': 4.2.5
+ css-to-react-native: 3.2.0
+ csstype: 3.1.3
+ postcss: 8.4.38
+ react: 18.3.1
+ react-dom: 19.0.0(react@18.3.1)
+ shallowequal: 1.1.0
+ stylis: 4.3.2
+ tslib: 2.6.2
+
styled-components@6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@emotion/is-prop-valid': 1.2.2
@@ -17405,15 +18530,12 @@ snapshots:
stylis@4.3.5: {}
- stylus@0.54.8:
+ stylus@0.64.0:
dependencies:
- css-parse: 2.0.0
- debug: 3.1.0
- glob: 7.2.3
- mkdirp: 1.0.4
- safer-buffer: 2.1.2
- sax: 1.2.4
- semver: 6.3.1
+ '@adobe/css-tools': 4.3.3
+ debug: 4.4.0
+ glob: 10.4.5
+ sax: 1.4.1
source-map: 0.7.4
transitivePeerDependencies:
- supports-color
@@ -17544,32 +18666,32 @@ snapshots:
tunnel@0.0.6: {}
- turbo-darwin-64@2.4.1:
+ turbo-darwin-64@2.3.4:
optional: true
- turbo-darwin-arm64@2.4.1:
+ turbo-darwin-arm64@2.3.4:
optional: true
- turbo-linux-64@2.4.1:
+ turbo-linux-64@2.3.4:
optional: true
- turbo-linux-arm64@2.4.1:
+ turbo-linux-arm64@2.3.4:
optional: true
- turbo-windows-64@2.4.1:
+ turbo-windows-64@2.3.4:
optional: true
- turbo-windows-arm64@2.4.1:
+ turbo-windows-arm64@2.3.4:
optional: true
- turbo@2.4.1:
+ turbo@2.3.4:
optionalDependencies:
- turbo-darwin-64: 2.4.1
- turbo-darwin-arm64: 2.4.1
- turbo-linux-64: 2.4.1
- turbo-linux-arm64: 2.4.1
- turbo-windows-64: 2.4.1
- turbo-windows-arm64: 2.4.1
+ turbo-darwin-64: 2.3.4
+ turbo-darwin-arm64: 2.3.4
+ turbo-linux-64: 2.3.4
+ turbo-linux-arm64: 2.3.4
+ turbo-windows-64: 2.3.4
+ turbo-windows-arm64: 2.3.4
type-check@0.4.0:
dependencies:
@@ -17701,9 +18823,6 @@ snapshots:
dependencies:
punycode: 2.3.1
- urix@0.1.0:
- optional: true
-
url-parse@1.5.10:
dependencies:
querystringify: 2.2.0
@@ -17758,13 +18877,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@2.0.5(@types/node@20.14.12)(sass@1.83.1)(stylus@0.54.8):
+ vite-node@2.0.5(@types/node@20.14.12)(sass@1.84.0)(stylus@0.64.0):
dependencies:
cac: 6.7.14
debug: 4.4.0
pathe: 1.1.2
tinyrainbow: 1.2.0
- vite: 5.4.14(@types/node@20.14.12)(sass@1.83.1)(stylus@0.54.8)
+ vite: 5.4.14(@types/node@20.14.12)(sass@1.84.0)(stylus@0.64.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -17776,13 +18895,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.0.5(@types/node@22.10.10)(sass@1.83.1)(stylus@0.54.8):
+ vite-node@2.0.5(@types/node@22.13.1)(sass@1.84.0)(stylus@0.64.0):
dependencies:
cac: 6.7.14
debug: 4.4.0
pathe: 1.1.2
tinyrainbow: 1.2.0
- vite: 5.4.14(@types/node@22.10.10)(sass@1.83.1)(stylus@0.54.8)
+ vite: 5.4.14(@types/node@22.13.1)(sass@1.84.0)(stylus@0.64.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -17794,84 +18913,84 @@ snapshots:
- supports-color
- terser
- vite-plugin-environment@1.1.3(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)):
+ vite-plugin-environment@1.1.3(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)):
dependencies:
- vite: 6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
- vite-plugin-environment@1.1.3(vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)):
+ vite-plugin-environment@1.1.3(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)):
dependencies:
- vite: 6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
- vite-plugin-restart@0.4.2(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)):
+ vite-plugin-restart@0.4.2(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)):
dependencies:
micromatch: 4.0.8
- vite: 6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
- vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)):
+ vite-tsconfig-paths@4.3.2(typescript@5.5.4)(vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)):
dependencies:
debug: 4.3.5
globrex: 0.1.2
tsconfck: 3.1.1(typescript@5.5.4)
optionalDependencies:
- vite: 6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0)
+ vite: 6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.4.14(@types/node@20.14.12)(sass@1.83.1)(stylus@0.54.8):
+ vite@5.4.14(@types/node@20.14.12)(sass@1.84.0)(stylus@0.64.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.5.2
- rollup: 4.34.6
+ postcss: 8.5.1
+ rollup: 4.32.1
optionalDependencies:
'@types/node': 20.14.12
fsevents: 2.3.3
- sass: 1.83.1
- stylus: 0.54.8
+ sass: 1.84.0
+ stylus: 0.64.0
- vite@5.4.14(@types/node@22.10.10)(sass@1.83.1)(stylus@0.54.8):
+ vite@5.4.14(@types/node@22.13.1)(sass@1.84.0)(stylus@0.64.0):
dependencies:
esbuild: 0.21.5
- postcss: 8.5.2
- rollup: 4.34.6
+ postcss: 8.5.1
+ rollup: 4.32.1
optionalDependencies:
- '@types/node': 22.10.10
+ '@types/node': 22.13.1
fsevents: 2.3.3
- sass: 1.83.1
- stylus: 0.54.8
+ sass: 1.84.0
+ stylus: 0.64.0
- vite@6.0.11(@types/node@20.14.12)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0):
+ vite@6.0.11(@types/node@20.14.12)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0):
dependencies:
esbuild: 0.24.2
- postcss: 8.4.49
+ postcss: 8.5.1
rollup: 4.32.0
optionalDependencies:
'@types/node': 20.14.12
fsevents: 2.3.3
- jiti: 1.21.6
- sass: 1.83.1
- stylus: 0.54.8
- yaml: 2.5.0
+ jiti: 2.4.2
+ sass: 1.84.0
+ stylus: 0.64.0
+ yaml: 2.7.0
- vite@6.0.11(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(yaml@2.5.0):
+ vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(yaml@2.7.0):
dependencies:
esbuild: 0.24.2
postcss: 8.5.1
rollup: 4.32.0
optionalDependencies:
- '@types/node': 22.10.10
+ '@types/node': 22.13.1
fsevents: 2.3.3
- jiti: 1.21.6
- sass: 1.83.1
- stylus: 0.54.8
- yaml: 2.5.0
+ jiti: 2.4.2
+ sass: 1.84.0
+ stylus: 0.64.0
+ yaml: 2.7.0
- vitest-github-actions-reporter@0.11.1(vitest@2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)):
+ vitest-github-actions-reporter@0.11.1(vitest@2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)):
dependencies:
'@actions/core': 1.10.1
- vitest: 2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8)
+ vitest: 2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0)
- vitest@2.0.5(@types/node@20.14.12)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8):
+ vitest@2.0.5(@types/node@20.14.12)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0):
dependencies:
'@ampproject/remapping': 2.3.0
'@vitest/expect': 2.0.5
@@ -17889,12 +19008,12 @@ snapshots:
tinybench: 2.9.0
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.4.14(@types/node@20.14.12)(sass@1.83.1)(stylus@0.54.8)
- vite-node: 2.0.5(@types/node@20.14.12)(sass@1.83.1)(stylus@0.54.8)
+ vite: 5.4.14(@types/node@20.14.12)(sass@1.84.0)(stylus@0.64.0)
+ vite-node: 2.0.5(@types/node@20.14.12)(sass@1.84.0)(stylus@0.64.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 20.14.12
- happy-dom: 17.0.3
+ happy-dom: 17.0.4
transitivePeerDependencies:
- less
- lightningcss
@@ -17905,7 +19024,7 @@ snapshots:
- supports-color
- terser
- vitest@2.0.5(@types/node@22.10.10)(happy-dom@17.0.3)(sass@1.83.1)(stylus@0.54.8):
+ vitest@2.0.5(@types/node@22.13.1)(happy-dom@17.0.4)(sass@1.84.0)(stylus@0.64.0):
dependencies:
'@ampproject/remapping': 2.3.0
'@vitest/expect': 2.0.5
@@ -17923,12 +19042,12 @@ snapshots:
tinybench: 2.9.0
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.4.14(@types/node@22.10.10)(sass@1.83.1)(stylus@0.54.8)
- vite-node: 2.0.5(@types/node@22.10.10)(sass@1.83.1)(stylus@0.54.8)
+ vite: 5.4.14(@types/node@22.13.1)(sass@1.84.0)(stylus@0.64.0)
+ vite-node: 2.0.5(@types/node@22.13.1)(sass@1.84.0)(stylus@0.64.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.10.10
- happy-dom: 17.0.3
+ '@types/node': 22.13.1
+ happy-dom: 17.0.4
transitivePeerDependencies:
- less
- lightningcss
@@ -17960,6 +19079,10 @@ snapshots:
dependencies:
vue: 3.4.38(typescript@5.5.4)
+ vue-demi@0.14.10(vue@3.5.13(typescript@5.5.4)):
+ dependencies:
+ vue: 3.5.13(typescript@5.5.4)
+
vue-router@4.5.0(vue@3.5.13(typescript@5.5.4)):
dependencies:
'@vue/devtools-api': 6.6.4
@@ -17985,25 +19108,25 @@ snapshots:
optionalDependencies:
typescript: 5.5.4
- vuepress-plugin-components@2.0.0-rc.59(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
+ vuepress-plugin-components@2.0.0-rc.59(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
dependencies:
'@stackblitz/sdk': 1.11.0
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
balloon-css: 1.2.0
create-codepen: 2.0.0
qrcode: 1.5.4
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
- vuepress-shared: 2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress-shared: 2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
optionalDependencies:
- sass: 1.83.1
+ sass: 1.84.0
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- vuepress-plugin-md-enhance@2.0.0-rc.59(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
+ vuepress-plugin-md-enhance@2.0.0-rc.59(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
dependencies:
'@mdit/plugin-alert': 0.13.1(markdown-it@14.1.0)
'@mdit/plugin-align': 0.13.1(markdown-it@14.1.0)
@@ -18021,72 +19144,72 @@ snapshots:
'@mdit/plugin-tasklist': 0.13.1(markdown-it@14.1.0)
'@mdit/plugin-uml': 0.13.1(markdown-it@14.1.0)
'@types/markdown-it': 14.1.2
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
balloon-css: 1.2.0
js-yaml: 4.1.0
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
- vuepress-shared: 2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress-shared: 2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
optionalDependencies:
mermaid: 11.4.1
- sass: 1.83.1
+ sass: 1.84.0
transitivePeerDependencies:
- '@vue/composition-api'
- markdown-it
- typescript
- vuepress-shared@2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
+ vuepress-shared@2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.5.4))
dayjs: 1.11.13
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
transitivePeerDependencies:
- '@vue/composition-api'
- typescript
- vuepress-theme-hope@2.0.0-rc.59(katex@0.16.21)(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
- dependencies:
- '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-active-header-links': 2.0.0-rc.55(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-back-to-top': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-blog': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-catalog': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-comment': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-copy-code': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-copyright': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-git': 2.0.0-rc.54(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-links-check': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-markdown-hint': 2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-markdown-image': 2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-markdown-math': 2.0.0-rc.56(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-markdown-tab': 2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-notice': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-nprogress': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-photo-swipe': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-reading-time': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-redirect': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-rtl': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-seo': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-shiki': 2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-sitemap': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-theme-data': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- '@vuepress/plugin-watermark': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress-theme-hope@2.0.0-rc.59(katex@0.16.21)(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))):
+ dependencies:
+ '@vuepress/helper': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-active-header-links': 2.0.0-rc.55(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-back-to-top': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-blog': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-catalog': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-comment': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-copy-code': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-copyright': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-git': 2.0.0-rc.54(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-links-check': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-markdown-hint': 2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vue@3.5.13(typescript@5.5.4))(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-markdown-image': 2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-markdown-math': 2.0.0-rc.56(katex@0.16.21)(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-markdown-tab': 2.0.0-rc.56(markdown-it@14.1.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-notice': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-nprogress': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-photo-swipe': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-reading-time': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-redirect': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-rtl': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-sass-palette': 2.0.0-rc.56(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-seo': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-shiki': 2.0.0-rc.56(@vueuse/core@11.3.0(vue@3.5.13(typescript@5.5.4)))(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-sitemap': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-theme-data': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ '@vuepress/plugin-watermark': 2.0.0-rc.56(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
'@vueuse/core': 11.3.0(vue@3.4.38(typescript@5.5.4))
balloon-css: 1.2.0
bcrypt-ts: 5.0.3
chokidar: 3.6.0
vue: 3.5.13(typescript@5.5.4)
- vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
- vuepress-plugin-components: 2.0.0-rc.59(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- vuepress-plugin-md-enhance: 2.0.0-rc.59(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.83.1)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
- vuepress-shared: 2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress: 2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4))
+ vuepress-plugin-components: 2.0.0-rc.59(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress-plugin-md-enhance: 2.0.0-rc.59(markdown-it@14.1.0)(mermaid@11.4.1)(sass@1.84.0)(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
+ vuepress-shared: 2.0.0-rc.59(typescript@5.5.4)(vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)))
optionalDependencies:
- sass: 1.83.1
+ sass: 1.84.0
transitivePeerDependencies:
- '@vue/composition-api'
- '@vue/repl'
@@ -18112,7 +19235,7 @@ snapshots:
- typescript
- vidstack
- vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)):
+ vuepress@2.0.0-rc.19(@vuepress/bundler-vite@2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0))(typescript@5.5.4)(vue@3.4.38(typescript@5.5.4)):
dependencies:
'@vuepress/cli': 2.0.0-rc.19(typescript@5.5.4)
'@vuepress/client': 2.0.0-rc.19(typescript@5.5.4)
@@ -18122,7 +19245,7 @@ snapshots:
'@vuepress/utils': 2.0.0-rc.19
vue: 3.4.38(typescript@5.5.4)
optionalDependencies:
- '@vuepress/bundler-vite': 2.0.0-rc.19(@types/node@22.10.10)(jiti@1.21.6)(sass@1.83.1)(stylus@0.54.8)(typescript@5.5.4)(yaml@2.5.0)
+ '@vuepress/bundler-vite': 2.0.0-rc.19(@types/node@22.13.1)(jiti@2.4.2)(sass@1.84.0)(stylus@0.64.0)(typescript@5.5.4)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -18241,7 +19364,7 @@ snapshots:
yallist@4.0.0: {}
- yaml@2.5.0:
+ yaml@2.7.0:
optional: true
yargs-parser@18.1.3: