diff --git a/.circleci/config.yml b/.circleci/config.yml
index 17c10dc3..70b2136e 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -40,7 +40,7 @@ jobs:
# Orchestrate jobs using workflows
# See: https://circleci.com/docs/configuration-reference/#workflows
workflows:
- devcontainer-publish-1.6.1:
+ devcontainer-publish-1.9.0b0:
jobs:
- devcontainer-publish:
filters:
@@ -48,4 +48,4 @@ workflows:
only:
- main
platform: linux/amd64
- tag: 1.6.1
+ tag: 1.9.0b0
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 568ac14d..57f39331 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
node-version: ['18', '20']
- python-version: ['3.8']
+ python-version: ['3.10']
ci-python:
name: 'CI: Python'
@@ -32,4 +32,4 @@ jobs:
fail-fast: false
matrix:
node-version: ['18']
- python-version: ['3.8']
+ python-version: ['3.10']
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2c14fa45..583ca576 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -39,7 +39,7 @@ jobs:
with:
node-version: '18'
- python-version: '3.8'
+ python-version: '3.10'
permissions:
contents: write
diff --git a/.npmrc b/.npmrc
index 33e4ba57..79f9c576 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1,4 +1,5 @@
registry=https://registry.npmmirror.com
+disturl=https://npmmirror.com/mirrors/node
# PNPM
strict-peer-dependencies=false
diff --git a/.prettierignore b/.prettierignore
index 04a3d280..622402d4 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -29,3 +29,6 @@ pnpm-lock.yaml
# template
**/template
+
+# JSON
+**/*.json
diff --git a/README.md b/README.md
index d4d1dc42..4a85fc98 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,17 @@
-## 介绍
+
+SecretNote
+
-SecretNote 是专为隐语开发者打造的高级工具套件。以 notebook 的形式呈现,支持多节点代码执行和文件管理,同时提供运行状态追踪功能,能较大程度提升开发者的效率和工作体验。
+SecretNote 是为 SecretFlow (隐语) 学习者和开发者定制的高级工具套件,可帮助您快速开展隐语实验。它以 notebook 的形式呈现,支持多节点代码执行和文件管理,同时提供运行状态追踪功能,能较大程度提升开发者的效率和工作体验。
**由于系统安全等问题,SecretNote 不是为生产设计的,请不要直接在生产环境中使用。**
## 使用
+### 隐语实训平台云 SecretNote
+
+SecretNote 现在隐语实训平台提供云上版本,开箱即用,无需环境配置直接拉起计算节点,欢迎 [立即体验](https://www.secret-flow.com/secretnote)。
+
### 与 SecretFlow 一起使用
SecretNote 有单独的 [pip](https://pypi.org/project/secretnote/) 安装包,可以单独使用。为了避免安装、部署、启动等环境问题,推荐使用 docker 方式启动 SecretFlow 运行环境。
diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile
index b4a4b237..2ddf4e28 100644
--- a/docker/app/Dockerfile
+++ b/docker/app/Dockerfile
@@ -1,5 +1,8 @@
-FROM alpine:3.14 as source-tree
+# This Dockerfile will build the secretflow/secretnote image for depolying a node
+# for SecretNote.
+# Get the repository and remove unncessary files
+FROM alpine:3.14 AS source-tree
RUN apk add --no-cache git
COPY . /repo
RUN git init \
@@ -7,55 +10,41 @@ RUN git init \
&& rm -rf .git \
&& rm -r /repo/docker
-
-FROM secretflow/devcontainer-web:amd64-v2 as build
-
+# Build the project
+FROM nikolaik/python-nodejs:python3.10-nodejs18 AS build
ENV CI=true
-
USER root
WORKDIR /repo
-
+RUN npm config set registry https://registry.npmmirror.com
+RUN npm install -g pnpm@9.4.0
+RUN pip install build --break-system-packages
COPY --from=source-tree /repo/pnpm-lock.yaml /repo/.npmrc /repo/
-
RUN pnpm fetch
-
COPY --from=source-tree /repo /repo
-
-RUN pnpm install --no-frozen-lockfile
-
-RUN cargo install gcc
-RUN pnpm exec nx run-many -t build:js -t build:py
-
+RUN pnpm install --frozen-lockfile
+RUN pnpm run ci:build
RUN apt-get update && apt-get install -y rsync
RUN rsync -avm --include='pyprojects/**/dist/*.whl' -f 'hide,! */' /repo/./ /dist
-
-FROM secretflow/secretflow-anolis8:1.6.1b0
-
+# Config the runtime
+# TODO Update the version here
+FROM secretflow/secretflow-anolis8:1.9.0b0
+RUN python --version
RUN useradd -m secretnote
-
COPY --from=build /dist /dist
-RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
RUN pip install /dist/pyprojects/secretnote/dist/*.whl
-
WORKDIR /home/secretnote
-
COPY ./docker/app/root/ ./
-
RUN curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -
RUN yum install -y nodejs
RUN npm config set registry https://registry.npmmirror.com
-RUN npm install @difizen/libro-analyzer
-
+RUN npm install @difizen/libro-analyzer@0.1.2
RUN mkdir workspace
-
RUN chown -R secretnote:secretnote /home/secretnote
USER secretnote
-
+# Start the project
ENV SELF_PARTY=alice
ENV ALL_PARTIES=alice,bob
-
EXPOSE 8888
-
ENTRYPOINT [ "/home/secretnote/scripts/start.sh" ]
diff --git a/nx.json b/nx.json
index 66cb3b89..ccc99d47 100644
--- a/nx.json
+++ b/nx.json
@@ -28,10 +28,6 @@
],
"cache": true
},
- "lint:ruff": {
- "inputs": [":default", ":python"],
- "cache": true
- },
"format:prettier": {
"inputs": ["{workspaceRoot}/**/*"],
"cache": false
diff --git a/package.json b/package.json
index 28b57a67..6c16e7cb 100644
--- a/package.json
+++ b/package.json
@@ -15,9 +15,9 @@
"format:prettier": "prettier --check --ignore-unknown .",
"ci:setup": ":",
"ci:check:javascript": "nx run-many -t format:prettier -t lint:eslint -t lint:stylelint -t test:vitest -t typecheck:tsc",
- "ci:check:python": "nx run-many -t format:black -t lint:ruff -t test:pytest -t typecheck:pyright",
- "ci:build": "nx run-many -t build:js -t build:py",
- "docker:build": "docker build -t secretflow/secretnote:1.6.1-amd64 -f ./docker/app/Dockerfile .",
+ "ci:check:python": "nx run-many -t format:black -t test:pytest -t typecheck:pyright",
+ "ci:build": "nx run-many -t build:js && nx run-many -t build:py:ci",
+ "docker:build": "docker build -t secretflow/secretnote:1.9.0b0 -f ./docker/app/Dockerfile .",
"docker:up": "docker-compose -f ./docker/sim/docker-compose.yml up"
},
"nx": {},
@@ -66,5 +66,16 @@
"engines": {
"node": ">=18.18.0"
},
- "packageManager": "pnpm@8.7.6"
+ "packageManager": "pnpm@9.4.0",
+ "pnpm": {
+ "overrides": {
+ "@difizen/mana-app": "0.1.23",
+ "@difizen/mana-core": "0.1.23",
+ "@difizen/mana-common": "0.1.23",
+ "@difizen/mana-l10n": "0.1.23",
+ "@difizen/mana-observable": "0.1.23",
+ "@difizen/mana-react": "0.1.23",
+ "@difizen/mana-syringe": "0.1.23"
+ }
+ }
}
diff --git a/packages/secretnote-lite/package.json b/packages/secretnote-lite/package.json
index 196bc8c7..87eefba9 100644
--- a/packages/secretnote-lite/package.json
+++ b/packages/secretnote-lite/package.json
@@ -1,6 +1,6 @@
{
"name": "@alipay/secretnote-lite",
- "version": "0.0.42",
+ "version": "0.0.43",
"license": "Apache-2.0",
"author": "vectorse@126.com",
"repository": "https://github.com/secretflow/secretnote/tree/main/packages/secretnote",
@@ -22,12 +22,33 @@
},
"dependencies": {
"@antv/s2": "^1.52.0",
- "@difizen/libro-jupyter": "^0.2.20",
- "@difizen/libro-language-client": "^0.2.20",
- "@difizen/mana-app": "^0.1.19",
- "@difizen/mana-common": "^0.1.19",
- "@difizen/mana-l10n": "^0.1.19",
- "@difizen/mana-react": "^0.1.19",
+ "@difizen/mana-app": "0.1.23",
+ "@difizen/mana-common": "0.1.23",
+ "@difizen/mana-l10n": "0.1.23",
+ "@difizen/mana-react": "0.1.23",
+ "@difizen/libro-jupyter": "0.2.24",
+ "@difizen/libro-language-client": "0.2.24",
+ "@difizen/libro-code-cell": "0.2.24",
+ "@difizen/libro-code-editor": "0.2.24",
+ "@difizen/libro-codemirror": "0.2.24",
+ "@difizen/libro-cofine-editor": "0.2.24",
+ "@difizen/libro-cofine-editor-core": "0.2.24",
+ "@difizen/libro-cofine-editor-contribution": "0.2.24",
+ "@difizen/libro-cofine-textmate": "0.2.24",
+ "@difizen/libro-common": "0.2.24",
+ "@difizen/libro-core": "0.2.24",
+ "@difizen/libro-kernel": "0.2.24",
+ "@difizen/libro-l10n": "0.2.24",
+ "@difizen/libro-lsp": "0.2.24",
+ "@difizen/libro-markdown": "0.2.24",
+ "@difizen/libro-markdown-cell": "0.2.24",
+ "@difizen/libro-output": "0.2.24",
+ "@difizen/libro-raw-cell": "0.2.24",
+ "@difizen/libro-rendermime": "0.2.24",
+ "@difizen/libro-search": "0.2.24",
+ "@difizen/libro-search-code-cell": "0.2.24",
+ "@difizen/libro-shared-model": "0.2.24",
+ "@difizen/libro-virtualized": "0.2.24",
"@kanaries/web-data-loader": "^0.1.7",
"@lumino/polling": "^2.1.3",
"@tiptap/core": "^2.1.11",
@@ -54,6 +75,7 @@
"markdown-it": "^14.1.0",
"monaco-editor": "^0.45.0",
"monaco-editor-webpack-plugin": "^7.1.0",
+ "plotly.js": "2.34.0",
"styled-components": "^6.1.0",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.2",
diff --git a/packages/secretnote-lite/src/modules/editor/contents/contents-contrib.ts b/packages/secretnote-lite/src/modules/editor/contents/contents-contrib.ts
index 01d9cf17..807fd860 100644
--- a/packages/secretnote-lite/src/modules/editor/contents/contents-contrib.ts
+++ b/packages/secretnote-lite/src/modules/editor/contents/contents-contrib.ts
@@ -28,6 +28,7 @@ export class SecretNoteContentContribution implements ContentContribution {
secretNoteModel.currentFileContents = currentFileContents;
secretNoteModel.filePath = currentFileContents.path;
+ /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */
// @ts-ignore
if (!secretNoteModel.quickEditMode && !secretNoteModel.readOnly) {
secretNoteModel.startKernelConnection();
diff --git a/packages/secretnote-lite/src/modules/file/preview-view.tsx b/packages/secretnote-lite/src/modules/file/preview-view.tsx
index 3c6c52a2..e4c2d274 100644
--- a/packages/secretnote-lite/src/modules/file/preview-view.tsx
+++ b/packages/secretnote-lite/src/modules/file/preview-view.tsx
@@ -44,6 +44,7 @@ export class FilePreviewView extends BaseView {
constructor(
@inject(FileService) fileService: FileService,
+ /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */
// @ts-ignore
@contrib(FilePreviewContribution)
providers: Contribution.Provider,
diff --git a/packages/secretnote-lite/src/modules/layout/index.less b/packages/secretnote-lite/src/modules/layout/index.less
index c692db13..3996cfed 100644
--- a/packages/secretnote-lite/src/modules/layout/index.less
+++ b/packages/secretnote-lite/src/modules/layout/index.less
@@ -47,8 +47,8 @@
}
.secretnote-header {
- background: #fff;
border-bottom: 1px solid var(--mana-secretnote-divider-color);
+ background: #fff;
.logo {
display: inline-flex;
@@ -76,15 +76,16 @@
position: absolute;
bottom: 0;
width: 100%;
+ padding: 12px;
border-top: 1px solid var(--mana-secretnote-divider-color);
text-align: center;
- padding: 12px;
}
.about-bar {
a.ant-typography {
color: var(--custom-blue-400) !important;
}
+
.icon-container {
line-height: 0;
}
diff --git a/packages/secretnote-lite/src/modules/layout/sidebar.tsx b/packages/secretnote-lite/src/modules/layout/sidebar.tsx
index 6630740b..61aa3c40 100644
--- a/packages/secretnote-lite/src/modules/layout/sidebar.tsx
+++ b/packages/secretnote-lite/src/modules/layout/sidebar.tsx
@@ -114,6 +114,7 @@ export class SideBarView extends DefaultSlotView {
readonly providers: Contribution.Provider;
constructor(
+ /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */
// @ts-ignore
@contrib(SideBarContribution)
providers: Contribution.Provider,
diff --git a/packages/secretnote-lite/src/modules/metrics/index.less b/packages/secretnote-lite/src/modules/metrics/index.less
index 0fbd50d6..74261abd 100644
--- a/packages/secretnote-lite/src/modules/metrics/index.less
+++ b/packages/secretnote-lite/src/modules/metrics/index.less
@@ -11,11 +11,11 @@
}
.server-name {
+ margin-bottom: 4px;
color: var(--mana-secretnote-text-color);
font-size: 14px;
font-weight: 600;
text-align: left;
- margin-bottom: 4px;
}
.placeholder {
diff --git a/packages/secretnote-lite/src/modules/metrics/view.tsx b/packages/secretnote-lite/src/modules/metrics/view.tsx
index 15399727..0609c551 100644
--- a/packages/secretnote-lite/src/modules/metrics/view.tsx
+++ b/packages/secretnote-lite/src/modules/metrics/view.tsx
@@ -27,6 +27,7 @@ const MetricsComponent = () => {
return () => {
service.disable();
};
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, []);
const formatMetric = (v: (typeof metrics)[1]) =>
diff --git a/packages/secretnote-lite/src/modules/node/index.less b/packages/secretnote-lite/src/modules/node/index.less
index be790dfd..1f766bd0 100644
--- a/packages/secretnote-lite/src/modules/node/index.less
+++ b/packages/secretnote-lite/src/modules/node/index.less
@@ -51,10 +51,10 @@
padding: 16px;
.title {
+ margin-bottom: 20px;
+ color: rgb(45 55 72 / 88%);
font-size: 16px;
font-weight: 600;
- color: rgba(45, 55, 72, 0.88);
- margin-bottom: 20px;
}
label {
diff --git a/packages/secretnote-lite/src/modules/notebook/drive.ts b/packages/secretnote-lite/src/modules/notebook/drive.ts
index 5bb12cd9..86094666 100644
--- a/packages/secretnote-lite/src/modules/notebook/drive.ts
+++ b/packages/secretnote-lite/src/modules/notebook/drive.ts
@@ -25,7 +25,7 @@ export const DriveName = 'SecretNoteContentsDrive';
@singleton()
export class SecretNoteContentsDrive implements IContentsDrive {
readonly name: string = DriveName; // Name of drive, used at the leading component of file paths.
- protected apiEndpoint: string = 'api/contents';
+ protected apiEndpoint = 'api/contents';
protected _isDisposed = false;
protected fileChangedEmitter = new Emitter();
@@ -96,6 +96,7 @@ export class SecretNoteContentsDrive implements IContentsDrive {
* @override Drive._getSettings
*/
protected _getSettings(...args: any) /* :ISettings */ {
+ /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */
// @ts-ignore
return void 0;
}
diff --git a/packages/secretnote-lite/src/modules/server/server-manager.ts b/packages/secretnote-lite/src/modules/server/server-manager.ts
index 36e8bb8a..88a63e03 100644
--- a/packages/secretnote-lite/src/modules/server/server-manager.ts
+++ b/packages/secretnote-lite/src/modules/server/server-manager.ts
@@ -47,14 +47,17 @@ export class SecretNoteServerManager {
this.defaultServerManager = defaultServerManager;
this.updateServerConnectionSettings();
this.getResourcesAndVersions();
- this.getServerList().then((servers) => {
- // The default ServerManager must be launched to get LSP to work.
- // If there exists servers at the beginning, just launch directly.
- // Otherwise postpone the launch until a server is added.
- servers?.length &&
- !this.defaultServerManager.loaded &&
- this.defaultServerManager.launch();
- });
+ this.getServerList()
+ .then((servers) => {
+ // The default ServerManager must be launched to get LSP to work.
+ // If there exists servers at the beginning, just launch directly.
+ // Otherwise postpone the launch until a server is added.
+ servers?.length &&
+ !this.defaultServerManager.loaded &&
+ this.defaultServerManager.launch();
+ return;
+ })
+ .catch((e) => genericErrorHandler(e, { silent: true }));
}
/**
@@ -228,6 +231,7 @@ export class SecretNoteServerManager {
try {
const data = await Promise.race([
request('api/kernelspecs', {}, server.id),
+ /* eslint-disable-next-line promise/param-names */
new Promise((_, reject) => {
setTimeout(() => reject(new Error('timeout')), 5000);
}),
diff --git a/packages/secretnote-lite/src/modules/welcome/index.less b/packages/secretnote-lite/src/modules/welcome/index.less
index 77644ebb..a5966d7e 100644
--- a/packages/secretnote-lite/src/modules/welcome/index.less
+++ b/packages/secretnote-lite/src/modules/welcome/index.less
@@ -1,11 +1,11 @@
.secretnote-welcome-page {
+ overflow: auto;
width: 100%;
height: 100%;
- overflow: auto;
box-sizing: border-box;
padding: 32px 48px;
- color: var(--mana-secretnote-text-color);
background-color: #fff;
+ color: var(--mana-secretnote-text-color);
.ant-steps {
margin-top: 16px;
@@ -17,11 +17,11 @@
}
code {
- font-size: 13px;
- background-color: #efefef;
- border: 1px solid #ddd;
display: inline-block;
padding: 1px 4px;
+ border: 1px solid #ddd;
+ background-color: #efefef;
+ font-size: 13px;
}
a {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 00fce882..2f72a985 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,34 +4,43 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ '@difizen/mana-app': 0.1.23
+ '@difizen/mana-core': 0.1.23
+ '@difizen/mana-common': 0.1.23
+ '@difizen/mana-l10n': 0.1.23
+ '@difizen/mana-observable': 0.1.23
+ '@difizen/mana-react': 0.1.23
+ '@difizen/mana-syringe': 0.1.23
+
importers:
.:
devDependencies:
'@bufbuild/buf':
specifier: ^1.27.1
- version: 1.35.1
+ version: 1.40.1
'@changesets/cli':
specifier: ^2.26.2
- version: 2.27.7
+ version: 2.27.8
'@commitlint/cli':
specifier: ^17.8.1
- version: 17.8.1(@swc/core@1.7.2(@swc/helpers@0.5.1))
+ version: 17.8.1(@swc/core@1.7.24)
'@commitlint/config-conventional':
specifier: ^17.8.1
version: 17.8.1
'@types/node':
specifier: ^18.16.19
- version: 18.19.42
+ version: 18.19.50
'@typescript-eslint/eslint-plugin':
specifier: ^5.62.0
- version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)
'@typescript-eslint/parser':
specifier: ^5.62.0
- version: 5.62.0(eslint@8.57.0)(typescript@5.5.4)
+ version: 5.62.0(eslint@8.57.0)(typescript@5.6.2)
'@vitest/coverage-v8':
specifier: ^0.32.4
- version: 0.32.4(vitest@0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
+ version: 0.32.4(vitest@0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
dotenv-cli:
specifier: ^7.3.0
version: 7.4.2
@@ -43,7 +52,7 @@ importers:
version: 8.10.0(eslint@8.57.0)
eslint-plugin-import:
specifier: ^2.28.1
- version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
+ version: 2.30.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)
eslint-plugin-mdx:
specifier: ^2.2.0
version: 2.3.4(eslint@8.57.0)
@@ -52,7 +61,7 @@ importers:
version: 6.6.0(eslint@8.57.0)
eslint-plugin-react:
specifier: ^7.33.2
- version: 7.35.0(eslint@8.57.0)
+ version: 7.35.2(eslint@8.57.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.2(eslint@8.57.0)
@@ -64,28 +73,28 @@ importers:
version: 3.0.1
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ version: 29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
lint-staged:
specifier: ^13.3.0
version: 13.3.0(enquirer@2.4.1)
nx:
specifier: ^17.2.0
- version: 17.3.2(@swc/core@1.7.2(@swc/helpers@0.5.1))
+ version: 17.3.2(@swc/core@1.7.24)
openapi-typescript-codegen:
specifier: ^0.25.0
version: 0.25.0
postcss:
specifier: ^8.4.31
- version: 8.4.40
+ version: 8.4.45
postcss-less:
specifier: ^6.0.0
- version: 6.0.0(postcss@8.4.40)
+ version: 6.0.0(postcss@8.4.45)
prettier:
specifier: ^3.0.3
version: 3.3.3
pyright:
specifier: ^1.1.332
- version: 1.1.373
+ version: 1.1.379
remark-directive:
specifier: ^2.0.1
version: 2.0.1
@@ -100,34 +109,34 @@ importers:
version: 5.1.1
stylelint:
specifier: ^15.11.0
- version: 15.11.0(typescript@5.5.4)
+ version: 15.11.0(typescript@5.6.2)
stylelint-config-css-modules:
specifier: ^4.3.0
- version: 4.4.0(stylelint@15.11.0(typescript@5.5.4))
+ version: 4.4.0(stylelint@15.11.0(typescript@5.6.2))
stylelint-config-idiomatic-order:
specifier: ^9.0.0
- version: 9.0.0(stylelint@15.11.0(typescript@5.5.4))
+ version: 9.0.0(stylelint@15.11.0(typescript@5.6.2))
stylelint-config-prettier:
specifier: ^9.0.5
- version: 9.0.5(stylelint@15.11.0(typescript@5.5.4))
+ version: 9.0.5(stylelint@15.11.0(typescript@5.6.2))
stylelint-config-standard:
specifier: ^30.0.1
- version: 30.0.1(stylelint@15.11.0(typescript@5.5.4))
+ version: 30.0.1(stylelint@15.11.0(typescript@5.6.2))
stylelint-order:
specifier: ^6.0.3
- version: 6.0.4(stylelint@15.11.0(typescript@5.5.4))
+ version: 6.0.4(stylelint@15.11.0(typescript@5.6.2))
ts-node:
specifier: ^10.9.1
- version: 10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)
+ version: 10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)
tsup:
specifier: ^6.7.0
- version: 6.7.0(@swc/core@1.7.2(@swc/helpers@0.5.1))(postcss@8.4.40)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))(typescript@5.5.4)
+ version: 6.7.0(@swc/core@1.7.24)(postcss@8.4.45)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2)
typescript:
specifier: ^5.2.2
- version: 5.5.4
+ version: 5.6.2
vitest:
specifier: ^0.32.4
- version: 0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ version: 0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
packages/secretnote:
dependencies:
@@ -136,22 +145,22 @@ importers:
version: 1.55.8(@antv/g-base@0.5.16)
'@codemirror/lang-python':
specifier: ^6.1.2
- version: 6.1.6(@codemirror/view@6.29.0)
+ version: 6.1.6(@codemirror/view@6.33.0)
'@difizen/libro-jupyter':
specifier: ^0.1.22
- version: 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(mapbox-gl@1.13.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app':
- specifier: ^0.1.10
- version: 0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 0.1.23
+ version: 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-common':
- specifier: ^0.1.10
- version: 0.1.19
+ specifier: 0.1.23
+ version: 0.1.23
'@difizen/mana-l10n':
- specifier: ^0.1.10
- version: 0.1.19(react@18.3.1)
+ specifier: 0.1.23
+ version: 0.1.23(react@18.3.1)
'@difizen/mana-react':
- specifier: ^0.1.10
- version: 0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 0.1.23
+ version: 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@kanaries/web-data-loader':
specifier: ^0.1.7
version: 0.1.7
@@ -160,73 +169,73 @@ importers:
version: 1.11.4(crypto@1.0.1)
'@rjsf/antd':
specifier: ^5.7.3
- version: 5.19.3(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@rjsf/core@5.19.3(@rjsf/utils@5.19.3(react@18.3.1))(react@18.3.1))(@rjsf/utils@5.19.3(react@18.3.1))(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(dayjs@1.11.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.20.1(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@rjsf/core@5.20.1(@rjsf/utils@5.20.1(react@18.3.1))(react@18.3.1))(@rjsf/utils@5.20.1(react@18.3.1))(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@rjsf/core':
specifier: ^5.13.2
- version: 5.19.3(@rjsf/utils@5.19.3(react@18.3.1))(react@18.3.1)
+ version: 5.20.1(@rjsf/utils@5.20.1(react@18.3.1))(react@18.3.1)
'@rjsf/utils':
specifier: ^5.13.2
- version: 5.19.3(react@18.3.1)
+ version: 5.20.1(react@18.3.1)
'@rjsf/validator-ajv8':
specifier: ^5.8.2
- version: 5.19.3(@rjsf/utils@5.19.3(react@18.3.1))
+ version: 5.20.1(@rjsf/utils@5.20.1(react@18.3.1))
'@tiptap/core':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/pm@2.6.6)
'@tiptap/extension-color':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/extension-text-style@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7)))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/extension-text-style@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6)))
'@tiptap/extension-highlight':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/extension-horizontal-rule':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-link':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-placeholder':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-task-item':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-task-list':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/extension-text-style':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/extension-underline':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/pm':
specifier: ^2.1.11
- version: 2.5.7
+ version: 2.6.6
'@tiptap/react':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tiptap/starter-kit':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/pm@2.5.7)
+ version: 2.6.6
'@tiptap/suggestion':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@uiw/codemirror-theme-github':
specifier: ^4.21.3
- version: 4.23.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)
+ version: 4.23.1(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)
'@uiw/react-codemirror':
specifier: ^4.21.20
- version: 4.23.0(@babel/runtime@7.24.8)(@codemirror/autocomplete@6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1))(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.29.0)(codemirror@6.0.1(@lezer/common@1.2.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.23.1(@babel/runtime@7.25.6)(@codemirror/autocomplete@6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1))(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.33.0)(codemirror@6.0.1(@lezer/common@1.2.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
ahooks:
specifier: ^3.7.8
- version: 3.8.0(react@18.3.1)
+ version: 3.8.1(react@18.3.1)
antd:
specifier: ^5.10.1
- version: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
antd-schema-form:
specifier: ^5.0.1
- version: 5.0.1(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.0.1(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
canvas-confetti:
specifier: ^1.9.0
version: 1.9.3
@@ -259,22 +268,22 @@ importers:
version: 1.36.1
sql-formatter:
specifier: ^15.0.2
- version: 15.3.2
+ version: 15.4.2
styled-components:
specifier: ^6.1.0
- version: 6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
syntax-parser:
specifier: ^1.0.18
- version: 1.0.18(@types/react@18.3.3)(encoding@0.1.13)
+ version: 1.0.18(@types/react@18.3.5)(encoding@0.1.13)
tippy.js:
specifier: ^6.3.7
version: 6.3.7
tiptap-markdown:
specifier: ^0.8.2
- version: 0.8.10(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 0.8.10(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
umi:
specifier: ^4.0.86
- version: 4.3.10(@babel/core@7.24.9)(@types/node@20.5.1)(@types/react@18.3.3)(@types/webpack@4.41.0)(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)))(lightningcss@1.22.1)(postcss-less@6.0.0(postcss@8.4.40))(prettier@3.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(sass@1.77.8)(sockjs-client@1.4.0)(stylelint@15.11.0(typescript@4.2.3))(terser@5.31.3)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
+ version: 4.3.20(@babel/core@7.25.2)(@types/node@20.5.1)(@types/react@18.3.5)(@types/webpack@4.41.0)(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)))(lightningcss@1.22.1)(postcss-less@6.0.0(postcss@8.4.45))(prettier@3.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(sass@1.78.0)(sockjs-client@1.4.0)(stylelint@15.11.0(typescript@4.2.3))(terser@5.32.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
xterm:
specifier: ^5.3.0
version: 5.3.0
@@ -302,7 +311,7 @@ importers:
version: 4.17.12
'@types/react':
specifier: ^18.2.28
- version: 18.3.3
+ version: 18.3.5
'@types/react-dom':
specifier: ^18.2.13
version: 18.3.0
@@ -311,31 +320,94 @@ importers:
version: 1.0.16
babel-plugin-transform-typescript-metadata:
specifier: ^0.3.2
- version: 0.3.2(@babel/core@7.24.9)(@babel/traverse@7.24.8)
+ version: 0.3.2(@babel/core@7.25.2)(@babel/traverse@7.25.6)
packages/secretnote-lite:
dependencies:
'@antv/s2':
specifier: ^1.52.0
version: 1.55.8(@antv/g-base@0.5.16)
+ '@difizen/libro-code-cell':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-code-editor':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-codemirror':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-cofine-editor':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-cofine-editor-contribution':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-cofine-editor-core':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-cofine-textmate':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-common':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-jupyter':
- specifier: ^0.2.20
- version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(mapbox-gl@1.13.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(mapbox-gl@1.13.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-l10n':
+ specifier: 0.2.24
+ version: 0.2.24(react@18.3.1)
'@difizen/libro-language-client':
- specifier: ^0.2.20
- version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-markdown':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-markdown-cell':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-output':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-raw-cell':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search-code-cell':
+ specifier: 0.2.24
+ version: 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-shared-model':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-virtualized':
+ specifier: 0.2.24
+ version: 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app':
- specifier: ^0.1.19
- version: 0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 0.1.23
+ version: 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-common':
- specifier: ^0.1.19
- version: 0.1.19
+ specifier: 0.1.23
+ version: 0.1.23
'@difizen/mana-l10n':
- specifier: ^0.1.19
- version: 0.1.19(react@18.3.1)
+ specifier: 0.1.23
+ version: 0.1.23(react@18.3.1)
'@difizen/mana-react':
- specifier: ^0.1.19
- version: 0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 0.1.23
+ version: 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@kanaries/web-data-loader':
specifier: ^0.1.7
version: 0.1.7
@@ -344,52 +416,52 @@ importers:
version: 2.1.3
'@tiptap/core':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/pm@2.6.6)
'@tiptap/extension-color':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/extension-text-style@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7)))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/extension-text-style@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6)))
'@tiptap/extension-highlight':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/extension-horizontal-rule':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-link':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-placeholder':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-task-item':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
'@tiptap/extension-task-list':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/extension-text-style':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/extension-underline':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
'@tiptap/pm':
specifier: ^2.1.11
- version: 2.5.7
+ version: 2.6.6
'@tiptap/react':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tiptap/starter-kit':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/pm@2.5.7)
+ version: 2.6.6
'@tiptap/suggestion':
specifier: ^2.1.11
- version: 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
+ version: 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
ahooks:
specifier: ^3.7.8
- version: 3.8.0(react@18.3.1)
+ version: 3.8.1(react@18.3.1)
antd:
specifier: ^5.10.1
- version: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
canvas-confetti:
specifier: ^1.9.0
version: 1.9.3
@@ -417,6 +489,9 @@ importers:
monaco-editor-webpack-plugin:
specifier: ^7.1.0
version: 7.1.0(monaco-editor@0.45.0)(webpack@4.41.5)
+ plotly.js:
+ specifier: 2.34.0
+ version: 2.34.0(mapbox-gl@1.13.3)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -425,13 +500,13 @@ importers:
version: 18.3.1(react@18.3.1)
styled-components:
specifier: ^6.1.0
- version: 6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
tippy.js:
specifier: ^6.3.7
version: 6.3.7
tiptap-markdown:
specifier: ^0.8.2
- version: 0.8.10(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ version: 0.8.10(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
xterm:
specifier: ^5.3.0
version: 5.3.0
@@ -456,7 +531,7 @@ importers:
version: 4.17.12
'@types/react':
specifier: ^18.2.28
- version: 18.3.3
+ version: 18.3.5
'@types/react-dom':
specifier: ^18.2.13
version: 18.3.0
@@ -468,10 +543,10 @@ importers:
version: 1.1.0
tsup:
specifier: ^8.2.4
- version: 8.2.4(@swc/core@1.7.2(@swc/helpers@0.5.1))(postcss@8.4.40)(typescript@5.5.4)(yaml@2.5.0)
+ version: 8.2.4(@swc/core@1.7.24)(postcss@8.4.45)(typescript@5.6.2)(yaml@2.5.1)
typescript:
specifier: ^5.5.4
- version: 5.5.4
+ version: 5.6.2
packages/secretnote-ui:
dependencies:
@@ -486,7 +561,7 @@ importers:
version: 2.0.3
antd:
specifier: ^5.10.2
- version: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
color:
specifier: ^4.2.3
version: 4.2.3
@@ -498,14 +573,14 @@ importers:
version: 4.17.21
styled-components:
specifier: ^6.1.0
- version: 6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
yaml:
specifier: ^2.3.4
- version: 2.5.0
+ version: 2.5.1
devDependencies:
'@storybook/addon-essentials':
specifier: ^7.5.1
- version: 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/addon-interactions':
specifier: ^7.5.1
version: 7.6.20
@@ -514,13 +589,13 @@ importers:
version: 7.6.20(react@18.3.1)
'@storybook/blocks':
specifier: ^7.5.1
- version: 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/react':
specifier: ^7.5.1
- version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)
+ version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)
'@storybook/react-vite':
specifier: ^7.5.1
- version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.21.1)(typescript@5.5.4)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
+ version: 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.21.2)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
'@storybook/testing-library':
specifier: ^0.2.2
version: 0.2.2
@@ -535,28 +610,28 @@ importers:
version: 4.17.7
'@types/react':
specifier: ^18.2.15
- version: 18.3.3
+ version: 18.3.5
'@types/react-dom':
specifier: ^18.2.7
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: ^6.0.0
- version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)
'@typescript-eslint/parser':
specifier: ^6.0.0
- version: 6.21.0(eslint@8.57.0)(typescript@5.5.4)
+ version: 6.21.0(eslint@8.57.0)(typescript@5.6.2)
'@vitejs/plugin-react-swc':
specifier: ^3.3.2
- version: 3.7.0(@swc/helpers@0.5.1)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
+ version: 3.7.0(@swc/helpers@0.5.1)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.2(eslint@8.57.0)
eslint-plugin-react-refresh:
specifier: ^0.4.3
- version: 0.4.9(eslint@8.57.0)
+ version: 0.4.11(eslint@8.57.0)
eslint-plugin-storybook:
specifier: ^0.6.15
- version: 0.6.15(eslint@8.57.0)(typescript@5.5.4)
+ version: 0.6.15(eslint@8.57.0)(typescript@5.6.2)
prop-types:
specifier: ^15.8.1
version: 15.8.1
@@ -571,7 +646,7 @@ importers:
version: 7.6.20(encoding@0.1.13)
vite:
specifier: ^4.4.5
- version: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ version: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
pyprojects/secretnote:
devDependencies:
@@ -597,12 +672,22 @@ packages:
'@ant-design/colors@7.1.0':
resolution: {integrity: sha512-MMoDGWn1y9LdQJQSHiCC20x3uZ3CwQnv9QMz6pCmJOrqdgM9YxsoVVY0wtrdXbmfSgnV0KNk6zi09NAhMR2jvg==}
- '@ant-design/cssinjs@1.21.0':
- resolution: {integrity: sha512-gIilraPl+9EoKdYxnupxjHB/Q6IHNRjEXszKbDxZdsgv4sAZ9pjkCq8yanDWNvyfjp4leir2OVAJm0vxwKK8YA==}
+ '@ant-design/cssinjs-utils@1.0.3':
+ resolution: {integrity: sha512-BrztZZKuoYcJK8uEH40ylBemf/Mu/QPiDos56g2bv6eUoniQkgQHOCOvA3+pncoFO1TaS8xcUCIqGzDA0I+ZVQ==}
+ peerDependencies:
+ react: '>=16.9.0'
+ react-dom: '>=16.9.0'
+
+ '@ant-design/cssinjs@1.21.1':
+ resolution: {integrity: sha512-tyWnlK+XH7Bumd0byfbCiZNK43HEubMoCcu9VxwsAwiHdHTgWa+tMN0/yvxa+e8EzuFP1WdUNNPclRpVtD33lg==}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
+ '@ant-design/fast-color@2.0.6':
+ resolution: {integrity: sha512-y2217gk4NqL35giHl72o6Zzqji9O7vHh9YmhUVkPtAOpoTCH4uWxo/pr4VE8t0+ChEPs0qo4eJRC5Q1eXWo3vA==}
+ engines: {node: '>=8.x'}
+
'@ant-design/icons-svg@4.4.2':
resolution: {integrity: sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==}
@@ -684,8 +769,8 @@ packages:
'@antv/graphlib@2.0.3':
resolution: {integrity: sha512-EtQR+DIfsYy28tumTnH560v7yIzXZq0nSgFBZh76mMiV1oHEN1L4p6JKu7IMtILH14mDqzmYYYFetYoAODoQUw==}
- '@antv/hierarchy@0.6.12':
- resolution: {integrity: sha512-WvWT9WYtm2SvYunm1HtzrHazvOozeP4cPFDhJWsnLzmTGMX/tNhsoCD3O+DDB3aeDY8fyM+wfZDvLv7+/4lIeA==}
+ '@antv/hierarchy@0.6.13':
+ resolution: {integrity: sha512-gBC0bYXyBVrprWyR0hqINNYfeovxdIcKBAR7x6DfNyN1Gc3hGaSo0wif6Lrv/aWVHz17FeQlVsf8rgEx343FHg==}
'@antv/layout@0.3.25':
resolution: {integrity: sha512-d29Aw1PXoAavMRZy7iTB9L5rMBeChFEX0BJ9ELP4TI35ySdCu07YbmPo9ju9OH/6sG2/NB3o85Ayxrre3iwX/g==}
@@ -708,8 +793,8 @@ packages:
'@antv/util@2.0.17':
resolution: {integrity: sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==}
- '@antv/util@3.3.7':
- resolution: {integrity: sha512-qqPg7rIPCsJyl7N56jAC25v/99mJ3ApVkgBsGijhiWrEeKvzXBPk1r5P77Pm9nCljpnn+hH8Z3t5AivbEoTJMg==}
+ '@antv/util@3.3.8':
+ resolution: {integrity: sha512-RO2vmp84adfZn5HVXuNtHr35PRWthw4oCUv0hn9DmEWwOJSeU6NtDCEg9KvU8sH2bJaS3fe/cppNSVy2L8tOaw==}
'@apidevtools/json-schema-ref-parser@9.0.9':
resolution: {integrity: sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==}
@@ -722,8 +807,8 @@ packages:
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.9':
- resolution: {integrity: sha512-e701mcfApCJqMMueQI0Fb68Amflj83+dvAvHawoBpAz+GDjCIyGHzNwnefjsWJ3xiYAqqiQFoWbspGYBdb2/ng==}
+ '@babel/compat-data@7.25.4':
+ resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.12.9':
@@ -738,8 +823,8 @@ packages:
resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.9':
- resolution: {integrity: sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==}
+ '@babel/core@7.25.2':
+ resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.23.3':
@@ -752,8 +837,8 @@ packages:
'@babel/generator@7.2.0':
resolution: {integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==}
- '@babel/generator@7.24.10':
- resolution: {integrity: sha512-o9HBZL1G2129luEUlG1hB4N/nlYNWHnpwlND9eOMclRqqu1YDy2sSYVCFUZwl8I1Gxh+QSRrP2vD7EpUmFVXxg==}
+ '@babel/generator@7.25.6':
+ resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.7':
@@ -764,18 +849,18 @@ packages:
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.8':
- resolution: {integrity: sha512-oU+UoqCHdp+nWVDkpldqIQL/i/bvAv53tRqLG/s+cOXxe66zOYLU7ar/Xs3LdmBihrUMEUhwu6dMZwbNOYDwvw==}
+ '@babel/helper-compilation-targets@7.25.2':
+ resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.8':
- resolution: {integrity: sha512-4f6Oqnmyp2PP3olgUMmOwC3akxSm5aBYraQ6YDdKy7NcAMkDECHWG0DEnV6M2UAkERgIBhYt8S27rURPg7SxWA==}
+ '@babel/helper-create-class-features-plugin@7.25.4':
+ resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.24.7':
- resolution: {integrity: sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==}
+ '@babel/helper-create-regexp-features-plugin@7.25.2':
+ resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -794,14 +879,6 @@ packages:
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-function-name@7.24.7':
- resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.24.7':
- resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-member-expression-to-functions@7.24.8':
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
engines: {node: '>=6.9.0'}
@@ -810,8 +887,8 @@ packages:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.9':
- resolution: {integrity: sha512-oYbh+rtFKj/HwBQkFlUzvcybzklmVdVV3UU+mN7n2t/q3yGHbuVdNxyFvSBO1tfvjyArpHNcWMAzsSPdyI46hw==}
+ '@babel/helper-module-transforms@7.25.2':
+ resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -827,14 +904,14 @@ packages:
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.24.7':
- resolution: {integrity: sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==}
+ '@babel/helper-remap-async-to-generator@7.25.0':
+ resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.7':
- resolution: {integrity: sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==}
+ '@babel/helper-replace-supers@7.25.0':
+ resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -863,31 +940,37 @@ packages:
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.24.7':
- resolution: {integrity: sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==}
+ '@babel/helper-wrap-function@7.25.0':
+ resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.8':
- resolution: {integrity: sha512-gV2265Nkcz7weJJfvDoAEVzC1e2OTDpkGbEsebse8koXUJUXPsCMi7sRo/+SPMuMZ9MtUPnGwITTnQnU5YjyaQ==}
+ '@babel/helpers@7.25.6':
+ resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.7':
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.8':
- resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
+ '@babel/parser@7.25.6':
+ resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7':
- resolution: {integrity: sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
+ resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0':
+ resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7':
- resolution: {integrity: sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
+ resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -898,8 +981,8 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7':
- resolution: {integrity: sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
+ resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1088,14 +1171,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.24.7':
- resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
+ '@babel/plugin-syntax-import-assertions@7.25.6':
+ resolution: {integrity: sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.7':
- resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
+ '@babel/plugin-syntax-import-attributes@7.25.6':
+ resolution: {integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1169,8 +1252,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ '@babel/plugin-syntax-typescript@7.25.4':
+ resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1187,8 +1270,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.24.7':
- resolution: {integrity: sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==}
+ '@babel/plugin-transform-async-generator-functions@7.25.4':
+ resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1205,14 +1288,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.7':
- resolution: {integrity: sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==}
+ '@babel/plugin-transform-block-scoping@7.25.0':
+ resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.7':
- resolution: {integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==}
+ '@babel/plugin-transform-class-properties@7.25.4':
+ resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1223,8 +1306,8 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.24.8':
- resolution: {integrity: sha512-VXy91c47uujj758ud9wx+OMgheXm4qJfyhj1P18YvlrQkNOSrwsteHk+EFS3OMGfhMhpZa0A+81eE7G4QC+3CA==}
+ '@babel/plugin-transform-classes@7.25.4':
+ resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1253,6 +1336,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0':
+ resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-dynamic-import@7.24.7':
resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
engines: {node: '>=6.9.0'}
@@ -1271,8 +1360,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.24.7':
- resolution: {integrity: sha512-cjRKJ7FobOH2eakx7Ja+KpJRj8+y+/SiB3ooYm/n2UJfxu0oEaOoxOinitkJcPqv9KxS0kxTGPUaR7L2XcXDXA==}
+ '@babel/plugin-transform-flow-strip-types@7.25.2':
+ resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1283,8 +1372,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.24.7':
- resolution: {integrity: sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==}
+ '@babel/plugin-transform-function-name@7.25.1':
+ resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1295,8 +1384,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.24.7':
- resolution: {integrity: sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==}
+ '@babel/plugin-transform-literals@7.25.2':
+ resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1331,8 +1420,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.7':
- resolution: {integrity: sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==}
+ '@babel/plugin-transform-modules-systemjs@7.25.0':
+ resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1397,8 +1486,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.7':
- resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
+ '@babel/plugin-transform-private-methods@7.25.4':
+ resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1439,8 +1528,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.24.7':
- resolution: {integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==}
+ '@babel/plugin-transform-react-jsx@7.25.2':
+ resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1499,8 +1588,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.8':
- resolution: {integrity: sha512-CgFgtN61BbdOGCP4fLaAMOPkzWUh6yQZNMr5YSt8uz2cZSSiQONCQFWqsE4NeVfOIhqDOlS9CR3WD91FzMeB2Q==}
+ '@babel/plugin-transform-typescript@7.25.2':
+ resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1523,8 +1612,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.7':
- resolution: {integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.4':
+ resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1535,8 +1624,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-env@7.24.8':
- resolution: {integrity: sha512-vObvMZB6hNWuDxhSaEPTKCwcqkAIuDtE+bQGn4XMXne1DSLzFVY8Vmj1bm+mUQXYNN8NmaQEO+r8MMbzPr1jBQ==}
+ '@babel/preset-env@7.25.4':
+ resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1591,20 +1680,20 @@ packages:
resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.24.8':
- resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
+ '@babel/runtime@7.25.6':
+ resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.7':
- resolution: {integrity: sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==}
+ '@babel/template@7.25.0':
+ resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.8':
- resolution: {integrity: sha512-t0P1xxAPzEDcEPmjprAQq19NWum4K0EQPjMwZQZbHt+GiZqvjCHjj755Weq1YRPVzBI+3zSfvScfpnuIecVFJQ==}
+ '@babel/traverse@7.25.6':
+ resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.9':
- resolution: {integrity: sha512-xm8XrMKz0IlUdocVbYJe0Z9xEgidU7msskG8BbhnTPK/HZ2z/7FP7ykqPgrUH+C+r414mNfNWam1f2vqOjqjYQ==}
+ '@babel/types@7.25.6':
+ resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
engines: {node: '>=6.9.0'}
'@base2/pretty-print-object@1.0.1':
@@ -1616,92 +1705,92 @@ packages:
'@bloomberg/record-tuple-polyfill@0.0.4':
resolution: {integrity: sha512-h0OYmPR3A5Dfbetra/GzxBAzQk8sH7LhRkRUTdagX6nrtlUgJGYCTv4bBK33jsTQw9HDd8PE2x1Ma+iRKEDUsw==}
- '@bufbuild/buf-darwin-arm64@1.35.1':
- resolution: {integrity: sha512-Yy+sk+8sg3LDvMSZLGUIoMCkZajkQSZkdxO96mpqJagKlEYPLGTtakVFCVNX9KgK/sv1bd9sU55iMGXE3+eIYw==}
+ '@bufbuild/buf-darwin-arm64@1.40.1':
+ resolution: {integrity: sha512-MGhSRT81Ham0D88/wE2Fox5RJk/vtVj42HoviMqKd0Iw7oGa/FyOmLdoBWdsZD9GRARBouCs7NmHOiiL3k84NQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- '@bufbuild/buf-darwin-x64@1.35.1':
- resolution: {integrity: sha512-LcscoNTCHFeb5y9sitw4w6HWZtJ4Ja/MDBCUU9A8/OGHJSESV0JjhbvVHGNOIsKUbPq5p/SVjYA/Ab/wlmmpaA==}
+ '@bufbuild/buf-darwin-x64@1.40.1':
+ resolution: {integrity: sha512-a4sveftVTfNEaF2QjsvJhrpvxoMpv9jRf2Lxr5s2az9q4pdIfiHG1JvRrPBIl/uvxSspMm5bd2cGrXTxKBsHxA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- '@bufbuild/buf-linux-aarch64@1.35.1':
- resolution: {integrity: sha512-bPeiSURl8WFxCdawtJjAjUOMqknVTw763NLIDcbYSH1/wTiUbM5QeXCORRlHKXtMGM89SYU5AatcY9UhQ+sn9g==}
+ '@bufbuild/buf-linux-aarch64@1.40.1':
+ resolution: {integrity: sha512-107W29/07TDb4AVa3TmvUEJWqIKU4HvDPQAX9LG78P0D013O/jXDRGchn/r8suass0sjP2rQdlVn6c9aXpjEcw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- '@bufbuild/buf-linux-x64@1.35.1':
- resolution: {integrity: sha512-n6ziazYjNH9H1JjHiacGi20rIyZuKnsHjF8qWisO8KGajhnS/7tpq0VzYdorqqWyJ1TcnLBWHj+dWYuGay9Nag==}
+ '@bufbuild/buf-linux-x64@1.40.1':
+ resolution: {integrity: sha512-1HrDslgIySGdvAXDpkaaoqDfulQ81AEa4iO8KdCNe6psI0li1h7PJgY2+7mqnW3wDD0T0XL0NBOdjEZ6fvctgQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- '@bufbuild/buf-win32-arm64@1.35.1':
- resolution: {integrity: sha512-3B65+iA1i/LDjJBseEpAvrkEI7VJqrvW39PyYVkIXSHHT917O+n95g74pn38A0XkggN5lEibLEkipBMDUfwMew==}
+ '@bufbuild/buf-win32-arm64@1.40.1':
+ resolution: {integrity: sha512-CLosmHJoB1mp5EGV/Ldzg111woWbrQ+wA98Wq+GI7je/eiWACVIQp6fT5j8Ksyfuv6NCX2SwVjTqR3iiMgX/nA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- '@bufbuild/buf-win32-x64@1.35.1':
- resolution: {integrity: sha512-iafrcs+1FMlD+3ZjI1kVBHGOluT6YcoAUETrGMbQjRha6dL5s2Ldr0G7zCKLIT13yEKG5QTyP8z8gVEpk8C8wg==}
+ '@bufbuild/buf-win32-x64@1.40.1':
+ resolution: {integrity: sha512-ioSLtqP4U8nbh+4HhV4K0mSN7HNcNulMq9ZZ+yhGzrBS+T9+W+e45jnOyhWjN5WN/A6+sqTeSDJ5Q32PM+OyNg==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
- '@bufbuild/buf@1.35.1':
- resolution: {integrity: sha512-POtbb4wRhvgCmmClnuaQTpkHL4ukhFItuS/AaD7QDY0kamn4ExNJz4XlHG5jeJODaQ1Wq3f9qn7UIgUr6CUODw==}
+ '@bufbuild/buf@1.40.1':
+ resolution: {integrity: sha512-rtsML4qejJ453Z81+4jlKvQxGHrXPP7g5OflQME3lgss4L2+fdeyVkb1mieOMHnhqYpVqOAus926IvYgBgzCiw==}
engines: {node: '>=12'}
hasBin: true
- '@changesets/apply-release-plan@7.0.4':
- resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==}
+ '@changesets/apply-release-plan@7.0.5':
+ resolution: {integrity: sha512-1cWCk+ZshEkSVEZrm2fSj1Gz8sYvxgUL4Q78+1ZZqeqfuevPTPk033/yUZ3df8BKMohkqqHfzj0HOOrG0KtXTw==}
- '@changesets/assemble-release-plan@6.0.3':
- resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==}
+ '@changesets/assemble-release-plan@6.0.4':
+ resolution: {integrity: sha512-nqICnvmrwWj4w2x0fOhVj2QEGdlUuwVAwESrUo5HLzWMI1rE5SWfsr9ln+rDqWB6RQ2ZyaMZHUcU7/IRaUJS+Q==}
'@changesets/changelog-git@0.2.0':
resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
- '@changesets/cli@2.27.7':
- resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==}
+ '@changesets/cli@2.27.8':
+ resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==}
hasBin: true
- '@changesets/config@3.0.2':
- resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==}
+ '@changesets/config@3.0.3':
+ resolution: {integrity: sha512-vqgQZMyIcuIpw9nqFIpTSNyc/wgm/Lu1zKN5vECy74u95Qx/Wa9g27HdgO4NkVAaq+BGA8wUc/qvbvVNs93n6A==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
- '@changesets/get-dependents-graph@2.1.1':
- resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==}
+ '@changesets/get-dependents-graph@2.1.2':
+ resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==}
- '@changesets/get-release-plan@4.0.3':
- resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==}
+ '@changesets/get-release-plan@4.0.4':
+ resolution: {integrity: sha512-SicG/S67JmPTrdcc9Vpu0wSQt7IiuN0dc8iR5VScnnTVPfIaLvKmEGRvIaF0kcn8u5ZqLbormZNTO77bCEvyWw==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
- '@changesets/git@3.0.0':
- resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==}
+ '@changesets/git@3.0.1':
+ resolution: {integrity: sha512-pdgHcYBLCPcLd82aRcuO0kxCDbw/yISlOtkmwmE8Odo1L6hSiZrBOsRl84eYG7DRCab/iHnOkWqExqc4wxk2LQ==}
- '@changesets/logger@0.1.0':
- resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==}
+ '@changesets/logger@0.1.1':
+ resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
'@changesets/parse@0.4.0':
resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
- '@changesets/pre@2.0.0':
- resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==}
+ '@changesets/pre@2.0.1':
+ resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==}
- '@changesets/read@0.6.0':
- resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==}
+ '@changesets/read@0.6.1':
+ resolution: {integrity: sha512-jYMbyXQk3nwP25nRzQQGa1nKLY0KfoOV7VLgwucI0bUO8t8ZLCr6LZmgjXsiKuRDc+5A6doKPr9w2d+FEJ55zQ==}
- '@changesets/should-skip-package@0.1.0':
- resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==}
+ '@changesets/should-skip-package@0.1.1':
+ resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==}
'@changesets/types@4.1.0':
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
@@ -1709,8 +1798,8 @@ packages:
'@changesets/types@6.0.0':
resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
- '@changesets/write@0.3.1':
- resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==}
+ '@changesets/write@0.3.2':
+ resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
'@choojs/findup@0.2.1':
resolution: {integrity: sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==}
@@ -1721,19 +1810,19 @@ packages:
engines: {node: '>=0.1.95'}
hasBin: true
- '@codemirror/autocomplete@6.17.0':
- resolution: {integrity: sha512-fdfj6e6ZxZf8yrkMHUSJJir7OJkHkZKaOZGzLWIYp2PZ3jd+d+UjG8zVPqJF6d3bKxkhvXTPan/UZ1t7Bqm0gA==}
+ '@codemirror/autocomplete@6.18.0':
+ resolution: {integrity: sha512-5DbOvBbY4qW5l57cjDsmmpDh3/TeK1vXfTHa+BUMrRzdWdcxKZ4U4V7vQaTtOpApNU4kLS4FQ6cINtLg245LXA==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
- '@codemirror/commands@6.6.0':
- resolution: {integrity: sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==}
+ '@codemirror/commands@6.6.1':
+ resolution: {integrity: sha512-iBfKbyIoXS1FGdsKcZmnrxmbc8VcbMrSgD7AVrsnX+WyAYjmUDWvE93dt5D874qS4CCVu4O1JpbagHdXbbLiOw==}
- '@codemirror/lang-css@6.2.1':
- resolution: {integrity: sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==}
+ '@codemirror/lang-css@6.3.0':
+ resolution: {integrity: sha512-CyR4rUNG9OYcXDZwMPvJdtb6PHbBDKUc/6Na2BIwZ6dKab1JQqKa4di+RNRY9Myn7JB81vayKwJeQ7jEdmNVDA==}
'@codemirror/lang-html@6.4.9':
resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==}
@@ -1762,8 +1851,8 @@ packages:
'@codemirror/theme-one-dark@6.1.2':
resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==}
- '@codemirror/view@6.29.0':
- resolution: {integrity: sha512-ED4ims4fkf7eOA+HYLVP8VVg3NMllt1FPm9PEJBfYFnidKlRITBaua38u68L1F60eNtw2YNcDN5jsIzhKZwWQA==}
+ '@codemirror/view@6.33.0':
+ resolution: {integrity: sha512-AroaR3BvnjRW8fiZBalAaK+ZzB5usGgI014YKElYZvQdNH5ZIidHlO+cyf/2rWzyBFRkvG6VhiXeAEbC53P2YQ==}
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
@@ -2205,65 +2294,34 @@ packages:
react: '>=16'
react-dom: '>=16'
- '@difizen/mana-app@0.1.19':
- resolution: {integrity: sha512-Rve5NFRJ6M8+k5U+nsV4eOM0G8zjXfZk519AEt0vEOrQ8Rb0hRWWJxY5DwFBTwNjVSYDnIE+lxOss4EsVmmEOg==}
- peerDependencies:
- react: '>=16.8.6'
- react-dom: '>=16.8.6'
-
'@difizen/mana-app@0.1.23':
resolution: {integrity: sha512-aC07aHUmnBXNRqtt5blEI/Di6dlLRb0oz16aGbi5HgiSov6FJ3KCDwREUy9859EMQyIH2ar5wDl3wa6NTO6NYA==}
peerDependencies:
react: '>=16.8.6'
react-dom: '>=16.8.6'
- '@difizen/mana-common@0.1.19':
- resolution: {integrity: sha512-woYjctDCD8Pm5D/gWVdOPJQrU1HNZK1M3bCeMNf+Tk+5h3N1CsbI1tU4nYlxpLmKOrU60ZqTJZcbHjRw5arF3Q==}
-
'@difizen/mana-common@0.1.23':
resolution: {integrity: sha512-fdlxh0RSTx39N8NYoS2+6aMnk2baDZB8sMeIQBW58psx+g6T1GUW+uaZLdjTFPK5qg5CuQY4oASYUBnw8XKGgw==}
- '@difizen/mana-core@0.1.19':
- resolution: {integrity: sha512-yP89Ofd7d8SBhFoa2KV8X7E7OG7UV/iidS31CHLc6mVXhYt3n94uc4yIvp2AnmHBYiMi1G5GkAAhCt7YdX0BYw==}
-
'@difizen/mana-core@0.1.23':
resolution: {integrity: sha512-McGK86nxKmDnLVk1KSC+/Uqh8qMgf/C6hp8We0Tr/ObHQ2tYRzEE65cNeoVPv76G4d4qIh51kBW5l891jUJGZg==}
- '@difizen/mana-l10n@0.1.19':
- resolution: {integrity: sha512-FF6SPKw9UlgFLL5+e5Kk9Bs4JqJ2u4kpWZ6D7kSQW32F8GgFafUsaIycWlV+9FnlU5YeHxxYmTzfcbDdQ84NGA==}
- peerDependencies:
- react: '>=16.8.6'
-
'@difizen/mana-l10n@0.1.23':
resolution: {integrity: sha512-De1UBJcbjv+C4nGT8HHRvCXJQQOdnx7LzjkoJ04ynwr3KkwkWE/SEXfynevnq8rVhNlJezXJGDLaZd1ircJ8NQ==}
peerDependencies:
react: '>=16.8.6'
- '@difizen/mana-observable@0.1.19':
- resolution: {integrity: sha512-1RC3K53Hrk6udcRbsr2YVZ+SUH7Ar9ho1cc1XSicPTt/EqvA+Rny1cqPA8x7fAv33A484CaLi3qFHirco1AKxQ==}
- peerDependencies:
- react: '>=16.8.6'
-
'@difizen/mana-observable@0.1.23':
resolution: {integrity: sha512-yNqHGompo6CM1d1B0aIk3be948afx2DQk8VdWjgLhpeAYnFCQVCSR3FCqAiq283bUFnxvkDeJYixL5C9xXasGA==}
peerDependencies:
react: '>=16.8.6'
- '@difizen/mana-react@0.1.19':
- resolution: {integrity: sha512-we5S1N1OghKOURBCW6nymdswm2VcCc/iknUc2ZcNY+Ry1bkHiZrZQdhELr4pp4CEFStIKnUQscgzFhPtxCOGqg==}
- peerDependencies:
- react: '>=16.8.6'
- react-dom: '>=16.8.6'
-
'@difizen/mana-react@0.1.23':
resolution: {integrity: sha512-DGNPxzTExs+CPoizInXKXUTX5o/VSBbPVvrVeht2ch6Q/IzA3Msk+wqg9aJDiHJXsSN8Kqa7s2LE1u47t9wlag==}
peerDependencies:
react: '>=16.8.6'
react-dom: '>=16.8.6'
- '@difizen/mana-syringe@0.1.19':
- resolution: {integrity: sha512-VFdZrLIji76EG26ybGP9AMtra+BT3EaWpmbV5sH6xsJuG6/opnwL5xUtDukWwseF9Hq6CGK9FpUuYyH+zTQEzg==}
-
'@difizen/mana-syringe@0.1.23':
resolution: {integrity: sha512-YioGY8OEVXFK0+3pSLPgVA2Z1chSsybEuLTkqEM5h6X1V27yNR2vXepIhRwdWXzIvvhrH/VKfW6QuuLhxt6ckA==}
@@ -2883,14 +2941,14 @@ packages:
'@floating-ui/core@0.6.2':
resolution: {integrity: sha512-jktYRmZwmau63adUG3GKOAVCofBXkk55S/zQ94XOorAHhwqFIOFAy1rSp2N0Wp6/tGbe9V3u/ExlGZypyY17rg==}
- '@floating-ui/core@1.6.5':
- resolution: {integrity: sha512-8GrTWmoFhm5BsMZOTHeGD2/0FLKLQQHvO/ZmQga4tKempYRLz8aqJGqXVuQgisnMObq2YZ2SgkwctN1LOOxcqA==}
+ '@floating-ui/core@1.6.7':
+ resolution: {integrity: sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==}
'@floating-ui/dom@0.4.5':
resolution: {integrity: sha512-b+prvQgJt8pieaKYMSJBXHxX/DYwdLsAWxKYqnO5dO2V4oo/TYBZJAUQCVNjTWWsrs6o4VDrNcP9+E70HAhJdw==}
- '@floating-ui/dom@1.6.8':
- resolution: {integrity: sha512-kx62rP19VZ767Q653wsP1XZCGIirkE09E0QUGNYTM/ttbbQHqcGPdSfWFxUyyNLc/W6aoJRBajOSXhP6GXjC0Q==}
+ '@floating-ui/dom@1.6.10':
+ resolution: {integrity: sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==}
'@floating-ui/react-dom-interactions@0.3.1':
resolution: {integrity: sha512-tP2KEh7EHJr5hokSBHcPGojb+AorDNUf0NYfZGg/M+FsMvCOOsSEeEF0O1NDfETIzDnpbHnCs0DuvCFhSMSStg==}
@@ -2908,8 +2966,8 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.2.5':
- resolution: {integrity: sha512-sTcG+QZ6fdEUObICavU+aB3Mp8HY4n14wYHdxK4fXjPmv3PXZZeY5RaguJmGyeH/CJQhX3fqKUtS4qc1LoHwhQ==}
+ '@floating-ui/utils@0.2.7':
+ resolution: {integrity: sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==}
'@gulp-sourcemaps/identity-map@1.0.2':
resolution: {integrity: sha512-ciiioYMLdo16ShmfHBXJBOFm3xPC4AuwO4xeRpFeHz7WK9PYsWCmigagG2XyzZpubK4a3qNKoUBDhbzHfa50LQ==}
@@ -3122,14 +3180,14 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/json-pack@1.0.4':
- resolution: {integrity: sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==}
+ '@jsonjoy.com/json-pack@1.1.0':
+ resolution: {integrity: sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
- '@jsonjoy.com/util@1.2.0':
- resolution: {integrity: sha512-4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==}
+ '@jsonjoy.com/util@1.3.0':
+ resolution: {integrity: sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -3147,11 +3205,11 @@ packages:
'@lezer/common@1.2.1':
resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==}
- '@lezer/css@1.1.8':
- resolution: {integrity: sha512-7JhxupKuMBaWQKjQoLtzhGj83DdnZY9MckEOG5+/iLKNK2ZJqKc6hf6uc0HjwCX7Qlok44jBNqZhHKDhEhZYLA==}
+ '@lezer/css@1.1.9':
+ resolution: {integrity: sha512-TYwgljcDv+YrV0MZFFvYFQHCfGgbPMR6nuqLabBdmZoFH3EP1gvw8t0vae326Ne3PszQkbXfVBjCnf3ZVCr0bA==}
- '@lezer/highlight@1.2.0':
- resolution: {integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==}
+ '@lezer/highlight@1.2.1':
+ resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
'@lezer/html@1.3.10':
resolution: {integrity: sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==}
@@ -3159,11 +3217,11 @@ packages:
'@lezer/javascript@1.4.17':
resolution: {integrity: sha512-bYW4ctpyGK+JMumDApeUzuIezX01H76R1foD6LcRX224FWfyYit/HYxiPGDjXXe/wQWASjCvVGoukTH68+0HIA==}
- '@lezer/lr@1.4.1':
- resolution: {integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==}
+ '@lezer/lr@1.4.2':
+ resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
- '@lezer/markdown@1.3.0':
- resolution: {integrity: sha512-ErbEQ15eowmJUyT095e9NJc3BI9yZ894fjSDtHftD0InkfUBGgnKSU6dvan9jqsZuNHg2+ag/1oyDRxNsENupQ==}
+ '@lezer/markdown@1.3.1':
+ resolution: {integrity: sha512-DGlzU/i8DC8k0uz1F+jeePrkATl0jWakauTzftMQOcbaMkHbNSRki/4E2tOzJWsVpoKYhe7iTJ03aepdwVUXUA==}
'@lezer/python@1.1.14':
resolution: {integrity: sha512-ykDOb2Ti24n76PJsSa4ZoDF0zH12BSw1LGfQXCYJhJyOGiFTfGaX0Du66Ze72R+u/P35U+O6I9m8TFXov1JzsA==}
@@ -3872,8 +3930,8 @@ packages:
resolution: {integrity: sha512-qgGdcVIF604M9EqjNF0hbUTz42bz/RDtxWdWuU5EQe3hi7M8ob54B6B35rOsvX5eSvIHIzT9iH1R3n+hk3CGfg==}
engines: {node: '>=14.x'}
- '@rc-component/color-picker@1.5.3':
- resolution: {integrity: sha512-+tGGH3nLmYXTalVe0L8hSZNs73VTP5ueSHwUlDC77KKRaN7G4DS4wcpG5DTDzdcV/Yas+rzA6UGgIyzd8fS4cw==}
+ '@rc-component/color-picker@2.0.1':
+ resolution: {integrity: sha512-WcZYwAThV/b2GISQ8F+7650r5ZZJ043E57aVBFkQ+kSY4C6wdofXgB0hBx+GPGpIU0Z81eETNoDUJMr7oy/P8Q==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -3909,15 +3967,15 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/tour@1.15.0':
- resolution: {integrity: sha512-h6hyILDwL+In9GAgRobwRWihLqqsD7Uft3fZGrJ7L4EiyCoxbnNYwzPXDfz7vNDhWeVyvAWQJj9fJCzpI4+b4g==}
+ '@rc-component/tour@1.15.1':
+ resolution: {integrity: sha512-Tr2t7J1DKZUpfJuDZWHxyxWpfmj8EZrqSgyMZ+BCdvKZ6r1UDsfU46M/iWAAFBy961Ssfom2kv5f3UcjIL2CmQ==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@rc-component/trigger@2.2.0':
- resolution: {integrity: sha512-QarBCji02YE9aRFhZgRZmOpXBj0IZutRippsVBv85sxvG4FGk/vRxwAlkn3MS9zK5mwbETd86mAVg2tKqTkdJA==}
+ '@rc-component/trigger@2.2.3':
+ resolution: {integrity: sha512-X1oFIpKoXAMXNDYCviOmTfuNuYxE4h5laBsyCqVAVMjNHxoF3/uiyA7XdegK1XbCvBbCZ6P6byWrEoDRpKL8+A==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
@@ -3935,35 +3993,35 @@ packages:
'@remirror/core-constants@2.0.2':
resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==}
- '@rjsf/antd@5.19.3':
- resolution: {integrity: sha512-QznnEX6RZDpEB2amBXQTUartCgPru3yVZFVunfyzEyQ58IZMyXMZ+tuT3/nntsn/ACRMu2OIZ5uRl3buaAzkLA==}
+ '@rjsf/antd@5.20.1':
+ resolution: {integrity: sha512-PPLaMFVAUu0juCwF/1LjXumygl/67sacXTQkICbo8vDBkMwDOabf/m4AQ2QuQuxcB2Epb3yghAWFleAlxrflUg==}
engines: {node: '>=14'}
peerDependencies:
'@ant-design/icons': ^4.0.0 || ^5.0.0
- '@rjsf/core': ^5.19.x
- '@rjsf/utils': ^5.19.x
+ '@rjsf/core': ^5.20.x
+ '@rjsf/utils': ^5.20.x
antd: ^4.24.0 || ^5.8.5
dayjs: ^1.8.0
react: ^16.14.0 || >=17
- '@rjsf/core@5.19.3':
- resolution: {integrity: sha512-AAzolj+fcFlwk0/5THA7T2JkmYTIUa+fLPM5prFqPw55FwWOa0qC5zIOfkhPS95Z9bfwJv3BubOAiKZ7MOGe8Q==}
+ '@rjsf/core@5.20.1':
+ resolution: {integrity: sha512-IOeONl5EBco6SunpGeL8yK9VlEypf1fy5RYqVf1pR/vRx7MPSS6H28p/IqkJGwcFqQBeUNjUAlGANYr808EpHA==}
engines: {node: '>=14'}
peerDependencies:
- '@rjsf/utils': ^5.19.x
+ '@rjsf/utils': ^5.20.x
react: ^16.14.0 || >=17
- '@rjsf/utils@5.19.3':
- resolution: {integrity: sha512-1lG/uMMmnAJE48BHUl4laNY2W2j2gIR2LH4jsxeEMSuFloB06ZuUXLesD03Nz2zQjm66izNmnm5eAmAi3Pa1yQ==}
+ '@rjsf/utils@5.20.1':
+ resolution: {integrity: sha512-bQrJt5lsAHbdmivIDDVJPXPCkkXJZvXBx8MrjA5umGO2+tykPcphZx/75+1AY5WhUECSgwBeZe2DEWhPbX46oQ==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.14.0 || >=17
- '@rjsf/validator-ajv8@5.19.3':
- resolution: {integrity: sha512-ah0DY1tGmBDNd0iIjH9/iL3TSflriY8cYPmAwK4aDzGLnwHgD2w8sEfJJjG01pX89rY2CeeYxcwCalwlBlUZ/w==}
+ '@rjsf/validator-ajv8@5.20.1':
+ resolution: {integrity: sha512-8uzN3ncMk2G2EQq0bAig2zU2LC482B6KDmDtWlFytlU4GEzczHFTcpjoWU0iT7S+E8LoQiunTv5SBBxAnxSoOw==}
engines: {node: '>=14'}
peerDependencies:
- '@rjsf/utils': ^5.19.x
+ '@rjsf/utils': ^5.20.x
'@rollup/pluginutils@5.1.0':
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
@@ -3974,95 +4032,98 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.21.1':
- resolution: {integrity: sha512-2thheikVEuU7ZxFXubPDOtspKn1x0yqaYQwvALVtEcvFhMifPADBrgRPyHV0TF3b+9BgvgjgagVyvA/UqPZHmg==}
+ '@rollup/rollup-android-arm-eabi@4.21.2':
+ resolution: {integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.21.1':
- resolution: {integrity: sha512-t1lLYn4V9WgnIFHXy1d2Di/7gyzBWS8G5pQSXdZqfrdCGTwi1VasRMSS81DTYb+avDs/Zz4A6dzERki5oRYz1g==}
+ '@rollup/rollup-android-arm64@4.21.2':
+ resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.21.1':
- resolution: {integrity: sha512-AH/wNWSEEHvs6t4iJ3RANxW5ZCK3fUnmf0gyMxWCesY1AlUj8jY7GC+rQE4wd3gwmZ9XDOpL0kcFnCjtN7FXlA==}
+ '@rollup/rollup-darwin-arm64@4.21.2':
+ resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.21.1':
- resolution: {integrity: sha512-dO0BIz/+5ZdkLZrVgQrDdW7m2RkrLwYTh2YMFG9IpBtlC1x1NPNSXkfczhZieOlOLEqgXOFH3wYHB7PmBtf+Bg==}
+ '@rollup/rollup-darwin-x64@4.21.2':
+ resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.21.1':
- resolution: {integrity: sha512-sWWgdQ1fq+XKrlda8PsMCfut8caFwZBmhYeoehJ05FdI0YZXk6ZyUjWLrIgbR/VgiGycrFKMMgp7eJ69HOF2pQ==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.21.2':
+ resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.21.1':
- resolution: {integrity: sha512-9OIiSuj5EsYQlmwhmFRA0LRO0dRRjdCVZA3hnmZe1rEwRk11Jy3ECGGq3a7RrVEZ0/pCsYWx8jG3IvcrJ6RCew==}
+ '@rollup/rollup-linux-arm-musleabihf@4.21.2':
+ resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.21.1':
- resolution: {integrity: sha512-0kuAkRK4MeIUbzQYu63NrJmfoUVicajoRAL1bpwdYIYRcs57iyIV9NLcuyDyDXE2GiZCL4uhKSYAnyWpjZkWow==}
+ '@rollup/rollup-linux-arm64-gnu@4.21.2':
+ resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.21.1':
- resolution: {integrity: sha512-/6dYC9fZtfEY0vozpc5bx1RP4VrtEOhNQGb0HwvYNwXD1BBbwQ5cKIbUVVU7G2d5WRE90NfB922elN8ASXAJEA==}
+ '@rollup/rollup-linux-arm64-musl@4.21.2':
+ resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-powerpc64le-gnu@4.21.1':
- resolution: {integrity: sha512-ltUWy+sHeAh3YZ91NUsV4Xg3uBXAlscQe8ZOXRCVAKLsivGuJsrkawYPUEyCV3DYa9urgJugMLn8Z3Z/6CeyRQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.21.2':
+ resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-gnu@4.21.1':
- resolution: {integrity: sha512-BggMndzI7Tlv4/abrgLwa/dxNEMn2gC61DCLrTzw8LkpSKel4o+O+gtjbnkevZ18SKkeN3ihRGPuBxjaetWzWg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.21.2':
+ resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-s390x-gnu@4.21.1':
- resolution: {integrity: sha512-z/9rtlGd/OMv+gb1mNSjElasMf9yXusAxnRDrBaYB+eS1shFm6/4/xDH1SAISO5729fFKUkJ88TkGPRUh8WSAA==}
+ '@rollup/rollup-linux-s390x-gnu@4.21.2':
+ resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.21.1':
- resolution: {integrity: sha512-kXQVcWqDcDKw0S2E0TmhlTLlUgAmMVqPrJZR+KpH/1ZaZhLSl23GZpQVmawBQGVhyP5WXIsIQ/zqbDBBYmxm5w==}
+ '@rollup/rollup-linux-x64-gnu@4.21.2':
+ resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.21.1':
- resolution: {integrity: sha512-CbFv/WMQsSdl+bpX6rVbzR4kAjSSBuDgCqb1l4J68UYsQNalz5wOqLGYj4ZI0thGpyX5kc+LLZ9CL+kpqDovZA==}
+ '@rollup/rollup-linux-x64-musl@4.21.2':
+ resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-win32-arm64-msvc@4.21.1':
- resolution: {integrity: sha512-3Q3brDgA86gHXWHklrwdREKIrIbxC0ZgU8lwpj0eEKGBQH+31uPqr0P2v11pn0tSIxHvcdOWxa4j+YvLNx1i6g==}
+ '@rollup/rollup-win32-arm64-msvc@4.21.2':
+ resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.21.1':
- resolution: {integrity: sha512-tNg+jJcKR3Uwe4L0/wY3Ro0H+u3nrb04+tcq1GSYzBEmKLeOQF2emk1whxlzNqb6MMrQ2JOcQEpuuiPLyRcSIw==}
+ '@rollup/rollup-win32-ia32-msvc@4.21.2':
+ resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.21.1':
- resolution: {integrity: sha512-xGiIH95H1zU7naUyTKEyOA/I0aexNMUdO9qRv0bLKN3qu25bBdrxZHqA3PTJ24YNN/GdMzG4xkDcd/GvjuhfLg==}
+ '@rollup/rollup-win32-x64-msvc@4.21.2':
+ resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==}
cpu: [x64]
os: [win32]
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -4348,72 +4409,72 @@ packages:
peerDependencies:
'@svgr/core': '*'
- '@swc/core-darwin-arm64@1.7.2':
- resolution: {integrity: sha512-Zb8KiGaESzOgh5HBnp6Vhs2fRpngHIT81JOfIo0oaGlzAckamnG7UAXC/yK6cQ8q2KXc78utJ/yq/NM2yVKLqw==}
+ '@swc/core-darwin-arm64@1.7.24':
+ resolution: {integrity: sha512-s0k09qAcsoa8jIncwgRRd43VApYqXu28R4OmICtDffV4S01HtsRLRarXsMuLutoZk3tbxqitep+A8MPBuqNgdg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.7.2':
- resolution: {integrity: sha512-qb0HY9GEexpPm46Hb3OY7E6xb4r+eniiThm+0Gcnhf19EZV2ZlsCC8Rdbhmav33x++ZqSDzZ44fxMY2vnN5VDg==}
+ '@swc/core-darwin-x64@1.7.24':
+ resolution: {integrity: sha512-1dlsulJ/fiOoJoJyQgaCewIEaZ7Sh6aJN4r5Uhl4lIZuNWa27XOb28A3K29/6HDO9JML3IJrvXPnl5o0vxDQuQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.7.2':
- resolution: {integrity: sha512-x2+MOK3RzH3yEkaukKtpDW/udM1x9GoYtXaLNqlq6ovAzZPQ9FDFI0pm1asL4akHUw3s7YTh1aUY7QscstJAHQ==}
+ '@swc/core-linux-arm-gnueabihf@1.7.24':
+ resolution: {integrity: sha512-2ft1NmxyvHCu5CY4r2rNVybPqZtJaxpRSzvCcPlVjN/2D5Q3QgM5kBoo1t+0RCFfk4TS2V0KWJhtqKz0CNX62Q==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.7.2':
- resolution: {integrity: sha512-4J3HGEDus7a9xnrJUFGyJJgvj4w+BFGiZvs08xbw4Z1ZN4uHJQiJiDsQEAWWciKUxrOndP3SocUq/GhEGiDm0g==}
+ '@swc/core-linux-arm64-gnu@1.7.24':
+ resolution: {integrity: sha512-v/Z8I9tUUNkNHKa1Sw4r1Q7Wp66ezbRhe6xMIxvPNKVJQFaMOsRpe0t8T5qbk5sV2hJGOCKpQynSpZqQXLcJDQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@swc/core-linux-arm64-musl@1.7.2':
- resolution: {integrity: sha512-4FhQmYbj8SCmir4pHRLSn8IIFmRKHTL3eZFtOpm26RLME7rXL7Yt33DpzIeTRoHFIesI5NEfaR38WU5mY7P1pA==}
+ '@swc/core-linux-arm64-musl@1.7.24':
+ resolution: {integrity: sha512-0jJx0IcajcyOXaJsx1jXy86lYVrbupyy2VUj/OiJux/ic4oBJLjfL+WOuc8T8/hZj2p6X0X4jvfSCqWSuic4kA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@swc/core-linux-x64-gnu@1.7.2':
- resolution: {integrity: sha512-Loz10Hy6z5mBIAOe6OInOVsYu+PVxyknCB3thtr7QH+uqEz6dcXhU2ERrO2Lf4dsTsFs/Wb80rv8zTSwB8dpsw==}
+ '@swc/core-linux-x64-gnu@1.7.24':
+ resolution: {integrity: sha512-2+3aKQpSGjVnWKDTKUPuJzitQlTQrGorg+PVFMRkv6l+RcNCHZQNe/8VYpMhyBhxDMb3LUlbp7776FRevcruxg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@swc/core-linux-x64-musl@1.7.2':
- resolution: {integrity: sha512-8p8qNWaLcTa+qHX4NSv1KNm8BQ6zPoLXuOBo9DtOEqc+K60IISGKPCAS7TJlCcv0q20JnmxZ/cEWW5Qo4TR4XQ==}
+ '@swc/core-linux-x64-musl@1.7.24':
+ resolution: {integrity: sha512-PMQ6SkCtMoj0Ks77DiishpEmIuHpYjFLDuVOzzJCzGeGoii0yRP5lKy/VeglFYLPqJzmhK9BHlpVehVf/8ZpvA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@swc/core-win32-arm64-msvc@1.7.2':
- resolution: {integrity: sha512-eNWAYOalBlFrhv/IVSQ1dxu7qIGuhxlUJZTYa8jsgLnKt93vAFd2cjLtKZ85k1OibBnq9PkKQyo4NKVr4hBavw==}
+ '@swc/core-win32-arm64-msvc@1.7.24':
+ resolution: {integrity: sha512-SNdCa4DtGXNWrPVHqctVUxgEVZVETuqERpqF50KFHO0Bvf5V/m1IJ4hFr2BxXlrzgnIW4t1Dpi6YOJbcGbEmnA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.7.2':
- resolution: {integrity: sha512-BbpaCPCnbQHCzpQ9yDH3qp1Y5Ijd0NSMNk4qqESN2WWx0ojV2uBTjPou5NC2MZxk8fM3iJpJ05enf+IeaXuh6A==}
+ '@swc/core-win32-ia32-msvc@1.7.24':
+ resolution: {integrity: sha512-5p3olHqwibMfrVFg2yVuSIPh9HArDYYlJXNZ9JKqeZk23A19J1pl9MuPmXDw+sxsiPfYJ/nUedIGeUHPF/+EDw==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.7.2':
- resolution: {integrity: sha512-21mf4Jg9Arx0lUnmRQtYd8IQB4WkY4LHJrvcz3EmKbwCTCXI5rQ6Ifnjk7EmG3Tizv0giHqQBQLu5NXWBz45Mg==}
+ '@swc/core-win32-x64-msvc@1.7.24':
+ resolution: {integrity: sha512-gRyPIxDznS8d2ClfmWbytjp2d48bij6swHnDLWhukNuOvXdQkEmaIzjEsionFG/zhcFLnz8zKfTvjEjInAMzxg==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.7.2':
- resolution: {integrity: sha512-mjIlT0e6ygKR8LZ1TjtNrDVMhnB8qpyYAdwexhuVHY255yDdDQCpuPGi20odwnE82QhFBSIWs4HcENDVO/yiMw==}
+ '@swc/core@1.7.24':
+ resolution: {integrity: sha512-FzJaai6z6DYdICAY1UKNN5pzTn296ksK2zzEjjaXlpZtoMkGktWT0ttS7hbdBCPGhLOu5Q9TA2zdPejKUFjgig==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '*'
@@ -4444,181 +4505,181 @@ packages:
peerDependencies:
'@testing-library/dom': '>=7.21.4'
- '@tiptap/core@2.5.7':
- resolution: {integrity: sha512-8fBW+yBRSc2rEDOs6P+53kF0EAmSv17M4ruQBABo18Nt5qIyr/Uo4p+/E4NkV30bKgKI1zyq1dPeznDplSseqQ==}
+ '@tiptap/core@2.6.6':
+ resolution: {integrity: sha512-VO5qTsjt6rwworkuo0s5AqYMfDA0ZwiTiH6FHKFSu2G/6sS7HKcc/LjPq+5Legzps4QYdBDl3W28wGsGuS1GdQ==}
peerDependencies:
- '@tiptap/pm': ^2.5.7
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-blockquote@2.5.7':
- resolution: {integrity: sha512-cSnk5ViQgG6SgKnvJ5qaW47jl5qTN0oADXdcfyaY5XrbCPBGCVq1yRZlUtPU/J0YocZpjNLRRSMPVQ3wya5vtQ==}
+ '@tiptap/extension-blockquote@2.6.6':
+ resolution: {integrity: sha512-hAdsNlMfzzxld154hJqPqtWqO5i4/7HoDfuxmyqBxdMJ+e2UMaIGBGwoLRXG0V9UoRwJusjqlpyD7pIorxNlgA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-bold@2.5.7':
- resolution: {integrity: sha512-1uQjlMVsSo5rIM2ebwmn9LeROBBG6a/EHmCry+H9oKY678sBll5HMRD09o63Q4d4Sg2TB8Dx0VgLOIttVrHWXg==}
+ '@tiptap/extension-bold@2.6.6':
+ resolution: {integrity: sha512-CD6gBhdQtCoqYSmx8oAV8gvKtVOGZSyyvuNYo7by9eZ56DqLYnd7kbUj0RH7o9Ymf/iJTOUJ6XcvrsWwo4lubg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-bubble-menu@2.5.7':
- resolution: {integrity: sha512-gkuBuVGm5YPDRUG5Bscj6IYjDbzM7iJ2aXBGCM1rzuIiwT04twY51dKMIeseXa49uk/AQs/mqt3kGQjgSdSFAw==}
+ '@tiptap/extension-bubble-menu@2.6.6':
+ resolution: {integrity: sha512-IkfmlZq67aaegym5sBddBc/xXWCArxn5WJEl1oxKEayjQhybKSaqI7tk0lOx/x7fa5Ml1WlGpCFh+KKXbQTG0g==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-bullet-list@2.5.7':
- resolution: {integrity: sha512-tPhmgFJR8jJ/rJuoHLu1XjnC1A1NjmewggArWnqgKj8gNkZDEgZSgCt8YbEVwz+9tlEGvI2T9D7PLmRVpWr8nw==}
+ '@tiptap/extension-bullet-list@2.6.6':
+ resolution: {integrity: sha512-WEKxbVSYuvmX2wkHWP8HXk5nzA7stYwtdaubwWH/R17kGI3IGScJuMQ9sEN82uzJU8bfgL9yCbH2bY8Fj/Q4Ow==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-code-block@2.5.7':
- resolution: {integrity: sha512-Nm1Lx+4CxE3q817WcQXR2Vp1ntG4Let7TRpuuI9YUGBmq/7OSm1N+Y7wdRrUcUV9fHCHQFPWQvEv1uW0kFavng==}
+ '@tiptap/extension-code-block@2.6.6':
+ resolution: {integrity: sha512-1YLp/zHMHSkE2xzht8nPR6T4sQJJ3ket798czxWuQEbetFv/l0U/mpiPpYSLObj6oTAoqYZ0kWXZj5eQSpPB8Q==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-code@2.5.7':
- resolution: {integrity: sha512-SMIEamu2y6ROy4mWef+2U5ySwNMYkL25ekFk5O/5ZiB3h3mzt5TMCvsKqJeNy2FcLG0cYXTPK6gHBVT+8bpT9A==}
+ '@tiptap/extension-code@2.6.6':
+ resolution: {integrity: sha512-JrEFKsZiLvfvOFhOnnrpA0TzCuJjDeysfbMeuKUZNV4+DhYOL28d39H1++rEtJAX0LcbBU60oC5/PrlU9SpvRQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-color@2.5.7':
- resolution: {integrity: sha512-Cpk7C+KFPrDegwIk7u25nvPvdNv5HYYZfqxzx57u5dv1dpDxUw5XteZpRSm5NO268auvnatm1LvI3Eq2A6Rp2w==}
+ '@tiptap/extension-color@2.6.6':
+ resolution: {integrity: sha512-aq2XnbWMak1yJxH2EoVKpCjFONRkZcX9D72LvvgOgtDQ62wG3/axZ75bT1B/NNfqlEp7U78Fpqib7jq/uCLYTg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/extension-text-style': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/extension-text-style': ^2.6.6
- '@tiptap/extension-document@2.5.7':
- resolution: {integrity: sha512-tcK6aleya6pmC/ForF/y2PiwPhN5hK8JSm07pcWV9FmP2Qemx26GWS+1u1EzPDeTTbRBvk+9txHGcq9NYZem0Q==}
+ '@tiptap/extension-document@2.6.6':
+ resolution: {integrity: sha512-6qlH5VWzLHHRVeeciRC6C4ZHpMsAGPNG16EF53z0GeMSaaFD/zU3B239QlmqXmLsAl8bpf8Bn93N0t2ABUvScw==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-dropcursor@2.5.7':
- resolution: {integrity: sha512-cXKMZMa6gt/ArLH02FO0qMkLvgacdobRIg2VRNMSA1a5c1S27KukVwYHoWoo40wgBctB/ctl4S0UyH6GFNgL1A==}
+ '@tiptap/extension-dropcursor@2.6.6':
+ resolution: {integrity: sha512-O6CeKriA9uyHsg7Ui4z5ZjEWXQxrIL+1zDekffW0wenGC3G4LUsCzAiFS4LSrR9a3u7tnwqGApW10rdkmCGF4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-floating-menu@2.5.7':
- resolution: {integrity: sha512-tQjNNx0gPb7GxMiozcQ4R1Tl1znmlx/ZkbCF9rqxTzPTD4fnCliqBQAWjtHl98+D8+yEJBcB2DimtP7ztkv2mg==}
+ '@tiptap/extension-floating-menu@2.6.6':
+ resolution: {integrity: sha512-lPkESOfAUxgmXRiNqUU23WSyja5FUfSWjsW4hqe+BKNjsUt1OuFMEtYJtNc+MCGhhtPfFvM3Jg6g9jd6g5XsLQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-gapcursor@2.5.7':
- resolution: {integrity: sha512-vpVeQM2KRbfPmZjiEK+Kh7GvuiZSiECezG5Y3pWb0ZG4ExSCgkmEokWXD3jGpAIprlpbbAP92/D+2inBD4e5Kg==}
+ '@tiptap/extension-gapcursor@2.6.6':
+ resolution: {integrity: sha512-O2lQ2t0X0Vsbn3yLWxFFHrXY6C2N9Y6ZF/M7LWzpcDTUZeWuhoNkFE/1yOM0h6ZX1DO2A9hNIrKpi5Ny8yx+QA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-hard-break@2.5.7':
- resolution: {integrity: sha512-Ki1JV2cz74wo4am8vIY6KWnfiFoE68RVQDIL0/29fNz1oZI46R4VV2Q5IvoVhetXcx7Qe9nTJVqy1vRS//Kcvg==}
+ '@tiptap/extension-hard-break@2.6.6':
+ resolution: {integrity: sha512-bsUuyYBrMDEiudx1dOQSr9MzKv13m0xHWrOK+DYxuIDYJb5g+c9un5cK7Js+et/HEYYSPOoH/iTW6h+4I5YeUg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-heading@2.5.7':
- resolution: {integrity: sha512-UDUxtaslL1YZyKwoE/GzxDsOoQDoqwqhSWwYNTGJrbNA58fFR2h9UeeotMVaDveQlUwegGjqtBbTQ5aOXjzeFw==}
+ '@tiptap/extension-heading@2.6.6':
+ resolution: {integrity: sha512-bgx9vptVFi5yFkIw1OI53J7+xJ71Or3SOe/Q8eSpZv53DlaKpL/TzKw8Z54t1PrI2rJ6H9vrLtkvixJvBZH1Ug==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-highlight@2.5.7':
- resolution: {integrity: sha512-VCH38/PqnmUcvnHX8Ws9LA4HcKcwsaAKZFgxfEVh/3k/pY4+3igxOQfxN2Dw/ooN0XUtMIMs4LqhldwVb8CVYg==}
+ '@tiptap/extension-highlight@2.6.6':
+ resolution: {integrity: sha512-Z02AYWm1AJAfhmfT4fGCI3YitijF4uNu+eiuq7OxhCiVf9IYaq8xlH2YMxa09QvMUo70ovklxk97+vQUUHeqfQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-history@2.5.7':
- resolution: {integrity: sha512-rsCE+pIM2sdcok4uJdq/Z4XK9P4e+2vmzxPadIgOIuXM3z0kYbOVhIpwgyrS5Z9aTE3/TQq5c8/tHP97qwepug==}
+ '@tiptap/extension-history@2.6.6':
+ resolution: {integrity: sha512-tPTzAmPGqMX5Bd5H8lzRpmsaMvB9DvI5Dy2za/VQuFtxgXmDiFVgHRkRXIuluSkPTuANu84XBOQ0cBijqY8x4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-horizontal-rule@2.5.7':
- resolution: {integrity: sha512-pUM+7/Kd2oJ7/QcA0ArbKw6NpN8n0RjdFFudclhdfIe557r0plmEvXSXTD0ZoOIcKgKLHD+pUFB4MgDLPIE9dg==}
+ '@tiptap/extension-horizontal-rule@2.6.6':
+ resolution: {integrity: sha512-cFEfv7euDpuLSe8exY8buwxkreKBAZY9Hn3EetKhPcLQo+ut5Y24chZTxFyf9b+Y0wz3UhOhLTZSz7fTobLqBA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-italic@2.5.7':
- resolution: {integrity: sha512-8tLH4LNWrl8eK741u3Nkrz0ZBqntsU3lvyXKKct1FdfKhLGK6TR0tlFOY86vwvyPzfR3PYBbR319Ye3gzU6w5Q==}
+ '@tiptap/extension-italic@2.6.6':
+ resolution: {integrity: sha512-t7ZPsXqa8nJZZ/6D0rQyZ/KsvzLaSihC6hBTjUQ77CeDGV9PhDWjIcBW4OrvwraJDBd12ETBeQ2CkULJOgH+lQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-link@2.5.7':
- resolution: {integrity: sha512-rxvcdV8H/TiRhR2SZfLHp7hUp5hwBAhkc6PsXEWj8lekG4/5lXGwPSPxLtHMBRtOyeJpXTv9DY6nsCGZuz9x6A==}
+ '@tiptap/extension-link@2.6.6':
+ resolution: {integrity: sha512-NJSR5Yf/dI3do0+Mr6e6nkbxRQcqbL7NOPxo5Xw8VaKs2Oe8PX+c7hyqN3GZgn6uEbZdbVi1xjAniUokouwpFg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-list-item@2.5.7':
- resolution: {integrity: sha512-XRngOvLy0Jnz9KORPucQ0qRR3esjzasM9v8oUaShkuzc5s1QzQGsGshDr4TP0ORZ4FehAkKr+i0CAT3LKOaf0g==}
+ '@tiptap/extension-list-item@2.6.6':
+ resolution: {integrity: sha512-k+oEzZu2cgVKqPqOP1HzASOKLpTEV9m7mRVPAbuaaX8mSyvIgD6f+JUx9PvgYv//D918wk98LMoRBFX53tDJ4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-ordered-list@2.5.7':
- resolution: {integrity: sha512-hRaQ4ln/0j/99aviK9DJyjB/TDaTlpOWUvZM4N6gZOrnF5DEYEixnVBYmjfD4QsdWwoyuNmcs7GTUEFghuk0dA==}
+ '@tiptap/extension-ordered-list@2.6.6':
+ resolution: {integrity: sha512-AJwyfLXIi7iUGnK5twJbwdVVpQyh7fU6OK75h1AwDztzsOcoPcxtffDlZvUOd4ZtwuyhkzYqVkeI0f+abTWZTw==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-paragraph@2.5.7':
- resolution: {integrity: sha512-7zmDE43jv+GMTLuWrztA6oAnYLdUki5fUjYFn0h5FPRHQTuDoxsCD+hX0N/sGQVlc8zl1yn7EYbPNn9rHi7ECw==}
+ '@tiptap/extension-paragraph@2.6.6':
+ resolution: {integrity: sha512-fD/onCr16UQWx+/xEmuFC2MccZZ7J5u4YaENh8LMnAnBXf78iwU7CAcmuc9rfAEO3qiLoYGXgLKiHlh2ZfD4wA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-placeholder@2.5.7':
- resolution: {integrity: sha512-Xjl0sCUlNyVq8HDrf+6n62gPEM3ymPr5d5t0zXjE+NPzfOeOARfiMXW2VB5QYFOsxnCd2MbZAeZ4+RY2sSVaZg==}
+ '@tiptap/extension-placeholder@2.6.6':
+ resolution: {integrity: sha512-J0ZMvF93NsRrt+R7IQ3GhxNq32vq+88g25oV/YFJiwvC48HMu1tQB6kG1I3LJpu5b8lN+LnfANNqDOEhiBfjaA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-strike@2.5.7':
- resolution: {integrity: sha512-8axRRnahDK4ELYy4E1SIh2uj59Wz6fD4r5PM8QgQAnXRGgGDKZMA7Re47oDX3e5t5xa0OrE1WmC0ZqcpvupnZA==}
+ '@tiptap/extension-strike@2.6.6':
+ resolution: {integrity: sha512-Ze8KhGk+wzSJSJRl5fbhTI6AvPu2LmcHYeO3pMEH8u4gV5WTXfmKJVStEIAzkoqvwEQVWzXvy8nDgsFQHiojPg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-task-item@2.5.7':
- resolution: {integrity: sha512-6vWqs5Y1i99+KIELNSLdHI5Jz9h/Ni/gbEV6mZCRXh1ugnPDcls/k0Pnh9OWTmWUJ3VP/ir4lTSWKLG+LotD/w==}
+ '@tiptap/extension-task-item@2.6.6':
+ resolution: {integrity: sha512-fvzy8/TN5sm3A2HSokJzHj5ZvcOAsRdqPS6fPOpmf5dQZ+EIAJrlfyxqb9B6055pNXBbuXcMEXdeU44zCU0YRg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
- '@tiptap/extension-task-list@2.5.7':
- resolution: {integrity: sha512-V881ZHHk0TN6K4vB0uVZ72X88HrYtJbbutlnwC2zUDS5/OafKOty3PxDr/jH7b7n8eL9AmvdlcjrcNaF7/G4FQ==}
+ '@tiptap/extension-task-list@2.6.6':
+ resolution: {integrity: sha512-0N4xCCJZu0PcKoCRDywQngNNW6qlB26hyVJGDGgW53p/2zk5gdlzAA6/NxElO3iSAXKFm0QOWAg/x8E+ggDu4w==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-text-style@2.5.7':
- resolution: {integrity: sha512-jkBNeNbZlPckO1N2i6mOatd54rhl15VuJoH0mMQezbkC7bq65p7GDuW7Px//EmZvgvNlMp0Fe50NurUoA5X28w==}
+ '@tiptap/extension-text-style@2.6.6':
+ resolution: {integrity: sha512-8fO8m0/QI+rFKgZLP28GG2Nz0zhYsYd76O2Y+HsDTmMypJl/cdiNcVOWWffAwXAfMN43BNX7b1VI1XwGAMgYlg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-text@2.5.7':
- resolution: {integrity: sha512-vukhh2K/MsaIIs/UzIAwp44IVxTHPJcAhSsDnmJd4iPlkpjLt1eph77dfxv5awq78bj6mGvnCM0/0F6fW1C6/w==}
+ '@tiptap/extension-text@2.6.6':
+ resolution: {integrity: sha512-e84uILnRzNzcwK1DVQNpXVmBG1Cq3BJipTOIDl1LHifOok7MBjhI/X+/NR0bd3N2t6gmDTWi63+4GuJ5EeDmsg==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/extension-underline@2.5.7':
- resolution: {integrity: sha512-MOGW2ZiKvgUTIg929pNV9yuaLAmmShvNyz+b4B3je/9Ub1Fum7V7Rsqfe+840/OZYx0wprpP3YponPQ8ftQuDg==}
+ '@tiptap/extension-underline@2.6.6':
+ resolution: {integrity: sha512-3A4HqsDM/AFb2VaeWACpGexjgI257kz0yU4jNV8uyydDR2KhqeinuEnoSoOmx9T3pL006TWfPg4vaQYPO3qvrQ==}
peerDependencies:
- '@tiptap/core': ^2.5.7
+ '@tiptap/core': ^2.6.6
- '@tiptap/pm@2.5.7':
- resolution: {integrity: sha512-4Eb4vA4e4vesBAUmZgx+n3xjgJ58uRKKtnhFDJ3Gg+dfpXvtF8FcEwSIjHJsTlNJ8mSrzX/I7S157qPc5wZXVw==}
+ '@tiptap/pm@2.6.6':
+ resolution: {integrity: sha512-56FGLPn3fwwUlIbLs+BO21bYfyqP9fKyZQbQyY0zWwA/AG2kOwoXaRn7FOVbjP6CylyWpFJnpRRmgn694QKHEg==}
- '@tiptap/react@2.5.7':
- resolution: {integrity: sha512-QRMbo6eDtYHBwZ7ATFgKFWLlRZ/Q7NJrBS/Z6FW2lFhr1eM8UhOG6HMEMt/kibMJDJVi1FpXEavgaT75oe2BJg==}
+ '@tiptap/react@2.6.6':
+ resolution: {integrity: sha512-AUmdb/J1O/vCO2b8LL68ctcZr9a3931BwX4fUUZ1kCrCA5lTj2xz0rjeAtpxEdzLnR+Z7q96vB7vf7bPYOUAew==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
- '@tiptap/starter-kit@2.5.7':
- resolution: {integrity: sha512-enurhiMkDkC5J57WdFYUhJzWpw8fCkpJAQkYKZDfRrGXVPn0wiCwXnFtTcsjxZlygabpZA8dQOuCwKF+YS7gxQ==}
+ '@tiptap/starter-kit@2.6.6':
+ resolution: {integrity: sha512-zb9xIg3WjG9AsJoyWrfqx5SL9WH7/HTdkB79jFpWtOF/Kaigo7fHFmhs2FsXtJMJlcdMTO2xeRuCYHt5ozXlhg==}
- '@tiptap/suggestion@2.5.7':
- resolution: {integrity: sha512-js1I1rH8ycDkS9QTJM88W6yihYW9KD28eJcLn6Agh1W2yPo/iJZYAXLdl6oaae/jrT16W6OZRGDaBrNk/7lN3Q==}
+ '@tiptap/suggestion@2.6.6':
+ resolution: {integrity: sha512-jogG0QgGit9UtTznVnhQfNImZfQM89NR0is20yRQzC0HmD8B8f3jmGrotG63Why2oKbeoe3CpM5/5eDE/paqCA==}
peerDependencies:
- '@tiptap/core': ^2.5.7
- '@tiptap/pm': ^2.5.7
+ '@tiptap/core': ^2.6.6
+ '@tiptap/pm': ^2.6.6
'@traptitech/markdown-it-katex@3.6.0':
resolution: {integrity: sha512-CnJzTWxsgLGXFdSrWRaGz7GZ1kUUi8g3E9HzJmeveX1YwVJavrKYqysktfHZQsujdnRqV5O7g8FPKEA/aeTkOQ==}
@@ -4688,8 +4749,8 @@ packages:
'@types/chai-subset@1.3.5':
resolution: {integrity: sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==}
- '@types/chai@4.3.16':
- resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==}
+ '@types/chai@4.3.19':
+ resolution: {integrity: sha512-2hHHvQBVE2FiSK4eN0Br6snX9MtolHaTo/batnLjlGRhoQzlCL61iVpxoqO7SfFyOw+P/pwv+0zNHzKoGWz9Cw==}
'@types/cheerio@0.22.35':
resolution: {integrity: sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==}
@@ -4906,8 +4967,8 @@ packages:
resolution: {integrity: sha512-/s8lFX6rT43hSPqjjD8KNuu0SkPKY7uIdR6u9DCxVqCRhAvfKxGbVOixJsAT2mdpSnCyrGFAGoB39KFh6tmRxw==}
deprecated: This is a stub types definition. http-proxy-middleware provides its own type definitions, so you do not need this installed.
- '@types/http-proxy@1.17.14':
- resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
+ '@types/http-proxy@1.17.15':
+ resolution: {integrity: sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==}
'@types/is-empty@1.2.3':
resolution: {integrity: sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw==}
@@ -5011,8 +5072,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@18.19.42':
- resolution: {integrity: sha512-d2ZFc/3lnK2YCYhos8iaNIYu9Vfhr92nHiyJHRltXWjXUBjEE+A4I58Tdbnw4VhggSW+2j5y5gTrLs4biNnubg==}
+ '@types/node@18.19.50':
+ resolution: {integrity: sha512-xonK+NRrMBRtkL1hVCc3G+uXtjh1Al4opBLjqVmipe5ZAaBYWW6cNAiBVZ1BvmkBhep698rP3UM3aRAdSALuhg==}
'@types/node@20.5.1':
resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==}
@@ -5059,8 +5120,8 @@ packages:
'@types/react-router@5.1.20':
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
- '@types/react-transition-group@4.4.10':
- resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==}
+ '@types/react-transition-group@4.4.11':
+ resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
'@types/react-virtualized@9.21.30':
resolution: {integrity: sha512-4l2TFLQ8BCjNDQlvH85tU6gctuZoEdgYzENQyZHpgTHU7hoLzYgPSOALMAeA58LOWua8AzC6wBivPj1lfl6JgQ==}
@@ -5068,8 +5129,8 @@ packages:
'@types/react@16.14.60':
resolution: {integrity: sha512-wIFmnczGsTcgwCBeIYOuy2mdXEiKZ5znU/jNOnMZPQyCcIxauMGWlX0TNG4lZ7NxRKj7YUIZRneJQSSdB2jKgg==}
- '@types/react@18.3.3':
- resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
+ '@types/react@18.3.5':
+ resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==}
'@types/resolve@1.20.6':
resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==}
@@ -5125,8 +5186,8 @@ packages:
'@types/uglify-js@3.17.5':
resolution: {integrity: sha512-TU+fZFBTBcXj/GpDpDaBmgWk/gn96kMZ+uocaFUlV2f8a6WdMzzI44QBCmGcCiYR0Y6ZlNRiyUyKKt5nl/lbzQ==}
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
'@types/update-notifier@2.5.0':
resolution: {integrity: sha512-YV+ZcSIiv30GhLM7WwxI+bsbcW34d3Yhl2JSFBNFL6qtfsoI9++hogxz+jTqeS86ynKcMUE0AsnLWQynfJnsfA==}
@@ -5156,8 +5217,8 @@ packages:
'@types/webpack@4.41.0':
resolution: {integrity: sha512-tWkdf9nO0zFgAY/EumUKwrDUhraHKDqCPhwfFR/R8l0qnPdgb9le0Gzhvb7uzVpouuDGBgiE//ZdY+5jcZy2TA==}
- '@types/ws@8.5.11':
- resolution: {integrity: sha512-4+q7P5h3SpJxaBft0Dzpbr6lmMaqh0Jr2tbhJZ/luAwvD7ohSCniYkwz/pLxuT2h0EOa6QADgJj1Ko+TzRfZ+w==}
+ '@types/ws@8.5.12':
+ resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -5174,8 +5235,8 @@ packages:
'@types/yargs@16.0.9':
resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==}
- '@types/yargs@17.0.32':
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+ '@types/yargs@17.0.33':
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
'@typescript-eslint/eslint-plugin@4.18.0':
resolution: {integrity: sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ==}
@@ -5341,8 +5402,8 @@ packages:
resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==}
engines: {node: ^16.0.0 || >=18.0.0}
- '@uiw/codemirror-extensions-basic-setup@4.23.0':
- resolution: {integrity: sha512-+k5nkRpUWGaHr1JWT8jcKsVewlXw5qBgSopm9LW8fZ6KnSNZBycz8kHxh0+WSvckmXEESGptkIsb7dlkmJT/hQ==}
+ '@uiw/codemirror-extensions-basic-setup@4.23.1':
+ resolution: {integrity: sha512-l/1iBZt3Ao9ElUvUvA0CI8bLcGw0kgV0976l1u3psYMfKYJl5TwSHn6JOeSt/iCq/13exp1f7u+zFMRwtzeinw==}
peerDependencies:
'@codemirror/autocomplete': '>=6.0.0'
'@codemirror/commands': '>=6.0.0'
@@ -5352,18 +5413,18 @@ packages:
'@codemirror/state': '>=6.0.0'
'@codemirror/view': '>=6.0.0'
- '@uiw/codemirror-theme-github@4.23.0':
- resolution: {integrity: sha512-1pJ9V7LQXoojfgYXgI4yn8CfaYBm9HS919xC32/rs81Wl1lhYEOhiYRmNcpnJQDu9ZMgO8ebPMgAVU21z/C76g==}
+ '@uiw/codemirror-theme-github@4.23.1':
+ resolution: {integrity: sha512-MD8zeZKB46Gzrx8ZFSe2fV28dkdrTputTyBxav5pZpeGtAdsv6/TlZgktBeI68u8/Q/koXlutLlA8dGz7llMJA==}
- '@uiw/codemirror-themes@4.23.0':
- resolution: {integrity: sha512-9fiji9xooZyBQozR1i6iTr56YP7j/Dr/VgsNWbqf5Szv+g+4WM1iZuiDGwNXmFMWX8gbkDzp6ASE21VCPSofWw==}
+ '@uiw/codemirror-themes@4.23.1':
+ resolution: {integrity: sha512-x1qAixI8udRkwXd8WQh8DYD2YE5CulQRCdvGQMKpJtO2cUIVONIagWxfx4CGlTPZ/Vmqr9KX2ziukZgk0kw1VQ==}
peerDependencies:
'@codemirror/language': '>=6.0.0'
'@codemirror/state': '>=6.0.0'
'@codemirror/view': '>=6.0.0'
- '@uiw/react-codemirror@4.23.0':
- resolution: {integrity: sha512-MnqTXfgeLA3fsUUQjqjJgemEuNyoGALgsExVm0NQAllAAi1wfj+IoKFeK+h3XXMlTFRCFYOUh4AHDv0YXJLsOg==}
+ '@uiw/react-codemirror@4.23.1':
+ resolution: {integrity: sha512-OUrBY/7gvmiolgP4m9UlsGAzNce9YEzmDvPPAc+g27q+BZEJYeWQCzqtjtXfL7OkwQcZ0Aea2DuUUZRUTTIyxg==}
peerDependencies:
'@babel/runtime': '>=7.11.0'
'@codemirror/state': '>=6.0.0'
@@ -5373,35 +5434,35 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@umijs/ast@4.3.10':
- resolution: {integrity: sha512-FXR9en9eeQuBSIiA4Jx4WCuwf/mcx4vwQT0tyOEAtxyg3pZULck7HdZAUSZIr0gUscKrIZo6L0NMnwIjpZdBWQ==}
+ '@umijs/ast@4.3.20':
+ resolution: {integrity: sha512-eon62ebNmNp+0Ak6utAtWE8g1DKGYHiTDn132g7kNaPTilRZ2Y/HhNw+ZIb/ngW8h84l/+me7aacCrbyOxNwSw==}
- '@umijs/babel-preset-umi@4.3.10':
- resolution: {integrity: sha512-r+1KFQOZr5Ve6bUS0g757ODQ/AQlpxXpAJ29/PkKbaMzdtvovs4pO+VhI5n0UGeGcXuwq3RTLubmmJYvrwmJcw==}
+ '@umijs/babel-preset-umi@4.3.20':
+ resolution: {integrity: sha512-TM61xOQfcix3wa6guQbOtNS9hY38Pk0Vtdl0Ou7D63CwZuf1q/eQxFW3yUu++LLfZlHoOHbj1eUBEMvW77Tvlg==}
- '@umijs/bundler-esbuild@4.3.10':
- resolution: {integrity: sha512-C/KRa+uROYM8O/P6PewedIfnH9PpJS3XkiApolSnAQTiHoW+aOpQxNJaFVRHPQCScJPh8BPer6ayn0DyxvwxZQ==}
+ '@umijs/bundler-esbuild@4.3.20':
+ resolution: {integrity: sha512-Ga1gH1qhlMSno4nQ3kXxfTy5CQlw3NhhKkG/rqIEW4QUFvz89iCb3I7ZfZmXfh9+zLishVdTPOOHv6ZMubdniA==}
hasBin: true
- '@umijs/bundler-mako@0.7.8':
- resolution: {integrity: sha512-UaysFax/9QHJROhIq9GpG6j/5Z5EmDmhlpqWuPOP7zg3RshFzLWwPrqoMqvs4yrBLNPX0TV3CKUdx3/X8EJ9XQ==}
+ '@umijs/bundler-mako@0.8.11':
+ resolution: {integrity: sha512-sT/m3ey9reTjwp8D/eA/IxiVQHisIlRaNOgWag6feomKaxG+sZGrYcS60nhTTz2KmKCIRNvikHd7galCHN0hfw==}
- '@umijs/bundler-utils@4.3.10':
- resolution: {integrity: sha512-vJi3Crww0sJlPqRotDG61fUNIaN2psaHs4wnf2NSwOFrFM8pEGjxdUO5rD3ai7KAoyTQ48wuPq/1+B2MtFAHpA==}
+ '@umijs/bundler-utils@4.3.20':
+ resolution: {integrity: sha512-lb7xueV6mVHGkZVeYQTOS4I13F+biezhDHttCAWfSpH5ug42TCX8Ykdk/DOUk6XzLZGfu5gNmk3gfsz5HYuLkw==}
- '@umijs/bundler-vite@4.3.10':
- resolution: {integrity: sha512-3zKe0LwX8oXazj/OESBVJlVVz4xlIS/jaFe6okQ+oUJVZUw/4jZfj8eEnq1C+xxPKM/5N8FzqNEwqPuZYzfh2A==}
+ '@umijs/bundler-vite@4.3.20':
+ resolution: {integrity: sha512-tHB4tZmYOyBXOy6PBd+6inJsFP43et0G7X078972sWZ3M7/S3II1DAQ5MGA9/AdCmyxkd2ui09of0QLjNv3HLg==}
hasBin: true
- '@umijs/bundler-webpack@4.3.10':
- resolution: {integrity: sha512-420jiMsaptF4bnUsBQMm8qZ8l5DLPbX4OJZKwjjXA34h/3+MV7XBXPQ95n2npqC3CuwOrA58rCp0x/dl0/XNCA==}
+ '@umijs/bundler-webpack@4.3.20':
+ resolution: {integrity: sha512-M59qCe0A2wEBuBNqAJaCwEHr5lUlJHU8MS4AgQiVl9EYDRcFPJJX5b8XQWXPjW/XaeHVzr3mRPMlspfK7jGoiw==}
hasBin: true
'@umijs/case-sensitive-paths-webpack-plugin@1.0.1':
resolution: {integrity: sha512-kDKJ8yTarxwxGJDInG33hOpaQRZ//XpNuuznQ/1Mscypw6kappzFmrBr2dOYave++K7JHouoANF354UpbEQw0Q==}
- '@umijs/core@4.3.10':
- resolution: {integrity: sha512-Z6ExTE305eBZOImww1ivM61xcG2EVRupgtrB9rgwQXq9HdAwERIcUSMNZr+KnawAnFuFLPKds1ghC51oea4jeg==}
+ '@umijs/core@4.3.20':
+ resolution: {integrity: sha512-h5fsx/vVHwKDVbZulplo+VO1j86ZOWmFq1p1+4RuG1KyuXIdoJdEAQB+9WI5l8dvdE4G7ooToznoM4lZztU94g==}
'@umijs/did-you-know@1.0.3':
resolution: {integrity: sha512-9EZ+rgY9+2HEaE+Z9dGkal2ccw8L4uuz77tCB5WpskW7NBZX5nOj82sqF/shEtA5tU3SWO/Mi4n35K3iONvDtw==}
@@ -5471,48 +5532,74 @@ packages:
'@umijs/history@5.3.1':
resolution: {integrity: sha512-/e0cEGrR2bIWQD7pRl3dl9dcyRGeC9hoW0OCvUTT/hjY0EfUrkd6G8ZanVghPMpDuY5usxq9GVcvrT8KNXLWvA==}
- '@umijs/lint@4.3.10':
- resolution: {integrity: sha512-VENwqwd1W8N9wLoNbECS4K4Q3yqe10OemiFFBdoRHqSXcGWx73kgnAzQTGhB43ak+XhiBPqGG4JLbLc2Y3Gn0Q==}
+ '@umijs/lint@4.3.20':
+ resolution: {integrity: sha512-B0xbIm0BPb3SiqFNg/bjXwrXoXiHQQmJyI5y/woQYW8sM0uC6OUWO6JVuy+B2kJjIAfUGslZAosGXeM911GPMA==}
- '@umijs/mako-darwin-arm64@0.7.8':
- resolution: {integrity: sha512-LlUn0/+1VY7IeksFX9qJ2pr1QfLLMaHgVac7cSfsrqndQqXpMoUsVOkjGgBGQKCvSzl0lb8bX0OOFTDdaiAgMQ==}
+ '@umijs/mako-darwin-arm64@0.8.11':
+ resolution: {integrity: sha512-Kpn2jmDQANlT7St882jmIlfHDzIxZPPUUFcJ4YMbyl4JXujMDFldMSTbdPa8BQAUqRJ8cSR+sv9nM+Ks2mURkA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@umijs/mako-darwin-x64@0.7.8':
- resolution: {integrity: sha512-sSBul8vFahcV1E2LKABJ8Bpwim1r57+xja0d9NZJe3Z8bLF1qA1uNC+wax0GX6xxOobQ2ToEhcekAlB1aRy46w==}
+ '@umijs/mako-darwin-x64@0.8.11':
+ resolution: {integrity: sha512-9XbjhnxD4jkZY0LkDqk075vt3oXuE2z8Oa1MKN4p8noRBbA9JglqIQ9kwcntwyJFTNwsTkMrKX6ZBzM14D1pog==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@umijs/mako-linux-x64-gnu@0.7.8':
- resolution: {integrity: sha512-mIE6Y+/peM9zVxcWyxLuODERlJvxhOPQ0Wyq3XwRXySufZfEEI0ZIWbnvQYtX9NhUCzpPMoq+xZgtSm4cxXeHQ==}
+ '@umijs/mako-linux-arm64-gnu@0.8.11':
+ resolution: {integrity: sha512-rd2HXnFX109kDFTWl41EvbfqoSinsgxg3xc3xNW+0+eCrQfP2hyfWezNEu/kVyrfch8ndhj7koKZLInsJIrLkg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@umijs/mako-linux-arm64-musl@0.8.11':
+ resolution: {integrity: sha512-iuOSNcvB5RCesPGwFk/xrZP380kT7SkPPYSd0BRnSQvfZTnmm/StTD2qMjZX09EXBBQyxveMGScSHRE3uvex+A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@umijs/mako-linux-x64-gnu@0.8.11':
+ resolution: {integrity: sha512-AHn32JR5h7TQgWC2Icxnz3OiwAKs7ECMqw9G1mZpqf+92EcILSR3T7qMzUv8Mkf21IuYc0u9rbMAH41wGLvlbQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@umijs/mako-linux-x64-musl@0.7.8':
- resolution: {integrity: sha512-Rck0+fn0SvD6UUcPOi9ugiaZs+6JKwqn+OlyvqTYfvs1RhXbZ4Xd/UYNbvkkzUGsv3s6o+DHrOozPxrMuBfpJQ==}
+ '@umijs/mako-linux-x64-musl@0.8.11':
+ resolution: {integrity: sha512-GMnjSSR3AubjeFlop40lcYwi454u92jmEPSg/Do94J+e3PVo6upvDJMtdfGJtDLuB9gJSHZ4KPmxxfjH2NYp/w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@umijs/mako@0.7.8':
- resolution: {integrity: sha512-uNTsMY49NrS9ynb2WxXkmjy10RZxVIuTv90j57xjXZtlcqRAgZ+MEuus9hy159quZnEJJ2t69DmegGq4zr7xog==}
+ '@umijs/mako-win32-ia32-msvc@0.8.11':
+ resolution: {integrity: sha512-Eic/cig5dhdBtcKEuZFdGWStILRiU0Bu4l8rNSxjV94t+HHhsbShOOeMk5ToVey6ikzjtUi9R+Bn84z7n+bdvg==}
+ engines: {node: '>= 10'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@umijs/mako-win32-x64-msvc@0.8.11':
+ resolution: {integrity: sha512-q0dcW8OfarGy1rs/ohnBKWQRhzDf///CGPufsukUcmvQ6zcJ+uXTaOomYp+FHW3Shvj9fBnmpYELiKJrtyQdpA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@umijs/mako@0.8.11':
+ resolution: {integrity: sha512-Dwg55zh4RzSMWpv6SO3E1t2cjydjDie6LGQVPamEx3DbIFp6faZSCTY2OKbK5Fii4llsQmZCTl4ZNgvuArZpHQ==}
engines: {node: '>= 16'}
hasBin: true
- '@umijs/mfsu@4.3.10':
- resolution: {integrity: sha512-+/tKySFy+w3td10afBIvtDsDoSlczdq8949zfXqYLFaWDs9VW8gvGEVyXl1JsQqozMVZtdnjDIF3yrgW/PJfYg==}
+ '@umijs/mfsu@4.3.20':
+ resolution: {integrity: sha512-4yb2x/3JGVxbLwZ3Wi2jBxAJsxEaH9I8rXTrMScd9L6K6kr/kg0BA66MBSy/QBuHYdGgvNk7XufPFXsnU6aQXw==}
- '@umijs/plugin-run@4.3.10':
- resolution: {integrity: sha512-8cp7kUktEkEoHIKx7FfD6ZnggMd3DfxhxUJPoKpb9Hrg8OGtPXwb4sy43lw6KX0Qxyx1S2DzQzlEcjup7gusjA==}
+ '@umijs/plugin-run@4.3.20':
+ resolution: {integrity: sha512-LSOwzXQsL7Zh4+TNK83AKXacJMlKhMyka2o9Y8gctaJa00HMGOpcxa/4oKvuKTODOrYtJauv/S0ee3MNlJs6yA==}
- '@umijs/preset-umi@4.3.10':
- resolution: {integrity: sha512-frwBdQowSUX2c/7NBjxbJiQE9Nqa5c3h7VEReWQ+4Q0VSgwzZn0zWIfGodcbozBDBBSvwwWIT+8Cyr3ZNmapsw==}
+ '@umijs/preset-umi@4.3.20':
+ resolution: {integrity: sha512-OzaNed/RdRmXrfeJSN8ZBQX/RrMnD/2rn0JLmLOKSXJskSWzXmfxnyvzW9bc5V1zqjMfYv/QblEMmj46XdO4Zw==}
'@umijs/react-refresh-webpack-plugin@0.5.11':
resolution: {integrity: sha512-RtFvB+/GmjRhpHcqNgnw8iWZpTlxOnmNxi8eDcecxMmxmSgeDj25LV0jr4Q6rOhv3GTIfVGBhkwz+khGT5tfmg==}
@@ -5540,26 +5627,26 @@ packages:
webpack-plugin-serve:
optional: true
- '@umijs/renderer-react@4.3.10':
- resolution: {integrity: sha512-WNr6kseesBSJFPCPIK0eD+ACwF4GJR4H/wPRhhtDOsqKOCUasrUuxq4+Il+htnk6EpoVYP9fcLMTOkLJp1Aigg==}
+ '@umijs/renderer-react@4.3.20':
+ resolution: {integrity: sha512-0xfXItsGWyq9pXf7TdHP8KT9mRF6Zp+9/uF+35xRZexTohGg3VpHXBFxjM0jkC9OHXJvPzUPqBuilEfBq47cgw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
- '@umijs/server@4.3.10':
- resolution: {integrity: sha512-cQigOWIpIt6cUZabXgUW3Ra2SGeVJbUmrFOEm6CpUYXf4QwUwCMhYv3Rgu8nBW6Co9uP5FcyTXEqgpzRccXheg==}
+ '@umijs/server@4.3.20':
+ resolution: {integrity: sha512-53YvhAz2gufjoIum6wPquoPFy4APwnyJFSC5sMNt0WlPtJvoJifNnHZeAsh4bv4wn3L+ASaYEjwaQ2m4vpTDvQ==}
- '@umijs/test@4.3.10':
- resolution: {integrity: sha512-u1IsSPFrm/7Go1+WAtb1ZcDbCUKLxUVoYu7DemOol8FjCTJEJQ2nTKpj1thDyrnlAbAUaCFguPK2IGlxMjlHGQ==}
+ '@umijs/test@4.3.20':
+ resolution: {integrity: sha512-Lc/uK85Y3Whn42DA2NcEmb+8aczcJkvRwMBQqFam5bab26fyVtLHlyMD3FVTO1OGpYcr/9q39IUc7jAR0Jzb0A==}
'@umijs/ui@3.0.1':
resolution: {integrity: sha512-zcz37AJH0xt/6XVVbyO/hmsK9Hq4vH23HZ4KYVi5A8rbM9KeJkJigTS7ELOdArawZhVNGe+h3a5Oixs4a2QsWw==}
- '@umijs/utils@4.3.10':
- resolution: {integrity: sha512-gby6L7gXdOm8otetPCiIUX2vq0erAmfi14I6SHcstKDtd8Ndd33lRGVMMV8djODEBFF9r525Hsp92hopyaWH0Q==}
+ '@umijs/utils@4.3.20':
+ resolution: {integrity: sha512-VXEkQaAQWcm/rss0ggAqwDX9HujMWKRI+DK4GMvPgSzLLBBxqadViBZ248r2Gs5R7TkDVztgRwxT9U5DTc5krA==}
- '@umijs/zod2ts@4.3.10':
- resolution: {integrity: sha512-rVvOvMPaVXHrn3vgPttOKly1Xv3IApJx49WnQO3SxfKxaTROFxCZc+bcPgPv+T545wGzecrUirZYDrNxn6XaOA==}
+ '@umijs/zod2ts@4.3.20':
+ resolution: {integrity: sha512-Zj0OLW+iBDZ1CbtEPiSJP0DNJQWLbrrlFPjP3GEC1h2wA5+FZYeAj65i2uO5o5INrACuV6n60D7z5NigRLQKNw==}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
@@ -5724,8 +5811,8 @@ packages:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
- acorn-walk@8.3.3:
- resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
acorn@5.7.4:
@@ -5773,8 +5860,8 @@ packages:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
- ahooks@3.8.0:
- resolution: {integrity: sha512-M01m+mxLRNNeJ/PCT3Fom26UyreTj6oMqJBetUrJnK4VNI5j6eMA543Xxo53OBXn6XibA2FXKcCCgrT6YCTtKQ==}
+ ahooks@3.8.1:
+ resolution: {integrity: sha512-JoP9+/RWO7MnI/uSKdvQ8WB10Y3oo1PjLv+4Sv4Vpm19Z86VUMdXh+RhWvMGxZZs06sq2p0xVtFk8Oh5ZObsoA==}
engines: {node: '>=8.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -5885,8 +5972,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@2.2.1:
@@ -5921,8 +6008,8 @@ packages:
react: '>=16.7.0'
react-dom: '>=16.7.0'
- antd@5.19.3:
- resolution: {integrity: sha512-rhGI6yyZ4dA2MWl9bfO0MZjtNwWdzITpp3u7pKLiQpTjJYFlpF5wDFgGaG1or3sqyBihvqcO/OF1hSggmWczbQ==}
+ antd@5.20.6:
+ resolution: {integrity: sha512-TZFmNenHlh26DelHCJbkB+x1OVulIKsN1f/CnAd2NxZLysXqRvSuLUeHcgccqAnxTy7B03GZ6i1tocGxPCNjgA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -6197,8 +6284,8 @@ packages:
async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
- async@3.2.5:
- resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -6216,8 +6303,8 @@ packages:
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
engines: {node: '>=8.0.0'}
- autoprefixer@10.4.19:
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
+ autoprefixer@10.4.20:
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -6230,11 +6317,11 @@ packages:
aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
- aws4@1.13.0:
- resolution: {integrity: sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==}
+ aws4@1.13.2:
+ resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
- axios@1.7.2:
- resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==}
+ axios@1.7.7:
+ resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
babel-core@7.0.0-bridge.0:
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
@@ -6302,8 +6389,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -6346,8 +6433,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- babel-preset-current-node-syntax@1.0.1:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
peerDependencies:
'@babel/core': ^7.0.0
@@ -6477,8 +6564,8 @@ packages:
bn.js@5.2.1:
resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
bonjour@3.5.0:
@@ -6547,8 +6634,8 @@ packages:
browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- browserslist@4.23.2:
- resolution: {integrity: sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==}
+ browserslist@4.23.3:
+ resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -6700,8 +6787,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001643:
- resolution: {integrity: sha512-ERgWGNleEilSrHM6iUz/zJNSQTP8Mr21wDWpdgvRwcTXGAq6jMtOUPP4dqFPTdKqZ2wKTdtB+uucZ3MRpAUSmg==}
+ caniuse-lite@1.0.30001660:
+ resolution: {integrity: sha512-GacvNTTuATm26qC74pt+ad1fW15mlQ/zuTzzY1ZoIzECTP8HURDfF43kNxPgf7H1jmelCBQTTbBNxdSXOA7Bqg==}
canvas-confetti@1.9.3:
resolution: {integrity: sha512-rFfTURMvmVEX1gyXFgn5QMn81bYk70qa0HLzcIOSVEyl57n6o9ItHeBtUSWdvKAPY0xlvBHno4/v3QPrT83q9g==}
@@ -6791,9 +6878,9 @@ packages:
cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
- cheerio@1.0.0-rc.12:
- resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
- engines: {node: '>= 6'}
+ cheerio@1.0.0:
+ resolution: {integrity: sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==}
+ engines: {node: '>=18.17'}
chokidar@2.1.8:
resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
@@ -6845,8 +6932,8 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
- cjs-module-lexer@1.3.1:
- resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
+ cjs-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
clamp@1.0.1:
resolution: {integrity: sha512-kgMuFyE78OC6Dyu3Dy7vcx4uy97EIbVxJB/B0eJ3bUNAkwdNcxYzgKltnyADiYwsR7SEqkkUPsEUT//OVS6XMA==}
@@ -7322,11 +7409,11 @@ packages:
copy-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.38.1:
+ resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
- core-js-pure@3.37.1:
- resolution: {integrity: sha512-J/r5JTHSmzTxbiYYrzXg9w1VpqrYt+gexenBE9pugeyhwPZTAEJddyiReJWsLO6uNQ8xJZFbod6XC7KKwatCiA==}
+ core-js-pure@3.38.1:
+ resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
core-js@2.6.12:
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
@@ -7843,8 +7930,8 @@ packages:
dateformat@3.0.3:
resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==}
- dayjs@1.11.12:
- resolution: {integrity: sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==}
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
debug-fabulous@1.1.0:
resolution: {integrity: sha512-GZqvGIgKNlUnHUPQhepnUZFIMoi3dgZKQBzKDeL2g7oJF9SNAji/AAu36dusFUas0O+pae74lNeoIPHqXWDkLg==}
@@ -7891,8 +7978,8 @@ packages:
supports-color:
optional: true
- debug@4.3.5:
- resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -8307,8 +8394,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.2:
- resolution: {integrity: sha512-kc4r3U3V3WLaaZqThjYz/Y6z8tJe+7K0bbjUVo3i+LWIypVdMx5nXCkwRe6SWbY6ILqLdc1rKcKmr3HoH7wjSQ==}
+ electron-to-chromium@1.5.18:
+ resolution: {integrity: sha512-1OfuVACu+zKlmjsNdcJuVQuVE61sZOLbNM4JAQ1Rvh6EOj0/EUKhMJjRH73InPlXSh8HIJk1cVZ8pyOV/FMdUQ==}
element-size@1.1.1:
resolution: {integrity: sha512-eaN+GMOq/Q+BIWy0ybsgpcYImjGIdNLyjLFJU4XsLHXYQao5jCNb36GyN6C2qwmDDYSfIBmKpPpr4VnBdLCsPQ==}
@@ -8316,8 +8403,8 @@ packages:
elementary-circuits-directed-graph@1.3.1:
resolution: {integrity: sha512-ZEiB5qkn2adYmpXGnJKkxT8uJHlW/mxmBpmeqawEHzPxh9HkLD4/1mFYX5l0On+f6rcPIt8/EWlRU2Vo3fX6dQ==}
- elliptic@6.5.6:
- resolution: {integrity: sha512-mpzdtpeCLuS3BmE3pO3Cpp5bbjlOPY2Q0PgoF+Od1XZrHLYI28Xe3ossCmYCQt11FQKEYd9+PF8jymTvtWJSHQ==}
+ elliptic@6.5.7:
+ resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -8344,6 +8431,13 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
+ encoding-sniffer@0.2.0:
+ resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
+
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
@@ -8528,8 +8622,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
escape-html@1.0.3:
@@ -8595,8 +8689,8 @@ packages:
peerDependencies:
eslint: '>=8.0.0'
- eslint-module-utils@2.8.1:
- resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
+ eslint-module-utils@2.11.0:
+ resolution: {integrity: sha512-gbBE5Hitek/oG6MUVj6sFuzEjA/ClzNflVrLovHi/JgLdC7fiN5gLAY1WIPW1a0V5I999MnsrvVrCOGmmVqDBQ==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -8632,8 +8726,8 @@ packages:
'@typescript-eslint/parser':
optional: true
- eslint-plugin-import@2.29.1:
- resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
+ eslint-plugin-import@2.30.0:
+ resolution: {integrity: sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -8691,8 +8785,8 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react-refresh@0.4.9:
- resolution: {integrity: sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA==}
+ eslint-plugin-react-refresh@0.4.11:
+ resolution: {integrity: sha512-wrAKxMbVr8qhXTtIKfXqAn5SAtRZt0aXxe5P23Fh4pUAdC6XEsybGLB8P0PI4j1yYqOgUEUlzKAGDfo7rJOjcw==}
peerDependencies:
eslint: '>=7'
@@ -8708,8 +8802,8 @@ packages:
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- eslint-plugin-react@7.35.0:
- resolution: {integrity: sha512-v501SSMOWv8gerHkk+IIQBkcGRGrO2nfybfj5pLxuJNFTPxxA3PSryhXTK+9pNbtkggheDdsC0E9Q8CuPk6JKA==}
+ eslint-plugin-react@7.35.2:
+ resolution: {integrity: sha512-Rbj2R9zwP2GYNcIak4xoAMV57hrBh3hTaR0k7hVjwCQgryE/pw5px4b13EYjduOI0hfXyZhwBxaGpOTbWSGzKQ==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -8891,8 +8985,8 @@ packages:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ express@4.20.0:
+ resolution: {integrity: sha512-pLdae7I6QqShF5PnNTCVn4hI91Dx0Grkn2+IAsMTgMIKuQVte2dN9PeGSSAME2FR8anOhVA62QDIUaWVfEXVLw==}
engines: {node: '>= 0.10.0'}
ext@1.7.0:
@@ -9130,9 +9224,6 @@ packages:
resolution: {integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==}
engines: {node: '>=6'}
- find-yarn-workspace-root2@1.2.16:
- resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
-
findup-sync@2.0.0:
resolution: {integrity: sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==}
engines: {node: '>= 0.10'}
@@ -9167,15 +9258,15 @@ packages:
flatten-vertex-data@1.0.2:
resolution: {integrity: sha512-BvCBFK2NZqerFTdMDgqfHBwxYWnxeCkwONsw6PvBMcUXqo8U/KDWwmXhqx1x2kLIg7DqIsJfOaJFOmlua3Lxuw==}
- flow-parser@0.241.0:
- resolution: {integrity: sha512-82yKXpz7iWknWFsognZUf5a6mBQLnVrYoYSU9Nbu7FTOpKlu3v9ehpiI9mYXuaIO3J0ojX1b83M/InXvld9HUw==}
+ flow-parser@0.245.2:
+ resolution: {integrity: sha512-FU4yuqC1j2IeWWicpzG0YJrXHJgKjK/AU8QKK/7MvQaNhcoGisDoE7FJLGCtbvnifzsgDWdm9/jtTF7Mp+PJXQ==}
engines: {node: '>=0.4.0'}
flush-write-stream@1.1.1:
resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
- follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -9211,8 +9302,8 @@ packages:
foreachasync@3.0.0:
resolution: {integrity: sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==}
- foreground-child@3.2.1:
- resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==}
+ foreground-child@3.3.0:
+ resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
forever-agent@0.6.1:
@@ -9438,8 +9529,8 @@ packages:
get-tsconfig@4.7.5:
resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==}
- get-tsconfig@4.7.6:
- resolution: {integrity: sha512-ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==}
+ get-tsconfig@4.8.0:
+ resolution: {integrity: sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw==}
get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
@@ -9966,6 +10057,9 @@ packages:
htmlparser2@8.0.2:
resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+ htmlparser2@9.1.0:
+ resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==}
+
http-assert@1.5.0:
resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==}
engines: {node: '>= 0.8'}
@@ -9995,8 +10089,8 @@ packages:
resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==}
engines: {node: '>=4.0.0'}
- http-proxy-middleware@3.0.0:
- resolution: {integrity: sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==}
+ http-proxy-middleware@3.0.2:
+ resolution: {integrity: sha512-fBLFpmvDzlxdckwZRjM0wWtwDZ4KBtQ8NFqhrFKoEtK4myzuiumBuNTxD+F4cVbXfOZljIbrynmvByofDzT7Ag==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
http-proxy@1.18.1:
@@ -10092,8 +10186,8 @@ packages:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
image-size@0.5.5:
@@ -10336,8 +10430,8 @@ packages:
is-color-stop@1.1.0:
resolution: {integrity: sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==}
- is-core-module@2.15.0:
- resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
is-data-descriptor@1.0.1:
@@ -10570,10 +10664,6 @@ packages:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
- is-plain-obj@3.0.0:
- resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
- engines: {node: '>=10'}
-
is-plain-obj@4.1.0:
resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
engines: {node: '>=12'}
@@ -11054,8 +11144,9 @@ packages:
js-base64@2.6.4:
resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==}
- js-cookie@2.2.1:
- resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
+ js-cookie@3.0.5:
+ resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
+ engines: {node: '>=14'}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -11375,8 +11466,8 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lib0@0.2.94:
- resolution: {integrity: sha512-hZ3p54jL4Wpu7IOg26uC7dnEWiMyNlUrb9KoG7+xYs45WkQwpVvKFndVq2+pqLYKe1u8Fp3+zAfZHVvTK34PvQ==}
+ lib0@0.2.97:
+ resolution: {integrity: sha512-Q4d1ekgvufi9FiHkkL46AhecfNjznSL9MRNoJRQ76gBHS9OqU2ArfQK0FvBpuxgWeJeNI0LVgAYMIpsGeX4gYg==}
engines: {node: '>=16'}
hasBin: true
@@ -11503,10 +11594,6 @@ packages:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- load-yaml-file@0.2.0:
- resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
- engines: {node: '>=6'}
-
loader-runner@2.4.0:
resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
@@ -11681,8 +11768,8 @@ packages:
resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- loglevel@1.9.1:
- resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
+ loglevel@1.9.2:
+ resolution: {integrity: sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==}
engines: {node: '>= 0.6.0'}
lolex@5.1.2:
@@ -11749,8 +11836,8 @@ packages:
resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
engines: {node: '>=12'}
- magic-string@0.30.10:
- resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.11:
+ resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
make-dir@1.3.0:
resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
@@ -11838,8 +11925,8 @@ packages:
markdown-table@3.0.3:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
- markdown-to-jsx@7.4.7:
- resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==}
+ markdown-to-jsx@7.5.0:
+ resolution: {integrity: sha512-RrBNcMHiFPcz/iqIj0n3wclzHXjwS7mzjBNWecKKVhNTIxQepIix6Il/wZCn2Cg5Y1ow2Qi84+eJrryFRWBEWw==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
@@ -11960,8 +12047,8 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
- memfs@4.9.4:
- resolution: {integrity: sha512-Xlj8b2rU11nM6+KU6wC7cuWcHQhVINWCUgdPS4Ar9nPxLaOya3RghqK7ALyDW2QtGebYAYs6uEdEVnwPVT942A==}
+ memfs@4.11.1:
+ resolution: {integrity: sha512-LZcMTBAgqUUKNXZagcZxvXXfgF1bHX7Y7nQ0QyEiNbRJgE29GhgPd8Yna1VQcLlPiHt/5RFJMWYN9Uv/VPNvjQ==}
engines: {node: '>= 4.0.0'}
memoizee@0.4.17:
@@ -11993,8 +12080,8 @@ packages:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
engines: {node: '>=10'}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -12136,8 +12223,8 @@ packages:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
miller-rabin@4.0.1:
@@ -12371,8 +12458,8 @@ packages:
native-promise-only@0.8.1:
resolution: {integrity: sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==}
- native-request@1.1.0:
- resolution: {integrity: sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==}
+ native-request@1.1.2:
+ resolution: {integrity: sha512-/etjwrK0J4Ebbcnt35VMWnfiUX/B04uwGJxyJInagxDqf2z5drSt/lsOvEMWGYunz1kaLZAFrV4NDAbOoDKvAQ==}
natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
@@ -12458,8 +12545,8 @@ packages:
resolution: {integrity: sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ==}
engines: {node: '>= 4.5.0'}
- node-gyp-build@4.8.1:
- resolution: {integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==}
+ node-gyp-build@4.8.2:
+ resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
hasBin: true
node-int64@0.4.0:
@@ -12574,8 +12661,8 @@ packages:
'@swc/core':
optional: true
- nypm@0.3.9:
- resolution: {integrity: sha512-BI2SdqqTHg2d4wJh8P9A1W+bslg33vOE9IZDY6eR2QC+Pu1iNBVZUqczrd43rJb+fMzHU7ltAYKsEFY/kHMFcw==}
+ nypm@0.3.11:
+ resolution: {integrity: sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -12866,6 +12953,9 @@ packages:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
+ package-manager-detector@0.2.0:
+ resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==}
+
pako@0.2.9:
resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==}
@@ -12952,6 +13042,9 @@ packages:
parse5-htmlparser2-tree-adapter@7.0.0:
resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
+ parse5-parser-stream@7.1.2:
+ resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
+
parse5@5.1.0:
resolution: {integrity: sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==}
@@ -13039,8 +13132,8 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-to-regexp@0.1.10:
+ resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
path-to-regexp@1.7.0:
resolution: {integrity: sha512-nifX1uj4S9IrK/w3Xe7kKvNEepXivANs9ng60Iq7PU/BlouV3yL/VUhFqTuTq33ykwUqoNcTeGo5vdOBP4jS/Q==}
@@ -13096,8 +13189,8 @@ packages:
picocolors@0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.0:
+ resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
@@ -13161,8 +13254,8 @@ packages:
resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
engines: {node: '>=10'}
- pkg-types@1.1.3:
- resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==}
+ pkg-types@1.2.0:
+ resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
please-upgrade-node@3.2.0:
resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
@@ -13584,8 +13677,8 @@ packages:
peerDependencies:
postcss: ^8.0.3
- postcss-resolve-nested-selector@0.1.4:
- resolution: {integrity: sha512-R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw==}
+ postcss-resolve-nested-selector@0.1.6:
+ resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
postcss-safe-parser@6.0.0:
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
@@ -13606,8 +13699,8 @@ packages:
resolution: {integrity: sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==}
engines: {node: '>=8'}
- postcss-selector-parser@6.1.1:
- resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==}
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
postcss-sorting@7.0.1:
@@ -13675,17 +13768,13 @@ packages:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.4.40:
- resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==}
+ postcss@8.4.45:
+ resolution: {integrity: sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==}
engines: {node: ^10 || ^12 || >=14}
potpack@1.0.2:
resolution: {integrity: sha512-choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ==}
- preferred-pm@3.1.4:
- resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==}
- engines: {node: '>=10'}
-
prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
engines: {node: '>= 0.8.0'}
@@ -13856,8 +13945,8 @@ packages:
prosemirror-menu@1.2.4:
resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==}
- prosemirror-model@1.22.2:
- resolution: {integrity: sha512-I4lS7HHIW47D0Xv/gWmi4iUWcQIDYaJKd8Hk4+lcSps+553FlQrhmxtItpEvTr75iAruhzVShVp6WUwsT6Boww==}
+ prosemirror-model@1.22.3:
+ resolution: {integrity: sha512-V4XCysitErI+i0rKFILGt/xClnFJaohe/wrrlT2NSZ+zk8ggQfDH4x2wNK7Gm0Hp4CIoWizvXFP7L9KMaCuI0Q==}
prosemirror-schema-basic@1.2.3:
resolution: {integrity: sha512-h+H0OQwZVqMon1PNn0AG9cTfx513zgIG2DY00eJ00Yvgb3UD+GQ/VlWW5rcaxacpCGT1Yx8nuhwXk4+QbXUfJA==}
@@ -13868,8 +13957,8 @@ packages:
prosemirror-state@1.4.3:
resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
- prosemirror-tables@1.4.0:
- resolution: {integrity: sha512-fxryZZkQG12fSCNuZDrYx6Xvo2rLYZTbKLRd8rglOPgNJGMKIS8uvTt6gGC38m7UCu/ENnXIP9pEz5uDaPc+cA==}
+ prosemirror-tables@1.5.0:
+ resolution: {integrity: sha512-VMx4zlYWm7aBlZ5xtfJHpqa3Xgu3b7srV54fXYnXgsAcIGRqKSrhiK3f89omzzgaAgAtDOV4ImXnLKhVfheVNQ==}
prosemirror-trailing-node@2.0.9:
resolution: {integrity: sha512-YvyIn3/UaLFlFKrlJB6cObvUhmwFNZVhy1Q8OpW/avoTbD/Y7H5EcjK4AZFKhmuS6/N6WkGgt7gWtBWDnmFvHg==}
@@ -13878,11 +13967,11 @@ packages:
prosemirror-state: ^1.4.2
prosemirror-view: ^1.33.8
- prosemirror-transform@1.9.0:
- resolution: {integrity: sha512-5UXkr1LIRx3jmpXXNKDhv8OyAOeLTGuXNwdVfg8x27uASna/wQkr9p6fD3eupGOi4PLJfbezxTyi/7fSJypXHg==}
+ prosemirror-transform@1.10.0:
+ resolution: {integrity: sha512-9UOgFSgN6Gj2ekQH5CTDJ8Rp/fnKR2IkYfGdzzp5zQMFsS4zDllLVx/+jGcX86YlACpG7UR5fwAXiWzxqWtBTg==}
- prosemirror-view@1.33.9:
- resolution: {integrity: sha512-xV1A0Vz9cIcEnwmMhKKFAOkfIp8XmJRnaZoPqNXrPS7EK5n11Ov8V76KhR0RsfQd/SIzmWY+bg+M44A2Lx/Nnw==}
+ prosemirror-view@1.34.2:
+ resolution: {integrity: sha512-tPX/V2Xd70vrAGQ/V9CppJtPKnQyQMypJGlLylvdI94k6JaG+4P6fVmXPR1zc1eVTW0gq3c6zsfqwJKCRLaG9Q==}
protocol-buffers-schema@3.6.0:
resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==}
@@ -13936,8 +14025,8 @@ packages:
pure-rand@6.1.0:
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
- pyright@1.1.373:
- resolution: {integrity: sha512-ZJSjqnHbeZowUnuAiojZqCLeY1XVzRIc2GvMFFNy/z6YSyJXwChPDQL5Jl2bavTvXNO0ITRmMBVvoKCRN7cc3g==}
+ pyright@1.1.379:
+ resolution: {integrity: sha512-n0X+IMqot6zL5b54vfU9GattS8jM9IOh8TRFho1k/6VoyjrpzQ7TnU6PtZzwEZNJaZi5izoLIDeMnGmbin8n8Q==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -13953,8 +14042,8 @@ packages:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
- qs@6.12.3:
- resolution: {integrity: sha512-AWJm14H1vVaO/iNZ4/hO+HyaTehuy9nRqVdkTqlJt0HWvBiBIEXFmb4C0DGeYo3Xes9rrEW+TxHsaigCbN5ICQ==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
qs@6.5.3:
@@ -14044,8 +14133,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-cascader@3.27.0:
- resolution: {integrity: sha512-z5uq8VvQadFUBiuZJ7YF5UAUGNkZtdEtcEYiIA94N/Kc2MIKr6lEbN5HyVddvYSgwWlKqnL6pH5bFXFuIK3MNg==}
+ rc-cascader@3.28.1:
+ resolution: {integrity: sha512-9+8oHIMWVLHxuaapDiqFNmD9KSyKN/P4bo9x/MBuDbyTqP8f2/POmmZxdXWBO3yq/uE3pKyQCXYNUxrNfHRv2A==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -14092,8 +14181,8 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
- rc-field-form@2.2.1:
- resolution: {integrity: sha512-uoNqDoR7A4tn4QTSqoWPAzrR7ZwOK5I+vuZ/qdcHtbKx+ZjEsTg7QXm2wk/jalDiSksAQmATxL0T5LJkRREdIA==}
+ rc-field-form@2.4.0:
+ resolution: {integrity: sha512-XZ/lF9iqf9HXApIHQHqzJK5v2w4mkUMsVqAzOyWVzoiwwXEavY6Tpuw7HavgzIoD+huVff4JghSGcgEfX6eycg==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
@@ -14105,20 +14194,20 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-input-number@9.1.0:
- resolution: {integrity: sha512-NqJ6i25Xn/AgYfVxynlevIhX3FuKlMwIFpucGG1h98SlK32wQwDK0zhN9VY32McOmuaqzftduNYWWooWz8pXQA==}
+ rc-input-number@9.2.0:
+ resolution: {integrity: sha512-5XZFhBCV5f9UQ62AZ2hFbEY8iZT/dm23Q1kAg0H8EvOgD3UDbYYJAayoVIkM3lQaCqYAW5gV0yV3vjw1XtzWHg==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-input@1.5.1:
- resolution: {integrity: sha512-+nOzQJDeIfIpNP/SgY45LXSKbuMlp4Yap2y8c+ZpU7XbLmNzUd6+d5/S75sA/52jsVE6S/AkhkkDEAOjIu7i6g==}
+ rc-input@1.6.3:
+ resolution: {integrity: sha512-wI4NzuqBS8vvKr8cljsvnTUqItMfG1QbJoxovCgL+DX4eVUcHIjVwharwevIxyy7H/jbLryh+K7ysnJr23aWIA==}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
- rc-mentions@2.14.0:
- resolution: {integrity: sha512-qKR59FMuF8PK4ZqsbWX3UuA5P1M/snzyqV6Yt3y1DCFbCEdqUGIBgQp6vEfLCO6Z0RoRFlzXtCeSlBTcDDpg1A==}
+ rc-mentions@2.15.0:
+ resolution: {integrity: sha512-f5v5i7VdqvBDXbphoqcQWmXDif2Msd2arritVoWybrVDuHE6nQ7XCYsybHbV//WylooK52BFDouFvyaRDtXZEw==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -14167,8 +14256,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-picker@4.6.9:
- resolution: {integrity: sha512-kwQq5xDNJ1VcX7pauLlVBiuQorpZGUwA/YczVJTO1e33YsTyDuVjaQkYAiAupXbEPUBCU3doGZo0J25HGq2ZOQ==}
+ rc-picker@4.6.14:
+ resolution: {integrity: sha512-7DuTfUFdkxmsNpWQ0TWv6FPGna5e6KKC4nxtx3x9xhumLz7jb3fhlDdWQvqEL6tpt9DOb1+N5j+wB+lDOSS9kg==}
engines: {node: '>=8.x'}
peerDependencies:
date-fns: '>= 2.x'
@@ -14212,15 +14301,15 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
- rc-select@14.15.1:
- resolution: {integrity: sha512-mGvuwW1RMm1NCSI8ZUoRoLRK51R2Nb+QJnmiAvbDRcjh2//ulCkxeV6ZRFTECPpE1t2DPfyqZMPw90SVJzQ7wQ==}
+ rc-select@14.15.2:
+ resolution: {integrity: sha512-oNoXlaFmpqXYcQDzcPVLrEqS2J9c+/+oJuGrlXeVVX/gVgrbHa5YcyiRUXRydFjyuA7GP3elRuLF7Y3Tfwltlw==}
engines: {node: '>=8.x'}
peerDependencies:
react: '*'
react-dom: '*'
- rc-slider@10.6.2:
- resolution: {integrity: sha512-FjkoFjyvUQWcBo1F3RgSglky3ar0+qHLM41PlFVYB4Bj3RD8E/Mv7kqMouLFBU+3aFglMzzctAIWRwajEuueSw==}
+ rc-slider@11.1.5:
+ resolution: {integrity: sha512-b77H5PbjMKsvkYXAYIkn50QuFX6ICQmCTibDinI9q+BHx65/TV4TeU25+oadhSRzykxs0/vBWeKBwRyySOeWlg==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
@@ -14260,8 +14349,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-textarea@1.7.0:
- resolution: {integrity: sha512-UxizYJkWkmxP3zofXgc487QiGyDmhhheDLLjIWbFtDmiru1ls30KpO8odDaPyqNUIy9ugj5djxTEuezIn6t3Jg==}
+ rc-textarea@1.8.1:
+ resolution: {integrity: sha512-bm36N2ZqwZAP60ZQg2OY9mPdqWC+m6UTjHc+CqEZOxb3Ia29BGHazY/s5bI8M4113CkqTzhtFUDNA078ZiOx3Q==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -14278,14 +14367,14 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-tree-select@5.22.1:
- resolution: {integrity: sha512-b8mAK52xEpRgS+b2PTapCt29GoIrO5cO8jB7AfHttFsIJfcnynY9FCtnYzURsKXJkGHbFY6UzSEB2I3TETtdWg==}
+ rc-tree-select@5.23.0:
+ resolution: {integrity: sha512-aQGi2tFSRw1WbXv0UVXPzHm09E0cSvUVZMLxQtMv3rnZZpNmdRXWrnd9QkLNlVH31F+X5rgghmdSFF3yZW0N9A==}
peerDependencies:
react: '*'
react-dom: '*'
- rc-tree@5.8.8:
- resolution: {integrity: sha512-S+mCMWo91m5AJqjz3PdzKilGgbFm7fFJRFiTDOcoRbD7UfMOPnerXwMworiga0O2XIo383UoWuEfeHs1WOltag==}
+ rc-tree@5.9.0:
+ resolution: {integrity: sha512-CPrgOvm9d/9E+izTONKSngNzQdIEjMox2PBufWjS1wf7vxtvmCWzK1SlpHbRY6IaBfJIeZ+88RkcIevf729cRg==}
engines: {node: '>=10.x'}
peerDependencies:
react: '*'
@@ -14298,8 +14387,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- rc-upload@4.6.0:
- resolution: {integrity: sha512-Zr0DT1NHw/ApxrP7UAoxOtGaVYuzarrrCVr0ld7RiEFsKX07uFhE1EpCBxwL11ruFn89GMcshOKWp+s6FLyAlA==}
+ rc-upload@4.7.0:
+ resolution: {integrity: sha512-eUwxYNHlsYe5vYhKFAUGrQG95JrnPzY+BmPi1Daq39fWNl/eOc7v4UODuWrVp2LFkQBuV3cMCG/I68iub6oBrg==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -14971,8 +15060,8 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.21.1:
- resolution: {integrity: sha512-ZnYyKvscThhgd3M5+Qt3pmhO4jIRR5RGzaSovB6Q7rGNrK5cUncrtLmcTTJVSdcKXyZjW8X8MB0JMSuH9bcAJg==}
+ rollup@4.21.2:
+ resolution: {integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -15028,8 +15117,8 @@ packages:
safe-regex@1.1.0:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
- safe-stable-stringify@2.4.3:
- resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
+ safe-stable-stringify@2.5.0:
+ resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
engines: {node: '>=10'}
safer-buffer@2.1.2:
@@ -15055,8 +15144,8 @@ packages:
engines: {node: '>=8.9.0'}
hasBin: true
- sass@1.77.8:
- resolution: {integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==}
+ sass@1.78.0:
+ resolution: {integrity: sha512-AaIqGSrjo5lA2Yg7RvFZrlXDBCp3nV4XP73GrLGvdRWWwk+8H3l0SDvq/5bA4eF+0RFPLuWUk3E+P1U/YqnpsQ==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -15157,6 +15246,10 @@ packages:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
+ engines: {node: '>= 0.8.0'}
+
serialize-javascript@4.0.0:
resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
@@ -15164,8 +15257,8 @@ packages:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.0:
+ resolution: {integrity: sha512-pDLK8zwl2eKaYrs8mrPZBJua4hMplRWJ1tIFksVC3FtBEBnl8dxgeHtsaMS8DhS9i4fLObaon6ABoc4/hQGdPA==}
engines: {node: '>= 0.8.0'}
set-blocking@2.0.0:
@@ -15326,8 +15419,8 @@ packages:
source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-resolve@0.5.3:
@@ -15379,8 +15472,8 @@ packages:
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.18:
- resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
+ spdx-license-ids@3.0.20:
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
@@ -15420,8 +15513,8 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- sql-formatter@15.3.2:
- resolution: {integrity: sha512-pNxSMf5DtwhpZ8gUcOGCGZIWtCcyAUx9oLgAtlO4ag7DvlfnETL0BGqXaISc84pNrXvTWmt8Wal1FWKxdTsL3Q==}
+ sql-formatter@15.4.2:
+ resolution: {integrity: sha512-Pw4aAgfuyml/SHMlhbJhyOv+GR+Z1HNb9sgX3CVBVdN5YNM+v2VWkYJ3NNbYS7cu37GY3vP/PgnwoVynCuXRxg==}
hasBin: true
sshpk@1.18.0:
@@ -15697,8 +15790,8 @@ packages:
style-to-object@0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
- styled-components@6.1.12:
- resolution: {integrity: sha512-n/O4PzRPhbYI0k1vKKayfti3C/IGcPf+DqcrOB7O/ab9x4u/zjqraneT5N45+sIe87cxrCApXM8Bna7NYxwoTA==}
+ styled-components@6.1.13:
+ resolution: {integrity: sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==}
engines: {node: '>= 16'}
peerDependencies:
react: '>= 16.8.0'
@@ -15756,8 +15849,8 @@ packages:
peerDependencies:
stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1
- stylelint-scss@6.4.1:
- resolution: {integrity: sha512-+clI2bQC2FPOt06ZwUlXZZ95IO2C5bKTP0GLN1LNQPVvISfSNcgMKv/VTwym1mK9vnqhHbOk8lO4rj4nY7L9pw==}
+ stylelint-scss@6.5.1:
+ resolution: {integrity: sha512-ZLqdqihm6uDYkrsOeD6YWb+stZI8Wn92kUNDhE4M+g9g1aCnRv0JlOrttFiAJJwaNzpdQgX3YJb5vDQXVuO9Ww==}
engines: {node: '>=18.12.0'}
peerDependencies:
stylelint: ^16.0.2
@@ -15770,6 +15863,9 @@ packages:
stylis@4.3.2:
resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
+ stylis@4.3.4:
+ resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==}
+
sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -15813,8 +15909,8 @@ packages:
resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==}
engines: {node: '>=8'}
- supports-hyperlinks@3.0.0:
- resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==}
+ supports-hyperlinks@3.1.0:
+ resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
engines: {node: '>=14.18'}
supports-preserve-symlinks-flag@1.0.0:
@@ -15945,8 +16041,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- terser@5.31.3:
- resolution: {integrity: sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==}
+ terser@5.32.0:
+ resolution: {integrity: sha512-v3Gtw3IzpBJ0ugkxEX8U0W6+TnPKRRCWGh1jC/iM/e3Ki5+qvO1L1EAZ56bZasc64aXHwRHNIQEzm6//i5cemQ==}
engines: {node: '>=10'}
hasBin: true
@@ -16032,8 +16128,8 @@ packages:
tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- tinybench@2.8.0:
- resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
@@ -16119,8 +16215,8 @@ packages:
to-vfile@7.2.4:
resolution: {integrity: sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw==}
- tocbot@4.28.2:
- resolution: {integrity: sha512-/MaSa9xI6mIo84IxqqliSCtPlH0oy7sLcY9s26qPMyH/2CxtZ2vNAXYlIdEQ7kjAkCQnc0rbLygf//F5c663oQ==}
+ tocbot@4.29.0:
+ resolution: {integrity: sha512-E+8+lceJpWHJYKq+qFHbi+gmFdXZeOAliHFdgiIAUo68cr8ClReXAx7h9e3TcDM0kw9PSnBn3GAZEpRmRLZ93g==}
toggle-selection@1.0.6:
resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
@@ -16232,8 +16328,8 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+ tslib@2.7.0:
+ resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
tsscmp@1.0.6:
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
@@ -16382,8 +16478,8 @@ packages:
engines: {node: '>=4.2.0'}
hasBin: true
- typescript@5.5.4:
- resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
+ typescript@5.6.2:
+ resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -16405,8 +16501,8 @@ packages:
engines: {node: '>=0.8.0'}
hasBin: true
- uglify-js@3.19.0:
- resolution: {integrity: sha512-wNKHUY2hYYkf6oSFfhwwiHo4WCHzHmzcXsqXYTN9ja3iApYIFbb2U6ics9hBcYLHcYGQoAlwnZlTrf3oF+BL/Q==}
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -16418,8 +16514,8 @@ packages:
uglify-to-browserify@1.0.2:
resolution: {integrity: sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q==}
- umi@4.3.10:
- resolution: {integrity: sha512-NF8xvQHr/kR9kYqK2Gx8CvU/PP/0raljyzTt+n7fTpv3hRjdGBTnj+AKRIMcJQlmhYVjEaXO7qn+KAsotaEjIQ==}
+ umi@4.3.20:
+ resolution: {integrity: sha512-YofFzcI2JKWZGHcP5SFQyic3f7QUrXhDaOztKzp0A0GiH7Gd65FJt3yWLtvyaq5uMIbkATipZ1u4GP+3kDkBHw==}
engines: {node: '>=14'}
hasBin: true
@@ -16441,6 +16537,10 @@ packages:
undici-types@5.26.5:
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici@6.19.8:
+ resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
+ engines: {node: '>=18.17'}
+
unfetch@5.0.0:
resolution: {integrity: sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg==}
@@ -16559,9 +16659,14 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unplugin@1.12.0:
- resolution: {integrity: sha512-KeczzHl2sATPQUx1gzo+EnUkmN4VmGBYRRVOZSGvGITE9rGHRDGqft6ONceP3vgXcyJ2XjX5axG5jMWUwNCYLw==}
+ unplugin@1.14.0:
+ resolution: {integrity: sha512-cfkZeALGyW7tKYjZbi0G+pn0XnUFa0QvLIeLJEUUlnU0R8YYsBQnt5+h9Eu1B7AB7KETld+UBFI5lOeBL+msoQ==}
engines: {node: '>=14.0.0'}
+ peerDependencies:
+ webpack-sources: ^3
+ peerDependenciesMeta:
+ webpack-sources:
+ optional: true
unquote@1.1.1:
resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
@@ -16628,8 +16733,9 @@ packages:
resolution: {integrity: sha512-dQ9cJzMou5OKr6ZzfvwJkCq3rC72PNXhqz0v3EIhF4a3Np+ujr100AhUx2cKx5ei3iymoJpJrPB3sVSEMdqAeg==}
engines: {node: '>=0.10.0'}
- url@0.11.3:
- resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
+ url@0.11.4:
+ resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
+ engines: {node: '>= 0.4'}
urlgrey@0.4.4:
resolution: {integrity: sha512-vfQzI+JDPBrBRw374pgWi6bFPfc+6BonRsazCj3weBIWe8moRcvfgy0lpaiGkMGnExs4Z/Dws8lp5mc9IegURw==}
@@ -17005,8 +17111,8 @@ packages:
watchpack@1.7.5:
resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==}
- watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
wbuf@1.7.3:
@@ -17049,8 +17155,8 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- webpack-dev-middleware@7.3.0:
- resolution: {integrity: sha512-xD2qnNew+F6KwOGZR7kWdbIou/ud7cVqLEXeK1q0nHcNsX/u7ul/fSdlOTX4ntSL5FNFy7ZJJXbf0piF591JYw==}
+ webpack-dev-middleware@7.4.2:
+ resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.0.0
@@ -17079,10 +17185,6 @@ packages:
webpack-sources@1.4.3:
resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
- webpack-sources@3.2.3:
- resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
- engines: {node: '>=10.13.0'}
-
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
@@ -17116,12 +17218,20 @@ packages:
whatwg-encoding@1.0.5:
resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==}
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
+
whatwg-fetch@3.6.20:
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
whatwg-mimetype@2.3.0:
resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
@@ -17134,8 +17244,8 @@ packages:
which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-builtin-type@1.1.3:
- resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
@@ -17152,10 +17262,6 @@ packages:
resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==}
engines: {node: '>=4'}
- which-pm@2.2.0:
- resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==}
- engines: {node: '>=8.15'}
-
which-typed-array@1.1.15:
resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
engines: {node: '>= 0.4'}
@@ -17367,8 +17473,8 @@ packages:
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
engines: {node: '>= 14'}
- yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
+ yaml@2.5.1:
+ resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
engines: {node: '>= 14'}
hasBin: true
@@ -17426,8 +17532,8 @@ packages:
yeast@0.1.2:
resolution: {integrity: sha512-8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg==}
- yjs@13.6.18:
- resolution: {integrity: sha512-GBTjO4QCmv2HFKFkYIJl7U77hIB1o22vSCSQD1Ge8ZxWbIbn8AltI4gyXbtL+g5/GJep67HCMq3Y5AmNwDSyEg==}
+ yjs@13.6.19:
+ resolution: {integrity: sha512-GNKw4mEUn5yWU2QPHRx8jppxmCm9KzbBhB4qJLUJFiiYD0g/tDVgXQ7aPkyh01YO28kbs2J/BEbWBagjuWyejw==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
ylru@1.4.0:
@@ -17476,9 +17582,17 @@ snapshots:
dependencies:
'@ctrl/tinycolor': 3.6.1
- '@ant-design/cssinjs@1.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@ant-design/cssinjs-utils@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@ant-design/cssinjs': 1.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@ant-design/cssinjs@1.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
classnames: 2.5.1
@@ -17486,7 +17600,11 @@ snapshots:
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- stylis: 4.3.2
+ stylis: 4.3.4
+
+ '@ant-design/fast-color@2.0.6':
+ dependencies:
+ '@babel/runtime': 7.25.6
'@ant-design/icons-svg@4.4.2': {}
@@ -17494,7 +17612,7 @@ snapshots:
dependencies:
'@ant-design/colors': 7.1.0
'@ant-design/icons-svg': 4.4.2
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -17502,7 +17620,7 @@ snapshots:
'@ant-design/react-slick@1.1.2(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
json2mq: 0.2.0
react: 18.3.1
@@ -17519,11 +17637,11 @@ snapshots:
'@antv/algorithm@0.1.26':
dependencies:
'@antv/util': 2.0.17
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/dom-util@2.0.4':
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/event-emitter@0.1.3': {}
@@ -17539,7 +17657,7 @@ snapshots:
d3-interpolate: 3.0.1
d3-timer: 1.0.10
detect-browser: 5.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/g-canvas@0.5.17':
dependencies:
@@ -17549,7 +17667,7 @@ snapshots:
'@antv/path-util': 2.0.15
'@antv/util': 2.0.17
gl-matrix: 3.4.3
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/g-gesture@1.0.1(@antv/g-base@0.5.16)':
dependencies:
@@ -17568,7 +17686,7 @@ snapshots:
'@antv/g-math': 0.1.9
'@antv/util': 2.0.17
detect-browser: 5.3.0
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/g-webgpu-core@0.7.2':
dependencies:
@@ -17603,7 +17721,7 @@ snapshots:
'@antv/path-util': 2.0.15
'@antv/util': 2.0.17
ml-matrix: 6.11.1
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/g6-element@0.8.24(@antv/g6@4.8.24)':
dependencies:
@@ -17611,7 +17729,7 @@ snapshots:
'@antv/g6': 4.8.24
'@antv/g6-core': 0.8.24
'@antv/util': 2.0.17
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/g6-pc@0.8.24(@antv/g6@4.8.24)':
dependencies:
@@ -17626,7 +17744,7 @@ snapshots:
'@antv/g6-core': 0.8.24
'@antv/g6-element': 0.8.24(@antv/g6@4.8.24)
'@antv/g6-plugin': 0.8.24(@antv/g6@4.8.24)
- '@antv/hierarchy': 0.6.12
+ '@antv/hierarchy': 0.6.13
'@antv/layout': 0.3.25(dagre@0.8.5)
'@antv/matrix-util': 3.1.0-beta.3
'@antv/path-util': 2.0.15
@@ -17636,7 +17754,7 @@ snapshots:
dagre: 0.8.5
insert-css: 2.0.0
ml-matrix: 6.11.1
- tslib: 2.6.3
+ tslib: 2.7.0
transitivePeerDependencies:
- '@antv/g6'
@@ -17665,13 +17783,13 @@ snapshots:
dependencies:
'@antv/event-emitter': 0.1.3
- '@antv/hierarchy@0.6.12': {}
+ '@antv/hierarchy@0.6.13': {}
'@antv/layout@0.3.25(dagre@0.8.5)':
dependencies:
'@antv/g-webgpu': 0.7.2
'@antv/graphlib': 1.2.0
- '@antv/util': 3.3.7
+ '@antv/util': 3.3.8
d3-force: 2.1.1
d3-quadtree: 2.0.0
dagre-compound: 0.0.11(dagre@0.8.5)
@@ -17683,19 +17801,19 @@ snapshots:
dependencies:
'@antv/util': 2.0.17
gl-matrix: 3.4.3
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/matrix-util@3.1.0-beta.3':
dependencies:
'@antv/util': 2.0.17
gl-matrix: 3.4.3
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/path-util@2.0.15':
dependencies:
'@antv/matrix-util': 3.0.4
'@antv/util': 2.0.17
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/s2@1.55.8(@antv/g-base@0.5.16)':
dependencies:
@@ -17713,18 +17831,18 @@ snapshots:
dependencies:
'@antv/util': 2.0.17
fecha: 4.2.3
- tslib: 2.6.3
+ tslib: 2.7.0
'@antv/util@2.0.17':
dependencies:
csstype: 3.1.3
- tslib: 2.6.3
+ tslib: 2.7.0
- '@antv/util@3.3.7':
+ '@antv/util@3.3.8':
dependencies:
fast-deep-equal: 3.1.3
gl-matrix: 3.4.3
- tslib: 2.6.3
+ tslib: 2.7.0
'@apidevtools/json-schema-ref-parser@9.0.9':
dependencies:
@@ -17740,22 +17858,22 @@ snapshots:
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
- picocolors: 1.0.1
+ picocolors: 1.1.0
- '@babel/compat-data@7.24.9': {}
+ '@babel/compat-data@7.25.4': {}
'@babel/core@7.12.9':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.12.9)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.6
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.12.9)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 1.9.0
- debug: 4.3.5
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
lodash: 4.17.21
@@ -17769,16 +17887,16 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.17.12)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.6
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.12)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 1.9.0
- debug: 4.3.5
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.0
@@ -17789,36 +17907,36 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.23.6)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.6
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.23.6)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/core@7.24.9':
+ '@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
- '@babel/helpers': 7.24.8
- '@babel/parser': 7.24.8
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.6
+ '@babel/helper-compilation-targets': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
+ '@babel/helpers': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.5
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -17835,78 +17953,74 @@ snapshots:
'@babel/generator@7.2.0':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
jsesc: 2.5.2
lodash: 4.17.21
source-map: 0.5.7
trim-right: 1.0.1
- '@babel/generator@7.24.10':
+ '@babel/generator@7.25.6':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-compilation-targets@7.24.8':
+ '@babel/helper-compilation-targets@7.25.2':
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.4
'@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.2
+ browserslist: 4.23.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.17.12)':
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.12)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/traverse': 7.25.6
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.24.8(@babel/core@7.24.9)':
+ '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/traverse': 7.25.6
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.17.12)':
+ '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
@@ -17914,21 +18028,21 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.5
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.9)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.5
+ debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17936,136 +18050,123 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.24.9
-
- '@babel/helper-function-name@7.24.7':
- dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
-
- '@babel/helper-hoist-variables@7.24.7':
- dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.12.9)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.12.9)':
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-environment-visitor': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.17.12)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-environment-visitor': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.23.6)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.23.6)':
dependencies:
'@babel/core': 7.23.6
- '@babel/helper-environment-visitor': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.24.9(@babel/core@7.24.9)':
+ '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@babel/helper-plugin-utils@7.10.4': {}
'@babel/helper-plugin-utils@7.24.8': {}
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.17.12)':
+ '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-wrap-function': 7.24.7
+ '@babel/helper-wrap-function': 7.25.0
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-wrap-function': 7.24.7
+ '@babel/helper-wrap-function': 7.25.0
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.17.12)':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-environment-visitor': 7.24.7
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.24.7(@babel/core@7.24.9)':
+ '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@babel/helper-string-parser@7.24.8': {}
@@ -18073,45 +18174,51 @@ snapshots:
'@babel/helper-validator-option@7.24.8': {}
- '@babel/helper-wrap-function@7.24.7':
+ '@babel/helper-wrap-function@7.25.0':
dependencies:
- '@babel/helper-function-name': 7.24.7
- '@babel/template': 7.24.7
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.24.8':
+ '@babel/helpers@7.25.6':
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
'@babel/highlight@7.24.7':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
- '@babel/parser@7.24.8':
+ '@babel/parser@7.25.6':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.17.12)':
@@ -18123,27 +18230,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.9)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.17.12)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
@@ -18151,7 +18260,7 @@ snapshots:
'@babel/plugin-proposal-class-properties@7.17.12(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -18159,7 +18268,7 @@ snapshots:
'@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.12)
transitivePeerDependencies:
@@ -18168,9 +18277,9 @@ snapshots:
'@babel/plugin-proposal-decorators@7.17.12(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.12)
'@babel/helper-split-export-declaration': 7.24.7
'@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.17.12)
charcodes: 0.2.0
@@ -18193,7 +18302,7 @@ snapshots:
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-wrap-function': 7.24.7
+ '@babel/helper-wrap-function': 7.25.0
'@babel/plugin-syntax-function-sent': 7.24.7(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
@@ -18231,9 +18340,9 @@ snapshots:
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.12)':
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.4
'@babel/core': 7.17.12
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.12)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.17.12)
@@ -18256,20 +18365,20 @@ snapshots:
'@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.9)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.12)
transitivePeerDependencies:
@@ -18284,7 +18393,7 @@ snapshots:
'@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.17.12)':
@@ -18292,9 +18401,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.17.12)':
@@ -18302,9 +18411,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.17.12)':
@@ -18312,9 +18421,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.17.12)':
@@ -18322,9 +18431,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.17.12)':
@@ -18337,9 +18446,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.17.12)':
@@ -18347,14 +18456,14 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-function-sent@7.24.7(@babel/core@7.17.12)':
@@ -18362,14 +18471,14 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.17.12)':
@@ -18377,9 +18486,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.17.12)':
@@ -18387,9 +18496,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9)':
@@ -18402,9 +18511,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.17.12)':
@@ -18412,9 +18521,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.17.12)':
@@ -18422,9 +18531,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.17.12)':
@@ -18432,9 +18541,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9)':
@@ -18447,9 +18556,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.17.12)':
@@ -18457,9 +18566,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.17.12)':
@@ -18467,9 +18576,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.17.12)':
@@ -18477,9 +18586,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-throw-expressions@7.24.7(@babel/core@7.17.12)':
@@ -18492,25 +18601,25 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.9)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.17.12)':
@@ -18518,18 +18627,18 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-async-generator-functions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-environment-visitor': 7.24.7
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.9)
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
@@ -18538,16 +18647,16 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -18556,62 +18665,58 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-block-scoping@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.24.8(@babel/core@7.17.12)':
+ '@babel/plugin-transform-classes@7.25.4(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.17.12)
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.12)
+ '@babel/traverse': 7.25.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
- '@babel/helper-split-export-declaration': 7.24.7
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/traverse': 7.25.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -18620,34 +18725,34 @@ snapshots:
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.24.7
+ '@babel/template': 7.25.0
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.24.7
+ '@babel/template': 7.25.0
'@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.17.12)':
@@ -18655,16 +18760,22 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.9)
+
+ '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.17.12)':
dependencies:
@@ -18674,25 +18785,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-flow-strip-types@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-for-of@7.24.7(@babel/core@7.17.12)':
dependencies:
@@ -18702,80 +18813,84 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-function-name': 7.24.7
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-function-name@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
- '@babel/helper-function-name': 7.24.7
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/traverse': 7.25.6
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-literals@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-transform-literals@7.25.2(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
'@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.17.12)
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
@@ -18784,53 +18899,53 @@ snapshots:
'@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.17.12)
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.17.12)
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
+ '@babel/traverse': 7.25.6
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.17.12)
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-module-transforms': 7.24.9(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
@@ -18838,13 +18953,13 @@ snapshots:
'@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-new-target@7.24.7(@babel/core@7.17.12)':
@@ -18852,52 +18967,52 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-object-super@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.17.12)':
dependencies:
@@ -18908,12 +19023,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -18927,26 +19042,26 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -18955,9 +19070,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.17.12)':
@@ -18968,28 +19083,28 @@ snapshots:
'@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.17.12)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.17.12)':
+ '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-module-imports': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.17.12)
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
transitivePeerDependencies:
- supports-color
@@ -19005,9 +19120,9 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
@@ -19016,9 +19131,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-runtime@7.17.12(@babel/core@7.17.12)':
@@ -19038,9 +19153,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-spread@7.24.7(@babel/core@7.17.12)':
@@ -19051,9 +19166,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
@@ -19064,9 +19179,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.17.12)':
@@ -19074,9 +19189,9 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.17.12)':
@@ -19084,28 +19199,30 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.17.12)':
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.24.9)':
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.24.8(@babel/core@7.24.9)
+ '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -19114,43 +19231,43 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.17.12)':
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.17.12)
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.24.9)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
'@babel/preset-env@7.17.12(@babel/core@7.17.12)':
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.4
'@babel/core': 7.17.12
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.17.12)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.17.12)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.12)
'@babel/plugin-proposal-class-properties': 7.17.12(@babel/core@7.17.12)
@@ -19184,20 +19301,20 @@ snapshots:
'@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.17.12)
- '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.17.12)
- '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.17.12)
+ '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.17.12)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.17.12)
'@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.17.12)
'@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.17.12)
- '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.17.12)
- '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.17.12)
+ '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.17.12)
+ '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.17.12)
'@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.17.12)
- '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.17.12)
+ '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.17.12)
'@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.17.12)
@@ -19214,108 +19331,110 @@ snapshots:
'@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.17.12)
'@babel/preset-modules': 0.1.6(@babel/core@7.17.12)
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.12)
babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.17.12)
babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.17.12)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.24.8(@babel/core@7.24.9)':
+ '@babel/preset-env@7.25.4(@babel/core@7.25.2)':
dependencies:
- '@babel/compat-data': 7.24.9
- '@babel/core': 7.24.9
- '@babel/helper-compilation-targets': 7.24.8
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.25.2
+ '@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.9)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.9)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.9)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.9)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.9)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-async-generator-functions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-block-scoping': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-classes': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-function-name': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-systemjs': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.9)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.9)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.9)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.9)
- core-js-compat: 3.37.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
+ '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
+ '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.7(@babel/core@7.24.9)':
+ '@babel/preset-flow@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-flow-strip-types': 7.24.7(@babel/core@7.24.9)
+ '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
'@babel/preset-modules@0.1.6(@babel/core@7.17.12)':
dependencies:
@@ -19323,14 +19442,14 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.12)
'@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.17.12)
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
esutils: 2.0.3
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.9)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
esutils: 2.0.3
'@babel/preset-react@7.17.12(@babel/core@7.17.12)':
@@ -19339,7 +19458,7 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
'@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.17.12)
- '@babel/plugin-transform-react-jsx': 7.24.7(@babel/core@7.17.12)
+ '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.17.12)
'@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.17.12)
'@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.17.12)
transitivePeerDependencies:
@@ -19350,24 +19469,24 @@ snapshots:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.17.12)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.17.12)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.9)':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.24.9)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.24.6(@babel/core@7.24.9)':
+ '@babel/register@7.24.6(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -19384,32 +19503,29 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.24.8':
+ '@babel/runtime@7.25.6':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.24.7':
+ '@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
- '@babel/traverse@7.24.8':
+ '@babel/traverse@7.25.6':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/generator': 7.24.10
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-hoist-variables': 7.24.7
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
- debug: 4.3.5
+ '@babel/generator': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.9':
+ '@babel/types@7.25.6':
dependencies:
'@babel/helper-string-parser': 7.24.8
'@babel/helper-validator-identifier': 7.24.7
@@ -19421,40 +19537,39 @@ snapshots:
'@bloomberg/record-tuple-polyfill@0.0.4': {}
- '@bufbuild/buf-darwin-arm64@1.35.1':
+ '@bufbuild/buf-darwin-arm64@1.40.1':
optional: true
- '@bufbuild/buf-darwin-x64@1.35.1':
+ '@bufbuild/buf-darwin-x64@1.40.1':
optional: true
- '@bufbuild/buf-linux-aarch64@1.35.1':
+ '@bufbuild/buf-linux-aarch64@1.40.1':
optional: true
- '@bufbuild/buf-linux-x64@1.35.1':
+ '@bufbuild/buf-linux-x64@1.40.1':
optional: true
- '@bufbuild/buf-win32-arm64@1.35.1':
+ '@bufbuild/buf-win32-arm64@1.40.1':
optional: true
- '@bufbuild/buf-win32-x64@1.35.1':
+ '@bufbuild/buf-win32-x64@1.40.1':
optional: true
- '@bufbuild/buf@1.35.1':
+ '@bufbuild/buf@1.40.1':
optionalDependencies:
- '@bufbuild/buf-darwin-arm64': 1.35.1
- '@bufbuild/buf-darwin-x64': 1.35.1
- '@bufbuild/buf-linux-aarch64': 1.35.1
- '@bufbuild/buf-linux-x64': 1.35.1
- '@bufbuild/buf-win32-arm64': 1.35.1
- '@bufbuild/buf-win32-x64': 1.35.1
+ '@bufbuild/buf-darwin-arm64': 1.40.1
+ '@bufbuild/buf-darwin-x64': 1.40.1
+ '@bufbuild/buf-linux-aarch64': 1.40.1
+ '@bufbuild/buf-linux-x64': 1.40.1
+ '@bufbuild/buf-win32-arm64': 1.40.1
+ '@bufbuild/buf-win32-x64': 1.40.1
- '@changesets/apply-release-plan@7.0.4':
+ '@changesets/apply-release-plan@7.0.5':
dependencies:
- '@babel/runtime': 7.24.8
- '@changesets/config': 3.0.2
+ '@changesets/config': 3.0.3
'@changesets/get-version-range-type': 0.4.0
- '@changesets/git': 3.0.0
- '@changesets/should-skip-package': 0.1.0
+ '@changesets/git': 3.0.1
+ '@changesets/should-skip-package': 0.1.1
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
detect-indent: 6.1.0
@@ -19465,12 +19580,11 @@ snapshots:
resolve-from: 5.0.0
semver: 7.6.3
- '@changesets/assemble-release-plan@6.0.3':
+ '@changesets/assemble-release-plan@6.0.4':
dependencies:
- '@babel/runtime': 7.24.8
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.1
- '@changesets/should-skip-package': 0.1.0
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/should-skip-package': 0.1.1
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
semver: 7.6.3
@@ -19479,116 +19593,107 @@ snapshots:
dependencies:
'@changesets/types': 6.0.0
- '@changesets/cli@2.27.7':
+ '@changesets/cli@2.27.8':
dependencies:
- '@babel/runtime': 7.24.8
- '@changesets/apply-release-plan': 7.0.4
- '@changesets/assemble-release-plan': 6.0.3
+ '@changesets/apply-release-plan': 7.0.5
+ '@changesets/assemble-release-plan': 6.0.4
'@changesets/changelog-git': 0.2.0
- '@changesets/config': 3.0.2
+ '@changesets/config': 3.0.3
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.1
- '@changesets/get-release-plan': 4.0.3
- '@changesets/git': 3.0.0
- '@changesets/logger': 0.1.0
- '@changesets/pre': 2.0.0
- '@changesets/read': 0.6.0
- '@changesets/should-skip-package': 0.1.0
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/get-release-plan': 4.0.4
+ '@changesets/git': 3.0.1
+ '@changesets/logger': 0.1.1
+ '@changesets/pre': 2.0.1
+ '@changesets/read': 0.6.1
+ '@changesets/should-skip-package': 0.1.1
'@changesets/types': 6.0.0
- '@changesets/write': 0.3.1
+ '@changesets/write': 0.3.2
'@manypkg/get-packages': 1.1.3
'@types/semver': 7.5.8
ansi-colors: 4.1.3
- chalk: 2.4.2
ci-info: 3.9.0
enquirer: 2.4.1
external-editor: 3.1.0
fs-extra: 7.0.1
- human-id: 1.0.2
mri: 1.2.0
outdent: 0.5.0
p-limit: 2.3.0
- preferred-pm: 3.1.4
+ package-manager-detector: 0.2.0
+ picocolors: 1.1.0
resolve-from: 5.0.0
semver: 7.6.3
spawndamnit: 2.0.0
term-size: 2.2.1
- '@changesets/config@3.0.2':
+ '@changesets/config@3.0.3':
dependencies:
'@changesets/errors': 0.2.0
- '@changesets/get-dependents-graph': 2.1.1
- '@changesets/logger': 0.1.0
+ '@changesets/get-dependents-graph': 2.1.2
+ '@changesets/logger': 0.1.1
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
'@changesets/errors@0.2.0':
dependencies:
extendable-error: 0.1.7
- '@changesets/get-dependents-graph@2.1.1':
+ '@changesets/get-dependents-graph@2.1.2':
dependencies:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
- chalk: 2.4.2
- fs-extra: 7.0.1
+ picocolors: 1.1.0
semver: 7.6.3
- '@changesets/get-release-plan@4.0.3':
+ '@changesets/get-release-plan@4.0.4':
dependencies:
- '@babel/runtime': 7.24.8
- '@changesets/assemble-release-plan': 6.0.3
- '@changesets/config': 3.0.2
- '@changesets/pre': 2.0.0
- '@changesets/read': 0.6.0
+ '@changesets/assemble-release-plan': 6.0.4
+ '@changesets/config': 3.0.3
+ '@changesets/pre': 2.0.1
+ '@changesets/read': 0.6.1
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
'@changesets/get-version-range-type@0.4.0': {}
- '@changesets/git@3.0.0':
+ '@changesets/git@3.0.1':
dependencies:
- '@babel/runtime': 7.24.8
'@changesets/errors': 0.2.0
- '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
spawndamnit: 2.0.0
- '@changesets/logger@0.1.0':
+ '@changesets/logger@0.1.1':
dependencies:
- chalk: 2.4.2
+ picocolors: 1.1.0
'@changesets/parse@0.4.0':
dependencies:
'@changesets/types': 6.0.0
js-yaml: 3.14.1
- '@changesets/pre@2.0.0':
+ '@changesets/pre@2.0.1':
dependencies:
- '@babel/runtime': 7.24.8
'@changesets/errors': 0.2.0
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
- '@changesets/read@0.6.0':
+ '@changesets/read@0.6.1':
dependencies:
- '@babel/runtime': 7.24.8
- '@changesets/git': 3.0.0
- '@changesets/logger': 0.1.0
+ '@changesets/git': 3.0.1
+ '@changesets/logger': 0.1.1
'@changesets/parse': 0.4.0
'@changesets/types': 6.0.0
- chalk: 2.4.2
fs-extra: 7.0.1
p-filter: 2.1.0
+ picocolors: 1.1.0
- '@changesets/should-skip-package@0.1.0':
+ '@changesets/should-skip-package@0.1.1':
dependencies:
- '@babel/runtime': 7.24.8
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
@@ -19596,9 +19701,8 @@ snapshots:
'@changesets/types@6.0.0': {}
- '@changesets/write@0.3.1':
+ '@changesets/write@0.3.2':
dependencies:
- '@babel/runtime': 7.24.8
'@changesets/types': 6.0.0
fs-extra: 7.0.1
human-id: 1.0.2
@@ -19613,65 +19717,65 @@ snapshots:
exec-sh: 0.3.6
minimist: 1.2.8
- '@codemirror/autocomplete@6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)':
+ '@codemirror/autocomplete@6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)':
dependencies:
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@lezer/common': 1.2.1
- '@codemirror/commands@6.6.0':
+ '@codemirror/commands@6.6.1':
dependencies:
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@lezer/common': 1.2.1
- '@codemirror/lang-css@6.2.1(@codemirror/view@6.29.0)':
+ '@codemirror/lang-css@6.3.0(@codemirror/view@6.33.0)':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
'@lezer/common': 1.2.1
- '@lezer/css': 1.1.8
+ '@lezer/css': 1.1.9
transitivePeerDependencies:
- '@codemirror/view'
'@codemirror/lang-html@6.4.9':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
- '@codemirror/lang-css': 6.2.1(@codemirror/view@6.29.0)
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.33.0)
'@codemirror/lang-javascript': 6.2.2
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@lezer/common': 1.2.1
- '@lezer/css': 1.1.8
+ '@lezer/css': 1.1.9
'@lezer/html': 1.3.10
'@codemirror/lang-javascript@6.2.2':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.2
'@codemirror/lint': 6.8.1
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@lezer/common': 1.2.1
'@lezer/javascript': 1.4.17
'@codemirror/lang-markdown@6.2.5':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
'@codemirror/lang-html': 6.4.9
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@lezer/common': 1.2.1
- '@lezer/markdown': 1.3.0
+ '@lezer/markdown': 1.3.1
- '@codemirror/lang-python@6.1.6(@codemirror/view@6.29.0)':
+ '@codemirror/lang-python@6.1.6(@codemirror/view@6.33.0)':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
'@lezer/common': 1.2.1
@@ -19682,22 +19786,22 @@ snapshots:
'@codemirror/language@6.10.2':
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.1
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
style-mod: 4.1.2
'@codemirror/lint@6.8.1':
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
crelt: 1.0.6
'@codemirror/search@6.5.6':
dependencies:
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
crelt: 1.0.6
'@codemirror/state@6.4.1': {}
@@ -19706,10 +19810,10 @@ snapshots:
dependencies:
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
- '@lezer/highlight': 1.2.0
+ '@codemirror/view': 6.33.0
+ '@lezer/highlight': 1.2.1
- '@codemirror/view@6.29.0':
+ '@codemirror/view@6.33.0':
dependencies:
'@codemirror/state': 6.4.1
style-mod: 4.1.2
@@ -19718,11 +19822,11 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@17.8.1(@swc/core@1.7.2(@swc/helpers@0.5.1))':
+ '@commitlint/cli@17.8.1(@swc/core@1.7.24)':
dependencies:
'@commitlint/format': 17.8.1
'@commitlint/lint': 17.8.1
- '@commitlint/load': 17.8.1(@swc/core@1.7.2(@swc/helpers@0.5.1))
+ '@commitlint/load': 17.8.1(@swc/core@1.7.24)
'@commitlint/read': 17.8.1
'@commitlint/types': 17.8.1
execa: 5.1.1
@@ -19807,7 +19911,7 @@ snapshots:
babel-runtime: 6.26.0
lodash: 4.17.21
- '@commitlint/load@17.8.1(@swc/core@1.7.2(@swc/helpers@0.5.1))':
+ '@commitlint/load@17.8.1(@swc/core@1.7.24)':
dependencies:
'@commitlint/config-validator': 17.8.1
'@commitlint/execute-rule': 17.8.1
@@ -19815,14 +19919,14 @@ snapshots:
'@commitlint/types': 17.8.1
'@types/node': 20.5.1
chalk: 4.1.2
- cosmiconfig: 8.3.6(typescript@5.5.4)
- cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.5.4))(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@20.5.1)(typescript@5.5.4))(typescript@5.5.4)
+ cosmiconfig: 8.3.6(typescript@5.6.2)
+ cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.6.2))(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@20.5.1)(typescript@5.6.2))(typescript@5.6.2)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@20.5.1)(typescript@5.5.4)
- typescript: 5.5.4
+ ts-node: 10.9.2(@swc/core@1.7.24)(@types/node@20.5.1)(typescript@5.6.2)
+ typescript: 5.6.2
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
@@ -19930,66 +20034,66 @@ snapshots:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1)
'@csstools/css-tokenizer': 2.4.1
- '@csstools/postcss-color-function@1.1.1(postcss@8.4.40)':
+ '@csstools/postcss-color-function@1.1.1(postcss@8.4.45)':
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.40)
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.45)
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.40)':
+ '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.45)':
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.40)':
+ '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.45)':
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.40)':
+ '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.45)':
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.40)
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.45)
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.40)':
+ '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.45)':
dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.1)
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
- '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.40)':
+ '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.45)':
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.40)':
+ '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.45)':
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.40)
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.45)
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.40)':
+ '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.45)':
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.40)':
+ '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.45)':
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- '@csstools/postcss-unset-value@1.0.2(postcss@8.4.40)':
+ '@csstools/postcss-unset-value@1.0.2(postcss@8.4.45)':
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.1)':
+ '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.1.2)':
dependencies:
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
- '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.1)':
+ '@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.2)':
dependencies:
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
'@ctrl/tinycolor@3.6.1': {}
@@ -20013,11 +20117,11 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- '@difizen/libro-code-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-code-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
@@ -20028,11 +20132,11 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-code-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-code-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
@@ -20065,24 +20169,24 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-codemirror@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-codemirror@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
- '@codemirror/commands': 6.6.0
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
+ '@codemirror/commands': 6.6.1
'@codemirror/lang-markdown': 6.2.5
- '@codemirror/lang-python': 6.1.6(@codemirror/view@6.29.0)
+ '@codemirror/lang-python': 6.1.6(@codemirror/view@6.33.0)
'@codemirror/language': 6.10.2
'@codemirror/lint': 6.8.1
'@codemirror/search': 6.5.6
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-rendermime': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
+ '@lezer/highlight': 1.2.1
highlight.js: 11.10.0
markdown-it: 13.0.2
uuid: 9.0.1
@@ -20096,24 +20200,24 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-codemirror@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-codemirror@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
- '@codemirror/commands': 6.6.0
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
+ '@codemirror/commands': 6.6.1
'@codemirror/lang-markdown': 6.2.5
- '@codemirror/lang-python': 6.1.6(@codemirror/view@6.29.0)
+ '@codemirror/lang-python': 6.1.6(@codemirror/view@6.33.0)
'@codemirror/language': 6.10.2
'@codemirror/lint': 6.8.1
'@codemirror/search': 6.5.6
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-rendermime': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
+ '@lezer/highlight': 1.2.1
highlight.js: 11.10.0
markdown-it: 13.0.2
uuid: 9.0.1
@@ -20148,7 +20252,7 @@ snapshots:
'@difizen/libro-cofine-editor-contribution': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/monaco-editor-core': 0.39.4
- debug: 4.3.5
+ debug: 4.3.7
reflect-metadata: 0.1.14
transitivePeerDependencies:
- react
@@ -20160,21 +20264,21 @@ snapshots:
'@difizen/libro-cofine-editor-contribution': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/monaco-editor-core': 0.39.4
- debug: 4.3.5
+ debug: 4.3.7
reflect-metadata: 0.1.14
transitivePeerDependencies:
- react
- react-dom
- supports-color
- '@difizen/libro-cofine-editor@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-cofine-editor@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-cofine-editor-core': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-cofine-textmate': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/monaco-editor-core': 0.39.4
react: 18.3.1
@@ -20189,14 +20293,14 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-cofine-editor@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-cofine-editor@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-cofine-editor-core': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-cofine-textmate': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/monaco-editor-core': 0.39.4
react: 18.3.1
@@ -20257,7 +20361,7 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-core@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-core@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -20267,12 +20371,12 @@ snapshots:
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-l10n': 0.1.23(react@18.3.1)
'@difizen/mana-react': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
- dayjs: 1.11.12
+ dayjs: 1.11.13
dnd-core: 16.0.1
react: 18.3.1
- react-dnd: 16.0.1(@types/node@20.5.1)(@types/react@18.3.3)(react@18.3.1)
+ react-dnd: 16.0.1(@types/node@20.5.1)(@types/react@18.3.5)(react@18.3.1)
react-dnd-html5-backend: 16.0.1
resize-observer-polyfill: 1.5.1
uuid: 9.0.1
@@ -20283,7 +20387,7 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-core@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-core@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -20293,12 +20397,12 @@ snapshots:
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-l10n': 0.1.23(react@18.3.1)
'@difizen/mana-react': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
- dayjs: 1.11.12
+ dayjs: 1.11.13
dnd-core: 16.0.1
react: 18.3.1
- react-dnd: 16.0.1(@types/node@20.5.1)(@types/react@18.3.3)(react@18.3.1)
+ react-dnd: 16.0.1(@types/node@20.5.1)(@types/react@18.3.5)(react@18.3.1)
react-dnd-html5-backend: 16.0.1
resize-observer-polyfill: 1.5.1
uuid: 9.0.1
@@ -20309,32 +20413,32 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-jupyter@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(mapbox-gl@1.13.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-jupyter@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/colors': 7.1.0
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-code-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-code-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-codemirror': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-cofine-editor': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-codemirror': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-cofine-editor': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-kernel': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-l10n': 0.1.37(react@18.3.1)
- '@difizen/libro-language-client': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-markdown-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-output': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-raw-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-rendermime': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-search': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-search-code-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-language-client': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-markdown-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-output': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-raw-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search-code-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-l10n': 0.1.23(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
moment: 2.30.1
- plotly.js: 2.34.0(mapbox-gl@1.13.3)
+ plotly.js: 2.34.0
react: 18.3.1
transitivePeerDependencies:
- '@types/hoist-non-react-statics'
@@ -20344,29 +20448,29 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-jupyter@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(mapbox-gl@1.13.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-jupyter@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(mapbox-gl@1.13.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/colors': 7.1.0
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-code-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-code-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-codemirror': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-cofine-editor': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-codemirror': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-cofine-editor': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-kernel': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-l10n': 0.2.24(react@18.3.1)
- '@difizen/libro-language-client': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-markdown-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-output': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-raw-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-rendermime': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-search': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-search-code-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-language-client': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-markdown-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-output': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-raw-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search-code-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-l10n': 0.1.23(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
moment: 2.30.1
plotly.js: 2.34.0(mapbox-gl@1.13.3)
@@ -20379,10 +20483,10 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-kernel@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-kernel@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
minimist: 1.2.8
query-string: 8.2.0
@@ -20396,10 +20500,10 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-kernel@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-kernel@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
minimist: 1.2.8
query-string: 8.2.0
@@ -20425,13 +20529,13 @@ snapshots:
transitivePeerDependencies:
- react
- '@difizen/libro-language-client@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-language-client@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-kernel': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-common': 0.1.23
'@difizen/monaco-editor-core': 0.39.4
@@ -20449,13 +20553,13 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-language-client@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-language-client@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-kernel': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-lsp': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-common': 0.1.23
'@difizen/monaco-editor-core': 0.39.4
@@ -20473,12 +20577,12 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-lsp@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-lsp@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-kernel': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash.mergewith: 4.6.2
react: 18.3.1
@@ -20494,12 +20598,12 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-lsp@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-lsp@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-kernel': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-kernel': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash.mergewith: 4.6.2
react: 18.3.1
@@ -20515,11 +20619,11 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-markdown-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-markdown-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-markdown': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/markdown-it': 12.2.3
@@ -20534,11 +20638,11 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-markdown-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-markdown-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-markdown': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/markdown-it': 12.2.3
@@ -20577,13 +20681,13 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-output@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-output@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-rendermime': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
markdown-it: 13.0.2
react: 18.3.1
transitivePeerDependencies:
@@ -20593,13 +20697,13 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-output@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-output@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-rendermime': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-rendermime': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
markdown-it: 13.0.2
react: 18.3.1
transitivePeerDependencies:
@@ -20609,11 +20713,11 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-raw-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-raw-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
@@ -20624,11 +20728,11 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-raw-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-raw-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
@@ -20639,10 +20743,10 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-rendermime@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-rendermime@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-markdown': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash.escape: 4.0.1
@@ -20655,10 +20759,10 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-rendermime@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-rendermime@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-markdown': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash.escape: 4.0.1
@@ -20671,13 +20775,13 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-search-code-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-search-code-cell@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@difizen/libro-code-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-code-cell': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-search': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- '@types/hoist-non-react-statics'
@@ -20688,13 +20792,13 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-search-code-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-search-code-cell@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@difizen/libro-code-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-code-cell': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-search': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-search': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- '@types/hoist-non-react-statics'
@@ -20705,16 +20809,16 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-search@0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-search@0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.1.37(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-l10n': 0.1.23(react@18.3.1)
'@types/lodash.debounce': 4.0.9
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
lodash.debounce: 4.0.8
react: 18.3.1
@@ -20726,16 +20830,16 @@ snapshots:
- react-dom
- supports-color
- '@difizen/libro-search@0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@difizen/libro-search@0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-code-editor': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.3)(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@difizen/libro-core': 0.2.24(@types/node@20.5.1)(@types/react@18.3.5)(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-l10n': 0.1.23(react@18.3.1)
'@types/lodash.debounce': 4.0.9
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
lodash.debounce: 4.0.8
react: 18.3.1
@@ -20752,8 +20856,8 @@ snapshots:
'@difizen/libro-common': 0.1.37(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
uuid: 9.0.1
- y-protocols: 1.0.6(yjs@13.6.18)
- yjs: 13.6.18
+ y-protocols: 1.0.6(yjs@13.6.19)
+ yjs: 13.6.19
transitivePeerDependencies:
- react
- react-dom
@@ -20764,8 +20868,8 @@ snapshots:
'@difizen/libro-common': 0.2.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@difizen/mana-app': 0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
uuid: 9.0.1
- y-protocols: 1.0.6(yjs@13.6.18)
- yjs: 13.6.18
+ y-protocols: 1.0.6(yjs@13.6.19)
+ yjs: 13.6.19
transitivePeerDependencies:
- react
- react-dom
@@ -20785,32 +20889,6 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@difizen/mana-app@0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/mana-common': 0.1.19
- '@difizen/mana-core': 0.1.19(react@18.3.1)
- '@difizen/mana-l10n': 0.1.19(react@18.3.1)
- '@difizen/mana-observable': 0.1.19(react@18.3.1)
- '@difizen/mana-react': 0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/mana-syringe': 0.1.19
- '@types/lodash.debounce': 4.0.3
- '@types/react-virtualized': 9.21.30
- classnames: 2.5.1
- debug: 4.3.5
- file-icons-js: 1.0.3
- font-awesome: 4.7.0
- lodash.debounce: 4.0.8
- perfect-scrollbar: 1.5.5
- rc-tooltip: 5.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-virtualized: 9.22.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- uuid: 9.0.1
- vscode-uri: 2.1.2
- transitivePeerDependencies:
- - supports-color
-
'@difizen/mana-app@0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -20823,7 +20901,7 @@ snapshots:
'@types/lodash.debounce': 4.0.3
'@types/react-virtualized': 9.21.30
classnames: 2.5.1
- debug: 4.3.5
+ debug: 4.3.7
file-icons-js: 1.0.3
font-awesome: 4.7.0
lodash.debounce: 4.0.8
@@ -20837,55 +20915,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@difizen/mana-common@0.1.19':
- dependencies:
- path-browserify: 1.0.1
-
'@difizen/mana-common@0.1.23':
dependencies:
path-browserify: 1.0.1
- '@difizen/mana-core@0.1.19(react@18.3.1)':
- dependencies:
- '@difizen/mana-common': 0.1.19
- '@difizen/mana-observable': 0.1.19(react@18.3.1)
- '@difizen/mana-syringe': 0.1.19
- ajv: 8.17.1
- debug: 4.3.5
- resize-observer-polyfill: 1.5.1
- vscode-uri: 2.1.2
- transitivePeerDependencies:
- - react
- - supports-color
-
'@difizen/mana-core@0.1.23(react@18.3.1)':
dependencies:
'@difizen/mana-common': 0.1.23
'@difizen/mana-observable': 0.1.23(react@18.3.1)
'@difizen/mana-syringe': 0.1.23
ajv: 8.17.1
- debug: 4.3.5
+ debug: 4.3.7
resize-observer-polyfill: 1.5.1
vscode-uri: 2.1.2
transitivePeerDependencies:
- react
- supports-color
- '@difizen/mana-l10n@0.1.19(react@18.3.1)':
- dependencies:
- react: 18.3.1
-
'@difizen/mana-l10n@0.1.23(react@18.3.1)':
dependencies:
react: 18.3.1
- '@difizen/mana-observable@0.1.19(react@18.3.1)':
- dependencies:
- '@difizen/mana-common': 0.1.19
- '@difizen/mana-syringe': 0.1.19
- react: 18.3.1
- reflect-metadata: 0.1.14
-
'@difizen/mana-observable@0.1.23(react@18.3.1)':
dependencies:
'@difizen/mana-common': 0.1.23
@@ -20893,17 +20943,6 @@ snapshots:
react: 18.3.1
reflect-metadata: 0.1.14
- '@difizen/mana-react@0.1.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@difizen/mana-common': 0.1.19
- classnames: 2.5.1
- rc-dropdown: 3.6.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-tabs: 11.16.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-util: 4.21.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
-
'@difizen/mana-react@0.1.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -20917,12 +20956,6 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@difizen/mana-syringe@0.1.19':
- dependencies:
- '@difizen/mana-common': 0.1.19
- inversify: 5.1.1
- reflect-metadata: 0.1.14
-
'@difizen/mana-syringe@0.1.23':
dependencies:
'@difizen/mana-common': 0.1.23
@@ -20959,7 +20992,7 @@ snapshots:
'@esbuild-kit/cjs-loader@2.4.4':
dependencies:
'@esbuild-kit/core-utils': 3.3.2
- get-tsconfig: 4.7.6
+ get-tsconfig: 4.8.0
'@esbuild-kit/core-utils@3.3.2':
dependencies:
@@ -20969,7 +21002,7 @@ snapshots:
'@esbuild-kit/esm-loader@2.6.5':
dependencies:
'@esbuild-kit/core-utils': 3.3.2
- get-tsconfig: 4.7.6
+ get-tsconfig: 4.8.0
'@esbuild/aix-ppc64@0.21.4':
optional: true
@@ -21259,7 +21292,7 @@ snapshots:
'@eslint/eslintrc@0.3.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.5
+ debug: 4.3.7
espree: 7.3.1
globals: 12.4.0
ignore: 4.0.6
@@ -21274,10 +21307,10 @@ snapshots:
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.5
+ debug: 4.3.7
espree: 9.6.1
globals: 13.24.0
- ignore: 5.3.1
+ ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
@@ -21291,46 +21324,46 @@ snapshots:
'@floating-ui/core@0.6.2': {}
- '@floating-ui/core@1.6.5':
+ '@floating-ui/core@1.6.7':
dependencies:
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/utils': 0.2.7
'@floating-ui/dom@0.4.5':
dependencies:
'@floating-ui/core': 0.6.2
- '@floating-ui/dom@1.6.8':
+ '@floating-ui/dom@1.6.10':
dependencies:
- '@floating-ui/core': 1.6.5
- '@floating-ui/utils': 0.2.5
+ '@floating-ui/core': 1.6.7
+ '@floating-ui/utils': 0.2.7
- '@floating-ui/react-dom-interactions@0.3.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom-interactions@0.3.1(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/react-dom': 0.6.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@floating-ui/react-dom': 0.6.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
aria-hidden: 1.2.4
point-in-polygon: 1.1.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.5)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react
- react-dom
- '@floating-ui/react-dom@0.6.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@0.6.3(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/dom': 0.4.5
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.5)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
'@floating-ui/react-dom@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/dom': 1.6.8
+ '@floating-ui/dom': 1.6.10
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@floating-ui/utils@0.2.5': {}
+ '@floating-ui/utils@0.2.7': {}
'@gulp-sourcemaps/identity-map@1.0.2':
dependencies:
@@ -21356,7 +21389,7 @@ snapshots:
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.5
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -21376,7 +21409,7 @@ snapshots:
'@antfu/install-pkg': 0.1.1
'@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.3.5
+ debug: 4.3.7
kolorist: 1.8.0
local-pkg: 0.4.3
transitivePeerDependencies:
@@ -21412,7 +21445,7 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -21442,7 +21475,7 @@ snapshots:
jest-util: 25.5.0
jest-validate: 25.5.0
jest-watcher: 25.5.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
p-each-series: 2.2.0
realpath-native: 2.0.0
rimraf: 3.0.0
@@ -21454,21 +21487,21 @@ snapshots:
- supports-color
- utf-8-validate
- '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))':
+ '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -21480,7 +21513,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -21499,7 +21532,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -21525,7 +21558,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -21584,7 +21617,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -21667,7 +21700,7 @@ snapshots:
jest-haste-map: 25.5.1
jest-regex-util: 25.2.6
jest-util: 25.5.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
realpath-native: 2.0.0
slash: 3.0.0
@@ -21678,7 +21711,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -21689,7 +21722,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -21713,7 +21746,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/yargs': 16.0.9
chalk: 4.1.2
@@ -21722,19 +21755,19 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.42
- '@types/yargs': 17.0.32
+ '@types/node': 18.19.50
+ '@types/yargs': 17.0.33
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.5.4)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
glob: 7.2.3
glob-promise: 4.2.2(glob@7.2.3)
magic-string: 0.27.0
- react-docgen-typescript: 2.2.2(typescript@5.5.4)
- vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ react-docgen-typescript: 2.2.2(typescript@5.6.2)
+ vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
'@jridgewell/gen-mapping@0.3.5':
dependencies:
@@ -21765,21 +21798,21 @@ snapshots:
'@jsdevtools/ono@7.1.3': {}
- '@jsonjoy.com/base64@1.1.2(tslib@2.6.3)':
+ '@jsonjoy.com/base64@1.1.2(tslib@2.7.0)':
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
- '@jsonjoy.com/json-pack@1.0.4(tslib@2.6.3)':
+ '@jsonjoy.com/json-pack@1.1.0(tslib@2.7.0)':
dependencies:
- '@jsonjoy.com/base64': 1.1.2(tslib@2.6.3)
- '@jsonjoy.com/util': 1.2.0(tslib@2.6.3)
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.7.0)
+ '@jsonjoy.com/util': 1.3.0(tslib@2.7.0)
hyperdyperid: 1.2.0
- thingies: 1.21.0(tslib@2.6.3)
- tslib: 2.6.3
+ thingies: 1.21.0(tslib@2.7.0)
+ tslib: 2.7.0
- '@jsonjoy.com/util@1.2.0(tslib@2.6.3)':
+ '@jsonjoy.com/util@1.3.0(tslib@2.7.0)':
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
'@juggle/resize-observer@3.4.0': {}
@@ -21794,46 +21827,46 @@ snapshots:
'@lezer/common@1.2.1': {}
- '@lezer/css@1.1.8':
+ '@lezer/css@1.1.9':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.1
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
- '@lezer/highlight@1.2.0':
+ '@lezer/highlight@1.2.1':
dependencies:
'@lezer/common': 1.2.1
'@lezer/html@1.3.10':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.1
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
'@lezer/javascript@1.4.17':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.1
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
- '@lezer/lr@1.4.1':
+ '@lezer/lr@1.4.2':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/markdown@1.3.0':
+ '@lezer/markdown@1.3.1':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
+ '@lezer/highlight': 1.2.1
'@lezer/python@1.1.14':
dependencies:
'@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.4.1
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
'@loadable/component@5.15.2(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.23.6
hoist-non-react-statics: 3.3.2
react: 18.3.1
react-is: 16.13.1
@@ -21887,14 +21920,14 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -21910,6 +21943,8 @@ snapshots:
'@mapbox/jsonlint-lines-primitives@2.0.2': {}
+ '@mapbox/mapbox-gl-supported@1.5.0': {}
+
'@mapbox/mapbox-gl-supported@1.5.0(mapbox-gl@1.13.3)':
dependencies:
mapbox-gl: 1.13.3
@@ -21932,14 +21967,14 @@ snapshots:
mkdirp: 0.5.6
rimraf: 2.7.1
- '@material-ui/core@4.7.1(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
+ '@material-ui/core@4.7.1(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
dependencies:
- '@babel/runtime': 7.24.8
- '@material-ui/styles': 4.11.5(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
- '@material-ui/system': 4.12.2(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
+ '@babel/runtime': 7.17.9
+ '@material-ui/styles': 4.11.5(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
+ '@material-ui/system': 4.12.2(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
'@material-ui/types': 4.1.1
'@material-ui/utils': 4.11.3(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
- '@types/react-transition-group': 4.4.10
+ '@types/react-transition-group': 4.4.11
clsx: 1.2.1
convert-css-length: 2.0.1
hoist-non-react-statics: 3.3.2
@@ -21953,11 +21988,11 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
- '@material-ui/styles@4.11.5(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
+ '@material-ui/styles@4.11.5(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
'@emotion/hash': 0.8.0
- '@material-ui/types': 5.1.0(@types/react@18.3.3)
+ '@material-ui/types': 5.1.0(@types/react@18.3.5)
'@material-ui/utils': 4.11.3(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
clsx: 1.2.1
csstype: 2.6.21
@@ -21974,34 +22009,34 @@ snapshots:
react: 16.14.0
react-dom: 16.14.0(react@16.14.0)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@material-ui/system@4.12.2(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
+ '@material-ui/system@4.12.2(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
'@material-ui/utils': 4.11.3(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
csstype: 2.6.21
prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0(react@16.14.0)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@material-ui/types@4.1.1':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@material-ui/types@5.1.0(@types/react@18.3.3)':
+ '@material-ui/types@5.1.0(@types/react@18.3.5)':
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@material-ui/utils@4.11.3(react-dom@16.14.0(react@16.14.0))(react@16.14.0)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0(react@16.14.0)
- react-is: 17.0.2
+ react-is: 16.13.1
'@mdx-js/loader@1.5.1(react@16.14.0)':
dependencies:
@@ -22043,7 +22078,7 @@ snapshots:
'@mdx-js/react@2.3.0(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
react: 18.3.1
'@mdx-js/util@1.6.22': {}
@@ -22090,10 +22125,10 @@ snapshots:
'@npmcli/name-from-folder@2.0.0': {}
- '@nrwl/tao@17.3.2(@swc/core@1.7.2(@swc/helpers@0.5.1))':
+ '@nrwl/tao@17.3.2(@swc/core@1.7.24)':
dependencies:
- nx: 17.3.2(@swc/core@1.7.2(@swc/helpers@0.5.1))
- tslib: 2.6.3
+ nx: 17.3.2(@swc/core@1.7.24)
+ tslib: 2.7.0
transitivePeerDependencies:
- '@swc-node/register'
- '@swc/core'
@@ -22140,8 +22175,8 @@ snapshots:
fast-glob: 3.3.2
is-glob: 4.0.3
open: 9.1.0
- picocolors: 1.0.1
- tslib: 2.6.3
+ picocolors: 1.1.0
+ tslib: 2.7.0
'@plotly/d3-sankey-circular@0.33.1':
dependencies:
@@ -22158,6 +22193,33 @@ snapshots:
'@plotly/d3@3.8.2': {}
+ '@plotly/mapbox-gl@1.13.4':
+ dependencies:
+ '@mapbox/geojson-rewind': 0.5.2
+ '@mapbox/geojson-types': 1.0.2
+ '@mapbox/jsonlint-lines-primitives': 2.0.2
+ '@mapbox/mapbox-gl-supported': 1.5.0
+ '@mapbox/point-geometry': 0.1.0
+ '@mapbox/tiny-sdf': 1.2.5
+ '@mapbox/unitbezier': 0.0.0
+ '@mapbox/vector-tile': 1.3.1
+ '@mapbox/whoots-js': 3.1.0
+ csscolorparser: 1.0.3
+ earcut: 2.2.4
+ geojson-vt: 3.2.1
+ gl-matrix: 3.4.3
+ grid-index: 1.1.0
+ murmurhash-js: 1.0.0
+ pbf: 3.3.0
+ potpack: 1.0.2
+ quickselect: 2.0.0
+ rw: 1.3.3
+ supercluster: 7.1.5
+ tinyqueue: 2.0.3
+ vt-pbf: 3.1.3
+ transitivePeerDependencies:
+ - mapbox-gl
+
'@plotly/mapbox-gl@1.13.4(mapbox-gl@1.13.3)':
dependencies:
'@mapbox/geojson-rewind': 0.5.2
@@ -22204,403 +22266,403 @@ snapshots:
'@probe.gl/env@3.6.0':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@probe.gl/log@3.6.0':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@probe.gl/env': 3.6.0
'@probe.gl/stats@3.6.0':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@radix-ui/number@1.0.1':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive@1.0.1':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-context@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-context@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-direction@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-direction@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-id@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-id@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-id@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.5)(react@18.3.1)
'@radix-ui/rect': 1.0.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1)
+ react-remove-scroll: 2.5.5(@types/react@18.3.5)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-slot@1.0.2(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-slot@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-toggle-group@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toggle-group@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-toggle': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-toggle': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-toggle@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toggle@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-toolbar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toolbar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.3)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-separator': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-toggle-group': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.5)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-separator': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-toggle-group': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
- '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.3)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.5)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@radix-ui/rect': 1.0.1
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@18.3.1)':
+ '@radix-ui/react-use-size@1.0.1(@types/react@18.3.5)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.5)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom': 18.3.0
'@radix-ui/rect@1.0.1':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/async-validator@5.0.4':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
- '@rc-component/color-picker@1.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@rc-component/color-picker@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@ctrl/tinycolor': 3.6.1
+ '@ant-design/fast-color': 2.0.6
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -22608,18 +22670,18 @@ snapshots:
'@rc-component/context@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@rc-component/mini-decimal@1.1.0':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/mutate-observer@1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -22627,7 +22689,7 @@ snapshots:
'@rc-component/portal@1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -22635,25 +22697,25 @@ snapshots:
'@rc-component/qrcode@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@rc-component/tour@1.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@rc-component/tour@1.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@rc-component/trigger@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@rc-component/trigger@2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -22670,14 +22732,14 @@ snapshots:
'@remirror/core-constants@2.0.2': {}
- '@rjsf/antd@5.19.3(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@rjsf/core@5.19.3(@rjsf/utils@5.19.3(react@18.3.1))(react@18.3.1))(@rjsf/utils@5.19.3(react@18.3.1))(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(dayjs@1.11.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@rjsf/antd@5.20.1(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@rjsf/core@5.20.1(@rjsf/utils@5.20.1(react@18.3.1))(react@18.3.1))(@rjsf/utils@5.20.1(react@18.3.1))(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(dayjs@1.11.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@rjsf/core': 5.19.3(@rjsf/utils@5.19.3(react@18.3.1))(react@18.3.1)
- '@rjsf/utils': 5.19.3(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@rjsf/core': 5.20.1(@rjsf/utils@5.20.1(react@18.3.1))(react@18.3.1)
+ '@rjsf/utils': 5.20.1(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
- dayjs: 1.11.12
+ dayjs: 1.11.13
lodash: 4.17.21
lodash-es: 4.17.21
rc-picker: 2.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -22685,17 +22747,17 @@ snapshots:
transitivePeerDependencies:
- react-dom
- '@rjsf/core@5.19.3(@rjsf/utils@5.19.3(react@18.3.1))(react@18.3.1)':
+ '@rjsf/core@5.20.1(@rjsf/utils@5.20.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@rjsf/utils': 5.19.3(react@18.3.1)
+ '@rjsf/utils': 5.20.1(react@18.3.1)
lodash: 4.17.21
lodash-es: 4.17.21
- markdown-to-jsx: 7.4.7(react@18.3.1)
+ markdown-to-jsx: 7.5.0(react@18.3.1)
nanoid: 3.3.7
prop-types: 15.8.1
react: 18.3.1
- '@rjsf/utils@5.19.3(react@18.3.1)':
+ '@rjsf/utils@5.20.1(react@18.3.1)':
dependencies:
json-schema-merge-allof: 0.8.1
jsonpointer: 5.0.1
@@ -22704,70 +22766,72 @@ snapshots:
react: 18.3.1
react-is: 18.3.1
- '@rjsf/validator-ajv8@5.19.3(@rjsf/utils@5.19.3(react@18.3.1))':
+ '@rjsf/validator-ajv8@5.20.1(@rjsf/utils@5.20.1(react@18.3.1))':
dependencies:
- '@rjsf/utils': 5.19.3(react@18.3.1)
+ '@rjsf/utils': 5.20.1(react@18.3.1)
ajv: 8.17.1
ajv-formats: 2.1.1(ajv@8.17.1)
lodash: 4.17.21
lodash-es: 4.17.21
- '@rollup/pluginutils@5.1.0(rollup@4.21.1)':
+ '@rollup/pluginutils@5.1.0(rollup@4.21.2)':
dependencies:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.21.1
+ rollup: 4.21.2
- '@rollup/rollup-android-arm-eabi@4.21.1':
+ '@rollup/rollup-android-arm-eabi@4.21.2':
optional: true
- '@rollup/rollup-android-arm64@4.21.1':
+ '@rollup/rollup-android-arm64@4.21.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.21.1':
+ '@rollup/rollup-darwin-arm64@4.21.2':
optional: true
- '@rollup/rollup-darwin-x64@4.21.1':
+ '@rollup/rollup-darwin-x64@4.21.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.21.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.21.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.21.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.21.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.21.1':
+ '@rollup/rollup-linux-arm64-gnu@4.21.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.21.1':
+ '@rollup/rollup-linux-arm64-musl@4.21.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.21.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.21.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.21.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.21.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.21.1':
+ '@rollup/rollup-linux-s390x-gnu@4.21.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.21.1':
+ '@rollup/rollup-linux-x64-gnu@4.21.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.21.1':
+ '@rollup/rollup-linux-x64-musl@4.21.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.21.1':
+ '@rollup/rollup-win32-arm64-msvc@4.21.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.21.1':
+ '@rollup/rollup-win32-ia32-msvc@4.21.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.21.1':
+ '@rollup/rollup-win32-x64-msvc@4.21.2':
optional: true
+ '@rtsao/scc@1.1.0': {}
+
'@sinclair/typebox@0.27.8': {}
'@sindresorhus/is@0.14.0': {}
@@ -22799,9 +22863,9 @@ snapshots:
memoizerific: 1.11.3
ts-dedent: 2.2.0
- '@storybook/addon-controls@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/addon-controls@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@storybook/blocks': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/blocks': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -22812,13 +22876,13 @@ snapshots:
- react-dom
- supports-color
- '@storybook/addon-docs@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/addon-docs@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@jest/transform': 29.7.0
'@mdx-js/react': 2.3.0(react@18.3.1)
- '@storybook/blocks': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/blocks': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/client-logger': 7.6.20
- '@storybook/components': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/components': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/csf-plugin': 7.6.20
'@storybook/csf-tools': 7.6.20
'@storybook/global': 5.0.0
@@ -22840,13 +22904,14 @@ snapshots:
- '@types/react-dom'
- encoding
- supports-color
+ - webpack-sources
- '@storybook/addon-essentials@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/addon-essentials@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@storybook/addon-actions': 7.6.20
'@storybook/addon-backgrounds': 7.6.20
- '@storybook/addon-controls': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@storybook/addon-docs': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/addon-controls': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/addon-docs': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/addon-highlight': 7.6.20
'@storybook/addon-measure': 7.6.20
'@storybook/addon-outline': 7.6.20
@@ -22864,6 +22929,7 @@ snapshots:
- '@types/react-dom'
- encoding
- supports-color
+ - webpack-sources
'@storybook/addon-highlight@7.6.20':
dependencies:
@@ -22901,11 +22967,11 @@ snapshots:
dependencies:
memoizerific: 1.11.3
- '@storybook/blocks@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/blocks@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@storybook/channels': 7.6.20
'@storybook/client-logger': 7.6.20
- '@storybook/components': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@storybook/components': 7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/core-events': 7.6.20
'@storybook/csf': 0.1.11
'@storybook/docs-tools': 7.6.20(encoding@0.1.13)
@@ -22918,14 +22984,14 @@ snapshots:
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.4.7(react@18.3.1)
+ markdown-to-jsx: 7.5.0(react@18.3.1)
memoizerific: 1.11.3
polished: 4.3.1
react: 18.3.1
react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-dom: 18.3.1(react@18.3.1)
telejson: 7.2.0
- tocbot: 4.28.2
+ tocbot: 4.29.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
transitivePeerDependencies:
@@ -22947,7 +23013,7 @@ snapshots:
ejs: 3.1.10
esbuild: 0.18.20
esbuild-plugin-alias: 0.2.1
- express: 4.19.2
+ express: 4.20.0
find-cache-dir: 3.3.2
fs-extra: 11.2.0
process: 0.11.10
@@ -22956,7 +23022,7 @@ snapshots:
- encoding
- supports-color
- '@storybook/builder-vite@7.6.20(encoding@0.1.13)(typescript@5.5.4)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@storybook/builder-vite@7.6.20(encoding@0.1.13)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
'@storybook/channels': 7.6.20
'@storybook/client-logger': 7.6.20
@@ -22969,32 +23035,33 @@ snapshots:
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
- express: 4.19.2
+ express: 4.20.0
find-cache-dir: 3.3.2
fs-extra: 11.2.0
- magic-string: 0.30.10
+ magic-string: 0.30.11
rollup: 3.29.4
- vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- encoding
- supports-color
+ - webpack-sources
'@storybook/channels@7.6.20':
dependencies:
'@storybook/client-logger': 7.6.20
'@storybook/core-events': 7.6.20
'@storybook/global': 5.0.0
- qs: 6.12.3
+ qs: 6.13.0
telejson: 7.2.0
tiny-invariant: 1.3.3
'@storybook/cli@7.6.20(encoding@0.1.13)':
dependencies:
- '@babel/core': 7.24.9
- '@babel/preset-env': 7.24.8(@babel/core@7.24.9)
- '@babel/types': 7.24.9
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/types': 7.25.6
'@ndelangen/get-tarball': 3.0.9
'@storybook/codemod': 7.6.20
'@storybook/core-common': 7.6.20(encoding@0.1.13)
@@ -23013,14 +23080,14 @@ snapshots:
detect-indent: 6.1.0
envinfo: 7.13.0
execa: 5.1.1
- express: 4.19.2
+ express: 4.20.0
find-up: 5.0.0
fs-extra: 11.2.0
get-npm-tarball-url: 2.1.0
get-port: 5.1.1
giget: 1.2.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.8(@babel/core@7.24.9))
+ jscodeshift: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
@@ -23044,9 +23111,9 @@ snapshots:
'@storybook/codemod@7.6.20':
dependencies:
- '@babel/core': 7.24.9
- '@babel/preset-env': 7.24.8(@babel/core@7.24.9)
- '@babel/types': 7.24.9
+ '@babel/core': 7.25.2
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/types': 7.25.6
'@storybook/csf': 0.1.11
'@storybook/csf-tools': 7.6.20
'@storybook/node-logger': 7.6.20
@@ -23054,17 +23121,17 @@ snapshots:
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.2(@babel/preset-env@7.24.8(@babel/core@7.24.9))
+ jscodeshift: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
lodash: 4.17.21
prettier: 2.8.8
recast: 0.23.9
transitivePeerDependencies:
- supports-color
- '@storybook/components@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@storybook/components@7.6.20(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-toolbar': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-toolbar': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@storybook/client-logger': 7.6.20
'@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
@@ -23090,7 +23157,7 @@ snapshots:
'@storybook/node-logger': 7.6.20
'@storybook/types': 7.6.20
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/node-fetch': 2.6.11
'@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
@@ -23135,7 +23202,7 @@ snapshots:
'@storybook/telemetry': 7.6.20(encoding@0.1.13)
'@storybook/types': 7.6.20
'@types/detect-port': 1.3.5
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.8
better-opn: 3.0.2
@@ -23143,7 +23210,7 @@ snapshots:
cli-table3: 0.6.5
compression: 1.7.4
detect-port: 1.6.1
- express: 4.19.2
+ express: 4.20.0
fs-extra: 11.2.0
globby: 11.1.0
lodash: 4.17.21
@@ -23157,7 +23224,7 @@ snapshots:
ts-dedent: 2.2.0
util: 0.12.5
util-deprecate: 1.0.2
- watchpack: 2.4.1
+ watchpack: 2.4.2
ws: 8.18.0
transitivePeerDependencies:
- bufferutil
@@ -23168,16 +23235,17 @@ snapshots:
'@storybook/csf-plugin@7.6.20':
dependencies:
'@storybook/csf-tools': 7.6.20
- unplugin: 1.12.0
+ unplugin: 1.14.0
transitivePeerDependencies:
- supports-color
+ - webpack-sources
'@storybook/csf-tools@7.6.20':
dependencies:
- '@babel/generator': 7.24.10
- '@babel/parser': 7.24.8
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/generator': 7.25.6
+ '@babel/parser': 7.25.6
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
'@storybook/csf': 0.1.11
'@storybook/types': 7.6.20
fs-extra: 11.2.0
@@ -23251,7 +23319,7 @@ snapshots:
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- qs: 6.12.3
+ qs: 6.13.0
synchronous-promise: 2.0.17
ts-dedent: 2.2.0
util-deprecate: 1.0.2
@@ -23263,18 +23331,18 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@storybook/react-vite@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.21.1)(typescript@5.5.4)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@storybook/react-vite@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.21.2)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.5.4)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
- '@rollup/pluginutils': 5.1.0(rollup@4.21.1)
- '@storybook/builder-vite': 7.6.20(encoding@0.1.13)(typescript@5.5.4)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
- '@storybook/react': 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)
- '@vitejs/plugin-react': 3.1.0(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
- magic-string: 0.30.10
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
+ '@rollup/pluginutils': 5.1.0(rollup@4.21.2)
+ '@storybook/builder-vite': 7.6.20(encoding@0.1.13)(typescript@5.6.2)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
+ '@storybook/react': 7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)
+ '@vitejs/plugin-react': 3.1.0(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
+ magic-string: 0.30.11
react: 18.3.1
react-docgen: 7.0.3
react-dom: 18.3.1(react@18.3.1)
- vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -23282,8 +23350,9 @@ snapshots:
- supports-color
- typescript
- vite-plugin-glimmerx
+ - webpack-sources
- '@storybook/react@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)':
+ '@storybook/react@7.6.20(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)':
dependencies:
'@storybook/client-logger': 7.6.20
'@storybook/core-client': 7.6.20
@@ -23294,7 +23363,7 @@ snapshots:
'@storybook/types': 7.6.20
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -23309,7 +23378,7 @@ snapshots:
type-fest: 2.19.0
util-deprecate: 1.0.2
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- encoding
- supports-color
@@ -23318,7 +23387,7 @@ snapshots:
dependencies:
'@storybook/client-logger': 7.6.20
memoizerific: 1.11.3
- qs: 6.12.3
+ qs: 6.13.0
'@storybook/telemetry@7.6.20(encoding@0.1.13)':
dependencies:
@@ -23356,62 +23425,62 @@ snapshots:
'@types/express': 4.17.21
file-system-cache: 2.3.0
- '@stylelint/postcss-css-in-js@0.38.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.4.40))(postcss@8.4.40))(postcss@8.4.40)':
+ '@stylelint/postcss-css-in-js@0.38.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.4.45))(postcss@8.4.45))(postcss@8.4.45)':
dependencies:
'@babel/core': 7.23.6
- postcss: 8.4.40
- postcss-syntax: 0.36.2(postcss-less@6.0.0(postcss@8.4.40))(postcss@8.4.40)
+ postcss: 8.4.45
+ postcss-syntax: 0.36.2(postcss-less@6.0.0(postcss@8.4.45))(postcss@8.4.45)
transitivePeerDependencies:
- supports-color
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
- '@svgr/babel-preset@6.5.1(@babel/core@7.24.9)':
+ '@svgr/babel-preset@6.5.1(@babel/core@7.25.2)':
dependencies:
- '@babel/core': 7.24.9
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.24.9)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.24.9)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.24.9)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.24.9)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.24.9)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.24.9)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.24.9)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.25.2)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.25.2)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.25.2)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.25.2)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.25.2)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.25.2)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.25.2)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.25.2)
'@svgr/core@6.5.1':
dependencies:
- '@babel/core': 7.24.9
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.25.2)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -23420,13 +23489,13 @@ snapshots:
'@svgr/hast-util-to-babel-ast@6.5.1':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
entities: 4.5.0
'@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
dependencies:
- '@babel/core': 7.24.9
- '@svgr/babel-preset': 6.5.1(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.25.2)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -23440,58 +23509,75 @@ snapshots:
deepmerge: 4.3.1
svgo: 2.8.0
- '@swc/core-darwin-arm64@1.7.2':
+ '@swc/core-darwin-arm64@1.7.24':
+ optional: true
+
+ '@swc/core-darwin-x64@1.7.24':
optional: true
- '@swc/core-darwin-x64@1.7.2':
+ '@swc/core-linux-arm-gnueabihf@1.7.24':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.7.2':
+ '@swc/core-linux-arm64-gnu@1.7.24':
optional: true
- '@swc/core-linux-arm64-gnu@1.7.2':
+ '@swc/core-linux-arm64-musl@1.7.24':
optional: true
- '@swc/core-linux-arm64-musl@1.7.2':
+ '@swc/core-linux-x64-gnu@1.7.24':
optional: true
- '@swc/core-linux-x64-gnu@1.7.2':
+ '@swc/core-linux-x64-musl@1.7.24':
optional: true
- '@swc/core-linux-x64-musl@1.7.2':
+ '@swc/core-win32-arm64-msvc@1.7.24':
optional: true
- '@swc/core-win32-arm64-msvc@1.7.2':
+ '@swc/core-win32-ia32-msvc@1.7.24':
optional: true
- '@swc/core-win32-ia32-msvc@1.7.2':
+ '@swc/core-win32-x64-msvc@1.7.24':
optional: true
- '@swc/core-win32-x64-msvc@1.7.2':
+ '@swc/core@1.7.24':
+ dependencies:
+ '@swc/counter': 0.1.3
+ '@swc/types': 0.1.12
+ optionalDependencies:
+ '@swc/core-darwin-arm64': 1.7.24
+ '@swc/core-darwin-x64': 1.7.24
+ '@swc/core-linux-arm-gnueabihf': 1.7.24
+ '@swc/core-linux-arm64-gnu': 1.7.24
+ '@swc/core-linux-arm64-musl': 1.7.24
+ '@swc/core-linux-x64-gnu': 1.7.24
+ '@swc/core-linux-x64-musl': 1.7.24
+ '@swc/core-win32-arm64-msvc': 1.7.24
+ '@swc/core-win32-ia32-msvc': 1.7.24
+ '@swc/core-win32-x64-msvc': 1.7.24
optional: true
- '@swc/core@1.7.2(@swc/helpers@0.5.1)':
+ '@swc/core@1.7.24(@swc/helpers@0.5.1)':
dependencies:
'@swc/counter': 0.1.3
'@swc/types': 0.1.12
optionalDependencies:
- '@swc/core-darwin-arm64': 1.7.2
- '@swc/core-darwin-x64': 1.7.2
- '@swc/core-linux-arm-gnueabihf': 1.7.2
- '@swc/core-linux-arm64-gnu': 1.7.2
- '@swc/core-linux-arm64-musl': 1.7.2
- '@swc/core-linux-x64-gnu': 1.7.2
- '@swc/core-linux-x64-musl': 1.7.2
- '@swc/core-win32-arm64-msvc': 1.7.2
- '@swc/core-win32-ia32-msvc': 1.7.2
- '@swc/core-win32-x64-msvc': 1.7.2
+ '@swc/core-darwin-arm64': 1.7.24
+ '@swc/core-darwin-x64': 1.7.24
+ '@swc/core-linux-arm-gnueabihf': 1.7.24
+ '@swc/core-linux-arm64-gnu': 1.7.24
+ '@swc/core-linux-arm64-musl': 1.7.24
+ '@swc/core-linux-x64-gnu': 1.7.24
+ '@swc/core-linux-x64-musl': 1.7.24
+ '@swc/core-win32-arm64-msvc': 1.7.24
+ '@swc/core-win32-ia32-msvc': 1.7.24
+ '@swc/core-win32-x64-msvc': 1.7.24
'@swc/helpers': 0.5.1
'@swc/counter@0.1.3': {}
'@swc/helpers@0.5.1':
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
'@swc/types@0.1.12':
dependencies:
@@ -23504,7 +23590,7 @@ snapshots:
'@testing-library/dom@9.3.4':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -23516,137 +23602,137 @@ snapshots:
dependencies:
'@testing-library/dom': 9.3.4
- '@tiptap/core@2.5.7(@tiptap/pm@2.5.7)':
+ '@tiptap/core@2.6.6(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/pm': 2.5.7
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-blockquote@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-blockquote@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-bold@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-bold@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-bubble-menu@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-bubble-menu@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
tippy.js: 6.3.7
- '@tiptap/extension-bullet-list@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-bullet-list@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-code-block@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-code-block@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-code@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-code@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-color@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/extension-text-style@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7)))':
+ '@tiptap/extension-color@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/extension-text-style@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6)))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/extension-text-style': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/extension-text-style': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
- '@tiptap/extension-document@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-document@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-dropcursor@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-dropcursor@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-floating-menu@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-floating-menu@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
tippy.js: 6.3.7
- '@tiptap/extension-gapcursor@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-gapcursor@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-hard-break@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-hard-break@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-heading@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-heading@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-highlight@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-highlight@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-history@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-history@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-horizontal-rule@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-horizontal-rule@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-italic@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-italic@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-link@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-link@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
linkifyjs: 4.1.3
- '@tiptap/extension-list-item@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-list-item@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-ordered-list@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-ordered-list@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-paragraph@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-paragraph@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-placeholder@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-placeholder@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-strike@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-strike@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-task-item@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
+ '@tiptap/extension-task-item@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
- '@tiptap/extension-task-list@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-task-list@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-text-style@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-text-style@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-text@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-text@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/extension-underline@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))':
+ '@tiptap/extension-underline@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
- '@tiptap/pm@2.5.7':
+ '@tiptap/pm@2.6.6':
dependencies:
prosemirror-changeset: 2.2.1
prosemirror-collab: 1.3.1
@@ -23658,54 +23744,53 @@ snapshots:
prosemirror-keymap: 1.2.2
prosemirror-markdown: 1.13.0
prosemirror-menu: 1.2.4
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-schema-basic: 1.2.3
prosemirror-schema-list: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-tables: 1.4.0
- prosemirror-trailing-node: 2.0.9(prosemirror-model@1.22.2)(prosemirror-state@1.4.3)(prosemirror-view@1.33.9)
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-tables: 1.5.0
+ prosemirror-trailing-node: 2.0.9(prosemirror-model@1.22.3)(prosemirror-state@1.4.3)(prosemirror-view@1.34.2)
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.2
- '@tiptap/react@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tiptap/react@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/extension-bubble-menu': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/extension-floating-menu': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/extension-bubble-menu': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/extension-floating-menu': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
'@types/use-sync-external-store': 0.0.6
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
use-sync-external-store: 1.2.2(react@18.3.1)
- '@tiptap/starter-kit@2.5.7(@tiptap/pm@2.5.7)':
- dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/extension-blockquote': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-bold': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-bullet-list': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-code': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-code-block': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/extension-document': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-dropcursor': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/extension-gapcursor': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/extension-hard-break': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-heading': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-history': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/extension-horizontal-rule': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)
- '@tiptap/extension-italic': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-list-item': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-ordered-list': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-paragraph': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-strike': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- '@tiptap/extension-text': 2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))
- transitivePeerDependencies:
- - '@tiptap/pm'
-
- '@tiptap/suggestion@2.5.7(@tiptap/core@2.5.7(@tiptap/pm@2.5.7))(@tiptap/pm@2.5.7)':
- dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
- '@tiptap/pm': 2.5.7
+ '@tiptap/starter-kit@2.6.6':
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/extension-blockquote': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-bold': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-bullet-list': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-code': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-code-block': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/extension-document': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-dropcursor': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/extension-gapcursor': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/extension-hard-break': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-heading': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-history': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/extension-horizontal-rule': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)
+ '@tiptap/extension-italic': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-list-item': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-ordered-list': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-paragraph': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-strike': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/extension-text': 2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))
+ '@tiptap/pm': 2.6.6
+
+ '@tiptap/suggestion@2.6.6(@tiptap/core@2.6.6(@tiptap/pm@2.6.6))(@tiptap/pm@2.6.6)':
+ dependencies:
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
+ '@tiptap/pm': 2.6.6
'@traptitech/markdown-it-katex@3.6.0':
dependencies:
@@ -23744,7 +23829,7 @@ snapshots:
'@types/accepts@1.3.7':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/acorn@4.0.6':
dependencies:
@@ -23758,41 +23843,41 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/parser': 7.25.6
+ '@babel/types': 7.25.6
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/canvas-confetti@1.6.4': {}
'@types/chai-subset@1.3.5':
dependencies:
- '@types/chai': 4.3.16
+ '@types/chai': 4.3.19
- '@types/chai@4.3.16': {}
+ '@types/chai@4.3.19': {}
'@types/cheerio@0.22.35':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/color-convert@2.0.3':
dependencies:
@@ -23806,27 +23891,27 @@ snapshots:
'@types/concat-stream@2.0.3':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/connect-history-api-fallback@1.5.4':
dependencies:
'@types/express-serve-static-core': 4.19.5
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/connect@3.4.38':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/cookies@0.9.0':
dependencies:
'@types/connect': 3.4.38
'@types/express': 4.17.21
'@types/keygrip': 1.0.6
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/cross-spawn@6.0.6':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/d3-array@3.2.1': {}
@@ -23983,7 +24068,7 @@ snapshots:
'@types/express-serve-static-core@4.19.5':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/qs': 6.9.15
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -23999,33 +24084,33 @@ snapshots:
'@types/fs-extra@8.0.1':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/geojson@7946.0.14': {}
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/gulp-less@0.0.31':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/hapi__joi@17.1.9': {}
'@types/hast@2.3.10':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/highlight.js@9.12.3': {}
@@ -24043,13 +24128,13 @@ snapshots:
'@types/http-proxy-middleware@1.0.0':
dependencies:
- http-proxy-middleware: 3.0.0
+ http-proxy-middleware: 3.0.2
transitivePeerDependencies:
- supports-color
- '@types/http-proxy@1.17.14':
+ '@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/is-empty@1.2.3': {}
@@ -24082,7 +24167,7 @@ snapshots:
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/koa-compose@3.2.8':
dependencies:
@@ -24100,7 +24185,7 @@ snapshots:
'@types/http-assert': 1.5.5
'@types/keygrip': 1.0.6
'@types/koa-compose': 3.2.8
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/linkify-it@3.0.5': {}
@@ -24134,7 +24219,7 @@ snapshots:
'@types/mdast@3.0.15':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/mdurl@1.0.5': {}
@@ -24154,12 +24239,12 @@ snapshots:
'@types/node-fetch@2.6.11':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
form-data: 4.0.0
'@types/node@12.20.55': {}
- '@types/node@18.19.42':
+ '@types/node@18.19.50':
dependencies:
undici-types: 5.26.5
@@ -24169,7 +24254,7 @@ snapshots:
'@types/papaparse@5.3.14':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/parse-json@4.0.2': {}
@@ -24189,31 +24274,31 @@ snapshots:
'@types/react-dom@16.9.4':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-dom@18.3.0':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-router-dom@5.1.3':
dependencies:
'@types/history': 5.0.0
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-router': 5.1.20
'@types/react-router@5.1.20':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- '@types/react-transition-group@4.4.10':
+ '@types/react-transition-group@4.4.11':
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react-virtualized@9.21.30':
dependencies:
'@types/prop-types': 15.7.12
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
'@types/react@16.14.60':
dependencies:
@@ -24221,7 +24306,7 @@ snapshots:
'@types/scheduler': 0.16.8
csstype: 3.1.3
- '@types/react@18.3.3':
+ '@types/react@18.3.5':
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -24230,12 +24315,12 @@ snapshots:
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/rimraf@2.0.3':
dependencies:
'@types/glob': 8.1.0
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/scheduler@0.16.8': {}
@@ -24246,19 +24331,19 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/send': 0.17.4
'@types/socket.io-client@1.4.32': {}
'@types/socket.io@2.1.4':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/source-list-map@0.1.6': {}
@@ -24282,7 +24367,7 @@ snapshots:
dependencies:
source-map: 0.6.1
- '@types/unist@2.0.10': {}
+ '@types/unist@2.0.11': {}
'@types/update-notifier@2.5.0': {}
@@ -24292,7 +24377,7 @@ snapshots:
'@types/webpack-dev-middleware@5.3.0(webpack@4.41.5)':
dependencies:
- webpack-dev-middleware: 7.3.0(webpack@4.41.5)
+ webpack-dev-middleware: 7.4.2(webpack@4.41.5)
transitivePeerDependencies:
- webpack
@@ -24308,14 +24393,14 @@ snapshots:
'@types/webpack-hot-client@4.1.6':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/webpack': 4.41.0
- '@types/ws': 8.5.11
+ '@types/ws': 8.5.12
'@types/webpack-serve@2.0.1(webpack@4.41.5)':
dependencies:
'@types/koa': 2.11.0
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/webpack': 4.41.0
'@types/webpack-dev-middleware': 5.3.0(webpack@4.41.5)
'@types/webpack-hot-client': 4.1.6
@@ -24324,22 +24409,22 @@ snapshots:
'@types/webpack-sources@3.2.3':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/source-list-map': 0.1.6
source-map: 0.7.4
'@types/webpack@4.41.0':
dependencies:
'@types/anymatch': 3.0.0
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/tapable': 2.2.7
'@types/uglify-js': 3.17.5
'@types/webpack-sources': 3.2.3
source-map: 0.6.1
- '@types/ws@8.5.11':
+ '@types/ws@8.5.12':
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@types/yargs-parser@21.0.3': {}
@@ -24359,7 +24444,7 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@types/yargs@17.0.32':
+ '@types/yargs@17.0.33':
dependencies:
'@types/yargs-parser': 21.0.3
@@ -24368,7 +24453,7 @@ snapshots:
'@typescript-eslint/experimental-utils': 4.18.0(eslint@7.18.0)(typescript@4.2.3)
'@typescript-eslint/parser': 4.18.0(eslint@7.18.0)(typescript@4.2.3)
'@typescript-eslint/scope-manager': 4.18.0
- debug: 4.3.5
+ debug: 4.3.7
eslint: 7.18.0
functional-red-black-tree: 1.0.1
lodash: 4.17.21
@@ -24387,10 +24472,10 @@ snapshots:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/type-utils': 5.62.0(eslint@7.18.0)(typescript@4.2.3)
'@typescript-eslint/utils': 5.62.0(eslint@7.18.0)(typescript@4.2.3)
- debug: 4.3.5
+ debug: 4.3.7
eslint: 7.18.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare-lite: 1.4.0
semver: 7.6.3
tsutils: 3.21.0(typescript@4.2.3)
@@ -24399,42 +24484,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
- debug: 4.3.5
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
+ debug: 4.3.7
eslint: 8.57.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare-lite: 1.4.0
semver: 7.6.3
- tsutils: 3.21.0(typescript@5.5.4)
+ tsutils: 3.21.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.6.2)
'@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.6.2)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.2)
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.5
+ debug: 4.3.7
eslint: 8.57.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
natural-compare: 1.4.0
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
@@ -24456,7 +24541,7 @@ snapshots:
'@typescript-eslint/scope-manager': 4.18.0
'@typescript-eslint/types': 4.18.0
'@typescript-eslint/typescript-estree': 4.18.0(typescript@4.2.3)
- debug: 4.3.5
+ debug: 4.3.7
eslint: 7.18.0
optionalDependencies:
typescript: 4.2.3
@@ -24468,35 +24553,35 @@ snapshots:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.2.3)
- debug: 4.3.5
+ debug: 4.3.7
eslint: 7.18.0
optionalDependencies:
typescript: 4.2.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
- debug: 4.3.5
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2)
+ debug: 4.3.7
eslint: 8.57.0
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2)
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.5
+ debug: 4.3.7
eslint: 8.57.0
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
@@ -24519,7 +24604,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.2.3)
'@typescript-eslint/utils': 5.62.0(eslint@7.18.0)(typescript@4.2.3)
- debug: 4.3.5
+ debug: 4.3.7
eslint: 7.18.0
tsutils: 3.21.0(typescript@4.2.3)
optionalDependencies:
@@ -24527,27 +24612,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
- debug: 4.3.5
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
+ debug: 4.3.7
eslint: 8.57.0
- tsutils: 3.21.0(typescript@5.5.4)
+ tsutils: 3.21.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.4)
- '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4)
- debug: 4.3.5
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2)
+ '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.2)
+ debug: 4.3.7
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
@@ -24561,7 +24646,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 4.18.0
'@typescript-eslint/visitor-keys': 4.18.0
- debug: 4.3.5
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.3
@@ -24575,7 +24660,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.5
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.3
@@ -24585,32 +24670,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.4)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.2)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.5
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.3
- tsutils: 3.21.0(typescript@5.5.4)
+ tsutils: 3.21.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@6.21.0(typescript@5.5.4)':
+ '@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.2)':
dependencies:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.5
+ debug: 4.3.7
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.4)
+ ts-api-utils: 1.3.0(typescript@5.6.2)
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
@@ -24629,14 +24714,14 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2)
eslint: 8.57.0
eslint-scope: 5.1.1
semver: 7.6.3
@@ -24644,14 +24729,14 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.6.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 6.21.0
'@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.5.4)
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.2)
eslint: 8.57.0
semver: 7.6.3
transitivePeerDependencies:
@@ -24673,38 +24758,38 @@ snapshots:
'@typescript-eslint/types': 6.21.0
eslint-visitor-keys: 3.4.3
- '@uiw/codemirror-extensions-basic-setup@4.23.0(@codemirror/autocomplete@6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1))(@codemirror/commands@6.6.0)(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)':
+ '@uiw/codemirror-extensions-basic-setup@4.23.1(@codemirror/autocomplete@6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1))(@codemirror/commands@6.6.1)(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)':
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
- '@codemirror/commands': 6.6.0
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
+ '@codemirror/commands': 6.6.1
'@codemirror/language': 6.10.2
'@codemirror/lint': 6.8.1
'@codemirror/search': 6.5.6
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
- '@uiw/codemirror-theme-github@4.23.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)':
+ '@uiw/codemirror-theme-github@4.23.1(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)':
dependencies:
- '@uiw/codemirror-themes': 4.23.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)
+ '@uiw/codemirror-themes': 4.23.1(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)
transitivePeerDependencies:
- '@codemirror/language'
- '@codemirror/state'
- '@codemirror/view'
- '@uiw/codemirror-themes@4.23.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)':
+ '@uiw/codemirror-themes@4.23.1(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)':
dependencies:
'@codemirror/language': 6.10.2
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
- '@uiw/react-codemirror@4.23.0(@babel/runtime@7.24.8)(@codemirror/autocomplete@6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1))(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.29.0)(codemirror@6.0.1(@lezer/common@1.2.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@uiw/react-codemirror@4.23.1(@babel/runtime@7.25.6)(@codemirror/autocomplete@6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1))(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.33.0)(codemirror@6.0.1(@lezer/common@1.2.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
- '@codemirror/commands': 6.6.0
+ '@babel/runtime': 7.25.6
+ '@codemirror/commands': 6.6.1
'@codemirror/state': 6.4.1
'@codemirror/theme-one-dark': 6.1.2
- '@codemirror/view': 6.29.0
- '@uiw/codemirror-extensions-basic-setup': 4.23.0(@codemirror/autocomplete@6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1))(@codemirror/commands@6.6.0)(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)
+ '@codemirror/view': 6.33.0
+ '@uiw/codemirror-extensions-basic-setup': 4.23.1(@codemirror/autocomplete@6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1))(@codemirror/commands@6.6.1)(@codemirror/language@6.10.2)(@codemirror/lint@6.8.1)(@codemirror/search@6.5.6)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)
codemirror: 6.0.1(@lezer/common@1.2.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -24714,42 +24799,42 @@ snapshots:
- '@codemirror/lint'
- '@codemirror/search'
- '@umijs/ast@4.3.10':
+ '@umijs/ast@4.3.20':
dependencies:
- '@umijs/bundler-utils': 4.3.10
+ '@umijs/bundler-utils': 4.3.20
transitivePeerDependencies:
- supports-color
- '@umijs/babel-preset-umi@4.3.10':
+ '@umijs/babel-preset-umi@4.3.20':
dependencies:
'@babel/runtime': 7.23.6
'@bloomberg/record-tuple-polyfill': 0.0.4
- '@umijs/bundler-utils': 4.3.10
- '@umijs/utils': 4.3.10
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/utils': 4.3.20
core-js: 3.34.0
transitivePeerDependencies:
- supports-color
- '@umijs/bundler-esbuild@4.3.10':
+ '@umijs/bundler-esbuild@4.3.20':
dependencies:
- '@umijs/bundler-utils': 4.3.10
- '@umijs/utils': 4.3.10
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/utils': 4.3.20
enhanced-resolve: 5.9.3
- postcss: 8.4.40
- postcss-flexbugs-fixes: 5.0.2(postcss@8.4.40)
- postcss-preset-env: 7.5.0(postcss@8.4.40)
+ postcss: 8.4.45
+ postcss-flexbugs-fixes: 5.0.2(postcss@8.4.45)
+ postcss-preset-env: 7.5.0(postcss@8.4.45)
transitivePeerDependencies:
- supports-color
- '@umijs/bundler-mako@0.7.8':
+ '@umijs/bundler-mako@0.8.11':
dependencies:
- '@umijs/bundler-utils': 4.3.10
- '@umijs/mako': 0.7.8
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/mako': 0.8.11
chalk: 4.1.2
compression: 1.7.4
connect-history-api-fallback: 2.0.0
cors: 2.8.5
- express: 4.19.2
+ express: 4.20.0
get-tsconfig: 4.7.5
lodash: 4.17.21
rimraf: 5.0.1
@@ -24757,9 +24842,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@umijs/bundler-utils@4.3.10':
+ '@umijs/bundler-utils@4.3.20':
dependencies:
- '@umijs/utils': 4.3.10
+ '@umijs/utils': 4.3.20
esbuild: 0.21.4
regenerate: 1.4.2
regenerate-unicode-properties: 10.1.1
@@ -24767,18 +24852,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@umijs/bundler-vite@4.3.10(@types/node@20.5.1)(lightningcss@1.22.1)(postcss@8.4.40)(rollup@3.29.4)(sass@1.77.8)(terser@5.31.3)':
+ '@umijs/bundler-vite@4.3.20(@types/node@20.5.1)(lightningcss@1.22.1)(postcss@8.4.45)(rollup@3.29.4)(sass@1.78.0)(terser@5.32.0)':
dependencies:
'@svgr/core': 6.5.1
- '@umijs/bundler-utils': 4.3.10
- '@umijs/utils': 4.3.10
- '@vitejs/plugin-react': 4.0.0(vite@4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/utils': 4.3.20
+ '@vitejs/plugin-react': 4.0.0(vite@4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))
core-js: 3.34.0
less: 4.1.3
- postcss-preset-env: 7.5.0(postcss@8.4.40)
+ postcss-preset-env: 7.5.0(postcss@8.4.45)
rollup-plugin-visualizer: 5.9.0(rollup@3.29.4)
systemjs: 6.15.1
- vite: 4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vite: 4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- '@types/node'
- lightningcss
@@ -24790,18 +24875,18 @@ snapshots:
- supports-color
- terser
- '@umijs/bundler-webpack@4.3.10(@types/webpack@4.41.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)':
+ '@umijs/bundler-webpack@4.3.20(@types/webpack@4.41.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)':
dependencies:
'@svgr/core': 6.5.1
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
'@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
'@types/hapi__joi': 17.1.9
- '@umijs/babel-preset-umi': 4.3.10
- '@umijs/bundler-utils': 4.3.10
+ '@umijs/babel-preset-umi': 4.3.20
+ '@umijs/bundler-utils': 4.3.20
'@umijs/case-sensitive-paths-webpack-plugin': 1.0.1
- '@umijs/mfsu': 4.3.10
+ '@umijs/mfsu': 4.3.20
'@umijs/react-refresh-webpack-plugin': 0.5.11(@types/webpack@4.41.0)(react-refresh@0.14.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
- '@umijs/utils': 4.3.10
+ '@umijs/utils': 4.3.20
cors: 2.8.5
css-loader: 6.7.1(webpack@4.41.5)
es5-imcompatible-versions: 0.1.90
@@ -24809,8 +24894,8 @@ snapshots:
jest-worker: 29.4.3
lightningcss: 1.22.1
node-libs-browser: 2.2.1
- postcss: 8.4.40
- postcss-preset-env: 7.5.0(postcss@8.4.40)
+ postcss: 8.4.45
+ postcss-preset-env: 7.5.0(postcss@8.4.45)
react-error-overlay: 6.0.9
react-refresh: 0.14.0
transitivePeerDependencies:
@@ -24826,10 +24911,10 @@ snapshots:
'@umijs/case-sensitive-paths-webpack-plugin@1.0.1': {}
- '@umijs/core@4.3.10':
+ '@umijs/core@4.3.20':
dependencies:
- '@umijs/bundler-utils': 4.3.10
- '@umijs/utils': 4.3.10
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/utils': 4.3.20
transitivePeerDependencies:
- supports-color
@@ -24876,22 +24961,22 @@ snapshots:
'@umijs/history@5.3.1':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.23.6
query-string: 6.14.1
- '@umijs/lint@4.3.10(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)))(postcss-less@6.0.0(postcss@8.4.40))(stylelint@15.11.0(typescript@4.2.3))(typescript@4.2.3)':
+ '@umijs/lint@4.3.20(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)))(postcss-less@6.0.0(postcss@8.4.45))(stylelint@15.11.0(typescript@4.2.3))(typescript@4.2.3)':
dependencies:
'@babel/core': 7.23.6
'@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@7.18.0)
- '@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.4.40))(postcss@8.4.40))(postcss@8.4.40)
+ '@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.4.45))(postcss@8.4.45))(postcss@8.4.45)
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(typescript@4.2.3)
'@typescript-eslint/parser': 5.62.0(eslint@7.18.0)(typescript@4.2.3)
- '@umijs/babel-preset-umi': 4.3.10
- eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)))(typescript@4.2.3)
+ '@umijs/babel-preset-umi': 4.3.20
+ eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)))(typescript@4.2.3)
eslint-plugin-react: 7.33.2(eslint@7.18.0)
eslint-plugin-react-hooks: 4.6.0(eslint@7.18.0)
- postcss: 8.4.40
- postcss-syntax: 0.36.2(postcss-less@6.0.0(postcss@8.4.40))(postcss@8.4.40)
+ postcss: 8.4.45
+ postcss-syntax: 0.36.2(postcss-less@6.0.0(postcss@8.4.45))(postcss@8.4.45)
stylelint-config-standard: 25.0.0(stylelint@15.11.0(typescript@4.2.3))
transitivePeerDependencies:
- eslint
@@ -24905,19 +24990,31 @@ snapshots:
- supports-color
- typescript
- '@umijs/mako-darwin-arm64@0.7.8':
+ '@umijs/mako-darwin-arm64@0.8.11':
+ optional: true
+
+ '@umijs/mako-darwin-x64@0.8.11':
+ optional: true
+
+ '@umijs/mako-linux-arm64-gnu@0.8.11':
+ optional: true
+
+ '@umijs/mako-linux-arm64-musl@0.8.11':
+ optional: true
+
+ '@umijs/mako-linux-x64-gnu@0.8.11':
optional: true
- '@umijs/mako-darwin-x64@0.7.8':
+ '@umijs/mako-linux-x64-musl@0.8.11':
optional: true
- '@umijs/mako-linux-x64-gnu@0.7.8':
+ '@umijs/mako-win32-ia32-msvc@0.8.11':
optional: true
- '@umijs/mako-linux-x64-musl@0.7.8':
+ '@umijs/mako-win32-x64-msvc@0.8.11':
optional: true
- '@umijs/mako@0.7.8':
+ '@umijs/mako@0.8.11':
dependencies:
'@swc/helpers': 0.5.1
'@types/resolve': 1.20.6
@@ -24933,50 +25030,54 @@ snapshots:
semver: 7.6.3
yargs-parser: 21.1.1
optionalDependencies:
- '@umijs/mako-darwin-arm64': 0.7.8
- '@umijs/mako-darwin-x64': 0.7.8
- '@umijs/mako-linux-x64-gnu': 0.7.8
- '@umijs/mako-linux-x64-musl': 0.7.8
-
- '@umijs/mfsu@4.3.10':
- dependencies:
- '@umijs/bundler-esbuild': 4.3.10
- '@umijs/bundler-utils': 4.3.10
- '@umijs/utils': 4.3.10
+ '@umijs/mako-darwin-arm64': 0.8.11
+ '@umijs/mako-darwin-x64': 0.8.11
+ '@umijs/mako-linux-arm64-gnu': 0.8.11
+ '@umijs/mako-linux-arm64-musl': 0.8.11
+ '@umijs/mako-linux-x64-gnu': 0.8.11
+ '@umijs/mako-linux-x64-musl': 0.8.11
+ '@umijs/mako-win32-ia32-msvc': 0.8.11
+ '@umijs/mako-win32-x64-msvc': 0.8.11
+
+ '@umijs/mfsu@4.3.20':
+ dependencies:
+ '@umijs/bundler-esbuild': 4.3.20
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/utils': 4.3.20
enhanced-resolve: 5.9.3
is-equal: 1.7.0
transitivePeerDependencies:
- supports-color
- '@umijs/plugin-run@4.3.10':
+ '@umijs/plugin-run@4.3.20':
dependencies:
tsx: 3.12.2
- '@umijs/preset-umi@4.3.10(@types/node@20.5.1)(@types/react@18.3.3)(@types/webpack@4.41.0)(lightningcss@1.22.1)(rollup@3.29.4)(sass@1.77.8)(sockjs-client@1.4.0)(terser@5.31.3)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)':
+ '@umijs/preset-umi@4.3.20(@types/node@20.5.1)(@types/react@18.3.5)(@types/webpack@4.41.0)(lightningcss@1.22.1)(rollup@3.29.4)(sass@1.78.0)(sockjs-client@1.4.0)(terser@5.32.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)':
dependencies:
'@iconify/utils': 2.1.1
'@svgr/core': 6.5.1
- '@umijs/ast': 4.3.10
- '@umijs/babel-preset-umi': 4.3.10
- '@umijs/bundler-esbuild': 4.3.10
- '@umijs/bundler-mako': 0.7.8
- '@umijs/bundler-utils': 4.3.10
- '@umijs/bundler-vite': 4.3.10(@types/node@20.5.1)(lightningcss@1.22.1)(postcss@8.4.40)(rollup@3.29.4)(sass@1.77.8)(terser@5.31.3)
- '@umijs/bundler-webpack': 4.3.10(@types/webpack@4.41.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
- '@umijs/core': 4.3.10
+ '@umijs/ast': 4.3.20
+ '@umijs/babel-preset-umi': 4.3.20
+ '@umijs/bundler-esbuild': 4.3.20
+ '@umijs/bundler-mako': 0.8.11
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/bundler-vite': 4.3.20(@types/node@20.5.1)(lightningcss@1.22.1)(postcss@8.4.45)(rollup@3.29.4)(sass@1.78.0)(terser@5.32.0)
+ '@umijs/bundler-webpack': 4.3.20(@types/webpack@4.41.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
+ '@umijs/core': 4.3.20
'@umijs/did-you-know': 1.0.3
'@umijs/es-module-parser': 0.0.7
'@umijs/history': 5.3.1
- '@umijs/mfsu': 4.3.10
- '@umijs/plugin-run': 4.3.10
- '@umijs/renderer-react': 4.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@umijs/server': 4.3.10
+ '@umijs/mfsu': 4.3.20
+ '@umijs/plugin-run': 4.3.20
+ '@umijs/renderer-react': 4.3.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@umijs/server': 4.3.20
'@umijs/ui': 3.0.1
- '@umijs/utils': 4.3.10
- '@umijs/zod2ts': 4.3.10
+ '@umijs/utils': 4.3.20
+ '@umijs/zod2ts': 4.3.20
babel-plugin-dynamic-import-node: 2.3.3
babel-plugin-react-compiler: 0.0.0-experimental-c23de8d-20240515
- click-to-react-component: 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ click-to-react-component: 1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
core-js: 3.34.0
current-script-polyfill: 1.0.0
enhanced-resolve: 5.9.3
@@ -24984,8 +25085,8 @@ snapshots:
html-webpack-plugin: 5.5.0(webpack@4.41.5)
less-plugin-resolve: 1.0.2
path-to-regexp: 1.7.0
- postcss: 8.4.40
- postcss-prefix-selector: 1.16.0(postcss@8.4.40)
+ postcss: 8.4.45
+ postcss-prefix-selector: 1.16.0(postcss@8.4.45)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-router: 6.3.0(react@18.3.1)
@@ -25014,7 +25115,7 @@ snapshots:
dependencies:
ansi-html-community: 0.0.8
common-path-prefix: 3.0.0
- core-js-pure: 3.37.1
+ core-js-pure: 3.38.1
error-stack-parser: 2.1.4
find-up: 5.0.0
html-entities: 2.5.2
@@ -25029,7 +25130,7 @@ snapshots:
type-fest: 2.19.0
webpack-dev-server: 3.10.3(webpack@4.41.5)
- '@umijs/renderer-react@4.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@umijs/renderer-react@4.3.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@babel/runtime': 7.23.6
'@loadable/component': 5.15.2(react@18.3.1)
@@ -25039,9 +25140,9 @@ snapshots:
react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-router-dom: 6.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@umijs/server@4.3.10':
+ '@umijs/server@4.3.20':
dependencies:
- '@umijs/bundler-utils': 4.3.10
+ '@umijs/bundler-utils': 4.3.20
history: 5.3.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -25049,13 +25150,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@umijs/test@4.3.10(@babel/core@7.24.9)':
+ '@umijs/test@4.3.20(@babel/core@7.25.2)':
dependencies:
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.24.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2)
'@jest/types': 27.5.1
- '@umijs/bundler-utils': 4.3.10
- '@umijs/utils': 4.3.10
- babel-jest: 29.7.0(@babel/core@7.24.9)
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/utils': 4.3.20
+ babel-jest: 29.7.0(@babel/core@7.25.2)
esbuild: 0.21.4
identity-obj-proxy: 3.0.0
isomorphic-unfetch: 4.0.2
@@ -25065,44 +25166,44 @@ snapshots:
'@umijs/ui@3.0.1': {}
- '@umijs/utils@4.3.10':
+ '@umijs/utils@4.3.20':
dependencies:
chokidar: 3.5.3
pino: 7.11.0
- '@umijs/zod2ts@4.3.10': {}
+ '@umijs/zod2ts@4.3.20': {}
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-react-swc@3.7.0(@swc/helpers@0.5.1)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@vitejs/plugin-react-swc@3.7.0(@swc/helpers@0.5.1)(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
- '@swc/core': 1.7.2(@swc/helpers@0.5.1)
- vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ '@swc/core': 1.7.24(@swc/helpers@0.5.1)
+ vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- '@swc/helpers'
- '@vitejs/plugin-react@3.1.0(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@vitejs/plugin-react@3.1.0(vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
magic-string: 0.27.0
react-refresh: 0.14.2
- vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vite: 4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@4.0.0(vite@4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@vitejs/plugin-react@4.0.0(vite@4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
react-refresh: 0.14.2
- vite: 4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vite: 4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@0.32.4(vitest@0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3))':
+ '@vitest/coverage-v8@0.32.4(vitest@0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -25110,12 +25211,12 @@ snapshots:
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.7
- magic-string: 0.30.10
- picocolors: 1.0.1
+ magic-string: 0.30.11
+ picocolors: 1.1.0
std-env: 3.7.0
test-exclude: 6.0.0
v8-to-istanbul: 9.3.0
- vitest: 0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vitest: 0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- supports-color
@@ -25133,7 +25234,7 @@ snapshots:
'@vitest/snapshot@0.32.4':
dependencies:
- magic-string: 0.30.10
+ magic-string: 0.30.11
pathe: 1.1.2
pretty-format: 29.7.0
@@ -25246,7 +25347,7 @@ snapshots:
'@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)':
dependencies:
esbuild: 0.18.20
- tslib: 2.6.3
+ tslib: 2.7.0
'@yarnpkg/fslib@2.10.3':
dependencies:
@@ -25263,7 +25364,7 @@ snapshots:
'@yarnpkg/parsers@3.0.0-rc.46':
dependencies:
js-yaml: 3.14.1
- tslib: 2.6.3
+ tslib: 2.7.0
'@zkochan/js-yaml@0.0.6':
dependencies:
@@ -25319,7 +25420,7 @@ snapshots:
acorn-walk@7.2.0: {}
- acorn-walk@8.3.3:
+ acorn-walk@8.3.4:
dependencies:
acorn: 8.12.1
@@ -25352,18 +25453,18 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ahooks@3.8.0(react@18.3.1):
+ ahooks@3.8.1(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- dayjs: 1.11.12
+ '@babel/runtime': 7.25.6
+ dayjs: 1.11.13
intersection-observer: 0.12.2
- js-cookie: 2.2.1
+ js-cookie: 3.0.5
lodash: 4.17.21
react: 18.3.1
react-fast-compare: 3.2.2
resize-observer-polyfill: 1.5.1
screenfull: 5.2.0
- tslib: 2.6.3
+ tslib: 2.7.0
airbnb-prop-types@2.16.0(react@16.14.0):
dependencies:
@@ -25463,7 +25564,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@2.2.1: {}
@@ -25481,63 +25582,64 @@ snapshots:
ansi-wrap@0.1.0: {}
- antd-schema-form@5.0.1(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ antd-schema-form@5.0.1(@ant-design/icons@5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- antd: 5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ antd: 5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- tslib: 2.6.3
+ tslib: 2.7.0
- antd@5.19.3(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ antd@5.20.6(date-fns@2.30.0)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@ant-design/colors': 7.1.0
- '@ant-design/cssinjs': 1.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@ant-design/cssinjs': 1.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@ant-design/cssinjs-utils': 1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@ant-design/icons': 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@ant-design/react-slick': 1.1.2(react@18.3.1)
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@ctrl/tinycolor': 3.6.1
- '@rc-component/color-picker': 1.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@rc-component/color-picker': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@rc-component/mutate-observer': 1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@rc-component/qrcode': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@rc-component/tour': 1.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@rc-component/tour': 1.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
copy-to-clipboard: 3.3.3
- dayjs: 1.11.12
- rc-cascader: 3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ dayjs: 1.11.13
+ rc-cascader: 3.28.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-checkbox: 3.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-collapse: 3.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-dialog: 9.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-drawer: 7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-dropdown: 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-field-form: 2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-field-form: 2.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-image: 7.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-input-number: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-mentions: 2.14.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-input: 1.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-input-number: 9.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-mentions: 2.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-menu: 9.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-notification: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-pagination: 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-picker: 4.6.9(date-fns@2.30.0)(dayjs@1.11.12)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-picker: 4.6.14(date-fns@2.30.0)(dayjs@1.11.13)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-progress: 4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-rate: 2.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-segmented: 2.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-select: 14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-slider: 10.6.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-select: 14.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-slider: 11.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-steps: 6.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-switch: 4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-table: 7.45.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-tabs: 15.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-textarea: 1.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-textarea: 1.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-tooltip: 6.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-tree: 5.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-tree-select: 5.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-upload: 4.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-tree: 5.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-tree-select: 5.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-upload: 4.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -25596,7 +25698,7 @@ snapshots:
aria-hidden@1.2.4:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
aria-query@5.1.3:
dependencies:
@@ -25818,7 +25920,7 @@ snapshots:
ast-types@0.16.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
astral-regex@1.0.0: {}
@@ -25845,7 +25947,7 @@ snapshots:
dependencies:
lodash: 4.17.21
- async@3.2.5: {}
+ async@3.2.6: {}
asynckit@0.4.0: {}
@@ -25855,14 +25957,14 @@ snapshots:
atomic-sleep@1.0.0: {}
- autoprefixer@10.4.19(postcss@8.4.40):
+ autoprefixer@10.4.20(postcss@8.4.45):
dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001643
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001660
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.1
- postcss: 8.4.40
+ picocolors: 1.1.0
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -25871,11 +25973,11 @@ snapshots:
aws-sign2@0.7.0: {}
- aws4@1.13.0: {}
+ aws4@1.13.2: {}
- axios@1.7.2:
+ axios@1.7.7:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -25885,9 +25987,9 @@ snapshots:
dependencies:
'@babel/core': 7.17.12
- babel-core@7.0.0-bridge.0(@babel/core@7.24.9):
+ babel-core@7.0.0-bridge.0(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
babel-jest@25.1.0(@babel/core@7.17.12):
dependencies:
@@ -25916,13 +26018,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-jest@29.7.0(@babel/core@7.24.9):
+ babel-jest@29.7.0(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.24.9)
+ babel-preset-jest: 29.6.3(@babel/core@7.25.2)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -25964,14 +26066,14 @@ snapshots:
babel-plugin-jest-hoist@25.5.0:
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
'@types/babel__traverse': 7.20.6
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.24.7
- '@babel/types': 7.24.9
+ '@babel/template': 7.25.0
+ '@babel/types': 7.25.6
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
@@ -25979,27 +26081,27 @@ snapshots:
babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.12):
dependencies:
- '@babel/compat-data': 7.24.9
+ '@babel/compat-data': 7.25.4
'@babel/core': 7.17.12
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.12)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.9):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
dependencies:
- '@babel/compat-data': 7.24.9
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.9)
+ '@babel/compat-data': 7.25.4
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.9):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.9)
- core-js-compat: 3.37.1
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
@@ -26007,7 +26109,7 @@ snapshots:
dependencies:
'@babel/core': 7.17.12
'@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.12)
- core-js-compat: 3.37.1
+ core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
@@ -26018,17 +26120,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.9):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.9)
+ '@babel/core': 7.25.2
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
babel-plugin-react-compiler@0.0.0-experimental-c23de8d-20240515:
dependencies:
'@babel/generator': 7.2.0
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
chalk: 4.1.2
invariant: 2.2.4
pretty-format: 24.9.0
@@ -26038,7 +26140,7 @@ snapshots:
babel-plugin-react-css-modules@5.2.6(@babel/core@7.17.12):
dependencies:
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.17.12)
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
generic-names: 2.0.1
@@ -26052,12 +26154,12 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.9)(@babel/traverse@7.24.8):
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.25.2)(@babel/traverse@7.25.6):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
optionalDependencies:
- '@babel/traverse': 7.24.8
+ '@babel/traverse': 7.25.6
babel-polyfill@6.26.0:
dependencies:
@@ -26080,21 +26182,24 @@ snapshots:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.12)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.12)
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.9):
- dependencies:
- '@babel/core': 7.24.9
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.9)
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.2):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
babel-preset-jest@25.5.0(@babel/core@7.17.12):
dependencies:
@@ -26102,11 +26207,11 @@ snapshots:
babel-plugin-jest-hoist: 25.5.0
babel-preset-current-node-syntax: 0.1.4(@babel/core@7.17.12)
- babel-preset-jest@29.6.3(@babel/core@7.24.9):
+ babel-preset-jest@29.6.3(@babel/core@7.25.2):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.9)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
babel-runtime@6.26.0:
dependencies:
@@ -26220,7 +26325,7 @@ snapshots:
bn.js@5.2.1: {}
- body-parser@1.20.2:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -26230,14 +26335,14 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- body-parser@1.20.2(supports-color@6.1.0):
+ body-parser@1.20.3(supports-color@6.1.0):
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -26247,7 +26352,7 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
@@ -26372,7 +26477,7 @@ snapshots:
browserify-rsa: 4.1.0
create-hash: 1.2.0
create-hmac: 1.1.7
- elliptic: 6.5.6
+ elliptic: 6.5.7
hash-base: 3.0.4
inherits: 2.0.4
parse-asn1: 5.1.7
@@ -26387,12 +26492,12 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist@4.23.2:
+ browserslist@4.23.3:
dependencies:
- caniuse-lite: 1.0.30001643
- electron-to-chromium: 1.5.2
+ caniuse-lite: 1.0.30001660
+ electron-to-chromium: 1.5.18
node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.2)
+ update-browserslist-db: 1.1.0(browserslist@4.23.3)
bser@2.1.1:
dependencies:
@@ -26524,7 +26629,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.3
+ tslib: 2.7.0
camelcase-css@2.0.1: {}
@@ -26561,12 +26666,12 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.23.2
- caniuse-lite: 1.0.30001643
+ browserslist: 4.23.3
+ caniuse-lite: 1.0.30001660
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001643: {}
+ caniuse-lite@1.0.30001660: {}
canvas-confetti@1.9.3: {}
@@ -26660,15 +26765,19 @@ snapshots:
domhandler: 5.0.3
domutils: 3.1.0
- cheerio@1.0.0-rc.12:
+ cheerio@1.0.0:
dependencies:
cheerio-select: 2.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
domutils: 3.1.0
- htmlparser2: 8.0.2
+ encoding-sniffer: 0.2.0
+ htmlparser2: 9.1.0
parse5: 7.1.2
parse5-htmlparser2-tree-adapter: 7.0.0
+ parse5-parser-stream: 7.1.2
+ undici: 6.19.8
+ whatwg-mimetype: 4.0.0
chokidar@2.1.8:
dependencies:
@@ -26767,7 +26876,7 @@ snapshots:
dependencies:
consola: 3.2.3
- cjs-module-lexer@1.3.1: {}
+ cjs-module-lexer@1.4.1: {}
clamp@1.0.1: {}
@@ -26821,9 +26930,9 @@ snapshots:
cli-width@2.2.1: {}
- click-to-react-component@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ click-to-react-component@1.1.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@floating-ui/react-dom-interactions': 0.3.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@floating-ui/react-dom-interactions': 0.3.1(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
htm: 3.1.1
react: 18.3.1
react-merge-refs: 1.1.0
@@ -26918,13 +27027,13 @@ snapshots:
codemirror@6.0.1(@lezer/common@1.2.1):
dependencies:
- '@codemirror/autocomplete': 6.17.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.29.0)(@lezer/common@1.2.1)
- '@codemirror/commands': 6.6.0
+ '@codemirror/autocomplete': 6.18.0(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.1)
+ '@codemirror/commands': 6.6.1
'@codemirror/language': 6.10.2
'@codemirror/lint': 6.8.1
'@codemirror/search': 6.5.6
'@codemirror/state': 6.4.1
- '@codemirror/view': 6.29.0
+ '@codemirror/view': 6.33.0
transitivePeerDependencies:
- '@lezer/common'
@@ -27328,11 +27437,11 @@ snapshots:
dependencies:
toggle-selection: 1.0.6
- core-js-compat@3.37.1:
+ core-js-compat@3.38.1:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
- core-js-pure@3.37.1: {}
+ core-js-pure@3.38.1: {}
core-js@2.6.12: {}
@@ -27347,12 +27456,12 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.5.4))(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@20.5.1)(typescript@5.5.4))(typescript@5.5.4):
+ cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.6.2))(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@20.5.1)(typescript@5.6.2))(typescript@5.6.2):
dependencies:
'@types/node': 20.5.1
- cosmiconfig: 8.3.6(typescript@5.5.4)
- ts-node: 10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@20.5.1)(typescript@5.5.4)
- typescript: 5.5.4
+ cosmiconfig: 8.3.6(typescript@5.6.2)
+ ts-node: 10.9.2(@swc/core@1.7.24)(@types/node@20.5.1)(typescript@5.6.2)
+ typescript: 5.6.2
cosmiconfig@5.2.1:
dependencies:
@@ -27386,21 +27495,21 @@ snapshots:
optionalDependencies:
typescript: 4.2.3
- cosmiconfig@8.3.6(typescript@5.5.4):
+ cosmiconfig@8.3.6(typescript@5.6.2):
dependencies:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
country-regex@1.1.0: {}
create-ecdh@4.0.4:
dependencies:
bn.js: 4.12.0
- elliptic: 6.5.6
+ elliptic: 6.5.7
create-hash@1.2.0:
dependencies:
@@ -27419,13 +27528,13 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
- create-jest@29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ create-jest@29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -27434,13 +27543,13 @@ snapshots:
- supports-color
- ts-node
- create-jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ create-jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -27494,10 +27603,10 @@ snapshots:
crypto@1.0.1: {}
- css-blank-pseudo@3.0.3(postcss@8.4.40):
+ css-blank-pseudo@3.0.3(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
css-color-keywords@1.0.0: {}
@@ -27532,10 +27641,10 @@ snapshots:
css-global-keywords@1.0.1: {}
- css-has-pseudo@3.0.4(postcss@8.4.40):
+ css-has-pseudo@3.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
css-loader@3.2.1(webpack@4.41.5):
dependencies:
@@ -27555,12 +27664,12 @@ snapshots:
css-loader@6.7.1(webpack@4.41.5):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.40)
- postcss: 8.4.40
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.40)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.40)
- postcss-modules-scope: 3.2.0(postcss@8.4.40)
- postcss-modules-values: 4.0.0(postcss@8.4.40)
+ icss-utils: 5.1.0(postcss@8.4.45)
+ postcss: 8.4.45
+ postcss-modules-extract-imports: 3.1.0(postcss@8.4.45)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.4.45)
+ postcss-modules-scope: 3.2.0(postcss@8.4.45)
+ postcss-modules-values: 4.0.0(postcss@8.4.45)
postcss-value-parser: 4.2.0
semver: 7.6.3
webpack: 4.41.5
@@ -27574,9 +27683,9 @@ snapshots:
postcss-modules-scope: 1.1.0
postcss-modules-values: 1.3.0
- css-prefers-color-scheme@6.0.3(postcss@8.4.40):
+ css-prefers-color-scheme@6.0.3(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
css-select-base-adapter@0.1.1: {}
@@ -27629,11 +27738,11 @@ snapshots:
css-tree@2.3.1:
dependencies:
mdn-data: 2.0.30
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
css-vendor@2.0.8:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
is-in-browser: 1.1.3
css-what@3.4.2: {}
@@ -27991,11 +28100,11 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
dateformat@3.0.3: {}
- dayjs@1.11.12: {}
+ dayjs@1.11.13: {}
debug-fabulous@1.1.0:
dependencies:
@@ -28037,13 +28146,13 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.5:
+ debug@4.3.7:
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
- debug@4.3.5(supports-color@6.1.0):
+ debug@4.3.7(supports-color@6.1.0):
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
optionalDependencies:
supports-color: 6.1.0
@@ -28255,7 +28364,7 @@ snapshots:
detect-port@1.6.1:
dependencies:
address: 1.2.2
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -28321,7 +28430,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
csstype: 3.1.3
dom-serializer@0.2.2:
@@ -28381,7 +28490,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
dot-prop@3.0.0:
dependencies:
@@ -28457,7 +28566,7 @@ snapshots:
dependencies:
jake: 10.9.2
- electron-to-chromium@1.5.2: {}
+ electron-to-chromium@1.5.18: {}
element-size@1.1.1: {}
@@ -28465,7 +28574,7 @@ snapshots:
dependencies:
strongly-connected-components: 1.0.1
- elliptic@6.5.6:
+ elliptic@6.5.7:
dependencies:
bn.js: 4.12.0
brorand: 1.1.0
@@ -28489,6 +28598,13 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
+ encoding-sniffer@0.2.0:
+ dependencies:
+ iconv-lite: 0.6.3
+ whatwg-encoding: 3.1.1
+
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
@@ -28615,7 +28731,7 @@ snapshots:
enzyme@3.11.0:
dependencies:
array.prototype.flat: 1.3.2
- cheerio: 1.0.0-rc.12
+ cheerio: 1.0.0
enzyme-shallow-equal: 1.0.7
function.prototype.name: 1.1.6
has: 1.0.4
@@ -28802,7 +28918,7 @@ snapshots:
esbuild-register@3.6.0(esbuild@0.18.20):
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
esbuild: 0.18.20
transitivePeerDependencies:
- supports-color
@@ -28910,7 +29026,7 @@ snapshots:
'@esbuild/win32-ia32': 0.23.1
'@esbuild/win32-x64': 0.23.1
- escalade@3.1.2: {}
+ escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -28939,11 +29055,11 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-airbnb-base@14.1.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0))(eslint@7.18.0):
+ eslint-config-airbnb-base@14.1.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(eslint@7.18.0):
dependencies:
confusing-browser-globals: 1.0.11
eslint: 7.18.0
- eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0)
+ eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1)(eslint@7.18.0)
object.assign: 4.1.5
object.entries: 1.1.8
@@ -28958,7 +29074,7 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -28968,7 +29084,7 @@ snapshots:
array-find: 1.0.0
debug: 2.6.9
enhanced-resolve: 0.9.1
- eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0)
+ eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1)(eslint@7.18.0)
find-root: 1.1.0
has: 1.0.4
interpret: 1.4.0
@@ -28991,7 +29107,7 @@ snapshots:
remark-parse: 10.0.2
remark-stringify: 10.0.3
synckit: 0.9.1
- tslib: 2.6.3
+ tslib: 2.7.0
unified: 10.1.2
unified-engine: 10.1.0
unist-util-visit: 4.1.2
@@ -29000,7 +29116,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0):
+ eslint-module-utils@2.11.0(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0):
dependencies:
debug: 3.2.7
optionalDependencies:
@@ -29011,11 +29127,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
+ eslint-module-utils@2.11.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
@@ -29026,7 +29142,7 @@ snapshots:
eslint: 7.18.0
eslint-rule-composer: 0.3.0
- eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0):
+ eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1)(eslint@7.18.0):
dependencies:
array-includes: 3.1.8
array.prototype.flat: 1.3.2
@@ -29035,7 +29151,7 @@ snapshots:
doctrine: 1.5.0
eslint: 7.18.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0)
+ eslint-module-utils: 2.11.0(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0)
has: 1.0.4
minimatch: 3.1.2
object.values: 1.2.0
@@ -29049,8 +29165,9 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0):
+ eslint-plugin-import@2.30.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0):
dependencies:
+ '@rtsao/scc': 1.1.0
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
@@ -29059,9 +29176,9 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
+ eslint-module-utils: 2.11.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
hasown: 2.0.2
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -29070,19 +29187,19 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)))(typescript@4.2.3):
+ eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)))(typescript@4.2.3):
dependencies:
'@typescript-eslint/utils': 5.62.0(eslint@7.18.0)(typescript@4.2.3)
eslint: 7.18.0
optionalDependencies:
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0)(typescript@4.2.3)
- jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
transitivePeerDependencies:
- supports-color
- typescript
@@ -29102,7 +29219,7 @@ snapshots:
remark-mdx: 2.3.0
remark-parse: 10.0.2
remark-stringify: 10.0.3
- tslib: 2.6.3
+ tslib: 2.7.0
unified: 10.1.2
vfile: 5.3.7
transitivePeerDependencies:
@@ -29124,7 +29241,7 @@ snapshots:
dependencies:
eslint: 8.57.0
- eslint-plugin-react-refresh@0.4.9(eslint@8.57.0):
+ eslint-plugin-react-refresh@0.4.11(eslint@8.57.0):
dependencies:
eslint: 8.57.0
@@ -29163,7 +29280,7 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.35.0(eslint@8.57.0):
+ eslint-plugin-react@7.35.2(eslint@8.57.0):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -29185,10 +29302,10 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-storybook@0.6.15(eslint@8.57.0)(typescript@5.5.4):
+ eslint-plugin-storybook@0.6.15(eslint@8.57.0)(typescript@5.6.2):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.6.2)
eslint: 8.57.0
requireindex: 1.2.0
ts-dedent: 2.2.0
@@ -29230,7 +29347,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.5
+ debug: 4.3.7
doctrine: 3.0.0
enquirer: 2.4.1
eslint-scope: 5.1.1
@@ -29278,7 +29395,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.5
+ debug: 4.3.7
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -29292,7 +29409,7 @@ snapshots:
glob-parent: 6.0.2
globals: 13.24.0
graphemer: 1.4.0
- ignore: 5.3.1
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
@@ -29346,7 +29463,7 @@ snapshots:
estree-util-visit@1.2.1:
dependencies:
'@types/estree-jsx': 1.0.5
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
estree-walker@2.0.2: {}
@@ -29500,34 +29617,34 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- express@4.19.2:
+ express@4.20.0:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
finalhandler: 1.2.0
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
qs: 6.11.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.0
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -29536,34 +29653,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
- express@4.19.2(supports-color@6.1.0):
+ express@4.20.0(supports-color@6.1.0):
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2(supports-color@6.1.0)
+ body-parser: 1.20.3(supports-color@6.1.0)
content-disposition: 0.5.4
content-type: 1.0.5
cookie: 0.6.0
cookie-signature: 1.0.6
debug: 2.6.9(supports-color@6.1.0)
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
finalhandler: 1.2.0(supports-color@6.1.0)
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.10
proxy-addr: 2.0.7
qs: 6.11.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0(supports-color@6.1.0)
- serve-static: 1.15.0(supports-color@6.1.0)
+ send: 0.19.0(supports-color@6.1.0)
+ serve-static: 1.16.0(supports-color@6.1.0)
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -29666,7 +29783,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-glob@3.3.2:
dependencies:
@@ -29674,7 +29791,7 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-isnumeric@1.1.4:
dependencies:
@@ -29865,11 +29982,6 @@ snapshots:
dependencies:
semver-regex: 2.0.0
- find-yarn-workspace-root2@1.2.16:
- dependencies:
- micromatch: 4.0.7
- pkg-dir: 4.2.0
-
findup-sync@2.0.0:
dependencies:
detect-file: 1.0.0
@@ -29916,22 +30028,22 @@ snapshots:
dependencies:
dtype: 2.0.0
- flow-parser@0.241.0: {}
+ flow-parser@0.245.2: {}
flush-write-stream@1.1.1:
dependencies:
inherits: 2.0.4
readable-stream: 2.3.8
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.9: {}
- follow-redirects@1.15.6(debug@4.3.5(supports-color@6.1.0)):
+ follow-redirects@1.15.9(debug@4.3.7(supports-color@6.1.0)):
optionalDependencies:
- debug: 4.3.5(supports-color@6.1.0)
+ debug: 4.3.7(supports-color@6.1.0)
- follow-redirects@1.15.6(debug@4.3.5):
+ follow-redirects@1.15.9(debug@4.3.7):
optionalDependencies:
- debug: 4.3.5
+ debug: 4.3.7
font-atlas@2.1.0:
dependencies:
@@ -29959,7 +30071,7 @@ snapshots:
foreachasync@3.0.0: {}
- foreground-child@3.2.1:
+ foreground-child@3.3.0:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
@@ -30194,7 +30306,7 @@ snapshots:
dependencies:
resolve-pkg-maps: 1.0.0
- get-tsconfig@4.7.6:
+ get-tsconfig@4.8.0:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -30210,7 +30322,7 @@ snapshots:
consola: 3.2.3
defu: 6.1.4
node-fetch-native: 1.6.4
- nypm: 0.3.9
+ nypm: 0.3.11
ohash: 1.1.3
pathe: 1.1.2
tar: 6.2.1
@@ -30333,7 +30445,7 @@ snapshots:
glob@10.4.5:
dependencies:
- foreground-child: 3.2.1
+ foreground-child: 3.3.0
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
@@ -30418,7 +30530,7 @@ snapshots:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -30426,7 +30538,7 @@ snapshots:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 4.0.0
@@ -30621,7 +30733,7 @@ snapshots:
lodash.clonedeep: 4.5.0
plugin-error: 1.0.1
replace-ext: 1.0.1
- sass: 1.77.8
+ sass: 1.78.0
strip-ansi: 4.0.0
through2: 2.0.5
vinyl-sourcemaps-apply: 0.2.1
@@ -30721,7 +30833,7 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.19.0
+ uglify-js: 3.19.3
har-schema@2.0.0: {}
@@ -30817,7 +30929,7 @@ snapshots:
hast-to-hyperscript@9.0.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
comma-separated-tokens: 1.0.8
property-information: 5.6.0
space-separated-tokens: 1.1.5
@@ -30875,7 +30987,7 @@ snapshots:
history@4.10.1:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.3
@@ -30884,7 +30996,7 @@ snapshots:
history@5.3.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.23.6
hmac-drbg@1.0.1:
dependencies:
@@ -30946,7 +31058,7 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.31.3
+ terser: 5.32.0
html-minifier@3.5.21:
dependencies:
@@ -30996,6 +31108,13 @@ snapshots:
domutils: 3.1.0
entities: 4.5.0
+ htmlparser2@9.1.0:
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.1.0
+ entities: 4.5.0
+
http-assert@1.5.0:
dependencies:
deep-equal: 1.0.1
@@ -31030,9 +31149,9 @@ snapshots:
http-parser-js@0.5.8: {}
- http-proxy-middleware@0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0):
+ http-proxy-middleware@0.19.1(debug@4.3.7(supports-color@6.1.0))(supports-color@6.1.0):
dependencies:
- http-proxy: 1.18.1(debug@4.3.5(supports-color@6.1.0))
+ http-proxy: 1.18.1(debug@4.3.7(supports-color@6.1.0))
is-glob: 4.0.3
lodash: 4.17.21
micromatch: 3.1.10(supports-color@6.1.0)
@@ -31040,29 +31159,29 @@ snapshots:
- debug
- supports-color
- http-proxy-middleware@3.0.0:
+ http-proxy-middleware@3.0.2:
dependencies:
- '@types/http-proxy': 1.17.14
- debug: 4.3.5
- http-proxy: 1.18.1(debug@4.3.5)
+ '@types/http-proxy': 1.17.15
+ debug: 4.3.7
+ http-proxy: 1.18.1(debug@4.3.7)
is-glob: 4.0.3
- is-plain-obj: 3.0.0
- micromatch: 4.0.7
+ is-plain-object: 5.0.0
+ micromatch: 4.0.8
transitivePeerDependencies:
- supports-color
- http-proxy@1.18.1(debug@4.3.5(supports-color@6.1.0)):
+ http-proxy@1.18.1(debug@4.3.7(supports-color@6.1.0)):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6(debug@4.3.5(supports-color@6.1.0))
+ follow-redirects: 1.15.9(debug@4.3.7(supports-color@6.1.0))
requires-port: 1.0.0
transitivePeerDependencies:
- debug
- http-proxy@1.18.1(debug@4.3.5):
+ http-proxy@1.18.1(debug@4.3.7):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6(debug@4.3.5)
+ follow-redirects: 1.15.9(debug@4.3.7)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -31085,7 +31204,7 @@ snapshots:
https-proxy-agent@4.0.0:
dependencies:
agent-base: 5.1.1
- debug: 4.3.5
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -31132,9 +31251,9 @@ snapshots:
dependencies:
postcss: 7.0.39
- icss-utils@5.1.0(postcss@8.4.40):
+ icss-utils@5.1.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
identity-obj-proxy@3.0.0:
dependencies:
@@ -31150,7 +31269,7 @@ snapshots:
ignore@4.0.6: {}
- ignore@5.3.1: {}
+ ignore@5.3.2: {}
image-size@0.5.5:
optional: true
@@ -31364,7 +31483,7 @@ snapshots:
rgb-regex: 1.0.1
rgba-regex: 1.0.0
- is-core-module@2.15.0:
+ is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
@@ -31557,8 +31676,6 @@ snapshots:
is-plain-obj@2.1.0: {}
- is-plain-obj@3.0.0: {}
-
is-plain-obj@4.1.0: {}
is-plain-object@2.0.4:
@@ -31706,8 +31823,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.24.9
- '@babel/parser': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/parser': 7.25.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -31716,8 +31833,8 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.24.9
- '@babel/parser': 7.24.8
+ '@babel/core': 7.25.2
+ '@babel/parser': 7.25.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -31732,7 +31849,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -31759,7 +31876,7 @@ snapshots:
jake@10.9.2:
dependencies:
- async: 3.2.5
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
@@ -31784,7 +31901,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -31826,16 +31943,16 @@ snapshots:
- supports-color
- utf-8-validate
- jest-cli@29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ jest-cli@29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ create-jest: 29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -31845,16 +31962,16 @@ snapshots:
- supports-color
- ts-node
- jest-cli@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ jest-cli@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ create-jest: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -31883,7 +32000,7 @@ snapshots:
jest-resolve: 25.5.1
jest-util: 25.5.0
jest-validate: 25.5.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 25.5.0
realpath-native: 2.0.0
transitivePeerDependencies:
@@ -31892,12 +32009,12 @@ snapshots:
- supports-color
- utf-8-validate
- jest-config@29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ jest-config@29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.9)
+ babel-jest: 29.7.0(@babel/core@7.25.2)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -31911,24 +32028,24 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 18.19.42
- ts-node: 10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)
+ '@types/node': 18.19.50
+ ts-node: 10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- jest-config@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ jest-config@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
- '@babel/core': 7.24.9
+ '@babel/core': 7.25.2
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.24.9)
+ babel-jest: 29.7.0(@babel/core@7.25.2)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -31942,14 +32059,14 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 20.5.1
- ts-node: 10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)
+ ts-node: 10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -32027,7 +32144,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -32047,7 +32164,7 @@ snapshots:
jest-serializer: 25.5.0
jest-util: 25.5.0
jest-worker: 25.5.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
sane: 4.1.0
walker: 1.0.8
which: 2.0.2
@@ -32060,21 +32177,21 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
jest-jasmine2@25.5.4:
dependencies:
- '@babel/traverse': 7.24.8
+ '@babel/traverse': 7.25.6
'@jest/environment': 25.5.0
'@jest/source-map': 25.5.0
'@jest/test-result': 25.5.0
@@ -32128,7 +32245,7 @@ snapshots:
'@types/stack-utils': 1.0.1
chalk: 3.0.0
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
slash: 3.0.0
stack-utils: 1.0.5
@@ -32139,7 +32256,7 @@ snapshots:
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -32151,12 +32268,12 @@ snapshots:
jest-mock@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@25.5.1):
@@ -32242,7 +32359,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -32304,9 +32421,9 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
chalk: 4.1.2
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -32328,7 +32445,7 @@ snapshots:
jest-snapshot@25.5.1:
dependencies:
- '@babel/types': 7.24.9
+ '@babel/types': 7.25.6
'@jest/types': 25.5.0
'@types/prettier': 1.19.1
chalk: 3.0.0
@@ -32346,15 +32463,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.24.9
- '@babel/generator': 7.24.10
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.9)
- '@babel/types': 7.24.9
+ '@babel/core': 7.25.2
+ '@babel/generator': 7.25.6
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
+ '@babel/types': 7.25.6
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.9)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -32380,7 +32497,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -32417,7 +32534,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -32431,14 +32548,14 @@ snapshots:
jest-worker@29.4.3:
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@29.7.0:
dependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -32454,24 +32571,24 @@ snapshots:
- supports-color
- utf-8-validate
- jest@29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ jest@29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@18.19.42)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-cli: 29.7.0(@types/node@18.19.50)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
- jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ jest-cli: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -32483,7 +32600,7 @@ snapshots:
js-base64@2.6.4: {}
- js-cookie@2.2.1: {}
+ js-cookie@3.0.5: {}
js-tokens@4.0.0: {}
@@ -32498,30 +32615,30 @@ snapshots:
jsbn@0.1.1: {}
- jscodeshift@0.15.2(@babel/preset-env@7.24.8(@babel/core@7.24.9)):
- dependencies:
- '@babel/core': 7.24.9
- '@babel/parser': 7.24.8
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.24.9)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.24.9)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-flow': 7.24.7(@babel/core@7.24.9)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.9)
- '@babel/register': 7.24.6(@babel/core@7.24.9)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.9)
+ jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)):
+ dependencies:
+ '@babel/core': 7.25.2
+ '@babel/parser': 7.25.6
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
+ '@babel/register': 7.24.6(@babel/core@7.25.2)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.25.2)
chalk: 4.1.2
- flow-parser: 0.241.0
+ flow-parser: 0.245.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
neo-async: 2.6.2
node-dir: 0.1.17
recast: 0.23.9
temp: 0.8.4
write-file-atomic: 2.4.3
optionalDependencies:
- '@babel/preset-env': 7.24.8(@babel/core@7.24.9)
+ '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
@@ -32636,46 +32753,46 @@ snapshots:
jss-plugin-camel-case@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
hyphenate-style-name: 1.1.0
jss: 10.10.0
jss-plugin-default-unit@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
jss: 10.10.0
jss-plugin-global@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
jss: 10.10.0
jss-plugin-nested@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
jss: 10.10.0
tiny-warning: 1.0.3
jss-plugin-props-sort@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
jss: 10.10.0
jss-plugin-rule-value-function@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
jss: 10.10.0
tiny-warning: 1.0.3
jss-plugin-vendor-prefixer@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
css-vendor: 2.0.8
jss: 10.10.0
jss@10.10.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
csstype: 3.1.3
is-in-browser: 1.1.3
tiny-warning: 1.0.3
@@ -32756,14 +32873,14 @@ snapshots:
koa-mount@4.0.0:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
koa-compose: 4.1.0
transitivePeerDependencies:
- supports-color
koa-route@3.2.0:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
methods: 1.1.2
path-to-regexp: 1.8.0
transitivePeerDependencies:
@@ -32771,7 +32888,7 @@ snapshots:
koa-send@5.0.1:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
http-errors: 1.8.1
resolve-path: 1.4.0
transitivePeerDependencies:
@@ -32867,14 +32984,14 @@ snapshots:
image-size: 0.5.5
make-dir: 2.1.0
mime: 1.6.0
- native-request: 1.1.0
+ native-request: 1.1.2
source-map: 0.6.1
less@4.1.3:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.3
+ tslib: 2.7.0
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -32888,7 +33005,7 @@ snapshots:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.3
+ tslib: 2.7.0
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -32910,7 +33027,7 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lib0@0.2.94:
+ lib0@0.2.97:
dependencies:
isomorphic.js: 0.2.5
@@ -33042,13 +33159,6 @@ snapshots:
load-tsconfig@0.2.5: {}
- load-yaml-file@0.2.0:
- dependencies:
- graceful-fs: 4.2.11
- js-yaml: 3.14.1
- pify: 4.0.1
- strip-bom: 3.0.0
-
loader-runner@2.4.0: {}
loader-utils@0.2.17:
@@ -33220,7 +33330,7 @@ snapshots:
strip-ansi: 7.1.0
wrap-ansi: 8.1.0
- loglevel@1.9.1: {}
+ loglevel@1.9.2: {}
lolex@5.1.2:
dependencies:
@@ -33247,7 +33357,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
lowercase-keys@1.0.1: {}
@@ -33282,7 +33392,7 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
- magic-string@0.30.10:
+ magic-string@0.30.11:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -33390,7 +33500,7 @@ snapshots:
markdown-table@3.0.3: {}
- markdown-to-jsx@7.4.7(react@18.3.1):
+ markdown-to-jsx@7.5.0(react@18.3.1):
dependencies:
react: 18.3.1
@@ -33426,7 +33536,7 @@ snapshots:
mdast-util-directive@2.2.4:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
parse-entities: 4.0.1
@@ -33455,7 +33565,7 @@ snapshots:
mdast-util-from-markdown@1.3.1:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -33540,7 +33650,7 @@ snapshots:
'@types/estree-jsx': 1.0.5
'@types/hast': 2.3.10
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
ccount: 2.0.1
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -33580,7 +33690,7 @@ snapshots:
mdast-util-to-hast@10.0.1:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
mdast-util-definitions: 4.0.0
mdurl: 1.0.1
unist-builder: 2.0.3
@@ -33591,7 +33701,7 @@ snapshots:
mdast-util-to-markdown@1.5.0:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -33629,12 +33739,12 @@ snapshots:
dependencies:
fs-monkey: 1.0.6
- memfs@4.9.4:
+ memfs@4.11.1:
dependencies:
- '@jsonjoy.com/json-pack': 1.0.4(tslib@2.6.3)
- '@jsonjoy.com/util': 1.2.0(tslib@2.6.3)
- tree-dump: 1.0.2(tslib@2.6.3)
- tslib: 2.6.3
+ '@jsonjoy.com/json-pack': 1.1.0(tslib@2.7.0)
+ '@jsonjoy.com/util': 1.3.0(tslib@2.7.0)
+ tree-dump: 1.0.2(tslib@2.7.0)
+ tslib: 2.7.0
memoizee@0.4.17:
dependencies:
@@ -33704,7 +33814,7 @@ snapshots:
type-fest: 0.18.1
yargs-parser: 20.2.9
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -33947,7 +34057,7 @@ snapshots:
dependencies:
'@types/acorn': 4.0.6
'@types/estree': 1.0.5
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
estree-util-visit: 1.2.1
micromark-util-symbol: 1.1.0
micromark-util-types: 1.1.0
@@ -33983,7 +34093,7 @@ snapshots:
micromark@2.11.4:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -33991,7 +34101,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.5
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -34067,7 +34177,7 @@ snapshots:
braces: 3.0.3
picomatch: 2.3.1
- micromatch@4.0.7:
+ micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
@@ -34103,7 +34213,7 @@ snapshots:
mini-create-react-context@0.3.3(prop-types@15.8.1)(react@16.14.0):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
prop-types: 15.8.1
react: 16.14.0
tiny-warning: 1.0.3
@@ -34215,7 +34325,7 @@ snapshots:
dependencies:
acorn: 8.12.1
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
ufo: 1.5.4
modify-values@1.0.1: {}
@@ -34325,7 +34435,7 @@ snapshots:
native-promise-only@0.8.1: {}
- native-request@1.1.0:
+ native-request@1.1.2:
optional: true
natural-compare-lite@1.4.0: {}
@@ -34362,7 +34472,7 @@ snapshots:
nice-napi@1.0.2:
dependencies:
node-addon-api: 3.2.1
- node-gyp-build: 4.8.1
+ node-gyp-build: 4.8.2
optional: true
nice-try@1.0.5: {}
@@ -34374,7 +34484,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.3
+ tslib: 2.7.0
node-abort-controller@3.1.1: {}
@@ -34410,7 +34520,7 @@ snapshots:
node-forge@0.9.1: {}
- node-gyp-build@4.8.1:
+ node-gyp-build@4.8.2:
optional: true
node-int64@0.4.0: {}
@@ -34463,7 +34573,7 @@ snapshots:
string_decoder: 1.3.0
timers-browserify: 2.0.12
tty-browserify: 0.0.0
- url: 0.11.3
+ url: 0.11.4
util: 0.11.1
vm-browserify: 1.1.2
@@ -34494,7 +34604,7 @@ snapshots:
normalize-package-data@3.0.3:
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
semver: 7.6.3
validate-npm-package-license: 3.0.4
@@ -34559,13 +34669,13 @@ snapshots:
nwsapi@2.2.12: {}
- nx@17.3.2(@swc/core@1.7.2(@swc/helpers@0.5.1)):
+ nx@17.3.2(@swc/core@1.7.24):
dependencies:
- '@nrwl/tao': 17.3.2(@swc/core@1.7.2(@swc/helpers@0.5.1))
+ '@nrwl/tao': 17.3.2(@swc/core@1.7.24)
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.6
- axios: 1.7.2
+ axios: 1.7.7
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -34576,7 +34686,7 @@ snapshots:
figures: 3.2.0
flat: 5.0.2
fs-extra: 11.2.0
- ignore: 5.3.1
+ ignore: 5.3.2
jest-diff: 29.7.0
js-yaml: 4.1.0
jsonc-parser: 3.2.0
@@ -34592,7 +34702,7 @@ snapshots:
tar-stream: 2.2.0
tmp: 0.2.3
tsconfig-paths: 4.2.0
- tslib: 2.6.3
+ tslib: 2.7.0
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
@@ -34606,17 +34716,17 @@ snapshots:
'@nx/nx-linux-x64-musl': 17.3.2
'@nx/nx-win32-arm64-msvc': 17.3.2
'@nx/nx-win32-x64-msvc': 17.3.2
- '@swc/core': 1.7.2(@swc/helpers@0.5.1)
+ '@swc/core': 1.7.24
transitivePeerDependencies:
- debug
- nypm@0.3.9:
+ nypm@0.3.11:
dependencies:
citty: 0.1.6
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.1.3
+ pkg-types: 1.2.0
ufo: 1.5.4
oauth-sign@0.9.0: {}
@@ -34943,6 +35053,8 @@ snapshots:
registry-url: 5.1.0
semver: 6.3.0
+ package-manager-detector@0.2.0: {}
+
pako@0.2.9: {}
pako@1.0.11: {}
@@ -34962,7 +35074,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
parent-module@1.0.1:
dependencies:
@@ -34990,7 +35102,7 @@ snapshots:
parse-entities@4.0.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
character-entities: 2.0.2
character-entities-legacy: 3.0.0
character-reference-invalid: 2.0.1
@@ -35058,6 +35170,10 @@ snapshots:
domhandler: 5.0.3
parse5: 7.1.2
+ parse5-parser-stream@7.1.2:
+ dependencies:
+ parse5: 7.1.2
+
parse5@5.1.0: {}
parse5@6.0.1: {}
@@ -35083,7 +35199,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.7.0
pascalcase@0.1.1: {}
@@ -35124,7 +35240,7 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.10: {}
path-to-regexp@1.7.0:
dependencies:
@@ -35183,7 +35299,7 @@ snapshots:
picocolors@0.2.1: {}
- picocolors@1.0.1: {}
+ picocolors@1.1.0: {}
picomatch@2.3.1: {}
@@ -35218,7 +35334,7 @@ snapshots:
process-warning: 1.0.0
quick-format-unescaped: 4.0.4
real-require: 0.1.0
- safe-stable-stringify: 2.4.3
+ safe-stable-stringify: 2.5.0
sonic-boom: 2.8.0
thread-stream: 0.15.2
@@ -35245,7 +35361,7 @@ snapshots:
dependencies:
find-up: 5.0.0
- pkg-types@1.1.3:
+ pkg-types@1.2.0:
dependencies:
confbox: 0.1.7
mlly: 1.7.1
@@ -35255,6 +35371,61 @@ snapshots:
dependencies:
semver-compare: 1.0.0
+ plotly.js@2.34.0:
+ dependencies:
+ '@plotly/d3': 3.8.2
+ '@plotly/d3-sankey': 0.7.2
+ '@plotly/d3-sankey-circular': 0.33.1
+ '@plotly/mapbox-gl': 1.13.4
+ '@turf/area': 6.5.0
+ '@turf/bbox': 6.5.0
+ '@turf/centroid': 6.5.0
+ base64-arraybuffer: 1.0.2
+ canvas-fit: 1.5.0
+ color-alpha: 1.0.4
+ color-normalize: 1.5.0
+ color-parse: 2.0.0
+ color-rgba: 2.1.1
+ country-regex: 1.1.0
+ d3-force: 1.2.1
+ d3-format: 1.4.5
+ d3-geo: 1.12.1
+ d3-geo-projection: 2.9.0
+ d3-hierarchy: 1.1.9
+ d3-interpolate: 3.0.1
+ d3-time: 1.1.0
+ d3-time-format: 2.3.0
+ fast-isnumeric: 1.1.4
+ gl-mat4: 1.2.0
+ gl-text: 1.4.0
+ has-hover: 1.0.1
+ has-passive-events: 1.0.0
+ is-mobile: 4.0.0
+ mouse-change: 1.4.0
+ mouse-event-offset: 3.0.2
+ mouse-wheel: 1.2.0
+ native-promise-only: 0.8.1
+ parse-svg-path: 0.1.2
+ point-in-polygon: 1.1.0
+ polybooljs: 1.2.2
+ probe-image-size: 7.2.3
+ regl: '@plotly/regl@2.1.2'
+ regl-error2d: 2.0.12
+ regl-line2d: 3.1.3
+ regl-scatter2d: 3.3.1
+ regl-splom: 1.0.14
+ strongly-connected-components: 1.0.1
+ superscript-text: 1.0.0
+ svg-path-sdf: 1.1.3
+ tinycolor2: 1.6.0
+ to-px: 1.0.1
+ topojson-client: 3.1.0
+ webgl-context: 2.2.0
+ world-calendars: 1.0.3
+ transitivePeerDependencies:
+ - mapbox-gl
+ - supports-color
+
plotly.js@2.34.0(mapbox-gl@1.13.3):
dependencies:
'@plotly/d3': 3.8.2
@@ -35331,7 +35502,7 @@ snapshots:
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
polybooljs@1.2.2: {}
@@ -35357,40 +35528,40 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-attribute-case-insensitive@5.0.2(postcss@8.4.40):
+ postcss-attribute-case-insensitive@5.0.2(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-calc@7.0.5:
dependencies:
postcss: 7.0.39
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-clamp@4.1.0(postcss@8.4.40):
+ postcss-clamp@4.1.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-color-functional-notation@4.2.4(postcss@8.4.40):
+ postcss-color-functional-notation@4.2.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-color-hex-alpha@8.0.4(postcss@8.4.40):
+ postcss-color-hex-alpha@8.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-color-rebeccapurple@7.1.1(postcss@8.4.40):
+ postcss-color-rebeccapurple@7.1.1(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
postcss-colormin@4.0.3:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
color: 3.2.1
has: 1.0.4
postcss: 7.0.39
@@ -35401,25 +35572,25 @@ snapshots:
postcss: 7.0.39
postcss-value-parser: 3.3.1
- postcss-custom-media@8.0.2(postcss@8.4.40):
+ postcss-custom-media@8.0.2(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-custom-properties@12.1.11(postcss@8.4.40):
+ postcss-custom-properties@12.1.11(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-custom-selectors@6.0.3(postcss@8.4.40):
+ postcss-custom-selectors@6.0.3(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
- postcss-dir-pseudo-class@6.0.5(postcss@8.4.40):
+ postcss-dir-pseudo-class@6.0.5(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-discard-comments@4.0.2:
dependencies:
@@ -35437,84 +35608,84 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-double-position-gradients@3.1.2(postcss@8.4.40):
+ postcss-double-position-gradients@3.1.2(postcss@8.4.45):
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.40)
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.45)
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-env-function@4.0.6(postcss@8.4.40):
+ postcss-env-function@4.0.6(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-flexbugs-fixes@5.0.2(postcss@8.4.40):
+ postcss-flexbugs-fixes@5.0.2(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-focus-visible@6.0.4(postcss@8.4.40):
+ postcss-focus-visible@6.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
- postcss-focus-within@5.0.4(postcss@8.4.40):
+ postcss-focus-within@5.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
- postcss-font-variant@5.0.0(postcss@8.4.40):
+ postcss-font-variant@5.0.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-gap-properties@3.0.5(postcss@8.4.40):
+ postcss-gap-properties@3.0.5(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-image-set-function@4.0.7(postcss@8.4.40):
+ postcss-image-set-function@4.0.7(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-initial@4.0.1(postcss@8.4.40):
+ postcss-initial@4.0.1(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-lab-function@4.2.1(postcss@8.4.40):
+ postcss-lab-function@4.2.1(postcss@8.4.45):
dependencies:
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.40)
- postcss: 8.4.40
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.45)
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
postcss-less@3.1.4:
dependencies:
postcss: 7.0.39
- postcss-less@6.0.0(postcss@8.4.40):
+ postcss-less@6.0.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-load-config@3.1.4(postcss@8.4.40)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)):
+ postcss-load-config@3.1.4(postcss@8.4.45)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)):
dependencies:
lilconfig: 2.1.0
yaml: 1.10.2
optionalDependencies:
- postcss: 8.4.40
- ts-node: 10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)
+ postcss: 8.4.45
+ ts-node: 10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)
- postcss-load-config@6.0.1(postcss@8.4.40)(yaml@2.5.0):
+ postcss-load-config@6.0.1(postcss@8.4.45)(yaml@2.5.1):
dependencies:
lilconfig: 3.1.2
optionalDependencies:
- postcss: 8.4.40
- yaml: 2.5.0
+ postcss: 8.4.45
+ yaml: 2.5.1
- postcss-logical@5.0.4(postcss@8.4.40):
+ postcss-logical@5.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-media-minmax@5.0.0(postcss@8.4.40):
+ postcss-media-minmax@5.0.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-media-query-parser@0.2.3:
optional: true
@@ -35528,7 +35699,7 @@ snapshots:
postcss-merge-rules@4.0.3:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.39
@@ -35550,7 +35721,7 @@ snapshots:
postcss-minify-params@4.0.2:
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.23.2
+ browserslist: 4.23.3
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -35575,9 +35746,9 @@ snapshots:
dependencies:
postcss: 7.0.39
- postcss-modules-extract-imports@3.1.0(postcss@8.4.40):
+ postcss-modules-extract-imports@3.1.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-modules-local-by-default@1.2.0:
dependencies:
@@ -35588,14 +35759,14 @@ snapshots:
dependencies:
icss-utils: 4.1.1
postcss: 7.0.39
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- postcss-modules-local-by-default@4.0.5(postcss@8.4.40):
+ postcss-modules-local-by-default@4.0.5(postcss@8.4.45):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.40)
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ icss-utils: 5.1.0(postcss@8.4.45)
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
postcss-modules-parser@1.1.1:
@@ -35612,12 +35783,12 @@ snapshots:
postcss-modules-scope@2.2.0:
dependencies:
postcss: 7.0.39
- postcss-selector-parser: 6.1.1
+ postcss-selector-parser: 6.1.2
- postcss-modules-scope@3.2.0(postcss@8.4.40):
+ postcss-modules-scope@3.2.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-modules-values@1.3.0:
dependencies:
@@ -35629,10 +35800,10 @@ snapshots:
icss-utils: 4.1.1
postcss: 7.0.39
- postcss-modules-values@4.0.0(postcss@8.4.40):
+ postcss-modules-values@4.0.0(postcss@8.4.45):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.40)
- postcss: 8.4.40
+ icss-utils: 5.1.0(postcss@8.4.45)
+ postcss: 8.4.45
postcss-modules@1.5.0:
dependencies:
@@ -35642,11 +35813,11 @@ snapshots:
postcss: 7.0.39
string-hash: 1.1.3
- postcss-nesting@10.2.0(postcss@8.4.40):
+ postcss-nesting@10.2.0(postcss@8.4.45):
dependencies:
- '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.1)
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.2)
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-normalize-charset@4.0.1:
dependencies:
@@ -35686,7 +35857,7 @@ snapshots:
postcss-normalize-unicode@4.0.1:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -35702,9 +35873,9 @@ snapshots:
postcss: 7.0.39
postcss-value-parser: 3.3.1
- postcss-opacity-percentage@1.1.3(postcss@8.4.40):
+ postcss-opacity-percentage@1.1.3(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-ordered-values@4.1.2:
dependencies:
@@ -35712,81 +35883,81 @@ snapshots:
postcss: 7.0.39
postcss-value-parser: 3.3.1
- postcss-overflow-shorthand@3.0.4(postcss@8.4.40):
+ postcss-overflow-shorthand@3.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-page-break@3.0.4(postcss@8.4.40):
+ postcss-page-break@3.0.4(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-place@7.0.5(postcss@8.4.40):
+ postcss-place@7.0.5(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-value-parser: 4.2.0
- postcss-prefix-selector@1.16.0(postcss@8.4.40):
- dependencies:
- postcss: 8.4.40
-
- postcss-preset-env@7.5.0(postcss@8.4.40):
- dependencies:
- '@csstools/postcss-color-function': 1.1.1(postcss@8.4.40)
- '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.40)
- '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.40)
- '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.40)
- '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.40)
- '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.40)
- '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.40)
- '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.40)
- '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.40)
- '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.40)
- autoprefixer: 10.4.19(postcss@8.4.40)
- browserslist: 4.23.2
- css-blank-pseudo: 3.0.3(postcss@8.4.40)
- css-has-pseudo: 3.0.4(postcss@8.4.40)
- css-prefers-color-scheme: 6.0.3(postcss@8.4.40)
+ postcss-prefix-selector@1.16.0(postcss@8.4.45):
+ dependencies:
+ postcss: 8.4.45
+
+ postcss-preset-env@7.5.0(postcss@8.4.45):
+ dependencies:
+ '@csstools/postcss-color-function': 1.1.1(postcss@8.4.45)
+ '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.45)
+ '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.45)
+ '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.45)
+ '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.45)
+ '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.45)
+ '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.45)
+ '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.45)
+ '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.45)
+ '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.45)
+ autoprefixer: 10.4.20(postcss@8.4.45)
+ browserslist: 4.23.3
+ css-blank-pseudo: 3.0.3(postcss@8.4.45)
+ css-has-pseudo: 3.0.4(postcss@8.4.45)
+ css-prefers-color-scheme: 6.0.3(postcss@8.4.45)
cssdb: 6.6.3
- postcss: 8.4.40
- postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.40)
- postcss-clamp: 4.1.0(postcss@8.4.40)
- postcss-color-functional-notation: 4.2.4(postcss@8.4.40)
- postcss-color-hex-alpha: 8.0.4(postcss@8.4.40)
- postcss-color-rebeccapurple: 7.1.1(postcss@8.4.40)
- postcss-custom-media: 8.0.2(postcss@8.4.40)
- postcss-custom-properties: 12.1.11(postcss@8.4.40)
- postcss-custom-selectors: 6.0.3(postcss@8.4.40)
- postcss-dir-pseudo-class: 6.0.5(postcss@8.4.40)
- postcss-double-position-gradients: 3.1.2(postcss@8.4.40)
- postcss-env-function: 4.0.6(postcss@8.4.40)
- postcss-focus-visible: 6.0.4(postcss@8.4.40)
- postcss-focus-within: 5.0.4(postcss@8.4.40)
- postcss-font-variant: 5.0.0(postcss@8.4.40)
- postcss-gap-properties: 3.0.5(postcss@8.4.40)
- postcss-image-set-function: 4.0.7(postcss@8.4.40)
- postcss-initial: 4.0.1(postcss@8.4.40)
- postcss-lab-function: 4.2.1(postcss@8.4.40)
- postcss-logical: 5.0.4(postcss@8.4.40)
- postcss-media-minmax: 5.0.0(postcss@8.4.40)
- postcss-nesting: 10.2.0(postcss@8.4.40)
- postcss-opacity-percentage: 1.1.3(postcss@8.4.40)
- postcss-overflow-shorthand: 3.0.4(postcss@8.4.40)
- postcss-page-break: 3.0.4(postcss@8.4.40)
- postcss-place: 7.0.5(postcss@8.4.40)
- postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.40)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.40)
- postcss-selector-not: 5.0.0(postcss@8.4.40)
+ postcss: 8.4.45
+ postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.45)
+ postcss-clamp: 4.1.0(postcss@8.4.45)
+ postcss-color-functional-notation: 4.2.4(postcss@8.4.45)
+ postcss-color-hex-alpha: 8.0.4(postcss@8.4.45)
+ postcss-color-rebeccapurple: 7.1.1(postcss@8.4.45)
+ postcss-custom-media: 8.0.2(postcss@8.4.45)
+ postcss-custom-properties: 12.1.11(postcss@8.4.45)
+ postcss-custom-selectors: 6.0.3(postcss@8.4.45)
+ postcss-dir-pseudo-class: 6.0.5(postcss@8.4.45)
+ postcss-double-position-gradients: 3.1.2(postcss@8.4.45)
+ postcss-env-function: 4.0.6(postcss@8.4.45)
+ postcss-focus-visible: 6.0.4(postcss@8.4.45)
+ postcss-focus-within: 5.0.4(postcss@8.4.45)
+ postcss-font-variant: 5.0.0(postcss@8.4.45)
+ postcss-gap-properties: 3.0.5(postcss@8.4.45)
+ postcss-image-set-function: 4.0.7(postcss@8.4.45)
+ postcss-initial: 4.0.1(postcss@8.4.45)
+ postcss-lab-function: 4.2.1(postcss@8.4.45)
+ postcss-logical: 5.0.4(postcss@8.4.45)
+ postcss-media-minmax: 5.0.0(postcss@8.4.45)
+ postcss-nesting: 10.2.0(postcss@8.4.45)
+ postcss-opacity-percentage: 1.1.3(postcss@8.4.45)
+ postcss-overflow-shorthand: 3.0.4(postcss@8.4.45)
+ postcss-page-break: 3.0.4(postcss@8.4.45)
+ postcss-place: 7.0.5(postcss@8.4.45)
+ postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.45)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.45)
+ postcss-selector-not: 5.0.0(postcss@8.4.45)
postcss-value-parser: 4.2.0
- postcss-pseudo-class-any-link@7.1.6(postcss@8.4.40):
+ postcss-pseudo-class-any-link@7.1.6(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
- postcss-selector-parser: 6.1.1
+ postcss: 8.4.45
+ postcss-selector-parser: 6.1.2
postcss-reduce-initial@4.0.3:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
caniuse-api: 3.0.0
has: 1.0.4
postcss: 7.0.39
@@ -35798,24 +35969,24 @@ snapshots:
postcss: 7.0.39
postcss-value-parser: 3.3.1
- postcss-replace-overflow-wrap@4.0.0(postcss@8.4.40):
+ postcss-replace-overflow-wrap@4.0.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-resolve-nested-selector@0.1.4: {}
+ postcss-resolve-nested-selector@0.1.6: {}
- postcss-safe-parser@6.0.0(postcss@8.4.40):
+ postcss-safe-parser@6.0.0(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-scss@2.0.0:
dependencies:
postcss: 7.0.39
- postcss-selector-not@5.0.0(postcss@8.4.40):
+ postcss-selector-not@5.0.0(postcss@8.4.45):
dependencies:
balanced-match: 1.0.2
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-selector-parser@3.1.2:
dependencies:
@@ -35823,18 +35994,18 @@ snapshots:
indexes-of: 1.0.1
uniq: 1.0.1
- postcss-selector-parser@6.1.1:
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-sorting@7.0.1(postcss@8.4.40):
+ postcss-sorting@7.0.1(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
- postcss-sorting@8.0.2(postcss@8.4.40):
+ postcss-sorting@8.0.2(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
postcss-svgo@4.0.3:
dependencies:
@@ -35842,11 +36013,11 @@ snapshots:
postcss-value-parser: 3.3.1
svgo: 1.3.2
- postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.4.40))(postcss@8.4.40):
+ postcss-syntax@0.36.2(postcss-less@6.0.0(postcss@8.4.45))(postcss@8.4.45):
dependencies:
- postcss: 8.4.40
+ postcss: 8.4.45
optionalDependencies:
- postcss-less: 6.0.0(postcss@8.4.40)
+ postcss-less: 6.0.0(postcss@8.4.45)
postcss-unique-selectors@4.0.1:
dependencies:
@@ -35885,24 +36056,17 @@ snapshots:
postcss@8.4.38:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
- postcss@8.4.40:
+ postcss@8.4.45:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.0
+ source-map-js: 1.2.1
potpack@1.0.2: {}
- preferred-pm@3.1.4:
- dependencies:
- find-up: 5.0.0
- find-yarn-workspace-root2: 1.2.16
- path-exists: 4.0.0
- which-pm: 2.2.0
-
prelude-ls@1.1.2: {}
prelude-ls@1.2.1: {}
@@ -35971,7 +36135,7 @@ snapshots:
pretty-time@1.1.0: {}
- pri@4.4.0(@types/react@18.3.3)(encoding@0.1.13):
+ pri@4.4.0(@types/react@18.3.5)(encoding@0.1.13):
dependencies:
'@babel/core': 7.17.12
'@babel/plugin-proposal-class-properties': 7.17.12(@babel/core@7.17.12)
@@ -35995,7 +36159,7 @@ snapshots:
'@commitlint/lint': 8.3.6
'@hot-loader/react-dom': 16.11.0(react@16.14.0)
'@koa/cors': 3.0.0
- '@material-ui/core': 4.7.1(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
+ '@material-ui/core': 4.7.1(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
'@mdx-js/loader': 1.5.1(react@16.14.0)
'@types/enzyme': 3.10.18
'@types/eslint': 6.8.1
@@ -36034,11 +36198,11 @@ snapshots:
enzyme: 3.11.0
enzyme-adapter-react-16: 1.15.8(enzyme@3.11.0)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
eslint: 7.18.0
- eslint-config-airbnb-base: 14.1.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0))(eslint@7.18.0)
+ eslint-config-airbnb-base: 14.1.0(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(eslint@7.18.0)
eslint-config-prettier: 7.2.0(eslint@7.18.0)
eslint-import-resolver-webpack: 0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5)
eslint-plugin-babel: 5.3.1(eslint@7.18.0)
- eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1(eslint-plugin-import@2.22.1(@typescript-eslint/parser@5.62.0(eslint@7.18.0)(typescript@4.2.3))(eslint@7.18.0))(webpack@4.41.5))(eslint@7.18.0)
+ eslint-plugin-import: 2.22.1(@typescript-eslint/parser@4.18.0(eslint@7.18.0)(typescript@4.2.3))(eslint-import-resolver-webpack@0.12.1)(eslint@7.18.0)
eslint-plugin-react: 7.22.0(eslint@7.18.0)
eslint-plugin-react-hooks: 4.2.0(eslint@7.18.0)
file-loader: 5.0.2(webpack@4.41.5)
@@ -36081,7 +36245,7 @@ snapshots:
raw-loader: 4.0.0(webpack@4.41.5)
react: 16.14.0
react-dom: 16.14.0(react@16.14.0)
- react-hot-loader: 4.12.19(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
+ react-hot-loader: 4.12.19(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0)
react-router-dom: 5.1.2(react@16.14.0)
rimraf: 3.0.0
sass: 1.22.10
@@ -36127,7 +36291,7 @@ snapshots:
probe.gl@3.6.0:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@probe.gl/env': 3.6.0
'@probe.gl/log': 3.6.0
'@probe.gl/stats': 3.6.0
@@ -36174,7 +36338,7 @@ snapshots:
prosemirror-changeset@2.2.1:
dependencies:
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
prosemirror-collab@1.3.1:
dependencies:
@@ -36182,34 +36346,34 @@ snapshots:
prosemirror-commands@1.6.0:
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
prosemirror-dropcursor@1.8.1:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.2
prosemirror-gapcursor@1.3.2:
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.33.9
+ prosemirror-view: 1.34.2
prosemirror-history@1.4.1:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.2
rope-sequence: 1.3.4
prosemirror-inputrules@1.4.0:
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
prosemirror-keymap@1.2.2:
dependencies:
@@ -36219,7 +36383,7 @@ snapshots:
prosemirror-markdown@1.13.0:
dependencies:
markdown-it: 14.1.0
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-menu@1.2.4:
dependencies:
@@ -36228,51 +36392,51 @@ snapshots:
prosemirror-history: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-model@1.22.2:
+ prosemirror-model@1.22.3:
dependencies:
orderedmap: 2.1.1
prosemirror-schema-basic@1.2.3:
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-schema-list@1.4.1:
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
prosemirror-state@1.4.3:
dependencies:
- prosemirror-model: 1.22.2
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-model: 1.22.3
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.2
- prosemirror-tables@1.4.0:
+ prosemirror-tables@1.5.0:
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
- prosemirror-view: 1.33.9
+ prosemirror-transform: 1.10.0
+ prosemirror-view: 1.34.2
- prosemirror-trailing-node@2.0.9(prosemirror-model@1.22.2)(prosemirror-state@1.4.3)(prosemirror-view@1.33.9):
+ prosemirror-trailing-node@2.0.9(prosemirror-model@1.22.3)(prosemirror-state@1.4.3)(prosemirror-view@1.34.2):
dependencies:
'@remirror/core-constants': 2.0.2
escape-string-regexp: 4.0.0
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-view: 1.33.9
+ prosemirror-view: 1.34.2
- prosemirror-transform@1.9.0:
+ prosemirror-transform@1.10.0:
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
- prosemirror-view@1.33.9:
+ prosemirror-view@1.34.2:
dependencies:
- prosemirror-model: 1.22.2
+ prosemirror-model: 1.22.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.9.0
+ prosemirror-transform: 1.10.0
protocol-buffers-schema@3.6.0: {}
@@ -36325,7 +36489,7 @@ snapshots:
puppeteer-core@2.1.1:
dependencies:
'@types/mime-types': 2.1.4
- debug: 4.3.5
+ debug: 4.3.7
extract-zip: 1.7.0
https-proxy-agent: 4.0.0
mime: 2.6.0
@@ -36341,7 +36505,7 @@ snapshots:
pure-rand@6.1.0: {}
- pyright@1.1.373:
+ pyright@1.1.379:
optionalDependencies:
fsevents: 2.3.3
@@ -36351,7 +36515,7 @@ snapshots:
dependencies:
side-channel: 1.0.6
- qs@6.12.3:
+ qs@6.13.0:
dependencies:
side-channel: 1.0.6
@@ -36436,7 +36600,7 @@ snapshots:
rc-align@4.0.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
dom-align: 1.12.4
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36444,20 +36608,20 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
resize-observer-polyfill: 1.5.1
- rc-cascader@3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-cascader@3.28.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
array-tree-filter: 2.1.0
classnames: 2.5.1
- rc-select: 14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-tree: 5.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-select: 14.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-tree: 5.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
rc-checkbox@3.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36465,7 +36629,7 @@ snapshots:
rc-collapse@3.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36474,7 +36638,7 @@ snapshots:
rc-dialog@9.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36484,7 +36648,7 @@ snapshots:
rc-drawer@7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36494,7 +36658,7 @@ snapshots:
rc-dropdown@3.6.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36503,7 +36667,7 @@ snapshots:
rc-dropdown@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36512,16 +36676,16 @@ snapshots:
rc-dropdown@4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-field-form@2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-field-form@2.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/async-validator': 5.0.4
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36529,7 +36693,7 @@ snapshots:
rc-image@7.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-dialog: 9.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36538,40 +36702,40 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-input-number@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-input-number@9.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/mini-decimal': 1.1.0
classnames: 2.5.1
- rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-input: 1.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-input@1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-input@1.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-mentions@2.14.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-mentions@2.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
- rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-input: 1.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-menu: 9.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-textarea: 1.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-textarea: 1.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
rc-menu@9.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-overflow: 1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36581,7 +36745,7 @@ snapshots:
rc-menu@9.6.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-overflow: 1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36593,7 +36757,7 @@ snapshots:
rc-motion@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36601,7 +36765,7 @@ snapshots:
rc-notification@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36610,7 +36774,7 @@ snapshots:
rc-overflow@1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36619,7 +36783,7 @@ snapshots:
rc-pagination@4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36627,10 +36791,10 @@ snapshots:
rc-picker@2.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
date-fns: 2.30.0
- dayjs: 1.11.12
+ dayjs: 1.11.13
moment: 2.30.1
rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36638,10 +36802,10 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
shallowequal: 1.1.0
- rc-picker@4.6.9(date-fns@2.30.0)(dayjs@1.11.12)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-picker@4.6.14(date-fns@2.30.0)(dayjs@1.11.13)(moment@2.30.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-overflow: 1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36650,12 +36814,12 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
date-fns: 2.30.0
- dayjs: 1.11.12
+ dayjs: 1.11.13
moment: 2.30.1
rc-progress@4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36663,7 +36827,7 @@ snapshots:
rc-rate@2.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36671,7 +36835,7 @@ snapshots:
rc-resize-observer@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36680,17 +36844,17 @@ snapshots:
rc-segmented@2.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-select@14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-select@14.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-overflow: 1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36699,9 +36863,9 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-slider@10.6.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-slider@11.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36709,7 +36873,7 @@ snapshots:
rc-steps@6.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36717,7 +36881,7 @@ snapshots:
rc-switch@4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36725,7 +36889,7 @@ snapshots:
rc-table@7.45.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
'@rc-component/context': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36736,7 +36900,7 @@ snapshots:
rc-tabs@11.16.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-dropdown: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-menu: 9.6.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36747,7 +36911,7 @@ snapshots:
rc-tabs@15.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-dropdown: 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-menu: 9.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36757,11 +36921,11 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-textarea@1.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-textarea@1.8.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
- rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-input: 1.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36769,7 +36933,7 @@ snapshots:
rc-tooltip@5.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36777,25 +36941,25 @@ snapshots:
rc-tooltip@6.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
- '@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.25.6
+ '@rc-component/trigger': 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-tree-select@5.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-tree-select@5.23.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
- rc-select: 14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- rc-tree: 5.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-select: 14.15.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rc-tree: 5.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-tree@5.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-tree@5.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36805,7 +36969,7 @@ snapshots:
rc-trigger@5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-align: 4.0.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36813,9 +36977,9 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- rc-upload@4.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ rc-upload@4.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -36831,14 +36995,14 @@ snapshots:
rc-util@5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-is: 18.3.1
rc-virtual-list@3.14.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -36861,7 +37025,7 @@ snapshots:
dependencies:
dnd-core: 16.0.1
- react-dnd@16.0.1(@types/node@20.5.1)(@types/react@18.3.3)(react@18.3.1):
+ react-dnd@16.0.1(@types/node@20.5.1)(@types/react@18.3.5)(react@18.3.1):
dependencies:
'@react-dnd/invariant': 4.0.2
'@react-dnd/shallowequal': 4.0.2
@@ -36871,17 +37035,17 @@ snapshots:
react: 18.3.1
optionalDependencies:
'@types/node': 20.5.1
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- react-docgen-typescript@2.2.2(typescript@5.5.4):
+ react-docgen-typescript@2.2.2(typescript@5.6.2):
dependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
react-docgen@7.0.3:
dependencies:
- '@babel/core': 7.24.9
- '@babel/traverse': 7.24.8
- '@babel/types': 7.24.9
+ '@babel/core': 7.25.2
+ '@babel/traverse': 7.25.6
+ '@babel/types': 7.25.6
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
'@types/doctrine': 0.0.9
@@ -36920,7 +37084,7 @@ snapshots:
react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.23.6
invariant: 2.2.4
prop-types: 15.8.1
react: 18.3.1
@@ -36928,9 +37092,9 @@ snapshots:
react-fast-compare: 3.2.2
shallowequal: 1.1.0
- react-hot-loader@4.12.19(@types/react@18.3.3)(react-dom@16.14.0(react@16.14.0))(react@16.14.0):
+ react-hot-loader@4.12.19(@types/react@18.3.5)(react-dom@16.14.0(react@16.14.0))(react@16.14.0):
dependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
fast-levenshtein: 2.0.6
global: 4.4.0
hoist-non-react-statics: 3.3.2
@@ -36958,28 +37122,28 @@ snapshots:
react-refresh@0.14.2: {}
- react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1):
+ react-remove-scroll-bar@2.3.6(@types/react@18.3.5)(react@18.3.1):
dependencies:
react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.3
+ react-style-singleton: 2.2.1(@types/react@18.3.5)(react@18.3.1)
+ tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- react-remove-scroll@2.5.5(@types/react@18.3.3)(react@18.3.1):
+ react-remove-scroll@2.5.5(@types/react@18.3.5)(react@18.3.1):
dependencies:
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1)
- tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.3)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.6(@types/react@18.3.5)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.5)(react@18.3.1)
+ tslib: 2.7.0
+ use-callback-ref: 1.3.2(@types/react@18.3.5)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.5)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
react-router-dom@5.1.2(react@16.14.0):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -36997,7 +37161,7 @@ snapshots:
react-router@5.1.2(react@16.14.0):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -37014,14 +37178,14 @@ snapshots:
history: 5.3.0
react: 18.3.1
- react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1):
+ react-style-singleton@2.2.1(@types/react@18.3.5)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
- tslib: 2.6.3
+ tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
react-test-renderer@16.14.0(react@16.14.0):
dependencies:
@@ -37033,7 +37197,7 @@ snapshots:
react-transition-group@4.4.5(react-dom@16.14.0(react@16.14.0))(react@16.14.0):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.17.9
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -37042,7 +37206,7 @@ snapshots:
react-virtualized@9.22.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
clsx: 1.2.1
dom-helpers: 5.2.1
loose-envify: 1.4.0
@@ -37196,7 +37360,7 @@ snapshots:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.6.3
+ tslib: 2.7.0
rechoir@0.6.2:
dependencies:
@@ -37219,7 +37383,7 @@ snapshots:
redux@4.2.1:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
reflect-metadata@0.1.14: {}
@@ -37231,7 +37395,7 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.2.4
globalthis: 1.0.4
- which-builtin-type: 1.1.3
+ which-builtin-type: 1.1.4
reflect.ownkeys@1.1.4:
dependencies:
@@ -37257,7 +37421,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.6
regex-cache@0.4.4:
dependencies:
@@ -37520,7 +37684,7 @@ snapshots:
request@2.88.2:
dependencies:
aws-sign2: 0.7.0
- aws4: 1.13.0
+ aws4: 1.13.2
caseless: 0.12.0
combined-stream: 1.0.8
extend: 3.0.2
@@ -37604,13 +37768,13 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -37708,26 +37872,26 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.21.1:
+ rollup@4.21.2:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.21.1
- '@rollup/rollup-android-arm64': 4.21.1
- '@rollup/rollup-darwin-arm64': 4.21.1
- '@rollup/rollup-darwin-x64': 4.21.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.21.1
- '@rollup/rollup-linux-arm-musleabihf': 4.21.1
- '@rollup/rollup-linux-arm64-gnu': 4.21.1
- '@rollup/rollup-linux-arm64-musl': 4.21.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.21.1
- '@rollup/rollup-linux-riscv64-gnu': 4.21.1
- '@rollup/rollup-linux-s390x-gnu': 4.21.1
- '@rollup/rollup-linux-x64-gnu': 4.21.1
- '@rollup/rollup-linux-x64-musl': 4.21.1
- '@rollup/rollup-win32-arm64-msvc': 4.21.1
- '@rollup/rollup-win32-ia32-msvc': 4.21.1
- '@rollup/rollup-win32-x64-msvc': 4.21.1
+ '@rollup/rollup-android-arm-eabi': 4.21.2
+ '@rollup/rollup-android-arm64': 4.21.2
+ '@rollup/rollup-darwin-arm64': 4.21.2
+ '@rollup/rollup-darwin-x64': 4.21.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.21.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.21.2
+ '@rollup/rollup-linux-arm64-gnu': 4.21.2
+ '@rollup/rollup-linux-arm64-musl': 4.21.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.21.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.21.2
+ '@rollup/rollup-linux-s390x-gnu': 4.21.2
+ '@rollup/rollup-linux-x64-gnu': 4.21.2
+ '@rollup/rollup-linux-x64-musl': 4.21.2
+ '@rollup/rollup-win32-arm64-msvc': 4.21.2
+ '@rollup/rollup-win32-ia32-msvc': 4.21.2
+ '@rollup/rollup-win32-x64-msvc': 4.21.2
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -37784,7 +37948,7 @@ snapshots:
dependencies:
ret: 0.1.15
- safe-stable-stringify@2.4.3: {}
+ safe-stable-stringify@2.5.0: {}
safer-buffer@2.1.2: {}
@@ -37809,7 +37973,7 @@ snapshots:
htmlparser2: 8.0.2
is-plain-object: 5.0.0
parse-srcset: 1.0.2
- postcss: 8.4.40
+ postcss: 8.4.45
sass-loader@7.2.0(webpack@4.41.5):
dependencies:
@@ -37822,13 +37986,13 @@ snapshots:
sass@1.22.10:
dependencies:
- chokidar: 3.6.0
+ chokidar: 3.3.0
- sass@1.77.8:
+ sass@1.78.0:
dependencies:
- chokidar: 3.6.0
+ chokidar: 3.3.0
immutable: 4.3.7
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
sax@1.2.4: {}
@@ -37960,6 +38124,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ send@0.19.0:
+ dependencies:
+ debug: 2.6.9
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
+ send@0.19.0(supports-color@6.1.0):
+ dependencies:
+ debug: 2.6.9(supports-color@6.1.0)
+ depd: 2.0.0
+ destroy: 1.2.0
+ encodeurl: 1.0.2
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ mime: 1.6.0
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
serialize-javascript@4.0.0:
dependencies:
randombytes: 2.1.0
@@ -37976,7 +38176,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.15.0:
+ serve-static@1.16.0:
dependencies:
encodeurl: 1.0.2
escape-html: 1.0.3
@@ -37985,7 +38185,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.15.0(supports-color@6.1.0):
+ serve-static@1.16.0(supports-color@6.1.0):
dependencies:
encodeurl: 1.0.2
escape-html: 1.0.3
@@ -38236,7 +38436,7 @@ snapshots:
source-list-map@2.0.1: {}
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-resolve@0.5.3:
dependencies:
@@ -38280,20 +38480,20 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.18
+ spdx-license-ids: 3.0.20
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.18
+ spdx-license-ids: 3.0.20
- spdx-license-ids@3.0.18: {}
+ spdx-license-ids@3.0.20: {}
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -38304,7 +38504,7 @@ snapshots:
spdy-transport@3.0.0(supports-color@6.1.0):
dependencies:
- debug: 4.3.5(supports-color@6.1.0)
+ debug: 4.3.7(supports-color@6.1.0)
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -38315,7 +38515,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.5
+ debug: 4.3.7
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -38325,7 +38525,7 @@ snapshots:
spdy@4.0.2(supports-color@6.1.0):
dependencies:
- debug: 4.3.5(supports-color@6.1.0)
+ debug: 4.3.7(supports-color@6.1.0)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -38358,7 +38558,7 @@ snapshots:
sprintf-js@1.0.3: {}
- sql-formatter@15.3.2:
+ sql-formatter@15.4.2:
dependencies:
argparse: 2.0.1
get-stdin: 8.0.0
@@ -38593,7 +38793,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom-stream@2.0.0:
dependencies:
@@ -38660,7 +38860,7 @@ snapshots:
dependencies:
inline-style-parser: 0.1.1
- styled-components@6.1.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ styled-components@6.1.13(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
@@ -38676,28 +38876,28 @@ snapshots:
stylehacks@4.0.3:
dependencies:
- browserslist: 4.23.2
+ browserslist: 4.23.3
postcss: 7.0.39
postcss-selector-parser: 3.1.2
- stylelint-config-css-modules@4.4.0(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-config-css-modules@4.4.0(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- stylelint: 15.11.0(typescript@5.5.4)
+ stylelint: 15.11.0(typescript@5.6.2)
optionalDependencies:
- stylelint-scss: 6.4.1(stylelint@15.11.0(typescript@5.5.4))
+ stylelint-scss: 6.5.1(stylelint@15.11.0(typescript@5.6.2))
- stylelint-config-idiomatic-order@9.0.0(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-config-idiomatic-order@9.0.0(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- stylelint: 15.11.0(typescript@5.5.4)
- stylelint-order: 5.0.0(stylelint@15.11.0(typescript@5.5.4))
+ stylelint: 15.11.0(typescript@5.6.2)
+ stylelint-order: 5.0.0(stylelint@15.11.0(typescript@5.6.2))
- stylelint-config-prettier@9.0.5(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-config-prettier@9.0.5(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- stylelint: 15.11.0(typescript@5.5.4)
+ stylelint: 15.11.0(typescript@5.6.2)
- stylelint-config-recommended@10.0.1(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-config-recommended@10.0.1(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- stylelint: 15.11.0(typescript@5.5.4)
+ stylelint: 15.11.0(typescript@5.6.2)
stylelint-config-recommended@7.0.0(stylelint@15.11.0(typescript@4.2.3)):
dependencies:
@@ -38708,31 +38908,33 @@ snapshots:
stylelint: 15.11.0(typescript@4.2.3)
stylelint-config-recommended: 7.0.0(stylelint@15.11.0(typescript@4.2.3))
- stylelint-config-standard@30.0.1(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-config-standard@30.0.1(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- stylelint: 15.11.0(typescript@5.5.4)
- stylelint-config-recommended: 10.0.1(stylelint@15.11.0(typescript@5.5.4))
+ stylelint: 15.11.0(typescript@5.6.2)
+ stylelint-config-recommended: 10.0.1(stylelint@15.11.0(typescript@5.6.2))
- stylelint-order@5.0.0(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-order@5.0.0(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- postcss: 8.4.40
- postcss-sorting: 7.0.1(postcss@8.4.40)
- stylelint: 15.11.0(typescript@5.5.4)
+ postcss: 8.4.45
+ postcss-sorting: 7.0.1(postcss@8.4.45)
+ stylelint: 15.11.0(typescript@5.6.2)
- stylelint-order@6.0.4(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-order@6.0.4(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
- postcss: 8.4.40
- postcss-sorting: 8.0.2(postcss@8.4.40)
- stylelint: 15.11.0(typescript@5.5.4)
+ postcss: 8.4.45
+ postcss-sorting: 8.0.2(postcss@8.4.45)
+ stylelint: 15.11.0(typescript@5.6.2)
- stylelint-scss@6.4.1(stylelint@15.11.0(typescript@5.5.4)):
+ stylelint-scss@6.5.1(stylelint@15.11.0(typescript@5.6.2)):
dependencies:
+ css-tree: 2.3.1
+ is-plain-object: 5.0.0
known-css-properties: 0.34.0
postcss-media-query-parser: 0.2.3
- postcss-resolve-nested-selector: 0.1.4
- postcss-selector-parser: 6.1.1
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- stylelint: 15.11.0(typescript@5.5.4)
+ stylelint: 15.11.0(typescript@5.6.2)
optional: true
stylelint@15.11.0(typescript@4.2.3):
@@ -38740,13 +38942,13 @@ snapshots:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1)
'@csstools/css-tokenizer': 2.4.1
'@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)
- '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.1)
+ '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2)
balanced-match: 2.0.0
colord: 2.9.3
cosmiconfig: 8.3.6(typescript@4.2.3)
css-functions-list: 3.2.2
css-tree: 2.3.1
- debug: 4.3.5
+ debug: 4.3.7
fast-glob: 3.3.2
fastest-levenshtein: 1.0.16
file-entry-cache: 7.0.2
@@ -38754,26 +38956,26 @@ snapshots:
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 5.3.1
+ ignore: 5.3.2
import-lazy: 4.0.0
imurmurhash: 0.1.4
is-plain-object: 5.0.0
known-css-properties: 0.29.0
mathml-tag-names: 2.1.3
meow: 10.1.5
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.40
- postcss-resolve-nested-selector: 0.1.4
- postcss-safe-parser: 6.0.0(postcss@8.4.40)
- postcss-selector-parser: 6.1.1
+ picocolors: 1.1.0
+ postcss: 8.4.45
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 6.0.0(postcss@8.4.45)
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
strip-ansi: 6.0.1
style-search: 0.1.0
- supports-hyperlinks: 3.0.0
+ supports-hyperlinks: 3.1.0
svg-tags: 1.0.0
table: 6.8.2
write-file-atomic: 5.0.1
@@ -38781,18 +38983,18 @@ snapshots:
- supports-color
- typescript
- stylelint@15.11.0(typescript@5.5.4):
+ stylelint@15.11.0(typescript@5.6.2):
dependencies:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1)
'@csstools/css-tokenizer': 2.4.1
'@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)
- '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.1)
+ '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.2)
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 8.3.6(typescript@5.5.4)
+ cosmiconfig: 8.3.6(typescript@5.6.2)
css-functions-list: 3.2.2
css-tree: 2.3.1
- debug: 4.3.5
+ debug: 4.3.7
fast-glob: 3.3.2
fastest-levenshtein: 1.0.16
file-entry-cache: 7.0.2
@@ -38800,26 +39002,26 @@ snapshots:
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 5.3.1
+ ignore: 5.3.2
import-lazy: 4.0.0
imurmurhash: 0.1.4
is-plain-object: 5.0.0
known-css-properties: 0.29.0
mathml-tag-names: 2.1.3
meow: 10.1.5
- micromatch: 4.0.7
+ micromatch: 4.0.8
normalize-path: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.40
- postcss-resolve-nested-selector: 0.1.4
- postcss-safe-parser: 6.0.0(postcss@8.4.40)
- postcss-selector-parser: 6.1.1
+ picocolors: 1.1.0
+ postcss: 8.4.45
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 6.0.0(postcss@8.4.45)
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
strip-ansi: 6.0.1
style-search: 0.1.0
- supports-hyperlinks: 3.0.0
+ supports-hyperlinks: 3.1.0
svg-tags: 1.0.0
table: 6.8.2
write-file-atomic: 5.0.1
@@ -38829,6 +39031,8 @@ snapshots:
stylis@4.3.2: {}
+ stylis@4.3.4: {}
+
sucrase@3.35.0:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -38874,7 +39078,7 @@ snapshots:
has-flag: 4.0.0
supports-color: 7.2.0
- supports-hyperlinks@3.0.0:
+ supports-hyperlinks@3.1.0:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
@@ -38930,7 +39134,7 @@ snapshots:
css-select: 4.3.0
css-tree: 1.1.3
csso: 4.2.0
- picocolors: 1.0.1
+ picocolors: 1.1.0
stable: 0.1.8
symbol-tree@3.2.4: {}
@@ -38940,16 +39144,16 @@ snapshots:
synckit@0.8.5:
dependencies:
'@pkgr/utils': 2.4.2
- tslib: 2.6.3
+ tslib: 2.7.0
synckit@0.9.1:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.3
+ tslib: 2.7.0
- syntax-parser@1.0.18(@types/react@18.3.3)(encoding@0.1.13):
+ syntax-parser@1.0.18(@types/react@18.3.5)(encoding@0.1.13):
dependencies:
- pri: 4.4.0(@types/react@18.3.3)(encoding@0.1.13)
+ pri: 4.4.0(@types/react@18.3.5)(encoding@0.1.13)
transitivePeerDependencies:
- '@types/react'
- bufferutil
@@ -39072,7 +39276,7 @@ snapshots:
source-map: 0.6.1
source-map-support: 0.5.21
- terser@5.31.3:
+ terser@5.32.0:
dependencies:
'@jridgewell/source-map': 0.3.6
acorn: 8.12.1
@@ -39097,9 +39301,9 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thingies@1.21.0(tslib@2.6.3):
+ thingies@1.21.0(tslib@2.7.0):
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
thread-stream@0.15.2:
dependencies:
@@ -39163,7 +39367,7 @@ snapshots:
tiny-warning@1.0.3: {}
- tinybench@2.8.0: {}
+ tinybench@2.9.0: {}
tinycolor2@1.6.0: {}
@@ -39177,9 +39381,9 @@ snapshots:
dependencies:
'@popperjs/core': 2.11.8
- tiptap-markdown@0.8.10(@tiptap/core@2.5.7(@tiptap/pm@2.5.7)):
+ tiptap-markdown@0.8.10(@tiptap/core@2.6.6(@tiptap/pm@2.6.6)):
dependencies:
- '@tiptap/core': 2.5.7(@tiptap/pm@2.5.7)
+ '@tiptap/core': 2.6.6(@tiptap/pm@2.6.6)
'@types/markdown-it': 13.0.9
markdown-it: 14.1.0
markdown-it-task-lists: 2.1.1
@@ -39243,7 +39447,7 @@ snapshots:
is-buffer: 2.0.5
vfile: 5.3.7
- tocbot@4.28.2: {}
+ tocbot@4.29.0: {}
toggle-selection@1.0.6: {}
@@ -39272,9 +39476,9 @@ snapshots:
dependencies:
punycode: 2.3.1
- tree-dump@1.0.2(tslib@2.6.3):
+ tree-dump@1.0.2(tslib@2.7.0):
dependencies:
- tslib: 2.6.3
+ tslib: 2.7.0
tree-kill@1.2.2: {}
@@ -39296,35 +39500,35 @@ snapshots:
tryer@1.0.1: {}
- ts-api-utils@1.3.0(typescript@5.5.4):
+ ts-api-utils@1.3.0(typescript@5.6.2):
dependencies:
- typescript: 5.5.4
+ typescript: 5.6.2
ts-dedent@2.2.0: {}
ts-interface-checker@0.1.13: {}
- ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4):
+ ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
acorn: 8.12.1
- acorn-walk: 8.3.3
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.5.4
+ typescript: 5.6.2
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.7.2(@swc/helpers@0.5.1)
+ '@swc/core': 1.7.24
- ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@20.5.1)(typescript@5.5.4):
+ ts-node@10.9.2(@swc/core@1.7.24)(@types/node@20.5.1)(typescript@5.6.2):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
@@ -39333,16 +39537,16 @@ snapshots:
'@tsconfig/node16': 1.0.4
'@types/node': 20.5.1
acorn: 8.12.1
- acorn-walk: 8.3.3
+ acorn-walk: 8.3.4
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.5.4
+ typescript: 5.6.2
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.7.2(@swc/helpers@0.5.1)
+ '@swc/core': 1.7.24
tsconfig-paths@3.15.0:
dependencies:
@@ -39361,56 +39565,56 @@ snapshots:
tslib@2.6.2: {}
- tslib@2.6.3: {}
+ tslib@2.7.0: {}
tsscmp@1.0.6: {}
- tsup@6.7.0(@swc/core@1.7.2(@swc/helpers@0.5.1))(postcss@8.4.40)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))(typescript@5.5.4):
+ tsup@6.7.0(@swc/core@1.7.24)(postcss@8.4.45)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))(typescript@5.6.2):
dependencies:
bundle-require: 4.2.1(esbuild@0.17.19)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.5
+ debug: 4.3.7
esbuild: 0.17.19
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 3.1.4(postcss@8.4.40)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4))
+ postcss-load-config: 3.1.4(postcss@8.4.45)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2))
resolve-from: 5.0.0
rollup: 3.29.4
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
optionalDependencies:
- '@swc/core': 1.7.2(@swc/helpers@0.5.1)
- postcss: 8.4.40
- typescript: 5.5.4
+ '@swc/core': 1.7.24
+ postcss: 8.4.45
+ typescript: 5.6.2
transitivePeerDependencies:
- supports-color
- ts-node
- tsup@8.2.4(@swc/core@1.7.2(@swc/helpers@0.5.1))(postcss@8.4.40)(typescript@5.5.4)(yaml@2.5.0):
+ tsup@8.2.4(@swc/core@1.7.24)(postcss@8.4.45)(typescript@5.6.2)(yaml@2.5.1):
dependencies:
bundle-require: 5.0.0(esbuild@0.23.1)
cac: 6.7.14
chokidar: 3.6.0
consola: 3.2.3
- debug: 4.3.5
+ debug: 4.3.7
esbuild: 0.23.1
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- picocolors: 1.0.1
- postcss-load-config: 6.0.1(postcss@8.4.40)(yaml@2.5.0)
+ picocolors: 1.1.0
+ postcss-load-config: 6.0.1(postcss@8.4.45)(yaml@2.5.1)
resolve-from: 5.0.0
- rollup: 4.21.1
+ rollup: 4.21.2
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
optionalDependencies:
- '@swc/core': 1.7.2(@swc/helpers@0.5.1)
- postcss: 8.4.40
- typescript: 5.5.4
+ '@swc/core': 1.7.24
+ postcss: 8.4.45
+ typescript: 5.6.2
transitivePeerDependencies:
- jiti
- supports-color
@@ -39422,10 +39626,10 @@ snapshots:
tslib: 1.14.1
typescript: 4.2.3
- tsutils@3.21.0(typescript@5.5.4):
+ tsutils@3.21.0(typescript@5.6.2):
dependencies:
tslib: 1.14.1
- typescript: 5.5.4
+ typescript: 5.6.2
tsx@3.12.2:
dependencies:
@@ -39525,7 +39729,7 @@ snapshots:
typescript@4.2.3: {}
- typescript@5.5.4: {}
+ typescript@5.6.2: {}
typical@4.0.0: {}
@@ -39542,7 +39746,7 @@ snapshots:
optionalDependencies:
uglify-to-browserify: 1.0.2
- uglify-js@3.19.0:
+ uglify-js@3.19.3:
optional: true
uglify-js@3.4.10:
@@ -39553,18 +39757,18 @@ snapshots:
uglify-to-browserify@1.0.2:
optional: true
- umi@4.3.10(@babel/core@7.24.9)(@types/node@20.5.1)(@types/react@18.3.3)(@types/webpack@4.41.0)(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)))(lightningcss@1.22.1)(postcss-less@6.0.0(postcss@8.4.40))(prettier@3.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(sass@1.77.8)(sockjs-client@1.4.0)(stylelint@15.11.0(typescript@4.2.3))(terser@5.31.3)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5):
+ umi@4.3.20(@babel/core@7.25.2)(@types/node@20.5.1)(@types/react@18.3.5)(@types/webpack@4.41.0)(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)))(lightningcss@1.22.1)(postcss-less@6.0.0(postcss@8.4.45))(prettier@3.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@3.29.4)(sass@1.78.0)(sockjs-client@1.4.0)(stylelint@15.11.0(typescript@4.2.3))(terser@5.32.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5):
dependencies:
'@babel/runtime': 7.23.6
- '@umijs/bundler-utils': 4.3.10
- '@umijs/bundler-webpack': 4.3.10(@types/webpack@4.41.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
- '@umijs/core': 4.3.10
- '@umijs/lint': 4.3.10(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.2(@swc/helpers@0.5.1))(@types/node@18.19.42)(typescript@5.5.4)))(postcss-less@6.0.0(postcss@8.4.40))(stylelint@15.11.0(typescript@4.2.3))(typescript@4.2.3)
- '@umijs/preset-umi': 4.3.10(@types/node@20.5.1)(@types/react@18.3.3)(@types/webpack@4.41.0)(lightningcss@1.22.1)(rollup@3.29.4)(sass@1.77.8)(sockjs-client@1.4.0)(terser@5.31.3)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
- '@umijs/renderer-react': 4.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@umijs/server': 4.3.10
- '@umijs/test': 4.3.10(@babel/core@7.24.9)
- '@umijs/utils': 4.3.10
+ '@umijs/bundler-utils': 4.3.20
+ '@umijs/bundler-webpack': 4.3.20(@types/webpack@4.41.0)(sockjs-client@1.4.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
+ '@umijs/core': 4.3.20
+ '@umijs/lint': 4.3.20(eslint@7.18.0)(jest@29.7.0(@types/node@20.5.1)(ts-node@10.9.2(@swc/core@1.7.24)(@types/node@18.19.50)(typescript@5.6.2)))(postcss-less@6.0.0(postcss@8.4.45))(stylelint@15.11.0(typescript@4.2.3))(typescript@4.2.3)
+ '@umijs/preset-umi': 4.3.20(@types/node@20.5.1)(@types/react@18.3.5)(@types/webpack@4.41.0)(lightningcss@1.22.1)(rollup@3.29.4)(sass@1.78.0)(sockjs-client@1.4.0)(terser@5.32.0)(type-fest@2.19.0)(typescript@4.2.3)(webpack-dev-server@3.10.3(webpack@4.41.5))(webpack@4.41.5)
+ '@umijs/renderer-react': 4.3.20(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@umijs/server': 4.3.20
+ '@umijs/test': 4.3.20(@babel/core@7.25.2)
+ '@umijs/utils': 4.3.20
prettier-plugin-organize-imports: 3.2.4(prettier@3.3.3)(typescript@4.2.3)
prettier-plugin-packagejson: 2.4.3(prettier@3.3.3)
transitivePeerDependencies:
@@ -39626,6 +39830,8 @@ snapshots:
undici-types@5.26.5: {}
+ undici@6.19.8: {}
+
unfetch@5.0.0: {}
unherit@1.1.3:
@@ -39649,13 +39855,13 @@ snapshots:
'@types/concat-stream': 2.0.3
'@types/debug': 4.1.12
'@types/is-empty': 1.2.3
- '@types/node': 18.19.42
- '@types/unist': 2.0.10
+ '@types/node': 18.19.50
+ '@types/unist': 2.0.11
concat-stream: 2.0.0
- debug: 4.3.5
+ debug: 4.3.7
fault: 2.0.1
glob: 8.1.0
- ignore: 5.3.1
+ ignore: 5.3.2
is-buffer: 2.0.5
is-empty: 1.2.0
is-plain-obj: 4.1.0
@@ -39667,13 +39873,13 @@ snapshots:
vfile-message: 3.1.4
vfile-reporter: 7.0.5
vfile-statistics: 2.0.1
- yaml: 2.5.0
+ yaml: 2.5.1
transitivePeerDependencies:
- supports-color
unified@10.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -39683,7 +39889,7 @@ snapshots:
unified@9.2.0:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
bail: 1.0.5
extend: 3.0.2
is-buffer: 2.0.5
@@ -39729,17 +39935,17 @@ snapshots:
unist-util-inspect@7.0.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is@4.1.0: {}
unist-util-is@5.2.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-position-from-estree@1.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-position@3.1.0: {}
@@ -39749,7 +39955,7 @@ snapshots:
unist-util-remove-position@4.0.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-visit: 4.1.2
unist-util-remove@2.1.0:
@@ -39758,31 +39964,31 @@ snapshots:
unist-util-stringify-position@2.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position@3.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-visit-parents@3.1.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents@5.1.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit@2.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
unist-util-visit@4.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -39792,11 +39998,9 @@ snapshots:
unpipe@1.0.0: {}
- unplugin@1.12.0:
+ unplugin@1.14.0:
dependencies:
acorn: 8.12.1
- chokidar: 3.6.0
- webpack-sources: 3.2.3
webpack-virtual-modules: 0.6.2
unquote@1.1.1: {}
@@ -39810,11 +40014,11 @@ snapshots:
upath@1.2.0: {}
- update-browserslist-db@1.1.0(browserslist@4.23.2):
+ update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
- browserslist: 4.23.2
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.23.3
+ escalade: 3.2.0
+ picocolors: 1.1.0
update-diff@1.1.0: {}
@@ -39855,7 +40059,7 @@ snapshots:
url-okam@0.11.1:
dependencies:
punycode: 1.4.1
- qs: 6.12.3
+ qs: 6.13.0
url-parse-lax@3.0.0:
dependencies:
@@ -39870,25 +40074,25 @@ snapshots:
dependencies:
ip-regex: 1.0.3
- url@0.11.3:
+ url@0.11.4:
dependencies:
punycode: 1.4.1
- qs: 6.12.3
+ qs: 6.13.0
urlgrey@0.4.4: {}
- use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1):
+ use-callback-ref@1.3.2(@types/react@18.3.5)(react@18.3.1):
dependencies:
react: 18.3.1
- tslib: 2.6.3
+ tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1):
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.3.5)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
use-resize-observer@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -39896,13 +40100,13 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1):
+ use-sidecar@1.1.2(@types/react@18.3.5)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
- tslib: 2.6.3
+ tslib: 2.7.0
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': 18.3.5
use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
@@ -40021,12 +40225,12 @@ snapshots:
vfile-message@2.0.4:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position: 2.0.3
vfile-message@3.1.4:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
vfile-reporter@7.0.5:
@@ -40052,14 +40256,14 @@ snapshots:
vfile@4.2.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
vfile@5.3.7:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
@@ -40122,14 +40326,14 @@ snapshots:
remove-trailing-separator: 1.1.0
replace-ext: 1.0.1
- vite-node@0.32.4(@types/node@18.19.42)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3):
+ vite-node@0.32.4(@types/node@18.19.50)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0):
dependencies:
cac: 6.7.14
- debug: 4.3.5
+ debug: 4.3.7
mlly: 1.7.1
pathe: 1.1.2
- picocolors: 1.0.1
- vite: 4.5.3(@types/node@18.19.42)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ picocolors: 1.1.0
+ vite: 4.5.3(@types/node@18.19.50)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -40140,70 +40344,70 @@ snapshots:
- supports-color
- terser
- vite@4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3):
+ vite@4.5.2(@types/node@20.5.1)(less@4.1.3)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0):
dependencies:
esbuild: 0.18.20
- postcss: 8.4.40
+ postcss: 8.4.45
rollup: 3.29.4
optionalDependencies:
'@types/node': 20.5.1
fsevents: 2.3.3
less: 4.1.3
lightningcss: 1.22.1
- sass: 1.77.8
- terser: 5.31.3
+ sass: 1.78.0
+ terser: 5.32.0
- vite@4.5.3(@types/node@18.19.42)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3):
+ vite@4.5.3(@types/node@18.19.50)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0):
dependencies:
esbuild: 0.18.20
- postcss: 8.4.40
+ postcss: 8.4.45
rollup: 3.29.4
optionalDependencies:
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
fsevents: 2.3.3
less: 4.2.0
lightningcss: 1.22.1
- sass: 1.77.8
- terser: 5.31.3
+ sass: 1.78.0
+ terser: 5.32.0
- vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3):
+ vite@4.5.3(@types/node@20.5.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0):
dependencies:
esbuild: 0.18.20
- postcss: 8.4.40
+ postcss: 8.4.45
rollup: 3.29.4
optionalDependencies:
'@types/node': 20.5.1
fsevents: 2.3.3
less: 4.2.0
lightningcss: 1.22.1
- sass: 1.77.8
- terser: 5.31.3
+ sass: 1.78.0
+ terser: 5.32.0
- vitest@0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3):
+ vitest@0.32.4(jsdom@15.2.1)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0):
dependencies:
- '@types/chai': 4.3.16
+ '@types/chai': 4.3.19
'@types/chai-subset': 1.3.5
- '@types/node': 18.19.42
+ '@types/node': 18.19.50
'@vitest/expect': 0.32.4
'@vitest/runner': 0.32.4
'@vitest/snapshot': 0.32.4
'@vitest/spy': 0.32.4
'@vitest/utils': 0.32.4
acorn: 8.12.1
- acorn-walk: 8.3.3
+ acorn-walk: 8.3.4
cac: 6.7.14
chai: 4.5.0
- debug: 4.3.5
+ debug: 4.3.7
local-pkg: 0.4.3
- magic-string: 0.30.10
+ magic-string: 0.30.11
pathe: 1.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.0
std-env: 3.7.0
strip-literal: 1.3.0
- tinybench: 2.8.0
+ tinybench: 2.9.0
tinypool: 0.5.0
- vite: 4.5.3(@types/node@18.19.42)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
- vite-node: 0.32.4(@types/node@18.19.42)(less@4.2.0)(lightningcss@1.22.1)(sass@1.77.8)(terser@5.31.3)
+ vite: 4.5.3(@types/node@18.19.50)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
+ vite-node: 0.32.4(@types/node@18.19.50)(less@4.2.0)(lightningcss@1.22.1)(sass@1.78.0)(terser@5.32.0)
why-is-node-running: 2.3.0
optionalDependencies:
jsdom: 15.2.1
@@ -40309,7 +40513,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- watchpack@2.4.1:
+ watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -40349,7 +40553,7 @@ snapshots:
chalk: 2.4.2
commander: 2.20.3
ejs: 2.7.4
- express: 4.19.2
+ express: 4.20.0
filesize: 3.6.1
gzip-size: 5.1.1
lodash: 4.17.21
@@ -40370,10 +40574,10 @@ snapshots:
webpack: 4.41.5
webpack-log: 2.0.0
- webpack-dev-middleware@7.3.0(webpack@4.41.5):
+ webpack-dev-middleware@7.4.2(webpack@4.41.5):
dependencies:
colorette: 2.0.20
- memfs: 4.9.4
+ memfs: 4.11.1
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
@@ -40388,17 +40592,17 @@ snapshots:
chokidar: 2.1.8(supports-color@6.1.0)
compression: 1.7.4(supports-color@6.1.0)
connect-history-api-fallback: 1.6.0
- debug: 4.3.5(supports-color@6.1.0)
+ debug: 4.3.7(supports-color@6.1.0)
del: 4.1.1
- express: 4.19.2(supports-color@6.1.0)
+ express: 4.20.0(supports-color@6.1.0)
html-entities: 1.4.0
- http-proxy-middleware: 0.19.1(debug@4.3.5(supports-color@6.1.0))(supports-color@6.1.0)
+ http-proxy-middleware: 0.19.1(debug@4.3.7(supports-color@6.1.0))(supports-color@6.1.0)
import-local: 2.0.0
internal-ip: 4.3.0
ip: 1.1.9
is-absolute-url: 3.0.3
killable: 1.0.1
- loglevel: 1.9.1
+ loglevel: 1.9.2
opn: 5.5.0
p-retry: 3.0.1
portfinder: 1.0.25(supports-color@6.1.0)
@@ -40411,7 +40615,7 @@ snapshots:
spdy: 4.0.2(supports-color@6.1.0)
strip-ansi: 3.0.1
supports-color: 6.1.0
- url: 0.11.3
+ url: 0.11.4
webpack: 4.41.5
webpack-dev-middleware: 3.7.3(webpack@4.41.5)
webpack-log: 2.0.0
@@ -40433,8 +40637,6 @@ snapshots:
source-list-map: 2.0.1
source-map: 0.6.1
- webpack-sources@3.2.3: {}
-
webpack-virtual-modules@0.6.2: {}
webpack@4.41.5:
@@ -40489,10 +40691,16 @@ snapshots:
dependencies:
iconv-lite: 0.4.24
+ whatwg-encoding@3.1.1:
+ dependencies:
+ iconv-lite: 0.6.3
+
whatwg-fetch@3.6.20: {}
whatwg-mimetype@2.3.0: {}
+ whatwg-mimetype@4.0.0: {}
+
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
@@ -40514,7 +40722,7 @@ snapshots:
is-string: 1.0.7
is-symbol: 1.0.4
- which-builtin-type@1.1.3:
+ which-builtin-type@1.1.4:
dependencies:
function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
@@ -40542,11 +40750,6 @@ snapshots:
which-pm-runs@1.1.0: {}
- which-pm@2.2.0:
- dependencies:
- load-yaml-file: 0.2.0
- path-exists: 4.0.0
-
which-typed-array@1.1.15:
dependencies:
available-typed-arrays: 1.0.7
@@ -40684,10 +40887,10 @@ snapshots:
xterm@5.3.0: {}
- y-protocols@1.0.6(yjs@13.6.18):
+ y-protocols@1.0.6(yjs@13.6.19):
dependencies:
- lib0: 0.2.94
- yjs: 13.6.18
+ lib0: 0.2.97
+ yjs: 13.6.19
y18n@3.2.2: {}
@@ -40705,7 +40908,7 @@ snapshots:
yaml@2.3.1: {}
- yaml@2.5.0: {}
+ yaml@2.5.1: {}
yargs-parser@10.1.0:
dependencies:
@@ -40781,7 +40984,7 @@ snapshots:
yargs@16.2.0:
dependencies:
cliui: 7.0.4
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -40791,7 +40994,7 @@ snapshots:
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -40828,9 +41031,9 @@ snapshots:
yeast@0.1.2: {}
- yjs@13.6.18:
+ yjs@13.6.19:
dependencies:
- lib0: 0.2.94
+ lib0: 0.2.97
ylru@1.4.0: {}
diff --git a/pyprojects/secretnote/package.json b/pyprojects/secretnote/package.json
index b332b0a4..f309f9a3 100644
--- a/pyprojects/secretnote/package.json
+++ b/pyprojects/secretnote/package.json
@@ -8,10 +8,10 @@
"type": "module",
"scripts": {
"format:black": "python -m black --check src tests",
- "lint:ruff": "python -m ruff check src tests",
"test:pytest": "python -m pytest",
"typecheck:pyright": "pyright --project ../.. src/secretnote/server tests",
"dev": "NODE_ENV=development python -m secretnote.server --config=./.jupyter/config_dev.py --debug --no-browser",
+ "build:py:ci": "python -m build --out ./dist",
"build:py": "rye build --out ./dist",
"publish:py": "python -m hatch publish ./dist",
"build": "nx build:py"
diff --git a/pyprojects/secretnote/src/secretnote/server/app.py b/pyprojects/secretnote/src/secretnote/server/app.py
index be86a0a7..21206021 100644
--- a/pyprojects/secretnote/src/secretnote/server/app.py
+++ b/pyprojects/secretnote/src/secretnote/server/app.py
@@ -13,7 +13,7 @@
class SecretNoteApp(ExtensionAppJinjaMixin, ExtensionApp):
# -------------- Required traits --------------
- name = JUPYTER_SERVER_EXTENSION_MODULE
+ name = JUPYTER_SERVER_EXTENSION_MODULE or "secretnote"
load_other_extensions = True
extension_url = "/secretnote/"
diff --git a/requirements-dev.lock b/requirements-dev.lock
index 7b32da95..065d2cca 100644
--- a/requirements-dev.lock
+++ b/requirements-dev.lock
@@ -170,8 +170,6 @@ rfc3339-validator==0.1.4
rfc3986-validator==0.1.1
rich==13.7.0
rpds-py==0.17.1
-ruff==0.1.15
-ruff-lsp==0.0.53
safetensors==0.4.2
scipy==1.10.1
send2trash==1.8.2
diff --git a/requirements.lock b/requirements.lock
index 731dfc1b..75db523e 100644
--- a/requirements.lock
+++ b/requirements.lock
@@ -109,8 +109,6 @@ rfc3339-validator==0.1.4
rfc3986-validator==0.1.1
rich==13.7.0
rpds-py==0.17.1
-# ruff==0.2.2
-# ruff-lsp==0.0.53
send2trash==1.8.2
simpervisor==1.0.0
six==1.16.0