diff --git a/.vscode/cspell.json b/.vscode/cspell.json
index cafd469..895d802 100644
--- a/.vscode/cspell.json
+++ b/.vscode/cspell.json
@@ -29,6 +29,8 @@
"fdspawn",
"getipython",
"grpcio",
+ "highlightjs",
+ "hljs",
"ifaddresses",
"iloc",
"INET",
diff --git a/packages/secretnote-ui/tsconfig.json b/packages/secretnote-ui/tsconfig.json
index e993bba..b738e1b 100644
--- a/packages/secretnote-ui/tsconfig.json
+++ b/packages/secretnote-ui/tsconfig.json
@@ -1,8 +1,8 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
- "outDir": "build"
+ "outDir": "build",
},
"include": ["./src/**/*", "./src/.openapi-stubs/**/*"],
- "references": [{ "path": "./tsconfig.node.json" }]
+ "references": [{ "path": "./tsconfig.node.json" }],
}
diff --git a/packages/secretnote/package.json b/packages/secretnote/package.json
index 5b65ce0..e249c62 100644
--- a/packages/secretnote/package.json
+++ b/packages/secretnote/package.json
@@ -61,6 +61,7 @@
"classnames": "^2.3.2",
"d3-dsv": "^3.0.1",
"endent": "^2.1.0",
+ "highlight.js": "^11.9.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.284.0",
"monaco-editor": "^0.45.0",
diff --git a/packages/secretnote/src/modules/file/jsonl-preview-contrib.tsx b/packages/secretnote/src/modules/file/jsonl-preview-contrib.tsx
new file mode 100644
index 0000000..8c6bd5b
--- /dev/null
+++ b/packages/secretnote/src/modules/file/jsonl-preview-contrib.tsx
@@ -0,0 +1,46 @@
+import { singleton } from '@difizen/mana-app';
+import hljs from 'highlight.js';
+import { useEffect } from 'react';
+
+import { FilePreviewContribution } from './protocol';
+import 'highlight.js/styles/xcode.css'; // 选择主题 https://highlightjs.org/demo
+
+const JsonlView = (props: { data: string }) => {
+ useEffect(() => {
+ hljs.highlightAll();
+ }, []);
+
+ // 创建行号
+ const lineNumber = props.data
+ .trim()
+ .split('\n')
+ .map((_, index) => `${index + 1}\n`)
+ .join('');
+
+ return (
+
+
+ {lineNumber}
+
+
+ {props.data}
+
+
+ );
+};
+
+@singleton({ contrib: [FilePreviewContribution] })
+export class JsonlPreview implements FilePreviewContribution {
+ type = 'jsonl';
+ render = (data: string) => {
+ return ;
+ };
+}
diff --git a/packages/secretnote/src/modules/file/module.ts b/packages/secretnote/src/modules/file/module.ts
index c85c579..7097992 100644
--- a/packages/secretnote/src/modules/file/module.ts
+++ b/packages/secretnote/src/modules/file/module.ts
@@ -6,6 +6,7 @@ import { SecretNoteServerModule } from '@/modules/server';
import { CsvPreview } from './csv-preview-contrib';
import { ExtraView } from './extra-view';
+import { JsonlPreview } from './jsonl-preview-contrib';
import { LogPreview } from './log-preview-contrib';
import { FilePreviewView } from './preview-view';
import { FilePreviewContribution } from './protocol';
@@ -35,6 +36,7 @@ export const FilePreviewModule = ManaModule.create()
FilePreviewView,
CsvPreview,
LogPreview,
+ JsonlPreview,
createViewPreference({
slot: PreviewLayoutArea.main,
view: FilePreviewView,
diff --git a/packages/secretnote/src/modules/file/service.ts b/packages/secretnote/src/modules/file/service.ts
index 78f20eb..23df49b 100644
--- a/packages/secretnote/src/modules/file/service.ts
+++ b/packages/secretnote/src/modules/file/service.ts
@@ -8,7 +8,7 @@ import { downloadFileByUrl as download } from '@/utils';
import { SecretNoteServerManager } from '../server';
export const BASE_PATH = '/';
-export const FILE_EXTS = ['.csv', '.log', '.txt'];
+export const FILE_EXTS = ['.csv', '.log', '.txt', '.jsonl'];
@singleton()
export class FileService {
protected readonly contentsManager: ContentsManager;
diff --git a/packages/secretnote/tsconfig.json b/packages/secretnote/tsconfig.json
index dabee6e..7fedd26 100644
--- a/packages/secretnote/tsconfig.json
+++ b/packages/secretnote/tsconfig.json
@@ -3,6 +3,6 @@
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
- "importHelpers": false
- }
+ "importHelpers": false,
+ },
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 08180e8..cc2ae14 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,10 +10,10 @@ importers:
devDependencies:
'@bufbuild/buf':
specifier: ^1.27.1
- version: 1.27.1
+ version: 1.29.0
'@changesets/cli':
specifier: ^2.26.2
- version: 2.26.2
+ version: 2.27.1
'@commitlint/cli':
specifier: ^17.8.1
version: 17.8.1
@@ -22,13 +22,13 @@ importers:
version: 17.8.1
'@types/node':
specifier: ^18.16.19
- version: 18.16.19
+ version: 18.19.11
'@typescript-eslint/eslint-plugin':
specifier: ^5.62.0
- version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@5.2.2)
+ version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^5.62.0
- version: 5.62.0(eslint@8.52.0)(typescript@5.2.2)
+ version: 5.62.0(eslint@8.56.0)(typescript@5.3.3)
'@vitest/coverage-v8':
specifier: ^0.32.4
version: 0.32.4(vitest@0.32.4)
@@ -37,25 +37,25 @@ importers:
version: 7.3.0
eslint:
specifier: ^8.52.0
- version: 8.52.0
+ version: 8.56.0
eslint-config-prettier:
specifier: ^8.10.0
- version: 8.10.0(eslint@8.52.0)
+ version: 8.10.0(eslint@8.56.0)
eslint-plugin-import:
specifier: ^2.28.1
- version: 2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)
+ version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)
eslint-plugin-mdx:
specifier: ^2.2.0
- version: 2.2.0(eslint@8.52.0)
+ version: 2.3.4(eslint@8.56.0)
eslint-plugin-promise:
specifier: ^6.1.1
- version: 6.1.1(eslint@8.52.0)
+ version: 6.1.1(eslint@8.56.0)
eslint-plugin-react:
specifier: ^7.33.2
- version: 7.33.2(eslint@8.52.0)
+ version: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: ^4.6.0
- version: 4.6.0(eslint@8.52.0)
+ version: 4.6.0(eslint@8.56.0)
husky:
specifier: ^8.0.3
version: 8.0.3
@@ -64,28 +64,28 @@ importers:
version: 3.0.1
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@18.16.19)(ts-node@10.9.1)
+ version: 29.7.0(@types/node@18.19.11)(ts-node@10.9.2)
lint-staged:
specifier: ^13.3.0
version: 13.3.0
nx:
specifier: ^17.2.0
- version: 17.2.0
+ version: 17.3.1
openapi-typescript-codegen:
specifier: ^0.25.0
version: 0.25.0
postcss:
specifier: ^8.4.31
- version: 8.4.31
+ version: 8.4.33
postcss-less:
specifier: ^6.0.0
- version: 6.0.0(postcss@8.4.31)
+ version: 6.0.0(postcss@8.4.33)
prettier:
specifier: ^3.0.3
- version: 3.0.3
+ version: 3.2.4
pyright:
specifier: ^1.1.332
- version: 1.1.332
+ version: 1.1.349
remark-directive:
specifier: ^2.0.1
version: 2.0.1
@@ -100,10 +100,10 @@ importers:
version: 5.1.1
stylelint:
specifier: ^15.11.0
- version: 15.11.0(typescript@5.2.2)
+ version: 15.11.0(typescript@5.3.3)
stylelint-config-css-modules:
specifier: ^4.3.0
- version: 4.3.0(stylelint@15.11.0)
+ version: 4.4.0(stylelint@15.11.0)
stylelint-config-idiomatic-order:
specifier: ^9.0.0
version: 9.0.0(stylelint@15.11.0)
@@ -115,16 +115,16 @@ importers:
version: 30.0.1(stylelint@15.11.0)
stylelint-order:
specifier: ^6.0.3
- version: 6.0.3(stylelint@15.11.0)
+ version: 6.0.4(stylelint@15.11.0)
ts-node:
specifier: ^10.9.1
- version: 10.9.1(@types/node@18.16.19)(typescript@5.2.2)
+ version: 10.9.2(@types/node@18.19.11)(typescript@5.3.3)
tsup:
specifier: ^6.7.0
- version: 6.7.0(postcss@8.4.31)(ts-node@10.9.1)(typescript@5.2.2)
+ version: 6.7.0(postcss@8.4.33)(ts-node@10.9.2)(typescript@5.3.3)
typescript:
specifier: ^5.2.2
- version: 5.2.2
+ version: 5.3.3
vitest:
specifier: ^0.32.4
version: 0.32.4
@@ -133,13 +133,13 @@ importers:
dependencies:
'@antv/s2':
specifier: ^1.52.0
- version: 1.52.0(@antv/g-base@0.4.7)
+ version: 1.54.3(@antv/g-base@0.4.7)
'@codemirror/lang-python':
specifier: ^6.1.2
- version: 6.1.2(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ version: 6.1.3(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@difizen/libro-jupyter':
specifier: ^0.1.14
- version: 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(mapbox-gl@1.13.3)(react-dom@18.2.0)(react@18.2.0)
+ version: 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(mapbox-gl@1.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app':
specifier: ^0.1.9
version: 0.1.9(react-dom@18.2.0)(react@18.2.0)
@@ -160,85 +160,88 @@ importers:
version: 1.11.4(crypto@1.0.1)
'@rjsf/antd':
specifier: ^5.7.3
- version: 5.7.3(@ant-design/icons@4.8.1)(@rjsf/core@5.13.2)(@rjsf/utils@5.13.2)(antd@5.10.1)(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0)
+ version: 5.16.1(@ant-design/icons@5.2.6)(@rjsf/core@5.16.1)(@rjsf/utils@5.16.1)(antd@5.13.3)(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0)
'@rjsf/core':
specifier: ^5.13.2
- version: 5.13.2(@rjsf/utils@5.13.2)(react@18.2.0)
+ version: 5.16.1(@rjsf/utils@5.16.1)(react@18.2.0)
'@rjsf/utils':
specifier: ^5.13.2
- version: 5.13.2(react@18.2.0)
+ version: 5.16.1(react@18.2.0)
'@rjsf/validator-ajv8':
specifier: ^5.8.2
- version: 5.8.2(@rjsf/utils@5.13.2)
+ version: 5.16.1(@rjsf/utils@5.16.1)
'@tiptap/core':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/pm@2.2.0)
'@tiptap/extension-color':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/extension-text-style@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/extension-text-style@2.2.0)
'@tiptap/extension-highlight':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)
'@tiptap/extension-horizontal-rule':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
'@tiptap/extension-link':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
'@tiptap/extension-placeholder':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
'@tiptap/extension-task-item':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
'@tiptap/extension-task-list':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)
'@tiptap/extension-text-style':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)
'@tiptap/extension-underline':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)
'@tiptap/pm':
specifier: ^2.1.11
- version: 2.1.11
+ version: 2.2.0
'@tiptap/react':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)(react-dom@18.2.0)(react@18.2.0)
'@tiptap/starter-kit':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/pm@2.2.0)
'@tiptap/suggestion':
specifier: ^2.1.11
- version: 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
+ version: 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
'@uiw/codemirror-theme-github':
specifier: ^4.21.3
- version: 4.21.3(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)
+ version: 4.21.21(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)
'@uiw/react-codemirror':
specifier: ^4.21.20
- version: 4.21.20(@babel/runtime@7.23.8)(@codemirror/autocomplete@6.12.0)(@codemirror/language@6.10.0)(@codemirror/lint@6.4.2)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.23.0)(codemirror@6.0.1)(react-dom@18.2.0)(react@18.2.0)
+ version: 4.21.21(@babel/runtime@7.23.9)(@codemirror/autocomplete@6.12.0)(@codemirror/language@6.10.0)(@codemirror/lint@6.5.0)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.23.1)(codemirror@6.0.1)(react-dom@18.2.0)(react@18.2.0)
ahooks:
specifier: ^3.7.8
- version: 3.7.8(react@18.2.0)
+ version: 3.7.9(react@18.2.0)
antd:
specifier: ^5.10.1
- version: 5.10.1(react-dom@18.2.0)(react@18.2.0)
+ version: 5.13.3(react-dom@18.2.0)(react@18.2.0)
antd-schema-form:
specifier: ^5.0.1
- version: 5.0.1(@ant-design/icons@4.8.1)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ version: 5.0.1(@ant-design/icons@5.2.6)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
canvas-confetti:
specifier: ^1.9.0
- version: 1.9.0
+ version: 1.9.2
classnames:
specifier: ^2.3.2
- version: 2.3.2
+ version: 2.5.1
d3-dsv:
specifier: ^3.0.1
version: 3.0.1
endent:
specifier: ^2.1.0
version: 2.1.0
+ highlight.js:
+ specifier: ^11.9.0
+ version: 11.9.0
lodash-es:
specifier: ^4.17.21
version: 4.17.21
@@ -250,25 +253,25 @@ importers:
version: 0.45.0
monaco-editor-webpack-plugin:
specifier: ^7.1.0
- version: 7.1.0(monaco-editor@0.45.0)(webpack@5.89.0)
+ version: 7.1.0(monaco-editor@0.45.0)(webpack@5.90.0)
smoothie:
specifier: ^1.36.1
version: 1.36.1
sql-formatter:
specifier: ^15.0.2
- version: 15.0.2
+ version: 15.2.0
syntax-parser:
specifier: ^1.0.18
- version: 1.0.18(@types/react@18.2.28)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)
+ version: 1.0.18(@types/react@18.2.48)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)
tippy.js:
specifier: ^6.3.7
version: 6.3.7
tiptap-markdown:
specifier: ^0.8.2
- version: 0.8.2(@tiptap/core@2.1.11)
+ version: 0.8.9(@tiptap/core@2.2.0)
umi:
specifier: ^4.0.86
- version: 4.0.86(@babel/core@7.23.7)(@types/node@18.16.19)(@types/react@18.2.28)(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(postcss@8.4.33)(prettier@3.2.4)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8)(stylelint@14.16.1)(typescript@5.3.3)(webpack@5.89.0)
+ version: 4.1.1(@babel/core@7.23.9)(@types/node@18.19.11)(@types/react@18.2.48)(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(prettier@3.2.4)(react-dom@18.2.0)(react@18.2.0)(stylelint@14.16.1)(typescript@5.3.3)(webpack@5.90.0)
xterm:
specifier: ^5.3.0
version: 5.3.0
@@ -287,25 +290,25 @@ importers:
devDependencies:
'@types/canvas-confetti':
specifier: ^1.6.1
- version: 1.6.1
+ version: 1.6.4
'@types/d3-dsv':
specifier: ^3.0.4
- version: 3.0.4
+ version: 3.0.7
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
'@types/react':
specifier: ^18.2.28
- version: 18.2.28
+ version: 18.2.48
'@types/react-dom':
specifier: ^18.2.13
- version: 18.2.13
+ version: 18.2.18
babel-plugin-parameter-decorator:
specifier: ^1.0.16
version: 1.0.16
babel-plugin-transform-typescript-metadata:
specifier: ^0.3.2
- version: 0.3.2(@babel/core@7.23.7)
+ version: 0.3.2(@babel/core@7.23.9)
packages/secretnote-ui:
dependencies:
@@ -314,13 +317,13 @@ importers:
version: 0.1.26
'@antv/g6':
specifier: ^4.8.23
- version: 4.8.23
+ version: 4.8.24
'@antv/graphlib':
specifier: ^2.0.2
version: 2.0.2
antd:
specifier: ^5.10.2
- version: 5.10.2(react-dom@18.2.0)(react@18.2.0)
+ version: 5.13.3(react-dom@18.2.0)(react@18.2.0)
color:
specifier: ^4.2.3
version: 4.2.3
@@ -332,62 +335,62 @@ importers:
version: 4.17.21
styled-components:
specifier: ^6.1.0
- version: 6.1.0(react-dom@18.2.0)(react@18.2.0)
+ version: 6.1.8(react-dom@18.2.0)(react@18.2.0)
yaml:
specifier: ^2.3.4
version: 2.3.4
devDependencies:
'@storybook/addon-essentials':
specifier: ^7.5.1
- version: 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
specifier: ^7.5.1
- version: 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.6.11
'@storybook/addon-links':
specifier: ^7.5.1
- version: 7.5.1(react-dom@18.2.0)(react@18.2.0)
+ version: 7.6.11(react@18.2.0)
'@storybook/blocks':
specifier: ^7.5.1
- version: 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@storybook/react':
specifier: ^7.5.1
- version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ version: 7.6.11(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
'@storybook/react-vite':
specifier: ^7.5.1
- version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.4.5)
+ version: 7.6.11(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.5.2)
'@storybook/testing-library':
specifier: ^0.2.2
version: 0.2.2
'@types/color':
specifier: ^3.0.5
- version: 3.0.5
+ version: 3.0.6
'@types/d3':
specifier: ^7.4.2
- version: 7.4.2
+ version: 7.4.3
'@types/lodash':
specifier: ^4.14.200
- version: 4.14.200
+ version: 4.14.202
'@types/react':
specifier: ^18.2.15
- version: 18.2.28
+ version: 18.2.48
'@types/react-dom':
specifier: ^18.2.7
- version: 18.2.13
+ version: 18.2.18
'@typescript-eslint/eslint-plugin':
specifier: ^6.0.0
- version: 6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.56.0)(typescript@5.3.3)
+ version: 6.20.0(@typescript-eslint/parser@6.20.0)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^6.0.0
- version: 6.0.0(eslint@8.56.0)(typescript@5.3.3)
+ version: 6.20.0(eslint@8.56.0)(typescript@5.3.3)
'@vitejs/plugin-react-swc':
specifier: ^3.3.2
- version: 3.3.2(vite@4.4.5)
+ version: 3.5.0(vite@4.5.2)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-react-refresh:
specifier: ^0.4.3
- version: 0.4.3(eslint@8.56.0)
+ version: 0.4.5(eslint@8.56.0)
eslint-plugin-storybook:
specifier: ^0.6.15
version: 0.6.15(eslint@8.56.0)(typescript@5.3.3)
@@ -402,10 +405,10 @@ importers:
version: 18.2.0(react@18.2.0)
storybook:
specifier: ^7.5.1
- version: 7.5.1
+ version: 7.6.11
vite:
specifier: ^4.4.5
- version: 4.4.5(@types/node@18.16.19)
+ version: 4.5.2(@types/node@18.19.11)
pyprojects/secretnote:
devDependencies:
@@ -435,12 +438,6 @@ packages:
tinycolor2: 1.6.0
dev: false
- /@ant-design/colors@6.0.0:
- resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==}
- dependencies:
- '@ctrl/tinycolor': 3.6.1
- dev: false
-
/@ant-design/colors@7.0.2:
resolution: {integrity: sha512-7KJkhTiPiLHSu+LmMJnehfJ6242OCxSlR3xHVBecYxnMW8MS/878NXct1GqYARyL59fyeFdKRxXTfvR9SnDgJg==}
dependencies:
@@ -453,7 +450,7 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
classnames: 2.5.1
@@ -464,25 +461,8 @@ packages:
stylis: 4.3.1
dev: false
- /@ant-design/icons-svg@4.3.1:
- resolution: {integrity: sha512-4QBZg8ccyC6LPIRii7A0bZUk3+lEDCLnhB+FVsflGdcWPPmV+j3fire4AwwoqHV/BibgvBmR9ZIo4s867smv+g==}
- dev: false
-
- /@ant-design/icons@4.8.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-JRAuiqllnMsiZIO8OvBOeFconprC3cnMpJ9MvXrHh+H5co9rlg8/aSHQfLf5jKKe18lUgRaIwC2pz8YxH9VuCA==}
- engines: {node: '>=8'}
- peerDependencies:
- react: '>=16.0.0'
- react-dom: '>=16.0.0'
- dependencies:
- '@ant-design/colors': 6.0.0
- '@ant-design/icons-svg': 4.3.1
- '@babel/runtime': 7.23.8
- classnames: 2.5.1
- lodash: 4.17.21
- rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ /@ant-design/icons-svg@4.3.2:
+ resolution: {integrity: sha512-s9WV19cXTC/Tux/XpDru/rCfPZQhGaho36B+9RrN1v5YsaKmE6dJ+fq6LQnXVBVYjzkqykEEK+1XG+SYiottTQ==}
dev: false
/@ant-design/icons@5.2.6(react-dom@18.2.0)(react@18.2.0):
@@ -493,8 +473,8 @@ packages:
react-dom: '>=16.0.0'
dependencies:
'@ant-design/colors': 7.0.2
- '@ant-design/icons-svg': 4.3.1
- '@babel/runtime': 7.23.8
+ '@ant-design/icons-svg': 4.3.2
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -506,7 +486,7 @@ packages:
peerDependencies:
react: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
json2mq: 0.2.0
react: 18.2.0
@@ -640,21 +620,6 @@ packages:
lodash: 4.17.21
dev: false
- /@antv/g6-core@0.8.23:
- resolution: {integrity: sha512-JWdnba5Bx4/hLhbIQeyvdgh68SDYZisveukuBifxLKODCNJNKTopmWf1w6tU+RxAT2k5ByXkTGWQE1IkIL8O+Q==}
- dependencies:
- '@antv/algorithm': 0.1.26
- '@antv/dom-util': 2.0.4
- '@antv/event-emitter': 0.1.3
- '@antv/g-base': 0.5.15
- '@antv/g-math': 0.1.9
- '@antv/matrix-util': 3.1.0-beta.3
- '@antv/path-util': 2.0.15
- '@antv/util': 2.0.17
- ml-matrix: 6.11.0
- tslib: 2.6.2
- dev: false
-
/@antv/g6-core@0.8.24:
resolution: {integrity: sha512-rgI3dArAD8uoSz2+skS4ctN4x/Of33ivTIKaEYYvClxgkLZWVz9zvocy+5AWcVPBHZsAXkZcdh9zndIoWY/33A==}
dependencies:
@@ -670,16 +635,20 @@ packages:
tslib: 2.6.2
dev: false
- /@antv/g6-element@0.8.23:
- resolution: {integrity: sha512-KdJOiu4D7UExsYjKOJUcd7YCD/gCfxqHOlS01zkyOqsaindWVLdshBAZWXc2zgzVwHS/fadxwUI+DcllsRkH0g==}
+ /@antv/g6-element@0.8.24(@antv/g6@4.8.24):
+ resolution: {integrity: sha512-61FXkt9LY+6EOUtSam1iFTOW2AM59sPVcV1BuPj4dXiD0dluLE+R7d8B/94g1tKDw9tsjhfUQGC7hTXscJRJFw==}
+ peerDependencies:
+ '@antv/g6': 4.8.24
dependencies:
'@antv/g-base': 0.5.15
- '@antv/g6-core': 0.8.23
+ '@antv/g6': 4.8.24
+ '@antv/g6-core': 0.8.24
'@antv/util': 2.0.17
+ tslib: 2.6.2
dev: false
- /@antv/g6-pc@0.8.23:
- resolution: {integrity: sha512-8H5n1U8T4pyBcoaEKB8g4TRKycHtONSA+qOeFMq7XIDh1DCn0tUF1uLvwj096Zp+/bUXtAfaRvg+n1KKyCVZ0w==}
+ /@antv/g6-pc@0.8.24(@antv/g6@4.8.24):
+ resolution: {integrity: sha512-nf0y1lrp8J5DotqRryXd2S/J30COW8spVcLF9gUqywGqQAHfE00Ywkqr+PZBnsfCZXsXCi9o0+CE9NrkWs4SBQ==}
dependencies:
'@ant-design/colors': 4.0.5
'@antv/algorithm': 0.1.26
@@ -690,8 +659,8 @@ packages:
'@antv/g-math': 0.1.9
'@antv/g-svg': 0.5.7
'@antv/g6-core': 0.8.24
- '@antv/g6-element': 0.8.23
- '@antv/g6-plugin': 0.8.23
+ '@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.11
'@antv/layout': 0.3.25(dagre@0.8.5)
'@antv/matrix-util': 3.1.0-beta.3
@@ -702,17 +671,23 @@ packages:
dagre: 0.8.5
insert-css: 2.0.0
ml-matrix: 6.11.0
+ tslib: 2.6.2
+ transitivePeerDependencies:
+ - '@antv/g6'
dev: false
- /@antv/g6-plugin@0.8.23:
- resolution: {integrity: sha512-DwhSuUc0a0foIM4nrhXR/+ooZafkVve0IEErldhsygKWLDSz/c9HRLON66OEdzQX7Ed1uE0SMcBUsIDe+wPQrw==}
+ /@antv/g6-plugin@0.8.24(@antv/g6@4.8.24):
+ resolution: {integrity: sha512-ZIOnwLTC7SM2bFiJZ3vYFWnkyOCWKqnU96i/fBh1qAoY5slDS3hatenZWEXUtOcqaKw1h+5A5f72MRXqBBVn0g==}
+ peerDependencies:
+ '@antv/g6': 4.8.24
dependencies:
'@antv/dom-util': 2.0.4
'@antv/g-base': 0.5.15
'@antv/g-canvas': 0.5.14
'@antv/g-svg': 0.5.7
- '@antv/g6-core': 0.8.23
- '@antv/g6-element': 0.8.23
+ '@antv/g6': 4.8.24
+ '@antv/g6-core': 0.8.24
+ '@antv/g6-element': 0.8.24(@antv/g6@4.8.24)
'@antv/matrix-util': 3.1.0-beta.3
'@antv/path-util': 2.0.15
'@antv/scale': 0.3.18
@@ -720,10 +695,10 @@ packages:
insert-css: 2.0.0
dev: false
- /@antv/g6@4.8.23:
- resolution: {integrity: sha512-tsnJzlZCiOKvwAULGom6ppARutRmoAgV1wZzkOmDRm8ZdokUkpEYfb3faV6802VMs82DLP0zZ0KavapoK1q8hQ==}
+ /@antv/g6@4.8.24:
+ resolution: {integrity: sha512-bgj7sZ+z45JmOngIpYpwmSIg7SboMLZBoAlX0+RoAETZB3/xvZO0MXT3lCSyAhIgm5Sb68pekKi7OStuo04NyQ==}
dependencies:
- '@antv/g6-pc': 0.8.23
+ '@antv/g6-pc': 0.8.24(@antv/g6@4.8.24)
dev: false
/@antv/graphlib@1.2.0:
@@ -780,8 +755,8 @@ packages:
tslib: 2.6.2
dev: false
- /@antv/s2@1.52.0(@antv/g-base@0.4.7):
- resolution: {integrity: sha512-p0+IJInzM1jTTFZsXL5gGxJl9mS88+jcIGhzP2qFgqmIfPG9Q20nG8FBS708piJ97E4SUdePpvIUKKo93ArjWg==}
+ /@antv/s2@1.54.3(@antv/g-base@0.4.7):
+ resolution: {integrity: sha512-HEzK+KHd/uhyJAp6Ijk2z8T91CrknTltcTahi1B0GmKi/v4FAtSEhB0QT5bldS0pALeRgjij0AfdPC6C4qYJ+g==}
dependencies:
'@antv/event-emitter': 0.1.3
'@antv/g-canvas': 0.5.14
@@ -851,11 +826,11 @@ packages:
'@babel/code-frame': 7.23.5
'@babel/generator': 7.23.6
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.12.9)
- '@babel/helpers': 7.23.8
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -877,35 +852,35 @@ packages:
'@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.17.12)
- '@babel/helpers': 7.23.8
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
- semver: 6.3.1
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/core@7.21.0:
- resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==}
+ /@babel/core@7.23.6:
+ resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.23.5
'@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.21.0)
- '@babel/helpers': 7.23.8
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
- convert-source-map: 1.9.0
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
+ convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
@@ -914,20 +889,20 @@ packages:
- supports-color
dev: false
- /@babel/core@7.23.7:
- resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
+ /@babel/core@7.23.9:
+ resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.23.5
'@babel/generator': 7.23.6
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
- '@babel/helpers': 7.23.8
- '@babel/parser': 7.23.6
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -936,14 +911,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/eslint-parser@7.22.11(@babel/core@7.21.0)(eslint@8.56.0):
- resolution: {integrity: sha512-YjOYZ3j7TjV8OhLW6NCtyg8G04uStATEUe5eiLuCZaXz2VSDQ3dsAtm2D+TuQyAqNMUK2WacGo0/uma9Pein1w==}
+ /@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@8.56.0):
+ resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.6
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.56.0
eslint-visitor-keys: 2.1.0
@@ -954,7 +929,7 @@ packages:
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.22
jsesc: 2.5.2
@@ -963,13 +938,13 @@ packages:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-compilation-targets@7.23.6:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
@@ -977,12 +952,12 @@ packages:
dependencies:
'@babel/compat-data': 7.23.5
'@babel/helper-validator-option': 7.23.5
- browserslist: 4.22.2
+ browserslist: 4.22.3
lru-cache: 5.1.1
semver: 6.3.1
- /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.17.12):
- resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
+ /@babel/helper-create-class-features-plugin@7.23.9(@babel/core@7.17.12):
+ resolution: {integrity: sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -999,19 +974,19 @@ packages:
semver: 6.3.1
dev: false
- /@babel/helper-create-class-features-plugin@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==}
+ /@babel/helper-create-class-features-plugin@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
@@ -1029,13 +1004,13 @@ packages:
semver: 6.3.1
dev: false
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.9):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
@@ -1057,27 +1032,12 @@ packages:
- supports-color
dev: false
- /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.22.5
- debug: 4.3.4
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.7):
+ /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.9):
resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
@@ -1095,26 +1055,26 @@ packages:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-member-expression-to-functions@7.23.0:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-module-transforms@7.23.3(@babel/core@7.12.9):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
@@ -1144,13 +1104,13 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: false
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.21.0):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.21.0
+ '@babel/core': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -1158,13 +1118,13 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: false
- /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -1175,7 +1135,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-plugin-utils@7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
@@ -1197,13 +1157,13 @@ packages:
'@babel/helper-wrap-function': 7.22.20
dev: false
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
@@ -1221,13 +1181,13 @@ packages:
'@babel/helper-optimise-call-expression': 7.22.5
dev: false
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -1237,19 +1197,19 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/helper-string-parser@7.23.4:
resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
@@ -1268,16 +1228,16 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
- /@babel/helpers@7.23.8:
- resolution: {integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==}
+ /@babel/helpers@7.23.9:
+ resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
@@ -1289,12 +1249,12 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser@7.23.6:
- resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
+ /@babel/parser@7.23.9:
+ resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.17.12):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
@@ -1306,13 +1266,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1328,25 +1288,25 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.17.12)
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
dev: true
- /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.9):
resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1373,22 +1333,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.7):
- resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
/@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.17.12):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
@@ -1397,7 +1345,7 @@ packages:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.12)
dev: false
@@ -1409,7 +1357,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.22.20(@babel/core@7.17.12)
'@babel/helper-split-export-declaration': 7.22.6
@@ -1489,18 +1437,6 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.12)
dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.7):
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- dev: true
-
/@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.17.12):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
@@ -1565,19 +1501,6 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.12)
dev: false
- /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.7):
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- dev: true
-
/@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.17.12):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
@@ -1586,17 +1509,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.12
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: true
/@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.17.12):
@@ -1608,7 +1531,7 @@ packages:
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.12)
dev: false
@@ -1645,12 +1568,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.9):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.17.12):
@@ -1662,12 +1585,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.17.12):
@@ -1679,12 +1602,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.9):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.17.12):
@@ -1697,13 +1620,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1726,12 +1649,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1744,22 +1667,22 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1773,23 +1696,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1802,12 +1725,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.17.12):
@@ -1819,12 +1742,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
@@ -1846,13 +1769,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.17.12):
@@ -1864,12 +1787,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.17.12):
@@ -1881,12 +1804,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.17.12):
@@ -1898,12 +1821,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7):
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
@@ -1924,12 +1847,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.17.12):
@@ -1941,12 +1864,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.17.12):
@@ -1958,12 +1881,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.17.12):
@@ -1976,13 +1899,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2006,13 +1929,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.9):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.17.12):
@@ -2025,23 +1948,23 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.9):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2055,27 +1978,27 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==}
+ /@babel/plugin-transform-async-generator-functions@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.17.12):
@@ -2090,16 +2013,16 @@ packages:
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.17.12)
dev: false
- /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.17.12):
@@ -2112,13 +2035,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2132,37 +2055,37 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-classes@7.23.8(@babel/core@7.17.12):
@@ -2182,19 +2105,19 @@ packages:
globals: 11.12.0
dev: false
- /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7):
+ /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.9):
resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
@@ -2207,18 +2130,18 @@ packages:
dependencies:
'@babel/core': 7.17.12
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
+ '@babel/template': 7.23.9
dev: false
- /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/template': 7.22.15
+ '@babel/template': 7.23.9
dev: true
/@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.17.12):
@@ -2231,13 +2154,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2252,14 +2175,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2273,25 +2196,25 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.17.12):
@@ -2305,37 +2228,37 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-for-of@7.23.6(@babel/core@7.17.12):
@@ -2349,13 +2272,13 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
- /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7):
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.9):
resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
@@ -2372,27 +2295,27 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-literals@7.23.3(@babel/core@7.17.12):
@@ -2405,25 +2328,25 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.17.12):
@@ -2436,13 +2359,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2457,29 +2380,17 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.23.7):
- resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- dev: false
-
/@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.17.12):
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
@@ -2492,20 +2403,19 @@ packages:
'@babel/helper-simple-access': 7.22.5
dev: false
- /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
- dev: true
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.17.12):
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
+ /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.17.12):
+ resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2517,15 +2427,15 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: false
- /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.7):
- resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==}
+ /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
dev: true
@@ -2541,14 +2451,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2563,14 +2473,14 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.9):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2584,50 +2494,50 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-object-super@7.23.3(@babel/core@7.17.12):
@@ -2641,26 +2551,26 @@ packages:
'@babel/helper-replace-supers': 7.22.20(@babel/core@7.17.12)
dev: false
- /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.17.12):
@@ -2675,16 +2585,16 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.12)
dev: false
- /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-parameters@7.23.3(@babel/core@7.12.9):
@@ -2707,38 +2617,38 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7):
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.9):
resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.17.12):
@@ -2751,13 +2661,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2781,22 +2691,22 @@ packages:
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.17.12)
dev: false
- /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.17.12):
@@ -2810,7 +2720,7 @@ packages:
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.17.12)
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
dev: false
/@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.17.12):
@@ -2835,13 +2745,13 @@ packages:
regenerator-transform: 0.15.2
dev: false
- /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
dev: true
@@ -2856,13 +2766,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2878,7 +2788,7 @@ packages:
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)
- semver: 6.3.1
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
@@ -2893,13 +2803,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2914,13 +2824,13 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: false
- /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
@@ -2935,13 +2845,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2955,13 +2865,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2975,13 +2885,13 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -2993,22 +2903,22 @@ packages:
dependencies:
'@babel/core': 7.17.12
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.17.12)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.17.12)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.17.12)
dev: false
- /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.7):
+ /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.9):
resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.23.7(@babel/core@7.23.7)
+ '@babel/helper-create-class-features-plugin': 7.23.9(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
dev: true
/@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.17.12):
@@ -3021,24 +2931,24 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3053,25 +2963,25 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: false
- /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7):
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9)
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -3133,7 +3043,7 @@ packages:
'@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.17.12)
'@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.17.12)
'@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.17.12)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.17.12)
+ '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.17.12)
'@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.17.12)
'@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.17.12)
'@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.17.12)
@@ -3150,117 +3060,117 @@ packages:
'@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.17.12)
'@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.17.12)
'@babel/preset-modules': 0.1.6(@babel/core@7.17.12)
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
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.35.1
- semver: 6.3.1
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-env@7.23.8(@babel/core@7.23.7):
- resolution: {integrity: sha512-lFlpmkApLkEP6woIKprO6DO60RImpatTQKtz4sUcDjVcK8M8mQ4sZsuxaTMNOZf0sqAq/ReYW1ZBHnOQwKpLWA==}
+ /@babel/preset-env@7.23.9(@babel/core@7.23.9):
+ resolution: {integrity: sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7)
- '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7)
- '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
- '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
- '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7)
- '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.7)
- babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
- babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.9)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-generator-functions': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.9)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.9)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.9)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.9)
+ babel-plugin-polyfill-corejs3: 0.9.0(@babel/core@7.23.9)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.9)
core-js-compat: 3.35.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow@7.23.3(@babel/core@7.23.7):
+ /@babel/preset-flow@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.9)
dev: true
/@babel/preset-modules@0.1.6(@babel/core@7.17.12):
@@ -3272,18 +3182,18 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.12)
'@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.17.12)
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
esutils: 2.0.3
dev: false
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.9):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
esutils: 2.0.3
dev: true
@@ -3313,27 +3223,27 @@ packages:
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.17.12)
dev: false
- /@babel/preset-typescript@7.23.3(@babel/core@7.23.7):
+ /@babel/preset-typescript@7.23.3(@babel/core@7.23.9):
resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.23.5
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.7)
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.9)
dev: true
- /@babel/register@7.23.7(@babel/core@7.23.7):
+ /@babel/register@7.23.7(@babel/core@7.23.9):
resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -3351,29 +3261,29 @@ packages:
regenerator-runtime: 0.13.11
dev: false
- /@babel/runtime@7.21.0:
- resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
+ /@babel/runtime@7.23.6:
+ resolution: {integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==}
engines: {node: '>=6.9.0'}
dependencies:
- regenerator-runtime: 0.13.11
+ regenerator-runtime: 0.14.1
dev: false
- /@babel/runtime@7.23.8:
- resolution: {integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==}
+ /@babel/runtime@7.23.9:
+ resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
- /@babel/template@7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ /@babel/template@7.23.9:
+ resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
- /@babel/traverse@7.23.7:
- resolution: {integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==}
+ /@babel/traverse@7.23.9:
+ resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.23.5
@@ -3382,15 +3292,15 @@ packages:
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types@7.23.6:
- resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
+ /@babel/types@7.23.9:
+ resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.23.4
@@ -3408,8 +3318,8 @@ packages:
resolution: {integrity: sha512-h0OYmPR3A5Dfbetra/GzxBAzQk8sH7LhRkRUTdagX6nrtlUgJGYCTv4bBK33jsTQw9HDd8PE2x1Ma+iRKEDUsw==}
dev: false
- /@bufbuild/buf-darwin-arm64@1.27.1:
- resolution: {integrity: sha512-TpaRqvhcR0AgwoG93L3jv8oZtV0YHZx8j2Oj/CqHwqK910VZ2hF6JBy9FSIYqrzOj4JbHnBb6CENlDHUR5WJPw==}
+ /@bufbuild/buf-darwin-arm64@1.29.0:
+ resolution: {integrity: sha512-5hKxsARoY2WpWq1n5ONFqqGuauHb4yILKXCy37KRYCKiRLWmIP5yI3gWvWHKoH7sUJWTQmBqdJoCvYQr6ahQnw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -3417,8 +3327,8 @@ packages:
dev: true
optional: true
- /@bufbuild/buf-darwin-x64@1.27.1:
- resolution: {integrity: sha512-aQAVHm53B2PlzMO4sAlXspsGvCl0IGGSG9xRdDa2uEvvvYlSwZeYCJZSy9l5T1W35rz1AN6Y/u9sV+ylHcmi2A==}
+ /@bufbuild/buf-darwin-x64@1.29.0:
+ resolution: {integrity: sha512-wOAPxbPLBns4AHiComWtdO1sx1J1p6mDYTbqmloHuI+B5U2rDbMsoHoe4nBcoMF8+RHxoqjypha29wVo6yzbZg==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -3426,8 +3336,8 @@ packages:
dev: true
optional: true
- /@bufbuild/buf-linux-aarch64@1.27.1:
- resolution: {integrity: sha512-p4hX0VasF8Yd4+yAkiV5uUTaleEMWdnzDFWmBxwSjpORAXqp/By1JPH8flr2tPRGN+uIGbtXl3T2sOEsqS2gfA==}
+ /@bufbuild/buf-linux-aarch64@1.29.0:
+ resolution: {integrity: sha512-jLk2J/wyyM7KNJ/DkLfhy3eS2/Bdb70e/56adMkapSoLJmghnpgxW+oFznMxxQUX5I9BU5hTn1UhDFxgLwhP7g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -3435,8 +3345,8 @@ packages:
dev: true
optional: true
- /@bufbuild/buf-linux-x64@1.27.1:
- resolution: {integrity: sha512-NizPSsd/Q9pfOnR9yEDKIwyYCpG1uRWixJSdraAuO6NfyiPwjZ8+F0shIWfLNptANqM7GPBC7HNc5wX380OHCA==}
+ /@bufbuild/buf-linux-x64@1.29.0:
+ resolution: {integrity: sha512-heLOywj3Oaoh69RnTx7tHsuz6rEnvz77bghLEOghsrjBR6Jcpcwc137EZR4kRTIWJNrE8Kmo3RVeXlv144qQIQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -3444,8 +3354,8 @@ packages:
dev: true
optional: true
- /@bufbuild/buf-win32-arm64@1.27.1:
- resolution: {integrity: sha512-WoH2cF8cQ7e2qeeoQDuvmfzW13n3blo0LdX59BFU+zUehKYBfEy7fcmuF8NmAOKhgzOXCh7mimukXpRE7kfyYw==}
+ /@bufbuild/buf-win32-arm64@1.29.0:
+ resolution: {integrity: sha512-Eglyvr3PLqVucuHBcQ61conyBgH9BRaoLpKWcce1gYBVlxMQM1NxjVjGOWihxQ1dXXw5qZXmYfVODf3gSwPMuQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -3453,8 +3363,8 @@ packages:
dev: true
optional: true
- /@bufbuild/buf-win32-x64@1.27.1:
- resolution: {integrity: sha512-x3x7l+hfT71sf8bwxKME7NXPBNT+R8gObFpcEaTk6xTGPfOlbX8Y4M9C4kX2cH0oSFgkafIe+TUReCYrP3cGvA==}
+ /@bufbuild/buf-win32-x64@1.29.0:
+ resolution: {integrity: sha512-wRk6co+nqHqEq4iLolXgej0jUVlWlTtGHjKaq54lTbKZrwxrBgql6qS06abgNPRASX0++XT9m3QRZ97qEIC/HQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -3462,28 +3372,28 @@ packages:
dev: true
optional: true
- /@bufbuild/buf@1.27.1:
- resolution: {integrity: sha512-PtMIFojz77V5BYmC4OR+y6IqsI3jc1b2qysPJ7vaR1jx5K94C9prGvtWEJeEI06xaffVD97VsTt0VR6gTNk+HA==}
+ /@bufbuild/buf@1.29.0:
+ resolution: {integrity: sha512-euksXeFtvlvAV5j94LqXb69qQcJvFfo8vN1d3cx+IzhOKoipykuQQTq7mOWVo2R0kdk6yIMBLBofOYOsh0Df8g==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@bufbuild/buf-darwin-arm64': 1.27.1
- '@bufbuild/buf-darwin-x64': 1.27.1
- '@bufbuild/buf-linux-aarch64': 1.27.1
- '@bufbuild/buf-linux-x64': 1.27.1
- '@bufbuild/buf-win32-arm64': 1.27.1
- '@bufbuild/buf-win32-x64': 1.27.1
- dev: true
-
- /@changesets/apply-release-plan@6.1.4:
- resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==}
- dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/config': 2.3.1
- '@changesets/get-version-range-type': 0.3.2
- '@changesets/git': 2.0.0
- '@changesets/types': 5.2.1
+ '@bufbuild/buf-darwin-arm64': 1.29.0
+ '@bufbuild/buf-darwin-x64': 1.29.0
+ '@bufbuild/buf-linux-aarch64': 1.29.0
+ '@bufbuild/buf-linux-x64': 1.29.0
+ '@bufbuild/buf-win32-arm64': 1.29.0
+ '@bufbuild/buf-win32-x64': 1.29.0
+ dev: true
+
+ /@changesets/apply-release-plan@7.0.0:
+ resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==}
+ dependencies:
+ '@babel/runtime': 7.23.9
+ '@changesets/config': 3.0.0
+ '@changesets/get-version-range-type': 0.4.0
+ '@changesets/git': 3.0.0
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
detect-indent: 6.1.0
fs-extra: 7.0.1
@@ -3494,51 +3404,50 @@ packages:
semver: 7.5.4
dev: true
- /@changesets/assemble-release-plan@5.2.4:
- resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==}
+ /@changesets/assemble-release-plan@6.0.0:
+ resolution: {integrity: sha512-4QG7NuisAjisbW4hkLCmGW2lRYdPrKzro+fCtZaILX+3zdUELSvYjpL4GTv0E4aM9Mef3PuIQp89VmHJ4y2bfw==}
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.6
- '@changesets/types': 5.2.1
+ '@babel/runtime': 7.23.9
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
semver: 7.5.4
dev: true
- /@changesets/changelog-git@0.1.14:
- resolution: {integrity: sha512-+vRfnKtXVWsDDxGctOfzJsPhaCdXRYoe+KyWYoq5X/GqoISREiat0l3L8B0a453B2B4dfHGcZaGyowHbp9BSaA==}
+ /@changesets/changelog-git@0.2.0:
+ resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==}
dependencies:
- '@changesets/types': 5.2.1
+ '@changesets/types': 6.0.0
dev: true
- /@changesets/cli@2.26.2:
- resolution: {integrity: sha512-dnWrJTmRR8bCHikJHl9b9HW3gXACCehz4OasrXpMp7sx97ECuBGGNjJhjPhdZNCvMy9mn4BWdplI323IbqsRig==}
+ /@changesets/cli@2.27.1:
+ resolution: {integrity: sha512-iJ91xlvRnnrJnELTp4eJJEOPjgpF3NOh4qeQehM6Ugiz9gJPRZ2t+TsXun6E3AMN4hScZKjqVXl0TX+C7AB3ZQ==}
hasBin: true
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/apply-release-plan': 6.1.4
- '@changesets/assemble-release-plan': 5.2.4
- '@changesets/changelog-git': 0.1.14
- '@changesets/config': 2.3.1
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.6
- '@changesets/get-release-plan': 3.0.17
- '@changesets/git': 2.0.0
- '@changesets/logger': 0.0.5
- '@changesets/pre': 1.0.14
- '@changesets/read': 0.5.9
- '@changesets/types': 5.2.1
- '@changesets/write': 0.2.3
+ '@babel/runtime': 7.23.9
+ '@changesets/apply-release-plan': 7.0.0
+ '@changesets/assemble-release-plan': 6.0.0
+ '@changesets/changelog-git': 0.2.0
+ '@changesets/config': 3.0.0
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/get-release-plan': 4.0.0
+ '@changesets/git': 3.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/pre': 2.0.0
+ '@changesets/read': 0.6.0
+ '@changesets/types': 6.0.0
+ '@changesets/write': 0.3.0
'@manypkg/get-packages': 1.1.3
- '@types/is-ci': 3.0.4
'@types/semver': 7.5.6
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
- is-ci: 3.0.1
meow: 6.1.1
outdent: 0.5.0
p-limit: 2.3.0
@@ -3550,93 +3459,93 @@ packages:
tty-table: 4.2.3
dev: true
- /@changesets/config@2.3.1:
- resolution: {integrity: sha512-PQXaJl82CfIXddUOppj4zWu+987GCw2M+eQcOepxN5s+kvnsZOwjEJO3DH9eVy+OP6Pg/KFEWdsECFEYTtbg6w==}
+ /@changesets/config@3.0.0:
+ resolution: {integrity: sha512-o/rwLNnAo/+j9Yvw9mkBQOZySDYyOr/q+wptRLcAVGlU6djOeP9v1nlalbL9MFsobuBVQbZCTp+dIzdq+CLQUA==}
dependencies:
- '@changesets/errors': 0.1.4
- '@changesets/get-dependents-graph': 1.3.6
- '@changesets/logger': 0.0.5
- '@changesets/types': 5.2.1
+ '@changesets/errors': 0.2.0
+ '@changesets/get-dependents-graph': 2.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
micromatch: 4.0.5
dev: true
- /@changesets/errors@0.1.4:
- resolution: {integrity: sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q==}
+ /@changesets/errors@0.2.0:
+ resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
dependencies:
extendable-error: 0.1.7
dev: true
- /@changesets/get-dependents-graph@1.3.6:
- resolution: {integrity: sha512-Q/sLgBANmkvUm09GgRsAvEtY3p1/5OCzgBE5vX3vgb5CvW0j7CEljocx5oPXeQSNph6FXulJlXV3Re/v3K3P3Q==}
+ /@changesets/get-dependents-graph@2.0.0:
+ resolution: {integrity: sha512-cafUXponivK4vBgZ3yLu944mTvam06XEn2IZGjjKc0antpenkYANXiiE6GExV/yKdsCnE8dXVZ25yGqLYZmScA==}
dependencies:
- '@changesets/types': 5.2.1
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
chalk: 2.4.2
fs-extra: 7.0.1
semver: 7.5.4
dev: true
- /@changesets/get-release-plan@3.0.17:
- resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==}
+ /@changesets/get-release-plan@4.0.0:
+ resolution: {integrity: sha512-9L9xCUeD/Tb6L/oKmpm8nyzsOzhdNBBbt/ZNcjynbHC07WW4E1eX8NMGC5g5SbM5z/V+MOrYsJ4lRW41GCbg3w==}
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/assemble-release-plan': 5.2.4
- '@changesets/config': 2.3.1
- '@changesets/pre': 1.0.14
- '@changesets/read': 0.5.9
- '@changesets/types': 5.2.1
+ '@babel/runtime': 7.23.9
+ '@changesets/assemble-release-plan': 6.0.0
+ '@changesets/config': 3.0.0
+ '@changesets/pre': 2.0.0
+ '@changesets/read': 0.6.0
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
dev: true
- /@changesets/get-version-range-type@0.3.2:
- resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==}
+ /@changesets/get-version-range-type@0.4.0:
+ resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
dev: true
- /@changesets/git@2.0.0:
- resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==}
+ /@changesets/git@3.0.0:
+ resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==}
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/errors': 0.1.4
- '@changesets/types': 5.2.1
+ '@babel/runtime': 7.23.9
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
is-subdir: 1.2.0
micromatch: 4.0.5
spawndamnit: 2.0.0
dev: true
- /@changesets/logger@0.0.5:
- resolution: {integrity: sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw==}
+ /@changesets/logger@0.1.0:
+ resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==}
dependencies:
chalk: 2.4.2
dev: true
- /@changesets/parse@0.3.16:
- resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==}
+ /@changesets/parse@0.4.0:
+ resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==}
dependencies:
- '@changesets/types': 5.2.1
+ '@changesets/types': 6.0.0
js-yaml: 3.14.1
dev: true
- /@changesets/pre@1.0.14:
- resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==}
+ /@changesets/pre@2.0.0:
+ resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==}
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/errors': 0.1.4
- '@changesets/types': 5.2.1
+ '@babel/runtime': 7.23.9
+ '@changesets/errors': 0.2.0
+ '@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
fs-extra: 7.0.1
dev: true
- /@changesets/read@0.5.9:
- resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==}
+ /@changesets/read@0.6.0:
+ resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==}
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/git': 2.0.0
- '@changesets/logger': 0.0.5
- '@changesets/parse': 0.3.16
- '@changesets/types': 5.2.1
+ '@babel/runtime': 7.23.9
+ '@changesets/git': 3.0.0
+ '@changesets/logger': 0.1.0
+ '@changesets/parse': 0.4.0
+ '@changesets/types': 6.0.0
chalk: 2.4.2
fs-extra: 7.0.1
p-filter: 2.1.0
@@ -3646,15 +3555,15 @@ packages:
resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==}
dev: true
- /@changesets/types@5.2.1:
- resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==}
+ /@changesets/types@6.0.0:
+ resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==}
dev: true
- /@changesets/write@0.2.3:
- resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==}
+ /@changesets/write@0.3.0:
+ resolution: {integrity: sha512-slGLb21fxZVUYbyea+94uFiD6ntQW0M2hIKNznFizDhZPDgn2c/fv1UzzlW43RVzh1BEDuIqW6hzlJ1OflNmcw==}
dependencies:
- '@babel/runtime': 7.23.8
- '@changesets/types': 5.2.1
+ '@babel/runtime': 7.23.9
+ '@changesets/types': 6.0.0
fs-extra: 7.0.1
human-id: 1.0.2
prettier: 2.8.8
@@ -3676,7 +3585,7 @@ packages:
minimist: 1.2.8
dev: false
- /@codemirror/autocomplete@6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1):
+ /@codemirror/autocomplete@6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1):
resolution: {integrity: sha512-r4IjdYFthwbCQyvqnSlx0WBHRHi8nBvU+WjJxFUij81qsBfhNudf/XKKmmC2j3m0LaOYUQTf3qiEK1J8lO1sdg==}
peerDependencies:
'@codemirror/language': ^6.0.0
@@ -3686,7 +3595,7 @@ packages:
dependencies:
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/common': 1.2.1
dev: false
@@ -3695,14 +3604,14 @@ packages:
dependencies:
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/common': 1.2.1
dev: false
- /@codemirror/lang-css@6.2.1(@codemirror/view@6.23.0):
+ /@codemirror/lang-css@6.2.1(@codemirror/view@6.23.1):
resolution: {integrity: sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
'@lezer/common': 1.2.1
@@ -3711,15 +3620,15 @@ packages:
- '@codemirror/view'
dev: false
- /@codemirror/lang-html@6.4.7:
- resolution: {integrity: sha512-y9hWSSO41XlcL4uYwWyk0lEgTHcelWWfRuqmvcAmxfCs0HNWZdriWo/EU43S63SxEZpc1Hd50Itw7ktfQvfkUg==}
+ /@codemirror/lang-html@6.4.8:
+ resolution: {integrity: sha512-tE2YK7wDlb9ZpAH6mpTPiYm6rhfdQKVDa5r9IwIFlwwgvVaKsCfuKKZoJGWsmMZIf3FQAuJ5CHMPLymOtg1hXw==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
- '@codemirror/lang-css': 6.2.1(@codemirror/view@6.23.0)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
+ '@codemirror/lang-css': 6.2.1(@codemirror/view@6.23.1)
'@codemirror/lang-javascript': 6.2.1
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/common': 1.2.1
'@lezer/css': 1.1.7
'@lezer/html': 1.3.8
@@ -3728,38 +3637,31 @@ packages:
/@codemirror/lang-javascript@6.2.1:
resolution: {integrity: sha512-jlFOXTejVyiQCW3EQwvKH0m99bUYIw40oPmFjSX2VS78yzfe0HELZ+NEo9Yfo1MkGRpGlj3Gnu4rdxV1EnAs5A==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.0
- '@codemirror/lint': 6.4.2
+ '@codemirror/lint': 6.5.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/common': 1.2.1
'@lezer/javascript': 1.4.13
dev: false
- /@codemirror/lang-json@6.0.1:
- resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==}
- dependencies:
- '@codemirror/language': 6.10.0
- '@lezer/json': 1.0.2
- dev: false
-
/@codemirror/lang-markdown@6.2.4:
resolution: {integrity: sha512-UghkA1vSMs8bT7RSZM6vsIocigyah2bV00eRQuZy76401UmFZdsTsbQNBGdyxRQDOLeEvF5iFwap0BM8LKyd+g==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
- '@codemirror/lang-html': 6.4.7
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
+ '@codemirror/lang-html': 6.4.8
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/common': 1.2.1
'@lezer/markdown': 1.2.0
dev: false
- /@codemirror/lang-python@6.1.2(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1):
- resolution: {integrity: sha512-nbQfifLBZstpt6Oo4XxA2LOzlSp4b/7Bc5cmodG1R+Cs5PLLCTUvsMNWDnziiCfTOG/SW1rVzXq/GbIr6WXlcw==}
+ /@codemirror/lang-python@6.1.3(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1):
+ resolution: {integrity: sha512-S9w2Jl74hFlD5nqtUMIaXAq9t5WlM0acCkyuQWUUSvZclk1sV+UfnpFiZzuZSG+hfEaOmxKR5UxY/Uxswn7EhQ==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.0
'@lezer/python': 1.1.11
transitivePeerDependencies:
@@ -3768,35 +3670,22 @@ packages:
- '@lezer/common'
dev: false
- /@codemirror/lang-sql@6.5.5(@codemirror/view@6.23.0):
- resolution: {integrity: sha512-DvOaP2RXLb2xlxJxxydTFfwyYw5YDqEFea6aAfgh9UH0kUD6J1KFZ0xPgPpw1eo/5s2w3L6uh5PVR7GM23GxkQ==}
- dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
- '@codemirror/language': 6.10.0
- '@codemirror/state': 6.4.0
- '@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
- transitivePeerDependencies:
- - '@codemirror/view'
- dev: false
-
/@codemirror/language@6.10.0:
resolution: {integrity: sha512-2vaNn9aPGCRFKWcHPFksctzJ8yS5p7YoaT+jHpc0UGKzNuAIx4qy6R5wiqbP+heEEdyaABA582mNqSHzSoYdmg==}
dependencies:
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
+ '@lezer/lr': 1.4.0
style-mod: 4.1.0
dev: false
- /@codemirror/lint@6.4.2:
- resolution: {integrity: sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==}
+ /@codemirror/lint@6.5.0:
+ resolution: {integrity: sha512-+5YyicIaaAZKU8K43IQi8TBy6mF6giGeWAH7N96Z5LC30Wm5JMjqxOYIE9mxwMG1NbhT2mA3l9hA4uuKUM3E5g==}
dependencies:
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
crelt: 1.0.6
dev: false
@@ -3804,7 +3693,7 @@ packages:
resolution: {integrity: sha512-PIEN3Ke1buPod2EHbJsoQwlbpkz30qGZKcnmH1eihq9+bPQx8gelauUwLYaY4vBOuBAuEhmpDLii4rj/uO0yMA==}
dependencies:
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
crelt: 1.0.6
dev: false
@@ -3817,12 +3706,12 @@ packages:
dependencies:
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
'@lezer/highlight': 1.2.0
dev: false
- /@codemirror/view@6.23.0:
- resolution: {integrity: sha512-/51px9N4uW8NpuWkyUX+iam5+PM6io2fm+QmRnzwqBy5v/pwGg9T0kILFtYeum8hjuvENtgsGNKluOfqIICmeQ==}
+ /@codemirror/view@6.23.1:
+ resolution: {integrity: sha512-J2Xnn5lFYT1ZN/5ewEoMBCmLlL71lZ3mBdb7cUEuHhX2ESoSrNEucpsDXpX22EuTGm9LOgC9v4Z0wx+Ez8QmGA==}
dependencies:
'@codemirror/state': 6.4.0
style-mod: 4.1.0
@@ -3979,14 +3868,14 @@ packages:
'@commitlint/types': 17.8.1
'@types/node': 20.5.1
chalk: 4.1.2
- cosmiconfig: 8.3.6(typescript@5.2.2)
- cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.1)(typescript@5.2.2)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
+ cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.2)(typescript@5.3.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
- ts-node: 10.9.1(@types/node@20.5.1)(typescript@5.2.2)
- typescript: 5.2.2
+ ts-node: 10.9.2(@types/node@20.5.1)(typescript@5.3.3)
+ typescript: 5.3.3
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
@@ -4285,14 +4174,14 @@ packages:
engines: {node: '>=10'}
dev: false
- /@difizen/libro-code-cell@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-uuvfYy7CzTVYoCkjxwBE+0g+jY7SXBTk0iBBXQp7wXvGTQvo1tQFAO8Q5CbsidxaBeXt5MKIqxuJt0ZlklqT8A==}
+ /@difizen/libro-code-cell@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-HUlLcxTOD22CgegGRjREJGGMW3lFCPnJB63CETT9T9e1nHnrLPCNN9ekvgZU4c8Aq9YTCmhtfDI7lCLdxxW+Hw==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
@@ -4304,12 +4193,12 @@ packages:
- supports-color
dev: false
- /@difizen/libro-code-editor@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-J13lwYYjZ7oNb4Yh49d14zr5BwyPB1g+l/VcVKEPOJsLqdnUeQnrVPe3ptK4EGvU4xcmbJIzNSeSzdM8AmDuzw==}
+ /@difizen/libro-code-editor@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-CPd/1OZpFpJpMouHUmXFIiQPW6Yk1E2GeUArf/BHbRrHRTedjyaltPEo8qu3EI7hEDwSTxUllWoxq3NS3q03UQ==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-l10n': 0.1.9(react@18.2.0)
react: 18.2.0
@@ -4319,25 +4208,22 @@ packages:
- supports-color
dev: false
- /@difizen/libro-codemirror@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-elkQrjw9olxo9e9bDcgg8qqgTVde2bwmL02mlXuWVYfzDmQaUXbuWlqMDo2BW/OzWDVke4ghdi6bZ9VRR/iQ5g==}
+ /@difizen/libro-codemirror@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-CyAxKyfxeUSGy7UgEfPOlGeMwcAkxCVngO+fCFR2Z/OI/wUYhDwP+jNMtwdURLKaRgtv7woZr3IvXi21UPwyTA==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/commands': 6.3.3
- '@codemirror/lang-javascript': 6.2.1
- '@codemirror/lang-json': 6.0.1
'@codemirror/lang-markdown': 6.2.4
- '@codemirror/lang-python': 6.1.2(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
- '@codemirror/lang-sql': 6.5.5(@codemirror/view@6.23.0)
+ '@codemirror/lang-python': 6.1.3(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/language': 6.10.0
- '@codemirror/lint': 6.4.2
+ '@codemirror/lint': 6.5.0
'@codemirror/search': 6.5.5
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-lsp': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-rendermime': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@codemirror/view': 6.23.1
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-lsp': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-rendermime': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
@@ -4355,8 +4241,8 @@ packages:
- supports-color
dev: false
- /@difizen/libro-cofine-editor-contribution@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Qd6GNfwdBuiB9Q0ErTCwzkd9InW2nAmhf+tncyR+v46R92ua2YFxlYsBxh2a7S6cHciF78D544OIDTxp6VNEVQ==}
+ /@difizen/libro-cofine-editor-contribution@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-FOvnTp8S4qHlQlxDcXVVmLbs5+8kLCy1SLd2aQrsm7wkgz2hmCUUOa+lvvMQmrcOv6nS7o9X9Ca0LxTLph9nuQ==}
dependencies:
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
transitivePeerDependencies:
@@ -4365,12 +4251,12 @@ packages:
- supports-color
dev: false
- /@difizen/libro-cofine-editor-core@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-iktwY9Rj8pKSr8Ych6NR4d9IwZRbJm/TFfGZo0xvBF+LtvC986HVpjiRuADqVQJz/JOAS7DoKQq82rGap05FhQ==}
+ /@difizen/libro-cofine-editor-core@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-gX36kFUF7/GSaKBzJuDhFQSG+t8DAtkeewfBE86FK9BhumVv+RtuUDbTk3QRyPuQWofqzVj4V/cEnLoH3wLV0w==}
dependencies:
- '@difizen/libro-cofine-editor-contribution': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-cofine-editor-contribution': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
- '@difizen/monaco-editor-core': 0.45.0
+ '@difizen/monaco-editor-core': 0.39.4
debug: 4.3.4
reflect-metadata: 0.1.14
transitivePeerDependencies:
@@ -4379,19 +4265,19 @@ packages:
- supports-color
dev: false
- /@difizen/libro-cofine-editor@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-aRKEGN7+v4g4k5oJw/cMPKL1tTfn12jtdfspS7MgsL/xBMubBppP5sZkZ/qNBl7cD8DBsnIq61ibY/SDAkgztw==}
+ /@difizen/libro-cofine-editor@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-bYyPA727u6FK8fRrylR3eCOLK9/rixDZZy9ijfGVoSDiQhHdg3CkGCunNRvH/ozAy8ScYxKrLA/7HAl6jvNR8A==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-cofine-editor-core': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-cofine-textmate': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-lsp': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-cofine-editor-core': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-cofine-textmate': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-lsp': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
- '@difizen/monaco-editor-core': 0.45.0
+ '@difizen/monaco-editor-core': 0.39.4
react: 18.2.0
resize-observer-polyfill: 1.5.1
uuid: 9.0.1
@@ -4405,10 +4291,10 @@ packages:
- supports-color
dev: false
- /@difizen/libro-cofine-textmate@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-F05kKgQwOs4m91FaIEJhNnwLUqJmsQQHTowvM+e1bHtL34pJ0AVrGWumr7mtaFFy80lK2v4aT/c7w6KFdNbeqQ==}
+ /@difizen/libro-cofine-textmate@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-23yIs0Tf+ZHkzxndPNOCBZ+vywDQB+8/IR1OSOrkwx1M+aoifDGjlW2p8n9NZMBIdONzKdmAW+vzW0LL8iB2bw==}
dependencies:
- '@difizen/libro-cofine-editor-core': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-cofine-editor-core': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
fast-plist: 0.1.3
vscode-oniguruma: 1.7.0
@@ -4419,8 +4305,8 @@ packages:
- supports-color
dev: false
- /@difizen/libro-common@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-LxdvFYdYdWB9xlMU00nthGN/3VkMc7lLL+ik87s8WjBTooKfoB6WoidlHzjuKHAAEQHR9XLWkkgVKNNs+Pio2w==}
+ /@difizen/libro-common@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-TQk1YnrDFJ4+vLJqWSnK99+Q+iwVer488sa4GmnZe6h7sKpJfmFCQcIzdDC2tUa0YK3jAyu2ZypiHzysyqD2PQ==}
peerDependencies:
react: ^18.2.0
dependencies:
@@ -4434,26 +4320,26 @@ packages:
- supports-color
dev: false
- /@difizen/libro-core@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Y5KHHBuvhtQjguQ1dka5sQ92IcP7pQCZKSoa4Orf9PUXnIANU4UXXR+ZkdgBJtug7dwD/n7U6p6nrLcW+aoYkA==}
+ /@difizen/libro-core@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Fd3a90ecPSNmkGs7EkYiVkaE4imWVWT+MXmPmUtQPPpMUrxJCOaEQ50G15Z7UpPQ6WJTwgPXWVPJUA7maPl1NA==}
peerDependencies:
antd: ^5.8.6
react: ^18.2.0
dependencies:
'@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-shared-model': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-virtualized': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-shared-model': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-virtualized': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-l10n': 0.1.9(react@18.2.0)
'@difizen/mana-react': 0.1.9(react-dom@18.2.0)(react@18.2.0)
- antd: 5.10.1(react-dom@18.2.0)(react@18.2.0)
+ antd: 5.13.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
dayjs: 1.11.10
dnd-core: 16.0.1
react: 18.2.0
- react-dnd: 16.0.1(@types/node@18.16.19)(@types/react@18.2.28)(react@18.2.0)
+ react-dnd: 16.0.1(@types/node@18.19.11)(@types/react@18.2.48)(react@18.2.0)
react-dnd-html5-backend: 16.0.1
resize-observer-polyfill: 1.5.1
uuid: 9.0.1
@@ -4465,33 +4351,33 @@ packages:
- supports-color
dev: false
- /@difizen/libro-jupyter@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(mapbox-gl@1.13.3)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-9PqY1o/59L23npcb3i883ljof+hrqVp7ThPrmoPG6VV21pfcExygHDhgkEZFXG+UbAUcGQrmhNOl1iFRcNOe7w==}
+ /@difizen/libro-jupyter@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(mapbox-gl@1.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-/8zIpuHCMh1Y9+d0B7FMwG9KqdB4CloSw06f+SQUA9D10bv7oU/fItyn04A/1A1WJ1evGIlcvbk/pCDEzzkLag==}
peerDependencies:
antd: ^5.8.6
react: ^18.2.0
dependencies:
'@ant-design/colors': 7.0.2
'@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-code-cell': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-codemirror': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-cofine-editor': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-kernel': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-l10n': 0.1.14(react@18.2.0)
- '@difizen/libro-lsp': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-markdown-cell': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-output': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-raw-cell': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-rendermime': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-search': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-search-code-cell': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-cell': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-codemirror': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-cofine-editor': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-kernel': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-l10n': 0.1.17(react@18.2.0)
+ '@difizen/libro-lsp': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-markdown-cell': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-output': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-raw-cell': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-rendermime': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-search': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-search-code-cell': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-l10n': 0.1.9(react@18.2.0)
- antd: 5.10.1(react-dom@18.2.0)(react@18.2.0)
- classnames: 2.3.2
+ antd: 5.13.3(react-dom@18.2.0)(react@18.2.0)
+ classnames: 2.5.1
moment: 2.30.1
plotly.js: 2.28.0(mapbox-gl@1.13.3)
react: 18.2.0
@@ -4504,13 +4390,13 @@ packages:
- supports-color
dev: false
- /@difizen/libro-kernel@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-A81vCpeKr8Vc81+UnzLJNGhldrb2DvVcagQjzPCc8ipunqWdsmH3ySu3PVraYr2IdFTM14fo4dqYVdfm90eJow==}
+ /@difizen/libro-kernel@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ZoLRUvEl/uIexsvLHntaPJ5tpo+6K4fzhJH/L5ZlW4zDv5ehm1T9QeIeZ2I1JL2X/rk/JyPXD179Tmxo7RzDwA==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
minimist: 1.2.8
query-string: 8.1.0
@@ -4525,23 +4411,23 @@ packages:
- supports-color
dev: false
- /@difizen/libro-l10n@0.1.14(react@18.2.0):
- resolution: {integrity: sha512-GUh9glLcMbQASt5CTsD9cwX1rba36KYi1q+XZi9bFDpSj70jyVkXLzYuHxg83MSchJRRCEpZtXxZ54sdrpz4Zg==}
+ /@difizen/libro-l10n@0.1.17(react@18.2.0):
+ resolution: {integrity: sha512-I13rW/io99or7YfplTxVNlm5/PIzYg1h67EN7iJffOpuFI4ZiiRe9AlZEtnuMCiA4qCYCzL571MZgNHxkXtx+A==}
dependencies:
'@difizen/mana-l10n': 0.1.9(react@18.2.0)
transitivePeerDependencies:
- react
dev: false
- /@difizen/libro-lsp@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-vU4dxMHWCTqagN87MoTh0EeLFQZ8ALhcj2SBSN4OpRAC1wCMJDf2hm/zJc0Q28wN1RGxuc3tzzGFkuX38osbzQ==}
+ /@difizen/libro-lsp@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Kd8bey4sAAsRFRVWZ6VKnOyAm1ZajbBiyoNc7Q6ahJawPXtDiTaPQ94wxEggBhwcWdN9Bw7XUaGPohy0q9vFSg==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-kernel': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-kernel': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
lodash.mergewith: 4.6.2
react: 18.2.0
@@ -4558,15 +4444,15 @@ packages:
- supports-color
dev: false
- /@difizen/libro-markdown-cell@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-1rRnCJbrbS7NVHzVUAjBghC4fZHU4sWWNzrzvz9tm0Pc3YE10k1ewUrxsGmjUmS/RtYx2GR5ZCLNAP3aBoCyjQ==}
+ /@difizen/libro-markdown-cell@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-rIiGwITGbhbbOTu0fzOk1j/H2lBbemZ8VnLYjhK/yt+zn/vYP5XMWFSRhXvKMNllArZ8M53n5raPxbCTHB0UeA==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-markdown': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-markdown': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@types/markdown-it': 12.2.3
markdown-it: 13.0.2
@@ -4581,8 +4467,8 @@ packages:
- supports-color
dev: false
- /@difizen/libro-markdown@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-TbuQSK+Q7Xmfg+opz3yAeNPyn116B4rakd5gDAm+Y4YQZNpBuLJX5Q0tDaJjDCpk901YcPl2SIAsKZXQ7nWqNg==}
+ /@difizen/libro-markdown@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-bRUnZKbUv/Gf678I5j1f5KVM63IdhzuCj+ioDRsHOr+Fp13S2Ot4dLPuXTmDJrL5mmTTiFrUkZhjyQ7nz3aFKA==}
dependencies:
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@types/markdown-it': 12.2.3
@@ -4594,17 +4480,17 @@ packages:
- supports-color
dev: false
- /@difizen/libro-output@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-YTA4rr3h1UBAZt73qy4mciVI5lkMlfkerQmTlh4plZbX9NC9mTCLFANSBTTSbt7vyzUnlySeJmFhuOOlPQBoFA==}
+ /@difizen/libro-output@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-3Ah0Fmp7ywodQYXrFYOB9b8aMxtS4c7ZiChdDrjgQg1Xta8OlxsKC+72CoBZD+IwL+9ebW6deefIuj/0SM5SLA==}
peerDependencies:
antd: ^5.8.6
react: ^18.2.0
dependencies:
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-rendermime': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-rendermime': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
- antd: 5.10.1(react-dom@18.2.0)(react@18.2.0)
+ antd: 5.13.3(react-dom@18.2.0)(react@18.2.0)
markdown-it: 13.0.2
react: 18.2.0
transitivePeerDependencies:
@@ -4615,14 +4501,14 @@ packages:
- supports-color
dev: false
- /@difizen/libro-raw-cell@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-G0ILBA4wsnpOtN3cGZw1VsyV+yxrb9ngLSS2Qr9iD+gvggf0GUxBNq5l5nbtRV1LOLM+dCiGXKtT/lja9/TE3g==}
+ /@difizen/libro-raw-cell@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-rwCZq42giHj5QXoLWhQWJ5ZB4pauBGSZK5b40rGxzAar5zGrwlSqYhfYAZok++5rfXII90n+druaRm1hAsI2+w==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
transitivePeerDependencies:
@@ -4634,14 +4520,14 @@ packages:
- supports-color
dev: false
- /@difizen/libro-rendermime@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-nMuijWa/GIE07zqBNvcUYVYFG0eDY4vvFoWFXfvmyHKkk2hAI9NUaCRlYLXc3V7WZUivohen3pjwdY/gbpiiSw==}
+ /@difizen/libro-rendermime@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-hBBEmxQHuxKkcwOryEJBzsVd7/dCLQE5rY0S2BO44gz0H2r2bgHhTl820qy2nj5qMgsY2VkxTyVwgJ5kFcIKLg==}
peerDependencies:
react: ^18.2.0
dependencies:
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-markdown': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-markdown': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
lodash.escape: 4.0.1
react: 18.2.0
@@ -4654,16 +4540,14 @@ packages:
- supports-color
dev: false
- /@difizen/libro-search-code-cell@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-clcW/2LrZKyR7/2PtFAYkRKGD7pv9uDgWERihvHU7CCgj+ZtvhAgzyvZIAlZOGfBEaRdn+C0NTEE4fgVp3d72g==}
+ /@difizen/libro-search-code-cell@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-UAK+vXpA+GRyAzGDVtuI9mNcSTxBDlRZC3HbDoU9dxQ5+ZocGRkLQ8qGCi2xjdqA7NCBhgWjMuixmVLRsEi89A==}
dependencies:
- '@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
- '@difizen/libro-code-cell': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-search': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-cell': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-search': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
transitivePeerDependencies:
- '@types/hoist-non-react-statics'
@@ -4675,20 +4559,20 @@ packages:
- supports-color
dev: false
- /@difizen/libro-search@0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Dt7cTdfpj9dNMvoea143ft4DCM/OKIh/SG+s6Z6f5YBU5ziTomYPUjZVs6pIXJ/jnLpuh2CROE2mNci8668M+A==}
+ /@difizen/libro-search@0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-7tnYIrTD7zYkC9F7xTVnogqOP+Wwsl+/Nxjz9inj8fFgQu8TTouAJLlH5qUZg9UNK4fQ2dsqSPFJeAfmDdB4NQ==}
peerDependencies:
antd: ^5.8.6
react: ^18.2.0
dependencies:
'@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-code-editor': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
- '@difizen/libro-core': 0.1.14(@types/node@18.16.19)(@types/react@18.2.28)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-code-editor': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-core': 0.1.17(@types/node@18.19.11)(@types/react@18.2.48)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-l10n': 0.1.9(react@18.2.0)
'@types/lodash.debounce': 4.0.9
- antd: 5.10.1(react-dom@18.2.0)(react@18.2.0)
+ antd: 5.13.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
lodash.debounce: 4.0.8
react: 18.2.0
@@ -4701,10 +4585,10 @@ packages:
- supports-color
dev: false
- /@difizen/libro-shared-model@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-dc6FoOObeQAR1Pq5QLh/tRoW/mAX9J5NbP8w6CTXurh6ifowA25rwIBfkMAOXebMAJ5oI/PMqn641ItAYgpfbA==}
+ /@difizen/libro-shared-model@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Q3qPmK7uH20Sk9rBvR38+cz9ECnAaEDaSuVyxoFlOch3yVYCDHUr+SaKblBI2BHMUslolD/grE6Z6w6bEGZl8A==}
dependencies:
- '@difizen/libro-common': 0.1.14(react-dom@18.2.0)(react@18.2.0)
+ '@difizen/libro-common': 0.1.17(react-dom@18.2.0)(react@18.2.0)
'@difizen/mana-app': 0.1.9(react-dom@18.2.0)(react@18.2.0)
uuid: 9.0.1
y-protocols: 1.0.6(yjs@13.6.11)
@@ -4715,8 +4599,8 @@ packages:
- supports-color
dev: false
- /@difizen/libro-virtualized@0.1.14(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-qs4kXj0C5crIezCHdVuzSVj9lmomz6guhNr3R6XBccjB4DV7TfEd5qB9UOn5Pr6dVELakAeeFq50eh3dSLejug==}
+ /@difizen/libro-virtualized@0.1.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-nUm5YuCtyNmbKKPGezhR316g334v7huRpptlYo/O/x88p/hhvY0XpTVdpMI5C1XxHd5AU8i//Co2U8/FOid8aA==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
@@ -4822,8 +4706,8 @@ packages:
reflect-metadata: 0.1.14
dev: false
- /@difizen/monaco-editor-core@0.45.0:
- resolution: {integrity: sha512-iZrh/iPFr1EoaIoW9c9FHn4axm3/+wW50tUxVbWSXZz3vNfQdYSNt9gKrbBAqzSLpWEh6xyTVcRuEvCKCFtiBg==}
+ /@difizen/monaco-editor-core@0.39.4:
+ resolution: {integrity: sha512-4aHhsaEJUOWOqxxHvV7r+UP/3f/wHHJvQdkwnMt28HIkP1KKjG/gEXoVDxsv7MWT31pSp9OhXl2K3BPy32P7yQ==}
dev: false
/@discoveryjs/json-ext@0.5.7:
@@ -4853,10 +4737,6 @@ packages:
resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==}
dev: false
- /@emotion/unitless@0.8.1:
- resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
- dev: false
-
/@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==}
peerDependencies:
@@ -5217,16 +5097,6 @@ packages:
requiresBuild: true
optional: true
- /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0):
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.52.0
- eslint-visitor-keys: 3.4.3
- dev: true
-
/@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5274,11 +5144,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@eslint/js@8.52.0:
- resolution: {integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
-
/@eslint/js@8.56.0:
resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5291,8 +5156,8 @@ packages:
resolution: {integrity: sha512-jktYRmZwmau63adUG3GKOAVCofBXkk55S/zQ94XOorAHhwqFIOFAy1rSp2N0Wp6/tGbe9V3u/ExlGZypyY17rg==}
dev: false
- /@floating-ui/core@1.5.3:
- resolution: {integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==}
+ /@floating-ui/core@1.6.0:
+ resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
dependencies:
'@floating-ui/utils': 0.2.1
dev: true
@@ -5303,28 +5168,28 @@ packages:
'@floating-ui/core': 0.6.2
dev: false
- /@floating-ui/dom@1.5.4:
- resolution: {integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==}
+ /@floating-ui/dom@1.6.1:
+ resolution: {integrity: sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==}
dependencies:
- '@floating-ui/core': 1.5.3
+ '@floating-ui/core': 1.6.0
'@floating-ui/utils': 0.2.1
dev: true
- /@floating-ui/react-dom-interactions@0.3.1(@types/react@18.2.28)(react-dom@18.1.0)(react@18.1.0):
+ /@floating-ui/react-dom-interactions@0.3.1(@types/react@18.2.48)(react-dom@18.1.0)(react@18.1.0):
resolution: {integrity: sha512-tP2KEh7EHJr5hokSBHcPGojb+AorDNUf0NYfZGg/M+FsMvCOOsSEeEF0O1NDfETIzDnpbHnCs0DuvCFhSMSStg==}
deprecated: Package renamed to @floating-ui/react
dependencies:
- '@floating-ui/react-dom': 0.6.3(@types/react@18.2.28)(react-dom@18.1.0)(react@18.1.0)
+ '@floating-ui/react-dom': 0.6.3(@types/react@18.2.48)(react-dom@18.1.0)(react@18.1.0)
aria-hidden: 1.2.3
point-in-polygon: 1.1.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.28)(react@18.1.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.48)(react@18.1.0)
transitivePeerDependencies:
- '@types/react'
- react
- react-dom
dev: false
- /@floating-ui/react-dom@0.6.3(@types/react@18.2.28)(react-dom@18.1.0)(react@18.1.0):
+ /@floating-ui/react-dom@0.6.3(@types/react@18.2.48)(react-dom@18.1.0)(react@18.1.0):
resolution: {integrity: sha512-hC+pS5D6AgS2wWjbmSQ6UR6Kpy+drvWGJIri6e1EDGADTPsCaa4KzCgmCczHrQeInx9tqs81EyDmbKJYY2swKg==}
peerDependencies:
react: '>=16.8.0'
@@ -5333,18 +5198,18 @@ packages:
'@floating-ui/dom': 0.4.5
react: 18.1.0
react-dom: 18.1.0(react@18.1.0)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.28)(react@18.1.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.48)(react@18.1.0)
transitivePeerDependencies:
- '@types/react'
dev: false
- /@floating-ui/react-dom@2.0.6(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-IB8aCRFxr8nFkdYZgH+Otd9EVQPJoynxeFRGTB8voPoZMRWo8XjYuCRgpI1btvuKY69XMiLnW+ym7zoBHM90Rw==}
+ /@floating-ui/react-dom@2.0.8(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 1.5.4
+ '@floating-ui/dom': 1.6.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -5465,7 +5330,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -5500,7 +5365,7 @@ packages:
micromatch: 4.0.5
p-each-series: 2.2.0
realpath-native: 2.0.0
- rimraf: 3.0.2
+ rimraf: 3.0.0
slash: 3.0.0
strip-ansi: 6.0.1
transitivePeerDependencies:
@@ -5510,7 +5375,7 @@ packages:
- utf-8-validate
dev: false
- /@jest/core@29.7.0(ts-node@10.9.1):
+ /@jest/core@29.7.0(ts-node@10.9.2):
resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -5524,14 +5389,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
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.8)(ts-node@10.9.1)
+ jest-config: 29.7.0(@types/node@20.5.1)(ts-node@10.9.2)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -5567,7 +5432,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
jest-mock: 29.7.0
/@jest/expect-utils@29.7.0:
@@ -5602,7 +5467,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -5676,7 +5541,7 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.22
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -5768,7 +5633,7 @@ packages:
resolution: {integrity: sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.17.12
'@jest/types': 25.5.0
babel-plugin-istanbul: 6.1.1
chalk: 3.0.0
@@ -5792,7 +5657,7 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.22
babel-plugin-istanbul: 6.1.1
@@ -5835,7 +5700,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
'@types/yargs': 16.0.9
chalk: 4.1.2
@@ -5846,11 +5711,11 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
'@types/yargs': 17.0.32
chalk: 4.1.2
- /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.3)(vite@4.4.5):
+ /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.3)(vite@4.5.2):
resolution: {integrity: sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==}
peerDependencies:
typescript: '>= 4.3.x'
@@ -5864,7 +5729,7 @@ packages:
magic-string: 0.27.0
react-docgen-typescript: 2.2.2(typescript@5.3.3)
typescript: 5.3.3
- vite: 4.4.5(@types/node@18.16.19)
+ vite: 4.5.2(@types/node@18.19.11)
dev: true
/@jridgewell/gen-mapping@0.3.3:
@@ -5936,7 +5801,7 @@ packages:
dependencies:
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
+ '@lezer/lr': 1.4.0
dev: false
/@lezer/highlight@1.2.0:
@@ -5950,7 +5815,7 @@ packages:
dependencies:
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
+ '@lezer/lr': 1.4.0
dev: false
/@lezer/javascript@1.4.13:
@@ -5958,19 +5823,11 @@ packages:
dependencies:
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
- dev: false
-
- /@lezer/json@1.0.2:
- resolution: {integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==}
- dependencies:
- '@lezer/common': 1.2.1
- '@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
+ '@lezer/lr': 1.4.0
dev: false
- /@lezer/lr@1.3.14:
- resolution: {integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==}
+ /@lezer/lr@1.4.0:
+ resolution: {integrity: sha512-Wst46p51km8gH0ZUmeNrtpRYmdlRHUpN1DQd3GFAyKANi8WVz8c2jHYTf1CVScFaCjQw1iO3ZZdqGDxQPRErTg==}
dependencies:
'@lezer/common': 1.2.1
dev: false
@@ -5987,7 +5844,7 @@ packages:
dependencies:
'@lezer/common': 1.2.1
'@lezer/highlight': 1.2.0
- '@lezer/lr': 1.3.14
+ '@lezer/lr': 1.4.0
dev: false
/@loadable/component@5.15.2(react@18.1.0):
@@ -5996,7 +5853,7 @@ packages:
peerDependencies:
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
hoist-non-react-statics: 3.3.2
react: 18.1.0
react-is: 16.13.1
@@ -6008,7 +5865,7 @@ packages:
peerDependencies:
react: '>=16.3.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
hoist-non-react-statics: 3.3.2
react: 18.2.0
react-is: 16.13.1
@@ -6057,7 +5914,7 @@ packages:
/@manypkg/find-root@1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
@@ -6066,7 +5923,7 @@ packages:
/@manypkg/get-packages@1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -6130,7 +5987,7 @@ packages:
rimraf: 2.7.1
dev: false
- /@material-ui/core@4.7.1(@types/react@18.2.28)(react-dom@16.14.0)(react@16.14.0):
+ /@material-ui/core@4.7.1(@types/react@18.2.48)(react-dom@16.14.0)(react@16.14.0):
resolution: {integrity: sha512-gqbZqpwUT5/59KTrWyA9Mr9s8NaNyfWHlEQToM1tfpiHqrIJajLVg2ZgVDzExvN985v2YQIfbuTNVzJDOnM28Q==}
engines: {node: '>=8.0.0'}
deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
@@ -6138,9 +5995,9 @@ packages:
react: ^16.8.0
react-dom: ^16.8.0
dependencies:
- '@babel/runtime': 7.23.8
- '@material-ui/styles': 4.11.5(@types/react@18.2.28)(react-dom@16.14.0)(react@16.14.0)
- '@material-ui/system': 4.12.2(@types/react@18.2.28)(react-dom@16.14.0)(react@16.14.0)
+ '@babel/runtime': 7.23.9
+ '@material-ui/styles': 4.11.5(@types/react@18.2.48)(react-dom@16.14.0)(react@16.14.0)
+ '@material-ui/system': 4.12.2(@types/react@18.2.48)(react-dom@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)
'@types/react-transition-group': 4.4.10
@@ -6158,7 +6015,7 @@ packages:
- '@types/react'
dev: false
- /@material-ui/styles@4.11.5(@types/react@18.2.28)(react-dom@16.14.0)(react@16.14.0):
+ /@material-ui/styles@4.11.5(@types/react@18.2.48)(react-dom@16.14.0)(react@16.14.0):
resolution: {integrity: sha512-o/41ot5JJiUsIETME9wVLAJrmIWL3j0R0Bj2kCOLbSfqEkKf0fmaPt+5vtblUh5eXr2S+J/8J3DaCb10+CzPGA==}
engines: {node: '>=8.0.0'}
deprecated: Material UI v4 doesn't receive active development since September 2021. See the guide https://mui.com/material-ui/migration/migration-v4/ to upgrade to v5.
@@ -6170,11 +6027,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@emotion/hash': 0.8.0
- '@material-ui/types': 5.1.0(@types/react@18.2.28)
+ '@material-ui/types': 5.1.0(@types/react@18.2.48)
'@material-ui/utils': 4.11.3(react-dom@16.14.0)(react@16.14.0)
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
clsx: 1.2.1
csstype: 2.6.21
hoist-non-react-statics: 3.3.2
@@ -6191,7 +6048,7 @@ packages:
react-dom: 16.14.0(react@16.14.0)
dev: false
- /@material-ui/system@4.12.2(@types/react@18.2.28)(react-dom@16.14.0)(react@16.14.0):
+ /@material-ui/system@4.12.2(@types/react@18.2.48)(react-dom@16.14.0)(react@16.14.0):
resolution: {integrity: sha512-6CSKu2MtmiJgcCGf6nBQpM8fLkuB9F55EKfbdTC80NND5wpTmKzwdhLYLH3zL4cLlK0gVaaltW7/wMuyTnN0Lw==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -6202,9 +6059,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@material-ui/utils': 4.11.3(react-dom@16.14.0)(react@16.14.0)
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
csstype: 2.6.21
prop-types: 15.8.1
react: 16.14.0
@@ -6214,10 +6071,10 @@ packages:
/@material-ui/types@4.1.1:
resolution: {integrity: sha512-AN+GZNXytX9yxGi0JOfxHrRTbhFybjUJ05rnsBVjcB+16e466Z0Xe5IxawuOayVZgTBNDxmPKo5j4V6OnMtaSQ==}
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: false
- /@material-ui/types@5.1.0(@types/react@18.2.28):
+ /@material-ui/types@5.1.0(@types/react@18.2.48):
resolution: {integrity: sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==}
peerDependencies:
'@types/react': '*'
@@ -6225,7 +6082,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: false
/@material-ui/utils@4.11.3(react-dom@16.14.0)(react@16.14.0):
@@ -6235,7 +6092,7 @@ packages:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
prop-types: 15.8.1
react: 16.14.0
react-dom: 16.14.0(react@16.14.0)
@@ -6292,8 +6149,8 @@ packages:
peerDependencies:
react: '>=16'
dependencies:
- '@types/mdx': 2.0.10
- '@types/react': 18.2.28
+ '@types/mdx': 2.0.11
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
@@ -6331,7 +6188,7 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.16.0
+ fastq: 1.17.0
/@npmcli/config@6.4.0:
resolution: {integrity: sha512-/fQjIbuNVIT/PbXvw178Tm97bxV0E0nVUFKHivMKtSI2pcs8xKdaWkHJxf9dTI0G/y5hp/KuCvgcUu5HwAtI1w==}
@@ -6362,11 +6219,11 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dev: true
- /@nrwl/tao@17.2.0:
- resolution: {integrity: sha512-pBs9CaOgzRS4tPEcSeYmktQ1g1VC2C+kzt7X2xlowPx6VRP5eyUKtZUeKztib/Pw2G3RNRxA8E3IZYYcjSb8Vg==}
+ /@nrwl/tao@17.3.1:
+ resolution: {integrity: sha512-bohZt2rzqCz2ITOpQ6H7sYlHhxn3NftHDz0a0QVVDJojjpak73r8XV0zCk2yUN2T8HdRJVyYLyAqDENl9X48pA==}
hasBin: true
dependencies:
- nx: 17.2.0
+ nx: 17.3.1
tslib: 2.6.2
transitivePeerDependencies:
- '@swc-node/register'
@@ -6374,8 +6231,8 @@ packages:
- debug
dev: true
- /@nx/nx-darwin-arm64@17.2.0:
- resolution: {integrity: sha512-c26zrvevAOaoTAGz1+Spdet0seG82VYfgAfuVR1gn2tjVgvFw31RB/YMak2bJ1xFx7sFxZ2NOInRkn9y31lUWA==}
+ /@nx/nx-darwin-arm64@17.3.1:
+ resolution: {integrity: sha512-19YkMr/9fMWQsaiFxkLmz50WzIQ6nktEwDfjhSOOFeRc40SCw848ZWZ4EZDH6dOgKK3UOeW6OX9vr5+GMn2yLA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -6383,8 +6240,8 @@ packages:
dev: true
optional: true
- /@nx/nx-darwin-x64@17.2.0:
- resolution: {integrity: sha512-hXYfMtqytcQqXGmWejx79VDkgTs4MTOfI9x4TMpdO2QsJwyDHr2q36bR8ob297hVwfiQoG7SkWvXiKNtPB4XCw==}
+ /@nx/nx-darwin-x64@17.3.1:
+ resolution: {integrity: sha512-FaI9VI7XwG32jDArAZK0F+mWN6ZU7Y8anFr7C1VMcgVbaMLz6i4kp3sy5kFAbFDgFcpTdUOiZq5Ay+hJtDyufg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -6392,8 +6249,8 @@ packages:
dev: true
optional: true
- /@nx/nx-freebsd-x64@17.2.0:
- resolution: {integrity: sha512-PcbYzEhInEz8RNN23F0mYZoEXz9JL4XVqwcYfGWkcBEQ8GGwRmv776lfxg+7zDM1QlTwdsiSjQJQ7DRM/BwuTg==}
+ /@nx/nx-freebsd-x64@17.3.1:
+ resolution: {integrity: sha512-AZ+kl5x+O+8Ptrzw/RXgSZFs6V4U6TlieTOoCtrPtmVR7mz9nxMfwQNf/GAz8kbiC+u9PDH5rFl/UblEi4WF6g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
@@ -6401,8 +6258,8 @@ packages:
dev: true
optional: true
- /@nx/nx-linux-arm-gnueabihf@17.2.0:
- resolution: {integrity: sha512-oHn7n7NWUy0h5DR0GDxog46pT4fE99DVuyTyIrUybasvsKOQhszg97AHzziwLT6V/jGVoND+aRx+yWoX+T2Gfw==}
+ /@nx/nx-linux-arm-gnueabihf@17.3.1:
+ resolution: {integrity: sha512-a8Y7435O2lxbtNsQ4vciYqXJ8eFVyOJizhiQ6koh/VHN/0FEYuGVkJRRXinDS44W0dfiDRXvbQKvPtjAvD5gJQ==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
@@ -6410,8 +6267,8 @@ packages:
dev: true
optional: true
- /@nx/nx-linux-arm64-gnu@17.2.0:
- resolution: {integrity: sha512-tc2HgxkD32nJ5dcWeMPJbveoHgKoc6aZWdNl4pDH8Xy36e+QozoY+7iKk6Li31EFtXBlbW1RVhtltNYpHgBJXg==}
+ /@nx/nx-linux-arm64-gnu@17.3.1:
+ resolution: {integrity: sha512-B/o/xTvSUlWG/OTCh96BkaWD1rE1kSJ20BdRgyG4CGGH318/PgcvimeMvJcwNJNDoRsyJxAEKveGGD6gKkffcQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -6420,8 +6277,8 @@ packages:
dev: true
optional: true
- /@nx/nx-linux-arm64-musl@17.2.0:
- resolution: {integrity: sha512-mfPvungAW9mQpKIcz9G8MwqTK3fm9L0ACghreh8wGVG934UtiCMSjkOOsoH+w5Hm4qsZiOjsRCY0B3JFKnw9Tw==}
+ /@nx/nx-linux-arm64-musl@17.3.1:
+ resolution: {integrity: sha512-lOIAE3N6I1U2/dctuw2b3QIR+pXjlag3dYk+hLC+p/Sd5FZ0GBzpQhGzi03VsbQdIkIJ95K2gd05yolZLFOVqw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -6430,8 +6287,8 @@ packages:
dev: true
optional: true
- /@nx/nx-linux-x64-gnu@17.2.0:
- resolution: {integrity: sha512-0wQXugfleOzMMQVugAH/Jd3wzfOBeY1Jk4Tt6xAUVNZLOkYi1PYR/TjLvXcQ4BH388PF3VZYAZVRC8kbh4aDOg==}
+ /@nx/nx-linux-x64-gnu@17.3.1:
+ resolution: {integrity: sha512-pTCwQFAojEpeYP02xDZtnmRvViRLzbBXXWZNBf5pprCJGGKtHsVrwrswRJlt3btN/UWn2J/uFbTXyHDFWu8egA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -6440,8 +6297,8 @@ packages:
dev: true
optional: true
- /@nx/nx-linux-x64-musl@17.2.0:
- resolution: {integrity: sha512-KB/Ny2Q0244G4QToKPmVwbTtItB+hRlNXz7NzXrW56gwINk1NbvS9QLZrRJOUyyOpd3gMlGQ5zt/+77pPraYDg==}
+ /@nx/nx-linux-x64-musl@17.3.1:
+ resolution: {integrity: sha512-WIV4gQjQAVp2oW/qtY4FmP7eeLwyo+bkoVw9PY42A89N6o7rYa/z77s9ajnl98A3eGb2ghe9fwwgAerLgmuFzA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -6450,8 +6307,8 @@ packages:
dev: true
optional: true
- /@nx/nx-win32-arm64-msvc@17.2.0:
- resolution: {integrity: sha512-3nxYLUQpYi5AtJCFFoXkn3QvAZHeBwKzyJ5nnD/oWv6EaZH74BfWqAzAq55E7bodlJGBEQxy86aC4epo41jNag==}
+ /@nx/nx-win32-arm64-msvc@17.3.1:
+ resolution: {integrity: sha512-HKc4QWIP7r+FmK0Anzrey7udlDLaKscHbrNGQN9YV2/ulYVtHidIVZCXYZq3p93Gg55e4t2uAiUuXSXdyy8Q6g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -6459,8 +6316,8 @@ packages:
dev: true
optional: true
- /@nx/nx-win32-x64-msvc@17.2.0:
- resolution: {integrity: sha512-+rKsQrDvw/NZan8pMHRjlW9sJB27dvFG6+GvJlmNeutsClb813IKCD2tN9BbcxW7Cw5Ol+a2uKC76l2SZTnO3g==}
+ /@nx/nx-win32-x64-msvc@17.3.1:
+ resolution: {integrity: sha512-o2QrIeHGBG6BqViVCPP0J3V9UEDMjyDxyMJF/l/DT4dWr/+zdrIJ11eiQs7Tvo2GLXJFXI0fMur8p3HopnOvAQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -6569,35 +6426,35 @@ packages:
/@probe.gl/env@3.6.0:
resolution: {integrity: sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/@probe.gl/log@3.6.0:
resolution: {integrity: sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@probe.gl/env': 3.6.0
dev: false
/@probe.gl/stats@3.6.0:
resolution: {integrity: sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/@radix-ui/number@1.0.1:
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: true
/@radix-ui/primitive@1.0.1:
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: true
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -6610,15 +6467,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -6631,18 +6488,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -6651,12 +6508,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-context@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -6665,12 +6522,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -6679,12 +6536,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -6697,19 +6554,19 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -6718,12 +6575,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -6736,17 +6593,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-id@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -6755,13 +6612,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -6774,24 +6631,24 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@floating-ui/react-dom': 2.0.6(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.28)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.48)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -6804,15 +6661,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -6825,15 +6682,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -6846,23 +6703,23 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
'@types/react': '*'
@@ -6875,35 +6732,35 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.28)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0)
dev: true
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
peerDependencies:
'@types/react': '*'
@@ -6916,15 +6773,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -6933,13 +6790,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
peerDependencies:
'@types/react': '*'
@@ -6952,21 +6809,21 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
'@types/react': '*'
@@ -6979,17 +6836,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
'@types/react': '*'
@@ -7002,21 +6859,21 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -7025,12 +6882,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -7039,13 +6896,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -7054,13 +6911,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -7069,12 +6926,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -7083,12 +6940,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -7097,13 +6954,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.28)(react@18.2.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -7112,13 +6969,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.28)(react@18.2.0)
- '@types/react': 18.2.28
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: true
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -7131,10 +6988,10 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.28
- '@types/react-dom': 18.2.13
+ '@babel/runtime': 7.23.9
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
+ '@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -7142,16 +6999,16 @@ packages:
/@radix-ui/rect@1.0.1:
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: true
- /@rc-component/color-picker@1.4.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-vh5EWqnsayZa/JwUznqDaPJz39jznx/YDbyBuVJntv735tKXKwEUZZb2jYEldOg+NKWZwtALjGMrNeGBmqFoEw==}
+ /@rc-component/color-picker@1.5.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-onyAFhWKXuG4P162xE+7IgaJkPkwM94XlOYnQuu69XdXWMfxpeFi6tpJBsieIMV7EnyLV5J3lDzdLiFeK0iEBA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@ctrl/tinycolor': 3.6.1
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -7165,7 +7022,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -7175,7 +7032,7 @@ packages:
resolution: {integrity: sha512-jS4E7T9Li2GuYwI6PyiVXmxTiM6b07rlD9Ge8uGZSCz3WlzcG5ZK7g5bbuKNeZ9pgUuPK/5guV781ujdVpm4HQ==}
engines: {node: '>=8.x'}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/@rc-component/mutate-observer@1.1.0(react-dom@18.2.0)(react@18.2.0):
@@ -7185,7 +7042,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -7199,37 +7056,37 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@rc-component/tour@1.10.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-voV0BKaTJbewB9LLgAHQ7tAGG7rgDkKQkZo82xw2gIk542hY+o7zwoqdN16oHhIKk7eG/xi+mdXrONT62Dt57A==}
+ /@rc-component/tour@1.12.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-U4mf1FiUxGCwrX4ed8op77Y8VKur+8Y/61ylxtqGbcSoh1EBC7bWd/DkLu0ClTUrKZInqEi1FL7YgFtnT90vHA==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0)
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@rc-component/trigger@1.18.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-jRLYgFgjLEPq3MvS87fIhcfuywFSRDaDrYw1FLku7Cm4esszvzTbA0JBsyacAyLrK9rF3TiHFcvoEDMzoD3CTA==}
+ /@rc-component/trigger@1.18.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Ksr25pXreYe1gX6ayZ1jLrOrl9OAUHUqnuhEx6MeHnNa1zVM5Y2Aj3Q35UrER0ns8D2cJYtmJtVli+i+4eKrvA==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
@@ -7279,22 +7136,22 @@ packages:
type-fest: 2.19.0
dev: false
- /@rjsf/antd@5.7.3(@ant-design/icons@4.8.1)(@rjsf/core@5.13.2)(@rjsf/utils@5.13.2)(antd@5.10.1)(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-5OwuFAlDlddsdmMguPZrx0FfO7UVK7jJqq+ego6PlSUIkvE9C8MMgEAG9fgcTCjdfqecocsKYOSlapCBsf08Bw==}
+ /@rjsf/antd@5.16.1(@ant-design/icons@5.2.6)(@rjsf/core@5.16.1)(@rjsf/utils@5.16.1)(antd@5.13.3)(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-bgv1wY44AxygeCrG31Rv9KtXz/R/vsD8PbSm9lyR4VwnqWPDiOSQCo0PyLHaS+hecU02bkR8D8+sCVZqeldolg==}
engines: {node: '>=14'}
peerDependencies:
- '@ant-design/icons': ^4.0.0
- '@rjsf/core': 5.7.x
- '@rjsf/utils': 5.7.x
- antd: ^4.0.0
+ '@ant-design/icons': ^4.0.0 || ^5.0.0
+ '@rjsf/core': ^5.16.x
+ '@rjsf/utils': ^5.16.x
+ antd: ^4.24.0 || ^5.8.5
dayjs: ^1.8.0
react: ^16.14.0 || >=17
dependencies:
- '@ant-design/icons': 4.8.1(react-dom@18.2.0)(react@18.2.0)
- '@rjsf/core': 5.13.2(@rjsf/utils@5.13.2)(react@18.2.0)
- '@rjsf/utils': 5.13.2(react@18.2.0)
- antd: 5.10.1(react-dom@18.2.0)(react@18.2.0)
- classnames: 2.3.2
+ '@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
+ '@rjsf/core': 5.16.1(@rjsf/utils@5.16.1)(react@18.2.0)
+ '@rjsf/utils': 5.16.1(react@18.2.0)
+ antd: 5.13.3(react-dom@18.2.0)(react@18.2.0)
+ classnames: 2.5.1
dayjs: 1.11.10
lodash: 4.17.21
lodash-es: 4.17.21
@@ -7304,24 +7161,24 @@ packages:
- react-dom
dev: false
- /@rjsf/core@5.13.2(@rjsf/utils@5.13.2)(react@18.2.0):
- resolution: {integrity: sha512-Zn6BCTk0v8iVV2rKOYa2F34Q2CMYFgindAnLFmZEGalwC35hP93L68q3cfhbHoHmtUdkjAyUaa2vua6LpgzfQw==}
+ /@rjsf/core@5.16.1(@rjsf/utils@5.16.1)(react@18.2.0):
+ resolution: {integrity: sha512-zIqm5aJ0CfpqsJXcJvIEoYZMfPa6hLqKSeOwwifuHSjznC6fbXPdmqnifBCPVy0GgMaDDWekZLfndk5W3ZO1YA==}
engines: {node: '>=14'}
peerDependencies:
- '@rjsf/utils': ^5.12.x
+ '@rjsf/utils': ^5.16.x
react: ^16.14.0 || >=17
dependencies:
- '@rjsf/utils': 5.13.2(react@18.2.0)
+ '@rjsf/utils': 5.16.1(react@18.2.0)
lodash: 4.17.21
lodash-es: 4.17.21
- markdown-to-jsx: 7.4.0(react@18.2.0)
+ markdown-to-jsx: 7.4.1(react@18.2.0)
nanoid: 3.3.7
prop-types: 15.8.1
react: 18.2.0
dev: false
- /@rjsf/utils@5.13.2(react@18.2.0):
- resolution: {integrity: sha512-iluvCOQDwZkp66RRZdIV3TgJnI+I2xv7Ks+UVqjO9lG8U9ygoWuH85zGPAojqapJUuC+frVRZsEBsTwGegDWIw==}
+ /@rjsf/utils@5.16.1(react@18.2.0):
+ resolution: {integrity: sha512-zJ8WopscMl46QBjlIalIoPERs7kgSfUwIZ5zx4OMBRp0O+m7Scx0F+4iHqLnRuHEfaCNA5D7IKxmx1whOG/x1Q==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.14.0 || >=17
@@ -7334,13 +7191,13 @@ packages:
react-is: 18.2.0
dev: false
- /@rjsf/validator-ajv8@5.8.2(@rjsf/utils@5.13.2):
- resolution: {integrity: sha512-Rahn2D0iXVPkadpgQ12HmEocnTNg6QVy2sqmBfpXV8jYQHKZMpk4llEHw0FTjuBN8jMusKcdWYN4Dp/fLPHESQ==}
+ /@rjsf/validator-ajv8@5.16.1(@rjsf/utils@5.16.1):
+ resolution: {integrity: sha512-4aYZU5+7q/9eFVzaUFTjsfVwlM0ku/BmHse9a1F87skiVRV6pv30z3B3fEUJ7zZMOGFwviYF60Tb3mr2KQ5GSg==}
engines: {node: '>=14'}
peerDependencies:
- '@rjsf/utils': ^5.8.x
+ '@rjsf/utils': ^5.16.x
dependencies:
- '@rjsf/utils': 5.13.2(react@18.2.0)
+ '@rjsf/utils': 5.16.1(react@18.2.0)
ajv: 8.12.0
ajv-formats: 2.1.1(ajv@8.12.0)
lodash: 4.17.21
@@ -7385,121 +7242,61 @@ packages:
dependencies:
'@sinonjs/commons': 3.0.1
- /@storybook/addon-actions@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-GieD3ru6EslKvwol1cE4lvszQCLB/AkQdnLofnqy1nnYso+hRxmPAw9/O+pWfpUBFdjXsQ7GX09+wEUpOJzepw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-actions@7.6.11:
+ resolution: {integrity: sha512-HdL1p4mKVnomr72vQKd1G4F5BeFXxEYTwJdUXg0slX+q2vPhsNHzvCiYapdtzkRfbxhW75Y2WP6EJ7K55DelVw==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.5.1
+ '@storybook/core-events': 7.6.11
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@types/uuid': 9.0.8
dequal: 2.0.3
- lodash: 4.17.21
polished: 4.2.2
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-inspector: 6.0.2(react@18.2.0)
- telejson: 7.2.0
- ts-dedent: 2.2.0
uuid: 9.0.1
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
dev: true
- /@storybook/addon-backgrounds@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-XZoyJw/WoUlVvQHPTbSAZjKy2SEUjaSmAWgcRync25vp+q0obthjx6UnZHEUuH8Ud07HA3FYzlFtMicH5y/OIQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-backgrounds@7.6.11:
+ resolution: {integrity: sha512-Tzgn5AqNFcehPNeohrY4fJsCFjux2GnJQDHKWt/jeAtkbDVUd4VOZBxR6SMEnuLOsR3tywJh7tf2PgRNCc1hzw==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.5.1
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
dev: true
- /@storybook/addon-controls@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Xag1e7TZo04LjUenfobkShpKMxTtwa4xM4bXQA8LjaAGZQ7jipbQ4PE73a17K59S2vqq89VAhkuMJWiyaOFqpw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-controls@7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-zoj9rkoUoZN+SWJ7v6rUTGyZKAXbKB6OqvgOCHMPV8W6Fro6JbwIDReiLs477yyxDQb0gsRV/akicG8EqBwyJQ==}
dependencies:
- '@storybook/blocks': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 7.5.1
- '@storybook/core-events': 7.5.1
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 7.5.1
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@storybook/blocks': 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
- encoding
+ - react
+ - react-dom
- supports-color
dev: true
- /@storybook/addon-docs@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-+wE67oWIhGK9+kv2sxoY2KDXm3v62RfEgxiksdhtffTP/joOK3p88S0lO+8g0G4xfNGUnBhPtzGMuUxWwaH2Pw==}
+ /@storybook/addon-docs@7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-q9/cJ9+NgMrCjbfc0W0DH5VuKlyUkmBXgp7Vp7pvncrltIfdDdmeK46xEo7zKKisTXpH7YCmaFZFpiMRtWZ3oQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@jest/transform': 29.7.0
'@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/csf-plugin': 7.5.1
- '@storybook/csf-tools': 7.5.1
+ '@storybook/blocks': 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.11
+ '@storybook/components': 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/csf-plugin': 7.6.11
+ '@storybook/csf-tools': 7.6.11
'@storybook/global': 5.0.0
'@storybook/mdx2-csf': 1.1.0
- '@storybook/node-logger': 7.5.1
- '@storybook/postinstall': 7.5.1
- '@storybook/preview-api': 7.5.1
- '@storybook/react-dom-shim': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@storybook/node-logger': 7.6.11
+ '@storybook/postinstall': 7.6.11
+ '@storybook/preview-api': 7.6.11
+ '@storybook/react-dom-shim': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.11
fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -7513,25 +7310,25 @@ packages:
- supports-color
dev: true
- /@storybook/addon-essentials@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-/jaUZXV+mE/2G5PgEpFKm4lFEHluWn6GFR/pg+hphvHOzBGA3Y75JMgUfJ5CDYHB1dAVSf9JrPOd8Eb1tpESfA==}
+ /@storybook/addon-essentials@7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-wHcs0Ar0Or3bMDU7338rhGq3Hl79S80vdcVpCxuNhb0KJtX4IoAID6nTbjLHGOAjjQgYBZJwOX7L0YMYvSxwsA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addon-actions': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-backgrounds': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-controls': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-docs': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-highlight': 7.5.1
- '@storybook/addon-measure': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-outline': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-toolbars': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-viewport': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 7.5.1
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 7.5.1
- '@storybook/preview-api': 7.5.1
+ '@storybook/addon-actions': 7.6.11
+ '@storybook/addon-backgrounds': 7.6.11
+ '@storybook/addon-controls': 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-highlight': 7.6.11
+ '@storybook/addon-measure': 7.6.11
+ '@storybook/addon-outline': 7.6.11
+ '@storybook/addon-toolbars': 7.6.11
+ '@storybook/addon-viewport': 7.6.11
+ '@storybook/core-common': 7.6.11
+ '@storybook/manager-api': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.6.11
+ '@storybook/preview-api': 7.6.11
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
@@ -7542,196 +7339,82 @@ packages:
- supports-color
dev: true
- /@storybook/addon-highlight@7.5.1:
- resolution: {integrity: sha512-js9OV17kpjRowuaGAPfI9aOn/zzt8P589ACZE+/eYBO9jT65CADwAUxg//Uq0/he+Ac9495pcK3BcYyDeym7/g==}
+ /@storybook/addon-highlight@7.6.11:
+ resolution: {integrity: sha512-/uR/k0xA4dj4E4MHRSxb9UHBslDG51V10x6We8cqpWPGMVd3qDDkR3DJg8Ix0CdRVsnSQFTv9+BkDH707v4nCQ==}
dependencies:
- '@storybook/core-events': 7.5.1
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.5.1
dev: true
- /@storybook/addon-interactions@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-m9yohFYil+UBwYKFxHYdsAsn8PBCPl6HY/FSgfrDc5PiqT1Ya7paXopimyy9ok+VQt/RC8sEWIm809ONEoxosw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-interactions@7.6.11:
+ resolution: {integrity: sha512-5/zYVCLMjdJ7KjFu/DCwHFF7GBKF922UPdbmqYgMMfSYPngdFRoI77QGfAVZC63w7FE4hBznFOMtv2kOM9J66g==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-common': 7.5.1
- '@storybook/core-events': 7.5.1
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 7.5.1
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@storybook/types': 7.6.11
jest-mock: 27.5.1
polished: 4.2.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
- - encoding
- - supports-color
dev: true
- /@storybook/addon-links@7.5.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-KDiQYAVNXxuVTB3QLFZxHlfT8q4KnlNKY+0OODvgD5o1FqFpIyUiR5mIBL4SZMRj2EtwrR3KmZ2UPccFZdu9vw==}
+ /@storybook/addon-links@7.6.11(react@18.2.0):
+ resolution: {integrity: sha512-iJgM1CvHw1ak9mXMRSQ9QuFtWbCPN3bxgL83/omCR4tqy+zb87c73O3pFQxNMkao3p2J/AQprm3MRicLF4ZWVA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
optional: true
- react-dom:
- optional: true
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/core-events': 7.5.1
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/router': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
- prop-types: 15.8.1
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-yR6oELJe0UHYxRijd1YMuGaQRlZ3uABjmrXaFCPnd6agahgTwIJLiK4XamtkVur//LaiJMvtmM2XXrkJ1BvNJw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-measure@7.6.11:
+ resolution: {integrity: sha512-0Tyf5HPHgXtPVgakdtPzY+YjOPSA3vr8aM3Z6Qbg1YhcC0Oh94VnhZNzMDkKbmIc7h7bPLxtmshdBjEImLjG0Q==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.5.1
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/types': 7.5.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
tiny-invariant: 1.3.1
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
dev: true
- /@storybook/addon-outline@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-IMi5Bo34/Q5YUG5uD8ZUTBwlpGrkDIV+PUgkyNIbmn9OgozoCH80Fs7YlGluRFODQISpHwio9qvSFRGdSNT56A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-outline@7.6.11:
+ resolution: {integrity: sha512-FryUAV2zN7A78RTo1pBz8NPt7JrbTp6AeS2VNjKiwq0V8SOWHEwTBE4ECW2rrNd53t3pJaD4SEh5xOTgJpH5uA==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.5.1
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/types': 7.5.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
dev: true
- /@storybook/addon-toolbars@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-T88hEEQicV6eCovr5TN2nFgKt7wU0o7pAunP5cU01iiVRj63+oQiVIBB8Xtm4tN+/DsqtyP0BTa6rFwt2ULy8A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
- dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
+ /@storybook/addon-toolbars@7.6.11:
+ resolution: {integrity: sha512-VTUR4xjLZFIAHJVzN999muEbnhRhs14tA4BpHTE4Xz9jvqGiKbbpT76k8iVy4hG6Rb1b6xY9K/uNy3W3elImKQ==}
dev: true
- /@storybook/addon-viewport@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-L57lOGB3LfKgAdLinaZojRQ9W9w2RC0iP9bVaXwrRVeJdpNayfuW4Kh1C8dmacZroB4Zp2U/nEjkSmdcp6uUWg==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- peerDependenciesMeta:
- react:
- optional: true
- react-dom:
- optional: true
+ /@storybook/addon-viewport@7.6.11:
+ resolution: {integrity: sha512-h0sa27uGs7d1yjEj4GrCilk6jp69jmYZ9fsvQkR3EAJh8k60MuJc9JvXNhH5/FdQtCzX+eJTn0vPkNFnoRRjHw==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.5.1
- '@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
memoizerific: 1.11.3
- prop-types: 15.8.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
dev: true
- /@storybook/blocks@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-7b69p6kDdgmlejEMM2mW6/Lz4OmU/R3Qr+TpKnPcV5iS7ADxRQEQCTEMoQ5RyLJf0vDRh/7Ljn/RMo8Ux3X7JA==}
+ /@storybook/blocks@7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Oq988/KB5/deUH10jy013K5IQRRetfjS4La2+/QeJxqQRvBf4CBycNab9DalHJkwboKBV8OBTw9sbQFU32AMuQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/channels': 7.5.1
- '@storybook/client-logger': 7.5.1
- '@storybook/components': 7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.5.1
+ '@storybook/channels': 7.6.11
+ '@storybook/client-logger': 7.6.11
+ '@storybook/components': 7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.6.11
'@storybook/csf': 0.1.2
- '@storybook/docs-tools': 7.5.1
+ '@storybook/docs-tools': 7.6.11
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.5.1
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
- '@types/lodash': 4.14.200
+ '@storybook/manager-api': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.6.11
+ '@storybook/theming': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.11
+ '@types/lodash': 4.14.202
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
- markdown-to-jsx: 7.4.0(react@18.2.0)
+ markdown-to-jsx: 7.4.1(react@18.2.0)
memoizerific: 1.11.3
polished: 4.2.2
react: 18.2.0
@@ -7748,13 +7431,13 @@ packages:
- supports-color
dev: true
- /@storybook/builder-manager@7.5.1:
- resolution: {integrity: sha512-a02kg/DCcYgiTz+7rw4KdvQzif+2lZ+NIFF5U5u8SDoCQuoe3wRT6QBrFYQTxJexA4WfO6cpyRLDJ1rx6NLo8A==}
+ /@storybook/builder-manager@7.6.11:
+ resolution: {integrity: sha512-cJW3jQbyQHFK83k6fcXiP0hcyBaRiSLBxcbt+ccu6r1Hb7RNo4NlmQQQZF2hTpcm6wNGI0mmkUzwMdfbKIiZ9A==}
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 7.5.1
- '@storybook/manager': 7.5.1
- '@storybook/node-logger': 7.5.1
+ '@storybook/core-common': 7.6.11
+ '@storybook/manager': 7.6.11
+ '@storybook/node-logger': 7.6.11
'@types/ejs': 3.1.5
'@types/find-cache-dir': 3.2.1
'@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20)
@@ -7772,8 +7455,8 @@ packages:
- supports-color
dev: true
- /@storybook/builder-vite@7.5.1(typescript@5.3.3)(vite@4.4.5):
- resolution: {integrity: sha512-fsF4LsxroVvjBJoI5AvRA6euhpYrb5euii5kPzrsWXLOn6gDBK0jQ0looep/io7J45MisDjRTPp14A02pi1bkw==}
+ /@storybook/builder-vite@7.6.11(typescript@5.3.3)(vite@4.5.2):
+ resolution: {integrity: sha512-XSZdrzSNOT7DQC/H4EVZvxbuahUuQ7JrmrzKzHIOTKuJpaK14JuCZBMJUHzBueVXFef2k+kXPJkIctufXL6vzw==}
peerDependencies:
'@preact/preset-vite': '*'
typescript: '>= 4.3.x'
@@ -7787,14 +7470,14 @@ packages:
vite-plugin-glimmerx:
optional: true
dependencies:
- '@storybook/channels': 7.5.1
- '@storybook/client-logger': 7.5.1
- '@storybook/core-common': 7.5.1
- '@storybook/csf-plugin': 7.5.1
- '@storybook/node-logger': 7.5.1
- '@storybook/preview': 7.5.1
- '@storybook/preview-api': 7.5.1
- '@storybook/types': 7.5.1
+ '@storybook/channels': 7.6.11
+ '@storybook/client-logger': 7.6.11
+ '@storybook/core-common': 7.6.11
+ '@storybook/csf-plugin': 7.6.11
+ '@storybook/node-logger': 7.6.11
+ '@storybook/preview': 7.6.11
+ '@storybook/preview-api': 7.6.11
+ '@storybook/types': 7.6.11
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
@@ -7804,39 +7487,39 @@ packages:
magic-string: 0.30.5
rollup: 3.29.4
typescript: 5.3.3
- vite: 4.4.5(@types/node@18.16.19)
+ vite: 4.5.2(@types/node@18.19.11)
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/channels@7.5.1:
- resolution: {integrity: sha512-7hTGHqvtdFTqRx8LuCznOpqPBYfUeMUt/0IIp7SFuZT585yMPxrYoaK//QmLEWnPb80B8HVTSQi7caUkJb32LA==}
+ /@storybook/channels@7.6.11:
+ resolution: {integrity: sha512-MtlffM4aZyCD5Npr+oT1aZvJmfDaFeHSTpIybGlmT4By+RgbxWDl/qWnqdo/VlqBWbtBASBtzqgLR/knC+5j1A==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/core-events': 7.5.1
+ '@storybook/client-logger': 7.6.11
+ '@storybook/core-events': 7.6.11
'@storybook/global': 5.0.0
qs: 6.11.2
telejson: 7.2.0
tiny-invariant: 1.3.1
dev: true
- /@storybook/cli@7.5.1:
- resolution: {integrity: sha512-qKIJs8gqXTy0eSEbt0OW5nsJqiV/2+N1eWoiBiIxoZ+8b0ACXIAUcE/N6AsEDUqIq8AMK7lebqjEfIAt2Sp7Mg==}
+ /@storybook/cli@7.6.11:
+ resolution: {integrity: sha512-ohKjys/amKuJllqBggF/VOaGNr6mnfXB8lYFXucBUGSyesWJJgaqKo6EAPnsp48EBU1xv0xlcg0655WCemvZcA==}
hasBin: true
dependencies:
- '@babel/core': 7.23.7
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
- '@babel/types': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
'@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 7.5.1
- '@storybook/core-common': 7.5.1
- '@storybook/core-events': 7.5.1
- '@storybook/core-server': 7.5.1
- '@storybook/csf-tools': 7.5.1
- '@storybook/node-logger': 7.5.1
- '@storybook/telemetry': 7.5.1
- '@storybook/types': 7.5.1
+ '@storybook/codemod': 7.6.11
+ '@storybook/core-common': 7.6.11
+ '@storybook/core-events': 7.6.11
+ '@storybook/core-server': 7.6.11
+ '@storybook/csf-tools': 7.6.11
+ '@storybook/node-logger': 7.6.11
+ '@storybook/telemetry': 7.6.11
+ '@storybook/types': 7.6.11
'@types/semver': 7.5.6
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
@@ -7853,7 +7536,7 @@ packages:
get-port: 5.1.1
giget: 1.2.1
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.23.8)
+ jscodeshift: 0.15.1(@babel/preset-env@7.23.9)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
@@ -7861,7 +7544,6 @@ packages:
puppeteer-core: 2.1.1
read-pkg-up: 7.0.1
semver: 7.5.4
- simple-update-notifier: 2.0.0
strip-json-comments: 3.1.1
tempy: 1.0.1
ts-dedent: 2.2.0
@@ -7873,26 +7555,26 @@ packages:
- utf-8-validate
dev: true
- /@storybook/client-logger@7.5.1:
- resolution: {integrity: sha512-XxbLvg0aQRoBrzxYLcVYCbjDkGbkU8Rfb74XbV2CLiO2bIbFPmA1l1Nwbp+wkCGA+O6Z1zwzSl6wcKKqZ6XZCg==}
+ /@storybook/client-logger@7.6.11:
+ resolution: {integrity: sha512-1FuC1Lf8TMjeKj4rE5fFt7j4zsWkQQlKPDgEw+AB72QDiiR33ZKajUkBkFvjmngMSMleR+uUeLY0DnmeZkvQhw==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/codemod@7.5.1:
- resolution: {integrity: sha512-PqHGOz/CZnRG9pWgshezCacu524CrXOJrCOwMUP9OMpH0Jk/NhBkHaBZrB8wMjn5hekTj0UmRa/EN8wJm9CCUQ==}
+ /@storybook/codemod@7.6.11:
+ resolution: {integrity: sha512-xOWXaCFOz22ZnlErxm9ZYmr5gGp1fp0q2iD1QOASFNYdnCRmw2TJ9MRrVNPBxlmlSvsD8zPUkWhiAmcTmOPF1A==}
dependencies:
- '@babel/core': 7.23.7
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
- '@babel/types': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
'@storybook/csf': 0.1.2
- '@storybook/csf-tools': 7.5.1
- '@storybook/node-logger': 7.5.1
- '@storybook/types': 7.5.1
+ '@storybook/csf-tools': 7.6.11
+ '@storybook/node-logger': 7.6.11
+ '@storybook/types': 7.6.11
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.14.0(@babel/preset-env@7.23.8)
+ jscodeshift: 0.15.1(@babel/preset-env@7.23.9)
lodash: 4.17.21
prettier: 2.8.8
recast: 0.23.4
@@ -7900,19 +7582,19 @@ packages:
- supports-color
dev: true
- /@storybook/components@7.5.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-fdzzxGBV/Fj9pYwfYL3RZsVUHeBqlfLMBP/L6mPmjaZSwHFqkaRZZUajZc57lCtI+TOy2gY6WH3cPavEtqtgLw==}
+ /@storybook/components@7.6.11(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ikGl5MQkWItEkLu5Y7MU1KpLI75BSUQcnAt3T/6P+HOHbUrCckEyQEvHUsf56s1hkmXOtUY5Cy8dWTH5+MxarQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.5.1
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.11
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@storybook/theming': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.11
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -7923,21 +7605,21 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/core-client@7.5.1:
- resolution: {integrity: sha512-K651UnNKkW8U078CH5rcUqf0siGcfEhwya2yQN5RBb/H78HSLBLdYgzKqxaKtmz+S8DFyWhrgbXZLdBjavozJg==}
+ /@storybook/core-client@7.6.11:
+ resolution: {integrity: sha512-QWK1Q5iMkfQZP40/DnaqRLrLqN1jxgKwk+kMGvtH/rhDKKa13NRuVh7Ka+WCfR5Kcl7xUQlZnWFMVz9rM41Epw==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/preview-api': 7.5.1
+ '@storybook/client-logger': 7.6.11
+ '@storybook/preview-api': 7.6.11
dev: true
- /@storybook/core-common@7.5.1:
- resolution: {integrity: sha512-/rQ0/xvxFHSGCgIkK74HrgDMnzfYtDYTCoSod/qCTojfs9aciX+JYgvo5ChPnI/LEKWwxRTkrE7pl2u5+C4XGA==}
+ /@storybook/core-common@7.6.11:
+ resolution: {integrity: sha512-hdmu+Oxj/Uold1Vasbs2741ChCJzFC5KvxuIuymwhjBlGsj7M5HWgtMujFY//S8G1TWPXnGf6ZK2Wj+F0gjXgw==}
dependencies:
- '@storybook/core-events': 7.5.1
- '@storybook/node-logger': 7.5.1
- '@storybook/types': 7.5.1
+ '@storybook/core-events': 7.6.11
+ '@storybook/node-logger': 7.6.11
+ '@storybook/types': 7.6.11
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
'@types/node-fetch': 2.6.11
'@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
@@ -7961,32 +7643,32 @@ packages:
- supports-color
dev: true
- /@storybook/core-events@7.5.1:
- resolution: {integrity: sha512-2eyaUhTfmEEqOEZVoCXVITCBn6N7QuZCG2UNxv0l//ED+7MuMiFhVw7kS7H3WOVk65R7gb8qbKFTNX8HFTgBHg==}
+ /@storybook/core-events@7.6.11:
+ resolution: {integrity: sha512-7Bg9hjIaZlHCAvoVjYCl7C+16ZVvciqC0hQhJCYYCVpiVYoXA1jAB6sE1gsaDeWYtzfkLHgQEytRj6Ot3e2rfQ==}
dependencies:
ts-dedent: 2.2.0
dev: true
- /@storybook/core-server@7.5.1:
- resolution: {integrity: sha512-DD4BXCH91aZJoFuu0cQwG1ZUmE59kG5pazuE3S89zH1GwKS1jWyeAv4EwEfvynT5Ah1ctd8QdCZCSXVzjq0qcw==}
+ /@storybook/core-server@7.6.11:
+ resolution: {integrity: sha512-ZUgWv372Z1FBI8MynBh1kR7pUE2dAZ/dAyxMd9NzoyW3IBjM/RCcoL2oSDmWs668idDgXL3z4SQqSpWOh0YMaQ==}
dependencies:
'@aw-web-design/x-default-browser': 1.4.126
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 7.5.1
- '@storybook/channels': 7.5.1
- '@storybook/core-common': 7.5.1
- '@storybook/core-events': 7.5.1
+ '@storybook/builder-manager': 7.6.11
+ '@storybook/channels': 7.6.11
+ '@storybook/core-common': 7.6.11
+ '@storybook/core-events': 7.6.11
'@storybook/csf': 0.1.2
- '@storybook/csf-tools': 7.5.1
+ '@storybook/csf-tools': 7.6.11
'@storybook/docs-mdx': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/manager': 7.5.1
- '@storybook/node-logger': 7.5.1
- '@storybook/preview-api': 7.5.1
- '@storybook/telemetry': 7.5.1
- '@storybook/types': 7.5.1
+ '@storybook/manager': 7.6.11
+ '@storybook/node-logger': 7.6.11
+ '@storybook/preview-api': 7.6.11
+ '@storybook/telemetry': 7.6.11
+ '@storybook/types': 7.6.11
'@types/detect-port': 1.3.5
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.6
better-opn: 3.0.2
@@ -8018,24 +7700,24 @@ packages:
- utf-8-validate
dev: true
- /@storybook/csf-plugin@7.5.1:
- resolution: {integrity: sha512-jhV2aCZhSIXUiQDcHtuCg3dyYMzjYHTwLb4cJtkNw4sXqQoTGydTSWYwWigcHFfKGoyQp82rSgE1hE4YYx6iew==}
+ /@storybook/csf-plugin@7.6.11:
+ resolution: {integrity: sha512-99K1TMUnJ4gKwcnxii5wQnc2mw07GfWivEIcrHj7gpNLFSWt4MxWfNBGtnuY8gk43fRD0NLaKscKTADrL+q72Q==}
dependencies:
- '@storybook/csf-tools': 7.5.1
+ '@storybook/csf-tools': 7.6.11
unplugin: 1.6.0
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/csf-tools@7.5.1:
- resolution: {integrity: sha512-YChGbT1/odLS4RLb2HtK7ixM7mH5s7G5nOsWGKXalbza4SFKZIU2UzllEUsA+X8YfxMHnCD5TC3xLfK0ByxmzQ==}
+ /@storybook/csf-tools@7.6.11:
+ resolution: {integrity: sha512-S0dwjhfEWaRm41Illqzvj9VCiQ9NsSQA6pjIbK1GRMpFvL5+uaXQ08YYgnVPLs6Qhe98V0v1uUdZ7Y1HXdt1Og==}
dependencies:
'@babel/generator': 7.23.6
- '@babel/parser': 7.23.6
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
'@storybook/csf': 0.1.2
- '@storybook/types': 7.5.1
+ '@storybook/types': 7.6.11
fs-extra: 11.2.0
recast: 0.23.4
ts-dedent: 2.2.0
@@ -8059,13 +7741,14 @@ packages:
resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
dev: true
- /@storybook/docs-tools@7.5.1:
- resolution: {integrity: sha512-tDtQGeKU5Kc2XoqZ5vpeGQrOkRg2UoDiSRS6cLy+M/sMB03Annq0ZngnJXaMiv0DLi2zpWSgWqPgYA3TJTZHBw==}
+ /@storybook/docs-tools@7.6.11:
+ resolution: {integrity: sha512-totR3O0hF+TIiL6AXH/X+wBu+B0PO5qFSOWFjTioEuI8iA1k6hDvCvt4NfgPGMW2o3ynukjmryyB+khd0QjlaA==}
dependencies:
- '@storybook/core-common': 7.5.1
- '@storybook/preview-api': 7.5.1
- '@storybook/types': 7.5.1
+ '@storybook/core-common': 7.6.11
+ '@storybook/preview-api': 7.6.11
+ '@storybook/types': 7.6.11
'@types/doctrine': 0.0.3
+ assert: 2.1.0
doctrine: 3.0.0
lodash: 4.17.21
transitivePeerDependencies:
@@ -8077,66 +7760,53 @@ packages:
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
dev: true
- /@storybook/instrumenter@7.5.1:
- resolution: {integrity: sha512-bxRoWVVLlevqTFappXj1JfZlvEceBiBPdQQqTTeeA09VL3UyFWDpPFRn8Wf2C43Vt4V18w+krMyb1KfTk37ROQ==}
- dependencies:
- '@storybook/channels': 7.5.1
- '@storybook/client-logger': 7.5.1
- '@storybook/core-events': 7.5.1
- '@storybook/global': 5.0.0
- '@storybook/preview-api': 7.5.1
- dev: true
-
- /@storybook/manager-api@7.5.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ygwJywluhhE1dpA0jC2D/3NFhMXzFCt+iW4m3cOwexYTuiDWF66AbGOFBx9peE7Wk/Z9doKkf9E3v11enwaidA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ /@storybook/manager-api@7.6.11(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-lr+0HXP+O9zN5mGixrlWfIM6fuPAwHEc4vIgA3MG14zIhlznfZStbLp0n5rRHxvyXnkJbcPtNDCi2CKgWN7++w==}
dependencies:
- '@storybook/channels': 7.5.1
- '@storybook/client-logger': 7.5.1
- '@storybook/core-events': 7.5.1
+ '@storybook/channels': 7.6.11
+ '@storybook/client-logger': 7.6.11
+ '@storybook/core-events': 7.6.11
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/router': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@storybook/router': 7.6.11
+ '@storybook/theming': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.11
dequal: 2.0.3
lodash: 4.17.21
- memoizerific: 1.11.3
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- semver: 7.5.4
+ memoizerific: 1.11.3
store2: 2.14.2
telejson: 7.2.0
ts-dedent: 2.2.0
+ transitivePeerDependencies:
+ - react
+ - react-dom
dev: true
- /@storybook/manager@7.5.1:
- resolution: {integrity: sha512-Jo83sj7KvsZ78vvqjH72ErmQ31Frx6GBLbpeYXZtbAXWl0/LHsxAEVz0Mke+DixzWDyP0/cn+Nw8QUfA+Oz1fg==}
+ /@storybook/manager@7.6.11:
+ resolution: {integrity: sha512-OtJuRwnkwnXbiKrzZ31tWUo6sOps/idRFoWnxITnoeS/NCq4bHuRtPor2bbHmFDL1mFX+zQuwqVME6eMkQxavQ==}
dev: true
/@storybook/mdx2-csf@1.1.0:
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
dev: true
- /@storybook/node-logger@7.5.1:
- resolution: {integrity: sha512-xRMdL5YPe8C9sgJ1R0QD3YbiLjDGrfQk91+GplRD8N9FVCT5dki55Bv5Kp0FpemLYYg6uxAZL5nHmsZHKDKQoA==}
+ /@storybook/node-logger@7.6.11:
+ resolution: {integrity: sha512-3vFUWcRVfYkMzTO/FiNap2CIvMonz1gVISYIxRHQv32hF+VNmeMb1t7AzWb1zxZIOZp+bdMmCPR4UfVg5EJw8w==}
dev: true
- /@storybook/postinstall@7.5.1:
- resolution: {integrity: sha512-+LFUe2nNbmmLPKNt34RXSSC1r40yGGOoP/qlaPFwNOgQN2AZUrfqk6ZYnw6LjmcuHpQInZ4y4WDgbzg6QQL3+w==}
+ /@storybook/postinstall@7.6.11:
+ resolution: {integrity: sha512-NNhOVeUvgcHqSUm2DtHrbfZtLuliW/iXh32AY+04lsNIlwVLAhjfWtubqoVcHUOD+4CV/6oBnyudEgslv9Bo0w==}
dev: true
- /@storybook/preview-api@7.5.1:
- resolution: {integrity: sha512-8xjUbuGmHLmw8tfTUCjXSvMM9r96JaexPFmHdwW6XLe71KKdWp8u96vRDRE5648cd+/of15OjaRtakRKqluA/A==}
+ /@storybook/preview-api@7.6.11:
+ resolution: {integrity: sha512-y9+gAbeS26/hEBkaF9abxfkzKJhgLtVaz1f5rhUMYdmBotq433J97dzfTSDtJA9cvA9Jw4QEKksY8TiSenZ3Pw==}
dependencies:
- '@storybook/channels': 7.5.1
- '@storybook/client-logger': 7.5.1
- '@storybook/core-events': 7.5.1
+ '@storybook/channels': 7.6.11
+ '@storybook/client-logger': 7.6.11
+ '@storybook/core-events': 7.6.11
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/types': 7.5.1
+ '@storybook/types': 7.6.11
'@types/qs': 6.9.11
dequal: 2.0.3
lodash: 4.17.21
@@ -8147,12 +7817,12 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/preview@7.5.1:
- resolution: {integrity: sha512-nfZC103z9Cy27FrJKUr2IjDuVt8Mvn1Z5gZ0TtJihoK7sfLTv29nd/XU9zzrb/epM3o8UEzc63xZZsMaToDbAw==}
+ /@storybook/preview@7.6.11:
+ resolution: {integrity: sha512-DrCH24K3ivm7YGSP6OQknJg7i7vdzZnxhByQ3aC1OWcYVhdjtATrKfnHGkY/aDpNi1hUeGCQb0TKDpbMLzI8qQ==}
dev: true
- /@storybook/react-dom-shim@7.5.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-bzTIfLm91O9h3rPYJLtRbmsPARerY3z7MoyvadGp8TikvIvf+WyT/vHujw+20SxnqiZVq5Jv65FFlxc46GGB1Q==}
+ /@storybook/react-dom-shim@7.6.11(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-jRW8IIgFSKHDTvlX6y8slYZPJftu1++HzoceBT0Taru5aEd86dBAHGMYVsDRDYK9ruNbagsTgJbplO/+M7WAQg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -8161,24 +7831,24 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/react-vite@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.4.5):
- resolution: {integrity: sha512-996/CtOqTjDWMKBGcHG8pwIVlORnoknLD+OTkPXl+aAl9oM9jUtc7psVKLJKGHSHTlVElM2wMTwIHnJ4yeP7bw==}
+ /@storybook/react-vite@7.6.11(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@4.5.2):
+ resolution: {integrity: sha512-ss4scLRjstJiHhG9c5YDZMzeP4Gx5iuuQcS3lbMfauVpqBX2kJCy2G/F1mGUObWGNv15jqZtGJDCPuRO1OLPVQ==}
engines: {node: '>=16'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.3.3)(vite@4.4.5)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.3.3)(vite@4.5.2)
'@rollup/pluginutils': 5.1.0
- '@storybook/builder-vite': 7.5.1(typescript@5.3.3)(vite@4.4.5)
- '@storybook/react': 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
- '@vitejs/plugin-react': 3.1.0(vite@4.4.5)
+ '@storybook/builder-vite': 7.6.11(typescript@5.3.3)(vite@4.5.2)
+ '@storybook/react': 7.6.11(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@vitejs/plugin-react': 3.1.0(vite@4.5.2)
magic-string: 0.30.5
react: 18.2.0
- react-docgen: 6.0.4
+ react-docgen: 7.0.3
react-dom: 18.2.0(react@18.2.0)
- vite: 4.4.5(@types/node@18.16.19)
+ vite: 4.5.2(@types/node@18.19.11)
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -8188,8 +7858,8 @@ packages:
- vite-plugin-glimmerx
dev: true
- /@storybook/react@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
- resolution: {integrity: sha512-IG97c30fFSmPyGpJ1awHC/+9XnCTqleeOQwROXjroMHSm8m/JTWpHMVLyM1x7b6VAnBhNHWJ+oXLZe/hXkXfpA==}
+ /@storybook/react@7.6.11(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-q2YPizNtL5DKeGATE6cKUbT/uvRbOJOUfb+VW/Z7O9MkrAgYFC0ybiZHOgT48Ifog99VoKv9l7fkfCVIY5klfw==}
engines: {node: '>=16.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -8199,16 +7869,16 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/core-client': 7.5.1
- '@storybook/docs-tools': 7.5.1
+ '@storybook/client-logger': 7.6.11
+ '@storybook/core-client': 7.6.11
+ '@storybook/docs-tools': 7.6.11
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.5.1
- '@storybook/react-dom-shim': 7.5.1(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.5.1
+ '@storybook/preview-api': 7.6.11
+ '@storybook/react-dom-shim': 7.6.11(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.11
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -8228,25 +7898,20 @@ packages:
- supports-color
dev: true
- /@storybook/router@7.5.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-BvKo+IxWwo3dfIG1+vLtZLT4qqkNHL5GTIozTyX04uqt9ByYZL6SJEzxEa1Xn6Qq/fbdQwzCanNHbTlwiTMf7Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ /@storybook/router@7.6.11:
+ resolution: {integrity: sha512-d6Jcy3ca/Vod4C7RmaVpxY3/gRLF3MxbV4KnLEvMeRtdHnGYCOLLIC/nwBTf2A5iCjbmxDheeWNE9G01wnN8Kw==}
dependencies:
- '@storybook/client-logger': 7.5.1
+ '@storybook/client-logger': 7.6.11
memoizerific: 1.11.3
qs: 6.11.2
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/telemetry@7.5.1:
- resolution: {integrity: sha512-z9PGouNqvZ2F7vD79qDF4PN7iW3kE3MO7YX0iKTmzgLi4ImKuXIJRF04GRH8r+WYghnbomAyA4o6z9YJMdNuVw==}
+ /@storybook/telemetry@7.6.11:
+ resolution: {integrity: sha512-i5HaKVXgpdVf38c42EVUeUM2HC7RuL/HDck1YX+Ir1IT6Id4e/3Ji1tAqGIHP5rwR2kUeT5s9vey9Il0GGIOkQ==}
dependencies:
- '@storybook/client-logger': 7.5.1
- '@storybook/core-common': 7.5.1
- '@storybook/csf-tools': 7.5.1
+ '@storybook/client-logger': 7.6.11
+ '@storybook/core-common': 7.6.11
+ '@storybook/csf-tools': 7.6.11
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -8265,24 +7930,24 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/theming@7.5.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ETLAOn10hI4Mkmjsr0HGcM6HbzaURrrPBYmfXOrdbrzEVN+AHW4FlvP9d8fYyP1gdjPE1F39XvF0jYgt1zXiHQ==}
+ /@storybook/theming@7.6.11(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-emfkWAkR0zul/374GmbEniUDHJ27VcrioZAm+TKhiYHAwwklA+SizERLtApXs2yc2zYbHFW/r/myaNWRt6LSww==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
- '@storybook/client-logger': 7.5.1
+ '@storybook/client-logger': 7.6.11
'@storybook/global': 5.0.0
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/types@7.5.1:
- resolution: {integrity: sha512-ZcMSaqFNx1E+G00nRDUi8kKL7gxJVlnCvbKLNj3V85guy4DkIYAZr31yDqze07gDWbjvKoHIp3tKpgE+2i8upQ==}
+ /@storybook/types@7.6.11:
+ resolution: {integrity: sha512-IjkOx8swVpFAR/t1IgjAEozaMGLcQAP1e7SnTuwNsa1wcXKQOd3+hhyPjS1ZukULXN7IXW8UIDvhP3hXoRYxVQ==}
dependencies:
- '@storybook/channels': 7.5.1
+ '@storybook/channels': 7.6.11
'@types/babel__core': 7.20.5
'@types/express': 4.17.21
file-system-cache: 2.3.0
@@ -8295,108 +7960,108 @@ packages:
postcss: '>=7.0.0'
postcss-syntax: '>=0.36.2'
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.6
postcss: 8.4.33
postcss-syntax: 0.36.2(postcss-less@6.0.0)(postcss@8.4.33)
transitivePeerDependencies:
- supports-color
dev: false
- /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.7):
+ /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.9):
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: false
- /@svgr/babel-preset@6.5.1(@babel/core@7.23.7):
+ /@svgr/babel-preset@6.5.1(@babel/core@7.23.9):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.7)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.7)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.7)
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.7)
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.7)
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.7)
- '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.9)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.9)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.9)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.9)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.9)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.9)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.9)
dev: false
/@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.7
- '@svgr/babel-preset': 6.5.1(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.23.9)
'@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
@@ -8408,7 +8073,7 @@ packages:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
entities: 4.5.0
dev: false
@@ -8418,8 +8083,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.23.7
- '@svgr/babel-preset': 6.5.1(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.23.9)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -8439,8 +8104,8 @@ packages:
svgo: 2.8.0
dev: false
- /@swc/core-darwin-arm64@1.3.105:
- resolution: {integrity: sha512-buWeweLVDXXmcnfIemH4PGnpjwsDTUGitnPchdftb0u1FU8zSSP/lw/pUCBDG/XvWAp7c/aFxgN4CyG0j7eayA==}
+ /@swc/core-darwin-arm64@1.3.107:
+ resolution: {integrity: sha512-47tD/5vSXWxPd0j/ZllyQUg4bqalbQTsmqSw0J4dDdS82MWqCAwUErUrAZPRjBkjNQ6Kmrf5rpCWaGTtPw+ngw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -8448,8 +8113,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.3.105:
- resolution: {integrity: sha512-hFmXPApqjA/8sy/9NpljHVaKi1OvL9QkJ2MbbTCCbJERuHMpMUeMBUWipHRfepGHFhU+9B9zkEup/qJaJR4XIg==}
+ /@swc/core-darwin-x64@1.3.107:
+ resolution: {integrity: sha512-hwiLJ2ulNkBGAh1m1eTfeY1417OAYbRGcb/iGsJ+LuVLvKAhU/itzsl535CvcwAlt2LayeCFfcI8gdeOLeZa9A==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -8457,8 +8122,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.105:
- resolution: {integrity: sha512-mwXyMC41oMKkKrPpL8uJpOxw7fyfQoVtIw3Y5p0Blabk+espNYqix0E8VymHdRKuLmM//z5wVmMsuHdGBHvZeg==}
+ /@swc/core-linux-arm-gnueabihf@1.3.107:
+ resolution: {integrity: sha512-I2wzcC0KXqh0OwymCmYwNRgZ9nxX7DWnOOStJXV3pS0uB83TXAkmqd7wvMBuIl9qu4Hfomi9aDM7IlEEn9tumQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -8466,8 +8131,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.105:
- resolution: {integrity: sha512-H7yEIVydnUtqBSUxwmO6vpIQn7j+Rr0DF6ZOORPyd/SFzQJK9cJRtmJQ3ZMzlJ1Bb+1gr3MvjgLEnmyCYEm2Hg==}
+ /@swc/core-linux-arm64-gnu@1.3.107:
+ resolution: {integrity: sha512-HWgnn7JORYlOYnGsdunpSF8A+BCZKPLzLtEUA27/M/ZuANcMZabKL9Zurt7XQXq888uJFAt98Gy+59PU90aHKg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -8476,8 +8141,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.105:
- resolution: {integrity: sha512-Jg7RTFT3pGFdGt5elPV6oDkinRy7q9cXpenjXnJnM2uvx3jOwnsAhexPyCDHom8SHL0j+9kaLLC66T3Gz1E4UA==}
+ /@swc/core-linux-arm64-musl@1.3.107:
+ resolution: {integrity: sha512-vfPF74cWfAm8hyhS8yvYI94ucMHIo8xIYU+oFOW9uvDlGQRgnUf/6DEVbLyt/3yfX5723Ln57U8uiMALbX5Pyw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -8486,8 +8151,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.105:
- resolution: {integrity: sha512-DJghplpyusAmp1X5pW/y93MmS/u83Sx5GrpJxI6KLPa82+NItTgMcl8KBQmW5GYAJpVKZyaIvBanS5TdR8aN2w==}
+ /@swc/core-linux-x64-gnu@1.3.107:
+ resolution: {integrity: sha512-uBVNhIg0ip8rH9OnOsCARUFZ3Mq3tbPHxtmWk9uAa5u8jQwGWeBx5+nTHpDOVd3YxKb6+5xDEI/edeeLpha/9g==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -8496,8 +8161,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.3.105:
- resolution: {integrity: sha512-wD5jL2dZH/5nPNssBo6jhOvkI0lmWnVR4vnOXWjuXgjq1S0AJpO5jdre/6pYLmf26hft3M42bteDnjR4AAZ38w==}
+ /@swc/core-linux-x64-musl@1.3.107:
+ resolution: {integrity: sha512-mvACkUvzSIB12q1H5JtabWATbk3AG+pQgXEN95AmEX2ZA5gbP9+B+mijsg7Sd/3tboHr7ZHLz/q3SHTvdFJrEw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -8506,8 +8171,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc@1.3.105:
- resolution: {integrity: sha512-UqJtwILUHRw2+3UTPnRkZrzM/bGdQtbR4UFdp79mZQYfryeOUVNg7aJj/bWUTkKtLiZ3o+FBNrM/x2X1mJX5bA==}
+ /@swc/core-win32-arm64-msvc@1.3.107:
+ resolution: {integrity: sha512-J3P14Ngy/1qtapzbguEH41kY109t6DFxfbK4Ntz9dOWNuVY3o9/RTB841ctnJk0ZHEG+BjfCJjsD2n8H5HcaOA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -8515,8 +8180,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.3.105:
- resolution: {integrity: sha512-Z95C6vZgBEJ1snidYyjVKnVWiy/ZpPiIFIXGWkDr4ZyBgL3eZX12M6LzZ+NApHKffrbO4enbFyFomueBQgS2oA==}
+ /@swc/core-win32-ia32-msvc@1.3.107:
+ resolution: {integrity: sha512-ZBUtgyjTHlz8TPJh7kfwwwFma+ktr6OccB1oXC8fMSopD0AxVnQasgun3l3099wIsAB9eEsJDQ/3lDkOLs1gBA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -8524,8 +8189,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.105:
- resolution: {integrity: sha512-3J8fkyDPFsS3mszuYUY4Wfk7/B2oio9qXUwF3DzOs2MK+XgdyMLIptIxL7gdfitXJBH8k39uVjrIw1JGJDjyFA==}
+ /@swc/core-win32-x64-msvc@1.3.107:
+ resolution: {integrity: sha512-Eyzo2XRqWOxqhE1gk9h7LWmUf4Bp4Xn2Ttb0ayAXFp6YSTxQIThXcT9kipXZqcpxcmDwoq8iWbbf2P8XL743EA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -8533,8 +8198,8 @@ packages:
dev: true
optional: true
- /@swc/core@1.3.105:
- resolution: {integrity: sha512-me2VZyr3OjqRpFrYQJJYy7x/zbFSl9nt+MAGnIcBtjDsN00iTVqEaKxBjPBFQV9BDAgPz2SRWes/DhhVm5SmMw==}
+ /@swc/core@1.3.107:
+ resolution: {integrity: sha512-zKhqDyFcTsyLIYK1iEmavljZnf4CCor5pF52UzLAz4B6Nu/4GLU+2LQVAf+oRHjusG39PTPjd2AlRT3f3QWfsQ==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -8546,16 +8211,16 @@ packages:
'@swc/counter': 0.1.2
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.105
- '@swc/core-darwin-x64': 1.3.105
- '@swc/core-linux-arm-gnueabihf': 1.3.105
- '@swc/core-linux-arm64-gnu': 1.3.105
- '@swc/core-linux-arm64-musl': 1.3.105
- '@swc/core-linux-x64-gnu': 1.3.105
- '@swc/core-linux-x64-musl': 1.3.105
- '@swc/core-win32-arm64-msvc': 1.3.105
- '@swc/core-win32-ia32-msvc': 1.3.105
- '@swc/core-win32-x64-msvc': 1.3.105
+ '@swc/core-darwin-arm64': 1.3.107
+ '@swc/core-darwin-x64': 1.3.107
+ '@swc/core-linux-arm-gnueabihf': 1.3.107
+ '@swc/core-linux-arm64-gnu': 1.3.107
+ '@swc/core-linux-arm64-musl': 1.3.107
+ '@swc/core-linux-x64-gnu': 1.3.107
+ '@swc/core-linux-x64-musl': 1.3.107
+ '@swc/core-win32-arm64-msvc': 1.3.107
+ '@swc/core-win32-ia32-msvc': 1.3.107
+ '@swc/core-win32-x64-msvc': 1.3.107
dev: true
/@swc/counter@0.1.2:
@@ -8578,7 +8243,7 @@ packages:
engines: {node: '>=14'}
dependencies:
'@babel/code-frame': 7.23.5
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@types/aria-query': 5.0.4
aria-query: 5.1.3
chalk: 4.1.2
@@ -8596,265 +8261,265 @@ packages:
'@testing-library/dom': 9.3.4
dev: true
- /@tiptap/core@2.1.11(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-1W2DdjpPwfphHgQ3Qm4s5wzCnEjiXm1TeZ+6/zBl89yKURXgv8Mw1JGdj/NcImQjtDcsNn97MscACK3GKbEJBA==}
+ /@tiptap/core@2.2.0(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-ped7XlQ9k5VyE2xUwyRegn1yVF/CAsaF+riBUBJ9+71/gSo2mCZ+6gQvee+LVN1+rD1qN/vWgKhKNDVaU+VaFg==}
peerDependencies:
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/pm': 2.1.11
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-blockquote@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-1OMk8cBrL0VnbnzD3XHx7U4oMDCiXRR7Spfl9JqwC9pS4RosOUBySNxpEBwhSegB0pK6sd7m44qLqj00If+cHA==}
+ /@tiptap/extension-blockquote@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-zINqjH/Kb0qiDxb4ndlruN/g5ZDt+Og2QTyrYGs27xoNmFoHez0Xqi+ID5yFSYBSCGkf0GeNMqW9LjfiCObvww==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-bold@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-gz2VrBkRRsGBiOHx1qB++VUfpuRdhJp6jlgNqqHFbIkjKr2NB+u7oiH5SbjlL4eG0wlam1QA4jAkXhZgdvkA4g==}
+ /@tiptap/extension-bold@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-GlrI0FzUSzYhXoYbctcXALbyc22uKfZ0nv1k0qTw8qkKbWsz6qT/rm+rcB2YgugW3r6cu5n5HDQbzbgjapNAEA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-bubble-menu@2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-MwKCmu2kU7+Xln/BvlrolU2hCXgoCoTr4NXJ+3v8A9w7tIq8leADoWacfEee2t3VNnGdXw/Xjza+DAr77JWjGg==}
+ /@tiptap/extension-bubble-menu@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-ukwFb9wbwA/GkM7wGGv/ScKRBn4QSZkNzObhU6TgDKISjo1b7gGaUdC6gPoAFtQamCOCL8559PJIXXJ4wtL5/w==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
tippy.js: 6.3.7
dev: false
- /@tiptap/extension-bullet-list@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-Cheaep5JShO9TtRslrOObSVKtRQFKozou2ZWDas5sIeef/A/GWPfVTzusfBGE/ItHwZNaDXwJOoVnSUPT8ulfw==}
+ /@tiptap/extension-bullet-list@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-V/jVw5g1c7EIKo+44Rw1WeQ9NUzXjtecnCclDALXOlhZ3Kz+a6mBOkuMSeoZhlH0sZ7Cq5u4W+64IuDOstA9yg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-code-block@2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-IspVmwg17Vx59W8lEIbVRIeMscJtRCdsif45CkzVv1uSHMl7tmrJh3n8vv/vrB+rnLasQrOEbEKNEqUL3eHlKQ==}
+ /@tiptap/extension-code-block@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-e+5cZUDJwi405eG1n6A5k8d1B99UGnD2JomoXYwL+YglbJcIuaeGQhx+Re7lTX582z7JO4ViWxVaKZJ3iINaFw==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-code@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-2+fVfh3qQORgMRSZ6hn+yW5/rLzlulCzMhdL07G0lWY8/eWEv3p9DCfgw9AOHrrHFim8/MVWyRkrkBM/yHX9FA==}
+ /@tiptap/extension-code@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-SqAoJFuwqMzxyaKoULxEgo0e0fJjr/iOLQbnPSQEOuhgVaqRsaBSS3dbxgm94Gt29P7YPZ6IMqLSv/QZQzyjXw==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-color@2.1.11(@tiptap/core@2.1.11)(@tiptap/extension-text-style@2.1.11):
- resolution: {integrity: sha512-xfSfZRnNd40YtFfrXvzpGa2OZsRAZapq0Ce09q7bCEpudhiD7yIIVOjOjggagllOFnafKTwKkFaDLIA0K0eIwg==}
+ /@tiptap/extension-color@2.2.0(@tiptap/core@2.2.0)(@tiptap/extension-text-style@2.2.0):
+ resolution: {integrity: sha512-G8B8jLhlVOoyO0rSUFj/CTZRKCN4x5sAY0SodprurNwkxWpS0VqgKy+QDZFs36jHD4ZouY++fEGEU8MMhWmpdA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/extension-text-style': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/extension-text-style': 2.1.11(@tiptap/core@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/extension-text-style': 2.2.0(@tiptap/core@2.2.0)
dev: false
- /@tiptap/extension-document@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-VSOrzGnpI9dJDffFn3ZjmPKYkH/YtYeDl6nqLu7TafRqyLMSEqxxxq/+Qs/7j8jbzq6osslY0sySckSulroIOg==}
+ /@tiptap/extension-document@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-P21yqZP8DQQ03Q84jO4l73XPswCqjCPb318/eSdovF7m7xXcY55HkHtWU5Fvt/KJxhwvG6WWGmvoox9/bDW0DQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-dropcursor@2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-voWEIAmxV3f9Q0gc3K89HRq8KFeOVtHJBRHYihZwxMnvq2aMIwdpCx0GbiCd4slQaBLd1ASJHz1uAigVhR2+uA==}
+ /@tiptap/extension-dropcursor@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-7OfGn/EmDp3IN+OyjlFrgeO/GfmBZXMzwW/yWl+42ulhWItqeQ1qmApxOAj1zWes0hbVcULZXIpw3alfTvfPOA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-floating-menu@2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-VBT4HBhkKr9S1VExyTb/qfQyZ5F0VJLasUoH8E4kdq3deCeifmTTIOukuXK5QbicFHVQmY2epeU6+w5c/bAcHQ==}
+ /@tiptap/extension-floating-menu@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-psvRz/69Q/DnVHABYwMKlZv2C6AuLmcQQKTrEBHZKz7OX6E3pLveRVIjaetFg8jci8ZeNMPupKmeLzBVuN8U2A==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
tippy.js: 6.3.7
dev: false
- /@tiptap/extension-gapcursor@2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-Bgjo0da0W1QOhtnT3NR7GHPmVBZykNRekNGsTA3+nxCjkqh1G32Jt58TBKP3vdLBaww3lhrii0SYVErlFgIJnA==}
+ /@tiptap/extension-gapcursor@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-FsIoLA2xC1tUCK2cw5jWOKlwYNZgex3puMRwQaZjbph2oz8Jel8SRAzAwsfoi4JkaN9TpNlRP1i00xzGGaezow==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-hard-break@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-H3Bk8Gu5pV7xH8TrzH0WAoXrJVEKsDA6Evyl7H7aCAMAvotQL0ehuuX88bjPMCSAvBXZE39wYnJCJshGbVx0BA==}
+ /@tiptap/extension-hard-break@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-VptjsgvYOK6EcErn7GdEZZ5CjRkC4O6dsz2cRFA/DIY1IecB628X81n4G6cCyVsb+D98cYnsY44D3Qo+70Xkzw==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-heading@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-vFQuAAnIxDwKjTV+ScSwIaeG4Uhm1cZddnbLTru1EJfIz9VvpHDZKEyL4ZJvWuKMAhCzlw54TQhBCVHqalXyaA==}
+ /@tiptap/extension-heading@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-4VwRtGDhRhUtP/c8BB6pPMS6g8PRv5cs+pYxCp466en5awSBhM4AN2cxDD6ruXP4YvNTDprky9H0IKjhs6Ym4Q==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-highlight@2.1.11(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-pcs55B1lF2vyQ8VvZob9CsYdbFgVpIfG3+qchLsA1WflUJCcIexstTclWTS9N5UocADg4hBOeerZ4ecq1iXs3w==}
+ /@tiptap/extension-highlight@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-88W04AW8MCtoepmNn3343+VF1zBNlAY0tSfU+XqlYhhLo1IvbAYHeS7BN9XbqN8CUx1R3X5F2eUbEFsbxOAr3A==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-history@2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-9YHPf8Xqqp5CQy1hJonkBzROj0ZHR1ZaIk9IaLlAPTpdkrUDXV9SC7qp3lozQsMg4vmU3K6H5VQo4ADpnR00OQ==}
+ /@tiptap/extension-history@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-djHQxD5KP4EI3U6cri0/wcJxyMspU1B6+UVXL1G7867JiV9mvAw/HUoZsHTOsn+kajTi8szFfl2exa6dCYVrmA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-horizontal-rule@2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-uvHPa2YCKnDhtSBSZB3lk5U4H3wRKP0DNvVx4Y2F7MdQianVzcyOd1pZYO9BQs+lUB1aZots6doE69Zqz3mU2Q==}
+ /@tiptap/extension-horizontal-rule@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-AmaMBZwCEBH2eoy9Qt8Z+fiP6olSelz/cODz8/8XiXXi8ydY6oHW2s4pmrEYZH0un9dQAGWMP/LGUwyQZof1GQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-italic@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-6mFGPBGxd2aICJ5Q3zYxuXO8slKoOP/PsSjEQn1bjs3h8Q3mPxHX290ePVp728o5F0myM9sxKSz2V6/VeuS/Yw==}
+ /@tiptap/extension-italic@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-eOesosmbf8mXCJ8E58PnuhO5gtDpviCTpi3ZaGn1yP0gLRV3wlo8wpCbxlGXLStgFT0tejN26MGbEHCJHkRkFQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-link@2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-Dn8hq4ld8br53fE4/QUZ7/y6ejY/kqAxeNhtud+OZKRs6VRn/CQd0H6A26opL+mKAK0kzrs0rh7rJPpHvahx/Q==}
+ /@tiptap/extension-link@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-1evYv5Fjod47kobd/0RsHYyCFWrkU5IYZSIBC7bAGsnzG4fId2O5SEyn9SPsMYOVtEL2EIhiqb0i+wcwXf6jOQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
linkifyjs: 4.1.3
dev: false
- /@tiptap/extension-list-item@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-RLUodzFispIe1adarCEzf+OfaGZna/WR/k/HqPnbflSiJ6/I2P5MqI+ELjGGvc53eanf3+KpsHlB2Pganp8sMA==}
+ /@tiptap/extension-list-item@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-st5S4z2+IXsaX9Otm+4y1NZhE/yLtfFELn5VIUX69PwnNThaN2/ioBXkO1o2ZdLex++D0oMaY5ILIW/PhCWP8Q==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-ordered-list@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-6QLUm90wz2lfzWGV4fX5NOOFA8zKlcDBNrTeOd0V7H4fcafLmANqU/5o4LLNJmK8y8f1YAvmHr9xgciqggGJJA==}
+ /@tiptap/extension-ordered-list@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-LR+RQdv8yEqSYkTBGYuh099wr4r0QIosxfGe/ZlshwDJ4qFKVhyWSZ8qyaEiufmXDadTasj7WQvlbpVAhrVTBQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-paragraph@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-JwCKSFjBLd9xAmxLe7hf1h4AucDvkGTfDb/wA1jId64g+uf0/tm6RDjnk/QD+D2YzoLGFLjQm0GAdPXTmyTPdA==}
+ /@tiptap/extension-paragraph@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-niuvuBEkhz9gnQvFHbxs5z044bpDXRH9zz8QW2bA8+IDSxWHfnVmSZ3AZsed7OJ4EK1AcgGxy+gFOpAcZ73XTw==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-placeholder@2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-laHYRFxJWj6m72Yf1v6Q5nF2nvwWpQlKUj6Yu/yluOOoVE92HpLqCAvA8RamqLtPiw5VxR3v3oCY0WNeQRvyIg==}
+ /@tiptap/extension-placeholder@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-YAvq4VwjI9SitRHHQBoI2YHvKlmXvLag+z336HYyEiHDkoadek6zWLIb+RY/D0lAPBMBzgN+LoknYhC1VdgdYA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-strike@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-Z1hmBK1QWMMGDV2MJ3KBDiMuzcScjyx88cP5ln5G7626Zxeqywf84KF+2WyHBzJWfwMWpAouzwHKe9ld39Vu1w==}
+ /@tiptap/extension-strike@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-AMVC94mWNCAXLyZdkB5KqLai9FMUaQDkWAZSD1DKCRq2OJeA71nW9G1eDPa2TzQezl2IVTW9mU4m37hcsTmRfg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-task-item@2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-721inc/MAZkljPup/EWCpNho4nf+XrYVKWRixqgX+AjikusTJefylbiZ5OeRn+71osTA7SdnXiKkM2ZbHtAsYA==}
+ /@tiptap/extension-task-item@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-5Tty8sEE7fS6Ymdpd81Y+ci9FS8bctvPfqF2CPjgrbd4TesXGmPoUz6XBm2Pfh2MBBQhUIy0+3au5mDzcVq2SA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
- /@tiptap/extension-task-list@2.1.11(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-9C1M9N3jbNjm4001mPkgwUH19b6ZvKj5nnRT3zib/gFIQLOnSHE3VErDPHP/lkkjH84LgOMrm69cm8chQpgNsA==}
+ /@tiptap/extension-task-list@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-+W4uVup/v/P67sSJ8bAbbR7lCKZl+Jrm66lIV4etGjhO9Hs2ZnV9KrAjTHh8SbZZSNybDTOOaV74Wo73KqoVUQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-text-style@2.1.11(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-+JDWmcSUyFKzMDm/1xqlk7e0qPJ1nQ/UKIRuDeRtqgbxTyEw4fNlkV2k7GHCoELXqxUoplzweLID+kM1Vk2OaA==}
+ /@tiptap/extension-text-style@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-wGLenh8R8topBMx81R6U5bTf7zWneSsdWBSq7zJKzzpgglE0okEmsgQYUEghHxOCqoj/B900AjrHBLoxQ+IsRA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-text@2.1.16(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-XzSJmAj32uYpaL/9FX3tRSU52DwZ9w+3yEffIcSN9MSwioqLsSolXOz7TuJfW6lSTar1ml9UPlRqX4dpayUTDQ==}
+ /@tiptap/extension-text@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-h3lJRUZaUBisqUSQDEO+NU4SgKW7rj/vvbsbML8klWdEhg8U9btdv4eZgoJxbsqOdpUc6Cy6dBhre4myWI8Y2w==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/extension-underline@2.1.11(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-2C/jDNRV3WHfM5kgx6xB/1ooBciQ9j02gJVJkTHeLpz6zUWkxrRgU/u+FvZxGVBVskasJsQnsYMG9pAqwd9R8A==}
+ /@tiptap/extension-underline@2.2.0(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-y+D9gUWa/sVeCftZBMCEpcD1tD4OgNXfjsS7/qxv6ge9t0HCRhAJfHWm6rX8P7QybjacinZuun/T6CudRdGbMg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
dev: false
- /@tiptap/pm@2.1.11:
- resolution: {integrity: sha512-vBIAic+H8fjHfT8r2qJkAOxdx1Iiss9+qMyujAoIdPkiyjEc4+sXcM0qSYgIr6KL5icITyuK8J7x/V62VfB7Uw==}
+ /@tiptap/pm@2.2.0:
+ resolution: {integrity: sha512-CL/ys9rvUgYcRHyeQFuIQdw09+0LUgKAfYWzCr6Pu4DDdbRooiex/a9M29imnRMEgS9SwuHN2v17fKHH0w65Hg==}
dependencies:
prosemirror-changeset: 2.2.1
prosemirror-collab: 1.3.1
@@ -8862,7 +8527,7 @@ packages:
prosemirror-dropcursor: 1.8.1
prosemirror-gapcursor: 1.3.2
prosemirror-history: 1.3.2
- prosemirror-inputrules: 1.3.0
+ prosemirror-inputrules: 1.4.0
prosemirror-keymap: 1.2.2
prosemirror-markdown: 1.12.0
prosemirror-menu: 1.2.4
@@ -8876,56 +8541,56 @@ packages:
prosemirror-view: 1.32.7
dev: false
- /@tiptap/react@2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-OLU4uqMeCE/LKz/GY2P1JRykUgHJDoPROHUa1IOnVpj/1FbbBHDyurT3eomwsVzScTULbrKGwrS3ada6QAmTTA==}
+ /@tiptap/react@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-6A/o6vzD06S8Ds9NJJ4deMBEGVhtIAoGImKuc0aBDBY0ISUSaowaO/hVvZC+ClU74CpmjIUz242HotYXgHNxOw==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/extension-bubble-menu': 2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/extension-floating-menu': 2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/extension-bubble-menu': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/extension-floating-menu': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@tiptap/starter-kit@2.1.11(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-kZXwuo9yxrs1ASxluRKjXThjdcy90d7owJxnJWD7SyEwXaXYc4h+Ar1M9rP3jieCDBuRTtCgvAOKbVbhnRJ2jg==}
- dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/extension-blockquote': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-bold': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-bullet-list': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-code': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-code-block': 2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/extension-document': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-dropcursor': 2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/extension-gapcursor': 2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/extension-hard-break': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-heading': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-history': 2.1.16(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/extension-horizontal-rule': 2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11)
- '@tiptap/extension-italic': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-list-item': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-ordered-list': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-paragraph': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-strike': 2.1.16(@tiptap/core@2.1.11)
- '@tiptap/extension-text': 2.1.16(@tiptap/core@2.1.11)
+ /@tiptap/starter-kit@2.2.0(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-VCP0BFsAkl2633niM0+NsBrCNNoDqbJPFLizov63bHyupMhn7Y/YjPp3u89tbYGs+hhgK+64zMl2ZQ1XJiQv9A==}
+ dependencies:
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/extension-blockquote': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-bold': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-bullet-list': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-code': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-code-block': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/extension-document': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-dropcursor': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/extension-gapcursor': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/extension-hard-break': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-heading': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-history': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/extension-horizontal-rule': 2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0)
+ '@tiptap/extension-italic': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-list-item': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-ordered-list': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-paragraph': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-strike': 2.2.0(@tiptap/core@2.2.0)
+ '@tiptap/extension-text': 2.2.0(@tiptap/core@2.2.0)
transitivePeerDependencies:
- '@tiptap/pm'
dev: false
- /@tiptap/suggestion@2.1.11(@tiptap/core@2.1.11)(@tiptap/pm@2.1.11):
- resolution: {integrity: sha512-AVMB4x1X3eU7QCO1A8URQK0W7ps5dsVzveIP7+c//Z/GYe8lFSGIUnEbLJdr6bwgPkRL56m7c9+oZqVST5wfjQ==}
+ /@tiptap/suggestion@2.2.0(@tiptap/core@2.2.0)(@tiptap/pm@2.2.0):
+ resolution: {integrity: sha512-xcjGEVgRB0tx21LdNTr5F/HEKNlFuq9cnJlVGDLlNP43ixXM6aODAeY3VvEZ3XtEtLpHsiCVrinrjRNtpUf+eQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
- '@tiptap/pm': 2.1.11
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
+ '@tiptap/pm': 2.2.0
dev: false
/@trysound/sax@0.2.0:
@@ -8979,7 +8644,7 @@ packages:
/@types/accepts@1.3.7:
resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/acorn@4.0.6:
@@ -9002,8 +8667,8 @@ packages:
/@types/babel__core@7.20.5:
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
dependencies:
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.5
@@ -9011,27 +8676,27 @@ packages:
/@types/babel__generator@7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
- '@babel/parser': 7.23.6
- '@babel/types': 7.23.6
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
/@types/babel__traverse@7.20.5:
resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
/@types/body-parser@1.19.5:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
- /@types/canvas-confetti@1.6.1:
- resolution: {integrity: sha512-wTSI/k/586KnzL8Inm0yXe/U9x0sO2tc4j/osIAZVsE+hyj2S/M+sdR5zDDLygEkohhlG948zNVBG5QiI4Z2mw==}
+ /@types/canvas-confetti@1.6.4:
+ resolution: {integrity: sha512-fNyZ/Fdw/Y92X0vv7B+BD6ysHL4xVU5dJcgzgxLdGbn8O3PezZNIJpml44lKM0nsGur+o/6+NZbZeNTt00U1uA==}
dev: true
/@types/chai-subset@1.3.5:
@@ -9047,7 +8712,7 @@ packages:
/@types/cheerio@0.22.35:
resolution: {integrity: sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/color-convert@2.0.3:
@@ -9060,8 +8725,8 @@ packages:
resolution: {integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==}
dev: true
- /@types/color@3.0.5:
- resolution: {integrity: sha512-T9yHCNtd8ap9L/r8KEESu5RDMLkoWXHo7dTureNoI1dbp25NsCN054vOu09iniIjR21MXUL+LU9bkIWrbyg8gg==}
+ /@types/color@3.0.6:
+ resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==}
dependencies:
'@types/color-convert': 2.0.3
dev: true
@@ -9069,34 +8734,34 @@ packages:
/@types/concat-stream@2.0.3:
resolution: {integrity: sha512-3qe4oQAPNwVNwK4C9c8u+VJqv9kez+2MR4qJpoPFfXtgxxif1QbFusvXzK0/Wra2VX07smostI2VMmJNSpZjuQ==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
dev: true
/@types/connect-history-api-fallback@1.5.4:
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
dependencies:
- '@types/express-serve-static-core': 4.17.41
- '@types/node': 18.19.8
+ '@types/express-serve-static-core': 4.17.42
+ '@types/node': 20.11.13
dev: false
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
- /@types/cookies@0.7.10:
- resolution: {integrity: sha512-hmUCjAk2fwZVPPkkPBcI7jGLIR5mg4OVoNMBwU6aVsMm/iNPY7z9/R+x2fSwLt/ZXoGua6C5Zy2k5xOo9jUyhQ==}
+ /@types/cookies@0.9.0:
+ resolution: {integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==}
dependencies:
'@types/connect': 3.4.38
'@types/express': 4.17.21
'@types/keygrip': 1.0.6
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/cross-spawn@6.0.6:
resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: true
/@types/d3-array@3.2.1:
@@ -9127,7 +8792,7 @@ packages:
resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==}
dependencies:
'@types/d3-array': 3.2.1
- '@types/geojson': 7946.0.13
+ '@types/geojson': 7946.0.14
dev: true
/@types/d3-delaunay@6.0.4:
@@ -9144,10 +8809,6 @@ packages:
'@types/d3-selection': 3.0.10
dev: true
- /@types/d3-dsv@3.0.4:
- resolution: {integrity: sha512-YxfUVJ55HxR8oq88136w09mBMPNhgH7PZjteq72onWXWOohGif/cLQnQv8V4A5lEGjXF04LhwSTpmzpY9wyVyA==}
- dev: true
-
/@types/d3-dsv@3.0.7:
resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==}
dev: true
@@ -9173,7 +8834,7 @@ packages:
/@types/d3-geo@3.1.0:
resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==}
dependencies:
- '@types/geojson': 7946.0.13
+ '@types/geojson': 7946.0.14
dev: true
/@types/d3-hierarchy@3.1.6:
@@ -9255,8 +8916,8 @@ packages:
'@types/d3-selection': 3.0.10
dev: true
- /@types/d3@7.4.2:
- resolution: {integrity: sha512-Y4g2Yb30ZJmmtqAJTqMRaqXwRawfvpdpVmyEYEcyGNhrQI/Zvkq3k7yE1tdN07aFSmNBfvmegMQ9Fe2qy9ZMhw==}
+ /@types/d3@7.4.3:
+ resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==}
dependencies:
'@types/d3-array': 3.2.1
'@types/d3-axis': 3.0.6
@@ -9304,8 +8965,8 @@ packages:
resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==}
dev: true
- /@types/doctrine@0.0.6:
- resolution: {integrity: sha512-KlEqPtaNBHBJ2/fVA4yLdD0Tc8zw34pKU4K5SHBIEwtLJ8xxumIC1xeG+4S+/9qhVj2MqC7O3Ld8WvDG4HqlgA==}
+ /@types/doctrine@0.0.9:
+ resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
dev: true
/@types/ejs@3.1.5:
@@ -9330,7 +8991,7 @@ packages:
/@types/eslint-scope@3.7.7:
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
dependencies:
- '@types/eslint': 8.56.2
+ '@types/eslint': 6.8.1
'@types/estree': 1.0.5
dev: false
@@ -9341,15 +9002,8 @@ packages:
'@types/json-schema': 7.0.15
dev: false
- /@types/eslint@8.56.2:
- resolution: {integrity: sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==}
- dependencies:
- '@types/estree': 1.0.5
- '@types/json-schema': 7.0.15
- dev: false
-
- /@types/estree-jsx@1.0.3:
- resolution: {integrity: sha512-pvQ+TKeRHeiUGRhvYwRrQ/ISnohKkSJR14fT2yqyZ4e9K5vqc7hrtY2Y1Dw0ZwAzQ6DQsxsaCUuSIIi8v0Cq6w==}
+ /@types/estree-jsx@1.0.4:
+ resolution: {integrity: sha512-5idy3hvI9lAMqsyilBM+N+boaCf1MgoefbDxN6KEO5aK17TOHwFAYT9sjxzeKAiIWRUBgLxmZ9mPcnzZXtTcRQ==}
dependencies:
'@types/estree': 1.0.5
dev: true
@@ -9361,10 +9015,10 @@ packages:
/@types/estree@1.0.5:
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- /@types/express-serve-static-core@4.17.41:
- resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
+ /@types/express-serve-static-core@4.17.42:
+ resolution: {integrity: sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
'@types/qs': 6.9.11
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -9373,7 +9027,7 @@ packages:
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.17.41
+ '@types/express-serve-static-core': 4.17.42
'@types/qs': 6.9.11
'@types/serve-static': 1.15.5
@@ -9384,43 +9038,43 @@ packages:
/@types/fs-extra@8.0.1:
resolution: {integrity: sha512-J00cVDALmi/hJOYsunyT52Hva5TnJeKP5yd1r+mH/ZU0mbYZflR0Z5kw5kITtKTRYMhm1JMClOFYdHnQszEvqw==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
- /@types/geojson@7946.0.13:
- resolution: {integrity: sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==}
+ /@types/geojson@7946.0.14:
+ resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==}
dev: true
/@types/glob@7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
/@types/glob@8.1.0:
resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
/@types/gulp-less@0.0.31:
resolution: {integrity: sha512-WmbkvDEOSmUlW0Mm4R9TZGI5sNfnOahcot1zEmXH0wROZ2NsGNdg8xrttPeFw2wP/5SzrEis5Cf6ZwHblHRCLA==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/hapi__joi@17.1.9:
resolution: {integrity: sha512-oOMFT8vmCTFncsF1engrs04jatz8/Anwx3De9uxnOK4chgSEgWBvFtpSoJo8u3784JNO+ql5tzRR6phHoRnscQ==}
dev: false
- /@types/hast@2.3.9:
- resolution: {integrity: sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==}
+ /@types/hast@2.3.10:
+ resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
dependencies:
'@types/unist': 2.0.10
@@ -9463,15 +9117,9 @@ packages:
/@types/http-proxy@1.17.14:
resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
- /@types/is-ci@3.0.4:
- resolution: {integrity: sha512-AkCYCmwlXeuH89DagDCzvCAyltI2v9lh3U3DqSg/GrBYoReAaWwxfXCqMx9UV5MajLZ4ZFwZzV4cABGIxk2XRw==}
- dependencies:
- ci-info: 3.9.0
- dev: true
-
/@types/is-empty@1.2.3:
resolution: {integrity: sha512-4J1l5d79hoIvsrKh5VUKVRA1aIdsOb10Hu5j3J2VfP/msDnfTdGPmNp2E1Wg+vs97Bktzo+MZePFFXSGoykYJw==}
dev: true
@@ -9502,10 +9150,6 @@ packages:
jest-diff: 24.9.0
dev: false
- /@types/js-cookie@2.2.7:
- resolution: {integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==}
- dev: false
-
/@types/json-schema@7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -9523,7 +9167,7 @@ packages:
/@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/koa-compose@3.2.8:
@@ -9543,11 +9187,11 @@ packages:
resolution: {integrity: sha512-Hgx/1/rVlJvqYBrdeCsS7PDiR2qbxlMt1RnmNWD4Uxi5FF9nwkYqIldo7urjc+dfNpk+2NRGcnAYd4L5xEhCcQ==}
dependencies:
'@types/accepts': 1.3.7
- '@types/cookies': 0.7.10
+ '@types/cookies': 0.9.0
'@types/http-assert': 1.5.5
'@types/keygrip': 1.0.6
'@types/koa-compose': 3.2.8
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/linkify-it@3.0.5:
@@ -9576,10 +9220,6 @@ packages:
resolution: {integrity: sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ==}
dev: false
- /@types/lodash@4.14.200:
- resolution: {integrity: sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==}
- dev: true
-
/@types/lodash@4.14.202:
resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
@@ -9599,8 +9239,8 @@ packages:
resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==}
dev: false
- /@types/mdx@2.0.10:
- resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==}
+ /@types/mdx@2.0.11:
+ resolution: {integrity: sha512-HM5bwOaIQJIQbAYfax35HCKxx7a3KrK3nBtIqJgSOitivTD1y3oW9P3rxY9RkXYPUk7y/AjAohfHKmFpGE79zw==}
dev: true
/@types/mime-types@2.1.4:
@@ -9626,7 +9266,7 @@ packages:
/@types/node-fetch@2.6.11:
resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
form-data: 4.0.0
dev: true
@@ -9634,17 +9274,18 @@ packages:
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
dev: true
- /@types/node@18.16.19:
- resolution: {integrity: sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==}
+ /@types/node@18.19.11:
+ resolution: {integrity: sha512-hzdHPKpDdp5bEcRq1XTlZ2ntVjLcHCTV73dEcGg02eSY/+9AZ+jlfz6i00+zOrunMWenjHuI49J8J7Y9uz50JQ==}
+ dependencies:
+ undici-types: 5.26.5
- /@types/node@18.19.8:
- resolution: {integrity: sha512-g1pZtPhsvGVTwmeVoexWZLTQaOvXwoSq//pTL0DHeNzUDrFnir4fgETdhjhIxjVnN+hKOuh98+E1eMLnUXstFg==}
+ /@types/node@20.11.13:
+ resolution: {integrity: sha512-5G4zQwdiQBSWYTDAH1ctw2eidqdhMJaNsiIDKHFr55ihz5Trl2qqR8fdrT732yPBho5gkNxXm67OxWFBqX9aPg==}
dependencies:
undici-types: 5.26.5
/@types/node@20.5.1:
resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==}
- dev: true
/@types/normalize-package-data@2.4.4:
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -9660,7 +9301,7 @@ packages:
/@types/papaparse@5.3.14:
resolution: {integrity: sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/parse-json@4.0.2:
@@ -9695,20 +9336,20 @@ packages:
/@types/react-dom@16.9.4:
resolution: {integrity: sha512-fya9xteU/n90tda0s+FtN5Ym4tbgxpq/hb/Af24dvs6uYnYn+fspaxw5USlw0R8apDNwxsqumdRoCoKitckQqw==}
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: false
- /@types/react-dom@18.2.13:
- resolution: {integrity: sha512-eJIUv7rPP+EC45uNYp/ThhSpE16k22VJUknt5OLoH9tbXoi8bMhwLf5xRuWMywamNbWzhrSmU7IBJfPup1+3fw==}
+ /@types/react-dom@18.2.18:
+ resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==}
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: true
/@types/react-router-dom@5.1.3:
resolution: {integrity: sha512-pCq7AkOvjE65jkGS5fQwQhvUp4+4PVD9g39gXLZViP2UqFiFzsEpB3PKf0O6mdbKsewSK8N14/eegisa/0CwnA==}
dependencies:
'@types/history': 5.0.0
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
'@types/react-router': 5.1.20
dev: false
@@ -9716,20 +9357,20 @@ packages:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: false
/@types/react-transition-group@4.4.10:
resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==}
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: false
/@types/react-virtualized@9.21.29:
resolution: {integrity: sha512-+ODVQ+AyKngenj4OPpg43Hz4B9Rdjuz1Naxu9ypNc3Cjo0WVZTYhqXfF/Nm38i8PV/YXECRIl4mTAZK5hq2B+g==}
dependencies:
'@types/prop-types': 15.7.11
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
dev: false
/@types/react@16.14.56:
@@ -9740,8 +9381,8 @@ packages:
csstype: 3.1.3
dev: false
- /@types/react@18.2.28:
- resolution: {integrity: sha512-ad4aa/RaaJS3hyGz0BGegdnSRXQBkd1CCYDCdNjBPg90UUpLgo+WlJqb9fMYUxtehmzF3PJaTWqRZjko6BRzBg==}
+ /@types/react@18.2.48:
+ resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==}
dependencies:
'@types/prop-types': 15.7.11
'@types/scheduler': 0.16.8
@@ -9754,14 +9395,14 @@ packages:
/@types/responselike@1.0.3:
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/rimraf@2.0.3:
resolution: {integrity: sha512-dZfyfL/u9l/oi984hEXdmAjX3JHry7TLWw43u1HQ8HhPv6KtfxnrZ3T/bleJ0GEvnk9t5sM7eePkgMqz3yBcGg==}
dependencies:
'@types/glob': 8.1.0
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/scheduler@0.16.8:
@@ -9778,14 +9419,14 @@ packages:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
/@types/serve-static@1.15.5:
resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
dependencies:
'@types/http-errors': 2.0.4
'@types/mime': 3.0.4
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
/@types/socket.io-client@1.4.32:
resolution: {integrity: sha512-Vs55Kq8F+OWvy1RLA31rT+cAyemzgm0EWNeax6BWF8H7QiiOYMJIdcwSDdm5LVgfEkoepsWkS+40+WNb7BUMbg==}
@@ -9794,7 +9435,7 @@ packages:
/@types/socket.io@2.1.4:
resolution: {integrity: sha512-cI98INy7tYnweTsUlp8ocveVdAxENUThO0JsLSCs51cjOP2yV5Mqo5QszMDPckyRRA+PO6+wBgKvGvHUCc23TQ==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/source-list-map@0.1.6:
@@ -9818,10 +9459,6 @@ packages:
resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==}
dev: false
- /@types/stylis@4.2.5:
- resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==}
- dev: false
-
/@types/supports-color@8.1.3:
resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==}
dev: true
@@ -9849,6 +9486,10 @@ packages:
resolution: {integrity: sha512-YV+ZcSIiv30GhLM7WwxI+bsbcW34d3Yhl2JSFBNFL6qtfsoI9++hogxz+jTqeS86ynKcMUE0AsnLWQynfJnsfA==}
dev: false
+ /@types/uuid@9.0.8:
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+ dev: true
+
/@types/webpack-dev-middleware@5.3.0(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)(webpack@4.41.5):
resolution: {integrity: sha512-SklLlklFBfTyIXo1iWXxzeytjlysWfj5QfIcRJrCc7MgzuCjnZOHXviQwe81iFGq9ZkCUXAg2fpbZdHhj5lSWA==}
deprecated: This is a stub types definition. webpack-dev-middleware provides its own type definitions, so you do not need this installed.
@@ -9876,7 +9517,7 @@ packages:
/@types/webpack-hot-client@4.1.6:
resolution: {integrity: sha512-Bff+Y6S7znlBdVIdbfp/lJNpvzKv1dtxM6TrZDwvfoaYlFqvPawMg/eESSH5We/WN92dX3tFoq85b6gkOgTzgw==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
'@types/webpack': 4.41.0
'@types/ws': 8.5.10
dev: false
@@ -9885,7 +9526,7 @@ packages:
resolution: {integrity: sha512-E36fDw8QoqAurZO3JnIfeuBRtn8pCmGUuRWHp6xUb/kXb71pCD/XV7rEKluP7rANJ8oG7OMgHwFILcnGABMQEA==}
dependencies:
'@types/koa': 2.11.0
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
'@types/webpack': 4.41.0
'@types/webpack-dev-middleware': 5.3.0(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)(webpack@4.41.5)
'@types/webpack-hot-client': 4.1.6
@@ -9899,7 +9540,7 @@ packages:
/@types/webpack-sources@3.2.3:
resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
'@types/source-list-map': 0.1.6
source-map: 0.7.4
dev: false
@@ -9908,7 +9549,7 @@ packages:
resolution: {integrity: sha512-tWkdf9nO0zFgAY/EumUKwrDUhraHKDqCPhwfFR/R8l0qnPdgb9le0Gzhvb7uzVpouuDGBgiE//ZdY+5jcZy2TA==}
dependencies:
'@types/anymatch': 3.0.0
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
'@types/tapable': 2.2.7
'@types/uglify-js': 3.17.4
'@types/webpack-sources': 3.2.3
@@ -9918,7 +9559,7 @@ packages:
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: false
/@types/yargs-parser@21.0.3:
@@ -9972,34 +9613,6 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
- debug: 4.3.4
- eslint: 8.52.0
- graphemer: 1.4.0
- ignore: 5.3.0
- natural-compare-lite: 1.4.0
- semver: 7.5.4
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -10026,10 +9639,9 @@ packages:
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
- dev: false
- /@typescript-eslint/eslint-plugin@6.0.0(@typescript-eslint/parser@6.0.0)(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-xuv6ghKGoiq856Bww/yVYnXGsKa588kY3M0XK7uUW/3fJNNULKRfZfSBkMTSpqGG/8ZCXCadfh8G/z/B4aqS/A==}
+ /@typescript-eslint/eslint-plugin@6.20.0(@typescript-eslint/parser@6.20.0)(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-fTwGQUnjhoYHeSF6m5pWNkzmDDdsKELYrOBxhjMrofPqCkoC2k3B2wvGHFxa1CTIqkEn88nlW1HVMztjo2K8Hg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -10040,18 +9652,16 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.0.0(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/scope-manager': 6.0.0
- '@typescript-eslint/type-utils': 6.0.0(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/utils': 6.0.0(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 6.0.0
+ '@typescript-eslint/parser': 6.20.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/scope-manager': 6.20.0
+ '@typescript-eslint/type-utils': 6.20.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.20.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/visitor-keys': 6.20.0
debug: 4.3.4
eslint: 8.56.0
- grapheme-splitter: 1.0.4
graphemer: 1.4.0
ignore: 5.3.0
natural-compare: 1.4.0
- natural-compare-lite: 1.4.0
semver: 7.5.4
ts-api-utils: 1.0.3(typescript@5.3.3)
typescript: 5.3.3
@@ -10097,26 +9707,6 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/parser@5.62.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- debug: 4.3.4
- eslint: 8.52.0
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -10135,10 +9725,9 @@ packages:
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
- dev: false
- /@typescript-eslint/parser@6.0.0(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-TNaufYSPrr1U8n+3xN+Yp9g31vQDJqhXzzPSHfQDLcaO4tU+mCfODPxCwf4H530zo7aUBE3QIdxCXamEnG04Tg==}
+ /@typescript-eslint/parser@6.20.0(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-bYerPDF/H5v6V76MdMYhjwmwgMA+jlPVqjSDq2cRqMi8bP5sR3Z+RLOiOMad3nsnmDVmn2gAFCyNgh/dIrfP/w==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -10147,10 +9736,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.0.0
- '@typescript-eslint/types': 6.0.0
- '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 6.0.0
+ '@typescript-eslint/scope-manager': 6.20.0
+ '@typescript-eslint/types': 6.20.0
+ '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3)
+ '@typescript-eslint/visitor-keys': 6.20.0
debug: 4.3.4
eslint: 8.56.0
typescript: 5.3.3
@@ -10173,32 +9762,12 @@ packages:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- /@typescript-eslint/scope-manager@6.0.0:
- resolution: {integrity: sha512-o4q0KHlgCZTqjuaZ25nw5W57NeykZT9LiMEG4do/ovwvOcPnDO1BI5BQdCsUkjxFyrCL0cSzLjvIMfR9uo7cWg==}
+ /@typescript-eslint/scope-manager@6.20.0:
+ resolution: {integrity: sha512-p4rvHQRDTI1tGGMDFQm+GtxP1ZHyAh64WANVoyEcNMpaTFn3ox/3CcgtIlELnRfKzSs/DwYlDccJEtr3O6qBvA==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.0.0
- '@typescript-eslint/visitor-keys': 6.0.0
- dev: true
-
- /@typescript-eslint/type-utils@5.62.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
- debug: 4.3.4
- eslint: 8.52.0
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
+ '@typescript-eslint/types': 6.20.0
+ '@typescript-eslint/visitor-keys': 6.20.0
dev: true
/@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.3.3):
@@ -10219,10 +9788,9 @@ packages:
typescript: 5.3.3
transitivePeerDependencies:
- supports-color
- dev: false
- /@typescript-eslint/type-utils@6.0.0(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-ah6LJvLgkoZ/pyJ9GAdFkzeuMZ8goV6BH7eC9FPmojrnX9yNCIsfjB+zYcnex28YO3RFvBkV6rMV6WpIqkPvoQ==}
+ /@typescript-eslint/type-utils@6.20.0(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-qnSobiJQb1F5JjN0YDRPHruQTrX7ICsmltXhkV536mp4idGAYrIyr47zF/JmkJtEcAVnIz4gUYJ7gOZa6SmN4g==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -10231,8 +9799,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.3.3)
- '@typescript-eslint/utils': 6.0.0(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3)
+ '@typescript-eslint/utils': 6.20.0(eslint@8.56.0)(typescript@5.3.3)
debug: 4.3.4
eslint: 8.56.0
ts-api-utils: 1.0.3(typescript@5.3.3)
@@ -10250,8 +9818,8 @@ packages:
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /@typescript-eslint/types@6.0.0:
- resolution: {integrity: sha512-Zk9KDggyZM6tj0AJWYYKgF0yQyrcnievdhG0g5FqyU3Y2DRxJn4yWY21sJC0QKBckbsdKKjYDV2yVrrEvuTgxg==}
+ /@typescript-eslint/types@6.20.0:
+ resolution: {integrity: sha512-MM9mfZMAhiN4cOEcUOEx+0HmuaW3WBfukBZPCfwSqFnQy0grXYtngKCqpQN339X3RrwtzspWJrpbrupKYUSBXQ==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
@@ -10276,27 +9844,6 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
- resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.5.4
- tsutils: 3.21.0(typescript@5.2.2)
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -10317,8 +9864,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree@6.0.0(typescript@5.3.3):
- resolution: {integrity: sha512-2zq4O7P6YCQADfmJ5OTDQTP3ktajnXIRrYAtHM9ofto/CJZV3QfJ89GEaM2BNGeSr1KgmBuLhEkz5FBkS2RQhQ==}
+ /@typescript-eslint/typescript-estree@6.20.0(typescript@5.3.3):
+ resolution: {integrity: sha512-RnRya9q5m6YYSpBN7IzKu9FmLcYtErkDkc8/dKv81I9QiLLtVBHrjz+Ev/crAqgMNW2FCsoZF4g2QUylMnJz+g==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -10326,11 +9873,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.0.0
- '@typescript-eslint/visitor-keys': 6.0.0
+ '@typescript-eslint/types': 6.20.0
+ '@typescript-eslint/visitor-keys': 6.20.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
+ minimatch: 9.0.3
semver: 7.5.4
ts-api-utils: 1.0.3(typescript@5.3.3)
typescript: 5.3.3
@@ -10338,26 +9886,6 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils@5.62.0(eslint@8.52.0)(typescript@5.2.2):
- resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.6
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2)
- eslint: 8.52.0
- eslint-scope: 5.1.1
- semver: 7.5.4
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
-
/@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -10377,8 +9905,8 @@ packages:
- supports-color
- typescript
- /@typescript-eslint/utils@6.0.0(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-SOr6l4NB6HE4H/ktz0JVVWNXqCJTOo/mHnvIte1ZhBQ0Cvd04x5uKZa3zT6tiodL06zf5xxdK8COiDvPnQ27JQ==}
+ /@typescript-eslint/utils@6.20.0(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-/EKuw+kRu2vAqCoDwDCBtDRU6CTKbUmwwI7SH7AashZ+W+7o8eiyy6V2cdOqN49KsTcASWsC5QeghYuRDTyOOg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -10386,11 +9914,10 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.6
- '@typescript-eslint/scope-manager': 6.0.0
- '@typescript-eslint/types': 6.0.0
- '@typescript-eslint/typescript-estree': 6.0.0(typescript@5.3.3)
+ '@typescript-eslint/scope-manager': 6.20.0
+ '@typescript-eslint/types': 6.20.0
+ '@typescript-eslint/typescript-estree': 6.20.0(typescript@5.3.3)
eslint: 8.56.0
- eslint-scope: 5.1.1
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -10412,16 +9939,16 @@ packages:
'@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
- /@typescript-eslint/visitor-keys@6.0.0:
- resolution: {integrity: sha512-cvJ63l8c0yXdeT5POHpL0Q1cZoRcmRKFCtSjNGJxPkcP571EfZMcNbzWAc7oK3D1dRzm/V5EwtkANTZxqvuuUA==}
+ /@typescript-eslint/visitor-keys@6.20.0:
+ resolution: {integrity: sha512-E8Cp98kRe4gKHjJD4NExXKz/zOJ1A2hhZc+IMVD6i7w4yjIvh6VyuRI0gRtxAsXtoC35uGMaQ9rjI2zJaXDEAw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.0.0
+ '@typescript-eslint/types': 6.20.0
eslint-visitor-keys: 3.4.3
dev: true
- /@uiw/codemirror-extensions-basic-setup@4.21.20(@codemirror/autocomplete@6.12.0)(@codemirror/commands@6.3.3)(@codemirror/language@6.10.0)(@codemirror/lint@6.4.2)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0):
- resolution: {integrity: sha512-Wyi9q4uw0xGYd/tJ6bULG7tkCLqcUsQT0AQBfCDtnkV3LdiLU0LceTrzJoHJyIKSHsKDJxFQxa1qg3QLt4gIUA==}
+ /@uiw/codemirror-extensions-basic-setup@4.21.21(@codemirror/autocomplete@6.12.0)(@codemirror/commands@6.3.3)(@codemirror/language@6.10.0)(@codemirror/lint@6.5.0)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1):
+ resolution: {integrity: sha512-+0i9dPrRSa8Mf0CvyrMvnAhajnqwsP3IMRRlaHDRgsSGL8igc4z7MhvUPn+7cWFAAqWzQRhMdMSWzo6/TEa3EA==}
peerDependencies:
'@codemirror/autocomplete': '>=6.0.0'
'@codemirror/commands': '>=6.0.0'
@@ -10431,27 +9958,27 @@ packages:
'@codemirror/state': '>=6.0.0'
'@codemirror/view': '>=6.0.0'
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/commands': 6.3.3
'@codemirror/language': 6.10.0
- '@codemirror/lint': 6.4.2
+ '@codemirror/lint': 6.5.0
'@codemirror/search': 6.5.5
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
dev: false
- /@uiw/codemirror-theme-github@4.21.3(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0):
- resolution: {integrity: sha512-WnwyLWRdNC0yWebtNxwpSJwQr/AywnSqlF3FnfAxEYjtn3lV3bnROqOlFgEXaAVEfJQ5tNM01MM7thr8SlZQ2g==}
+ /@uiw/codemirror-theme-github@4.21.21(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1):
+ resolution: {integrity: sha512-msrpNrKk/CZQHk58TshI8aH7FpEyL404m/vWlGUdL2jGW7IRKm0nXn1lXXQ/snzk65h88GO6u9fiiv0pxRuZfQ==}
dependencies:
- '@uiw/codemirror-themes': 4.21.3(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)
+ '@uiw/codemirror-themes': 4.21.21(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)
transitivePeerDependencies:
- '@codemirror/language'
- '@codemirror/state'
- '@codemirror/view'
dev: false
- /@uiw/codemirror-themes@4.21.3(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0):
- resolution: {integrity: sha512-gB7jUP1SqAkvwOGt0hTpyw7xHMJkgDu5ODy+1qPHMU27IT425+GXJAHPKLHBuRL2+InnWJPMz9JXVrrJU32lLg==}
+ /@uiw/codemirror-themes@4.21.21(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1):
+ resolution: {integrity: sha512-ljVcMGdaxo75UaH+EqxJ+jLyMVVgeSfW2AKyT1VeLy+4SDpuqNQ7wq5XVxktsG6LH+OvgSFndWXgPANf4+gQcA==}
peerDependencies:
'@codemirror/language': '>=6.0.0'
'@codemirror/state': '>=6.0.0'
@@ -10459,11 +9986,11 @@ packages:
dependencies:
'@codemirror/language': 6.10.0
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
dev: false
- /@uiw/react-codemirror@4.21.20(@babel/runtime@7.23.8)(@codemirror/autocomplete@6.12.0)(@codemirror/language@6.10.0)(@codemirror/lint@6.4.2)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.23.0)(codemirror@6.0.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-PdyewPvNXnvT3JHj888yjpbWsAGw5qlxW6w1sMdsqJ0R6vPV++ob1iZXCGrM1FVpbqPK0DNfpXvjzp2gIr3lYw==}
+ /@uiw/react-codemirror@4.21.21(@babel/runtime@7.23.9)(@codemirror/autocomplete@6.12.0)(@codemirror/language@6.10.0)(@codemirror/lint@6.5.0)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.23.1)(codemirror@6.0.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-PaxBMarufMWoR0qc5zuvBSt76rJ9POm9qoOaJbqRmnNL2viaF+d+Paf2blPSlm1JSnqn7hlRjio+40nZJ9TKzw==}
peerDependencies:
'@babel/runtime': '>=7.11.0'
'@codemirror/state': '>=6.0.0'
@@ -10473,12 +10000,12 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@codemirror/commands': 6.3.3
'@codemirror/state': 6.4.0
'@codemirror/theme-one-dark': 6.1.2
- '@codemirror/view': 6.23.0
- '@uiw/codemirror-extensions-basic-setup': 4.21.20(@codemirror/autocomplete@6.12.0)(@codemirror/commands@6.3.3)(@codemirror/language@6.10.0)(@codemirror/lint@6.4.2)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)
+ '@codemirror/view': 6.23.1
+ '@uiw/codemirror-extensions-basic-setup': 4.21.21(@codemirror/autocomplete@6.12.0)(@codemirror/commands@6.3.3)(@codemirror/language@6.10.0)(@codemirror/lint@6.5.0)(@codemirror/search@6.5.5)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)
codemirror: 6.0.1(@lezer/common@1.2.1)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -10489,34 +10016,32 @@ packages:
- '@codemirror/search'
dev: false
- /@umijs/ast@4.0.86:
- resolution: {integrity: sha512-sIXL0vW8x54NPewzj5WzaUmbr74OLDGRBKgMnHfe3WE1LNIOsgY2QPzAlKM0p+EnpcLNT7P5XoStRN2jOlQGmg==}
+ /@umijs/ast@4.1.1:
+ resolution: {integrity: sha512-YqrHx2K8X4oOJTVE1tHMeveXBESJdmrdv/VgTB7pCcE6/+mvmPmDx1RECeSRrbnCP4ABrol38XCzKS88Vx5oHg==}
dependencies:
- '@umijs/bundler-utils': 4.0.86
+ '@umijs/bundler-utils': 4.1.1
transitivePeerDependencies:
- supports-color
dev: false
- /@umijs/babel-preset-umi@4.0.86(styled-components@6.1.8):
- resolution: {integrity: sha512-4fS7iDI93ycntNc07p/qNavtahKskSzhb1zmQ5buL9NQONOLz4sXGB5QQhCksKxQTOyMOEnwqY3n/oCH9W/c2Q==}
+ /@umijs/babel-preset-umi@4.1.1:
+ resolution: {integrity: sha512-6pYZnF03euAJGZN3VLe8PKKRNMH6Zxj4GKNooLvJ0Wz0eMufmYDcA4CpbR6h8i1JpgcQ0Sngr8bqHLb7oMqrvw==}
dependencies:
- '@babel/runtime': 7.21.0
+ '@babel/runtime': 7.23.6
'@bloomberg/record-tuple-polyfill': 0.0.4
- '@umijs/bundler-utils': 4.0.86
- '@umijs/utils': 4.0.86
- babel-plugin-styled-components: 2.1.1(styled-components@6.1.8)
- core-js: 3.28.0
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/utils': 4.1.1
+ core-js: 3.34.0
transitivePeerDependencies:
- - styled-components
- supports-color
dev: false
- /@umijs/bundler-esbuild@4.0.86:
- resolution: {integrity: sha512-A84jY8x7/5MZICOiuNoysfwYkQbozN73e4wtyTWn2akJOESxNHVckUICfX9LKA6vDbPXnT60zk5fpL6F72JiNw==}
+ /@umijs/bundler-esbuild@4.1.1:
+ resolution: {integrity: sha512-+aUT2pGTCvcn6Vla0/5E9NN8fX2QBH7XxlZP0vh1vh8iAVhYkqTu6eMSWN2hGLxlBwf5xkFJDpn3cEQ5PMUPgw==}
hasBin: true
dependencies:
- '@umijs/bundler-utils': 4.0.86
- '@umijs/utils': 4.0.86
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/utils': 4.1.1
enhanced-resolve: 5.9.3
postcss: 8.4.33
postcss-flexbugs-fixes: 5.0.2(postcss@8.4.33)
@@ -10525,32 +10050,32 @@ packages:
- supports-color
dev: false
- /@umijs/bundler-utils@4.0.86:
- resolution: {integrity: sha512-t4DO29BW8nrCIdgYHAMocjQqYGaqYoZiNpoTawZDC43uij2aesBO868vKu89C4edQqK9mj3iL2HuV7QD9cyB7g==}
+ /@umijs/bundler-utils@4.1.1:
+ resolution: {integrity: sha512-k1I1tjDePgB1XqpQHZiLJ/5gS4EykY8hqqzEzD1CSbd5KFE614+q6W/gcpFZ0YLJDWY1GdjOYpRokvuI/MSRfg==}
dependencies:
- '@umijs/utils': 4.0.86
+ '@umijs/utils': 4.1.1
esbuild: 0.17.19
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.0
+ regenerate-unicode-properties: 10.1.1
spdy: 4.0.2
transitivePeerDependencies:
- supports-color
dev: false
- /@umijs/bundler-vite@4.0.86(@types/node@18.16.19)(postcss@8.4.33):
- resolution: {integrity: sha512-VUSAj0p/iUypN9C5GA3I+ZO9bug+LhbPI1yNqUn4TjQuIjb0bquXEyxBw4FF44LfpT1i8XqjAE0ddvz+NfxaUA==}
+ /@umijs/bundler-vite@4.1.1(@types/node@18.19.11)(postcss@8.4.33):
+ resolution: {integrity: sha512-gTu/9TpsBYEHcaQY/ybW1ZDLAQA75lH2kI6FVx/Tg8HutwSB9mIaD4DHZOMDM/9C1W/+DwxXemKZXVkR3iRtVw==}
hasBin: true
dependencies:
'@svgr/core': 6.5.1
- '@umijs/bundler-utils': 4.0.86
- '@umijs/utils': 4.0.86
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/utils': 4.1.1
'@vitejs/plugin-react': 4.0.0(vite@4.3.1)
- core-js: 3.28.0
+ core-js: 3.34.0
less: 4.1.3
postcss-preset-env: 7.5.0(postcss@8.4.33)
rollup-plugin-visualizer: 5.9.0
systemjs: 6.14.3
- vite: 4.3.1(@types/node@18.16.19)
+ vite: 4.3.1(@types/node@18.19.11)
transitivePeerDependencies:
- '@types/node'
- postcss
@@ -10562,26 +10087,26 @@ packages:
- terser
dev: false
- /@umijs/bundler-webpack@4.0.86(styled-components@6.1.8)(typescript@5.3.3)(webpack@5.89.0):
- resolution: {integrity: sha512-60sG4CN0pKmEbvfA1uZTAluOa9vRIS1XjkPidB8tIPNBNQ89LAIZMiR5Pyhmj/BdJof/+r48rOB4+jaRV34Fiw==}
+ /@umijs/bundler-webpack@4.1.1(typescript@5.3.3)(webpack@5.90.0):
+ resolution: {integrity: sha512-LL+ZmPmSIGOMo1+OHsBtMARqr+dTZEqDkTbQ/ZPrrrtxK27rXi/lHFEUnzKjPeHVL+xtJ4m9QR13zGWlhLT+UA==}
hasBin: true
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.0.86(styled-components@6.1.8)
- '@umijs/bundler-utils': 4.0.86
+ '@umijs/babel-preset-umi': 4.1.1
+ '@umijs/bundler-utils': 4.1.1
'@umijs/case-sensitive-paths-webpack-plugin': 1.0.1
- '@umijs/mfsu': 4.0.86
- '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.89.0)
- '@umijs/utils': 4.0.86
+ '@umijs/mfsu': 4.1.1
+ '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.90.0)
+ '@umijs/utils': 4.1.1
cors: 2.8.5
- css-loader: 6.7.1(webpack@5.89.0)
+ css-loader: 6.7.1(webpack@5.90.0)
es5-imcompatible-versions: 0.1.88
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.3.3)(webpack@5.89.0)
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.3.3)(webpack@5.90.0)
jest-worker: 29.4.3
- lightningcss: 1.19.0
+ lightningcss: 1.22.1
node-libs-browser: 2.2.1
postcss: 8.4.33
postcss-preset-env: 7.5.0(postcss@8.4.33)
@@ -10590,7 +10115,6 @@ packages:
transitivePeerDependencies:
- '@types/webpack'
- sockjs-client
- - styled-components
- supports-color
- type-fest
- typescript
@@ -10604,11 +10128,11 @@ packages:
resolution: {integrity: sha512-kDKJ8yTarxwxGJDInG33hOpaQRZ//XpNuuznQ/1Mscypw6kappzFmrBr2dOYave++K7JHouoANF354UpbEQw0Q==}
dev: false
- /@umijs/core@4.0.86:
- resolution: {integrity: sha512-q9/yDIhKLicw/cLuITY5jkzK2HxM0A7f+nI8/D2Q5TcNc2dBwL1j9rmOJRSNRkQ7cjRtYyyRhy2OC7Tyn0Ysxw==}
+ /@umijs/core@4.1.1:
+ resolution: {integrity: sha512-frMq29AfyLThIfrsDmNGKueT49mhL6o7P9GhnSCP3ICwTYl2aTaI3GYzf32ZCmEhFYH8cU0Bcgx5GpOIdEJrLQ==}
dependencies:
- '@umijs/bundler-utils': 4.0.86
- '@umijs/utils': 4.0.86
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/utils': 4.1.1
transitivePeerDependencies:
- supports-color
dev: false
@@ -10720,19 +10244,19 @@ packages:
/@umijs/history@5.3.1:
resolution: {integrity: sha512-/e0cEGrR2bIWQD7pRl3dl9dcyRGeC9hoW0OCvUTT/hjY0EfUrkd6G8ZanVghPMpDuY5usxq9GVcvrT8KNXLWvA==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
query-string: 6.14.1
dev: false
- /@umijs/lint@4.0.86(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(styled-components@6.1.8)(stylelint@14.16.1)(typescript@5.3.3):
- resolution: {integrity: sha512-nQ2U5DQbVz5X+FWOZuY8js1gdvoBIr8uznKASzCQX2BIxScFEzC56qkpBkfY1OMyVYzguCE2DrtZXsALRQ/BXQ==}
+ /@umijs/lint@4.1.1(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(stylelint@14.16.1)(typescript@5.3.3):
+ resolution: {integrity: sha512-fy2edKuYw42eM3LuH/2AiH0ZKdembFx3SR8dIGKxf7BmEQOSfUhskLiNGE8tSRubCiVzGUWvZQDw1YQcU0bsHg==}
dependencies:
- '@babel/core': 7.21.0
- '@babel/eslint-parser': 7.22.11(@babel/core@7.21.0)(eslint@8.56.0)
+ '@babel/core': 7.23.6
+ '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@8.56.0)
'@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2)(postcss@8.4.33)
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3)
- '@umijs/babel-preset-umi': 4.0.86(styled-components@6.1.8)
+ '@umijs/babel-preset-umi': 4.1.1
eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0)(jest@29.7.0)(typescript@5.3.3)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0)
@@ -10747,60 +10271,61 @@ packages:
- postcss-less
- postcss-markdown
- postcss-scss
- - styled-components
- stylelint
- supports-color
- typescript
dev: false
- /@umijs/mfsu@4.0.86:
- resolution: {integrity: sha512-BFy8E2Ag/0c3edztlGxUyciiv8FYbSTjpEmfw6LLwaFvSlbYD6DfzbSoc97QGIOAOYW3EvwG6RkUbUyWHu5r+g==}
+ /@umijs/mfsu@4.1.1:
+ resolution: {integrity: sha512-5W4vl0vtZvD36wPUo0EMDO6p04GGPBb7MwJVQCYGdumKEwdCQ+cnzEYoJE9Q9D5PBAwnOzbf2UNrAQgtJG70tA==}
dependencies:
- '@umijs/bundler-esbuild': 4.0.86
- '@umijs/bundler-utils': 4.0.86
- '@umijs/utils': 4.0.86
+ '@umijs/bundler-esbuild': 4.1.1
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/utils': 4.1.1
enhanced-resolve: 5.9.3
is-equal: 1.7.0
transitivePeerDependencies:
- supports-color
dev: false
- /@umijs/plugin-run@4.0.86:
- resolution: {integrity: sha512-N+2IxNETwZ6pYDiOdYSRc6/Qvlv/1rJSlSPSMslH5lWbkqvuI9efdCi4bmdqh/T4H4Hfl80oCleBd87AD4rVyw==}
+ /@umijs/plugin-run@4.1.1:
+ resolution: {integrity: sha512-n2E1eV065qsfuNL0kKn6N2zv75s7aRD9j0ZL3tqhAf7UqtUEx3hmODlnrIIMNzBI5YxSYwyjWxZCLvpzu5S8hQ==}
dependencies:
tsx: 3.14.0
dev: false
- /@umijs/preset-umi@4.0.86(@types/node@18.16.19)(@types/react@18.2.28)(postcss@8.4.33)(styled-components@6.1.8)(typescript@5.3.3)(webpack@5.89.0):
- resolution: {integrity: sha512-QCY+GDfEvnQ9pwEv3y2ZKMlRdujcW8IwkRCBBB9P7JgiCaxTVBgGBbr9KQSzVijB0gQgFWRH9wWe5Glt5s8wNw==}
+ /@umijs/preset-umi@4.1.1(@types/node@18.19.11)(@types/react@18.2.48)(typescript@5.3.3)(webpack@5.90.0):
+ resolution: {integrity: sha512-mpm2aqyRttfAQRstCoA98oya5r0eZL6dWe3oddTsScjyO/T9rT9vOb2xyqlsE95DTNFEBeyCjr8dcvs2HifJ1w==}
dependencies:
'@iconify/utils': 2.1.1
'@svgr/core': 6.5.1
- '@umijs/ast': 4.0.86
- '@umijs/babel-preset-umi': 4.0.86(styled-components@6.1.8)
- '@umijs/bundler-esbuild': 4.0.86
- '@umijs/bundler-utils': 4.0.86
- '@umijs/bundler-vite': 4.0.86(@types/node@18.16.19)(postcss@8.4.33)
- '@umijs/bundler-webpack': 4.0.86(styled-components@6.1.8)(typescript@5.3.3)(webpack@5.89.0)
- '@umijs/core': 4.0.86
+ '@umijs/ast': 4.1.1
+ '@umijs/babel-preset-umi': 4.1.1
+ '@umijs/bundler-esbuild': 4.1.1
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/bundler-vite': 4.1.1(@types/node@18.19.11)(postcss@8.4.33)
+ '@umijs/bundler-webpack': 4.1.1(typescript@5.3.3)(webpack@5.90.0)
+ '@umijs/core': 4.1.1
'@umijs/did-you-know': 1.0.3
'@umijs/es-module-parser': 0.0.7
'@umijs/history': 5.3.1
- '@umijs/mfsu': 4.0.86
- '@umijs/plugin-run': 4.0.86
- '@umijs/renderer-react': 4.0.86(react-dom@18.1.0)(react@18.1.0)
- '@umijs/server': 4.0.86
+ '@umijs/mfsu': 4.1.1
+ '@umijs/plugin-run': 4.1.1
+ '@umijs/renderer-react': 4.1.1(react-dom@18.1.0)(react@18.1.0)
+ '@umijs/server': 4.1.1
'@umijs/ui': 3.0.1
- '@umijs/utils': 4.0.86
- '@umijs/zod2ts': 4.0.86
+ '@umijs/utils': 4.1.1
+ '@umijs/zod2ts': 4.1.1
babel-plugin-dynamic-import-node: 2.3.3
- click-to-react-component: 1.1.0(@types/react@18.2.28)(react-dom@18.1.0)(react@18.1.0)
- core-js: 3.28.0
+ click-to-react-component: 1.1.0(@types/react@18.2.48)(react-dom@18.1.0)(react@18.1.0)
+ core-js: 3.34.0
current-script-polyfill: 1.0.0
enhanced-resolve: 5.9.3
fast-glob: 3.2.12
- html-webpack-plugin: 5.5.0(webpack@5.89.0)
+ html-webpack-plugin: 5.5.0(webpack@5.90.0)
+ less-plugin-resolve: 1.0.2
path-to-regexp: 1.7.0
+ postcss: 8.4.33
postcss-prefix-selector: 1.16.0(postcss@8.4.33)
react: 18.1.0
react-dom: 18.1.0(react@18.1.0)
@@ -10811,11 +10336,9 @@ packages:
- '@types/node'
- '@types/react'
- '@types/webpack'
- - postcss
- rollup
- sass
- sockjs-client
- - styled-components
- stylus
- sugarss
- supports-color
@@ -10828,7 +10351,7 @@ packages:
- webpack-plugin-serve
dev: false
- /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.89.0):
+ /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.90.0):
resolution: {integrity: sha512-RtFvB+/GmjRhpHcqNgnw8iWZpTlxOnmNxi8eDcecxMmxmSgeDj25LV0jr4Q6rOhv3GTIfVGBhkwz+khGT5tfmg==}
engines: {node: '>= 10.13'}
peerDependencies:
@@ -10864,16 +10387,16 @@ packages:
react-refresh: 0.14.0
schema-utils: 3.3.0
source-map: 0.7.4
- webpack: 5.89.0(esbuild@0.17.19)
+ webpack: 5.90.0(esbuild@0.17.19)
dev: false
- /@umijs/renderer-react@4.0.86(react-dom@18.1.0)(react@18.1.0):
- resolution: {integrity: sha512-ZE0XH0iNdC2ysyFCwP3paam6hAx3el7zWVdKSeSdwKv7CHrXgsI9LhQPagqkyLVxhW62DFtfhN3OPK+xEElgyA==}
+ /@umijs/renderer-react@4.1.1(react-dom@18.1.0)(react@18.1.0):
+ resolution: {integrity: sha512-h6mXzTeadXGjUUDfBOjNjIFPkiyt1N0oIEK+eS2PH3SaZGCUa8HNm+yWJmUxxDqbo/+1rvnN8z1oEGDRHfHwXA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@babel/runtime': 7.21.0
+ '@babel/runtime': 7.23.6
'@loadable/component': 5.15.2(react@18.1.0)
history: 5.3.0
react: 18.1.0
@@ -10882,13 +10405,13 @@ packages:
react-router-dom: 6.3.0(react-dom@18.1.0)(react@18.1.0)
dev: false
- /@umijs/renderer-react@4.0.86(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ZE0XH0iNdC2ysyFCwP3paam6hAx3el7zWVdKSeSdwKv7CHrXgsI9LhQPagqkyLVxhW62DFtfhN3OPK+xEElgyA==}
+ /@umijs/renderer-react@4.1.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-h6mXzTeadXGjUUDfBOjNjIFPkiyt1N0oIEK+eS2PH3SaZGCUa8HNm+yWJmUxxDqbo/+1rvnN8z1oEGDRHfHwXA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@babel/runtime': 7.21.0
+ '@babel/runtime': 7.23.6
'@loadable/component': 5.15.2(react@18.2.0)
history: 5.3.0
react: 18.2.0
@@ -10897,10 +10420,10 @@ packages:
react-router-dom: 6.3.0(react-dom@18.2.0)(react@18.2.0)
dev: false
- /@umijs/server@4.0.86:
- resolution: {integrity: sha512-SqdQtQm8Io9a1gs9ZF9V9HmVP9wpYBRNvikMT1q8Q/WiKn7m0W/8gduBFUbDZUe9JqAAYcVCcDdpMZOOpeJLyA==}
+ /@umijs/server@4.1.1:
+ resolution: {integrity: sha512-MNwj2jbmAcpHP+uNyhAQWZdLfNpsKy05ETpVWtOmBlAmkK8J9IBpHGSPkWSJgTiq6NiYM6vIRm9wKyVwGUxYGA==}
dependencies:
- '@umijs/bundler-utils': 4.0.86
+ '@umijs/bundler-utils': 4.1.1
history: 5.3.0
react: 18.1.0
react-dom: 18.1.0(react@18.1.0)
@@ -10909,14 +10432,14 @@ packages:
- supports-color
dev: false
- /@umijs/test@4.0.86(@babel/core@7.23.7):
- resolution: {integrity: sha512-Sp96NLMSdC1p8Lvr7MSmndGvzgpyKqYr5OQKXH+omlVUfKxneNueWXbKD3T3zGxwGuPhHfNZlTIm0+B6YJf7Fw==}
+ /@umijs/test@4.1.1(@babel/core@7.23.9):
+ resolution: {integrity: sha512-4Q5qaYX86mZbw0Jbirr0kZpaU1Jfi1Lq440EmRYqoPtKQBT5hX5fo98LWxyMPv1PTL/g/PC6sYr0uSLp+qjtOA==}
dependencies:
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
'@jest/types': 27.5.1
- '@umijs/bundler-utils': 4.0.86
- '@umijs/utils': 4.0.86
- babel-jest: 29.7.0(@babel/core@7.23.7)
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/utils': 4.1.1
+ babel-jest: 29.7.0(@babel/core@7.23.9)
esbuild: 0.17.19
identity-obj-proxy: 3.0.0
isomorphic-unfetch: 4.0.2
@@ -10929,43 +10452,43 @@ packages:
resolution: {integrity: sha512-zcz37AJH0xt/6XVVbyO/hmsK9Hq4vH23HZ4KYVi5A8rbM9KeJkJigTS7ELOdArawZhVNGe+h3a5Oixs4a2QsWw==}
dev: false
- /@umijs/utils@4.0.86:
- resolution: {integrity: sha512-0TNfu77XiyG9805NLuCxiO/+FOFfGJwjWAuoOMate4sEj4g+Swfg98KCui2/jIn1+ma00VID4kq7q9mS5lJ5Xw==}
+ /@umijs/utils@4.1.1:
+ resolution: {integrity: sha512-hbnbJR3RA7fu4E7q4JFZ47XMYArr6Zn5bftr8YZ+o6hzJlomr4gzoOXE+XxM7rVMK4AFZoc+QZgNTJyISd08Pg==}
dependencies:
chokidar: 3.5.3
pino: 7.11.0
dev: false
- /@umijs/zod2ts@4.0.86:
- resolution: {integrity: sha512-/i3W+BcHKISLHBh8oNTJqGBHkiIZTQ7U4xyad55L8LJo5DezH/G1+aSirlWuAxpJ6xNq6P/5E+K9AaYdz+pu/A==}
+ /@umijs/zod2ts@4.1.1:
+ resolution: {integrity: sha512-ni4at60OdOL4qMKi7USdq8T6lNWAbaylXmDNUg063nT/FIzbwD7bFzKO0OYnt4SoV20dtBLSV5zlundFK4hVSQ==}
dev: false
/@ungap/structured-clone@1.2.0:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- /@vitejs/plugin-react-swc@3.3.2(vite@4.4.5):
- resolution: {integrity: sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==}
+ /@vitejs/plugin-react-swc@3.5.0(vite@4.5.2):
+ resolution: {integrity: sha512-1PrOvAaDpqlCV+Up8RkAh9qaiUjoDUcjtttyhXDKw53XA6Ve16SOp6cCOpRs8Dj8DqUQs6eTW5YkLcLJjrXAig==}
peerDependencies:
- vite: ^4
+ vite: ^4 || ^5
dependencies:
- '@swc/core': 1.3.105
- vite: 4.4.5(@types/node@18.16.19)
+ '@swc/core': 1.3.107
+ vite: 4.5.2(@types/node@18.19.11)
transitivePeerDependencies:
- '@swc/helpers'
dev: true
- /@vitejs/plugin-react@3.1.0(vite@4.4.5):
+ /@vitejs/plugin-react@3.1.0(vite@4.5.2):
resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.1.0-beta.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9)
magic-string: 0.27.0
react-refresh: 0.14.0
- vite: 4.4.5(@types/node@18.16.19)
+ vite: 4.5.2(@types/node@18.19.11)
transitivePeerDependencies:
- supports-color
dev: true
@@ -10976,11 +10499,11 @@ packages:
peerDependencies:
vite: ^4.2.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9)
react-refresh: 0.14.0
- vite: 4.3.1(@types/node@18.16.19)
+ vite: 4.3.1(@types/node@18.19.11)
transitivePeerDependencies:
- supports-color
dev: false
@@ -11482,23 +11005,17 @@ packages:
indent-string: 4.0.0
dev: true
- /ahooks-v3-count@1.0.0:
- resolution: {integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==}
- dev: false
-
- /ahooks@3.7.8(react@18.2.0):
- resolution: {integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==}
+ /ahooks@3.7.9(react@18.2.0):
+ resolution: {integrity: sha512-1nuCnaBe/DvZD2QAZVGLLmu0vDi6jxbiAP3Ghkj6Ocqk9YSXI6ydwo2x5I3lXowZyM8MNJDnHFvIo0vJS1CuFw==}
engines: {node: '>=8.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.8
- '@types/js-cookie': 2.2.7
- ahooks-v3-count: 1.0.0
+ '@babel/runtime': 7.23.9
dayjs: 1.11.10
intersection-observer: 0.12.2
js-cookie: 2.2.1
- lodash: 4.17.21
+ lodash-es: 4.17.21
react: 18.2.0
resize-observer-polyfill: 1.5.1
screenfull: 5.2.0
@@ -11714,7 +11231,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /antd-schema-form@5.0.1(@ant-design/icons@4.8.1)(antd@5.10.1)(react-dom@18.2.0)(react@18.2.0):
+ /antd-schema-form@5.0.1(@ant-design/icons@5.2.6)(antd@5.13.3)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-JcPE0glGVVG7H+CNv4t5LvWCLu9XLZlREcBxcfcEACx4b+iHt8DsOVoHw+xVMs5fxbk4A5MJKK6Wk+ZOvDIBgg==}
peerDependencies:
'@ant-design/icons': '>=4'
@@ -11722,79 +11239,17 @@ packages:
react: '>=16.7.0'
react-dom: '>=16.7.0'
dependencies:
- '@ant-design/icons': 4.8.1(react-dom@18.2.0)(react@18.2.0)
- antd: 5.10.1(react-dom@18.2.0)(react@18.2.0)
- classnames: 2.3.2
+ '@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
+ antd: 5.13.3(react-dom@18.2.0)(react@18.2.0)
+ classnames: 2.5.1
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
dev: false
- /antd@5.10.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-alcBmeH4oAdmEdBs6EORH3onRFRjGYRkWtVjPyJxlTIfLILb/+S5Y+ZqisV3AobC8mlj6T3RV8aKG9ic6PgtzQ==}
- peerDependencies:
- react: '>=16.9.0'
- react-dom: '>=16.9.0'
- dependencies:
- '@ant-design/colors': 7.0.2
- '@ant-design/cssinjs': 1.18.4(react-dom@18.2.0)(react@18.2.0)
- '@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
- '@ant-design/react-slick': 1.0.2(react@18.2.0)
- '@babel/runtime': 7.23.8
- '@ctrl/tinycolor': 3.6.1
- '@rc-component/color-picker': 1.4.1(react-dom@18.2.0)(react@18.2.0)
- '@rc-component/mutate-observer': 1.1.0(react-dom@18.2.0)(react@18.2.0)
- '@rc-component/tour': 1.10.0(react-dom@18.2.0)(react@18.2.0)
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
- classnames: 2.3.2
- copy-to-clipboard: 3.3.3
- dayjs: 1.11.10
- qrcode.react: 3.1.0(react@18.2.0)
- rc-cascader: 3.18.1(react-dom@18.2.0)(react@18.2.0)
- rc-checkbox: 3.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-collapse: 3.7.2(react-dom@18.2.0)(react@18.2.0)
- rc-dialog: 9.3.4(react-dom@18.2.0)(react@18.2.0)
- rc-drawer: 6.5.2(react-dom@18.2.0)(react@18.2.0)
- rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-field-form: 1.39.0(react-dom@18.2.0)(react@18.2.0)
- rc-image: 7.3.2(react-dom@18.2.0)(react@18.2.0)
- rc-input: 1.2.1(react-dom@18.2.0)(react@18.2.0)
- rc-input-number: 8.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-mentions: 2.8.0(react-dom@18.2.0)(react@18.2.0)
- rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0)
- rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
- rc-notification: 5.2.0(react-dom@18.2.0)(react@18.2.0)
- rc-pagination: 3.6.1(react-dom@18.2.0)(react@18.2.0)
- rc-picker: 3.14.6(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0)
- rc-progress: 3.5.1(react-dom@18.2.0)(react@18.2.0)
- rc-rate: 2.12.0(react-dom@18.2.0)(react@18.2.0)
- rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0)
- rc-segmented: 2.2.2(react-dom@18.2.0)(react@18.2.0)
- rc-select: 14.9.2(react-dom@18.2.0)(react@18.2.0)
- rc-slider: 10.3.1(react-dom@18.2.0)(react@18.2.0)
- rc-steps: 6.0.1(react-dom@18.2.0)(react@18.2.0)
- rc-switch: 4.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-table: 7.34.4(react-dom@18.2.0)(react@18.2.0)
- rc-tabs: 12.12.1(react-dom@18.2.0)(react@18.2.0)
- rc-textarea: 1.4.0(react-dom@18.2.0)(react@18.2.0)
- rc-tooltip: 6.1.3(react-dom@18.2.0)(react@18.2.0)
- rc-tree: 5.7.12(react-dom@18.2.0)(react@18.2.0)
- rc-tree-select: 5.13.0(react-dom@18.2.0)(react@18.2.0)
- rc-upload: 4.3.6(react-dom@18.2.0)(react@18.2.0)
- rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- scroll-into-view-if-needed: 3.1.0
- throttle-debounce: 5.0.0
- transitivePeerDependencies:
- - date-fns
- - luxon
- - moment
- dev: false
-
- /antd@5.10.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-0kV6PmlJi7vhPmYH9GCAlU62ZhiuLF+gE3REJ/9MZTo++/3i5q6SALNoRgHLMsa+rX50U3RO3wJVY+fPib594Q==}
+ /antd@5.13.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-phQJa4ezs6e2AnWRxbKVan9fvmURwntAfI+wDRRSP7spPY6t3afjvWfAcVp0Ekb1EPzvF/jUr64j3RMQQYWHVw==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
@@ -11803,47 +11258,46 @@ packages:
'@ant-design/cssinjs': 1.18.4(react-dom@18.2.0)(react@18.2.0)
'@ant-design/icons': 5.2.6(react-dom@18.2.0)(react@18.2.0)
'@ant-design/react-slick': 1.0.2(react@18.2.0)
- '@babel/runtime': 7.23.8
'@ctrl/tinycolor': 3.6.1
- '@rc-component/color-picker': 1.4.1(react-dom@18.2.0)(react@18.2.0)
+ '@rc-component/color-picker': 1.5.1(react-dom@18.2.0)(react@18.2.0)
'@rc-component/mutate-observer': 1.1.0(react-dom@18.2.0)(react@18.2.0)
- '@rc-component/tour': 1.10.0(react-dom@18.2.0)(react@18.2.0)
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@rc-component/tour': 1.12.3(react-dom@18.2.0)(react@18.2.0)
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
copy-to-clipboard: 3.3.3
dayjs: 1.11.10
qrcode.react: 3.1.0(react@18.2.0)
- rc-cascader: 3.18.1(react-dom@18.2.0)(react@18.2.0)
+ rc-cascader: 3.21.2(react-dom@18.2.0)(react@18.2.0)
rc-checkbox: 3.1.0(react-dom@18.2.0)(react@18.2.0)
rc-collapse: 3.7.2(react-dom@18.2.0)(react@18.2.0)
rc-dialog: 9.3.4(react-dom@18.2.0)(react@18.2.0)
- rc-drawer: 6.5.2(react-dom@18.2.0)(react@18.2.0)
+ rc-drawer: 7.0.0(react-dom@18.2.0)(react@18.2.0)
rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-field-form: 1.39.0(react-dom@18.2.0)(react@18.2.0)
- rc-image: 7.3.2(react-dom@18.2.0)(react@18.2.0)
- rc-input: 1.2.1(react-dom@18.2.0)(react@18.2.0)
- rc-input-number: 8.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-mentions: 2.8.0(react-dom@18.2.0)(react@18.2.0)
+ rc-field-form: 1.41.0(react-dom@18.2.0)(react@18.2.0)
+ rc-image: 7.5.1(react-dom@18.2.0)(react@18.2.0)
+ rc-input: 1.4.3(react-dom@18.2.0)(react@18.2.0)
+ rc-input-number: 8.6.1(react-dom@18.2.0)(react@18.2.0)
+ rc-mentions: 2.10.1(react-dom@18.2.0)(react@18.2.0)
rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0)
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
- rc-notification: 5.2.0(react-dom@18.2.0)(react@18.2.0)
- rc-pagination: 3.6.1(react-dom@18.2.0)(react@18.2.0)
+ rc-notification: 5.3.0(react-dom@18.2.0)(react@18.2.0)
+ rc-pagination: 4.0.4(react-dom@18.2.0)(react@18.2.0)
rc-picker: 3.14.6(dayjs@1.11.10)(react-dom@18.2.0)(react@18.2.0)
rc-progress: 3.5.1(react-dom@18.2.0)(react@18.2.0)
rc-rate: 2.12.0(react-dom@18.2.0)(react@18.2.0)
rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0)
rc-segmented: 2.2.2(react-dom@18.2.0)(react@18.2.0)
- rc-select: 14.9.2(react-dom@18.2.0)(react@18.2.0)
- rc-slider: 10.3.1(react-dom@18.2.0)(react@18.2.0)
+ rc-select: 14.11.0(react-dom@18.2.0)(react@18.2.0)
+ rc-slider: 10.5.0(react-dom@18.2.0)(react@18.2.0)
rc-steps: 6.0.1(react-dom@18.2.0)(react@18.2.0)
rc-switch: 4.1.0(react-dom@18.2.0)(react@18.2.0)
- rc-table: 7.34.4(react-dom@18.2.0)(react@18.2.0)
- rc-tabs: 12.12.1(react-dom@18.2.0)(react@18.2.0)
- rc-textarea: 1.4.0(react-dom@18.2.0)(react@18.2.0)
+ rc-table: 7.37.0(react-dom@18.2.0)(react@18.2.0)
+ rc-tabs: 14.0.0(react-dom@18.2.0)(react@18.2.0)
+ rc-textarea: 1.6.3(react-dom@18.2.0)(react@18.2.0)
rc-tooltip: 6.1.3(react-dom@18.2.0)(react@18.2.0)
- rc-tree: 5.7.12(react-dom@18.2.0)(react@18.2.0)
- rc-tree-select: 5.13.0(react-dom@18.2.0)(react@18.2.0)
- rc-upload: 4.3.6(react-dom@18.2.0)(react@18.2.0)
+ rc-tree: 5.8.5(react-dom@18.2.0)(react@18.2.0)
+ rc-tree-select: 5.17.0(react-dom@18.2.0)(react@18.2.0)
+ rc-upload: 4.5.2(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -12252,13 +11706,6 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
- /ast-types@0.15.2:
- resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
- engines: {node: '>=4'}
- dependencies:
- tslib: 2.6.2
- dev: true
-
/ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
@@ -12348,8 +11795,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.2
- caniuse-lite: 1.0.30001579
+ browserslist: 4.22.3
+ caniuse-lite: 1.0.30001581
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -12369,8 +11816,8 @@ packages:
resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==}
dev: false
- /axios@1.6.5:
- resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==}
+ /axios@1.6.7:
+ resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==}
dependencies:
follow-redirects: 1.15.5
form-data: 4.0.0
@@ -12387,12 +11834,12 @@ packages:
'@babel/core': 7.17.12
dev: false
- /babel-core@7.0.0-bridge.0(@babel/core@7.23.7):
+ /babel-core@7.0.0-bridge.0(@babel/core@7.23.9):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
dev: true
/babel-jest@25.1.0(@babel/core@7.17.12):
@@ -12413,18 +11860,18 @@ packages:
- supports-color
dev: false
- /babel-jest@25.5.1(@babel/core@7.23.7):
+ /babel-jest@25.5.1(@babel/core@7.17.12):
resolution: {integrity: sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==}
engines: {node: '>= 8.3'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.17.12
'@jest/transform': 25.5.1
'@jest/types': 25.5.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 25.5.0(@babel/core@7.23.7)
+ babel-preset-jest: 25.5.0(@babel/core@7.17.12)
chalk: 3.0.0
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12432,17 +11879,17 @@ packages:
- supports-color
dev: false
- /babel-jest@29.7.0(@babel/core@7.23.7):
+ /babel-jest@29.7.0(@babel/core@7.23.9):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@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.23.7)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.9)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -12502,8 +11949,8 @@ packages:
resolution: {integrity: sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
'@types/babel__traverse': 7.20.5
dev: false
@@ -12511,8 +11958,8 @@ packages:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.23.6
+ '@babel/template': 7.23.9
+ '@babel/types': 7.23.9
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
@@ -12533,14 +11980,14 @@ packages:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.23.7):
+ /babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.23.9):
resolution: {integrity: sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
'@babel/compat-data': 7.23.5
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -12558,13 +12005,13 @@ packages:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7):
- resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
+ /babel-plugin-polyfill-corejs3@0.9.0(@babel/core@7.23.9):
+ resolution: {integrity: sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
core-js-compat: 3.35.1
transitivePeerDependencies:
- supports-color
@@ -12581,13 +12028,13 @@ packages:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.23.7):
+ /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.23.9):
resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.9)
transitivePeerDependencies:
- supports-color
dev: true
@@ -12597,7 +12044,7 @@ packages:
engines: {node: '>8.0.0'}
dependencies:
'@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.17.12)
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
generic-names: 2.0.1
@@ -12612,24 +12059,7 @@ packages:
- '@babel/core'
dev: false
- /babel-plugin-styled-components@2.1.1(styled-components@6.1.8):
- resolution: {integrity: sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==}
- peerDependencies:
- styled-components: '>= 2'
- dependencies:
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- babel-plugin-syntax-jsx: 6.18.0
- lodash: 4.17.21
- picomatch: 2.3.1
- styled-components: 6.1.8(react-dom@18.2.0)(react@18.2.0)
- dev: false
-
- /babel-plugin-syntax-jsx@6.18.0:
- resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
- dev: false
-
- /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.7):
+ /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.9):
resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==}
peerDependencies:
'@babel/core': ^7
@@ -12638,7 +12068,7 @@ packages:
'@babel/traverse':
optional: true
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -12669,43 +12099,24 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.12)
dev: false
- /babel-preset-current-node-syntax@0.1.4(@babel/core@7.23.7):
- resolution: {integrity: sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- dev: false
-
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.7):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.9):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.9)
/babel-preset-jest@25.5.0(@babel/core@7.17.12):
resolution: {integrity: sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==}
@@ -12718,26 +12129,15 @@ packages:
babel-preset-current-node-syntax: 0.1.4(@babel/core@7.17.12)
dev: false
- /babel-preset-jest@25.5.0(@babel/core@7.23.7):
- resolution: {integrity: sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==}
- engines: {node: '>= 8.3'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.7
- babel-plugin-jest-hoist: 25.5.0
- babel-preset-current-node-syntax: 0.1.4(@babel/core@7.23.7)
- dev: false
-
- /babel-preset-jest@29.6.3(@babel/core@7.23.7):
+ /babel-preset-jest@29.6.3(@babel/core@7.23.9):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.9)
/babel-runtime@6.26.0:
resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
@@ -13150,15 +12550,15 @@ packages:
pako: 1.0.11
dev: false
- /browserslist@4.22.2:
- resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
+ /browserslist@4.22.3:
+ resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001579
- electron-to-chromium: 1.4.640
+ caniuse-lite: 1.0.30001581
+ electron-to-chromium: 1.4.651
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.22.2)
+ update-browserslist-db: 1.0.13(browserslist@4.22.3)
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -13404,17 +12804,17 @@ packages:
/caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.22.2
- caniuse-lite: 1.0.30001579
+ browserslist: 4.22.3
+ caniuse-lite: 1.0.30001581
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite@1.0.30001579:
- resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==}
+ /caniuse-lite@1.0.30001581:
+ resolution: {integrity: sha512-whlTkwhqV2tUmP3oYhtNfaWGYHDdS3JYFQBKXxcUR9qqPWsRhFHhoISO2Xnl/g0xyKzht9mI1LZpiNWfMzHixQ==}
- /canvas-confetti@1.9.0:
- resolution: {integrity: sha512-0UGU/T5Un/Cd4Aj4fu/p/oVQm8Il+brK5xcmY+y77u7PXuyNJD4ODUWe01A5o3GUI9Bb8lOBlQ10VdaDsY1FBA==}
+ /canvas-confetti@1.9.2:
+ resolution: {integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==}
dev: false
/canvas-fit@1.5.0:
@@ -13709,10 +13109,6 @@ packages:
static-extend: 0.1.2
dev: false
- /classnames@2.3.2:
- resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
- dev: false
-
/classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
dev: false
@@ -13791,12 +13187,12 @@ packages:
resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
dev: false
- /click-to-react-component@1.1.0(@types/react@18.2.28)(react-dom@18.1.0)(react@18.1.0):
+ /click-to-react-component@1.1.0(@types/react@18.2.48)(react-dom@18.1.0)(react@18.1.0):
resolution: {integrity: sha512-/DjZemufS1BkxyRgZL3r7HXVVOFRWVQi5Xd4EBnjxZMwrHEh0OlUVA2N9CjXkZ0x8zMf8dL1cKnnx+xUWUg4VA==}
peerDependencies:
react: '>=16.8.0'
dependencies:
- '@floating-ui/react-dom-interactions': 0.3.1(@types/react@18.2.28)(react-dom@18.1.0)(react@18.1.0)
+ '@floating-ui/react-dom-interactions': 0.3.1(@types/react@18.2.48)(react-dom@18.1.0)(react@18.1.0)
htm: 3.1.1
react: 18.1.0
react-merge-refs: 1.1.0
@@ -13937,13 +13333,13 @@ packages:
/codemirror@6.0.1(@lezer/common@1.2.1):
resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==}
dependencies:
- '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.1)
+ '@codemirror/autocomplete': 6.12.0(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.1)(@lezer/common@1.2.1)
'@codemirror/commands': 6.3.3
'@codemirror/language': 6.10.0
- '@codemirror/lint': 6.4.2
+ '@codemirror/lint': 6.5.0
'@codemirror/search': 6.5.5
'@codemirror/state': 6.4.0
- '@codemirror/view': 6.23.0
+ '@codemirror/view': 6.23.1
transitivePeerDependencies:
- '@lezer/common'
dev: false
@@ -14556,7 +13952,7 @@ packages:
/core-js-compat@3.35.1:
resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
/core-js-pure@3.35.1:
resolution: {integrity: sha512-zcIdi/CL3MWbBJYo5YCeVAAx+Sy9yJE9I3/u9LkFABwbeaPhTMRWraM8mYFp9jW5Z50hOy7FVzCc8dCrpZqtIQ==}
@@ -14569,8 +13965,8 @@ packages:
requiresBuild: true
dev: false
- /core-js@3.28.0:
- resolution: {integrity: sha512-GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw==}
+ /core-js@3.34.0:
+ resolution: {integrity: sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==}
requiresBuild: true
dev: false
@@ -14589,7 +13985,7 @@ packages:
vary: 1.1.2
dev: false
- /cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.1)(typescript@5.2.2):
+ /cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6)(ts-node@10.9.2)(typescript@5.3.3):
resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==}
engines: {node: '>=v14.21.3'}
peerDependencies:
@@ -14599,9 +13995,9 @@ packages:
typescript: '>=4'
dependencies:
'@types/node': 20.5.1
- cosmiconfig: 8.3.6(typescript@5.2.2)
- ts-node: 10.9.1(@types/node@20.5.1)(typescript@5.2.2)
- typescript: 5.2.2
+ cosmiconfig: 8.3.6(typescript@5.3.3)
+ ts-node: 10.9.2(@types/node@20.5.1)(typescript@5.3.3)
+ typescript: 5.3.3
dev: true
/cosmiconfig@5.2.1:
@@ -14636,7 +14032,7 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig@8.3.6(typescript@5.2.2):
+ /cosmiconfig@8.3.6(typescript@5.3.3):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -14649,7 +14045,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.2.2
+ typescript: 5.3.3
dev: true
/country-regex@1.1.0:
@@ -14684,7 +14080,7 @@ packages:
sha.js: 2.4.11
dev: false
- /create-jest@29.7.0(@types/node@18.16.19)(ts-node@10.9.1):
+ /create-jest@29.7.0(@types/node@18.19.11)(ts-node@10.9.2):
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -14693,7 +14089,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@18.16.19)(ts-node@10.9.1)
+ jest-config: 29.7.0(@types/node@18.19.11)(ts-node@10.9.2)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -14864,7 +14260,7 @@ packages:
webpack: 4.41.5
dev: false
- /css-loader@6.7.1(webpack@5.89.0):
+ /css-loader@6.7.1(webpack@5.90.0):
resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -14878,7 +14274,7 @@ packages:
postcss-modules-values: 4.0.0(postcss@8.4.33)
postcss-value-parser: 4.2.0
semver: 7.5.4
- webpack: 5.89.0(esbuild@0.17.19)
+ webpack: 5.90.0(esbuild@0.17.19)
dev: false
/css-modules-loader-core@1.1.0:
@@ -14981,7 +14377,7 @@ packages:
/css-vendor@2.0.8:
resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
is-in-browser: 1.1.3
dev: false
@@ -15213,7 +14609,7 @@ packages:
resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==}
engines: {node: '>=12'}
dependencies:
- delaunator: 5.0.0
+ delaunator: 5.0.1
dev: false
/d3-dispatch@1.0.6:
@@ -15565,7 +14961,7 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/dateformat@3.0.3:
@@ -15919,8 +15315,8 @@ packages:
slash: 3.0.0
dev: true
- /delaunator@5.0.0:
- resolution: {integrity: sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==}
+ /delaunator@5.0.1:
+ resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==}
dependencies:
robust-predicates: 3.0.2
dev: false
@@ -16135,7 +15531,7 @@ packages:
/dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
csstype: 3.1.3
dev: false
@@ -16255,7 +15651,7 @@ packages:
hasBin: true
dependencies:
cross-spawn: 7.0.3
- dotenv: 16.3.2
+ dotenv: 16.4.1
dotenv-expand: 10.0.0
minimist: 1.2.8
dev: true
@@ -16270,6 +15666,11 @@ packages:
engines: {node: '>=12'}
dev: true
+ /dotenv@16.4.1:
+ resolution: {integrity: sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==}
+ engines: {node: '>=12'}
+ dev: true
+
/draw-svg-path@1.0.0:
resolution: {integrity: sha512-P8j3IHxcgRMcY6sDzr0QvJDLzBnJJqpTG33UZ2Pvp8rw0apCHhJCWqYprqrXjrgHnJ6tuhP1iTJSAodPDHxwkg==}
dependencies:
@@ -16349,8 +15750,8 @@ packages:
jake: 10.8.7
dev: true
- /electron-to-chromium@1.4.640:
- resolution: {integrity: sha512-z/6oZ/Muqk4BaE7P69bXhUhpJbUM9ZJeka43ZwxsDshKtePns4mhBlh8bU5+yrnOnz3fhG82XLzGUXazOmsWnA==}
+ /electron-to-chromium@1.4.651:
+ resolution: {integrity: sha512-jjks7Xx+4I7dslwsbaFocSwqBbGHQmuXBJUK9QBZTIrzPq3pzn6Uf2szFSP728FtLYE3ldiccmlkOM/zhGKCpA==}
/element-size@1.1.1:
resolution: {integrity: sha512-eaN+GMOq/Q+BIWy0ybsgpcYImjGIdNLyjLFJU4XsLHXYQao5jCNb36GyN6C2qwmDDYSfIBmKpPpr4VnBdLCsPQ==}
@@ -16928,13 +16329,13 @@ packages:
eslint: 7.18.0
dev: false
- /eslint-config-prettier@8.10.0(eslint@8.52.0):
+ /eslint-config-prettier@8.10.0(eslint@8.56.0):
resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.52.0
+ eslint: 8.56.0
dev: true
/eslint-import-resolver-node@0.3.9:
@@ -16968,7 +16369,7 @@ packages:
- supports-color
dev: false
- /eslint-mdx@2.3.4(eslint@8.52.0):
+ /eslint-mdx@2.3.4(eslint@8.56.0):
resolution: {integrity: sha512-u4NszEUyoGtR7Q0A4qs0OymsEQdCO6yqWlTzDa9vGWsK7aMotdnW0hqifHTkf6lEtA2vHk2xlkWHTCrhYLyRbw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -16976,7 +16377,7 @@ packages:
dependencies:
acorn: 8.11.3
acorn-jsx: 5.3.2(acorn@8.11.3)
- eslint: 8.52.0
+ eslint: 8.56.0
espree: 9.6.1
estree-util-visit: 1.2.1
remark-mdx: 2.3.0
@@ -16993,35 +16394,6 @@ packages:
- supports-color
dev: true
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.52.0):
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
- dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
- debug: 3.2.7
- eslint: 8.52.0
- eslint-import-resolver-node: 0.3.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
@@ -17049,7 +16421,6 @@ packages:
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- dev: false
/eslint-plugin-babel@5.3.1(eslint@7.18.0):
resolution: {integrity: sha512-VsQEr6NH3dj664+EyxJwO4FCYm/00JhYb3Sk3ft8o+fpKuIfQ9TaW6uVUfvwMXHcf/lsnRIoyFPsLMyiWCSL/g==}
@@ -17092,8 +16463,8 @@ packages:
- supports-color
dev: false
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@5.62.0)(eslint@8.52.0):
- resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint@8.56.0):
+ resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -17102,17 +16473,17 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.52.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.52.0
+ eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.52.0)
- has: 1.0.4
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0)
+ hasown: 2.0.0
is-core-module: 2.13.1
is-glob: 4.0.3
minimatch: 3.1.2
@@ -17143,33 +16514,33 @@ packages:
'@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
- jest: 29.7.0(@types/node@18.16.19)(ts-node@10.9.1)
+ jest: 29.7.0(@types/node@18.19.11)(ts-node@10.9.2)
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /eslint-plugin-markdown@3.0.1(eslint@8.52.0):
+ /eslint-plugin-markdown@3.0.1(eslint@8.56.0):
resolution: {integrity: sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.52.0
+ eslint: 8.56.0
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-mdx@2.2.0(eslint@8.52.0):
- resolution: {integrity: sha512-OseoMXUIr8iy3E0me+wJLVAxuB0kxHP1plxuYAJDynzorzOj2OKv8Fhr+rIOJ32zfl3bnEWsqFnUiCnyznr1JQ==}
+ /eslint-plugin-mdx@2.3.4(eslint@8.56.0):
+ resolution: {integrity: sha512-kr6tgaifKL+AVGYMtdYc2VCsIjfYQXuUCKz4rK58d2DpnPFHrmgXIOC7NcMvaEld+VOEpxBSCCnjnsf4IVCQGg==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '>=8.0.0'
dependencies:
- eslint: 8.52.0
- eslint-mdx: 2.3.4(eslint@8.52.0)
- eslint-plugin-markdown: 3.0.1(eslint@8.52.0)
+ eslint: 8.56.0
+ eslint-mdx: 2.3.4(eslint@8.56.0)
+ eslint-plugin-markdown: 3.0.1(eslint@8.56.0)
remark-mdx: 2.3.0
remark-parse: 10.0.2
remark-stringify: 10.0.3
@@ -17180,32 +16551,23 @@ packages:
- supports-color
dev: true
- /eslint-plugin-promise@6.1.1(eslint@8.52.0):
+ /eslint-plugin-promise@6.1.1(eslint@8.56.0):
resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- eslint: 8.52.0
+ eslint: 8.56.0
dev: true
/eslint-plugin-react-hooks@4.2.0(eslint@7.18.0):
- resolution: {integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==}
- engines: {node: '>=10'}
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- dependencies:
- eslint: 7.18.0
- dev: false
-
- /eslint-plugin-react-hooks@4.6.0(eslint@8.52.0):
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ resolution: {integrity: sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==}
engines: {node: '>=10'}
peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
dependencies:
- eslint: 8.52.0
- dev: true
+ eslint: 7.18.0
+ dev: false
/eslint-plugin-react-hooks@4.6.0(eslint@8.56.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
@@ -17215,8 +16577,8 @@ packages:
dependencies:
eslint: 8.56.0
- /eslint-plugin-react-refresh@0.4.3(eslint@8.56.0):
- resolution: {integrity: sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==}
+ /eslint-plugin-react-refresh@0.4.5(eslint@8.56.0):
+ resolution: {integrity: sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==}
peerDependencies:
eslint: '>=7'
dependencies:
@@ -17243,31 +16605,6 @@ packages:
string.prototype.matchall: 4.0.10
dev: false
- /eslint-plugin-react@7.33.2(eslint@8.52.0):
- resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
- dependencies:
- array-includes: 3.1.7
- array.prototype.flatmap: 1.3.2
- array.prototype.tosorted: 1.1.2
- doctrine: 2.1.0
- es-iterator-helpers: 1.0.15
- eslint: 8.52.0
- estraverse: 5.3.0
- jsx-ast-utils: 3.3.5
- minimatch: 3.1.2
- object.entries: 1.1.7
- object.fromentries: 2.0.7
- object.hasown: 1.1.3
- object.values: 1.1.7
- prop-types: 15.8.1
- resolve: 2.0.0-next.5
- semver: 6.3.1
- string.prototype.matchall: 4.0.10
- dev: true
-
/eslint-plugin-react@7.33.2(eslint@8.56.0):
resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
engines: {node: '>=4'}
@@ -17291,7 +16628,6 @@ packages:
resolve: 2.0.0-next.5
semver: 6.3.1
string.prototype.matchall: 4.0.10
- dev: false
/eslint-plugin-storybook@0.6.15(eslint@8.56.0)(typescript@5.3.3):
resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==}
@@ -17403,53 +16739,6 @@ packages:
- supports-color
dev: false
- /eslint@8.52.0:
- resolution: {integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- hasBin: true
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.52.0)
- '@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.52.0
- '@humanwhocodes/config-array': 0.11.14
- '@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
- ajv: 6.12.6
- chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
- escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- esquery: 1.5.0
- esutils: 2.0.3
- fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- find-up: 5.0.0
- glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
- ignore: 5.3.0
- imurmurhash: 0.1.4
- is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
- json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
- natural-compare: 1.4.0
- optionator: 0.9.3
- strip-ansi: 6.0.1
- text-table: 0.2.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/eslint@8.56.0:
resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -17545,7 +16834,7 @@ packages:
/estree-util-visit@1.2.1:
resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
dependencies:
- '@types/estree-jsx': 1.0.3
+ '@types/estree-jsx': 1.0.4
'@types/unist': 2.0.10
dev: true
@@ -18027,8 +17316,8 @@ packages:
resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
dev: false
- /fastq@1.16.0:
- resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
+ /fastq@1.17.0:
+ resolution: {integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==}
dependencies:
reusify: 1.0.4
@@ -18485,7 +17774,7 @@ packages:
webpack: 4.41.5
dev: false
- /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.3.3)(webpack@5.89.0):
+ /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.3.3)(webpack@5.90.0):
resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==}
engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
@@ -18505,7 +17794,7 @@ packages:
semver: 7.5.4
tapable: 2.2.1
typescript: 5.3.3
- webpack: 5.89.0(esbuild@0.17.19)
+ webpack: 5.90.0(esbuild@0.17.19)
dev: false
/form-data@2.3.3:
@@ -18846,7 +18135,7 @@ packages:
consola: 3.2.3
defu: 6.1.4
node-fetch-native: 1.6.1
- nypm: 0.3.4
+ nypm: 0.3.6
ohash: 1.1.3
pathe: 1.1.2
tar: 6.2.0
@@ -19039,17 +18328,6 @@ packages:
path-is-absolute: 1.0.1
dev: false
- /glob@7.1.4:
- resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==}
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
- dev: true
-
/glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -19688,6 +18966,7 @@ packages:
/has@1.0.4:
resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==}
engines: {node: '>= 0.4.0'}
+ dev: false
/hash-base@3.1.0:
resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
@@ -19741,7 +19020,7 @@ packages:
/hast-util-raw@6.0.1:
resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
dependencies:
- '@types/hast': 2.3.9
+ '@types/hast': 2.3.10
hast-util-from-parse5: 6.0.1
hast-util-to-parse5: 6.0.0
html-void-elements: 1.0.5
@@ -19766,7 +19045,7 @@ packages:
/hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
dependencies:
- '@types/hast': 2.3.9
+ '@types/hast': 2.3.10
comma-separated-tokens: 1.0.8
hast-util-parse-selector: 2.2.5
property-information: 5.6.0
@@ -19795,7 +19074,7 @@ packages:
/history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.1
@@ -19806,7 +19085,7 @@ packages:
/history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/hmac-drbg@1.0.1:
@@ -19946,7 +19225,7 @@ packages:
webpack: 4.41.5
dev: false
- /html-webpack-plugin@5.5.0(webpack@5.89.0):
+ /html-webpack-plugin@5.5.0(webpack@5.90.0):
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -19957,7 +19236,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.89.0(esbuild@0.17.19)
+ webpack: 5.90.0(esbuild@0.17.19)
dev: false
/htmlparser2@6.1.0:
@@ -20241,8 +19520,8 @@ packages:
dev: false
optional: true
- /immutable@4.3.4:
- resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
+ /immutable@4.3.5:
+ resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
dev: false
/import-fresh@2.0.0:
@@ -21182,7 +20461,7 @@ packages:
resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.17.12
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -21194,8 +20473,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.7
- '@babel/parser': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/parser': 7.23.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -21206,8 +20485,8 @@ packages:
resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.23.7
- '@babel/parser': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/parser': 7.23.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.5.4
@@ -21293,7 +20572,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
@@ -21339,7 +20618,7 @@ packages:
- utf-8-validate
dev: false
- /jest-cli@29.7.0(@types/node@18.16.19)(ts-node@10.9.1):
+ /jest-cli@29.7.0(@types/node@18.19.11)(ts-node@10.9.2):
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -21349,14 +20628,14 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.1)
+ '@jest/core': 29.7.0(ts-node@10.9.2)
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@18.16.19)(ts-node@10.9.1)
+ create-jest: 29.7.0(@types/node@18.19.11)(ts-node@10.9.2)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@18.16.19)(ts-node@10.9.1)
+ jest-config: 29.7.0(@types/node@18.19.11)(ts-node@10.9.2)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -21370,10 +20649,10 @@ packages:
resolution: {integrity: sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.17.12
'@jest/test-sequencer': 25.5.4
'@jest/types': 25.5.0
- babel-jest: 25.5.1(@babel/core@7.23.7)
+ babel-jest: 25.5.1(@babel/core@7.17.12)
chalk: 3.0.0
deepmerge: 4.3.1
glob: 7.2.3
@@ -21396,7 +20675,7 @@ packages:
- utf-8-validate
dev: false
- /jest-config@29.7.0(@types/node@18.16.19)(ts-node@10.9.1):
+ /jest-config@29.7.0(@types/node@18.19.11)(ts-node@10.9.2):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -21408,11 +20687,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.16.19
- babel-jest: 29.7.0(@babel/core@7.23.7)
+ '@types/node': 18.19.11
+ babel-jest: 29.7.0(@babel/core@7.23.9)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -21431,12 +20710,12 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1(@types/node@18.16.19)(typescript@5.2.2)
+ ts-node: 10.9.2(@types/node@18.19.11)(typescript@5.3.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- /jest-config@29.7.0(@types/node@18.19.8)(ts-node@10.9.1):
+ /jest-config@29.7.0(@types/node@20.5.1)(ts-node@10.9.2):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -21448,11 +20727,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
- babel-jest: 29.7.0(@babel/core@7.23.7)
+ '@types/node': 20.5.1
+ babel-jest: 29.7.0(@babel/core@7.23.9)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -21471,7 +20750,7 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1(@types/node@18.16.19)(typescript@5.2.2)
+ ts-node: 10.9.2(@types/node@18.19.11)(typescript@5.3.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -21574,7 +20853,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -21620,7 +20899,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -21636,7 +20915,7 @@ packages:
resolution: {integrity: sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/traverse': 7.23.7
+ '@babel/traverse': 7.23.9
'@jest/environment': 25.5.0
'@jest/source-map': 25.5.0
'@jest/test-result': 25.5.0
@@ -21734,7 +21013,7 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
dev: true
/jest-mock@29.7.0:
@@ -21742,7 +21021,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
jest-util: 29.7.0
/jest-pnp-resolver@1.2.3(jest-resolve@25.5.1):
@@ -21863,7 +21142,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -21931,7 +21210,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -21960,7 +21239,7 @@ packages:
resolution: {integrity: sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/types': 7.23.6
+ '@babel/types': 7.23.9
'@jest/types': 25.5.0
'@types/prettier': 1.19.1
chalk: 3.0.0
@@ -21981,15 +21260,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.23.7
+ '@babel/core': 7.23.9
'@babel/generator': 7.23.6
- '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.7)
- '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.7)
- '@babel/types': 7.23.6
+ '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/types': 7.23.9
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.7)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.9)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -22020,7 +21299,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -22067,7 +21346,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -22086,7 +21365,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
@@ -22095,7 +21374,7 @@ packages:
resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.11.13
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -22105,7 +21384,7 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 20.5.1
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -22125,7 +21404,7 @@ packages:
- utf-8-validate
dev: false
- /jest@29.7.0(@types/node@18.16.19)(ts-node@10.9.1):
+ /jest@29.7.0(@types/node@18.19.11)(ts-node@10.9.2):
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -22135,10 +21414,10 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.1)
+ '@jest/core': 29.7.0(ts-node@10.9.2)
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@18.16.19)(ts-node@10.9.1)
+ jest-cli: 29.7.0(@types/node@18.19.11)(ts-node@10.9.2)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -22178,30 +21457,34 @@ packages:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
dev: false
- /jscodeshift@0.14.0(@babel/preset-env@7.23.8):
- resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
+ /jscodeshift@0.15.1(@babel/preset-env@7.23.9):
+ resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
+ peerDependenciesMeta:
+ '@babel/preset-env':
+ optional: true
dependencies:
- '@babel/core': 7.23.7
- '@babel/parser': 7.23.6
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.7)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.7)
- '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-env': 7.23.8(@babel/core@7.23.7)
- '@babel/preset-flow': 7.23.3(@babel/core@7.23.7)
- '@babel/preset-typescript': 7.23.3(@babel/core@7.23.7)
- '@babel/register': 7.23.7(@babel/core@7.23.7)
- babel-core: 7.0.0-bridge.0(@babel/core@7.23.7)
+ '@babel/core': 7.23.9
+ '@babel/parser': 7.23.9
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.9)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-env': 7.23.9(@babel/core@7.23.9)
+ '@babel/preset-flow': 7.23.3(@babel/core@7.23.9)
+ '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9)
+ '@babel/register': 7.23.7(@babel/core@7.23.9)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.23.9)
chalk: 4.1.2
flow-parser: 0.227.0
graceful-fs: 4.2.11
micromatch: 4.0.5
neo-async: 2.6.2
node-dir: 0.1.17
- recast: 0.21.5
+ recast: 0.23.4
temp: 0.8.4
write-file-atomic: 2.4.3
transitivePeerDependencies:
@@ -22362,6 +21645,10 @@ packages:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
dev: true
+ /jsonc-parser@3.2.1:
+ resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==}
+ dev: true
+
/jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
@@ -22396,7 +21683,7 @@ packages:
/jss-plugin-camel-case@10.10.0:
resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
hyphenate-style-name: 1.0.4
jss: 10.10.0
dev: false
@@ -22404,21 +21691,21 @@ packages:
/jss-plugin-default-unit@10.10.0:
resolution: {integrity: sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
jss: 10.10.0
dev: false
/jss-plugin-global@10.10.0:
resolution: {integrity: sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
jss: 10.10.0
dev: false
/jss-plugin-nested@10.10.0:
resolution: {integrity: sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
jss: 10.10.0
tiny-warning: 1.0.3
dev: false
@@ -22426,14 +21713,14 @@ packages:
/jss-plugin-props-sort@10.10.0:
resolution: {integrity: sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
jss: 10.10.0
dev: false
/jss-plugin-rule-value-function@10.10.0:
resolution: {integrity: sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
jss: 10.10.0
tiny-warning: 1.0.3
dev: false
@@ -22441,7 +21728,7 @@ packages:
/jss-plugin-vendor-prefixer@10.10.0:
resolution: {integrity: sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
css-vendor: 2.0.8
jss: 10.10.0
dev: false
@@ -22449,7 +21736,7 @@ packages:
/jss@10.10.0:
resolution: {integrity: sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
csstype: 3.1.3
is-in-browser: 1.1.3
tiny-warning: 1.0.3
@@ -22690,7 +21977,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
app-root-dir: 1.0.2
- dotenv: 16.3.2
+ dotenv: 16.4.1
dotenv-expand: 10.0.0
dev: true
@@ -22722,6 +22009,12 @@ packages:
flush-write-stream: 1.1.1
dev: false
+ /less-plugin-resolve@1.0.2:
+ resolution: {integrity: sha512-e1AHq0XNTU8S3d9JCc8CFYajoUBr0EK3pcuLT5PogyBBeE0knzZJL105kKKSZWfq2lQLq3/uEDrMK3JPq+fHaA==}
+ dependencies:
+ enhanced-resolve: 5.15.0
+ dev: false
+
/less@3.13.1:
resolution: {integrity: sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==}
engines: {node: '>=6'}
@@ -22800,8 +22093,8 @@ packages:
- supports-color
dev: false
- /lightningcss-darwin-arm64@1.19.0:
- resolution: {integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==}
+ /lightningcss-darwin-arm64@1.22.1:
+ resolution: {integrity: sha512-ldvElu+R0QimNTjsKpaZkUv3zf+uefzLy/R1R19jtgOfSRM+zjUCUgDhfEDRmVqJtMwYsdhMI2aJtJChPC6Osg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
@@ -22809,8 +22102,8 @@ packages:
dev: false
optional: true
- /lightningcss-darwin-x64@1.19.0:
- resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==}
+ /lightningcss-darwin-x64@1.22.1:
+ resolution: {integrity: sha512-5p2rnlVTv6Gpw4PlTLq925nTVh+HFh4MpegX8dPDYJae+NFVjQ67gY7O6iHIzQjLipDiYejFF0yHrhjU3XgLBQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
@@ -22818,8 +22111,17 @@ packages:
dev: false
optional: true
- /lightningcss-linux-arm-gnueabihf@1.19.0:
- resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==}
+ /lightningcss-freebsd-x64@1.22.1:
+ resolution: {integrity: sha512-1FaBtcFrZqB2hkFbAxY//Pnp8koThvyB6AhjbdVqKD4/pu13Rl91fKt2N9qyeQPUt3xy7ORUvSO+dPk3J6EjXg==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /lightningcss-linux-arm-gnueabihf@1.22.1:
+ resolution: {integrity: sha512-6rub98tYGfE5I5j0BP8t/2d4BZyu1S7Iz9vUkm0H26snAFHYxLfj3RbQn0xHHIePSetjLnhcg3QlfwUAkD/FYg==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
@@ -22827,8 +22129,8 @@ packages:
dev: false
optional: true
- /lightningcss-linux-arm64-gnu@1.19.0:
- resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==}
+ /lightningcss-linux-arm64-gnu@1.22.1:
+ resolution: {integrity: sha512-nYO5qGtb/1kkTZu3FeTiM+2B2TAb7m2DkLCTgQIs2bk2o9aEs7I96fwySKcoHWQAiQDGR9sMux9vkV4KQXqPaQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -22837,8 +22139,8 @@ packages:
dev: false
optional: true
- /lightningcss-linux-arm64-musl@1.19.0:
- resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==}
+ /lightningcss-linux-arm64-musl@1.22.1:
+ resolution: {integrity: sha512-MCV6RuRpzXbunvzwY644iz8cw4oQxvW7oer9xPkdadYqlEyiJJ6wl7FyJOH7Q6ZYH4yjGAUCvxDBxPbnDu9ZVg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -22847,8 +22149,8 @@ packages:
dev: false
optional: true
- /lightningcss-linux-x64-gnu@1.19.0:
- resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==}
+ /lightningcss-linux-x64-gnu@1.22.1:
+ resolution: {integrity: sha512-RjNgpdM20VUXgV7us/VmlO3Vn2ZRiDnc3/bUxCVvySZWPiVPprpqW/QDWuzkGa+NCUf6saAM5CLsZLSxncXJwg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -22857,8 +22159,8 @@ packages:
dev: false
optional: true
- /lightningcss-linux-x64-musl@1.19.0:
- resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==}
+ /lightningcss-linux-x64-musl@1.22.1:
+ resolution: {integrity: sha512-ZgO4C7Rd6Hv/5MnyY2KxOYmIlzk4rplVolDt3NbkNR8DndnyX0Q5IR4acJWNTBICQ21j3zySzKbcJaiJpk/4YA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -22867,8 +22169,8 @@ packages:
dev: false
optional: true
- /lightningcss-win32-x64-msvc@1.19.0:
- resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==}
+ /lightningcss-win32-x64-msvc@1.22.1:
+ resolution: {integrity: sha512-4pozV4eyD0MDET41ZLHAeBo+H04Nm2UEYIk5w/ts40231dRFV7E0cjwbnZvSoc1DXFgecAhiC0L16ruv/ZDCpg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
@@ -22876,20 +22178,21 @@ packages:
dev: false
optional: true
- /lightningcss@1.19.0:
- resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==}
+ /lightningcss@1.22.1:
+ resolution: {integrity: sha512-Fy45PhibiNXkm0cK5FJCbfO8Y6jUpD/YcHf/BtuI+jvYYqSXKF4muk61jjE8YxCR9y+hDYIWSzHTc+bwhDE6rQ==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.19.0
- lightningcss-darwin-x64: 1.19.0
- lightningcss-linux-arm-gnueabihf: 1.19.0
- lightningcss-linux-arm64-gnu: 1.19.0
- lightningcss-linux-arm64-musl: 1.19.0
- lightningcss-linux-x64-gnu: 1.19.0
- lightningcss-linux-x64-musl: 1.19.0
- lightningcss-win32-x64-msvc: 1.19.0
+ lightningcss-darwin-arm64: 1.22.1
+ lightningcss-darwin-x64: 1.22.1
+ lightningcss-freebsd-x64: 1.22.1
+ lightningcss-linux-arm-gnueabihf: 1.22.1
+ lightningcss-linux-arm64-gnu: 1.22.1
+ lightningcss-linux-arm64-musl: 1.22.1
+ lightningcss-linux-x64-gnu: 1.22.1
+ lightningcss-linux-x64-musl: 1.22.1
+ lightningcss-win32-x64-msvc: 1.22.1
dev: false
/lilconfig@2.1.0:
@@ -23295,8 +22598,8 @@ packages:
wrap-ansi: 8.1.0
dev: true
- /loglevel@1.8.1:
- resolution: {integrity: sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg==}
+ /loglevel@1.9.1:
+ resolution: {integrity: sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==}
engines: {node: '>= 0.6.0'}
dev: false
@@ -23355,8 +22658,8 @@ packages:
engines: {node: '>=8'}
dev: false
- /lru-cache@10.1.0:
- resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
+ /lru-cache@10.2.0:
+ resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
engines: {node: 14 || >=16.14}
dev: true
@@ -23570,8 +22873,8 @@ packages:
resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
dev: true
- /markdown-to-jsx@7.4.0(react@18.2.0):
- resolution: {integrity: sha512-zilc+MIkVVXPyTb4iIUTIz9yyqfcWjszGXnwF9K/aiBWcHXFcmdEMTkG01/oQhwSCH7SY1BnG6+ev5BzWmbPrg==}
+ /markdown-to-jsx@7.4.1(react@18.2.0):
+ resolution: {integrity: sha512-GbrbkTnHp9u6+HqbPRFJbObi369AgJNXi/sGqq5HRsoZW063xR1XDCaConqq+whfEIAlzB1YPnOgsPc7B7bc/A==}
engines: {node: '>= 10'}
peerDependencies:
react: '>= 0.14.0'
@@ -23750,8 +23053,8 @@ packages:
/mdast-util-mdx-expression@1.3.2:
resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
dependencies:
- '@types/estree-jsx': 1.0.3
- '@types/hast': 2.3.9
+ '@types/estree-jsx': 1.0.4
+ '@types/hast': 2.3.10
'@types/mdast': 3.0.15
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -23762,8 +23065,8 @@ packages:
/mdast-util-mdx-jsx@2.1.4:
resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==}
dependencies:
- '@types/estree-jsx': 1.0.3
- '@types/hast': 2.3.9
+ '@types/estree-jsx': 1.0.4
+ '@types/hast': 2.3.10
'@types/mdast': 3.0.15
'@types/unist': 2.0.10
ccount: 2.0.1
@@ -23793,8 +23096,8 @@ packages:
/mdast-util-mdxjs-esm@1.3.1:
resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
dependencies:
- '@types/estree-jsx': 1.0.3
- '@types/hast': 2.3.9
+ '@types/estree-jsx': 1.0.4
+ '@types/hast': 2.3.10
'@types/mdast': 3.0.15
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -24541,7 +23844,7 @@ packages:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
prop-types: 15.8.1
react: 16.14.0
tiny-warning: 1.0.3
@@ -24568,12 +23871,6 @@ packages:
resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
dev: false
- /minimatch@3.0.5:
- resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
- dependencies:
- brace-expansion: 1.1.11
- dev: true
-
/minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
@@ -24733,7 +24030,7 @@ packages:
resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
dev: false
- /monaco-editor-webpack-plugin@7.1.0(monaco-editor@0.45.0)(webpack@5.89.0):
+ /monaco-editor-webpack-plugin@7.1.0(monaco-editor@0.45.0)(webpack@5.90.0):
resolution: {integrity: sha512-ZjnGINHN963JQkFqjjcBtn1XBtUATDZBMgNQhDQwd78w2ukRhFXAPNgWuacaQiDZsUr4h1rWv5Mv6eriKuOSzA==}
peerDependencies:
monaco-editor: '>= 0.31.0'
@@ -24741,7 +24038,7 @@ packages:
dependencies:
loader-utils: 2.0.4
monaco-editor: 0.45.0
- webpack: 5.89.0(esbuild@0.17.19)
+ webpack: 5.90.0(esbuild@0.17.19)
dev: false
/monaco-editor@0.45.0:
@@ -25206,8 +24503,8 @@ packages:
resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==}
dev: false
- /nx@17.2.0:
- resolution: {integrity: sha512-Nig9IiSoZ4DtxzVKZU1rKPW8hvJ2FcAniUCVXXMfI39lGf02b97L4NOh2MifOCtbPoZv6NmSmwBVqOylDRajvg==}
+ /nx@17.3.1:
+ resolution: {integrity: sha512-D7moIq+0D9WSjQmkVsce7GxKF603XASGBTApX6+fAdl2KN3aGG8zPlOEE55sVT0/OsdHeoHXPmydL/egTpG2WQ==}
hasBin: true
requiresBuild: true
peerDependencies:
@@ -25219,11 +24516,11 @@ packages:
'@swc/core':
optional: true
dependencies:
- '@nrwl/tao': 17.2.0
+ '@nrwl/tao': 17.3.1
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.0-rc.46
'@zkochan/js-yaml': 0.0.6
- axios: 1.6.5
+ axios: 1.6.7
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -25234,16 +24531,16 @@ packages:
figures: 3.2.0
flat: 5.0.2
fs-extra: 11.2.0
- glob: 7.1.4
ignore: 5.3.0
jest-diff: 29.7.0
js-yaml: 4.1.0
jsonc-parser: 3.2.0
lines-and-columns: 2.0.4
- minimatch: 3.0.5
+ minimatch: 9.0.3
node-machine-id: 1.1.12
npm-run-path: 4.0.1
open: 8.4.2
+ ora: 5.3.0
semver: 7.5.3
string-width: 4.2.3
strong-log-transformer: 2.1.0
@@ -25254,22 +24551,22 @@ packages:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 17.2.0
- '@nx/nx-darwin-x64': 17.2.0
- '@nx/nx-freebsd-x64': 17.2.0
- '@nx/nx-linux-arm-gnueabihf': 17.2.0
- '@nx/nx-linux-arm64-gnu': 17.2.0
- '@nx/nx-linux-arm64-musl': 17.2.0
- '@nx/nx-linux-x64-gnu': 17.2.0
- '@nx/nx-linux-x64-musl': 17.2.0
- '@nx/nx-win32-arm64-msvc': 17.2.0
- '@nx/nx-win32-x64-msvc': 17.2.0
+ '@nx/nx-darwin-arm64': 17.3.1
+ '@nx/nx-darwin-x64': 17.3.1
+ '@nx/nx-freebsd-x64': 17.3.1
+ '@nx/nx-linux-arm-gnueabihf': 17.3.1
+ '@nx/nx-linux-arm64-gnu': 17.3.1
+ '@nx/nx-linux-arm64-musl': 17.3.1
+ '@nx/nx-linux-x64-gnu': 17.3.1
+ '@nx/nx-linux-x64-musl': 17.3.1
+ '@nx/nx-win32-arm64-msvc': 17.3.1
+ '@nx/nx-win32-x64-msvc': 17.3.1
transitivePeerDependencies:
- debug
dev: true
- /nypm@0.3.4:
- resolution: {integrity: sha512-1JLkp/zHBrkS3pZ692IqOaIKSYHmQXgqfELk6YTOfVBnwealAmPA1q2kKK7PHJAHSMBozerThEFZXP3G6o7Ukg==}
+ /nypm@0.3.6:
+ resolution: {integrity: sha512-2CATJh3pd6CyNfU5VZM7qSwFu0ieyabkEdnogE30Obn1czrmOYiZ8DOZLe1yBdLKWoyD3Mcy2maUs+0MR3yVjQ==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
dependencies:
@@ -25596,6 +24893,20 @@ packages:
wcwidth: 1.0.1
dev: false
+ /ora@5.3.0:
+ resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
+ engines: {node: '>=10'}
+ dependencies:
+ bl: 4.1.0
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-spinners: 2.9.2
+ is-interactive: 1.0.0
+ log-symbols: 4.1.0
+ strip-ansi: 6.0.1
+ wcwidth: 1.0.1
+ dev: true
+
/ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
@@ -26062,7 +25373,7 @@ packages:
resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
- lru-cache: 10.1.0
+ lru-cache: 10.2.0
minipass: 7.0.4
dev: true
@@ -26264,7 +25575,7 @@ packages:
/pkg-types@1.0.3:
resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
dependencies:
- jsonc-parser: 3.2.0
+ jsonc-parser: 3.2.1
mlly: 1.5.0
pathe: 1.1.2
dev: true
@@ -26366,7 +25677,7 @@ packages:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: true
/polybooljs@1.2.0:
@@ -26467,7 +25778,7 @@ packages:
resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
color: 3.2.1
has: 1.0.4
postcss: 7.0.39
@@ -26652,15 +25963,15 @@ packages:
postcss: 7.0.39
dev: false
- /postcss-less@6.0.0(postcss@8.4.31):
+ /postcss-less@6.0.0(postcss@8.4.33):
resolution: {integrity: sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg==}
engines: {node: '>=12'}
peerDependencies:
postcss: ^8.3.5
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
- /postcss-load-config@3.1.4(postcss@8.4.31)(ts-node@10.9.1):
+ /postcss-load-config@3.1.4(postcss@8.4.33)(ts-node@10.9.2):
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
engines: {node: '>= 10'}
peerDependencies:
@@ -26673,8 +25984,8 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.31
- ts-node: 10.9.1(@types/node@18.16.19)(typescript@5.2.2)
+ postcss: 8.4.33
+ ts-node: 10.9.2(@types/node@18.19.11)(typescript@5.3.3)
yaml: 1.10.2
dev: true
@@ -26698,6 +26009,7 @@ packages:
/postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
+ requiresBuild: true
/postcss-merge-longhand@4.0.11:
resolution: {integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==}
@@ -26713,7 +26025,7 @@ packages:
resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.39
@@ -26744,7 +26056,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.22.2
+ browserslist: 4.22.3
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -26764,7 +26076,7 @@ packages:
/postcss-modules-extract-imports@1.1.0:
resolution: {integrity: sha512-zF9+UIEvtpeqMGxhpeT9XaIevQSrBBCz9fi7SwfkmjVacsSj8DY5eFVgn+wY8I9vvdDDwK5xC8Myq4UkoLFIkA==}
dependencies:
- postcss: 6.0.1
+ postcss: 6.0.23
dev: false
/postcss-modules-extract-imports@1.2.1:
@@ -26955,7 +26267,7 @@ packages:
resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
postcss: 7.0.39
postcss-value-parser: 3.3.1
dev: false
@@ -27049,7 +26361,7 @@ packages:
'@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.33)
'@csstools/postcss-unset-value': 1.0.2(postcss@8.4.33)
autoprefixer: 10.4.17(postcss@8.4.33)
- browserslist: 4.22.2
+ browserslist: 4.22.3
css-blank-pseudo: 3.0.3(postcss@8.4.33)
css-has-pseudo: 3.0.4(postcss@8.4.33)
css-prefers-color-scheme: 6.0.3(postcss@8.4.33)
@@ -27100,7 +26412,7 @@ packages:
resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
caniuse-api: 3.0.0
has: 1.0.4
postcss: 7.0.39
@@ -27127,15 +26439,6 @@ packages:
/postcss-resolve-nested-selector@0.1.1:
resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==}
- /postcss-safe-parser@6.0.0(postcss@8.4.31):
- resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.3.3
- dependencies:
- postcss: 8.4.31
- dev: true
-
/postcss-safe-parser@6.0.0(postcss@8.4.33):
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
@@ -27143,7 +26446,6 @@ packages:
postcss: ^8.3.3
dependencies:
postcss: 8.4.33
- dev: false
/postcss-scss@2.0.0:
resolution: {integrity: sha512-um9zdGKaDZirMm+kZFKKVsnKPF7zF7qBAtIfTSnZXD1jZ0JNZIxdB6TxQOjCnlSzLRInVl2v3YdBh/M881C4ug==}
@@ -27177,20 +26479,20 @@ packages:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-sorting@7.0.1(postcss@8.4.31):
+ /postcss-sorting@7.0.1(postcss@8.4.33):
resolution: {integrity: sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==}
peerDependencies:
postcss: ^8.3.9
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
dev: true
- /postcss-sorting@8.0.2(postcss@8.4.31):
+ /postcss-sorting@8.0.2(postcss@8.4.33):
resolution: {integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q==}
peerDependencies:
postcss: ^8.4.20
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
dev: true
/postcss-svgo@4.0.3:
@@ -27224,7 +26526,7 @@ packages:
optional: true
dependencies:
postcss: 8.4.33
- postcss-less: 6.0.0(postcss@8.4.31)
+ postcss-less: 6.0.0(postcss@8.4.33)
dev: false
/postcss-unique-selectors@4.0.1:
@@ -27286,6 +26588,7 @@ packages:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: false
/postcss@8.4.33:
resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
@@ -27375,17 +26678,10 @@ packages:
hasBin: true
dev: true
- /prettier@3.0.3:
- resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==}
- engines: {node: '>=14'}
- hasBin: true
- dev: true
-
/prettier@3.2.4:
resolution: {integrity: sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==}
engines: {node: '>=14'}
hasBin: true
- dev: false
/pretty-error@2.1.2:
resolution: {integrity: sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==}
@@ -27447,7 +26743,7 @@ packages:
engines: {node: '>=4'}
dev: false
- /pri@4.4.0(@types/react@18.2.28)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2):
+ /pri@4.4.0(@types/react@18.2.48)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-V/CjnKcgcjX9T0sNjO1cAvFYtPua2lsB7gqRGamlhKNDOO+WRJaSgl/nfwkQIJJh01SU88Yhz84MioUB7nxWwg==}
hasBin: true
dependencies:
@@ -27473,7 +26769,7 @@ packages:
'@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.2.28)(react-dom@16.14.0)(react@16.14.0)
+ '@material-ui/core': 4.7.1(@types/react@18.2.48)(react-dom@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
@@ -27559,7 +26855,7 @@ packages:
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.2.28)(react-dom@16.14.0)(react@16.14.0)
+ react-hot-loader: 4.12.19(@types/react@18.2.48)(react-dom@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
@@ -27613,7 +26909,7 @@ packages:
/probe.gl@3.6.0:
resolution: {integrity: sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@probe.gl/env': 3.6.0
'@probe.gl/log': 3.6.0
'@probe.gl/stats': 3.6.0
@@ -27724,8 +27020,8 @@ packages:
rope-sequence: 1.3.4
dev: false
- /prosemirror-inputrules@1.3.0:
- resolution: {integrity: sha512-z1GRP2vhh5CihYMQYsJSa1cOwXb3SYxALXOIfAkX8nZserARtl9LiL+CEl+T+OFIsXc3mJIHKhbsmRzC0HDAXA==}
+ /prosemirror-inputrules@1.4.0:
+ resolution: {integrity: sha512-6ygpPRuTJ2lcOXs9JkefieMst63wVJBgHZGl5QOytN7oSZs3Co/BYbc3Yx9zm9H37Bxw8kVzCnDsihsVsL4yEg==}
dependencies:
prosemirror-state: 1.4.3
prosemirror-transform: 1.8.0
@@ -27914,8 +27210,8 @@ packages:
/pure-rand@6.0.4:
resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==}
- /pyright@1.1.332:
- resolution: {integrity: sha512-x3xuEhp6P+6UJfKF41o7f4Z9abh/LWXWF8CReSEsg/m/5IeMBtqCqPrxZnKswRjQlBlCD771QYkMatEVjeH2ZA==}
+ /pyright@1.1.349:
+ resolution: {integrity: sha512-AIS2OuIPSifLGeeIlM9NihSdHSCheT7eXPdKnVxIwTvuOXwOX75oQS7xsW1PK+Tkc+S5SzvXeCwPChbjXd+Ztg==}
engines: {node: '>=12.0.0'}
hasBin: true
optionalDependencies:
@@ -28096,7 +27392,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
dom-align: 1.12.4
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28105,17 +27401,17 @@ packages:
resize-observer-polyfill: 1.5.1
dev: false
- /rc-cascader@3.18.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-M7Xr5Fs/E87ZGustfObtBYQjsvBCET0UX2JYXB2GmOP+2fsZgjaRGXK+CJBmmWXQ6o4OFinpBQBXG4wJOQ5MEg==}
+ /rc-cascader@3.21.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-J7GozpgsLaOtzfIHFJFuh4oFY0ePb1w10twqK6is3pAkqHkca/PsokbDr822KIRZ8/CK8CqevxohuPDVZ1RO/A==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
array-tree-filter: 2.1.0
classnames: 2.5.1
- rc-select: 14.9.2(react-dom@18.2.0)(react@18.2.0)
- rc-tree: 5.7.12(react-dom@18.2.0)(react@18.2.0)
+ rc-select: 14.11.0(react-dom@18.2.0)(react@18.2.0)
+ rc-tree: 5.8.5(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -28127,7 +27423,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28140,7 +27436,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28154,7 +27450,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
@@ -28163,13 +27459,13 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-drawer@6.5.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-QckxAnQNdhh4vtmKN0ZwDf3iakO83W9eZcSKWYYTDv4qcD2fHhRAZJJ/OE6v2ZlQ2kSqCJX5gYssF4HJFvsEPQ==}
+ /rc-drawer@7.0.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ePcS4KtQnn57bCbVXazHN2iC8nTPCXlWEIA/Pft87Pd9U7ZeDkdRzG47jWG2/TAFXFlFltRAMcslqmUM8NPCGA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
@@ -28184,7 +27480,7 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-trigger: 5.3.4(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28198,7 +27494,7 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-trigger: 5.3.4(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28212,35 +27508,35 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
dependencies:
- '@babel/runtime': 7.23.8
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-field-form@1.39.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-V7Wk7uji1jBsUGGgP788H9rpFy55HLiD4lywTlktUGjK7EgW5dt+mq1MPbtCpPRMzs83vZBW4SOChOmCACz4WA==}
+ /rc-field-form@1.41.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-k9AS0wmxfJfusWDP/YXWTpteDNaQ4isJx9UKxx4/e8Dub4spFeZ54/EuN2sYrMRID/+hUznPgVZeg+Gf7XSYCw==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
async-validator: 4.2.5
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-image@7.3.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ICEF6SWv9YKhDXxy1vrXcmf0TVvEcQWIww5Yg+f+mn7e4oGX7FNP4+FExwMjNO5UHBEuWrigbGhlCgI6yZZ1jg==}
+ /rc-image@7.5.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Z9loECh92SQp0nSipc0MBuf5+yVC05H/pzC+Nf8xw1BKDFUJzUeehYBjaWlxly8VGBZJcTHYri61Fz9ng1G3Ag==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/portal': 1.1.2(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-dialog: 9.3.4(react-dom@18.2.0)(react@18.2.0)
@@ -28250,46 +27546,46 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-input-number@8.1.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-bdHgduOxuN0lrhzgPmoKbhRD4GLIzVcddVz972/JHPHr7oLwPX5xDb9w4bXhuMzyT2VzQy7nggRCfH3yAl09oA==}
+ /rc-input-number@8.6.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-gaAMUKtUKLktJ3Yx93tjgYY1M0HunnoqzPEqkb9//Ydup4DcG0TFL9yHBA3pgVdNIt5f0UWyHCgFBj//JxeD6A==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/mini-decimal': 1.1.0
classnames: 2.5.1
- rc-input: 1.2.1(react-dom@18.2.0)(react@18.2.0)
+ rc-input: 1.4.3(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-input@1.2.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-nQRmBvEFoGi+SNRDavccZ8ueyhFgmxkWqIt4aDyuNJgUZF12HJKIwDhAafUM7N+g7PyuW9FH3pf3zPHzdiCWbA==}
+ /rc-input@1.4.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-aHyQUAIRmTlOnvk5EcNqEpJ+XMtfMpYRAJayIlJfsvvH9cAKUWboh4egm23vgMA7E+c/qm4BZcnrDcA960GC1w==}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-mentions@2.8.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-LBMkO6bSGhEvS1CvMK978qGN82tI+mzk7l/uTiQJH+UDiwpvq+pxK4DxU5b6Q1T5LW6bn2pSua9RaZKZrDoBOw==}
+ /rc-mentions@2.10.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-72qsEcr/7su+a07ndJ1j8rI9n0Ka/ngWOLYnWMMv0p2mi/5zPwPrEDTt6Uqpe8FWjWhueDJx/vzunL6IdKDYMg==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
- rc-input: 1.2.1(react-dom@18.2.0)(react@18.2.0)
+ rc-input: 1.4.3(react-dom@18.2.0)(react@18.2.0)
rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0)
- rc-textarea: 1.4.0(react-dom@18.2.0)(react@18.2.0)
+ rc-textarea: 1.6.3(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -28301,8 +27597,8 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-overflow: 1.3.2(react-dom@18.2.0)(react@18.2.0)
@@ -28317,7 +27613,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-overflow: 1.3.2(react-dom@18.2.0)(react@18.2.0)
@@ -28334,21 +27630,21 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-notification@5.2.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-HwUSypEW4mfOpiakJ7dm6TAKf+3zuSR2xm0I0XMes493rtA3n4EVMvQyldrp23hUwCE3RFj8oncyU1E8iNC4ag==}
+ /rc-notification@5.3.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-WCf0uCOkZ3HGfF0p1H4Sgt7aWfipxORWTPp7o6prA3vxwtWhtug3GfpYls1pnBp4WA+j8vGIi5c2/hQRpGzPcQ==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28362,7 +27658,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28370,13 +27666,13 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-pagination@3.6.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-R/sUnKKXx1Nm4kZfUKS3YKa7yEPF1ZkVB/AynQaHt+nMER7h9wPTfliDJFdYo+RM/nk2JD4Yc5QpUq8fIQHeug==}
+ /rc-pagination@4.0.4(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-GGrLT4NgG6wgJpT/hHIpL9nELv27A1XbSZzECIuQBQTVSf4xGKxWr6I/jhpRPauYEWEbWVw22ObG6tJQqwJqWQ==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28390,7 +27686,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
date-fns: 2.30.0
dayjs: 1.11.10
@@ -28422,8 +27718,8 @@ packages:
moment:
optional: true
dependencies:
- '@babel/runtime': 7.23.8
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
dayjs: 1.11.10
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28437,7 +27733,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28451,7 +27747,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28464,7 +27760,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28478,7 +27774,7 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28486,15 +27782,15 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-select@14.9.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-VQ15sRFgPURHb8ZcZNSDtb2rAw3+C9xlL0nDziwNHTEW1KvEpZ8y+0v5w24X/Bpl9b3cW1BOyW1F5UqSAq+7Dg==}
+ /rc-select@14.11.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-8J8G/7duaGjFiTXCBLWfh5P+KDWyA3KTlZDfV3xj/asMPqB2cmxfM+lH50wRiPIRsCQ6EbkCFBccPuaje3DHIg==}
engines: {node: '>=8.x'}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.23.8
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-overflow: 1.3.2(react-dom@18.2.0)(react@18.2.0)
@@ -28504,14 +27800,14 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-slider@10.3.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-XszsZLkbjcG9ogQy/zUC0n2kndoKUAnY/Vnk1Go5Gx+JJQBz0Tl15d5IfSiglwBUZPS9vsUJZkfCmkIZSqWbcA==}
+ /rc-slider@10.5.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-xiYght50cvoODZYI43v3Ylsqiw14+D7ELsgzR40boDZaya1HFa1Etnv9MDkQE8X/UrXAffwv2AcNAhslgYuDTw==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28525,7 +27821,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28538,21 +27834,21 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-table@7.34.4(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-os+i88Y2AO/6dNkOgJkKSHgXYaZZGnuOEEe+nyaq5IRgvAQNhLysUjXt2objtBeFDEZR8TqXrajwBNRUwunmdw==}
+ /rc-table@7.37.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-hEB17ktLRVfVmdo+U8MjGr+PuIgdQ8Cxj/N5lwMvP/Az7TOrQxwTMLVEDoj207tyPYLTWifHIF9EJREWwyk67g==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
'@rc-component/context': 1.4.0(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0)
@@ -28569,7 +27865,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-dropdown: 4.0.1(react-dom@18.2.0)(react@18.2.0)
rc-menu: 9.6.4(react-dom@18.2.0)(react@18.2.0)
@@ -28579,14 +27875,14 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-tabs@12.12.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-e10VBjEkECdPl4XZSs9to81SE+mgclBTM7J8/LMsFqmJoi05Tci91bRnmeeDtrcOCx2PuZdJv57XUlC4d8PEIw==}
+ /rc-tabs@14.0.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-lp1YWkaPnjlyhOZCPrAWxK6/P6nMGX/BAZcAC3nuVwKz0Byfp+vNnQKK8BRCP2g/fzu+SeB5dm9aUigRu3tRkQ==}
engines: {node: '>=8.x'}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-dropdown: 4.1.0(react-dom@18.2.0)(react@18.2.0)
rc-menu: 9.12.4(react-dom@18.2.0)(react@18.2.0)
@@ -28597,15 +27893,15 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-textarea@1.4.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-CiqK+uyoJlnfufbC0kwfHJpfElhQacuDSNyNQ/xGnA/QMaJLDbgmqRT8QmX0T0KD/ws/hy6qqRaGJSsrRR5uiQ==}
+ /rc-textarea@1.6.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-8k7+8Y2GJ/cQLiClFMg8kUXOOdvcFQrnGeSchOvI2ZMIVvX5a3zQpLxoODL0HTrvU63fPkRmMuqaEcOF9dQemA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
- rc-input: 1.2.1(react-dom@18.2.0)(react@18.2.0)
+ rc-input: 1.4.3(react-dom@18.2.0)(react@18.2.0)
rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28618,7 +27914,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-trigger: 5.3.4(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28631,36 +27927,36 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
- '@rc-component/trigger': 1.18.2(react-dom@18.2.0)(react@18.2.0)
+ '@babel/runtime': 7.23.9
+ '@rc-component/trigger': 1.18.3(react-dom@18.2.0)(react@18.2.0)
classnames: 2.5.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-tree-select@5.13.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-g01JU9EdE7j/9KfDKtmvFqJ7ZDNIYDzkpmAXllbTBFoRNhWJBjW1x/dCZLVG+IdZeIz8SKJkgZzCf1CUZrzV/Q==}
+ /rc-tree-select@5.17.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-7sRGafswBhf7n6IuHyCEFCildwQIgyKiV8zfYyUoWfZEFdhuk7lCH+DN0aHt+oJrdiY9+6Io/LDXloGe01O8XQ==}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
- rc-select: 14.9.2(react-dom@18.2.0)(react@18.2.0)
- rc-tree: 5.7.12(react-dom@18.2.0)(react@18.2.0)
+ rc-select: 14.11.0(react-dom@18.2.0)(react@18.2.0)
+ rc-tree: 5.8.5(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-tree@5.7.12(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-LXA5nY2hG5koIAlHW5sgXgLpOMz+bFRbnZZ+cCg0tQs4Wv1AmY7EDi1SK7iFXhslYockbqUerQan82jljoaItg==}
+ /rc-tree@5.8.5(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-PRfcZtVDNkR7oh26RuNe1hpw11c1wfgzwmPFL0lnxGnYefe9lDAO6cg5wJKIAwyXFVt5zHgpjYmaz0CPy1ZtKg==}
engines: {node: '>=10.x'}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28676,7 +27972,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-align: 4.0.15(react-dom@18.2.0)(react@18.2.0)
rc-motion: 2.9.0(react-dom@18.2.0)(react@18.2.0)
@@ -28685,13 +27981,13 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /rc-upload@4.3.6(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Bt7ESeG5tT3IY82fZcP+s0tQU2xmo1W6P3S8NboUUliquJLQYLkUcsaExi3IlBVr43GQMCjo30RA2o0i70+NjA==}
+ /rc-upload@4.5.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-QO3ne77DwnAPKFn0bA5qJM81QBjQi0e0NHdkvpFyY73Bea2NfITiotqJqVjHgeYPOJu5lLVR32TNGP084aSoXA==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
@@ -28714,7 +28010,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-is: 18.2.0
@@ -28727,7 +28023,7 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.2.0)(react@18.2.0)
rc-util: 5.38.1(react-dom@18.2.0)(react@18.2.0)
@@ -28761,7 +28057,7 @@ packages:
dnd-core: 16.0.1
dev: false
- /react-dnd@16.0.1(@types/node@18.16.19)(@types/react@18.2.28)(react@18.2.0):
+ /react-dnd@16.0.1(@types/node@18.19.11)(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-QeoM/i73HHu2XF9aKksIUuamHPDvRglEwdHL4jsp784BgUuWcg6mzfxT0QDdQz8Wj0qyRKx2eMg8iZtWvU4E2Q==}
peerDependencies:
'@types/hoist-non-react-statics': '>= 3.3.1'
@@ -28778,8 +28074,8 @@ packages:
dependencies:
'@react-dnd/invariant': 4.0.2
'@react-dnd/shallowequal': 4.0.2
- '@types/node': 18.16.19
- '@types/react': 18.2.28
+ '@types/node': 18.19.11
+ '@types/react': 18.2.48
dnd-core: 16.0.1
fast-deep-equal: 3.1.3
hoist-non-react-statics: 3.3.2
@@ -28794,16 +28090,16 @@ packages:
typescript: 5.3.3
dev: true
- /react-docgen@6.0.4:
- resolution: {integrity: sha512-gF+p+1ZwC2eO66bt763Tepmh5q9kDiFIrqW3YjUV/a+L96h0m5+/wSFQoOHL2cffyrPMZMxP03IgbggJ11QbOw==}
- engines: {node: '>=14.18.0'}
+ /react-docgen@7.0.3:
+ resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
+ engines: {node: '>=16.14.0'}
dependencies:
- '@babel/core': 7.23.7
- '@babel/traverse': 7.23.7
- '@babel/types': 7.23.6
+ '@babel/core': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.5
- '@types/doctrine': 0.0.6
+ '@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
resolve: 1.22.8
@@ -28870,7 +28166,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
invariant: 2.2.4
prop-types: 15.8.1
react: 18.1.0
@@ -28885,7 +28181,7 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
invariant: 2.2.4
prop-types: 15.8.1
react: 18.2.0
@@ -28894,7 +28190,7 @@ packages:
shallowequal: 1.1.0
dev: false
- /react-hot-loader@4.12.19(@types/react@18.2.28)(react-dom@16.14.0)(react@16.14.0):
+ /react-hot-loader@4.12.19(@types/react@18.2.48)(react-dom@16.14.0)(react@16.14.0):
resolution: {integrity: sha512-p8AnA4QE2GtrvkdmqnKrEiijtVlqdTIDCHZOwItkI9kW51bt5XnQ/4Anz8giiWf9kqBpEQwsmnChDCAFBRyR/Q==}
engines: {node: '>= 6'}
peerDependencies:
@@ -28902,7 +28198,7 @@ packages:
react: ^15.0.0 || ^16.0.0
react-dom: ^15.0.0 || ^16.0.0
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
fast-levenshtein: 2.0.6
global: 4.4.0
hoist-non-react-statics: 3.3.2
@@ -28915,14 +28211,6 @@ packages:
source-map: 0.7.4
dev: false
- /react-inspector@6.0.2(react@18.2.0):
- resolution: {integrity: sha512-x+b7LxhmHXjHoU/VrFAzw5iutsILRoYyDq97EDYdFpPLcvqtEzk4ZSZSQjnFPbr5T57tLXnHcqFYoN1pI6u8uQ==}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0 || ^18.0.0
- dependencies:
- react: 18.2.0
- dev: true
-
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -28948,7 +28236,7 @@ packages:
resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
engines: {node: '>=0.10.0'}
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.28)(react@18.2.0):
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -28958,13 +28246,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.2.28)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0)
tslib: 2.6.2
dev: true
- /react-remove-scroll@2.5.5(@types/react@18.2.28)(react@18.2.0):
+ /react-remove-scroll@2.5.5(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -28974,13 +28262,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
react: 18.2.0
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.28)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.28)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.48)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0)
tslib: 2.6.2
- use-callback-ref: 1.3.1(@types/react@18.2.28)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.28)(react@18.2.0)
+ use-callback-ref: 1.3.1(@types/react@18.2.48)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.48)(react@18.2.0)
dev: true
/react-router-dom@5.1.2(react@16.14.0):
@@ -28988,7 +28276,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -29027,7 +28315,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -29058,7 +28346,7 @@ packages:
react: 18.2.0
dev: false
- /react-style-singleton@2.2.1(@types/react@18.2.28)(react@18.2.0):
+ /react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -29068,7 +28356,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
@@ -29093,7 +28381,7 @@ packages:
react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -29107,7 +28395,7 @@ packages:
react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0
react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
clsx: 1.2.1
dom-helpers: 5.2.1
loose-envify: 1.4.0
@@ -29326,16 +28614,6 @@ packages:
engines: {node: '>=8'}
dev: false
- /recast@0.21.5:
- resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
- engines: {node: '>= 4'}
- dependencies:
- ast-types: 0.15.2
- esprima: 4.0.1
- source-map: 0.6.1
- tslib: 2.6.2
- dev: true
-
/recast@0.23.4:
resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==}
engines: {node: '>= 4'}
@@ -29380,7 +28658,7 @@ packages:
/redux@4.2.1:
resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
dev: false
/reflect-metadata@0.1.14:
@@ -29402,13 +28680,6 @@ packages:
resolution: {integrity: sha512-qOLsBKHCpSOFKK1NUOCGC5VyeufB6lEsFe92AL2bhIJsacZS1qdoOZSbPk3MYKuT2cFlRDnulKXuuElIrMjGUg==}
dev: false
- /regenerate-unicode-properties@10.1.0:
- resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
- engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- dev: false
-
/regenerate-unicode-properties@10.1.1:
resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
@@ -29436,7 +28707,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.8
+ '@babel/runtime': 7.23.9
/regex-cache@0.4.4:
resolution: {integrity: sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==}
@@ -30262,7 +29533,7 @@ packages:
hasBin: true
dependencies:
chokidar: 3.5.3
- immutable: 4.3.4
+ immutable: 4.3.5
source-map-js: 1.0.2
dev: false
@@ -30651,13 +29922,6 @@ packages:
is-arrayish: 0.3.2
dev: false
- /simple-update-notifier@2.0.0:
- resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
- engines: {node: '>=10'}
- dependencies:
- semver: 7.5.4
- dev: true
-
/sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -30946,13 +30210,13 @@ packages:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.16
- /spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ /spdx-exceptions@2.4.0:
+ resolution: {integrity: sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==}
/spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
- spdx-exceptions: 2.3.0
+ spdx-exceptions: 2.4.0
spdx-license-ids: 3.0.16
/spdx-license-ids@3.0.16:
@@ -31056,8 +30320,8 @@ packages:
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /sql-formatter@15.0.2:
- resolution: {integrity: sha512-B8FTRc1dhb36lfuwSdiLhwrhkvT3PU/3es7YDPPQBOhbGHdXKlweAXTRS+QfCWk06ufAh118yFja6NcukBS4gg==}
+ /sql-formatter@15.2.0:
+ resolution: {integrity: sha512-k1gDOblvmtzmrBT687Y167ElwQI/8KrlhfKeIUXsi6jw7Rp5n3G8TkMFZF0Z9NG7rAzHKXUlJ8kfmcIfMf5lFg==}
hasBin: true
dependencies:
argparse: 2.0.1
@@ -31173,11 +30437,11 @@ packages:
resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
dev: true
- /storybook@7.5.1:
- resolution: {integrity: sha512-Wg3j3z5H03PYnEcmlnhf6bls0OtjmsNPsQ93dTV8F4AweqBECwzjf94Wj++NrP3X+WbfMoCbBU6LRFuEyzCCxw==}
+ /storybook@7.6.11:
+ resolution: {integrity: sha512-5giiG9qImwjatA+jhgVuAMERMjWYV5biHG5ZLU+3KPwgaAaERstojKGPfR+bZRf5ZqtNDw4qCIH3RSc49NCUoQ==}
hasBin: true
dependencies:
- '@storybook/cli': 7.5.1
+ '@storybook/cli': 7.6.11
transitivePeerDependencies:
- bufferutil
- encoding
@@ -31526,26 +30790,6 @@ packages:
inline-style-parser: 0.1.1
dev: false
- /styled-components@6.1.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-VWNfYYBuXzuLS/QYEeoPgMErP26WL+dX9//rEh80B2mmlS1yRxRxuL5eax4m6ybYEUoHWlTy2XOU32767mlMkg==}
- engines: {node: '>= 16'}
- peerDependencies:
- react: '>= 16.8.0'
- react-dom: '>= 16.8.0'
- dependencies:
- '@emotion/is-prop-valid': 1.2.1
- '@emotion/unitless': 0.8.1
- '@types/stylis': 4.2.5
- css-to-react-native: 3.2.0
- csstype: 3.1.3
- postcss: 8.4.33
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- shallowequal: 1.1.0
- stylis: 4.3.1
- tslib: 2.6.2
- dev: false
-
/styled-components@6.1.8(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==}
engines: {node: '>= 16'}
@@ -31570,17 +30814,17 @@ packages:
resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==}
engines: {node: '>=6.9.0'}
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
postcss: 7.0.39
postcss-selector-parser: 3.1.2
dev: false
- /stylelint-config-css-modules@4.3.0(stylelint@15.11.0):
- resolution: {integrity: sha512-KvIvhzzjpcjHKkGSPkQCueoZJHrb6sZ6GCtrQb/J45HQTBVwJAeNYXaSZZK6ZQOC7NxJ4v5kLxpQLDiCK6zzgw==}
+ /stylelint-config-css-modules@4.4.0(stylelint@15.11.0):
+ resolution: {integrity: sha512-J93MtxPjRzs/TjwbJ5y9SQy4iIqULXwL1CF1yx2tQCJfS/VZUcDAmoGOwqlLbhHXSQtZO5XQiA75NVWUR3KDCQ==}
peerDependencies:
- stylelint: ^14.5.1 || ^15.0.0
+ stylelint: ^14.5.1 || ^15.0.0 || ^16.0.0
dependencies:
- stylelint: 15.11.0(typescript@5.2.2)
+ stylelint: 15.11.0(typescript@5.3.3)
optionalDependencies:
stylelint-scss: 6.1.0(stylelint@15.11.0)
dev: true
@@ -31591,7 +30835,7 @@ packages:
peerDependencies:
stylelint: '>=11'
dependencies:
- stylelint: 15.11.0(typescript@5.2.2)
+ stylelint: 15.11.0(typescript@5.3.3)
stylelint-order: 5.0.0(stylelint@15.11.0)
dev: true
@@ -31602,7 +30846,7 @@ packages:
peerDependencies:
stylelint: '>= 11.x < 15'
dependencies:
- stylelint: 15.11.0(typescript@5.2.2)
+ stylelint: 15.11.0(typescript@5.3.3)
dev: true
/stylelint-config-recommended@10.0.1(stylelint@15.11.0):
@@ -31610,7 +30854,7 @@ packages:
peerDependencies:
stylelint: ^15.0.0
dependencies:
- stylelint: 15.11.0(typescript@5.2.2)
+ stylelint: 15.11.0(typescript@5.3.3)
dev: true
/stylelint-config-recommended@7.0.0(stylelint@14.16.1):
@@ -31635,7 +30879,7 @@ packages:
peerDependencies:
stylelint: ^15.0.0
dependencies:
- stylelint: 15.11.0(typescript@5.2.2)
+ stylelint: 15.11.0(typescript@5.3.3)
stylelint-config-recommended: 10.0.1(stylelint@15.11.0)
dev: true
@@ -31644,19 +30888,19 @@ packages:
peerDependencies:
stylelint: ^14.0.0
dependencies:
- postcss: 8.4.31
- postcss-sorting: 7.0.1(postcss@8.4.31)
- stylelint: 15.11.0(typescript@5.2.2)
+ postcss: 8.4.33
+ postcss-sorting: 7.0.1(postcss@8.4.33)
+ stylelint: 15.11.0(typescript@5.3.3)
dev: true
- /stylelint-order@6.0.3(stylelint@15.11.0):
- resolution: {integrity: sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w==}
+ /stylelint-order@6.0.4(stylelint@15.11.0):
+ resolution: {integrity: sha512-0UuKo4+s1hgQ/uAxlYU4h0o0HS4NiQDud0NAUNI0aa8FJdmYHA5ZZTFHiV5FpmE3071e9pZx5j0QpVJW5zOCUA==}
peerDependencies:
- stylelint: ^14.0.0 || ^15.0.0
+ stylelint: ^14.0.0 || ^15.0.0 || ^16.0.1
dependencies:
- postcss: 8.4.31
- postcss-sorting: 8.0.2(postcss@8.4.31)
- stylelint: 15.11.0(typescript@5.2.2)
+ postcss: 8.4.33
+ postcss-sorting: 8.0.2(postcss@8.4.33)
+ stylelint: 15.11.0(typescript@5.3.3)
dev: true
/stylelint-scss@6.1.0(stylelint@15.11.0):
@@ -31671,7 +30915,7 @@ packages:
postcss-resolve-nested-selector: 0.1.1
postcss-selector-parser: 6.0.15
postcss-value-parser: 4.2.0
- stylelint: 15.11.0(typescript@5.2.2)
+ stylelint: 15.11.0(typescript@5.3.3)
dev: true
optional: true
@@ -31722,7 +30966,7 @@ packages:
- supports-color
dev: false
- /stylelint@15.11.0(typescript@5.2.2):
+ /stylelint@15.11.0(typescript@5.3.3):
resolution: {integrity: sha512-78O4c6IswZ9TzpcIiQJIN49K3qNoXTM8zEJzhaTE/xRTCZswaovSEVIa/uwbOltZrk16X4jAxjaOhzz/hTm1Kw==}
engines: {node: ^14.13.1 || >=16.0.0}
hasBin: true
@@ -31733,7 +30977,7 @@ packages:
'@csstools/selector-specificity': 3.0.1(postcss-selector-parser@6.0.15)
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 8.3.6(typescript@5.2.2)
+ cosmiconfig: 8.3.6(typescript@5.3.3)
css-functions-list: 3.2.1
css-tree: 2.3.1
debug: 4.3.4
@@ -31754,9 +30998,9 @@ packages:
micromatch: 4.0.5
normalize-path: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.31
+ postcss: 8.4.33
postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 6.0.0(postcss@8.4.31)
+ postcss-safe-parser: 6.0.0(postcss@8.4.33)
postcss-selector-parser: 6.0.15
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
@@ -31958,10 +31202,10 @@ packages:
tslib: 2.6.2
dev: true
- /syntax-parser@1.0.18(@types/react@18.2.28)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2):
+ /syntax-parser@1.0.18(@types/react@18.2.48)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2):
resolution: {integrity: sha512-t5q2VNfzEcgoSwaYnJm8FppMnq5NYesom8SpGhWK4VNAZAFWe/GekPlsg+C2gswH23CWwwiWsISI+amJ6x7Y3w==}
dependencies:
- pri: 4.4.0(@types/react@18.2.28)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)
+ pri: 4.4.0(@types/react@18.2.48)(quill-delta@5.1.0)(rxjs@7.8.1)(tslib@2.6.2)
transitivePeerDependencies:
- '@types/react'
- bufferutil
@@ -32134,7 +31378,7 @@ packages:
worker-farm: 1.7.0
dev: false
- /terser-webpack-plugin@5.3.10(esbuild@0.17.19)(webpack@5.89.0):
+ /terser-webpack-plugin@5.3.10(esbuild@0.17.19)(webpack@5.90.0):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -32156,7 +31400,7 @@ packages:
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.27.0
- webpack: 5.89.0(esbuild@0.17.19)
+ webpack: 5.90.0(esbuild@0.17.19)
dev: false
/terser@4.8.1:
@@ -32348,12 +31592,12 @@ packages:
'@popperjs/core': 2.11.8
dev: false
- /tiptap-markdown@0.8.2(@tiptap/core@2.1.11):
- resolution: {integrity: sha512-RyfpnH475+FYVh1fCiWF9+wBvA8T6X3PqxZR1MApEewxkoQ5kREQFiVwjZiez9qUQk/Bxu3RerFSJot65V6cbQ==}
+ /tiptap-markdown@0.8.9(@tiptap/core@2.2.0):
+ resolution: {integrity: sha512-TykSDcsb94VFCzPbSSTfB6Kh2HJi7x4B9J3Jm9uSOAMPy8App1YfrLW/rEJLajTxwMVhWBdOo4nidComSlLQsQ==}
peerDependencies:
'@tiptap/core': ^2.0.3
dependencies:
- '@tiptap/core': 2.1.11(@tiptap/pm@2.1.11)
+ '@tiptap/core': 2.2.0(@tiptap/pm@2.2.0)
'@types/markdown-it': 12.2.3
markdown-it: 13.0.2
markdown-it-task-lists: 2.1.1
@@ -32567,8 +31811,8 @@ packages:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
dev: true
- /ts-node@10.9.1(@types/node@18.16.19)(typescript@5.2.2):
- resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
+ /ts-node@10.9.2(@types/node@18.19.11)(typescript@5.3.3):
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
'@swc/core': '>=1.2.50'
@@ -32586,19 +31830,19 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 18.16.19
+ '@types/node': 18.19.11
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.2.2
+ typescript: 5.3.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
- /ts-node@10.9.1(@types/node@20.5.1)(typescript@5.2.2):
- resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
+ /ts-node@10.9.2(@types/node@20.5.1)(typescript@5.3.3):
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
'@swc/core': '>=1.2.50'
@@ -32623,7 +31867,7 @@ packages:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.2.2
+ typescript: 5.3.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
dev: true
@@ -32660,7 +31904,7 @@ packages:
engines: {node: '>=0.6.x'}
dev: false
- /tsup@6.7.0(postcss@8.4.31)(ts-node@10.9.1)(typescript@5.2.2):
+ /tsup@6.7.0(postcss@8.4.33)(ts-node@10.9.2)(typescript@5.3.3):
resolution: {integrity: sha512-L3o8hGkaHnu5TdJns+mCqFsDBo83bJ44rlK7e6VdanIvpea4ArPcU3swWGsLVbXak1PqQx/V+SSmFPujBK+zEQ==}
engines: {node: '>=14.18'}
hasBin: true
@@ -32684,14 +31928,14 @@ packages:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss: 8.4.31
- postcss-load-config: 3.1.4(postcss@8.4.31)(ts-node@10.9.1)
+ postcss: 8.4.33
+ postcss-load-config: 3.1.4(postcss@8.4.33)(ts-node@10.9.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
- typescript: 5.2.2
+ typescript: 5.3.3
transitivePeerDependencies:
- supports-color
- ts-node
@@ -32707,16 +31951,6 @@ packages:
typescript: 4.2.3
dev: false
- /tsutils@3.21.0(typescript@5.2.2):
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
- dependencies:
- tslib: 1.14.1
- typescript: 5.2.2
- dev: true
-
/tsutils@3.21.0(typescript@5.3.3):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
@@ -32897,11 +32131,6 @@ packages:
hasBin: true
dev: false
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
- engines: {node: '>=14.17'}
- hasBin: true
-
/typescript@5.3.3:
resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
engines: {node: '>=14.17'}
@@ -32952,21 +32181,21 @@ packages:
dev: false
optional: true
- /umi@4.0.86(@babel/core@7.23.7)(@types/node@18.16.19)(@types/react@18.2.28)(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(postcss@8.4.33)(prettier@3.2.4)(react-dom@18.2.0)(react@18.2.0)(styled-components@6.1.8)(stylelint@14.16.1)(typescript@5.3.3)(webpack@5.89.0):
- resolution: {integrity: sha512-8epdNaLIKSYAgoFREGpiiP3HIunvxpt5kd04HxYdhCKRpVmd6c9A+TYD3qzFSICwesqg/N9+6L8aRzTsMYIyzQ==}
+ /umi@4.1.1(@babel/core@7.23.9)(@types/node@18.19.11)(@types/react@18.2.48)(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(prettier@3.2.4)(react-dom@18.2.0)(react@18.2.0)(stylelint@14.16.1)(typescript@5.3.3)(webpack@5.90.0):
+ resolution: {integrity: sha512-FGSyS4V2kyXnrOudT3JBavhNjSIzgC1FJjOCmhjElmGIZV/FY9gpqOKk9WExdO96xSOvff0+16SK2WtQj/xQgQ==}
engines: {node: '>=14'}
hasBin: true
dependencies:
- '@babel/runtime': 7.21.0
- '@umijs/bundler-utils': 4.0.86
- '@umijs/bundler-webpack': 4.0.86(styled-components@6.1.8)(typescript@5.3.3)(webpack@5.89.0)
- '@umijs/core': 4.0.86
- '@umijs/lint': 4.0.86(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(styled-components@6.1.8)(stylelint@14.16.1)(typescript@5.3.3)
- '@umijs/preset-umi': 4.0.86(@types/node@18.16.19)(@types/react@18.2.28)(postcss@8.4.33)(styled-components@6.1.8)(typescript@5.3.3)(webpack@5.89.0)
- '@umijs/renderer-react': 4.0.86(react-dom@18.2.0)(react@18.2.0)
- '@umijs/server': 4.0.86
- '@umijs/test': 4.0.86(@babel/core@7.23.7)
- '@umijs/utils': 4.0.86
+ '@babel/runtime': 7.23.6
+ '@umijs/bundler-utils': 4.1.1
+ '@umijs/bundler-webpack': 4.1.1(typescript@5.3.3)(webpack@5.90.0)
+ '@umijs/core': 4.1.1
+ '@umijs/lint': 4.1.1(eslint@8.56.0)(jest@29.7.0)(postcss-less@6.0.0)(stylelint@14.16.1)(typescript@5.3.3)
+ '@umijs/preset-umi': 4.1.1(@types/node@18.19.11)(@types/react@18.2.48)(typescript@5.3.3)(webpack@5.90.0)
+ '@umijs/renderer-react': 4.1.1(react-dom@18.2.0)(react@18.2.0)
+ '@umijs/server': 4.1.1
+ '@umijs/test': 4.1.1(@babel/core@7.23.9)
+ '@umijs/utils': 4.1.1
prettier-plugin-organize-imports: 3.2.4(prettier@3.2.4)(typescript@5.3.3)
prettier-plugin-packagejson: 2.4.3(prettier@3.2.4)
transitivePeerDependencies:
@@ -32978,7 +32207,6 @@ packages:
- '@volar/vue-typescript'
- eslint
- jest
- - postcss
- postcss-html
- postcss-jsx
- postcss-less
@@ -32990,7 +32218,6 @@ packages:
- rollup
- sass
- sockjs-client
- - styled-components
- stylelint
- stylus
- sugarss
@@ -33077,7 +32304,7 @@ packages:
'@types/concat-stream': 2.0.3
'@types/debug': 4.1.12
'@types/is-empty': 1.2.3
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
'@types/unist': 2.0.10
concat-stream: 2.0.0
debug: 4.3.4
@@ -33308,13 +32535,13 @@ packages:
engines: {node: '>=4'}
dev: false
- /update-browserslist-db@1.0.13(browserslist@4.22.2):
+ /update-browserslist-db@1.0.13(browserslist@4.22.3):
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.22.2
+ browserslist: 4.22.3
escalade: 3.1.1
picocolors: 1.0.0
@@ -33407,7 +32634,7 @@ packages:
resolution: {integrity: sha512-vfQzI+JDPBrBRw374pgWi6bFPfc+6BonRsazCj3weBIWe8moRcvfgy0lpaiGkMGnExs4Z/Dws8lp5mc9IegURw==}
dev: false
- /use-callback-ref@1.3.1(@types/react@18.2.28)(react@18.2.0):
+ /use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -33417,12 +32644,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
react: 18.2.0
tslib: 2.6.2
dev: true
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.28)(react@18.1.0):
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.48)(react@18.1.0):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -33431,7 +32658,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
react: 18.1.0
dev: false
@@ -33446,7 +32673,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /use-sidecar@1.1.2(@types/react@18.2.28)(react@18.2.0):
+ /use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -33456,7 +32683,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.28
+ '@types/react': 18.2.48
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
@@ -33763,7 +32990,7 @@ packages:
replace-ext: 1.0.1
dev: false
- /vite-node@0.32.4(@types/node@18.19.8):
+ /vite-node@0.32.4(@types/node@18.19.11):
resolution: {integrity: sha512-L2gIw+dCxO0LK14QnUMoqSYpa9XRGnTTTDjW2h19Mr+GR0EFj4vx52W41gFXfMLqpA00eK4ZjOVYo1Xk//LFEw==}
engines: {node: '>=v14.18.0'}
hasBin: true
@@ -33773,7 +33000,7 @@ packages:
mlly: 1.5.0
pathe: 1.1.2
picocolors: 1.0.0
- vite: 4.5.2(@types/node@18.19.8)
+ vite: 4.5.2(@types/node@18.19.11)
transitivePeerDependencies:
- '@types/node'
- less
@@ -33785,7 +33012,7 @@ packages:
- terser
dev: true
- /vite@4.3.1(@types/node@18.16.19):
+ /vite@4.3.1(@types/node@18.19.11):
resolution: {integrity: sha512-EPmfPLAI79Z/RofuMvkIS0Yr091T2ReUoXQqc5ppBX/sjFRhHKiPPF/R46cTdoci/XgeQpB23diiJxq5w30vdg==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -33810,7 +33037,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.16.19
+ '@types/node': 18.19.11
esbuild: 0.17.19
postcss: 8.4.33
rollup: 3.29.4
@@ -33818,43 +33045,7 @@ packages:
fsevents: 2.3.3
dev: false
- /vite@4.4.5(@types/node@18.16.19):
- resolution: {integrity: sha512-4m5kEtAWHYr0O1Fu7rZp64CfO1PsRGZlD3TAB32UmQlpd7qg15VF7ROqGN5CyqN7HFuwr7ICNM2+fDWRqFEKaA==}
- engines: {node: ^14.18.0 || >=16.0.0}
- hasBin: true
- peerDependencies:
- '@types/node': '>= 14'
- less: '*'
- lightningcss: ^1.21.0
- sass: '*'
- stylus: '*'
- sugarss: '*'
- terser: ^5.4.0
- peerDependenciesMeta:
- '@types/node':
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- dependencies:
- '@types/node': 18.16.19
- esbuild: 0.18.20
- postcss: 8.4.33
- rollup: 3.29.4
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
- /vite@4.5.2(@types/node@18.19.8):
+ /vite@4.5.2(@types/node@18.19.11):
resolution: {integrity: sha512-tBCZBNSBbHQkaGyhGCDUGqeo2ph8Fstyp6FMSvTtsXeZSPpSMGlviAOav2hxVTqFcx8Hj/twtWKsMJXNY0xI8w==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -33882,9 +33073,9 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
esbuild: 0.18.20
- postcss: 8.4.31
+ postcss: 8.4.33
rollup: 3.29.4
optionalDependencies:
fsevents: 2.3.3
@@ -33923,7 +33114,7 @@ packages:
dependencies:
'@types/chai': 4.3.11
'@types/chai-subset': 1.3.5
- '@types/node': 18.19.8
+ '@types/node': 18.19.11
'@vitest/expect': 0.32.4
'@vitest/runner': 0.32.4
'@vitest/snapshot': 0.32.4
@@ -33942,8 +33133,8 @@ packages:
strip-literal: 1.3.0
tinybench: 2.6.0
tinypool: 0.5.0
- vite: 4.5.2(@types/node@18.19.8)
- vite-node: 0.32.4(@types/node@18.19.8)
+ vite: 4.5.2(@types/node@18.19.11)
+ vite-node: 0.32.4(@types/node@18.19.11)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -34190,13 +33381,13 @@ packages:
ip: 1.1.8
is-absolute-url: 3.0.3
killable: 1.0.1
- loglevel: 1.8.1
+ loglevel: 1.9.1
opn: 5.5.0
p-retry: 3.0.1
portfinder: 1.0.25(supports-color@6.1.0)
schema-utils: 1.0.0
selfsigned: 1.10.14
- semver: 6.3.1
+ semver: 6.3.0
serve-index: 1.9.1(supports-color@6.1.0)
sockjs: 0.3.19
sockjs-client: 1.4.0(supports-color@6.1.0)
@@ -34281,8 +33472,8 @@ packages:
- supports-color
dev: false
- /webpack@5.89.0(esbuild@0.17.19):
- resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
+ /webpack@5.90.0(esbuild@0.17.19):
+ resolution: {integrity: sha512-bdmyXRCXeeNIePv6R6tGPyy20aUobw4Zy8r0LUS2EWO+U+Ke/gYDgsCh7bl5rB6jPpr4r0SZa6dPxBxLooDT3w==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -34298,7 +33489,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.6
acorn: 8.11.3
acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.22.2
+ browserslist: 4.22.3
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 1.4.1
@@ -34312,7 +33503,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.89.0)
+ terser-webpack-plugin: 5.3.10(esbuild@0.17.19)(webpack@5.90.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
diff --git a/pyproject.toml b/pyproject.toml
index 75e9db4..766851e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,8 +1,6 @@
[project]
-authors = [{name = "Tony Wu", email = "tonywu6@protonmail.com"}]
-classifiers = [
- "Private :: Do Not Upload",
-]
+authors = [{ name = "Tony Wu", email = "tonywu6@protonmail.com" }]
+classifiers = ["Private :: Do Not Upload"]
dependencies = []
name = "monorepo"
readme = "README.md"
@@ -68,6 +66,13 @@ src = ["pyprojects/*/src"]
[tool.pyright]
exclude = ["**/node_modules", "**/__pycache__"]
include = ["pyprojects/*/src"]
+
+reportArgumentType = "information"
+reportAttributeAccessIssue = "information"
reportGeneralTypeIssues = "information"
+reportIncompatibleMethodOverride = "information"
+reportIncompatibleVariableOverride = "information"
reportOptionalMemberAccess = "information"
+reportOverlappingOverload = "information"
reportPrivateImportUsage = "information"
+reportReturnType = "information"
diff --git a/pyprojects/secretnote/tsconfig.json b/pyprojects/secretnote/tsconfig.json
index 1bbb127..2540439 100644
--- a/pyprojects/secretnote/tsconfig.json
+++ b/pyprojects/secretnote/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "outDir": "dist" },
- "include": ["./src/**/*.js", "./src/**/*.mjs", "package.json"]
+ "include": ["./src/**/*.js", "./src/**/*.mjs", "package.json"],
}