diff --git a/packages/hooks/package.json b/packages/hooks/package.json
index ec60018117..592af399b0 100644
--- a/packages/hooks/package.json
+++ b/packages/hooks/package.json
@@ -55,7 +55,8 @@
"jest-websocket-mock": "^2.1.0",
"mock-socket": "^9.0.3",
"mockjs": "^1.1.0",
- "react-drag-listview": "^0.1.6"
+ "react-drag-listview": "^0.1.6",
+ "react-json-view": "^1.21.3"
},
"engines": {
"node": ">=8.0.0"
diff --git a/packages/hooks/src/useAntdTable/demo/cache.tsx b/packages/hooks/src/useAntdTable/demo/cache.tsx
index 93750a7a35..833441af1f 100644
--- a/packages/hooks/src/useAntdTable/demo/cache.tsx
+++ b/packages/hooks/src/useAntdTable/demo/cache.tsx
@@ -1,6 +1,7 @@
import React, { useState } from 'react';
import { Button, Col, Form, Input, Row, Table, Select } from 'antd';
import { useAntdTable, clearCache } from 'ahooks';
+import ReactJson from 'react-json-view';
const { Option } = Select;
@@ -138,8 +139,10 @@ const UserList = () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
);
diff --git a/packages/hooks/src/useAntdTable/demo/form.tsx b/packages/hooks/src/useAntdTable/demo/form.tsx
index db41cc997e..5dfd639308 100644
--- a/packages/hooks/src/useAntdTable/demo/form.tsx
+++ b/packages/hooks/src/useAntdTable/demo/form.tsx
@@ -1,6 +1,7 @@
import React from 'react';
import { Button, Col, Form, Input, Row, Table, Select } from 'antd';
import { useAntdTable } from 'ahooks';
+import ReactJson from 'react-json-view';
const { Option } = Select;
@@ -124,8 +125,10 @@ export default () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
);
diff --git a/packages/hooks/src/useAntdTable/demo/init.tsx b/packages/hooks/src/useAntdTable/demo/init.tsx
index cc1e5549a6..afa6171c36 100644
--- a/packages/hooks/src/useAntdTable/demo/init.tsx
+++ b/packages/hooks/src/useAntdTable/demo/init.tsx
@@ -1,6 +1,7 @@
import React from 'react';
import { Button, Col, Form, Input, Row, Table, Select } from 'antd';
import { useAntdTable } from 'ahooks';
+import ReactJson from 'react-json-view';
const { Option } = Select;
@@ -128,8 +129,10 @@ export default () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
);
diff --git a/packages/hooks/src/useAntdTable/demo/ready.tsx b/packages/hooks/src/useAntdTable/demo/ready.tsx
index 00e627bd09..f30484bb4a 100644
--- a/packages/hooks/src/useAntdTable/demo/ready.tsx
+++ b/packages/hooks/src/useAntdTable/demo/ready.tsx
@@ -1,6 +1,7 @@
import React, { useState } from 'react';
import { Button, Col, Form, Input, Row, Table, Select } from 'antd';
import { useAntdTable } from 'ahooks';
+import ReactJson from 'react-json-view';
const { Option } = Select;
@@ -133,8 +134,10 @@ export default () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
);
diff --git a/packages/hooks/src/useAntdTable/demo/validate.tsx b/packages/hooks/src/useAntdTable/demo/validate.tsx
index 1cc5ab63de..a5a9c03ada 100644
--- a/packages/hooks/src/useAntdTable/demo/validate.tsx
+++ b/packages/hooks/src/useAntdTable/demo/validate.tsx
@@ -1,6 +1,7 @@
import { Form, Input, Select, Table } from 'antd';
import React from 'react';
import { useAntdTable } from 'ahooks';
+import ReactJson from 'react-json-view';
const { Option } = Select;
@@ -90,8 +91,10 @@ export default () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
);
diff --git a/packages/hooks/src/useFusionTable/demo/cache.tsx b/packages/hooks/src/useFusionTable/demo/cache.tsx
index aa69b6cced..db8e7d24a8 100644
--- a/packages/hooks/src/useFusionTable/demo/cache.tsx
+++ b/packages/hooks/src/useFusionTable/demo/cache.tsx
@@ -1,6 +1,7 @@
import React, { useState } from 'react';
import { Table, Pagination, Field, Form, Input, Button } from '@alifd/next';
import { useFusionTable } from 'ahooks';
+import ReactJson from 'react-json-view';
interface Item {
name: {
@@ -108,8 +109,10 @@ const AppList = () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
);
diff --git a/packages/hooks/src/useFusionTable/demo/form.tsx b/packages/hooks/src/useFusionTable/demo/form.tsx
index 2f2c066c70..6a8205c0c0 100644
--- a/packages/hooks/src/useFusionTable/demo/form.tsx
+++ b/packages/hooks/src/useFusionTable/demo/form.tsx
@@ -1,6 +1,7 @@
import React from 'react';
import { Table, Pagination, Field, Form, Input, Button, Select, Icon } from '@alifd/next';
import { useFusionTable } from 'ahooks';
+import ReactJson from 'react-json-view';
interface Item {
name: {
@@ -119,8 +120,10 @@ const AppList = () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
>
);
diff --git a/packages/hooks/src/useFusionTable/demo/init.tsx b/packages/hooks/src/useFusionTable/demo/init.tsx
index 43b8fc52e8..a1bc19b656 100644
--- a/packages/hooks/src/useFusionTable/demo/init.tsx
+++ b/packages/hooks/src/useFusionTable/demo/init.tsx
@@ -1,6 +1,7 @@
import { Button, Field, Form, Icon, Input, Pagination, Select, Table } from '@alifd/next';
import React from 'react';
import { useFusionTable } from 'ahooks';
+import ReactJson from 'react-json-view';
interface Item {
name: {
@@ -124,8 +125,10 @@ const AppList = () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
>
);
diff --git a/packages/hooks/src/useFusionTable/demo/validate.tsx b/packages/hooks/src/useFusionTable/demo/validate.tsx
index 0ee1fefe0d..f9c151316e 100644
--- a/packages/hooks/src/useFusionTable/demo/validate.tsx
+++ b/packages/hooks/src/useFusionTable/demo/validate.tsx
@@ -1,6 +1,7 @@
import React from 'react';
import { Table, Pagination, Field, Form, Input, Select, Icon } from '@alifd/next';
import { useFusionTable } from 'ahooks';
+import ReactJson from 'react-json-view';
interface Item {
name: {
@@ -71,8 +72,10 @@ const AppList = () => {
-
Current Table: {JSON.stringify(params[0])}
-
Current Form: {JSON.stringify(params[1])}
+
Current Table:
+
+
Current Form:
+
>
);
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cc162affb8..67fe28970d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -59,9 +59,9 @@ importers:
webpack-merge: ^4.2.2
devDependencies:
'@ant-design/icons': 5.0.1_biqbaboplfbrettd7655fr4n2y
- '@babel/cli': 7.20.7_@babel+core@7.20.12
- '@babel/core': 7.20.12
- '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.12
+ '@babel/cli': 7.21.0_@babel+core@7.21.0
+ '@babel/core': 7.21.0
+ '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0
'@commitlint/cli': 17.4.4
'@commitlint/config-conventional': 17.4.4
'@testing-library/jest-dom': 5.16.5
@@ -74,14 +74,14 @@ importers:
'@types/react-router': 5.1.20
'@umijs/fabric': 2.14.1
'@umijs/plugin-sass': 1.1.1_umi@3.5.37+webpack@4.46.0
- antd: 5.2.2_biqbaboplfbrettd7655fr4n2y
- babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
+ antd: 5.2.3_biqbaboplfbrettd7655fr4n2y
+ babel-loader: 8.3.0_idmflsbzmivcz6fnnmcaipezqe
babel-plugin-import: 1.13.6
babel-plugin-transform-async-to-promises: 0.8.18
coveralls: 3.1.1
cross-env: 7.0.3
del: 5.1.0
- dumi: 1.1.50_wsgzksihwfevbilcrcphaswz2e
+ dumi: 1.1.50_flpewppe4tpsqjnh4iaxjnijje
enzyme: 3.11.0
eslint: 7.32.0
eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0
@@ -89,10 +89,10 @@ importers:
fs-extra: 10.1.0
gray-matter: 4.0.3
gulp: 4.0.2
- gulp-babel: 8.0.0_@babel+core@7.20.12
+ gulp-babel: 8.0.0_@babel+core@7.21.0
gulp-typescript: 6.0.0-alpha.1_typescript@4.9.5
husky: 8.0.3
- jest: 29.4.3_lszm27wzplody5hzcr5ax274dy
+ jest: 29.4.3_jcb3wguyhnpyd5azbry5ackz4u
jest-environment-jsdom: 29.4.3
jest-fetch-mock: 3.0.3
jest-localstorage-mock: 2.4.26
@@ -102,11 +102,11 @@ importers:
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
react-drag-listview: 0.1.9
- react-router: 6.8.1_react@18.2.0
+ react-router: 6.8.2_react@18.2.0
react-shadow: 19.1.0_v2m5e27vhdewzwhryxwfaorcca
rimraf: 3.0.2
surge: 0.21.7
- ts-jest: 29.0.5_cslgewaznsjxirw6ogkiwclmbu
+ ts-jest: 29.0.5_kv2fdk7yz6jlbcjfldgcwh5vp4
typescript: 4.9.5
umi-request: 1.4.0
webpack: 4.46.0_webpack-cli@3.3.12
@@ -131,6 +131,7 @@ importers:
mockjs: ^1.1.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-drag-listview: ^0.1.6
+ react-json-view: ^1.21.3
resize-observer-polyfill: ^1.5.1
screenfull: ^5.0.0
tslib: ^2.4.1
@@ -146,15 +147,16 @@ importers:
screenfull: 5.2.0
tslib: 2.5.0
devDependencies:
- '@alifd/next': 1.26.12_ibr6kms4pjdljer2643h72ga3a
+ '@alifd/next': 1.26.14_had4yde6lwbrvmr3cmz4zgsj4q
'@ant-design/icons': 5.0.1_jnbmergxldlwssobus342vza4q
'@types/enzyme': 3.10.12
- antd: 5.2.2_saedcmlbgft4vq6gn57wqgylhq
+ antd: 5.2.3_saedcmlbgft4vq6gn57wqgylhq
enzyme-adapter-react-16: 1.15.7_i6jb26zkukcjdnnkhpb37sx774
jest-websocket-mock: 2.4.0
mock-socket: 9.2.1
mockjs: 1.1.0
react-drag-listview: 0.1.9
+ react-json-view: 1.21.3_jnbmergxldlwssobus342vza4q
packages/use-url-state:
specifiers:
@@ -167,14 +169,14 @@ importers:
ahooks: link:../hooks
query-string: 6.14.1
react: 18.2.0
- react-router: 6.8.1_react@18.2.0
+ react-router: 6.8.2_react@18.2.0
tslib: 2.5.0
packages:
- /@adobe/css-tools/4.1.0:
+ /@adobe/css-tools/4.2.0:
resolution:
{
- integrity: sha512-mMVJ/j/GbZ/De4ZHWbQAQO1J6iVnjtZLc9WEdkUQb8S/Bu2cAF2bETXUgMAdvMG3/ngtKmcNBe+Zms9bg6jnQQ==,
+ integrity: sha512-E09FiIft46CmH5Qnjb0wsW54/YQd69LsxeKUOWawmws1XWvyFGURnAChH0mlr7YPFR1ofwvUQfcL0J3lMxXqPA==,
}
dev: true
@@ -221,10 +223,10 @@ packages:
universal-transition: 1.1.1
dev: true
- /@alifd/meet-react/2.8.4_3nhrqqe4wnxrwia6vu5sybxkwq:
+ /@alifd/meet-react/2.8.5_3nhrqqe4wnxrwia6vu5sybxkwq:
resolution:
{
- integrity: sha512-7BK0MrjxbkRFSNOBOkvOOh2DTql/VPJdmx4jw10z09AoZZaiqnCswuj3izVJ6ec/AHBXJZYjzzOBg2y6TIOvwA==,
+ integrity: sha512-muJfZAGYr+1PfWpDCnKl8bOeWyoxESvfImo8BAYWNvRY/CmeL4dDbA/vDm9JkkcbFaqoa1ooLYFZ0F/+TzcvPA==,
}
peerDependencies:
react: '>=16.0.0'
@@ -253,10 +255,10 @@ packages:
- rax
dev: true
- /@alifd/next/1.26.12_ibr6kms4pjdljer2643h72ga3a:
+ /@alifd/next/1.26.14_had4yde6lwbrvmr3cmz4zgsj4q:
resolution:
{
- integrity: sha512-+fWogWkSbpqTW0wtuJjBn4t51k05H5UhQ+PXU04Fe8/SOOTpHU8gCWFhnfV9JIta5ZGdhbD8qRU5LfA/jc1/GQ==,
+ integrity: sha512-fBnmiG19gCV9VV5ZYqT6aozWMNkMeeqS7EqxSGAP2NVKIerNQGY6/AnpKXXD3K5ke5sJcvho/a1Zu/FERBBMdw==,
}
peerDependencies:
'@alifd/meet-react': ^2.0.0
@@ -265,7 +267,7 @@ packages:
react-dom: '>=16.0.0'
dependencies:
'@alifd/field': 1.5.8
- '@alifd/meet-react': 2.8.4_3nhrqqe4wnxrwia6vu5sybxkwq
+ '@alifd/meet-react': 2.8.5_3nhrqqe4wnxrwia6vu5sybxkwq
'@alifd/overlay': 0.2.12
'@alifd/validate': 1.2.3
babel-runtime: 6.26.0
@@ -327,16 +329,16 @@ packages:
'@ctrl/tinycolor': 3.6.0
dev: true
- /@ant-design/cssinjs/1.5.6_biqbaboplfbrettd7655fr4n2y:
+ /@ant-design/cssinjs/1.6.1_biqbaboplfbrettd7655fr4n2y:
resolution:
{
- integrity: sha512-1S7LUPC9BMyQ/CUYgzfePJJwEfsbVHJe3Tpd9zhujTxRM/6LYpN9N4FTaPHVqpnPazm0S2vG0WBkh2T5Erwuug==,
+ integrity: sha512-35+1e5h1HzPt7d7NjXTG5yg/OQY85YcOIpb3peB3/eKri7+0mW9c+WZB3In7yMscBzvxQREOR5pxNDbqMcI42w==,
}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
classnames: 2.3.2
@@ -347,16 +349,16 @@ packages:
stylis: 4.1.3
dev: true
- /@ant-design/cssinjs/1.5.6_jnbmergxldlwssobus342vza4q:
+ /@ant-design/cssinjs/1.6.1_jnbmergxldlwssobus342vza4q:
resolution:
{
- integrity: sha512-1S7LUPC9BMyQ/CUYgzfePJJwEfsbVHJe3Tpd9zhujTxRM/6LYpN9N4FTaPHVqpnPazm0S2vG0WBkh2T5Erwuug==,
+ integrity: sha512-35+1e5h1HzPt7d7NjXTG5yg/OQY85YcOIpb3peB3/eKri7+0mW9c+WZB3In7yMscBzvxQREOR5pxNDbqMcI42w==,
}
peerDependencies:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
classnames: 2.3.2
@@ -386,7 +388,7 @@ packages:
dependencies:
'@ant-design/colors': 7.0.0
'@ant-design/icons-svg': 4.2.1
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -405,7 +407,7 @@ packages:
dependencies:
'@ant-design/colors': 7.0.0
'@ant-design/icons-svg': 4.2.1
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -420,7 +422,7 @@ packages:
peerDependencies:
react: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
json2mq: 0.2.0
react: 18.2.0
@@ -428,17 +430,17 @@ packages:
throttle-debounce: 5.0.0
dev: true
- /@babel/cli/7.20.7_@babel+core@7.20.12:
+ /@babel/cli/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-WylgcELHB66WwQqItxNILsMlaTd8/SO6SgTTjMp4uCI7P4QyH1r3nqgFmO3BfM4AtfniHgFMH3EpYFj/zynBkQ==,
+ integrity: sha512-xi7CxyS8XjSyiwUGCfwf+brtJxjW1/ZTcBUkP10xawIEXLX5HzLn+3aXkgxozcP2UhRhtKTmQurw9Uaes7jZrA==,
}
engines: { node: '>=6.9.0' }
hasBin: true
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@jridgewell/trace-mapping': 0.3.17
commander: 4.1.1
convert-source-map: 1.9.0
@@ -470,31 +472,31 @@ packages:
'@babel/highlight': 7.18.6
dev: true
- /@babel/compat-data/7.20.14:
+ /@babel/compat-data/7.21.0:
resolution:
{
- integrity: sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==,
+ integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==,
}
engines: { node: '>=6.9.0' }
dev: true
- /@babel/core/7.20.12:
+ /@babel/core/7.21.0:
resolution:
{
- integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==,
+ integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==,
}
engines: { node: '>=6.9.0' }
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
- '@babel/helper-module-transforms': 7.20.11
- '@babel/helpers': 7.20.13
- '@babel/parser': 7.20.15
+ '@babel/generator': 7.21.1
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helpers': 7.21.0
+ '@babel/parser': 7.21.2
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -504,7 +506,7 @@ packages:
- supports-color
dev: true
- /@babel/eslint-parser/7.19.1_go3kp2l7mdrkdyt3xfyeu7ppfa:
+ /@babel/eslint-parser/7.19.1_ccoxihxmx25rm5cufeee3dmlne:
resolution:
{
integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==,
@@ -514,22 +516,23 @@ packages:
'@babel/core': '>=7.11.0'
eslint: ^7.5.0 || ^8.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 7.32.0
eslint-visitor-keys: 2.1.0
semver: 6.3.0
dev: true
- /@babel/generator/7.20.14:
+ /@babel/generator/7.21.1:
resolution:
{
- integrity: sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==,
+ integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==,
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
'@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
dev: true
@@ -540,7 +543,7 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -551,10 +554,10 @@ packages:
engines: { node: '>=6.9.0' }
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12:
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==,
@@ -563,28 +566,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-validator-option': 7.18.6
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.0
+ '@babel/helper-validator-option': 7.21.0
browserslist: 4.21.5
lru-cache: 5.1.1
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12:
+ /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==,
+ integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.20.7
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
@@ -593,21 +596,21 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12:
+ /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==,
+ integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.3.1
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==,
@@ -615,8 +618,8 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -641,18 +644,18 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-function-name/7.19.0:
+ /@babel/helper-function-name/7.21.0:
resolution:
{
- integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==,
+ integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==,
}
engines: { node: '>=6.9.0' }
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-hoist-variables/7.18.6:
@@ -662,17 +665,17 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-member-expression-to-functions/7.20.7:
+ /@babel/helper-member-expression-to-functions/7.21.0:
resolution:
{
- integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==,
+ integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==,
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-module-imports/7.18.6:
@@ -682,13 +685,13 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/helper-module-transforms/7.20.11:
+ /@babel/helper-module-transforms/7.21.2:
resolution:
{
- integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==,
+ integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==,
}
engines: { node: '>=6.9.0' }
dependencies:
@@ -698,8 +701,8 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -711,7 +714,7 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-plugin-utils/7.20.2:
@@ -722,7 +725,7 @@ packages:
engines: { node: '>=6.9.0' }
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12:
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==,
@@ -731,11 +734,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -748,11 +751,11 @@ packages:
engines: { node: '>=6.9.0' }
dependencies:
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.20.7
+ '@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -764,7 +767,7 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-skip-transparent-expression-wrappers/7.20.0:
@@ -774,7 +777,7 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-split-export-declaration/7.18.6:
@@ -784,7 +787,7 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@babel/helper-string-parser/7.19.4:
@@ -803,10 +806,10 @@ packages:
engines: { node: '>=6.9.0' }
dev: true
- /@babel/helper-validator-option/7.18.6:
+ /@babel/helper-validator-option/7.21.0:
resolution:
{
- integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==,
+ integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==,
}
engines: { node: '>=6.9.0' }
dev: true
@@ -818,24 +821,24 @@ packages:
}
engines: { node: '>=6.9.0' }
dependencies:
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.20.13:
+ /@babel/helpers/7.21.0:
resolution:
{
- integrity: sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==,
+ integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==,
}
engines: { node: '>=6.9.0' }
dependencies:
'@babel/template': 7.20.7
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
transitivePeerDependencies:
- supports-color
dev: true
@@ -852,18 +855,18 @@ packages:
js-tokens: 4.0.0
dev: true
- /@babel/parser/7.20.15:
+ /@babel/parser/7.21.2:
resolution:
{
- integrity: sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==,
+ integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==,
}
engines: { node: '>=6.0.0' }
hasBin: true
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==,
@@ -872,11 +875,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==,
@@ -885,13 +888,13 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==,
@@ -900,16 +903,16 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==,
@@ -918,50 +921,50 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==,
+ integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators/7.20.13_@babel+core@7.20.12:
+ /@babel/plugin-proposal-decorators/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-7T6BKHa9Cpd7lCueHBBzP0nkXNina+h5giOZw+a8ZpMfPFY19VjJAjIxyFHuWkhCWgL6QMqRiY/wB1fLXzm6Mw==,
+ integrity: sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.20.12
+ '@babel/plugin-syntax-decorators': 7.21.0_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==,
@@ -970,12 +973,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==,
@@ -984,12 +987,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==,
@@ -998,12 +1001,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==,
@@ -1012,12 +1015,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==,
@@ -1026,12 +1029,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==,
@@ -1040,12 +1043,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==,
@@ -1054,15 +1057,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==,
@@ -1071,27 +1074,27 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==,
+ integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==,
@@ -1100,32 +1103,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12:
+ /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==,
+ integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==,
@@ -1134,12 +1137,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.0:
resolution:
{
integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
@@ -1147,11 +1150,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==,
@@ -1159,11 +1162,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.0:
resolution:
{
integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
@@ -1171,11 +1174,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.0:
resolution:
{
integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
@@ -1184,24 +1187,24 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.12:
+ /@babel/plugin-syntax-decorators/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==,
+ integrity: sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==,
@@ -1209,11 +1212,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==,
@@ -1221,11 +1224,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12:
+ /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0:
resolution:
{
integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==,
@@ -1234,11 +1237,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.21.0:
resolution:
{
integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
@@ -1246,11 +1249,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
@@ -1258,11 +1261,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==,
@@ -1271,11 +1274,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.0:
resolution:
{
integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
@@ -1283,11 +1286,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
@@ -1295,11 +1298,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.0:
resolution:
{
integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
@@ -1307,11 +1310,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
@@ -1319,11 +1322,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
@@ -1331,11 +1334,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
@@ -1343,11 +1346,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.0:
resolution:
{
integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
@@ -1356,11 +1359,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.0:
resolution:
{
integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
@@ -1369,11 +1372,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.12:
+ /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.0:
resolution:
{
integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==,
@@ -1382,11 +1385,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==,
@@ -1395,11 +1398,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==,
@@ -1408,15 +1411,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==,
@@ -1425,37 +1428,37 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-block-scoping/7.20.15_@babel+core@7.20.12:
+ /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==,
+ integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==,
+ integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
@@ -1465,7 +1468,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==,
@@ -1474,12 +1477,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/template': 7.20.7
dev: true
- /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==,
@@ -1488,11 +1491,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==,
@@ -1501,12 +1504,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==,
@@ -1515,11 +1518,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==,
@@ -1528,25 +1531,25 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12:
+ /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==,
+ integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==,
@@ -1555,13 +1558,13 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
- '@babel/helper-function-name': 7.19.0
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==,
@@ -1570,11 +1573,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==,
@@ -1583,11 +1586,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0:
resolution:
{
integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==,
@@ -1596,31 +1599,31 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/core': 7.21.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==,
+ integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/core': 7.21.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-simple-access': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.0:
resolution:
{
integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==,
@@ -1629,16 +1632,16 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-identifier': 7.19.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==,
@@ -1647,14 +1650,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-module-transforms': 7.20.11
+ '@babel/core': 7.21.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0:
resolution:
{
integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==,
@@ -1663,12 +1666,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==,
@@ -1677,11 +1680,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==,
@@ -1690,14 +1693,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==,
@@ -1706,11 +1709,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==,
@@ -1719,11 +1722,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==,
@@ -1732,11 +1735,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==,
@@ -1745,28 +1748,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
dev: true
- /@babel/plugin-transform-react-jsx/7.20.13_@babel+core@7.20.12:
+ /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==,
+ integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
- '@babel/types': 7.20.7
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0
+ '@babel/types': 7.21.2
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==,
@@ -1775,12 +1778,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12:
+ /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.0:
resolution:
{
integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==,
@@ -1789,12 +1792,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==,
@@ -1803,31 +1806,31 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==,
+ integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==,
@@ -1836,11 +1839,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12:
+ /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0:
resolution:
{
integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==,
@@ -1849,12 +1852,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==,
@@ -1863,11 +1866,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==,
@@ -1876,11 +1879,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.0:
resolution:
{
integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==,
@@ -1889,28 +1892,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typescript/7.20.13_@babel+core@7.20.12:
+ /@babel/plugin-transform-typescript/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==,
+ integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.0:
resolution:
{
integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==,
@@ -1919,11 +1922,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12:
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==,
@@ -1932,12 +1935,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/preset-env/7.20.2_@babel+core@7.20.12:
+ /@babel/preset-env/7.20.2_@babel+core@7.21.0:
resolution:
{
integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==,
@@ -1946,87 +1949,87 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-block-scoping': 7.20.15_@babel+core@7.20.12
- '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12
- '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12
- '@babel/preset-modules': 0.1.5_@babel+core@7.20.12
- '@babel/types': 7.20.7
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
- core-js-compat: 3.28.0
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0
+ '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/preset-modules': 0.1.5_@babel+core@7.21.0
+ '@babel/types': 7.21.2
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0
+ core-js-compat: 3.29.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.20.12:
+ /@babel/preset-modules/0.1.5_@babel+core@7.21.0:
resolution:
{
integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==,
@@ -2034,15 +2037,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
- '@babel/types': 7.20.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0
+ '@babel/types': 7.21.2
esutils: 2.0.3
dev: true
- /@babel/preset-react/7.18.6_@babel+core@7.20.12:
+ /@babel/preset-react/7.18.6_@babel+core@7.21.0:
resolution:
{
integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==,
@@ -2051,28 +2054,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-react-jsx': 7.20.13_@babel+core@7.20.12
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.12
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.0
dev: true
- /@babel/preset-typescript/7.18.6_@babel+core@7.20.12:
+ /@babel/preset-typescript/7.21.0_@babel+core@7.21.0:
resolution:
{
- integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==,
+ integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.20.13_@babel+core@7.20.12
+ '@babel/helper-validator-option': 7.21.0
+ '@babel/plugin-transform-typescript': 7.21.0_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2094,10 +2097,10 @@ packages:
regenerator-runtime: 0.13.11
dev: true
- /@babel/runtime/7.20.13:
+ /@babel/runtime/7.21.0:
resolution:
{
- integrity: sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==,
+ integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==,
}
engines: { node: '>=6.9.0' }
dependencies:
@@ -2112,35 +2115,35 @@ packages:
engines: { node: '>=6.9.0' }
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ '@babel/parser': 7.21.2
+ '@babel/types': 7.21.2
dev: true
- /@babel/traverse/7.20.13:
+ /@babel/traverse/7.21.2:
resolution:
{
- integrity: sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==,
+ integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==,
}
engines: { node: '>=6.9.0' }
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.20.14
+ '@babel/generator': 7.21.1
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ '@babel/parser': 7.21.2
+ '@babel/types': 7.21.2
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types/7.20.7:
+ /@babel/types/7.21.2:
resolution:
{
- integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==,
+ integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==,
}
engines: { node: '>=6.9.0' }
dependencies:
@@ -2180,7 +2183,7 @@ packages:
lodash.isfunction: 3.0.9
resolve-from: 5.0.0
resolve-global: 1.0.0
- yargs: 17.7.0
+ yargs: 17.7.1
transitivePeerDependencies:
- '@swc/core'
- '@swc/wasm'
@@ -2276,15 +2279,15 @@ packages:
'@commitlint/execute-rule': 17.4.0
'@commitlint/resolve-extends': 17.4.4
'@commitlint/types': 17.4.4
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
- cosmiconfig: 8.0.0
- cosmiconfig-typescript-loader: 4.3.0_ipkhww4xc5z2tt2x53vp2mt2be
+ cosmiconfig: 8.1.0
+ cosmiconfig-typescript-loader: 4.3.0_nd25hbh3ectnnkbvturxnqqqfm
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_tncu2ai53lzgmizdedur7lbibe
+ ts-node: 10.9.1_oboltcrkaqheaa54woelu7cdsa
typescript: 4.9.5
transitivePeerDependencies:
- '@swc/core'
@@ -2500,7 +2503,7 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
jest-message-util: 29.4.3
jest-util: 29.4.3
@@ -2524,14 +2527,14 @@ packages:
'@jest/test-result': 29.4.3
'@jest/transform': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.8.0
exit: 0.1.2
graceful-fs: 4.2.10
jest-changed-files: 29.4.3
- jest-config: 29.4.3_lszm27wzplody5hzcr5ax274dy
+ jest-config: 29.4.3_jcb3wguyhnpyd5azbry5ackz4u
jest-haste-map: 29.4.3
jest-message-util: 29.4.3
jest-regex-util: 29.4.3
@@ -2561,7 +2564,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
jest-mock: 29.4.3
dev: true
@@ -2597,7 +2600,7 @@ packages:
dependencies:
'@jest/types': 29.4.3
'@sinonjs/fake-timers': 10.0.2
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
jest-message-util: 29.4.3
jest-mock: 29.4.3
jest-util: 29.4.3
@@ -2636,7 +2639,7 @@ packages:
'@jest/transform': 29.4.3
'@jest/types': 29.4.3
'@jridgewell/trace-mapping': 0.3.17
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
@@ -2675,7 +2678,7 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@sinclair/typebox': 0.25.23
+ '@sinclair/typebox': 0.25.24
dev: true
/@jest/source-map/29.4.3:
@@ -2723,7 +2726,7 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@jest/types': 29.4.3
'@jridgewell/trace-mapping': 0.3.17
babel-plugin-istanbul: 6.1.1
@@ -2752,7 +2755,7 @@ packages:
'@jest/schemas': 29.4.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
'@types/yargs': 17.0.22
chalk: 4.1.2
dev: true
@@ -2906,7 +2909,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -2921,7 +2924,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
react-dom: 16.14.0_react@18.2.0
@@ -2934,7 +2937,7 @@ packages:
}
engines: { node: '>=8.x' }
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
dev: true
/@rc-component/mutate-observer/1.0.0_biqbaboplfbrettd7655fr4n2y:
@@ -2947,7 +2950,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -2964,7 +2967,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -2981,7 +2984,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -2998,7 +3001,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -3015,7 +3018,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_biqbaboplfbrettd7655fr4n2y
classnames: 2.3.2
rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y
@@ -3034,7 +3037,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_jnbmergxldlwssobus342vza4q
classnames: 2.3.2
rc-trigger: 5.3.4_jnbmergxldlwssobus342vza4q
@@ -3043,10 +3046,10 @@ packages:
react-dom: 16.14.0_react@18.2.0
dev: true
- /@remix-run/router/1.3.2:
+ /@remix-run/router/1.3.3:
resolution:
{
- integrity: sha512-t54ONhl/h75X94SWsHGQ4G/ZrCEguKSRQr7DrjTciJXW0YU1QhlwYeycvK5JgkzlxmvrK7wq1NB/PLtHxoiDcA==,
+ integrity: sha512-YRHie1yQEj0kqqCTCJEfHqYSSNlZQ696QJG+MMiW4mxSl9I0ojz/eRhJS4fs88Z5i6D1SmoF9d3K99/QOhI8/w==,
}
engines: { node: '>=14' }
@@ -3057,10 +3060,10 @@ packages:
}
dev: true
- /@sinclair/typebox/0.25.23:
+ /@sinclair/typebox/0.25.24:
resolution:
{
- integrity: sha512-VEB8ygeP42CFLWyAJhN5OklpxUliqdNEUcXb4xZ/CINqtYGTjL5ukluKdKzQ0iWdUxyQ7B0539PAUhHKrCNWSQ==,
+ integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==,
}
dev: true
@@ -3092,7 +3095,7 @@ packages:
postcss: '>=7.0.0'
postcss-syntax: '>=0.36.2'
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
postcss: 7.0.39
postcss-syntax: 0.36.2_postcss@7.0.39
transitivePeerDependencies:
@@ -3125,7 +3128,7 @@ packages:
engines: { node: '>=12' }
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@types/aria-query': 5.0.1
aria-query: 5.1.3
chalk: 4.1.2
@@ -3141,8 +3144,8 @@ packages:
}
engines: { node: '>=8', npm: '>=6', yarn: '>=1' }
dependencies:
- '@adobe/css-tools': 4.1.0
- '@babel/runtime': 7.20.13
+ '@adobe/css-tools': 4.2.0
+ '@babel/runtime': 7.21.0
'@types/testing-library__jest-dom': 5.14.5
aria-query: 5.1.3
chalk: 3.0.0
@@ -3162,7 +3165,7 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@testing-library/dom': 8.20.0
'@types/react-dom': 18.0.11
react: 18.2.0
@@ -3226,8 +3229,8 @@ packages:
integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==,
}
dependencies:
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ '@babel/parser': 7.21.2
+ '@babel/types': 7.21.2
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.3
@@ -3239,7 +3242,7 @@ packages:
integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==,
}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@types/babel__template/7.4.1:
@@ -3248,8 +3251,8 @@ packages:
integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==,
}
dependencies:
- '@babel/parser': 7.20.15
- '@babel/types': 7.20.7
+ '@babel/parser': 7.21.2
+ '@babel/types': 7.21.2
dev: true
/@types/babel__traverse/7.18.3:
@@ -3258,7 +3261,7 @@ packages:
integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==,
}
dependencies:
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
dev: true
/@types/cheerio/0.22.31:
@@ -3267,7 +3270,7 @@ packages:
integrity: sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw==,
}
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
dev: true
/@types/enzyme/3.10.12:
@@ -3304,7 +3307,7 @@ packages:
}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
dev: true
/@types/graceful-fs/4.1.6:
@@ -3313,7 +3316,7 @@ packages:
integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==,
}
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
dev: true
/@types/hast/2.3.4:
@@ -3397,7 +3400,7 @@ packages:
integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==,
}
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
'@types/tough-cookie': 4.0.2
parse5: 7.1.2
dev: true
@@ -3415,7 +3418,7 @@ packages:
integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==,
}
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
dev: true
/@types/lodash.debounce/4.0.7:
@@ -3496,17 +3499,17 @@ packages:
}
dev: true
- /@types/node/14.18.36:
+ /@types/node/14.18.37:
resolution:
{
- integrity: sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==,
+ integrity: sha512-7GgtHCs/QZrBrDzgIJnQtuSvhFSwhyYSI2uafSwZoNt1iOGhEN5fwNrQMjtONyHm9+/LoA4453jH0CMYcr06Pg==,
}
dev: true
- /@types/node/18.14.0:
+ /@types/node/18.14.4:
resolution:
{
- integrity: sha512-5EWrvLmglK+imbCJY0+INViFWUHg1AHel1sq4ZVSfdcNqGy9Edv3UB9IIzzg+xPaUcAgZYcfVs2fBcwDeZzU0A==,
+ integrity: sha512-VhCw7I7qO2X49+jaKcAUwi3rR+hbxT5VcYF493+Z5kMLI0DL568b7JI4IDJaxWFH0D/xwmGJNoXisyX+w7GH/g==,
}
dev: true
@@ -3574,17 +3577,6 @@ packages:
'@types/react-router': 5.1.20
dev: true
- /@types/react-router-config/5.0.6:
- resolution:
- {
- integrity: sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==,
- }
- dependencies:
- '@types/history': 4.7.11
- '@types/react': 16.14.35
- '@types/react-router': 5.1.20
- dev: true
-
/@types/react-router-dom/5.1.7:
resolution:
{
@@ -3644,7 +3636,7 @@ packages:
integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==,
}
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
dev: true
/@types/sax/1.2.4:
@@ -3653,7 +3645,7 @@ packages:
integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==,
}
dependencies:
- '@types/node': 14.18.36
+ '@types/node': 14.18.37
dev: true
/@types/scheduler/0.16.2:
@@ -3716,10 +3708,10 @@ packages:
'@types/yargs-parser': 21.0.0
dev: true
- /@typescript-eslint/eslint-plugin/5.52.0_j2xzuhj7jlo6utt4db5kd4zyxy:
+ /@typescript-eslint/eslint-plugin/5.54.0_upfp7q3y5merkkqzbm2yvqbijq:
resolution:
{
- integrity: sha512-lHazYdvYVsBokwCdKOppvYJKaJ4S41CgKBcPvyd0xjZNbvQdhn/pnJlGtQksQ/NhInzdaeaSarlBjDXHuclEbg==,
+ integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
@@ -3730,10 +3722,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.52.0_jofidmxrjzhj7l6vknpw5ecvfe
- '@typescript-eslint/scope-manager': 5.52.0
- '@typescript-eslint/type-utils': 5.52.0_jofidmxrjzhj7l6vknpw5ecvfe
- '@typescript-eslint/utils': 5.52.0_jofidmxrjzhj7l6vknpw5ecvfe
+ '@typescript-eslint/parser': 5.54.0_jofidmxrjzhj7l6vknpw5ecvfe
+ '@typescript-eslint/scope-manager': 5.54.0
+ '@typescript-eslint/type-utils': 5.54.0_jofidmxrjzhj7l6vknpw5ecvfe
+ '@typescript-eslint/utils': 5.54.0_jofidmxrjzhj7l6vknpw5ecvfe
debug: 4.3.4
eslint: 7.32.0
grapheme-splitter: 1.0.4
@@ -3768,10 +3760,10 @@ packages:
- typescript
dev: true
- /@typescript-eslint/parser/5.52.0_jofidmxrjzhj7l6vknpw5ecvfe:
+ /@typescript-eslint/parser/5.54.0_jofidmxrjzhj7l6vknpw5ecvfe:
resolution:
{
- integrity: sha512-e2KiLQOZRo4Y0D/b+3y08i3jsekoSkOYStROYmPUnGMEoA0h+k2qOH5H6tcjIc68WDvGwH+PaOrP1XRzLJ6QlA==,
+ integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
@@ -3781,9 +3773,9 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.52.0
- '@typescript-eslint/types': 5.52.0
- '@typescript-eslint/typescript-estree': 5.52.0_typescript@4.9.5
+ '@typescript-eslint/scope-manager': 5.54.0
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
debug: 4.3.4
eslint: 7.32.0
typescript: 4.9.5
@@ -3802,21 +3794,21 @@ packages:
'@typescript-eslint/visitor-keys': 4.33.0
dev: true
- /@typescript-eslint/scope-manager/5.52.0:
+ /@typescript-eslint/scope-manager/5.54.0:
resolution:
{
- integrity: sha512-AR7sxxfBKiNV0FWBSARxM8DmNxrwgnYMPwmpkC1Pl1n+eT8/I2NAUPuwDy/FmDcC6F8pBfmOcaxcxRHspgOBMw==,
+ integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dependencies:
- '@typescript-eslint/types': 5.52.0
- '@typescript-eslint/visitor-keys': 5.52.0
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/visitor-keys': 5.54.0
dev: true
- /@typescript-eslint/type-utils/5.52.0_jofidmxrjzhj7l6vknpw5ecvfe:
+ /@typescript-eslint/type-utils/5.54.0_jofidmxrjzhj7l6vknpw5ecvfe:
resolution:
{
- integrity: sha512-tEKuUHfDOv852QGlpPtB3lHOoig5pyFQN/cUiZtpw99D93nEBjexRLre5sQZlkMoHry/lZr8qDAt2oAHLKA6Jw==,
+ integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
@@ -3826,8 +3818,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.52.0_typescript@4.9.5
- '@typescript-eslint/utils': 5.52.0_jofidmxrjzhj7l6vknpw5ecvfe
+ '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
+ '@typescript-eslint/utils': 5.54.0_jofidmxrjzhj7l6vknpw5ecvfe
debug: 4.3.4
eslint: 7.32.0
tsutils: 3.21.0_typescript@4.9.5
@@ -3844,10 +3836,10 @@ packages:
engines: { node: ^8.10.0 || ^10.13.0 || >=11.10.1 }
dev: true
- /@typescript-eslint/types/5.52.0:
+ /@typescript-eslint/types/5.54.0:
resolution:
{
- integrity: sha512-oV7XU4CHYfBhk78fS7tkum+/Dpgsfi91IIDy7fjCyq2k6KB63M6gMC0YIvy+iABzmXThCRI6xpCEyVObBdWSDQ==,
+ integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dev: true
@@ -3876,10 +3868,10 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.52.0_typescript@4.9.5:
+ /@typescript-eslint/typescript-estree/5.54.0_typescript@4.9.5:
resolution:
{
- integrity: sha512-WeWnjanyEwt6+fVrSR0MYgEpUAuROxuAH516WPjUblIrClzYJj0kBbjdnbQXLpgAN8qbEuGywiQsXUVDiAoEuQ==,
+ integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
@@ -3888,8 +3880,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.52.0
- '@typescript-eslint/visitor-keys': 5.52.0
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/visitor-keys': 5.54.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -3900,10 +3892,10 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/utils/5.52.0_jofidmxrjzhj7l6vknpw5ecvfe:
+ /@typescript-eslint/utils/5.54.0_jofidmxrjzhj7l6vknpw5ecvfe:
resolution:
{
- integrity: sha512-As3lChhrbwWQLNk2HC8Ree96hldKIqk98EYvypd3It8Q1f8d5zWyIoaZEp2va5667M4ZyE7X8UUR+azXrFl+NA==,
+ integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
@@ -3911,9 +3903,9 @@ packages:
dependencies:
'@types/json-schema': 7.0.11
'@types/semver': 7.3.13
- '@typescript-eslint/scope-manager': 5.52.0
- '@typescript-eslint/types': 5.52.0
- '@typescript-eslint/typescript-estree': 5.52.0_typescript@4.9.5
+ '@typescript-eslint/scope-manager': 5.54.0
+ '@typescript-eslint/types': 5.54.0
+ '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@7.32.0
@@ -3934,14 +3926,14 @@ packages:
eslint-visitor-keys: 2.1.0
dev: true
- /@typescript-eslint/visitor-keys/5.52.0:
+ /@typescript-eslint/visitor-keys/5.54.0:
resolution:
{
- integrity: sha512-qMwpw6SU5VHCPr99y274xhbm+PRViK/NATY6qzt+Et7+mThGuFSl/ompj2/hrBlRP/kq+BFdgagnOSgw9TB0eA==,
+ integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
dependencies:
- '@typescript-eslint/types': 5.52.0
+ '@typescript-eslint/types': 5.54.0
eslint-visitor-keys: 3.3.0
dev: true
@@ -4006,14 +3998,14 @@ packages:
'@umijs/utils': 3.5.37
dev: true
- /@umijs/bundler-utils/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
+ /@umijs/bundler-utils/3.5.37_263kk2d5tiuyg32yuu7rrhuyze:
resolution:
{
integrity: sha512-4f0CnXOkkqW7fPdKPQ1NmnhyNOjTn5cqTzAcSYtSM7pL2d0O6yf1mCe9qkUSY9fQgOYtHwrBYheS6EtTes/fQA==,
}
dependencies:
'@umijs/babel-preset-umi': 3.5.37
- '@umijs/types': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
+ '@umijs/types': 3.5.37_263kk2d5tiuyg32yuu7rrhuyze
'@umijs/utils': 3.5.37
transitivePeerDependencies:
- react
@@ -4021,14 +4013,14 @@ packages:
- react-router
dev: true
- /@umijs/bundler-utils/3.5.37_irmrfwtued6qmvagmh5usvk7qi:
+ /@umijs/bundler-utils/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
resolution:
{
integrity: sha512-4f0CnXOkkqW7fPdKPQ1NmnhyNOjTn5cqTzAcSYtSM7pL2d0O6yf1mCe9qkUSY9fQgOYtHwrBYheS6EtTes/fQA==,
}
dependencies:
'@umijs/babel-preset-umi': 3.5.37
- '@umijs/types': 3.5.37_irmrfwtued6qmvagmh5usvk7qi
+ '@umijs/types': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
'@umijs/utils': 3.5.37
transitivePeerDependencies:
- react
@@ -4036,17 +4028,17 @@ packages:
- react-router
dev: true
- /@umijs/bundler-webpack/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
+ /@umijs/bundler-webpack/3.5.37_263kk2d5tiuyg32yuu7rrhuyze:
resolution:
{
integrity: sha512-t9m35Mk1zIqQLxho6F99vtAN3gXtGG1DfLh6v9htNdaRDU3TMYk3ocBLEbywS9ZNX+MUxIBKDwh63Q1CbAMNSQ==,
}
hasBin: true
dependencies:
- '@umijs/bundler-utils': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
+ '@umijs/bundler-utils': 3.5.37_263kk2d5tiuyg32yuu7rrhuyze
'@umijs/case-sensitive-paths-webpack-plugin': 1.0.1
'@umijs/deps': 3.5.37
- '@umijs/types': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
+ '@umijs/types': 3.5.37_263kk2d5tiuyg32yuu7rrhuyze
'@umijs/utils': 3.5.37
jest-worker: 26.6.2
node-libs-browser: 2.2.1
@@ -4064,17 +4056,17 @@ packages:
- react-router
dev: true
- /@umijs/bundler-webpack/3.5.37_irmrfwtued6qmvagmh5usvk7qi:
+ /@umijs/bundler-webpack/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
resolution:
{
integrity: sha512-t9m35Mk1zIqQLxho6F99vtAN3gXtGG1DfLh6v9htNdaRDU3TMYk3ocBLEbywS9ZNX+MUxIBKDwh63Q1CbAMNSQ==,
}
hasBin: true
dependencies:
- '@umijs/bundler-utils': 3.5.37_irmrfwtued6qmvagmh5usvk7qi
+ '@umijs/bundler-utils': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
'@umijs/case-sensitive-paths-webpack-plugin': 1.0.1
'@umijs/deps': 3.5.37
- '@umijs/types': 3.5.37_irmrfwtued6qmvagmh5usvk7qi
+ '@umijs/types': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
'@umijs/utils': 3.5.37
jest-worker: 26.6.2
node-libs-browser: 2.2.1
@@ -4133,21 +4125,21 @@ packages:
}
hasBin: true
dependencies:
- '@babel/core': 7.20.12
- '@babel/eslint-parser': 7.19.1_go3kp2l7mdrkdyt3xfyeu7ppfa
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-proposal-decorators': 7.20.13_@babel+core@7.20.12
- '@babel/preset-env': 7.20.2_@babel+core@7.20.12
- '@babel/preset-react': 7.18.6_@babel+core@7.20.12
- '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
- '@typescript-eslint/eslint-plugin': 5.52.0_j2xzuhj7jlo6utt4db5kd4zyxy
- '@typescript-eslint/parser': 5.52.0_jofidmxrjzhj7l6vknpw5ecvfe
+ '@babel/core': 7.21.0
+ '@babel/eslint-parser': 7.19.1_ccoxihxmx25rm5cufeee3dmlne
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.0
+ '@babel/preset-env': 7.20.2_@babel+core@7.21.0
+ '@babel/preset-react': 7.18.6_@babel+core@7.21.0
+ '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0
+ '@typescript-eslint/eslint-plugin': 5.54.0_upfp7q3y5merkkqzbm2yvqbijq
+ '@typescript-eslint/parser': 5.54.0_jofidmxrjzhj7l6vknpw5ecvfe
chalk: 4.1.2
eslint: 7.32.0
eslint-config-prettier: 8.6.0_eslint@7.32.0
eslint-formatter-pretty: 4.1.0
eslint-plugin-babel: 5.3.1_eslint@7.32.0
- eslint-plugin-jest: 24.7.0_giwqt5bttcxhbw6aus5n7ehcnu
+ eslint-plugin-jest: 24.7.0_bcbodfmozsqerge3lz6ptn3nrm
eslint-plugin-promise: 6.1.1_eslint@7.32.0
eslint-plugin-react: 7.32.2_eslint@7.32.0
eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0
@@ -4177,7 +4169,7 @@ packages:
peerDependencies:
umi: 3.x
dependencies:
- umi: 3.5.37_react-router@6.8.1
+ umi: 3.5.37_react-router@6.8.2
dev: true
/@umijs/plugin-sass/1.1.1_umi@3.5.37+webpack@4.46.0:
@@ -4190,7 +4182,7 @@ packages:
dependencies:
sass: 1.58.3
sass-loader: 8.0.2_sass@1.58.3+webpack@4.46.0
- umi: 3.5.37_react-router@6.8.1
+ umi: 3.5.37_react-router@6.8.2
transitivePeerDependencies:
- fibers
- node-sass
@@ -4218,10 +4210,10 @@ packages:
'@umijs/utils': 3.5.37
ansi-html: 0.0.9
core-js: 3.6.5
- core-js-pure: 3.28.0
+ core-js-pure: 3.29.0
error-stack-parser: 2.1.4
es-module-lexer: 0.7.1
- es5-imcompatible-versions: 0.1.77
+ es5-imcompatible-versions: 0.1.78
history-with-query: 4.10.4
html-entities: 2.3.3
mime: 1.4.1
@@ -4236,7 +4228,7 @@ packages:
- react-dom
dev: true
- /@umijs/preset-dumi/1.1.50_ogd7ceteiuu2fv5ywrfyfxrw5u:
+ /@umijs/preset-dumi/1.1.50_o575w4w667lcdzvco5qhng5kpi:
resolution:
{
integrity: sha512-HhKMGct5DEd+ZZxBLbCUvXxnMh4MYlMeFIQXf2Ei9tVaKCeNri4I+BYb93swAmEl2v+2PxrKHCCzXNv07C+9Uw==,
@@ -4244,17 +4236,17 @@ packages:
peerDependencies:
umi: ^3.0.0
dependencies:
- '@babel/core': 7.20.12
- '@babel/generator': 7.20.14
- '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/core': 7.21.0
+ '@babel/generator': 7.21.1
+ '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
'@mapbox/hast-util-to-jsx': 1.0.0
'@umijs/babel-preset-umi': 3.5.37
'@umijs/core': 3.5.37
'@umijs/plugin-analytics': 0.2.3_umi@3.5.37
'@umijs/runtime': 3.5.37_react@18.2.0
- '@umijs/types': 3.5.37_ihzqjmpvs2erhxdlcsxpcqmgpq
+ '@umijs/types': 3.5.37_dcrkjks5ndmrrgy72rhd72hmq4
'@umijs/utils': 3.5.37
codesandbox: 2.2.3
copy-text-to-clipboard: 2.2.0
@@ -4286,8 +4278,8 @@ packages:
remark-stringify: 9.0.1
sitemap: 6.4.0
slash2: 2.0.0
- terser: 5.16.4
- umi: 3.5.37_react-router@6.8.1
+ terser: 5.16.5
+ umi: 3.5.37_react-router@6.8.2
unified: 8.4.2
unist-util-visit: 2.0.3
unist-util-visit-parents: 3.1.1
@@ -4318,7 +4310,7 @@ packages:
react-dom: 16.14.0_react@16.14.0
dev: true
- /@umijs/renderer-react/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
+ /@umijs/renderer-react/3.5.37_263kk2d5tiuyg32yuu7rrhuyze:
resolution:
{
integrity: sha512-ULdWHl19GzZ/irUzElQCVR8EWvuBP59y5wRaI7ACWlRx85XCJ+DBj4fp9MzGgukCa93lPpdaHde1+/SJD+evww==,
@@ -4329,16 +4321,16 @@ packages:
dependencies:
'@types/react': 16.14.35
'@types/react-dom': 16.9.18
- '@types/react-router-config': 5.0.6
+ '@types/react-router-config': 5.0.2
'@umijs/runtime': 3.5.37_react@16.14.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- react-router-config: 5.1.1_6flbfkch6crntn4ac2g723iqde
+ react-router-config: 5.1.1_w3pku2rfskdxqtbs66joerxk6y
transitivePeerDependencies:
- react-router
dev: true
- /@umijs/renderer-react/3.5.37_ihzqjmpvs2erhxdlcsxpcqmgpq:
+ /@umijs/renderer-react/3.5.37_dcrkjks5ndmrrgy72rhd72hmq4:
resolution:
{
integrity: sha512-ULdWHl19GzZ/irUzElQCVR8EWvuBP59y5wRaI7ACWlRx85XCJ+DBj4fp9MzGgukCa93lPpdaHde1+/SJD+evww==,
@@ -4349,16 +4341,16 @@ packages:
dependencies:
'@types/react': 16.14.35
'@types/react-dom': 16.9.18
- '@types/react-router-config': 5.0.6
+ '@types/react-router-config': 5.0.2
'@umijs/runtime': 3.5.37_react@18.2.0
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-router-config: 5.1.1_l73zucv2eyovc4fzwcss6swmce
+ react-router-config: 5.1.1_t2zoxmawn7sfdpkcuytim2cp3i
transitivePeerDependencies:
- react-router
dev: true
- /@umijs/renderer-react/3.5.37_irmrfwtued6qmvagmh5usvk7qi:
+ /@umijs/renderer-react/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
resolution:
{
integrity: sha512-ULdWHl19GzZ/irUzElQCVR8EWvuBP59y5wRaI7ACWlRx85XCJ+DBj4fp9MzGgukCa93lPpdaHde1+/SJD+evww==,
@@ -4369,11 +4361,11 @@ packages:
dependencies:
'@types/react': 16.14.35
'@types/react-dom': 16.9.18
- '@types/react-router-config': 5.0.6
+ '@types/react-router-config': 5.0.2
'@umijs/runtime': 3.5.37_react@16.14.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- react-router-config: 5.1.1_nn7p4ayehadjskahf4j6ah24jq
+ react-router-config: 5.1.1_6flbfkch6crntn4ac2g723iqde
transitivePeerDependencies:
- react-router
dev: true
@@ -4423,7 +4415,7 @@ packages:
'@umijs/utils': 3.5.37
dev: true
- /@umijs/types/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
+ /@umijs/types/3.5.37_263kk2d5tiuyg32yuu7rrhuyze:
resolution:
{
integrity: sha512-KwHFr7KhIErgF5zcV+n/lpTNvXJCUyJJH0XD+KBKu13u6TTDfAzCl2j/YGb/x6VkD0zaXmNTUo7p337wnSihKg==,
@@ -4432,7 +4424,7 @@ packages:
'@umijs/babel-preset-umi': 3.5.37
'@umijs/core': 3.5.37
'@umijs/deps': 3.5.37
- '@umijs/renderer-react': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
+ '@umijs/renderer-react': 3.5.37_263kk2d5tiuyg32yuu7rrhuyze
'@umijs/server': 3.5.37
'@umijs/utils': 3.5.37
webpack-chain: 6.5.1
@@ -4442,7 +4434,7 @@ packages:
- react-router
dev: true
- /@umijs/types/3.5.37_ihzqjmpvs2erhxdlcsxpcqmgpq:
+ /@umijs/types/3.5.37_dcrkjks5ndmrrgy72rhd72hmq4:
resolution:
{
integrity: sha512-KwHFr7KhIErgF5zcV+n/lpTNvXJCUyJJH0XD+KBKu13u6TTDfAzCl2j/YGb/x6VkD0zaXmNTUo7p337wnSihKg==,
@@ -4451,7 +4443,7 @@ packages:
'@umijs/babel-preset-umi': 3.5.37
'@umijs/core': 3.5.37
'@umijs/deps': 3.5.37
- '@umijs/renderer-react': 3.5.37_ihzqjmpvs2erhxdlcsxpcqmgpq
+ '@umijs/renderer-react': 3.5.37_dcrkjks5ndmrrgy72rhd72hmq4
'@umijs/server': 3.5.37
'@umijs/utils': 3.5.37
webpack-chain: 6.5.1
@@ -4461,7 +4453,7 @@ packages:
- react-router
dev: true
- /@umijs/types/3.5.37_irmrfwtued6qmvagmh5usvk7qi:
+ /@umijs/types/3.5.37_hflg5r6ml7trnjm7sh3tgaza54:
resolution:
{
integrity: sha512-KwHFr7KhIErgF5zcV+n/lpTNvXJCUyJJH0XD+KBKu13u6TTDfAzCl2j/YGb/x6VkD0zaXmNTUo7p337wnSihKg==,
@@ -4470,7 +4462,7 @@ packages:
'@umijs/babel-preset-umi': 3.5.37
'@umijs/core': 3.5.37
'@umijs/deps': 3.5.37
- '@umijs/renderer-react': 3.5.37_irmrfwtued6qmvagmh5usvk7qi
+ '@umijs/renderer-react': 3.5.37_hflg5r6ml7trnjm7sh3tgaza54
'@umijs/server': 3.5.37
'@umijs/utils': 3.5.37
webpack-chain: 6.5.1
@@ -5126,20 +5118,20 @@ packages:
engines: { node: '>=0.10.0' }
dev: true
- /antd/5.2.2_biqbaboplfbrettd7655fr4n2y:
+ /antd/5.2.3_biqbaboplfbrettd7655fr4n2y:
resolution:
{
- integrity: sha512-IHuMyGvgI+pPmoZNJFfhVykb0eW6+iO/39/9qPE0ub9gKAnI4vaK+hA5li6aX+mjM/EqgckdWgLpaIP98kGrvw==,
+ integrity: sha512-mUSVH4ZhzC8h3eLNyL7PWquKUmvDcWAVRZYi060MOw6uiKl0pqsB/FC8OpfwntpBlVYgGMk+y3GB0loqTMSmJA==,
}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@ant-design/colors': 7.0.0
- '@ant-design/cssinjs': 1.5.6_biqbaboplfbrettd7655fr4n2y
+ '@ant-design/cssinjs': 1.6.1_biqbaboplfbrettd7655fr4n2y
'@ant-design/icons': 5.0.1_biqbaboplfbrettd7655fr4n2y
'@ant-design/react-slick': 1.0.0_react@18.2.0
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@ctrl/tinycolor': 3.6.0
'@rc-component/mutate-observer': 1.0.0_biqbaboplfbrettd7655fr4n2y
'@rc-component/tour': 1.6.0_biqbaboplfbrettd7655fr4n2y
@@ -5156,7 +5148,7 @@ packages:
rc-field-form: 1.27.4_biqbaboplfbrettd7655fr4n2y
rc-image: 5.13.0_biqbaboplfbrettd7655fr4n2y
rc-input: 0.2.2_biqbaboplfbrettd7655fr4n2y
- rc-input-number: 7.4.0_biqbaboplfbrettd7655fr4n2y
+ rc-input-number: 7.4.2_biqbaboplfbrettd7655fr4n2y
rc-mentions: 2.0.0_biqbaboplfbrettd7655fr4n2y
rc-menu: 9.8.2_biqbaboplfbrettd7655fr4n2y
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
@@ -5167,12 +5159,12 @@ packages:
rc-rate: 2.9.2_biqbaboplfbrettd7655fr4n2y
rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y
rc-segmented: 2.1.2_biqbaboplfbrettd7655fr4n2y
- rc-select: 14.2.0_biqbaboplfbrettd7655fr4n2y
+ rc-select: 14.2.2_biqbaboplfbrettd7655fr4n2y
rc-slider: 10.1.1_biqbaboplfbrettd7655fr4n2y
rc-steps: 6.0.0_biqbaboplfbrettd7655fr4n2y
rc-switch: 4.0.0_biqbaboplfbrettd7655fr4n2y
rc-table: 7.30.4_biqbaboplfbrettd7655fr4n2y
- rc-tabs: 12.5.6_biqbaboplfbrettd7655fr4n2y
+ rc-tabs: 12.5.7_biqbaboplfbrettd7655fr4n2y
rc-textarea: 1.0.1_biqbaboplfbrettd7655fr4n2y
rc-tooltip: 5.3.1_biqbaboplfbrettd7655fr4n2y
rc-tree: 5.7.2_biqbaboplfbrettd7655fr4n2y
@@ -5189,20 +5181,20 @@ packages:
- moment
dev: true
- /antd/5.2.2_saedcmlbgft4vq6gn57wqgylhq:
+ /antd/5.2.3_saedcmlbgft4vq6gn57wqgylhq:
resolution:
{
- integrity: sha512-IHuMyGvgI+pPmoZNJFfhVykb0eW6+iO/39/9qPE0ub9gKAnI4vaK+hA5li6aX+mjM/EqgckdWgLpaIP98kGrvw==,
+ integrity: sha512-mUSVH4ZhzC8h3eLNyL7PWquKUmvDcWAVRZYi060MOw6uiKl0pqsB/FC8OpfwntpBlVYgGMk+y3GB0loqTMSmJA==,
}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
'@ant-design/colors': 7.0.0
- '@ant-design/cssinjs': 1.5.6_jnbmergxldlwssobus342vza4q
+ '@ant-design/cssinjs': 1.6.1_jnbmergxldlwssobus342vza4q
'@ant-design/icons': 5.0.1_jnbmergxldlwssobus342vza4q
'@ant-design/react-slick': 1.0.0_react@18.2.0
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@ctrl/tinycolor': 3.6.0
'@rc-component/mutate-observer': 1.0.0_jnbmergxldlwssobus342vza4q
'@rc-component/tour': 1.6.0_jnbmergxldlwssobus342vza4q
@@ -5219,7 +5211,7 @@ packages:
rc-field-form: 1.27.4_jnbmergxldlwssobus342vza4q
rc-image: 5.13.0_jnbmergxldlwssobus342vza4q
rc-input: 0.2.2_jnbmergxldlwssobus342vza4q
- rc-input-number: 7.4.0_jnbmergxldlwssobus342vza4q
+ rc-input-number: 7.4.2_jnbmergxldlwssobus342vza4q
rc-mentions: 2.0.0_jnbmergxldlwssobus342vza4q
rc-menu: 9.8.2_jnbmergxldlwssobus342vza4q
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
@@ -5230,12 +5222,12 @@ packages:
rc-rate: 2.9.2_jnbmergxldlwssobus342vza4q
rc-resize-observer: 1.3.1_jnbmergxldlwssobus342vza4q
rc-segmented: 2.1.2_jnbmergxldlwssobus342vza4q
- rc-select: 14.2.0_jnbmergxldlwssobus342vza4q
+ rc-select: 14.2.2_jnbmergxldlwssobus342vza4q
rc-slider: 10.1.1_jnbmergxldlwssobus342vza4q
rc-steps: 6.0.0_jnbmergxldlwssobus342vza4q
rc-switch: 4.0.0_jnbmergxldlwssobus342vza4q
rc-table: 7.30.4_jnbmergxldlwssobus342vza4q
- rc-tabs: 12.5.6_jnbmergxldlwssobus342vza4q
+ rc-tabs: 12.5.7_jnbmergxldlwssobus342vza4q
rc-textarea: 1.0.1_jnbmergxldlwssobus342vza4q
rc-tooltip: 5.3.1_jnbmergxldlwssobus342vza4q
rc-tree: 5.7.2_jnbmergxldlwssobus342vza4q
@@ -5571,6 +5563,13 @@ packages:
engines: { node: '>=8' }
dev: true
+ /asap/2.0.6:
+ resolution:
+ {
+ integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==,
+ }
+ dev: true
+
/asn1.js/5.4.1:
resolution:
{
@@ -5687,7 +5686,7 @@ packages:
hasBin: true
dependencies:
browserslist: 4.21.5
- caniuse-lite: 1.0.30001457
+ caniuse-lite: 1.0.30001458
normalize-range: 0.1.2
num2fraction: 1.2.2
picocolors: 0.2.1
@@ -5730,7 +5729,7 @@ packages:
- supports-color
dev: true
- /babel-jest/29.4.3_@babel+core@7.20.12:
+ /babel-jest/29.4.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==,
@@ -5739,11 +5738,11 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@jest/transform': 29.4.3
'@types/babel__core': 7.20.0
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.4.3_@babel+core@7.20.12
+ babel-preset-jest: 29.4.3_@babel+core@7.21.0
chalk: 4.1.2
graceful-fs: 4.2.10
slash: 3.0.0
@@ -5751,7 +5750,7 @@ packages:
- supports-color
dev: true
- /babel-loader/8.3.0_nwtvwtk5tmh22l2urnqucz7kqu:
+ /babel-loader/8.3.0_idmflsbzmivcz6fnnmcaipezqe:
resolution:
{
integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==,
@@ -5761,7 +5760,7 @@ packages:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
@@ -5802,12 +5801,12 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@babel/template': 7.20.7
- '@babel/types': 7.20.7
+ '@babel/types': 7.21.2
'@types/babel__core': 7.20.0
'@types/babel__traverse': 7.18.3
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12:
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==,
@@ -5815,15 +5814,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.20.14
- '@babel/core': 7.20.12
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0:
resolution:
{
integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==,
@@ -5831,14 +5830,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
- core-js-compat: 3.28.0
+ '@babel/core': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
+ core-js-compat: 3.29.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0:
resolution:
{
integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==,
@@ -5846,8 +5845,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.20.12
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -5859,7 +5858,7 @@ packages:
}
dev: true
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.12:
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.0:
resolution:
{
integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==,
@@ -5867,22 +5866,22 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12
+ '@babel/core': 7.21.0
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0
dev: true
- /babel-preset-jest/29.4.3_@babel+core@7.20.12:
+ /babel-preset-jest/29.4.3_@babel+core@7.21.0:
resolution:
{
integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==,
@@ -5891,9 +5890,9 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
babel-plugin-jest-hoist: 29.4.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0
dev: true
/babel-runtime-jsx-style-transform/1.0.2:
@@ -5970,6 +5969,13 @@ packages:
pascalcase: 0.1.1
dev: true
+ /base16/1.0.0:
+ resolution:
+ {
+ integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==,
+ }
+ dev: true
+
/base64-js/1.5.1:
resolution:
{
@@ -6040,7 +6046,7 @@ packages:
integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==,
}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
safe-buffer: 5.2.1
dev: true
@@ -6241,7 +6247,7 @@ packages:
elliptic: 6.5.4
inherits: 2.0.4
parse-asn1: 5.1.6
- readable-stream: 3.6.0
+ readable-stream: 3.6.1
safe-buffer: 5.2.1
dev: true
@@ -6262,8 +6268,8 @@ packages:
engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001457
- electron-to-chromium: 1.4.302
+ caniuse-lite: 1.0.30001458
+ electron-to-chromium: 1.4.317
node-releases: 2.0.10
update-browserslist-db: 1.0.10_browserslist@4.21.5
dev: true
@@ -6539,10 +6545,10 @@ packages:
engines: { node: '>=10' }
dev: true
- /caniuse-lite/1.0.30001457:
+ /caniuse-lite/1.0.30001458:
resolution:
{
- integrity: sha512-SDIV6bgE1aVbK6XyxdURbUE89zY7+k1BBBaOwYwkNCglXlel/E7mELiHC64HQ+W0xSKlqWhV9Wh7iHxUjMs4fA==,
+ integrity: sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w==,
}
dev: true
@@ -6990,7 +6996,7 @@ packages:
dependencies:
inherits: 2.0.4
process-nextick-args: 2.0.1
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/co/4.6.0:
@@ -7233,7 +7239,7 @@ packages:
dependencies:
buffer-from: 1.1.2
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
typedarray: 0.0.6
dev: true
@@ -7368,19 +7374,19 @@ packages:
toggle-selection: 1.0.6
dev: true
- /core-js-compat/3.28.0:
+ /core-js-compat/3.29.0:
resolution:
{
- integrity: sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==,
+ integrity: sha512-ScMn3uZNAFhK2DGoEfErguoiAHhV2Ju+oJo/jK08p7B3f3UhocUrCCkTvnZaiS+edl5nlIoiBXKcwMc6elv4KQ==,
}
dependencies:
browserslist: 4.21.5
dev: true
- /core-js-pure/3.28.0:
+ /core-js-pure/3.29.0:
resolution:
{
- integrity: sha512-DSOVleA9/v3LNj/vFxAPfUHttKTzrB2RXhAPvR5TPXn4vrra3Z2ssytvRyt8eruJwAfwAiFADEbrjcRdcvPLQQ==,
+ integrity: sha512-v94gUjN5UTe1n0yN/opTihJ8QBWD2O8i19RfTZR7foONPWArnjB96QA/wk5ozu1mm6ja3udQCzOzwQXTxi3xOQ==,
}
requiresBuild: true
dev: true
@@ -7417,7 +7423,7 @@ packages:
}
dev: true
- /cosmiconfig-typescript-loader/4.3.0_ipkhww4xc5z2tt2x53vp2mt2be:
+ /cosmiconfig-typescript-loader/4.3.0_nd25hbh3ectnnkbvturxnqqqfm:
resolution:
{
integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==,
@@ -7429,9 +7435,9 @@ packages:
ts-node: '>=10'
typescript: '>=3'
dependencies:
- '@types/node': 18.14.0
- cosmiconfig: 8.0.0
- ts-node: 10.9.1_tncu2ai53lzgmizdedur7lbibe
+ '@types/node': 18.14.4
+ cosmiconfig: 8.1.0
+ ts-node: 10.9.1_oboltcrkaqheaa54woelu7cdsa
typescript: 4.9.5
dev: true
@@ -7462,10 +7468,10 @@ packages:
yaml: 1.10.2
dev: true
- /cosmiconfig/8.0.0:
+ /cosmiconfig/8.1.0:
resolution:
{
- integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==,
+ integrity: sha512-0tLZ9URlPGU7JsKq0DQOQ3FoRsYX8xDZ7xMiATQfaiGMz7EHowNkbU9u1coAOmnh9p/1ySpm0RB3JNWRXM5GCg==,
}
engines: { node: '>=14' }
dependencies:
@@ -8007,7 +8013,7 @@ packages:
es-get-iterator: 1.1.3
get-intrinsic: 1.2.0
is-arguments: 1.1.1
- is-array-buffer: 3.0.1
+ is-array-buffer: 3.0.2
is-date-object: 1.0.5
is-regex: 1.1.4
is-shared-array-buffer: 1.0.2
@@ -8272,7 +8278,7 @@ packages:
integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
dev: true
/dom-serializer/0.2.2:
@@ -8461,7 +8467,7 @@ packages:
'@umijs/preset-dumi': 1.x
react: ^16.13.1 || ^17.0.0
dependencies:
- '@umijs/preset-dumi': 1.1.50_ogd7ceteiuu2fv5ywrfyfxrw5u
+ '@umijs/preset-dumi': 1.1.50_o575w4w667lcdzvco5qhng5kpi
lodash.throttle: 4.1.1
prism-react-renderer: 1.3.5_react@18.2.0
prismjs: 1.29.0
@@ -8474,15 +8480,15 @@ packages:
- react-dom
dev: true
- /dumi/1.1.50_wsgzksihwfevbilcrcphaswz2e:
+ /dumi/1.1.50_flpewppe4tpsqjnh4iaxjnijje:
resolution:
{
integrity: sha512-8kc+VL62JlVj1zoAaqWN2uE/feSYhzCuFFnWUll+aQgpKKM103DvnkmczqruMqV33gOsy3lWHf01uFu5RUagGg==,
}
hasBin: true
dependencies:
- '@umijs/preset-dumi': 1.1.50_ogd7ceteiuu2fv5ywrfyfxrw5u
- umi: 3.5.37_react-router@6.8.1
+ '@umijs/preset-dumi': 1.1.50_o575w4w667lcdzvco5qhng5kpi
+ umi: 3.5.37_react-router@6.8.2
transitivePeerDependencies:
- bufferutil
- canvas
@@ -8509,7 +8515,7 @@ packages:
dependencies:
end-of-stream: 1.4.4
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
stream-shift: 1.0.1
dev: true
@@ -8544,10 +8550,10 @@ packages:
semver: 6.3.0
dev: true
- /electron-to-chromium/1.4.302:
+ /electron-to-chromium/1.4.317:
resolution:
{
- integrity: sha512-Uk7C+7aPBryUR1Fwvk9VmipBcN9fVsqBO57jV2ZjTm+IZ6BMNqu7EDVEg2HxCNufk6QcWlFsBkhQyQroB2VWKw==,
+ integrity: sha512-JhCRm9v30FMNzQSsjl4kXaygU+qHBD0Yh7mKxyjmF0V8VwYVB6qpBRX28GyAucrM9wDCpSUctT6FpMUQxbyKuA==,
}
dev: true
@@ -8805,7 +8811,7 @@ packages:
has-proto: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.5
- is-array-buffer: 3.0.1
+ is-array-buffer: 3.0.2
is-callable: 1.2.7
is-negative-zero: 2.0.2
is-regex: 1.1.4
@@ -8902,10 +8908,10 @@ packages:
next-tick: 1.1.0
dev: true
- /es5-imcompatible-versions/0.1.77:
+ /es5-imcompatible-versions/0.1.78:
resolution:
{
- integrity: sha512-PYCZ6CvLzvVOPK4Lgja32PhWUoEJkQ1mWep0xuGtvVzmRAHq2xWHUuQ+jUXsIIAHo6c3Kh+n0z4rKCgBd4CrXA==,
+ integrity: sha512-zR7zkwTk6Caz7BGs4XmG7FRGFugY70fvf10eKXrF3JXwcuLf5ppRST7PlEVUGqVmJfdgxIutUP1U6u6SgH/f8g==,
}
dev: true
@@ -9068,7 +9074,7 @@ packages:
eslint-rule-composer: 0.3.0
dev: true
- /eslint-plugin-jest/24.7.0_giwqt5bttcxhbw6aus5n7ehcnu:
+ /eslint-plugin-jest/24.7.0_bcbodfmozsqerge3lz6ptn3nrm:
resolution:
{
integrity: sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==,
@@ -9081,7 +9087,7 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.52.0_j2xzuhj7jlo6utt4db5kd4zyxy
+ '@typescript-eslint/eslint-plugin': 5.54.0_upfp7q3y5merkkqzbm2yvqbijq
'@typescript-eslint/experimental-utils': 4.33.0_jofidmxrjzhj7l6vknpw5ecvfe
eslint: 7.32.0
transitivePeerDependencies:
@@ -9212,11 +9218,11 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- '@babel/core': 7.20.12
- '@babel/eslint-parser': 7.19.1_go3kp2l7mdrkdyt3xfyeu7ppfa
+ '@babel/core': 7.21.0
+ '@babel/eslint-parser': 7.19.1_ccoxihxmx25rm5cufeee3dmlne
eslint: 7.32.0
eslint-visitor-keys: 2.1.0
- esquery: 1.4.2
+ esquery: 1.5.0
multimap: 1.1.0
transitivePeerDependencies:
- supports-color
@@ -9291,7 +9297,7 @@ packages:
eslint-utils: 2.1.0
eslint-visitor-keys: 2.1.0
espree: 7.3.1
- esquery: 1.4.2
+ esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
@@ -9350,10 +9356,10 @@ packages:
hasBin: true
dev: true
- /esquery/1.4.2:
+ /esquery/1.5.0:
resolution:
{
- integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==,
+ integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==,
}
engines: { node: '>=0.10' }
dependencies:
@@ -9774,6 +9780,41 @@ packages:
bser: 2.1.1
dev: true
+ /fbemitter/3.0.0:
+ resolution:
+ {
+ integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==,
+ }
+ dependencies:
+ fbjs: 3.0.4
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
+ /fbjs-css-vars/1.0.2:
+ resolution:
+ {
+ integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==,
+ }
+ dev: true
+
+ /fbjs/3.0.4:
+ resolution:
+ {
+ integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==,
+ }
+ dependencies:
+ cross-fetch: 3.1.5
+ fbjs-css-vars: 1.0.2
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ promise: 7.3.1
+ setimmediate: 1.0.5
+ ua-parser-js: 0.7.33
+ transitivePeerDependencies:
+ - encoding
+ dev: true
+
/figgy-pudding/3.5.2:
resolution:
{
@@ -10051,7 +10092,22 @@ packages:
}
dependencies:
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
+ dev: true
+
+ /flux/4.0.3_react@18.2.0:
+ resolution:
+ {
+ integrity: sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==,
+ }
+ peerDependencies:
+ react: ^15.0.2 || ^16.0.0 || ^17.0.0
+ dependencies:
+ fbemitter: 3.0.0
+ fbjs: 3.0.4
+ react: 18.2.0
+ transitivePeerDependencies:
+ - encoding
dev: true
/follow-redirects/1.5.10:
@@ -10161,7 +10217,7 @@ packages:
}
dependencies:
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/fs-constants/1.0.0:
@@ -10241,7 +10297,7 @@ packages:
graceful-fs: 4.2.10
iferr: 0.1.5
imurmurhash: 0.1.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/fs.realpath/1.0.0:
@@ -10557,7 +10613,7 @@ packages:
is-negated-glob: 1.0.0
ordered-read-streams: 1.0.1
pumpify: 1.5.1
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
remove-trailing-separator: 1.1.0
to-absolute-glob: 2.0.2
unique-stream: 2.3.1
@@ -10862,7 +10918,7 @@ packages:
engines: { node: '>=4.x' }
dev: true
- /gulp-babel/8.0.0_@babel+core@7.20.12:
+ /gulp-babel/8.0.0_@babel+core@7.21.0:
resolution:
{
integrity: sha512-oomaIqDXxFkg7lbpBou/gnUkX51/Y/M2ZfSjL2hdqXTAlSWZcgZtd2o0cOH0r/eE8LWD0+Q/PsLsr2DKOoqToQ==,
@@ -10871,7 +10927,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
plugin-error: 1.0.1
replace-ext: 1.0.1
through2: 2.0.5
@@ -11099,7 +11155,7 @@ packages:
engines: { node: '>=4' }
dependencies:
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.1
safe-buffer: 5.2.1
dev: true
@@ -11282,7 +11338,7 @@ packages:
integrity: sha512-JnskQK8X+PbRFHSdDAExhoJyhLnlLZL+UuHQuQhys+Se9/ukRDRBWU4JVTjsiIfbv1fcEmR3oqKW56OYmk5M5w==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
loose-envify: 1.4.0
query-string: 6.14.1
resolve-pathname: 3.0.0
@@ -11297,7 +11353,7 @@ packages:
integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.1
@@ -11311,7 +11367,7 @@ packages:
integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
dev: true
/hmac-drbg/1.0.1:
@@ -11441,7 +11497,7 @@ packages:
domutils: 1.7.0
entities: 1.1.2
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.1
dev: true
/htmlparser2/8.0.1:
@@ -11912,10 +11968,10 @@ packages:
}
dev: true
- /irregular-plurals/3.4.0:
+ /irregular-plurals/3.4.1:
resolution:
{
- integrity: sha512-YXxECO/W6N9aMBVKMKKZ8TXESgq7EFrp3emCGGUcrYY1cgJIeZjoB75MTu8qi+NAKntS9NwPU8VdcQ3r6E6aWQ==,
+ integrity: sha512-JR7VL+1Kd9z79bE+2uSgifpzrTwLWmTvyeUewhxZCHVtpPImAsLk4adfRxg86uvdsJ8etYYrpzN7vRT30gGnOA==,
}
engines: { node: '>=8' }
dev: true
@@ -11979,10 +12035,10 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-array-buffer/3.0.1:
+ /is-array-buffer/3.0.2:
resolution:
{
- integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==,
+ integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==,
}
dependencies:
call-bind: 1.0.2
@@ -12726,8 +12782,8 @@ packages:
}
engines: { node: '>=8' }
dependencies:
- '@babel/core': 7.20.12
- '@babel/parser': 7.20.15
+ '@babel/core': 7.21.0
+ '@babel/parser': 7.21.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -12813,7 +12869,7 @@ packages:
'@jest/expect': 29.4.3
'@jest/test-result': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
co: 4.6.0
dedent: 0.7.0
@@ -12832,7 +12888,7 @@ packages:
- supports-color
dev: true
- /jest-cli/29.4.3_lszm27wzplody5hzcr5ax274dy:
+ /jest-cli/29.4.3_jcb3wguyhnpyd5azbry5ackz4u:
resolution:
{
integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==,
@@ -12852,18 +12908,18 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.10
import-local: 3.1.0
- jest-config: 29.4.3_lszm27wzplody5hzcr5ax274dy
+ jest-config: 29.4.3_jcb3wguyhnpyd5azbry5ackz4u
jest-util: 29.4.3
jest-validate: 29.4.3
prompts: 2.4.2
- yargs: 17.7.0
+ yargs: 17.7.1
transitivePeerDependencies:
- '@types/node'
- supports-color
- ts-node
dev: true
- /jest-config/29.4.3_lszm27wzplody5hzcr5ax274dy:
+ /jest-config/29.4.3_jcb3wguyhnpyd5azbry5ackz4u:
resolution:
{
integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==,
@@ -12878,11 +12934,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
'@jest/test-sequencer': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
- babel-jest: 29.4.3_@babel+core@7.20.12
+ '@types/node': 18.14.4
+ babel-jest: 29.4.3_@babel+core@7.21.0
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.0
@@ -12901,7 +12957,7 @@ packages:
pretty-format: 29.4.3
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1_tncu2ai53lzgmizdedur7lbibe
+ ts-node: 10.9.1_oboltcrkaqheaa54woelu7cdsa
transitivePeerDependencies:
- supports-color
dev: true
@@ -12972,7 +13028,7 @@ packages:
'@jest/fake-timers': 29.4.3
'@jest/types': 29.4.3
'@types/jsdom': 20.0.1
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
jest-mock: 29.4.3
jest-util: 29.4.3
jsdom: 20.0.3
@@ -12992,7 +13048,7 @@ packages:
'@jest/environment': 29.4.3
'@jest/fake-timers': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
jest-mock: 29.4.3
jest-util: 29.4.3
dev: true
@@ -13034,7 +13090,7 @@ packages:
dependencies:
'@jest/types': 29.4.3
'@types/graceful-fs': 4.1.6
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.10
@@ -13105,7 +13161,7 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
jest-util: 29.4.3
dev: true
@@ -13175,7 +13231,7 @@ packages:
'@jest/test-result': 29.4.3
'@jest/transform': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.10
@@ -13209,7 +13265,7 @@ packages:
'@jest/test-result': 29.4.3
'@jest/transform': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
cjs-module-lexer: 1.2.2
collect-v8-coverage: 1.0.1
@@ -13235,18 +13291,18 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@babel/core': 7.20.12
- '@babel/generator': 7.20.14
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
- '@babel/traverse': 7.20.13
- '@babel/types': 7.20.7
+ '@babel/core': 7.21.0
+ '@babel/generator': 7.21.1
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0
+ '@babel/traverse': 7.21.2
+ '@babel/types': 7.21.2
'@jest/expect-utils': 29.4.3
'@jest/transform': 29.4.3
'@jest/types': 29.4.3
'@types/babel__traverse': 7.18.3
'@types/prettier': 2.7.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.12
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.0
chalk: 4.1.2
expect: 29.4.3
graceful-fs: 4.2.10
@@ -13271,7 +13327,7 @@ packages:
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
chalk: 4.1.2
ci-info: 3.8.0
graceful-fs: 4.2.10
@@ -13302,7 +13358,7 @@ packages:
dependencies:
'@jest/test-result': 29.4.3
'@jest/types': 29.4.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -13338,7 +13394,7 @@ packages:
}
engines: { node: '>= 10.13.0' }
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -13350,13 +13406,13 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
dependencies:
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
jest-util: 29.4.3
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest/29.4.3_lszm27wzplody5hzcr5ax274dy:
+ /jest/29.4.3_jcb3wguyhnpyd5azbry5ackz4u:
resolution:
{
integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==,
@@ -13372,7 +13428,7 @@ packages:
'@jest/core': 29.4.3_ts-node@10.9.1
'@jest/types': 29.4.3
import-local: 3.1.0
- jest-cli: 29.4.3_lszm27wzplody5hzcr5ax274dy
+ jest-cli: 29.4.3_jcb3wguyhnpyd5azbry5ackz4u
transitivePeerDependencies:
- '@types/node'
- supports-color
@@ -13775,7 +13831,7 @@ packages:
}
engines: { node: '>= 0.6.3' }
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/lcid/1.0.0:
@@ -13963,6 +14019,13 @@ packages:
}
dev: true
+ /lodash.curry/4.1.1:
+ resolution:
+ {
+ integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==,
+ }
+ dev: true
+
/lodash.debounce/4.0.8:
resolution:
{
@@ -13984,6 +14047,13 @@ packages:
}
dev: true
+ /lodash.flow/3.5.0:
+ resolution:
+ {
+ integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==,
+ }
+ dev: true
+
/lodash.get/4.4.2:
resolution:
{
@@ -14552,7 +14622,7 @@ packages:
}
dependencies:
errno: 0.1.8
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/memory-fs/0.5.0:
@@ -14563,7 +14633,7 @@ packages:
engines: { node: '>=4.3.0 <5.0.0 || >=5.10' }
dependencies:
errno: 0.1.8
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/meow/8.1.2:
@@ -14868,7 +14938,7 @@ packages:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
prop-types: 15.8.1
react: 16.14.0
tiny-warning: 1.0.3
@@ -14884,7 +14954,7 @@ packages:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
prop-types: 15.8.1
react: 18.2.0
tiny-warning: 1.0.3
@@ -15410,7 +15480,7 @@ packages:
process: 0.11.10
punycode: 1.4.1
querystring-es3: 0.2.1
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
stream-browserify: 2.0.2
stream-http: 2.8.3
string_decoder: 1.3.0
@@ -15844,7 +15914,7 @@ packages:
integrity: sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==,
}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/os-browserify/0.3.0:
@@ -16053,7 +16123,7 @@ packages:
dependencies:
cyclist: 1.0.1
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/parent-module/1.0.1:
@@ -16470,7 +16540,7 @@ packages:
}
engines: { node: '>=10' }
dependencies:
- irregular-plurals: 3.4.0
+ irregular-plurals: 3.4.1
dev: true
/pluralize/8.0.0:
@@ -16845,7 +16915,7 @@ packages:
dependencies:
autoprefixer: 9.8.8
browserslist: 4.21.5
- caniuse-lite: 1.0.30001457
+ caniuse-lite: 1.0.30001458
css-blank-pseudo: 0.1.4
css-has-pseudo: 0.10.0
css-prefers-color-scheme: 3.1.1
@@ -17292,6 +17362,15 @@ packages:
retry: 0.10.1
dev: true
+ /promise/7.3.1:
+ resolution:
+ {
+ integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==,
+ }
+ dependencies:
+ asap: 2.0.6
+ dev: true
+
/prompts/2.4.2:
resolution:
{
@@ -17441,6 +17520,13 @@ packages:
engines: { node: '>=6' }
dev: true
+ /pure-color/1.3.0:
+ resolution:
+ {
+ integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==,
+ }
+ dev: true
+
/q/1.5.1:
resolution:
{
@@ -17647,7 +17733,7 @@ packages:
}
engines: { npm: '>=3.0.0' }
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
prop-types: 15.8.1
rax-children: 1.0.0_rax@1.2.3
rax-clone-element: 1.0.0_rax@1.2.3
@@ -17664,7 +17750,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
dom-align: 1.12.4
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -17682,7 +17768,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
dom-align: 1.12.4
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -17700,10 +17786,10 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
array-tree-filter: 2.1.0
classnames: 2.3.2
- rc-select: 14.2.0_biqbaboplfbrettd7655fr4n2y
+ rc-select: 14.2.2_biqbaboplfbrettd7655fr4n2y
rc-tree: 5.7.2_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -17719,10 +17805,10 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
array-tree-filter: 2.1.0
classnames: 2.3.2
- rc-select: 14.2.0_jnbmergxldlwssobus342vza4q
+ rc-select: 14.2.2_jnbmergxldlwssobus342vza4q
rc-tree: 5.7.2_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -17738,7 +17824,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -17753,7 +17839,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
react: 18.2.0
react-dom: 16.14.0_react@18.2.0
@@ -17768,7 +17854,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -17785,7 +17871,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -17802,7 +17888,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_biqbaboplfbrettd7655fr4n2y
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
@@ -17820,7 +17906,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_jnbmergxldlwssobus342vza4q
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
@@ -17838,7 +17924,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_biqbaboplfbrettd7655fr4n2y
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
@@ -17856,7 +17942,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_jnbmergxldlwssobus342vza4q
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
@@ -17874,7 +17960,7 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -17891,7 +17977,7 @@ packages:
react: '>=16.11.0'
react-dom: '>=16.11.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-trigger: 5.3.4_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -17909,7 +17995,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
async-validator: 4.2.5
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -17926,7 +18012,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
async-validator: 4.2.5
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -17942,7 +18028,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_biqbaboplfbrettd7655fr4n2y
classnames: 2.3.2
rc-dialog: 9.0.2_biqbaboplfbrettd7655fr4n2y
@@ -17961,7 +18047,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/portal': 1.1.0_jnbmergxldlwssobus342vza4q
classnames: 2.3.2
rc-dialog: 9.0.2_jnbmergxldlwssobus342vza4q
@@ -17971,16 +18057,16 @@ packages:
react-dom: 16.14.0_react@18.2.0
dev: true
- /rc-input-number/7.4.0_biqbaboplfbrettd7655fr4n2y:
+ /rc-input-number/7.4.2_biqbaboplfbrettd7655fr4n2y:
resolution:
{
- integrity: sha512-r/Oub/sPYbzqLNUOHnnc9sbCu78a81KX+RCbRwmpvB4W6nptUySbdWS5KHV4Hak5CAE1LAd+wWm5JjvZizG1FA==,
+ integrity: sha512-yGturTw7WGP+M1GbJ+UTAO7L4buxeW6oilhL9Sq3DezsRS8/9qec4UiXUbeoiX9bzvRXH11JvgskBtxSp4YSNg==,
}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/mini-decimal': 1.0.1
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -17988,16 +18074,16 @@ packages:
react-dom: 18.2.0_react@18.2.0
dev: true
- /rc-input-number/7.4.0_jnbmergxldlwssobus342vza4q:
+ /rc-input-number/7.4.2_jnbmergxldlwssobus342vza4q:
resolution:
{
- integrity: sha512-r/Oub/sPYbzqLNUOHnnc9sbCu78a81KX+RCbRwmpvB4W6nptUySbdWS5KHV4Hak5CAE1LAd+wWm5JjvZizG1FA==,
+ integrity: sha512-yGturTw7WGP+M1GbJ+UTAO7L4buxeW6oilhL9Sq3DezsRS8/9qec4UiXUbeoiX9bzvRXH11JvgskBtxSp4YSNg==,
}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/mini-decimal': 1.0.1
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -18014,7 +18100,7 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18030,7 +18116,7 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18046,7 +18132,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-input: 0.2.2_biqbaboplfbrettd7655fr4n2y
rc-menu: 9.8.2_biqbaboplfbrettd7655fr4n2y
@@ -18066,7 +18152,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-input: 0.2.2_jnbmergxldlwssobus342vza4q
rc-menu: 9.8.2_jnbmergxldlwssobus342vza4q
@@ -18086,7 +18172,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-overflow: 1.2.8_biqbaboplfbrettd7655fr4n2y
@@ -18106,7 +18192,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-overflow: 1.2.8_biqbaboplfbrettd7655fr4n2y
@@ -18125,7 +18211,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
rc-overflow: 1.2.8_jnbmergxldlwssobus342vza4q
@@ -18144,7 +18230,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18160,7 +18246,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18177,7 +18263,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -18195,7 +18281,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -18212,7 +18298,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -18229,7 +18315,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-resize-observer: 1.3.1_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -18246,7 +18332,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -18261,7 +18347,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
react: 18.2.0
react-dom: 16.14.0_react@18.2.0
@@ -18287,7 +18373,7 @@ packages:
moment:
optional: true
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
dayjs: 1.11.7
moment: 2.29.4
@@ -18317,7 +18403,7 @@ packages:
moment:
optional: true
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
dayjs: 1.11.7
rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y
@@ -18335,7 +18421,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18351,7 +18437,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18368,7 +18454,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18385,7 +18471,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18401,7 +18487,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18418,7 +18504,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18435,7 +18521,7 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -18452,7 +18538,7 @@ packages:
react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -18460,17 +18546,17 @@ packages:
react-dom: 16.14.0_react@18.2.0
dev: true
- /rc-select/14.2.0_biqbaboplfbrettd7655fr4n2y:
+ /rc-select/14.2.2_biqbaboplfbrettd7655fr4n2y:
resolution:
{
- integrity: sha512-tvxHmbAA0EIhBkB7dyaRhcBUIWHocQbUFY/fBlezj2jg5p65a5VQ/UhBg2I9TA1wjpsr5CCx0ruZPkYcUMjDoQ==,
+ integrity: sha512-w+LuiYGFWgaV23PuxtdeWtXSsoxt+eCfzxu/CvRuqSRm8tn/pqvAb1xUIDAjoMMWK1FqiOW4jI/iMt7ZRG/BBg==,
}
engines: { node: '>=8.x' }
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-overflow: 1.2.8_biqbaboplfbrettd7655fr4n2y
@@ -18481,17 +18567,17 @@ packages:
react-dom: 18.2.0_react@18.2.0
dev: true
- /rc-select/14.2.0_jnbmergxldlwssobus342vza4q:
+ /rc-select/14.2.2_jnbmergxldlwssobus342vza4q:
resolution:
{
- integrity: sha512-tvxHmbAA0EIhBkB7dyaRhcBUIWHocQbUFY/fBlezj2jg5p65a5VQ/UhBg2I9TA1wjpsr5CCx0ruZPkYcUMjDoQ==,
+ integrity: sha512-w+LuiYGFWgaV23PuxtdeWtXSsoxt+eCfzxu/CvRuqSRm8tn/pqvAb1xUIDAjoMMWK1FqiOW4jI/iMt7ZRG/BBg==,
}
engines: { node: '>=8.x' }
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
rc-overflow: 1.2.8_jnbmergxldlwssobus342vza4q
@@ -18512,7 +18598,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18529,7 +18615,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18546,7 +18632,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18563,7 +18649,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18579,7 +18665,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18595,7 +18681,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18612,7 +18698,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/context': 1.3.0_biqbaboplfbrettd7655fr4n2y
classnames: 2.3.2
rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y
@@ -18631,7 +18717,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
'@rc-component/context': 1.3.0_jnbmergxldlwssobus342vza4q
classnames: 2.3.2
rc-resize-observer: 1.3.1_jnbmergxldlwssobus342vza4q
@@ -18650,7 +18736,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-dropdown: 4.0.1_biqbaboplfbrettd7655fr4n2y
rc-menu: 9.6.4_biqbaboplfbrettd7655fr4n2y
@@ -18660,17 +18746,17 @@ packages:
react-dom: 18.2.0_react@18.2.0
dev: true
- /rc-tabs/12.5.6_biqbaboplfbrettd7655fr4n2y:
+ /rc-tabs/12.5.7_biqbaboplfbrettd7655fr4n2y:
resolution:
{
- integrity: sha512-aArXHzxK7YICxe+622CZ8FlO5coMi8P7E6tXpseCPKm1gdTjUt0LrQK1/AxcrRXZXG3K4QqhlKmET0+cX5DQaQ==,
+ integrity: sha512-i9gY2TcwCNmBM+bXCDDTvb6mnRYIDkkNm+UGoIqrLOFnRRbAqjsSf+tgyvzhBvbK8XcSrMhzKKLaOMbGyND8YA==,
}
engines: { node: '>=8.x' }
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-dropdown: 4.0.1_biqbaboplfbrettd7655fr4n2y
rc-menu: 9.8.2_biqbaboplfbrettd7655fr4n2y
@@ -18681,17 +18767,17 @@ packages:
react-dom: 18.2.0_react@18.2.0
dev: true
- /rc-tabs/12.5.6_jnbmergxldlwssobus342vza4q:
+ /rc-tabs/12.5.7_jnbmergxldlwssobus342vza4q:
resolution:
{
- integrity: sha512-aArXHzxK7YICxe+622CZ8FlO5coMi8P7E6tXpseCPKm1gdTjUt0LrQK1/AxcrRXZXG3K4QqhlKmET0+cX5DQaQ==,
+ integrity: sha512-i9gY2TcwCNmBM+bXCDDTvb6mnRYIDkkNm+UGoIqrLOFnRRbAqjsSf+tgyvzhBvbK8XcSrMhzKKLaOMbGyND8YA==,
}
engines: { node: '>=8.x' }
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-dropdown: 4.0.1_jnbmergxldlwssobus342vza4q
rc-menu: 9.8.2_jnbmergxldlwssobus342vza4q
@@ -18711,7 +18797,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-input: 0.2.2_biqbaboplfbrettd7655fr4n2y
rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y
@@ -18729,7 +18815,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-input: 0.2.2_jnbmergxldlwssobus342vza4q
rc-resize-observer: 1.3.1_jnbmergxldlwssobus342vza4q
@@ -18747,7 +18833,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18763,7 +18849,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-trigger: 5.3.4_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18779,9 +18865,9 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
- rc-select: 14.2.0_biqbaboplfbrettd7655fr4n2y
+ rc-select: 14.2.2_biqbaboplfbrettd7655fr4n2y
rc-tree: 5.7.2_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18797,9 +18883,9 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
- rc-select: 14.2.0_jnbmergxldlwssobus342vza4q
+ rc-select: 14.2.2_jnbmergxldlwssobus342vza4q
rc-tree: 5.7.2_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18816,7 +18902,7 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -18835,7 +18921,7 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -18854,7 +18940,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-align: 4.0.15_biqbaboplfbrettd7655fr4n2y
rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y
@@ -18873,7 +18959,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-align: 4.0.15_jnbmergxldlwssobus342vza4q
rc-motion: 2.6.3_jnbmergxldlwssobus342vza4q
@@ -18891,7 +18977,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
@@ -18907,7 +18993,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
react: 18.2.0
@@ -18923,7 +19009,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
react-is: 16.13.1
@@ -18938,7 +19024,7 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
react: 18.2.0
react-dom: 16.14.0_react@18.2.0
react-is: 16.13.1
@@ -18954,7 +19040,7 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y
rc-util: 5.28.0_biqbaboplfbrettd7655fr4n2y
@@ -18972,7 +19058,7 @@ packages:
react: '*'
react-dom: '*'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
classnames: 2.3.2
rc-resize-observer: 1.3.1_jnbmergxldlwssobus342vza4q
rc-util: 5.28.0_jnbmergxldlwssobus342vza4q
@@ -19000,6 +19086,18 @@ packages:
}
dev: true
+ /react-base16-styling/0.6.0:
+ resolution:
+ {
+ integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==,
+ }
+ dependencies:
+ base16: 1.0.0
+ lodash.curry: 4.1.1
+ lodash.flow: 3.5.0
+ pure-color: 1.3.0
+ dev: true
+
/react-docgen-typescript-dumi-tmp/1.22.1-0_typescript@4.9.5:
resolution:
{
@@ -19073,7 +19171,7 @@ packages:
peerDependencies:
react: '>=16.13.1'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
react: 18.2.0
dev: true
@@ -19098,6 +19196,26 @@ packages:
}
dev: true
+ /react-json-view/1.21.3_jnbmergxldlwssobus342vza4q:
+ resolution:
+ {
+ integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==,
+ }
+ peerDependencies:
+ react: ^17.0.0 || ^16.3.0 || ^15.5.4
+ react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4
+ dependencies:
+ flux: 4.0.3_react@18.2.0
+ react: 18.2.0
+ react-base16-styling: 0.6.0
+ react-dom: 16.14.0_react@18.2.0
+ react-lifecycles-compat: 3.0.4
+ react-textarea-autosize: 8.4.0_react@18.2.0
+ transitivePeerDependencies:
+ - '@types/react'
+ - encoding
+ dev: true
+
/react-lifecycles-compat/3.0.4:
resolution:
{
@@ -19122,12 +19240,12 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
react: 16.14.0
react-router: 5.2.0_react@16.14.0
dev: true
- /react-router-config/5.1.1_l73zucv2eyovc4fzwcss6swmce:
+ /react-router-config/5.1.1_t2zoxmawn7sfdpkcuytim2cp3i:
resolution:
{
integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==,
@@ -19136,12 +19254,12 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
react: 18.2.0
- react-router: 6.8.1_react@18.2.0
+ react-router: 6.8.2_react@18.2.0
dev: true
- /react-router-config/5.1.1_nn7p4ayehadjskahf4j6ah24jq:
+ /react-router-config/5.1.1_w3pku2rfskdxqtbs66joerxk6y:
resolution:
{
integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==,
@@ -19150,9 +19268,9 @@ packages:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
react: 16.14.0
- react-router: 6.8.1_react@18.2.0
+ react-router: 6.8.2_react@18.2.0
dev: true
/react-router-dom/5.2.0_react@16.14.0:
@@ -19163,7 +19281,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -19181,7 +19299,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -19199,7 +19317,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -19220,7 +19338,7 @@ packages:
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -19233,16 +19351,16 @@ packages:
tiny-warning: 1.0.3
dev: true
- /react-router/6.8.1_react@18.2.0:
+ /react-router/6.8.2_react@18.2.0:
resolution:
{
- integrity: sha512-Jgi8BzAJQ8MkPt8ipXnR73rnD7EmZ0HFFb7jdQU24TynGW1Ooqin2KVDN9voSC+7xhqbbCd2cjGUepb6RObnyg==,
+ integrity: sha512-lF7S0UmXI5Pd8bmHvMdPKI4u4S5McxmHnzJhrYi9ZQ6wE+DA8JN5BzVC5EEBuduWWDaiJ8u6YhVOCmThBli+rw==,
}
engines: { node: '>=14' }
peerDependencies:
react: '>=16.8'
dependencies:
- '@remix-run/router': 1.3.2
+ '@remix-run/router': 1.3.3
react: 18.2.0
/react-shadow/19.1.0_v2m5e27vhdewzwhryxwfaorcca:
@@ -19277,6 +19395,23 @@ packages:
scheduler: 0.19.1
dev: true
+ /react-textarea-autosize/8.4.0_react@18.2.0:
+ resolution:
+ {
+ integrity: sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==,
+ }
+ engines: { node: '>=10' }
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@babel/runtime': 7.21.0
+ react: 18.2.0
+ use-composed-ref: 1.3.0_react@18.2.0
+ use-latest: 1.2.1_react@18.2.0
+ transitivePeerDependencies:
+ - '@types/react'
+ dev: true
+
/react-transition-group/2.9.0_jnbmergxldlwssobus342vza4q:
resolution:
{
@@ -19404,16 +19539,19 @@ packages:
dev: true
/read/1.0.5:
- resolution: { integrity: sha1-AHo9FpR4qnEKSRcn5FPv+5LnYgM= }
+ resolution:
+ {
+ integrity: sha512-hDLATrzYLoMu23c/69pMC6u3fO3Y0qLTIygJkEZHLOn+AO2gSapu6QgrgwX9ehyVtaRoZVZbF4IuiZPPRdGgdg==,
+ }
engines: { node: '>=0.8' }
dependencies:
mute-stream: 0.0.8
dev: true
- /readable-stream/2.3.7:
+ /readable-stream/2.3.8:
resolution:
{
- integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==,
+ integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==,
}
dependencies:
core-util-is: 1.0.3
@@ -19425,10 +19563,10 @@ packages:
util-deprecate: 1.0.2
dev: true
- /readable-stream/3.6.0:
+ /readable-stream/3.6.1:
resolution:
{
- integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==,
+ integrity: sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==,
}
engines: { node: '>= 6' }
dependencies:
@@ -19446,7 +19584,7 @@ packages:
dependencies:
graceful-fs: 4.2.10
micromatch: 3.1.10
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
transitivePeerDependencies:
- supports-color
dev: true
@@ -19553,7 +19691,7 @@ packages:
integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
dev: true
/regex-not/1.0.2:
@@ -20145,7 +20283,7 @@ packages:
integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
dev: true
/run-async/2.4.1:
@@ -20599,7 +20737,7 @@ packages:
engines: { node: '>=10.3.0', npm: '>=5.6.0' }
hasBin: true
dependencies:
- '@types/node': 14.18.36
+ '@types/node': 14.18.37
'@types/sax': 1.2.4
arg: 5.0.2
sax: 1.2.4
@@ -20947,7 +21085,10 @@ packages:
dev: true
/split/0.3.1:
- resolution: { integrity: sha1-zrzxQr9hu7ZLFBYo5ttIKikUZUw= }
+ resolution:
+ {
+ integrity: sha512-hCHXkQDs1HFKRsrT9EutGT1hmjS1FW1Aei8dk/CxrT7mslcMtAxbiv8LYA/AYDvjB6h9rSXgW8zAZwg20tKMTw==,
+ }
dependencies:
through: 2.3.8
dev: true
@@ -20958,7 +21099,7 @@ packages:
integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==,
}
dependencies:
- readable-stream: 3.6.0
+ readable-stream: 3.6.1
dev: true
/sprintf-js/1.0.3:
@@ -21031,7 +21172,10 @@ packages:
dev: true
/stack-trace/0.0.10:
- resolution: { integrity: sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= }
+ resolution:
+ {
+ integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==,
+ }
dev: true
/stack-utils/2.0.6:
@@ -21100,7 +21244,7 @@ packages:
}
dependencies:
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
dev: true
/stream-each/1.2.3:
@@ -21128,7 +21272,7 @@ packages:
dependencies:
builtin-status-codes: 3.0.0
inherits: 2.0.4
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
to-arraybuffer: 1.0.1
xtend: 4.0.2
dev: true
@@ -21457,7 +21601,7 @@ packages:
integrity: sha512-xL+kev1W1dPthdhpQqZs9Qk1zenQiHKyy9oy2/VasW4z6wi7m7qQvMe67foPsr99JSs0115X0TCN1ch1n0XqSw==,
}
dependencies:
- '@babel/runtime': 7.20.13
+ '@babel/runtime': 7.21.0
universal-env: 3.3.3
dev: true
@@ -21669,7 +21813,10 @@ packages:
dev: true
/surge-ignore/0.2.0:
- resolution: { integrity: sha1-Wn+KIKcRiM+edaLP6OsYLekNrzs= }
+ resolution:
+ {
+ integrity: sha512-ay4MPFjfiQzDsyTidljJLXQi22l2AwjcuamYnJWj/LdhaHdKmDJxRox52WXimdcLpMuLDtkQvv4+jEu+wu9eSw==,
+ }
dev: true
/surge/0.21.7:
@@ -21777,7 +21924,7 @@ packages:
buffer-alloc: 1.2.0
end-of-stream: 1.4.4
fs-constants: 1.0.0
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
to-buffer: 1.1.1
xtend: 4.0.2
dev: true
@@ -21852,10 +21999,10 @@ packages:
source-map-support: 0.5.21
dev: true
- /terser/5.16.4:
+ /terser/5.16.5:
resolution:
{
- integrity: sha512-5yEGuZ3DZradbogeYQ1NaGz7rXVBDWujWlx1PT8efXO6Txn+eWbfKqB2bTDVmFXmePFkoLU6XI8UektMIEA0ug==,
+ integrity: sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg==,
}
engines: { node: '>=10' }
hasBin: true
@@ -21940,7 +22087,7 @@ packages:
integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==,
}
dependencies:
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
xtend: 4.0.2
dev: true
@@ -21951,7 +22098,7 @@ packages:
}
dependencies:
inherits: 2.0.4
- readable-stream: 3.6.0
+ readable-stream: 3.6.1
dev: true
/through2/4.0.2:
@@ -21960,7 +22107,7 @@ packages:
integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==,
}
dependencies:
- readable-stream: 3.6.0
+ readable-stream: 3.6.1
dev: true
/time-stamp/1.1.0:
@@ -22187,7 +22334,7 @@ packages:
}
dev: true
- /ts-jest/29.0.5_cslgewaznsjxirw6ogkiwclmbu:
+ /ts-jest/29.0.5_kv2fdk7yz6jlbcjfldgcwh5vp4:
resolution:
{
integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==,
@@ -22211,10 +22358,10 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.20.12
+ '@babel/core': 7.21.0
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.4.3_lszm27wzplody5hzcr5ax274dy
+ jest: 29.4.3_jcb3wguyhnpyd5azbry5ackz4u
jest-util: 29.4.3
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -22224,7 +22371,7 @@ packages:
yargs-parser: 21.1.1
dev: true
- /ts-node/10.9.1_tncu2ai53lzgmizdedur7lbibe:
+ /ts-node/10.9.1_oboltcrkaqheaa54woelu7cdsa:
resolution:
{
integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==,
@@ -22246,7 +22393,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.3
- '@types/node': 18.14.0
+ '@types/node': 18.14.4
acorn: 8.8.2
acorn-walk: 8.2.0
arg: 4.1.3
@@ -22285,7 +22432,10 @@ packages:
dev: true
/tty-browserify/0.0.0:
- resolution: { integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= }
+ resolution:
+ {
+ integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==,
+ }
dev: true
/tunnel-agent/0.6.0:
@@ -22422,6 +22572,13 @@ packages:
hasBin: true
dev: true
+ /ua-parser-js/0.7.33:
+ resolution:
+ {
+ integrity: sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==,
+ }
+ dev: true
+
/umi-request/1.4.0:
resolution:
{
@@ -22432,19 +22589,19 @@ packages:
qs: 6.11.0
dev: true
- /umi/3.5.37_react-router@6.8.1:
+ /umi/3.5.37_react-router@6.8.2:
resolution:
{
integrity: sha512-OVguoKbZdIHe3qVAvvn/ELRsg/jDtlsr5T+xJq3sGwik7r5lQqU4bkiBJ9KoJ42i59cIYPiB0eqyZiWQm4D6yA==,
}
hasBin: true
dependencies:
- '@umijs/bundler-webpack': 3.5.37_irmrfwtued6qmvagmh5usvk7qi
+ '@umijs/bundler-webpack': 3.5.37_263kk2d5tiuyg32yuu7rrhuyze
'@umijs/core': 3.5.37
'@umijs/deps': 3.5.37
'@umijs/preset-built-in': 3.5.37_wcqkhtmu7mswc6yz4uyexck3ty
'@umijs/runtime': 3.5.37_react@16.14.0
- '@umijs/types': 3.5.37_irmrfwtued6qmvagmh5usvk7qi
+ '@umijs/types': 3.5.37_263kk2d5tiuyg32yuu7rrhuyze
'@umijs/utils': 3.5.37
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
@@ -22916,7 +23073,10 @@ packages:
dev: true
/url-parse-as-address/1.0.0:
- resolution: { integrity: sha1-+4CQGIPzOLPL7TU49fqiatr38uc= }
+ resolution:
+ {
+ integrity: sha512-1WJ8YX1Kcec9wgxy8d/ATzGP1ayO6BRnd3iB6NlM+7cOnn6U8p5PKppRTCPLobh3CSdJ4d0TdPjopzyU2KcVFw==,
+ }
dev: true
/url-parse-lax/1.0.0:
@@ -22949,6 +23109,48 @@ packages:
querystring: 0.2.0
dev: true
+ /use-composed-ref/1.3.0_react@18.2.0:
+ resolution:
+ {
+ integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==,
+ }
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.2.0
+ dev: true
+
+ /use-isomorphic-layout-effect/1.1.2_react@18.2.0:
+ resolution:
+ {
+ integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==,
+ }
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ react: 18.2.0
+ dev: true
+
+ /use-latest/1.2.1_react@18.2.0:
+ resolution:
+ {
+ integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==,
+ }
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ dependencies:
+ react: 18.2.0
+ use-isomorphic-layout-effect: 1.1.2_react@18.2.0
+ dev: true
+
/use-subscription/1.5.1_react@16.14.0:
resolution:
{
@@ -23086,7 +23288,10 @@ packages:
dev: true
/verror/1.10.0:
- resolution: { integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= }
+ resolution:
+ {
+ integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==,
+ }
engines: { '0': node >=0.6.0 }
dependencies:
assert-plus: 1.0.0
@@ -23138,7 +23343,7 @@ packages:
lead: 1.0.0
object.assign: 4.1.4
pumpify: 1.5.1
- readable-stream: 2.3.7
+ readable-stream: 2.3.8
remove-bom-buffer: 3.0.0
remove-bom-stream: 1.2.0
resolve-options: 1.1.0
@@ -23549,7 +23754,10 @@ packages:
dev: true
/wicked-good-xpath/1.3.0:
- resolution: { integrity: sha1-gbDpXoZQ5JyUsiKY//hoa1VTz2w= }
+ resolution:
+ {
+ integrity: sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==,
+ }
dev: true
/wide-align/1.1.3:
@@ -23891,10 +24099,10 @@ packages:
yargs-parser: 20.2.4
dev: true
- /yargs/17.7.0:
+ /yargs/17.7.1:
resolution:
{
- integrity: sha512-dwqOPg5trmrre9+v8SUo2q/hAwyKoVfu8OC1xPHKJGNdxAvPl4sKxL4vBnh3bQz/ZvvGAFeA5H3ou2kcOY8sQQ==,
+ integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==,
}
engines: { node: '>=12' }
dependencies: