From e5156a44a9540644fed04e84ac3b183d08d0ff52 Mon Sep 17 00:00:00 2001 From: sealday Date: Fri, 2 Aug 2024 02:26:19 +0800 Subject: [PATCH] feat(client): upgrade antd to 5.19.4, designable mode can edit component schema directly now. close #1432 (#1434) Co-authored-by: sealday Reviewed-on: https://git.daoyoucloud.com/daoyoucloud/tachybase/pulls/1434 --- .env.example | 15 +- package.json | 2 +- packages/core/client/package.json | 2 +- .../SchemaSettingsDefaults.tsx | 67 +- .../client/src/schema-component/antd/index.ts | 1 + packages/core/components/package.json | 2 +- packages/core/utils/package.json | 2 +- .../@hera/plugin-approval-mobile/package.json | 2 +- .../plugins/@hera/plugin-core/package.json | 2 +- .../@hera/plugin-homepage/package.json | 2 +- .../plugins/@hera/plugin-rental/package.json | 2 +- .../@tachybase/plugin-acl/package.json | 2 +- .../plugin-action-bulk-edit/package.json | 2 +- .../plugin-action-bulk-update/package.json | 2 +- .../plugin-action-duplicate/package.json | 2 +- .../@tachybase/plugin-api-doc/package.json | 2 +- .../@tachybase/plugin-api-keys/package.json | 2 +- .../@tachybase/plugin-audit-logs/package.json | 2 +- .../@tachybase/plugin-auth/package.json | 2 +- .../plugin-backup-restore/package.json | 2 +- .../@tachybase/plugin-calendar/package.json | 2 +- .../@tachybase/plugin-cas/package.json | 2 +- .../@tachybase/plugin-client/package.json | 2 +- .../@tachybase/plugin-comments/package.json | 2 +- .../plugin-custom-request/package.json | 2 +- .../plugin-data-source-manager/package.json | 2 +- .../plugin-data-visualization/package.json | 2 +- .../@tachybase/plugin-dingtalk/package.json | 2 +- .../plugin-external-data-source/package.json | 2 +- .../plugin-field-markdown-vditor/package.json | 2 +- .../plugin-file-manager/package.json | 2 +- .../@tachybase/plugin-gantt/package.json | 2 +- .../package.json | 2 +- .../plugin-iframe-block/package.json | 2 +- .../@tachybase/plugin-import/package.json | 2 +- .../@tachybase/plugin-kanban/package.json | 2 +- .../package.json | 2 +- .../@tachybase/plugin-logger/package.json | 2 +- .../@tachybase/plugin-map/package.json | 2 +- .../plugin-mobile-client/package.json | 2 +- .../plugin-multi-app-manager/package.json | 2 +- .../package.json | 2 +- .../@tachybase/plugin-oidc/package.json | 2 +- .../@tachybase/plugin-saml/package.json | 2 +- .../plugin-sequence-field/package.json | 2 +- .../@tachybase/plugin-sms-auth/package.json | 2 +- .../plugin-snapshot-field/package.json | 2 +- .../plugin-theme-editor/package.json | 2 +- .../@tachybase/plugin-users/package.json | 2 +- .../plugin-verification/package.json | 2 +- .../package.json | 2 +- .../plugin-work-wechat/package.json | 2 +- .../@tachybase/plugin-workflow/package.json | 2 +- pnpm-lock.yaml | 2470 ++++++++++------- 54 files changed, 1552 insertions(+), 1101 deletions(-) diff --git a/.env.example b/.env.example index bc4fb7372..601c8ec33 100644 --- a/.env.example +++ b/.env.example @@ -1,20 +1,11 @@ -################# DOCKER ################# - -ADMINER_PORT=10101 -DB_MYSQL_PORT=10102 -DB_POSTGRES_PORT=10103 -VERDACCIO_PORT=10104 -# VERDACCIO_URL=http://host.docker.internal:10104/ - ################# TACHYBASE APPLICATION ################# - -# !!! When `APP_ENV=production`, opening http://localhost:13000/ will show "Not Found". -# !!! It is recommended to use nginx to proxy static files. For example https://github.com/tachybase/tachybase/blob/main/docker/tachybase/tachybase.conf APP_ENV=development -APP_PORT=13000 +APP_PORT=3000 APP_KEY=test-key +# experimental support EXTENSION_UI_BASE_PATH=/adapters/ + API_BASE_PATH=/api/ API_BASE_URL= diff --git a/package.json b/package.json index b27ef4e6f..39d5cb2ee 100644 --- a/package.json +++ b/package.json @@ -93,7 +93,7 @@ ], "overrides": { "@types/node": "20.14.2", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "1.11.10" } } diff --git a/packages/core/client/package.json b/packages/core/client/package.json index a529f1111..2f8c5e067 100644 --- a/packages/core/client/package.json +++ b/packages/core/client/package.json @@ -24,7 +24,7 @@ "@tachybase/sdk": "workspace:*", "@tachybase/utils": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "antd-style": "3.6.2", "axios": "^1.6.2", "classnames": "^2.3.1", diff --git a/packages/core/client/src/application/schema-settings/SchemaSettingsDefaults.tsx b/packages/core/client/src/application/schema-settings/SchemaSettingsDefaults.tsx index db97da38d..2672a0ad6 100644 --- a/packages/core/client/src/application/schema-settings/SchemaSettingsDefaults.tsx +++ b/packages/core/client/src/application/schema-settings/SchemaSettingsDefaults.tsx @@ -4,7 +4,7 @@ import { ISchema, useFieldSchema } from '@tachybase/schema'; import { saveAs } from 'file-saver'; import { useTranslation } from 'react-i18next'; -import { useAPIClient } from '../../api-client'; +import { useAPIClient, useRequest } from '../../api-client'; import { createDesignable, useDesignable } from '../../schema-component'; import { SchemaSettingsItemType } from './types'; @@ -25,7 +25,6 @@ export const defaultSettingItems = [ type: 'item', useComponentProps() { const { t } = useTranslation(); - const { dn } = useDesignable(); const api = useAPIClient(); const fieldSchema = useFieldSchema(); @@ -94,6 +93,70 @@ export const defaultSettingItems = [ }; }, }, + { + name: 'edit', + type: 'modal', + useComponentProps() { + const { t } = useTranslation(); + const { refresh } = useDesignable(); + const api = useAPIClient(); + const fieldSchema = useFieldSchema(); + const dn = useMemo(() => { + const dn = createDesignable({ t, api, refresh, current: fieldSchema.parent }); + dn.loadAPIClientEvents(); + return dn; + }, [t, api, refresh, fieldSchema]); + + const { data } = useRequest(async () => { + const { data } = await api.request({ + url: `/uiSchemas:getJsonSchema/${fieldSchema['x-uid']}?includeAsyncNode=true`, + }); + return data; + }); + + return { + width: '800px', + hide: !data, + schema: () => { + if (!data) { + return { + title: t('Edit loading.'), + }; + } else { + return { + type: 'object', + title: t('Edit'), + properties: { + schema: { + type: 'string', + title: '{{ t("Schema") }}', + required: true, + default: JSON.stringify(data?.data || {}, null, 2), + 'x-decorator': 'FormItem', + 'x-component': 'CodeMirror', + 'x-component-props': { + defaultLanguage: 'JSON', + height: '500px', + }, + }, + } as ISchema, + }; + } + }, + title: t('Edit'), + onSubmit: async ({ schema }) => { + dn.emit('patch', { + schema: JSON.parse(schema), + }); + dn.refresh(); + }, + }; + }, + }, + { + name: 'divider', + type: 'divider', + }, ], } as SchemaSettingsItemType, ]; diff --git a/packages/core/client/src/schema-component/antd/index.ts b/packages/core/client/src/schema-component/antd/index.ts index 625a43b04..3df3b5471 100644 --- a/packages/core/client/src/schema-component/antd/index.ts +++ b/packages/core/client/src/schema-component/antd/index.ts @@ -55,3 +55,4 @@ export * from './custom-cascader'; export * from './unixTimestamp'; export * from './nanoIDInput'; export { PageHeader } from '@ant-design/pro-layout'; +export { CodeMirror } from '@tachybase/components'; diff --git a/packages/core/components/package.json b/packages/core/components/package.json index d5f7127e3..8835346f8 100644 --- a/packages/core/components/package.json +++ b/packages/core/components/package.json @@ -20,7 +20,7 @@ "@formily/shared": "2.3.1", "@formily/validator": "2.3.1", "@monaco-editor/react": "^4.6.0", - "antd": "5.19.1", + "antd": "5.19.4", "classnames": "^2.5.1", "dayjs": "^1.11.11", "react-sticky-box": "^1.0.2" diff --git a/packages/core/utils/package.json b/packages/core/utils/package.json index 63cea679a..2e24f5dd9 100644 --- a/packages/core/utils/package.json +++ b/packages/core/utils/package.json @@ -7,7 +7,7 @@ "dependencies": { "@hapi/topo": "^6.0.0", "@rc-component/mini-decimal": "^1.1.0", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "^1.11.9", "dedupe": "^3.0.2", "deepmerge": "^4.2.2", diff --git a/packages/plugins/@hera/plugin-approval-mobile/package.json b/packages/plugins/@hera/plugin-approval-mobile/package.json index 47f21cedf..672f74a80 100644 --- a/packages/plugins/@hera/plugin-approval-mobile/package.json +++ b/packages/plugins/@hera/plugin-approval-mobile/package.json @@ -7,7 +7,7 @@ "@tachybase/schema": "workspace:*", "@types/lodash": "^4.17.5", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "antd-mobile": "^5.36.1", "antd-mobile-icons": "^0.3.0", "lodash": "4.17.21", diff --git a/packages/plugins/@hera/plugin-core/package.json b/packages/plugins/@hera/plugin-core/package.json index 7e372039a..4bc90cec2 100644 --- a/packages/plugins/@hera/plugin-core/package.json +++ b/packages/plugins/@hera/plugin-core/package.json @@ -15,7 +15,7 @@ "@tachybase/schema": "workspace:*", "@types/lodash": "~4.17.5", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "classnames": "^2.3.1", "copy-to-clipboard": "^3.3.3", "dayjs": "^1.11.8", diff --git a/packages/plugins/@hera/plugin-homepage/package.json b/packages/plugins/@hera/plugin-homepage/package.json index f192ded1d..9841a92a7 100644 --- a/packages/plugins/@hera/plugin-homepage/package.json +++ b/packages/plugins/@hera/plugin-homepage/package.json @@ -3,7 +3,7 @@ "version": "0.0.55", "main": "dist/server/index.js", "devDependencies": { - "antd": "5.19.1" + "antd": "5.19.4" }, "peerDependencies": { "@tachybase/client": "workspace:*", diff --git a/packages/plugins/@hera/plugin-rental/package.json b/packages/plugins/@hera/plugin-rental/package.json index f4d719719..e15e6e13e 100644 --- a/packages/plugins/@hera/plugin-rental/package.json +++ b/packages/plugins/@hera/plugin-rental/package.json @@ -12,7 +12,7 @@ "@tachybase/schema": "workspace:*", "@types/lodash": "4.17.5", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "^1.11.8", "exceljs": "^4.4.0", "file-saver": "^2.0.5", diff --git a/packages/plugins/@tachybase/plugin-acl/package.json b/packages/plugins/@tachybase/plugin-acl/package.json index ee9fdceb2..b2d4c3ebf 100644 --- a/packages/plugins/@tachybase/plugin-acl/package.json +++ b/packages/plugins/@tachybase/plugin-acl/package.json @@ -14,7 +14,7 @@ "@tachybase/schema": "workspace:*", "@types/jsonwebtoken": "^8.5.8", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "async-mutex": "^0.3.2", "jsonwebtoken": "^8.5.1", "lodash": "4.17.21", diff --git a/packages/plugins/@tachybase/plugin-action-bulk-edit/package.json b/packages/plugins/@tachybase/plugin-action-bulk-edit/package.json index 5023685fd..b1a9392a4 100644 --- a/packages/plugins/@tachybase/plugin-action-bulk-edit/package.json +++ b/packages/plugins/@tachybase/plugin-action-bulk-edit/package.json @@ -12,7 +12,7 @@ "@ant-design/icons": "^5.3.7", "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react-i18next": "^14.1.2", "react-router-dom": "^6.25.1" diff --git a/packages/plugins/@tachybase/plugin-action-bulk-update/package.json b/packages/plugins/@tachybase/plugin-action-bulk-update/package.json index ee3070216..079a13d94 100644 --- a/packages/plugins/@tachybase/plugin-action-bulk-update/package.json +++ b/packages/plugins/@tachybase/plugin-action-bulk-update/package.json @@ -10,7 +10,7 @@ "main": "dist/server/index.js", "devDependencies": { "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "react-i18next": "^14.1.2", "react-router-dom": "^6.25.1" }, diff --git a/packages/plugins/@tachybase/plugin-action-duplicate/package.json b/packages/plugins/@tachybase/plugin-action-duplicate/package.json index eaf4ba2ef..ffc662667 100644 --- a/packages/plugins/@tachybase/plugin-action-duplicate/package.json +++ b/packages/plugins/@tachybase/plugin-action-duplicate/package.json @@ -10,7 +10,7 @@ "main": "dist/server/index.js", "devDependencies": { "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react-i18next": "^14.1.2" }, diff --git a/packages/plugins/@tachybase/plugin-api-doc/package.json b/packages/plugins/@tachybase/plugin-api-doc/package.json index 26fcea11d..941efd8d6 100644 --- a/packages/plugins/@tachybase/plugin-api-doc/package.json +++ b/packages/plugins/@tachybase/plugin-api-doc/package.json @@ -8,7 +8,7 @@ "types": "./dist/server/index.d.ts", "devDependencies": { "@ant-design/icons": "~5.3.7", - "antd": "5.19.1", + "antd": "5.19.4", "react-i18next": "^14.1.2", "swagger-ui-dist": "^5.3.1" }, diff --git a/packages/plugins/@tachybase/plugin-api-keys/package.json b/packages/plugins/@tachybase/plugin-api-keys/package.json index 00ebd4be4..4c17b9ca7 100644 --- a/packages/plugins/@tachybase/plugin-api-keys/package.json +++ b/packages/plugins/@tachybase/plugin-api-keys/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@tachybase/schema": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "^1.11.8", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/packages/plugins/@tachybase/plugin-audit-logs/package.json b/packages/plugins/@tachybase/plugin-audit-logs/package.json index ca7c586cc..c7299ea8a 100644 --- a/packages/plugins/@tachybase/plugin-audit-logs/package.json +++ b/packages/plugins/@tachybase/plugin-audit-logs/package.json @@ -10,7 +10,7 @@ "devDependencies": { "@ant-design/icons": "~5.3.7", "@tachybase/components": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "react": "^18.3.1", "react-i18next": "^14.1.2" }, diff --git a/packages/plugins/@tachybase/plugin-auth/package.json b/packages/plugins/@tachybase/plugin-auth/package.json index 5ab778c11..a7581407d 100644 --- a/packages/plugins/@tachybase/plugin-auth/package.json +++ b/packages/plugins/@tachybase/plugin-auth/package.json @@ -10,7 +10,7 @@ "devDependencies": { "@ant-design/icons": "~5.3.7", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "cron": "^3.1.7", "react": "^18.3.1", "react-i18next": "^14.1.2", diff --git a/packages/plugins/@tachybase/plugin-backup-restore/package.json b/packages/plugins/@tachybase/plugin-backup-restore/package.json index bd7f89876..9b157af35 100644 --- a/packages/plugins/@tachybase/plugin-backup-restore/package.json +++ b/packages/plugins/@tachybase/plugin-backup-restore/package.json @@ -16,7 +16,7 @@ "@types/archiver": "^5.3.1", "@types/file-saver": "^2.0.7", "@types/lodash": "4.17.5", - "antd": "5.19.1", + "antd": "5.19.4", "archiver": "^5.3.1", "content-disposition": "^0.5.4", "dayjs": "^1.11.8", diff --git a/packages/plugins/@tachybase/plugin-calendar/package.json b/packages/plugins/@tachybase/plugin-calendar/package.json index d16fde32c..a7741c01a 100644 --- a/packages/plugins/@tachybase/plugin-calendar/package.json +++ b/packages/plugins/@tachybase/plugin-calendar/package.json @@ -14,7 +14,7 @@ "@ant-design/icons": "~5.3.7", "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "cron-parser": "4.4.0", "dayjs": "^1.11.8", "lodash": "^4.17.21", diff --git a/packages/plugins/@tachybase/plugin-cas/package.json b/packages/plugins/@tachybase/plugin-cas/package.json index e0781d2ea..6db9152c1 100644 --- a/packages/plugins/@tachybase/plugin-cas/package.json +++ b/packages/plugins/@tachybase/plugin-cas/package.json @@ -10,7 +10,7 @@ "main": "./dist/server/index.js", "devDependencies": { "@ant-design/icons": "~5.3.7", - "antd": "5.19.1", + "antd": "5.19.4", "react-i18next": "^14.1.2", "react-router-dom": "~6.25.1" }, diff --git a/packages/plugins/@tachybase/plugin-client/package.json b/packages/plugins/@tachybase/plugin-client/package.json index 887b90db0..e8e376edc 100644 --- a/packages/plugins/@tachybase/plugin-client/package.json +++ b/packages/plugins/@tachybase/plugin-client/package.json @@ -6,7 +6,7 @@ "license": "Apache-2.0", "main": "./dist/server/index.js", "devDependencies": { - "antd": "5.19.1", + "antd": "5.19.4", "cronstrue": "^2.11.0", "koa-send": "^5.0.1", "koa-static": "^5.0.0" diff --git a/packages/plugins/@tachybase/plugin-comments/package.json b/packages/plugins/@tachybase/plugin-comments/package.json index 049ce265b..4a3ff5d5d 100644 --- a/packages/plugins/@tachybase/plugin-comments/package.json +++ b/packages/plugins/@tachybase/plugin-comments/package.json @@ -6,7 +6,7 @@ "@ant-design/icons": "~5.3.7", "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "^1.11.8", "lodash": "^4.17.21", "react-i18next": "^14.1.2" diff --git a/packages/plugins/@tachybase/plugin-custom-request/package.json b/packages/plugins/@tachybase/plugin-custom-request/package.json index c1194c85a..0b59e406c 100644 --- a/packages/plugins/@tachybase/plugin-custom-request/package.json +++ b/packages/plugins/@tachybase/plugin-custom-request/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "file-saver": "^2.0.5", "lodash": "~4.17.21", "react-i18next": "^14.1.2", diff --git a/packages/plugins/@tachybase/plugin-data-source-manager/package.json b/packages/plugins/@tachybase/plugin-data-source-manager/package.json index 6dff8cb45..5b2953f65 100644 --- a/packages/plugins/@tachybase/plugin-data-source-manager/package.json +++ b/packages/plugins/@tachybase/plugin-data-source-manager/package.json @@ -13,7 +13,7 @@ "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react-i18next": "^14.1.2", "react-router-dom": "^6.25.1", diff --git a/packages/plugins/@tachybase/plugin-data-visualization/package.json b/packages/plugins/@tachybase/plugin-data-visualization/package.json index 3ed9f62e1..679b60bd4 100644 --- a/packages/plugins/@tachybase/plugin-data-visualization/package.json +++ b/packages/plugins/@tachybase/plugin-data-visualization/package.json @@ -14,7 +14,7 @@ "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "^1.11.8", "deepmerge": "^4.2.2", "koa-compose": "^4.1.0", diff --git a/packages/plugins/@tachybase/plugin-dingtalk/package.json b/packages/plugins/@tachybase/plugin-dingtalk/package.json index 0cda6968e..2a757008e 100644 --- a/packages/plugins/@tachybase/plugin-dingtalk/package.json +++ b/packages/plugins/@tachybase/plugin-dingtalk/package.json @@ -11,7 +11,7 @@ "@alicloud/openapi-client": "^0.4.10", "@alicloud/tea-util": "^1.4.9", "@ant-design/icons": "^5.3.7", - "antd": "5.19.1", + "antd": "5.19.4", "react-router-dom": "^6.25.1" }, "peerDependencies": { diff --git a/packages/plugins/@tachybase/plugin-external-data-source/package.json b/packages/plugins/@tachybase/plugin-external-data-source/package.json index fff789e8c..eb7860014 100644 --- a/packages/plugins/@tachybase/plugin-external-data-source/package.json +++ b/packages/plugins/@tachybase/plugin-external-data-source/package.json @@ -3,7 +3,7 @@ "version": "0.21.82", "main": "dist/server/index.js", "dependencies": { - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "^4.17.21", "mysql2": "^3.9.1", "pg": "^8.11.3", diff --git a/packages/plugins/@tachybase/plugin-field-markdown-vditor/package.json b/packages/plugins/@tachybase/plugin-field-markdown-vditor/package.json index d715b4742..9fd654e02 100644 --- a/packages/plugins/@tachybase/plugin-field-markdown-vditor/package.json +++ b/packages/plugins/@tachybase/plugin-field-markdown-vditor/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@ant-design/icons": "^5.3.7", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "koa-send": "^5.0.1", "vditor": "^3.10.3" }, diff --git a/packages/plugins/@tachybase/plugin-file-manager/package.json b/packages/plugins/@tachybase/plugin-file-manager/package.json index 3162efa2f..f34235ddf 100644 --- a/packages/plugins/@tachybase/plugin-file-manager/package.json +++ b/packages/plugins/@tachybase/plugin-file-manager/package.json @@ -17,7 +17,7 @@ "@tachybase/schema": "workspace:*", "@types/koa-multer": "^1.0.1", "@types/multer": "^1.4.5", - "antd": "5.19.1", + "antd": "5.19.4", "cos-nodejs-sdk-v5": "^2.11.14", "koa-static": "^5.0.0", "lodash": "4.17.21", diff --git a/packages/plugins/@tachybase/plugin-gantt/package.json b/packages/plugins/@tachybase/plugin-gantt/package.json index b80dd0808..3952aaad2 100644 --- a/packages/plugins/@tachybase/plugin-gantt/package.json +++ b/packages/plugins/@tachybase/plugin-gantt/package.json @@ -13,7 +13,7 @@ "@ctrl/tinycolor": "^3.6.0", "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react-i18next": "^14.1.2" }, diff --git a/packages/plugins/@tachybase/plugin-graph-collection-manager/package.json b/packages/plugins/@tachybase/plugin-graph-collection-manager/package.json index 237f9f613..ed4406b42 100644 --- a/packages/plugins/@tachybase/plugin-graph-collection-manager/package.json +++ b/packages/plugins/@tachybase/plugin-graph-collection-manager/package.json @@ -20,7 +20,7 @@ "@antv/x6-react-shape": "^2.0.0", "@tachybase/schema": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "dagre": "^0.8.5", "lodash": "4.17.21", "react": "^18.3.1", diff --git a/packages/plugins/@tachybase/plugin-iframe-block/package.json b/packages/plugins/@tachybase/plugin-iframe-block/package.json index 0354b3813..760502fdd 100644 --- a/packages/plugins/@tachybase/plugin-iframe-block/package.json +++ b/packages/plugins/@tachybase/plugin-iframe-block/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@ant-design/icons": "~5.3.7", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "react": "^18.3.1", "react-i18next": "^14.1.2", "react-iframe": "~1.8.5" diff --git a/packages/plugins/@tachybase/plugin-import/package.json b/packages/plugins/@tachybase/plugin-import/package.json index 2e0557039..8b2eebaef 100644 --- a/packages/plugins/@tachybase/plugin-import/package.json +++ b/packages/plugins/@tachybase/plugin-import/package.json @@ -14,7 +14,7 @@ "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", "@types/node-xlsx": "^0.15.1", - "antd": "5.19.1", + "antd": "5.19.4", "file-saver": "^2.0.5", "lodash": "4.17.21", "mathjs": "^10.6.0", diff --git a/packages/plugins/@tachybase/plugin-kanban/package.json b/packages/plugins/@tachybase/plugin-kanban/package.json index 2222b7ab2..5c92b3925 100644 --- a/packages/plugins/@tachybase/plugin-kanban/package.json +++ b/packages/plugins/@tachybase/plugin-kanban/package.json @@ -12,7 +12,7 @@ "@ant-design/icons": "^5.3.7", "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react-beautiful-dnd": "^13.1.0", "react-i18next": "^14.1.2" diff --git a/packages/plugins/@tachybase/plugin-localization-management/package.json b/packages/plugins/@tachybase/plugin-localization-management/package.json index bc1a9646a..6e159bc68 100644 --- a/packages/plugins/@tachybase/plugin-localization-management/package.json +++ b/packages/plugins/@tachybase/plugin-localization-management/package.json @@ -12,7 +12,7 @@ "@ant-design/icons": "^5.3.7", "@tachybase/schema": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "deepmerge": "^4.3.1", "react-i18next": "^14.1.2" }, diff --git a/packages/plugins/@tachybase/plugin-logger/package.json b/packages/plugins/@tachybase/plugin-logger/package.json index aec21e1c7..52039bf0d 100644 --- a/packages/plugins/@tachybase/plugin-logger/package.json +++ b/packages/plugins/@tachybase/plugin-logger/package.json @@ -12,7 +12,7 @@ "@ant-design/icons": "^5.3.7", "@types/tar-fs": "^2.0.2", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "react-i18next": "^14.1.2", "tar-fs": "^3.0.4" }, diff --git a/packages/plugins/@tachybase/plugin-map/package.json b/packages/plugins/@tachybase/plugin-map/package.json index 0c0bbe4fd..c02ff7e0b 100644 --- a/packages/plugins/@tachybase/plugin-map/package.json +++ b/packages/plugins/@tachybase/plugin-map/package.json @@ -19,7 +19,7 @@ "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react": "~18.3.1", "react-dom": "~18.3.1", diff --git a/packages/plugins/@tachybase/plugin-mobile-client/package.json b/packages/plugins/@tachybase/plugin-mobile-client/package.json index 78538e1d4..43dbb6303 100644 --- a/packages/plugins/@tachybase/plugin-mobile-client/package.json +++ b/packages/plugins/@tachybase/plugin-mobile-client/package.json @@ -12,7 +12,7 @@ "@types/react": "~18.3.3", "@types/react-dom": "~18.3.0", "ahooks": "3.x", - "antd": "5.19.1", + "antd": "5.19.4", "antd-mobile": "^5.36.1", "antd-mobile-icons": "^0.3.0", "lodash": "4.17.21", diff --git a/packages/plugins/@tachybase/plugin-multi-app-manager/package.json b/packages/plugins/@tachybase/plugin-multi-app-manager/package.json index 8a9ed5353..9fe61afc4 100644 --- a/packages/plugins/@tachybase/plugin-multi-app-manager/package.json +++ b/packages/plugins/@tachybase/plugin-multi-app-manager/package.json @@ -10,7 +10,7 @@ "main": "./dist/server/index.js", "devDependencies": { "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "async-mutex": "^0.3.2", "lodash": "4.17.21", "mysql2": "^2.3.3", diff --git a/packages/plugins/@tachybase/plugin-multi-app-share-collection/package.json b/packages/plugins/@tachybase/plugin-multi-app-share-collection/package.json index 0b28f560c..46c13081d 100644 --- a/packages/plugins/@tachybase/plugin-multi-app-share-collection/package.json +++ b/packages/plugins/@tachybase/plugin-multi-app-share-collection/package.json @@ -9,7 +9,7 @@ "main": "./dist/server/index.js", "devDependencies": { "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "react": "~18.3.1", "react-i18next": "^14.1.2" diff --git a/packages/plugins/@tachybase/plugin-oidc/package.json b/packages/plugins/@tachybase/plugin-oidc/package.json index 168dc096b..467df6ce0 100644 --- a/packages/plugins/@tachybase/plugin-oidc/package.json +++ b/packages/plugins/@tachybase/plugin-oidc/package.json @@ -13,7 +13,7 @@ "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", "ahooks": "^3.7.2", - "antd": "5.19.1", + "antd": "5.19.4", "nanoid": "3.3.4", "openid-client": "^5.4.2", "react": "~18.3.1", diff --git a/packages/plugins/@tachybase/plugin-saml/package.json b/packages/plugins/@tachybase/plugin-saml/package.json index 38f4b514c..7802ce982 100644 --- a/packages/plugins/@tachybase/plugin-saml/package.json +++ b/packages/plugins/@tachybase/plugin-saml/package.json @@ -12,7 +12,7 @@ "@ant-design/icons": "~5.3.7", "@node-saml/node-saml": "^4.0.2", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "react": "~18.3.1", "react-i18next": "^14.1.2", "react-router-dom": "^6.25.1" diff --git a/packages/plugins/@tachybase/plugin-sequence-field/package.json b/packages/plugins/@tachybase/plugin-sequence-field/package.json index 27acf2d5b..551ce811f 100644 --- a/packages/plugins/@tachybase/plugin-sequence-field/package.json +++ b/packages/plugins/@tachybase/plugin-sequence-field/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "cron-parser": "4.4.0", "dayjs": "^1.11.8", "lodash": "4.17.21", diff --git a/packages/plugins/@tachybase/plugin-sms-auth/package.json b/packages/plugins/@tachybase/plugin-sms-auth/package.json index 9c69749f8..02286f646 100644 --- a/packages/plugins/@tachybase/plugin-sms-auth/package.json +++ b/packages/plugins/@tachybase/plugin-sms-auth/package.json @@ -10,7 +10,7 @@ "main": "./dist/server/index.js", "devDependencies": { "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "react": "~18.3.1", "react-i18next": "^14.1.2" }, diff --git a/packages/plugins/@tachybase/plugin-snapshot-field/package.json b/packages/plugins/@tachybase/plugin-snapshot-field/package.json index c21dfd6b4..e1eddf514 100644 --- a/packages/plugins/@tachybase/plugin-snapshot-field/package.json +++ b/packages/plugins/@tachybase/plugin-snapshot-field/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@ant-design/icons": "~5.3.7", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "rc-tree-select": "5.5.5", "react": "~18.3.1", diff --git a/packages/plugins/@tachybase/plugin-theme-editor/package.json b/packages/plugins/@tachybase/plugin-theme-editor/package.json index 8d82265a5..299365eb5 100644 --- a/packages/plugins/@tachybase/plugin-theme-editor/package.json +++ b/packages/plugins/@tachybase/plugin-theme-editor/package.json @@ -13,7 +13,7 @@ "@arvinxu/layout-kit": "^1", "@ctrl/tinycolor": "^3.6.0", "@types/lodash": "4.17.5", - "antd": "5.19.1", + "antd": "5.19.4", "lodash": "4.17.21", "rc-util": "^5.32.0", "react": "^18.3.1", diff --git a/packages/plugins/@tachybase/plugin-users/package.json b/packages/plugins/@tachybase/plugin-users/package.json index d0b2dfa86..d9baac380 100644 --- a/packages/plugins/@tachybase/plugin-users/package.json +++ b/packages/plugins/@tachybase/plugin-users/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@tachybase/schema": "workspace:*", "@types/jsonwebtoken": "^8.5.8", - "antd": "5.19.1", + "antd": "5.19.4", "jsonwebtoken": "^8.5.1", "react-i18next": "^14.1.2" }, diff --git a/packages/plugins/@tachybase/plugin-verification/package.json b/packages/plugins/@tachybase/plugin-verification/package.json index 365862a7b..5f72841f4 100644 --- a/packages/plugins/@tachybase/plugin-verification/package.json +++ b/packages/plugins/@tachybase/plugin-verification/package.json @@ -14,7 +14,7 @@ "@alicloud/tea-util": "1.4.4", "@tachybase/components": "workspace:*", "@tachybase/schema": "workspace:*", - "antd": "5.19.1", + "antd": "5.19.4", "dayjs": "^1.11.8", "react": "~18.3.1", "react-i18next": "^14.1.2", diff --git a/packages/plugins/@tachybase/plugin-wechat-official-account/package.json b/packages/plugins/@tachybase/plugin-wechat-official-account/package.json index be126af11..2d8f52bf0 100644 --- a/packages/plugins/@tachybase/plugin-wechat-official-account/package.json +++ b/packages/plugins/@tachybase/plugin-wechat-official-account/package.json @@ -8,7 +8,7 @@ "dependencies": { "@ant-design/icons": "^5.3.7", "@types/xml2js": "^0.4.14", - "antd": "^5.18.3", + "antd": "5.19.4", "axios": "^1.7.2", "bcrypt": "^5.1.1", "body-parser": "^1.20.2", diff --git a/packages/plugins/@tachybase/plugin-work-wechat/package.json b/packages/plugins/@tachybase/plugin-work-wechat/package.json index 34a5f692f..2d64fad7e 100644 --- a/packages/plugins/@tachybase/plugin-work-wechat/package.json +++ b/packages/plugins/@tachybase/plugin-work-wechat/package.json @@ -9,7 +9,7 @@ "dependencies": { "@ant-design/icons": "^5.3.7", "ahooks": "^3.8.0", - "antd": "5.19.1", + "antd": "5.19.4", "axios": "^1.7.2", "react-router-dom": "^6.25.1" }, diff --git a/packages/plugins/@tachybase/plugin-workflow/package.json b/packages/plugins/@tachybase/plugin-workflow/package.json index ac8acf8d9..4e71f66b6 100644 --- a/packages/plugins/@tachybase/plugin-workflow/package.json +++ b/packages/plugins/@tachybase/plugin-workflow/package.json @@ -21,7 +21,7 @@ "@types/file-saver": "^2.0.7", "@types/lodash": "^4.17.5", "@types/qrcode": "^1.5.5", - "antd": "5.19.1", + "antd": "5.19.4", "axios": "^1.6.2", "cron-parser": "4.4.0", "file-saver": "^2.0.5", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index df4e6539c..d0df22f67 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,7 +9,7 @@ neverBuiltDependencies: overrides: '@types/node': 20.14.2 - antd: 5.19.1 + antd: 5.19.4 dayjs: 1.11.10 importers: @@ -76,10 +76,10 @@ importers: version: 9.5.0 eslint-plugin-jest-dom: specifier: ^5.4.0 - version: 5.4.0(eslint@8.55.0) + version: 5.4.0(eslint@9.8.0) eslint-plugin-testing-library: specifier: ^5.11.1 - version: 5.11.1(eslint@8.55.0)(typescript@5.4.5) + version: 5.11.1(eslint@9.8.0)(typescript@5.4.5) husky: specifier: ^9.0.11 version: 9.0.11 @@ -115,7 +115,7 @@ importers: version: 5.4.5 umi: specifier: ^4.3.3 - version: 4.3.3(@babel/core@7.22.10)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@8.55.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@14.16.1)(typescript@5.4.5)(webpack@5.92.1) + version: 4.3.3(@babel/core@7.25.2)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@9.8.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@16.8.1)(typescript@5.4.5)(webpack@5.93.0) vitest: specifier: ^1.6.0 version: 1.6.0(@types/node@20.14.2) @@ -448,7 +448,7 @@ importers: version: 5.3.7(react-dom@18.3.1)(react@18.3.1) '@ant-design/pro-layout': specifier: ^7.16.11 - version: 7.17.16(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + version: 7.17.16(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) '@antv/g2plot': specifier: ^2.4.18 version: 2.4.31 @@ -495,11 +495,11 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) antd-style: specifier: 3.6.2 - version: 3.6.2(@types/react@18.3.3)(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + version: 3.6.2(@types/react@18.3.3)(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) axios: specifier: ^1.6.2 version: 1.6.7 @@ -598,7 +598,7 @@ importers: version: 18.2.0 react-js-cron: specifier: ^3.1.0 - version: 3.2.0(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + version: 3.2.0(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) react-quill: specifier: ^2.0.0 version: 2.0.0(react-dom@18.3.1)(react@18.3.1) @@ -688,8 +688,8 @@ importers: specifier: ^4.6.0 version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1)(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) classnames: specifier: ^2.5.1 version: 2.5.1 @@ -977,7 +977,7 @@ importers: version: 5.4.4 umi: specifier: ^4.3.3 - version: 4.3.3(@babel/core@7.22.10)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@8.55.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@14.16.1)(typescript@5.4.4)(webpack@5.92.1) + version: 4.3.3(@babel/core@7.25.2)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@8.55.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@16.8.1)(typescript@5.4.4)(webpack@5.93.0) packages/core/evaluators: dependencies: @@ -1356,7 +1356,7 @@ importers: version: 16.7.0 jsdom-worker: specifier: ^0.3.0 - version: 0.3.0(node-fetch@2.7.0) + version: 0.3.0(node-fetch@3.3.2) jsonwebtoken: specifier: ^8.5.1 version: 8.5.1 @@ -1406,8 +1406,8 @@ importers: specifier: ^1.1.0 version: 1.1.0 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dayjs: specifier: 1.11.10 version: 1.11.10 @@ -1471,8 +1471,8 @@ importers: specifier: ^3.7.2 version: 3.7.11(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) antd-mobile: specifier: ^5.36.1 version: 5.36.1(react-dom@18.3.1)(react@18.3.1) @@ -1484,7 +1484,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ~6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -1544,8 +1544,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) classnames: specifier: ^2.3.1 version: 2.5.1 @@ -1593,7 +1593,7 @@ importers: version: 4.0.11(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-pdf: specifier: ^7.5.1 version: 7.7.1(@types/react@18.3.3)(react-dom@18.3.1)(react@18.3.1) @@ -1644,8 +1644,8 @@ importers: version: link:../../../core/utils devDependencies: antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) packages/plugins/@hera/plugin-rental: dependencies: @@ -1693,8 +1693,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dayjs: specifier: 1.11.10 version: 1.11.10 @@ -1796,8 +1796,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) async-mutex: specifier: ^0.3.2 version: 0.3.2 @@ -1815,7 +1815,7 @@ importers: version: 18.3.1(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-action-bulk-edit: dependencies: @@ -1842,14 +1842,14 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -1873,11 +1873,11 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -1898,14 +1898,14 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-action-print: dependencies: @@ -1970,11 +1970,11 @@ importers: specifier: ~5.3.7 version: 5.3.7(react-dom@18.3.1)(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) swagger-ui-dist: specifier: ^5.3.1 version: 5.10.5 @@ -2010,8 +2010,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dayjs: specifier: 1.11.10 version: 1.11.10 @@ -2023,7 +2023,7 @@ importers: version: 18.3.1(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-audit-logs: dependencies: @@ -2053,14 +2053,14 @@ importers: specifier: workspace:* version: link:../../../core/components antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-auth: dependencies: @@ -2096,8 +2096,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) cron: specifier: ^3.1.7 version: 3.1.7 @@ -2106,7 +2106,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -2140,7 +2140,7 @@ importers: version: 6.0.2 '@koa/multer': specifier: ^3.0.2 - version: 3.0.2(multer@1.4.4) + version: 3.0.2(multer@1.4.5-lts.1) '@tachybase/components': specifier: workspace:* version: link:../../../core/components @@ -2154,8 +2154,8 @@ importers: specifier: 4.17.5 version: 4.17.5 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) archiver: specifier: ^5.3.1 version: 5.3.2 @@ -2191,7 +2191,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) semver: specifier: ^7.5.4 version: 7.5.4 @@ -2203,7 +2203,7 @@ importers: dependencies: '@nomicfoundation/hardhat-toolbox': specifier: ^5.0.0 - version: 5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.7)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition-ethers@0.15.5)(@nomicfoundation/hardhat-network-helpers@1.0.11)(@nomicfoundation/hardhat-verify@2.0.8)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.16)(@types/mocha@10.0.7)(@types/node@20.14.2)(chai@4.3.10)(ethers@6.13.2)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.6)(solidity-coverage@0.8.12)(ts-node@9.1.1)(typechain@8.3.2)(typescript@5.5.4) + version: 5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.7)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition-ethers@0.15.5)(@nomicfoundation/hardhat-network-helpers@1.0.11)(@nomicfoundation/hardhat-verify@2.0.9)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.17)(@types/mocha@10.0.7)(@types/node@22.0.2)(chai@5.1.1)(ethers@6.13.2)(hardhat-gas-reporter@2.2.0)(hardhat@2.22.6)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@5.5.4) '@tachybase/actions': specifier: workspace:* version: link:../../../core/actions @@ -2227,7 +2227,7 @@ importers: version: 0.0.1-security hardhat: specifier: ^2.22.6 - version: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + version: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) path: specifier: ^0.12.7 version: 0.12.7 @@ -2260,8 +2260,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) cron-parser: specifier: 4.4.0 version: 4.4.0 @@ -2279,10 +2279,10 @@ importers: version: 1.8.5(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-js-cron: specifier: ^3.1.0 - version: 3.2.0(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + version: 3.2.0(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) solarlunar-es: specifier: ^1.0.9 version: 1.0.9 @@ -2318,11 +2318,11 @@ importers: specifier: ~5.3.7 version: 5.3.7(react-dom@18.3.1)(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ~6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -2374,8 +2374,8 @@ importers: version: link:../../../core/utils devDependencies: antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) cronstrue: specifier: ^2.11.0 version: 2.47.0 @@ -2451,8 +2451,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dayjs: specifier: 1.11.10 version: 1.11.10 @@ -2461,7 +2461,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-custom-request: dependencies: @@ -2500,8 +2500,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) file-saver: specifier: ^2.0.5 version: 2.0.5 @@ -2510,7 +2510,7 @@ importers: version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ~6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -2552,14 +2552,14 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -2607,8 +2607,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dayjs: specifier: 1.11.10 version: 1.11.10 @@ -2629,7 +2629,7 @@ importers: version: 4.0.11(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) sequelize: specifier: ^6.26.0 version: 6.35.2 @@ -2668,8 +2668,8 @@ importers: specifier: ^5.3.7 version: 5.3.7(react-dom@18.3.1)(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -2746,7 +2746,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-external-data-source: dependencies: @@ -2766,8 +2766,8 @@ importers: specifier: workspace:* version: link:../../../core/test antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -2779,7 +2779,7 @@ importers: version: 8.11.3 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) devDependencies: '@types/lodash': specifier: ^4.17.5 @@ -2807,8 +2807,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) koa-send: specifier: ^5.0.1 version: 5.0.1 @@ -2859,8 +2859,8 @@ importers: specifier: ^1.4.5 version: 1.4.11 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) cos-nodejs-sdk-v5: specifier: ^2.11.14 version: 2.12.6 @@ -2893,7 +2893,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) supertest: specifier: ^6.1.6 version: 6.3.3 @@ -2930,7 +2930,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-gantt: dependencies: @@ -2959,14 +2959,14 @@ importers: specifier: workspace:* version: link:../../../core/utils antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-graph-collection-manager: dependencies: @@ -3020,8 +3020,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dagre: specifier: ^0.8.5 version: 0.8.5 @@ -3033,7 +3033,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -3063,14 +3063,14 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react: specifier: ^18.3.1 version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-iframe: specifier: ~1.8.5 version: 1.8.5(react@18.3.1) @@ -3101,7 +3101,7 @@ importers: version: 5.3.7(react-dom@18.3.1)(react@18.3.1) '@koa/multer': specifier: ^3.0.2 - version: 3.0.2(multer@1.4.4) + version: 3.0.2(multer@1.4.5-lts.1) '@tachybase/components': specifier: workspace:* version: link:../../../core/components @@ -3112,8 +3112,8 @@ importers: specifier: ^0.15.1 version: 0.15.3 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) file-saver: specifier: ^2.0.5 version: 2.0.5 @@ -3134,7 +3134,7 @@ importers: version: 18.3.1(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) xlsx: specifier: ^0.17.0 version: 0.17.5 @@ -3161,8 +3161,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 @@ -3171,7 +3171,7 @@ importers: version: 13.1.1(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-localization-management: dependencies: @@ -3210,14 +3210,14 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) deepmerge: specifier: ^4.3.1 version: 4.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-logger: dependencies: @@ -3247,11 +3247,11 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) tar-fs: specifier: ^3.0.4 version: 3.0.4 @@ -3308,8 +3308,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 @@ -3321,7 +3321,7 @@ importers: version: 18.3.1(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -3363,8 +3363,8 @@ importers: specifier: 3.x version: 3.7.11(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) antd-mobile: specifier: ^5.36.1 version: 5.36.1(react-dom@18.3.1)(react@18.3.1) @@ -3382,7 +3382,7 @@ importers: version: 18.3.1(react@18.3.1) react-i18next: specifier: ~14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ~6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -3440,8 +3440,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) async-mutex: specifier: ^0.3.2 version: 0.3.2 @@ -3459,7 +3459,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -3498,8 +3498,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 @@ -3508,7 +3508,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-notifications: dependencies: @@ -3578,8 +3578,8 @@ importers: specifier: ^3.7.2 version: 3.7.8(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) nanoid: specifier: 3.3.4 version: 3.3.4 @@ -3591,7 +3591,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -3678,14 +3678,14 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react: specifier: ~18.3.1 version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -3721,8 +3721,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) cron-parser: specifier: 4.4.0 version: 4.4.0 @@ -3737,10 +3737,10 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-js-cron: specifier: ^3.1.0 - version: 3.2.0(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + version: 3.2.0(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-share: dependencies: @@ -3794,14 +3794,14 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) react: specifier: ~18.3.1 version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-snapshot-field: dependencies: @@ -3828,8 +3828,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 @@ -3841,7 +3841,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-system-settings: dependencies: @@ -3887,7 +3887,7 @@ importers: version: 5.3.7(react-dom@18.3.1)(react@18.3.1) '@arvinxu/layout-kit': specifier: ^1 - version: 1.4.0(@babel/core@7.22.10)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1) + version: 1.4.0(@babel/core@7.25.2)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1) '@ctrl/tinycolor': specifier: ^3.6.0 version: 3.6.1 @@ -3895,8 +3895,8 @@ importers: specifier: 4.17.5 version: 4.17.5 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) lodash: specifier: 4.17.21 version: 4.17.21 @@ -3911,7 +3911,7 @@ importers: version: 5.6.1(react-dom@18.3.1)(react@18.3.1) react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) tinycolor2: specifier: ^1.6.0 version: 1.6.0 @@ -4002,14 +4002,14 @@ importers: specifier: ^8.5.8 version: 8.5.9 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) jsonwebtoken: specifier: ^8.5.1 version: 8.5.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) packages/plugins/@tachybase/plugin-verification: dependencies: @@ -4051,8 +4051,8 @@ importers: specifier: workspace:* version: link:../../../core/schema antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) dayjs: specifier: 1.11.10 version: 1.11.10 @@ -4061,7 +4061,7 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) tencentcloud-sdk-nodejs: specifier: ^4.0.525 version: 4.0.759 @@ -4090,8 +4090,8 @@ importers: specifier: ^0.4.14 version: 0.4.14 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) axios: specifier: ^1.7.2 version: 1.7.2 @@ -4150,8 +4150,8 @@ importers: specifier: ^3.8.0 version: 3.8.0(react@18.3.1) antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) axios: specifier: ^1.7.2 version: 1.7.2 @@ -4235,8 +4235,8 @@ importers: specifier: ^1.5.5 version: 1.5.5 antd: - specifier: 5.19.1 - version: 5.19.1(react-dom@18.3.1)(react@18.3.1) + specifier: 5.19.4 + version: 5.19.4(react-dom@18.3.1)(react@18.3.1) axios: specifier: ^1.6.2 version: 1.6.8 @@ -4260,10 +4260,10 @@ importers: version: 18.3.1 react-i18next: specifier: ^14.1.2 - version: 14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1) + version: 14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1) react-js-cron: specifier: ^3.1.0 - version: 3.2.0(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + version: 3.2.0(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) react-router-dom: specifier: ^6.25.1 version: 6.25.1(react-dom@18.3.1)(react@18.3.1) @@ -4992,11 +4992,16 @@ packages: /@aashutoshrathi/word-wrap@1.2.6: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} + dev: false /@adobe/css-tools@4.3.3: resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} dev: false + /@adraffy/ens-normalize@1.10.0: + resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} + dev: false + /@adraffy/ens-normalize@1.10.1: resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} dev: false @@ -5212,6 +5217,18 @@ packages: dependencies: '@ctrl/tinycolor': 3.6.1 + /@ant-design/cssinjs-utils@1.0.3(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-BrztZZKuoYcJK8uEH40ylBemf/Mu/QPiDos56g2bv6eUoniQkgQHOCOvA3+pncoFO1TaS8xcUCIqGzDA0I+ZVQ==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@ant-design/cssinjs': 1.21.0(react-dom@18.3.1)(react@18.3.1) + '@babel/runtime': 7.25.0 + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + /@ant-design/cssinjs@1.18.2(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-514V9rjLaFYb3v4s55/8bg2E6fb81b99s3crDZf4nSwtiDLLXs8axnIph+q2TVkY2hbJPZOn/cVsVcnLkzFy7w==} peerDependencies: @@ -5251,12 +5268,12 @@ packages: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@emotion/hash': 0.8.0 '@emotion/unitless': 0.7.5 classnames: 2.5.1 csstype: 3.1.3 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) stylis: 4.3.2 @@ -5279,6 +5296,21 @@ packages: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + /@ant-design/icons@5.4.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-QZbWC5xQYexCI5q4/fehSEkchJr5UGtvAJweT743qKUQQGs9IH2DehNLP49DJ3Ii9m9CijD2HN6fNy3WKhIFdA==} + engines: {node: '>=8'} + peerDependencies: + react: '>=16.0.0' + react-dom: '>=16.0.0' + dependencies: + '@ant-design/colors': 7.1.0 + '@ant-design/icons-svg': 4.4.2 + '@babel/runtime': 7.25.0 + classnames: 2.5.1 + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + /@ant-design/plots@2.1.14(lodash-es@4.17.21)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-ZFhvlNUsPcvD8d+nX4bXA9djbEUDVfKm8/xvFplffWT68rWM37d32qI7EghSvLUreszqh60DZAy80wCA08lgoQ==} peerDependencies: @@ -5296,20 +5328,20 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: true - /@ant-design/pro-layout@7.17.16(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1): + /@ant-design/pro-layout@7.17.16(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-nBQbAJEUkGqQNBqT30FcbcNXHepxySj/O7est1+2iXPXeVeyQYLHBJXcdvCrUrMty6ev3loG8K+6L3DXQkJ/5Q==} peerDependencies: - antd: 5.19.1 + antd: 5.19.4 react: '>=17.0.0' react-dom: '>=17.0.0' dependencies: '@ant-design/icons': 5.3.7(react-dom@18.3.1)(react@18.3.1) - '@ant-design/pro-provider': 2.13.5(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) - '@ant-design/pro-utils': 2.15.2(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + '@ant-design/pro-provider': 2.13.5(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) + '@ant-design/pro-utils': 2.15.2(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) '@babel/runtime': 7.24.0 '@umijs/route-utils': 4.0.1 '@umijs/use-params': 1.0.9(react@18.3.1) - antd: 5.19.1(react-dom@18.3.1)(react@18.3.1) + antd: 5.19.4(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 lodash.merge: 4.6.2 omit.js: 2.0.2 @@ -5322,34 +5354,34 @@ packages: warning: 4.0.3 dev: false - /@ant-design/pro-provider@2.13.5(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1): + /@ant-design/pro-provider@2.13.5(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-ZVmzY2cq4nUvgmAlfgyCAaSZYV2l3n/upIQPXPj8sYcT+N/Pt1CeSVkkgW6By3EqokF6apWdIFU7hZMK2rNhrg==} peerDependencies: - antd: 5.19.1 + antd: 5.19.4 react: '>=17.0.0' react-dom: '>=17.0.0' dependencies: '@ant-design/cssinjs': 1.18.2(react-dom@18.3.1)(react@18.3.1) '@babel/runtime': 7.24.7 '@ctrl/tinycolor': 3.6.1 - antd: 5.19.1(react-dom@18.3.1)(react@18.3.1) + antd: 5.19.4(react-dom@18.3.1)(react@18.3.1) rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) swr: 2.2.4(react@18.3.1) dev: false - /@ant-design/pro-utils@2.15.2(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1): + /@ant-design/pro-utils@2.15.2(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-kzMT658CGrQqoihKPlZhbnRioovwMhM59vqqVXuT6A+IuyxJhs5pxN73C6sN2+ZoeYCo/Gewnfn9v1/2vHU2Zg==} peerDependencies: - antd: 5.19.1 + antd: 5.19.4 react: '>=17.0.0' react-dom: '>=17.0.0' dependencies: '@ant-design/icons': 5.3.7(react-dom@18.3.1)(react@18.3.1) - '@ant-design/pro-provider': 2.13.5(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1) + '@ant-design/pro-provider': 2.13.5(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1) '@babel/runtime': 7.24.7 - antd: 5.19.1(react-dom@18.3.1)(react@18.3.1) + antd: 5.19.4(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 dayjs: 1.11.10 lodash.merge: 4.6.2 @@ -5365,7 +5397,7 @@ packages: peerDependencies: react: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 json2mq: 0.2.0 react: 18.3.1 @@ -5845,10 +5877,10 @@ packages: utility-types: 3.10.0 dev: true - /@arvinxu/layout-kit@1.4.0(@babel/core@7.22.10)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1): + /@arvinxu/layout-kit@1.4.0(@babel/core@7.25.2)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1): resolution: {integrity: sha512-dEsmFwZa/NJ2XvDBL4sCPbgFPvCvpxP+G+90Ay9zqN92vc4YbgVo4NjpjsDihiNqwDQjWhasGCC3+v4w7bdYqg==} dependencies: - styled-components: 5.3.11(@babel/core@7.22.10)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1) + styled-components: 5.3.11(@babel/core@7.25.2)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1) transitivePeerDependencies: - '@babel/core' - react @@ -6482,6 +6514,10 @@ packages: resolution: {integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==} engines: {node: '>=6.9.0'} + /@babel/compat-data@7.25.2: + resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==} + engines: {node: '>=6.9.0'} + /@babel/core@7.22.10: resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} engines: {node: '>=6.9.0'} @@ -6497,7 +6533,7 @@ packages: '@babel/traverse': 7.24.5(supports-color@5.5.0) '@babel/types': 7.24.5 convert-source-map: 1.9.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6519,7 +6555,7 @@ packages: '@babel/traverse': 7.24.5(supports-color@5.5.0) '@babel/types': 7.24.5 convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6541,7 +6577,7 @@ packages: '@babel/traverse': 7.24.5(supports-color@5.5.0) '@babel/types': 7.24.5 convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6564,7 +6600,29 @@ packages: '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 convert-source-map: 2.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + /@babel/core@7.25.2: + resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.25.0 + '@babel/helper-compilation-targets': 7.25.2 + '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) + '@babel/helpers': 7.25.0 + '@babel/parser': 7.25.3 + '@babel/template': 7.25.0 + '@babel/traverse': 7.25.3 + '@babel/types': 7.25.2 + convert-source-map: 2.0.0 + debug: 4.3.6(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6583,6 +6641,21 @@ packages: eslint: 8.55.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 + dev: false + + /@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@9.8.0): + resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': ^7.11.0 + eslint: ^7.5.0 || ^8.0.0 + dependencies: + '@babel/core': 7.23.6 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 + eslint: 9.8.0 + eslint-visitor-keys: 2.1.0 + semver: 6.3.1 + dev: true /@babel/generator@7.2.0: resolution: {integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==} @@ -6611,6 +6684,15 @@ packages: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 + /@babel/generator@7.25.0: + resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.25.2 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -6644,6 +6726,16 @@ packages: lru-cache: 5.1.1 semver: 6.3.1 + /@babel/helper-compilation-targets@7.25.2: + resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/compat-data': 7.25.2 + '@babel/helper-validator-option': 7.24.8 + browserslist: 4.23.2 + lru-cache: 5.1.1 + semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.22.10): resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==} engines: {node: '>=6.9.0'} @@ -6682,7 +6774,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -6780,6 +6872,19 @@ packages: '@babel/helper-split-export-declaration': 7.24.5 '@babel/helper-validator-identifier': 7.24.5 + /@babel/helper-module-transforms@7.23.3(@babel/core@7.25.2): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 + /@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5): resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} engines: {node: '>=6.9.0'} @@ -6809,6 +6914,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2): + resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-simple-access': 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 + '@babel/traverse': 7.25.3 + transitivePeerDependencies: + - supports-color + /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} @@ -6912,6 +7031,10 @@ packages: resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==} engines: {node: '>=6.9.0'} + /@babel/helper-string-parser@7.24.8: + resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier@7.22.20: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} @@ -6933,6 +7056,10 @@ packages: resolution: {integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-option@7.24.8: + resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} + engines: {node: '>=6.9.0'} + /@babel/helper-wrap-function@7.22.20: resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} @@ -6970,6 +7097,13 @@ packages: '@babel/template': 7.24.7 '@babel/types': 7.24.7 + /@babel/helpers@7.25.0: + resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.25.0 + '@babel/types': 7.25.2 + /@babel/highlight@7.24.2: resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} engines: {node: '>=6.9.0'} @@ -7002,6 +7136,13 @@ packages: dependencies: '@babel/types': 7.24.7 + /@babel/parser@7.25.3: + resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.25.2 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.22.10): resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} @@ -7051,13 +7192,22 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2): + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.7 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10): @@ -7067,6 +7217,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2): + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.10): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} @@ -7122,6 +7281,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} @@ -7130,14 +7298,23 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false - /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.22.10): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2): + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 + + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.25.2): resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.0 dev: true @@ -7148,6 +7325,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2): + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -7156,6 +7342,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2): + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -7164,6 +7359,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2): + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -7172,6 +7376,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2): + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -7180,6 +7393,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2): + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -7188,6 +7410,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2): + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.10): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} @@ -7207,6 +7438,16 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2): + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} @@ -7488,6 +7729,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.25.2): + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.25.2 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.25.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.22.10): resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} engines: {node: '>=6.9.0'} @@ -7944,6 +8196,12 @@ packages: dependencies: regenerator-runtime: 0.14.1 + /@babel/runtime@7.25.0: + resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.1 + /@babel/template@7.22.15: resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} @@ -7968,6 +8226,14 @@ packages: '@babel/parser': 7.24.7 '@babel/types': 7.24.7 + /@babel/template@7.25.0: + resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/parser': 7.25.3 + '@babel/types': 7.25.2 + /@babel/traverse@7.24.5(supports-color@5.5.0): resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} engines: {node: '>=6.9.0'} @@ -7980,7 +8246,7 @@ packages: '@babel/helper-split-export-declaration': 7.24.5 '@babel/parser': 7.24.5 '@babel/types': 7.24.5 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -7997,7 +8263,21 @@ packages: '@babel/helper-split-export-declaration': 7.24.7 '@babel/parser': 7.24.7 '@babel/types': 7.24.7 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/traverse@7.25.3: + resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.25.0 + '@babel/parser': 7.25.3 + '@babel/template': 7.25.0 + '@babel/types': 7.25.2 + debug: 4.3.6(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -8027,6 +8307,14 @@ packages: '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 + /@babel/types@7.25.2: + resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.24.8 + '@babel/helper-validator-identifier': 7.24.7 + to-fast-properties: 2.0.0 + /@bloomberg/record-tuple-polyfill@0.0.3: resolution: {integrity: sha512-sBnCqW0nqofE47mxFnw+lvx6kzsQstwaQMVkh66qm/A6IlsnH7WsyGuVXTou8RF2wL4W7ybOoHPvP2WgIo6rhQ==} dev: false @@ -8301,6 +8589,13 @@ packages: prettier: 2.8.8 dev: true + /@colors/colors@1.5.0: + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + requiresBuild: true + dev: false + optional: true + /@colors/colors@1.6.0: resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} engines: {node: '>=0.1.90'} @@ -8498,7 +8793,28 @@ packages: engines: {node: '>=12'} dependencies: '@jridgewell/trace-mapping': 0.3.9 - dev: true + + /@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1): + resolution: {integrity: sha512-2SJS42gxmACHgikc1WGesXLIT8d/q2l0UFM7TaEeIzdFCE/FPMtTiizcPGGJtlPo2xuQzY09OhrLTzRxqJqwGw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-tokenizer': ^2.4.1 + dependencies: + '@csstools/css-tokenizer': 2.4.1 + + /@csstools/css-tokenizer@2.4.1: + resolution: {integrity: sha512-eQ9DIktFJBhGjioABJRtUucoWR2mwllurfnM8LuNGAqX3ViZXaUchqk+1s7jjtkFiT9ySdACsFEA3etErkALUg==} + engines: {node: ^14 || ^16 || >=18} + + /@csstools/media-query-list-parser@2.1.13(@csstools/css-parser-algorithms@2.7.1)(@csstools/css-tokenizer@2.4.1): + resolution: {integrity: sha512-XaHr+16KRU9Gf8XLi3q8kDlI18d5vzKSKCY510Vrtc9iNR0NJzbY9hhTmwhzYZj/ZwGL4VmB3TA9hJW0Um2qFA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + '@csstools/css-parser-algorithms': ^2.7.1 + '@csstools/css-tokenizer': ^2.4.1 + dependencies: + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 /@csstools/postcss-color-function@1.1.1(postcss@8.4.39): resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} @@ -8601,6 +8917,14 @@ packages: dependencies: postcss-selector-parser: 6.1.0 + /@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.1): + resolution: {integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss-selector-parser: ^6.0.13 + dependencies: + postcss-selector-parser: 6.1.1 + /@ctrl/tinycolor@3.6.1: resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} engines: {node: '>=10'} @@ -8665,6 +8989,9 @@ packages: react: 18.3.1 tslib: 2.6.3 + /@dual-bundle/import-meta-resolve@4.1.0: + resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==} + /@emotion/babel-plugin@11.11.0: resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: @@ -9750,21 +10077,44 @@ packages: dependencies: eslint: 8.55.0 eslint-visitor-keys: 3.4.3 + dev: false + + /@eslint-community/eslint-utils@4.4.0(eslint@9.8.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 9.8.0 + eslint-visitor-keys: 3.4.3 + dev: true /@eslint-community/regexpp@4.10.0: resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: false /@eslint-community/regexpp@4.11.0: resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + /@eslint/config-array@0.17.1: + resolution: {integrity: sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + '@eslint/object-schema': 2.1.4 + debug: 4.3.6(supports-color@5.5.0) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + /@eslint/eslintrc@2.1.4: resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) espree: 9.6.1 globals: 13.24.0 ignore: 5.3.1 @@ -9774,10 +10124,39 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: false + + /@eslint/eslintrc@3.1.0: + resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.6(supports-color@5.5.0) + espree: 10.1.0 + globals: 14.0.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true /@eslint/js@8.55.0: resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: false + + /@eslint/js@9.8.0: + resolution: {integrity: sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@eslint/object-schema@2.1.4: + resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true /@ethereumjs/rlp@4.0.1: resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==} @@ -9862,13 +10241,6 @@ packages: '@ethersproject/bytes': 5.7.0 dev: false - /@ethersproject/basex@5.7.0: - resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==} - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/properties': 5.7.0 - dev: false - /@ethersproject/bignumber@5.7.0: resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} dependencies: @@ -9889,21 +10261,6 @@ packages: '@ethersproject/bignumber': 5.7.0 dev: false - /@ethersproject/contracts@5.7.0: - resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==} - dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - dev: false - /@ethersproject/hash@5.7.0: resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==} dependencies: @@ -9918,41 +10275,6 @@ packages: '@ethersproject/strings': 5.7.0 dev: false - /@ethersproject/hdnode@5.7.0: - resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==} - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 - dev: false - - /@ethersproject/json-wallets@5.7.0: - resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==} - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - aes-js: 3.0.0 - scrypt-js: 3.0.1 - dev: false - /@ethersproject/keccak256@5.7.0: resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} dependencies: @@ -9970,54 +10292,12 @@ packages: '@ethersproject/logger': 5.7.0 dev: false - /@ethersproject/pbkdf2@5.7.0: - resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==} - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/sha2': 5.7.0 - dev: false - /@ethersproject/properties@5.7.0: resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==} dependencies: '@ethersproject/logger': 5.7.0 dev: false - /@ethersproject/providers@5.7.2: - resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==} - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 - bech32: 1.1.4 - ws: 7.4.6 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - - /@ethersproject/random@5.7.0: - resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==} - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - dev: false - /@ethersproject/rlp@5.7.0: resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} dependencies: @@ -10025,14 +10305,6 @@ packages: '@ethersproject/logger': 5.7.0 dev: false - /@ethersproject/sha2@5.7.0: - resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==} - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - hash.js: 1.1.7 - dev: false - /@ethersproject/signing-key@5.7.0: resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==} dependencies: @@ -10044,17 +10316,6 @@ packages: hash.js: 1.1.7 dev: false - /@ethersproject/solidity@5.7.0: - resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==} - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - dev: false - /@ethersproject/strings@5.7.0: resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==} dependencies: @@ -10085,26 +10346,6 @@ packages: '@ethersproject/logger': 5.7.0 dev: false - /@ethersproject/wallet@5.7.0: - resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==} - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 - dev: false - /@ethersproject/web@5.7.1: resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==} dependencies: @@ -10115,16 +10356,6 @@ packages: '@ethersproject/strings': 5.7.0 dev: false - /@ethersproject/wordlists@5.7.0: - resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - dev: false - /@faker-js/faker@8.1.0: resolution: {integrity: sha512-38DT60rumHfBYynif3lmtxMqMqmsOQIxQgEuPZxCk2yUYN0eqWpTACgxi0VpidvsJB8CRxCpvP7B3anK85FjtQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'} @@ -10373,10 +10604,11 @@ packages: engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color + dev: false /@humanwhocodes/module-importer@1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} @@ -10384,6 +10616,12 @@ packages: /@humanwhocodes/object-schema@2.0.1: resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + dev: false + + /@humanwhocodes/retry@0.3.0: + resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==} + engines: {node: '>=18.18'} + dev: true /@ianvs/prettier-plugin-sort-imports@4.2.1(prettier@3.2.5): resolution: {integrity: sha512-NKN1LVFWUDGDGr3vt+6Ey3qPeN/163uR1pOPAlkWpgvAqgxQ6kSdUf1F0it8aHUtKRUzEGcK38Wxd07O61d7+Q==} @@ -10414,7 +10652,7 @@ packages: '@antfu/install-pkg': 0.1.1 '@antfu/utils': 0.7.10 '@iconify/types': 2.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) kolorist: 1.8.0 local-pkg: 0.4.3 transitivePeerDependencies: @@ -10550,7 +10788,6 @@ packages: dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - dev: true /@js-sdsl/ordered-map@4.4.2: resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==} @@ -10567,18 +10804,6 @@ packages: vary: 1.1.2 dev: false - /@koa/multer@3.0.2(multer@1.4.4): - resolution: {integrity: sha512-Q6WfPpE06mJWyZD1fzxM6zWywaoo+zocAn2YA9QYz4RsecoASr1h/kSzG0c5seDpFVKCMZM9raEfuM7XfqbRLw==} - engines: {node: '>= 8'} - peerDependencies: - multer: '*' - dependencies: - fix-esm: 1.0.1 - multer: 1.4.4 - transitivePeerDependencies: - - supports-color - dev: true - /@koa/multer@3.0.2(multer@1.4.5-lts.1): resolution: {integrity: sha512-Q6WfPpE06mJWyZD1fzxM6zWywaoo+zocAn2YA9QYz4RsecoASr1h/kSzG0c5seDpFVKCMZM9raEfuM7XfqbRLw==} engines: {node: '>= 8'} @@ -10608,7 +10833,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 hoist-non-react-statics: 3.3.2 react: 18.3.1 react-is: 16.13.1 @@ -10616,7 +10841,7 @@ packages: /@manypkg/find-root@1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.5 '@types/node': 20.14.2 find-up: 4.1.0 fs-extra: 8.1.0 @@ -10888,7 +11113,7 @@ packages: ethereum-cryptography: 0.1.3 dev: false - /@nomicfoundation/hardhat-chai-matchers@2.0.7(@nomicfoundation/hardhat-ethers@3.0.6)(chai@4.3.10)(ethers@6.13.2)(hardhat@2.22.6): + /@nomicfoundation/hardhat-chai-matchers@2.0.7(@nomicfoundation/hardhat-ethers@3.0.6)(chai@5.1.1)(ethers@6.13.2)(hardhat@2.22.6): resolution: {integrity: sha512-RQfsiTwdf0SP+DtuNYvm4921X6VirCQq0Xyh+mnuGlTwEFSPZ/o27oQC+l+3Y/l48DDU7+ZcYBR+Fp+Rp94LfQ==} peerDependencies: '@nomicfoundation/hardhat-ethers': ^3.0.0 @@ -10898,11 +11123,11 @@ packages: dependencies: '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.2)(hardhat@2.22.6) '@types/chai-as-promised': 7.1.8 - chai: 4.3.10 - chai-as-promised: 7.1.2(chai@4.3.10) - deep-eql: 4.1.3 + chai: 5.1.1 + chai-as-promised: 7.1.2(chai@5.1.1) + deep-eql: 4.1.4 ethers: 6.13.2 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) ordinal: 1.0.3 dev: false @@ -10912,9 +11137,9 @@ packages: ethers: ^6.1.0 hardhat: ^2.0.0 dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) ethers: 6.13.2 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) lodash.isequal: 4.5.0 transitivePeerDependencies: - supports-color @@ -10930,25 +11155,25 @@ packages: hardhat: ^2.18.0 dependencies: '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.2)(hardhat@2.22.6) - '@nomicfoundation/hardhat-ignition': 0.15.5(@nomicfoundation/hardhat-verify@2.0.8)(hardhat@2.22.6) + '@nomicfoundation/hardhat-ignition': 0.15.5(@nomicfoundation/hardhat-verify@2.0.9)(hardhat@2.22.6) '@nomicfoundation/ignition-core': 0.15.5 ethers: 6.13.2 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) dev: false - /@nomicfoundation/hardhat-ignition@0.15.5(@nomicfoundation/hardhat-verify@2.0.8)(hardhat@2.22.6): + /@nomicfoundation/hardhat-ignition@0.15.5(@nomicfoundation/hardhat-verify@2.0.9)(hardhat@2.22.6): resolution: {integrity: sha512-Y5nhFXFqt4owA6Ooag8ZBFDF2RAZElMXViknVIsi3m45pbQimS50ti6FU8HxfRkDnBARa40CIn7UGV0hrelzDw==} peerDependencies: '@nomicfoundation/hardhat-verify': ^2.0.1 hardhat: ^2.18.0 dependencies: - '@nomicfoundation/hardhat-verify': 2.0.8(hardhat@2.22.6) + '@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.6) '@nomicfoundation/ignition-core': 0.15.5 '@nomicfoundation/ignition-ui': 0.15.5 chalk: 4.1.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 10.1.0 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) prompts: 2.4.2 transitivePeerDependencies: - bufferutil @@ -10962,10 +11187,10 @@ packages: hardhat: ^2.9.5 dependencies: ethereumjs-util: 7.1.5 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) dev: false - /@nomicfoundation/hardhat-toolbox@5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.7)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition-ethers@0.15.5)(@nomicfoundation/hardhat-network-helpers@1.0.11)(@nomicfoundation/hardhat-verify@2.0.8)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.16)(@types/mocha@10.0.7)(@types/node@20.14.2)(chai@4.3.10)(ethers@6.13.2)(hardhat-gas-reporter@1.0.10)(hardhat@2.22.6)(solidity-coverage@0.8.12)(ts-node@9.1.1)(typechain@8.3.2)(typescript@5.5.4): + /@nomicfoundation/hardhat-toolbox@5.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.7)(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition-ethers@0.15.5)(@nomicfoundation/hardhat-network-helpers@1.0.11)(@nomicfoundation/hardhat-verify@2.0.9)(@typechain/ethers-v6@0.5.1)(@typechain/hardhat@9.1.0)(@types/chai@4.3.17)(@types/mocha@10.0.7)(@types/node@22.0.2)(chai@5.1.1)(ethers@6.13.2)(hardhat-gas-reporter@2.2.0)(hardhat@2.22.6)(solidity-coverage@0.8.12)(ts-node@10.9.2)(typechain@8.3.2)(typescript@5.5.4): resolution: {integrity: sha512-FnUtUC5PsakCbwiVNsqlXVIWG5JIb5CEZoSXbJUsEBun22Bivx2jhF1/q9iQbzuaGpJKFQyOhemPB2+XlEE6pQ==} peerDependencies: '@nomicfoundation/hardhat-chai-matchers': ^2.0.0 @@ -10987,37 +11212,37 @@ packages: typechain: ^8.3.0 typescript: '>=4.5.0' dependencies: - '@nomicfoundation/hardhat-chai-matchers': 2.0.7(@nomicfoundation/hardhat-ethers@3.0.6)(chai@4.3.10)(ethers@6.13.2)(hardhat@2.22.6) + '@nomicfoundation/hardhat-chai-matchers': 2.0.7(@nomicfoundation/hardhat-ethers@3.0.6)(chai@5.1.1)(ethers@6.13.2)(hardhat@2.22.6) '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.2)(hardhat@2.22.6) '@nomicfoundation/hardhat-ignition-ethers': 0.15.5(@nomicfoundation/hardhat-ethers@3.0.6)(@nomicfoundation/hardhat-ignition@0.15.5)(@nomicfoundation/ignition-core@0.15.5)(ethers@6.13.2)(hardhat@2.22.6) '@nomicfoundation/hardhat-network-helpers': 1.0.11(hardhat@2.22.6) - '@nomicfoundation/hardhat-verify': 2.0.8(hardhat@2.22.6) + '@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.6) '@typechain/ethers-v6': 0.5.1(ethers@6.13.2)(typechain@8.3.2)(typescript@5.5.4) '@typechain/hardhat': 9.1.0(@typechain/ethers-v6@0.5.1)(ethers@6.13.2)(hardhat@2.22.6)(typechain@8.3.2) - '@types/chai': 4.3.16 + '@types/chai': 4.3.17 '@types/mocha': 10.0.7 - '@types/node': 20.14.2 - chai: 4.3.10 + '@types/node': 22.0.2 + chai: 5.1.1 ethers: 6.13.2 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) - hardhat-gas-reporter: 1.0.10(hardhat@2.22.6) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) + hardhat-gas-reporter: 2.2.0(hardhat@2.22.6)(typescript@5.5.4)(zod@3.23.8) solidity-coverage: 0.8.12(hardhat@2.22.6) - ts-node: 9.1.1(typescript@5.5.4) + ts-node: 10.9.2(@types/node@22.0.2)(typescript@5.5.4) typechain: 8.3.2(typescript@5.5.4) typescript: 5.5.4 dev: false - /@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.6): - resolution: {integrity: sha512-x/OYya7A2Kcz+3W/J78dyDHxr0ezU23DKTrRKfy5wDPCnePqnr79vm8EXqX3gYps6IjPBYyGPZ9K6E5BnrWx5Q==} + /@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.6): + resolution: {integrity: sha512-7kD8hu1+zlnX87gC+UN4S0HTKBnIsDfXZ/pproq1gYsK94hgCk+exvzXbwR0X2giiY/RZPkqY9oKRi0Uev91hQ==} peerDependencies: - hardhat: ^2.0.4 + hardhat: ^2.22.72.0.4 dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/address': 5.7.0 cbor: 8.1.0 chalk: 2.4.2 - debug: 4.3.5(supports-color@5.5.0) - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + debug: 4.3.6(supports-color@5.5.0) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) lodash.clonedeep: 4.5.0 semver: 6.3.1 table: 6.8.2 @@ -11032,7 +11257,7 @@ packages: '@ethersproject/address': 5.6.1 '@nomicfoundation/solidity-analyzer': 0.1.2 cbor: 9.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) ethers: 6.13.2 fs-extra: 10.1.0 immer: 10.0.2 @@ -12248,7 +12473,7 @@ packages: async: 3.2.5 chalk: 3.0.0 dayjs: 1.11.10 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) eventemitter2: 5.0.1 fast-json-patch: 3.1.1 fclone: 1.0.11 @@ -12271,7 +12496,7 @@ packages: '@opencensus/core': 0.0.9 '@opencensus/propagation-b3': 0.0.8 async: 2.6.4 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) eventemitter2: 6.4.9 require-in-the-middle: 5.2.0 semver: 7.5.4 @@ -12288,7 +12513,7 @@ packages: dependencies: async: 2.6.4 axios: 0.21.4(debug@4.3.5) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) eventemitter2: 6.4.9 ws: 7.5.9 transitivePeerDependencies: @@ -12302,7 +12527,7 @@ packages: engines: {node: '>=4.0'} dependencies: async: 2.6.4 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) eventemitter2: 6.4.9 extrareqp2: 1.0.0(debug@4.3.5) ws: 7.5.9 @@ -12315,7 +12540,7 @@ packages: /@pm2/pm2-version-check@1.0.4: resolution: {integrity: sha512-SXsM27SGH3yTWKc2fKR4SYNxsmnvuBQ9dd6QHtEWmiZ/VqaOYPAIlS8+vMcn27YLtAEBGvNRSh3TPNvtjZgfqA==} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color dev: false @@ -12750,7 +12975,7 @@ packages: resolution: {integrity: sha512-qgGdcVIF604M9EqjNF0hbUTz42bz/RDtxWdWuU5EQe3hi7M8ob54B6B35rOsvX5eSvIHIzT9iH1R3n+hk3CGfg==} engines: {node: '>=14.x'} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 /@rc-component/color-picker@1.5.3(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-+tGGH3nLmYXTalVe0L8hSZNs73VTP5ueSHwUlDC77KKRaN7G4DS4wcpG5DTDzdcV/Yas+rzA6UGgIyzd8fS4cw==} @@ -12758,10 +12983,10 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@ctrl/tinycolor': 3.6.1 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12771,8 +12996,8 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + '@babel/runtime': 7.25.0 + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12789,9 +13014,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12802,9 +13027,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12815,9 +13040,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12828,11 +13053,11 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -12846,9 +13071,9 @@ packages: '@babel/runtime': 7.24.7 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 - rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) + rc-motion: 2.9.0(react-dom@18.3.1)(react@18.3.1) rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: false @@ -12860,12 +13085,12 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.5 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 - rc-motion: 2.9.1(react-dom@18.3.1)(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.41.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: true @@ -12877,7 +13102,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) @@ -12889,13 +13114,13 @@ packages: /@react-pdf/fns@2.2.1: resolution: {integrity: sha512-s78aDg0vDYaijU5lLOCsUD+qinQbfOvcNeaoX9AiE7+kZzzCo6B/nX+l48cmt9OosJmvZvE9DWR9cLhrhOi2pA==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 dev: true /@react-pdf/font@2.4.4: resolution: {integrity: sha512-yjK5eSY+LcbxS0m+sOYln8GdgIbUgti4xjwf14kx8OSsOMJQJyHFALHMh2cLcKJR9yZeqVDo1FwCsY6gw1yCkg==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/types': 2.4.1 cross-fetch: 3.1.8 fontkit: 2.0.2 @@ -12907,7 +13132,7 @@ packages: /@react-pdf/image@2.3.4: resolution: {integrity: sha512-IE34l7gfTdaxXe3XR9240xMZsFdxF1myIwmEWK28XoeTaucUPAUyOiNcFSGRT59vNuZVBuakYz3BlGGrkvAPVQ==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/png-js': 2.3.1 cross-fetch: 3.1.8 jay-peg: 1.0.1 @@ -12918,7 +13143,7 @@ packages: /@react-pdf/layout@3.11.2: resolution: {integrity: sha512-5EiHJ+Eb0odqnkWll9pWbTp+dwH1QRm7mOXDMiklqIWK98eI7e3cEae5Dgr0TtdnB7KgPW9Tvul2CwRJTwq54A==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/fns': 2.2.1 '@react-pdf/image': 2.3.4 '@react-pdf/pdfkit': 3.1.6 @@ -12937,7 +13162,7 @@ packages: /@react-pdf/pdfkit@3.1.6: resolution: {integrity: sha512-U96VVhphniDBsLbmeJHgEml15nng8cr90mmEfPATh98gsqg6wev0avBr4k9XPjLdaN1f2xTXD4VdlaMYJZ+n7Q==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/png-js': 2.3.1 browserify-zlib: 0.2.0 crypto-js: 4.2.0 @@ -12959,7 +13184,7 @@ packages: /@react-pdf/render@3.4.3: resolution: {integrity: sha512-9LL059vfwrK1gA0uIA4utpQ/pUH9EW/yia4bb7pCoARs8IlupY5UP265jgax15ua0p+MdUwShZzQ9rilu7kGsw==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/fns': 2.2.1 '@react-pdf/primitives': 3.1.1 '@react-pdf/textkit': 4.4.1 @@ -12996,7 +13221,7 @@ packages: /@react-pdf/stylesheet@4.2.4: resolution: {integrity: sha512-CgRfDzeMtnV0GL7zSn381NubmgwqKhFKcK1YrWX3azl/KWVh52jjFd3HWi6dvcETNT862mjWz5MnExe4WOBJXA==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/fns': 2.2.1 '@react-pdf/types': 2.4.1 color-string: 1.9.1 @@ -13008,7 +13233,7 @@ packages: /@react-pdf/textkit@4.4.1: resolution: {integrity: sha512-Jl9wdTqIvJ5pX+vAGz0EOhP7ut5Two9H6CzTKo/YYPeD79cM2yTXF3JzTERBC28y7LR0Waq9D2LHQjI+b/EYUQ==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@react-pdf/fns': 2.2.1 bidi-js: 1.0.3 hyphen: 1.10.4 @@ -13325,6 +13550,14 @@ packages: '@scure/base': 1.1.7 dev: false + /@scure/bip32@1.3.2: + resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} + dependencies: + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/base': 1.1.7 + dev: false + /@scure/bip32@1.4.0: resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} dependencies: @@ -13340,6 +13573,13 @@ packages: '@scure/base': 1.1.7 dev: false + /@scure/bip39@1.2.1: + resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} + dependencies: + '@noble/hashes': 1.3.2 + '@scure/base': 1.1.7 + dev: false + /@scure/bip39@1.3.0: resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} dependencies: @@ -13877,12 +14117,6 @@ packages: tslib: 2.6.3 dev: true - /@solidity-parser/parser@0.14.5: - resolution: {integrity: sha512-6dKnHZn7fg/iQATVEzqyUOyEidbn05q7YA2mQ9hC0MMXhhV3/JrsxmFSYZAcr7j1yUP700LLhTruvJ3MiQmjJg==} - dependencies: - antlr4ts: 0.5.0-alpha.4 - dev: false - /@solidity-parser/parser@0.18.0: resolution: {integrity: sha512-yfORGUIPgLck41qyN7nbwJRAx17/jAIXCTanHOJZhB6PJ1iAk/84b/xlsVKFSyNyLXIj0dhppoE0+CRws7wlzA==} dev: false @@ -14153,19 +14387,15 @@ packages: /@tsconfig/node10@1.0.11: resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - dev: true /@tsconfig/node12@1.0.11: resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - dev: true /@tsconfig/node14@1.0.3: resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - dev: true /@tsconfig/node16@1.0.4: resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - dev: true /@typechain/ethers-v6@0.5.1(ethers@6.13.2)(typechain@8.3.2)(typescript@5.5.4): resolution: {integrity: sha512-F+GklO8jBWlsaVV+9oHaPh5NJdd6rAKN4tklGfInX1Q7h0xPgVLP39Jl3eCulPB5qexI71ZFHwbljx4ZXNfouA==} @@ -14192,7 +14422,7 @@ packages: '@typechain/ethers-v6': 0.5.1(ethers@6.13.2)(typechain@8.3.2)(typescript@5.5.4) ethers: 6.13.2 fs-extra: 9.1.0 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) typechain: 8.3.2(typescript@5.5.4) dev: false @@ -14275,17 +14505,11 @@ packages: /@types/chai-as-promised@7.1.8: resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==} dependencies: - '@types/chai': 4.3.16 + '@types/chai': 4.3.17 dev: false - /@types/chai@4.3.16: - resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==} - dev: false - - /@types/concat-stream@1.6.1: - resolution: {integrity: sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==} - dependencies: - '@types/node': 20.14.2 + /@types/chai@4.3.17: + resolution: {integrity: sha512-zmZ21EWzR71B4Sscphjief5djsLre50M6lI622OSySTmn9DB3j+C3kWroHfBQWXbOBwbgg/M8CG/hUxDLIloow==} dev: false /@types/connect@3.4.36: @@ -14345,11 +14569,11 @@ packages: /@types/eslint-scope@3.7.7: resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} dependencies: - '@types/eslint': 8.56.10 + '@types/eslint': 9.6.0 '@types/estree': 1.0.5 - /@types/eslint@8.56.10: - resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} + /@types/eslint@9.6.0: + resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==} dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 @@ -14381,12 +14605,6 @@ packages: resolution: {integrity: sha512-nPLljZQKSnac53KDUDzuzdRfGI0TDb5qPrb+SrQyN3MtdQrOnGsKniHN1iYZsJEBIVQve94Y6gNz22sgISZq+Q==} dev: true - /@types/form-data@0.0.33: - resolution: {integrity: sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw==} - dependencies: - '@types/node': 20.14.2 - dev: false - /@types/fs-extra@11.0.4: resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} dependencies: @@ -14605,6 +14823,7 @@ packages: /@types/minimist@1.2.5: resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + dev: true /@types/mocha@10.0.7: resolution: {integrity: sha512-GN8yJ1mNTcFcah/wKEFIJckJx9iJLoMSzWcfRRuxz/Jk+U6KQNnml+etbtxFK8lPjzOw3zp4Ha/kjSst9fsHYw==} @@ -14633,6 +14852,12 @@ packages: dependencies: undici-types: 5.26.5 + /@types/node@22.0.2: + resolution: {integrity: sha512-yPL6DyFwY5PiMVEwymNeqUTKsDczQBJ/5T7W/46RwLU/VH+AA8aT5TZkvBviLKLbbm0hlfftEkGrNzfRk/fofQ==} + dependencies: + undici-types: 6.11.1 + dev: false + /@types/nodemailer@6.4.4: resolution: {integrity: sha512-Ksw4t7iliXeYGvIQcSIgWQ5BLuC/mljIEbjf615svhZL10PE9t+ei8O9gDaD3FPCasUJn9KTLwz2JFJyiiyuqw==} dependencies: @@ -14641,6 +14866,7 @@ packages: /@types/normalize-package-data@2.4.4: resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + dev: true /@types/parse-json@4.0.2: resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -14941,7 +15167,7 @@ packages: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.55.0)(typescript@5.4.4) '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.4.4) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.55.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -14953,7 +15179,7 @@ packages: - supports-color dev: false - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.4.5): + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@9.8.0)(typescript@5.4.5): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14965,12 +15191,12 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@9.8.0)(typescript@5.4.5) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.55.0)(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.4.5) - debug: 4.3.5(supports-color@5.5.0) - eslint: 8.55.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@9.8.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@9.8.0)(typescript@5.4.5) + debug: 4.3.6(supports-color@5.5.0) + eslint: 9.8.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 @@ -15023,14 +15249,14 @@ packages: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.55.0 typescript: 5.4.4 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/parser@5.62.0(eslint@8.55.0)(typescript@5.4.5): + /@typescript-eslint/parser@5.62.0(eslint@9.8.0)(typescript@5.4.5): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -15043,8 +15269,8 @@ packages: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) - debug: 4.3.5(supports-color@5.5.0) - eslint: 8.55.0 + debug: 4.3.6(supports-color@5.5.0) + eslint: 9.8.0 typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -15098,7 +15324,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.4) '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.4.4) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) eslint: 8.55.0 tsutils: 3.21.0(typescript@5.4.4) typescript: 5.4.4 @@ -15106,7 +15332,7 @@ packages: - supports-color dev: false - /@typescript-eslint/type-utils@5.62.0(eslint@8.55.0)(typescript@5.4.5): + /@typescript-eslint/type-utils@5.62.0(eslint@9.8.0)(typescript@5.4.5): resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -15117,9 +15343,9 @@ packages: optional: true dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.4.5) - debug: 4.3.5(supports-color@5.5.0) - eslint: 8.55.0 + '@typescript-eslint/utils': 5.62.0(eslint@9.8.0)(typescript@5.4.5) + debug: 4.3.6(supports-color@5.5.0) + eslint: 9.8.0 tsutils: 3.21.0(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: @@ -15138,7 +15364,7 @@ packages: dependencies: '@typescript-eslint/typescript-estree': 6.14.0(typescript@5.4.4) '@typescript-eslint/utils': 6.14.0(eslint@8.55.0)(typescript@5.4.4) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) eslint: 8.55.0 ts-api-utils: 1.0.3(typescript@5.4.4) typescript: 5.4.4 @@ -15166,7 +15392,7 @@ packages: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 @@ -15187,7 +15413,7 @@ packages: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 @@ -15208,7 +15434,7 @@ packages: dependencies: '@typescript-eslint/types': 6.14.0 '@typescript-eslint/visitor-keys': 6.14.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 @@ -15238,19 +15464,19 @@ packages: - typescript dev: false - /@typescript-eslint/utils@5.62.0(eslint@8.55.0)(typescript@5.4.5): + /@typescript-eslint/utils@5.62.0(eslint@9.8.0)(typescript@5.4.5): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) - eslint: 8.55.0 + eslint: 9.8.0 eslint-scope: 5.1.1 semver: 7.6.2 transitivePeerDependencies: @@ -15376,7 +15602,7 @@ packages: - supports-color - terser - /@umijs/bundler-webpack@4.3.3(typescript@5.4.4)(webpack@5.92.1): + /@umijs/bundler-webpack@4.3.3(typescript@5.4.4)(webpack@5.93.0): resolution: {integrity: sha512-NZORDiez1rV/KiGp2QJ9Wg4UsyJrioEFgDlstdMSO4Oe8pSLvOognyeOsw1/HtSbxQTuMpQXrrY/Yg4l30jkVA==} hasBin: true dependencies: @@ -15388,12 +15614,12 @@ packages: '@umijs/bundler-utils': 4.3.3 '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 '@umijs/mfsu': 4.3.3 - '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.92.1) + '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.93.0) '@umijs/utils': 4.3.3 cors: 2.8.5 - css-loader: 6.7.1(webpack@5.92.1) + css-loader: 6.7.1(webpack@5.93.0) es5-imcompatible-versions: 0.1.90 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.4)(webpack@5.92.1) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.4)(webpack@5.93.0) jest-worker: 29.4.3 lightningcss: 1.22.1 node-libs-browser: 2.2.1 @@ -15413,7 +15639,7 @@ packages: - webpack-plugin-serve dev: false - /@umijs/bundler-webpack@4.3.3(typescript@5.4.5)(webpack@5.92.1): + /@umijs/bundler-webpack@4.3.3(typescript@5.4.5)(webpack@5.93.0): resolution: {integrity: sha512-NZORDiez1rV/KiGp2QJ9Wg4UsyJrioEFgDlstdMSO4Oe8pSLvOognyeOsw1/HtSbxQTuMpQXrrY/Yg4l30jkVA==} hasBin: true dependencies: @@ -15425,12 +15651,12 @@ packages: '@umijs/bundler-utils': 4.3.3 '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 '@umijs/mfsu': 4.3.3 - '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.92.1) + '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.93.0) '@umijs/utils': 4.3.3 cors: 2.8.5 - css-loader: 6.7.1(webpack@5.92.1) + css-loader: 6.7.1(webpack@5.93.0) es5-imcompatible-versions: 0.1.90 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.5)(webpack@5.92.1) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.5)(webpack@5.93.0) jest-worker: 29.4.3 lightningcss: 1.22.1 node-libs-browser: 2.2.1 @@ -15568,10 +15794,10 @@ packages: /@umijs/history@5.3.1: resolution: {integrity: sha512-/e0cEGrR2bIWQD7pRl3dl9dcyRGeC9hoW0OCvUTT/hjY0EfUrkd6G8ZanVghPMpDuY5usxq9GVcvrT8KNXLWvA==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 query-string: 6.14.1 - /@umijs/lint@4.3.3(eslint@8.55.0)(stylelint@14.16.1)(typescript@5.4.4): + /@umijs/lint@4.3.3(eslint@8.55.0)(stylelint@16.8.1)(typescript@5.4.4): resolution: {integrity: sha512-ECEDG1m2SQ+JF3HBypK3GyiWogpvJGL8QIDdKfZEkbVjK6xfoAyHL3pY9HswUztPGH6E3gQuQSJ0Gxe4IO5WPw==} dependencies: '@babel/core': 7.23.6 @@ -15585,7 +15811,7 @@ packages: eslint-plugin-react-hooks: 4.6.0(eslint@8.55.0) postcss: 8.4.39 postcss-syntax: 0.36.2(postcss@8.4.39) - stylelint-config-standard: 25.0.0(stylelint@14.16.1) + stylelint-config-standard: 25.0.0(stylelint@16.8.1) transitivePeerDependencies: - eslint - jest @@ -15599,21 +15825,21 @@ packages: - typescript dev: false - /@umijs/lint@4.3.3(eslint@8.55.0)(stylelint@14.16.1)(typescript@5.4.5): + /@umijs/lint@4.3.3(eslint@9.8.0)(stylelint@16.8.1)(typescript@5.4.5): resolution: {integrity: sha512-ECEDG1m2SQ+JF3HBypK3GyiWogpvJGL8QIDdKfZEkbVjK6xfoAyHL3pY9HswUztPGH6E3gQuQSJ0Gxe4IO5WPw==} dependencies: '@babel/core': 7.23.6 - '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@8.55.0) + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@9.8.0) '@stylelint/postcss-css-in-js': 0.38.0(postcss-syntax@0.36.2)(postcss@8.4.39) - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.4.5) - '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@9.8.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@9.8.0)(typescript@5.4.5) '@umijs/babel-preset-umi': 4.3.3 - eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.55.0)(typescript@5.4.5) - eslint-plugin-react: 7.33.2(eslint@8.55.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.55.0) + eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@9.8.0)(typescript@5.4.5) + eslint-plugin-react: 7.33.2(eslint@9.8.0) + eslint-plugin-react-hooks: 4.6.0(eslint@9.8.0) postcss: 8.4.39 postcss-syntax: 0.36.2(postcss@8.4.39) - stylelint-config-standard: 25.0.0(stylelint@14.16.1) + stylelint-config-standard: 25.0.0(stylelint@16.8.1) transitivePeerDependencies: - eslint - jest @@ -15701,7 +15927,7 @@ packages: dependencies: tsx: 3.12.2 - /@umijs/preset-umi@4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.4)(webpack@5.92.1): + /@umijs/preset-umi@4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.4)(webpack@5.93.0): resolution: {integrity: sha512-Pok9q7W7s1lpONVerG323PbwWjp2Jq1Q7H8sr3Kt5o7QiE8+2VOsKmwZfdpRuV9Ko0MIeEmQ1ROhKlHWvctztQ==} dependencies: '@iconify/utils': 2.1.1 @@ -15712,7 +15938,7 @@ packages: '@umijs/bundler-mako': 0.7.6-beta.1 '@umijs/bundler-utils': 4.3.3 '@umijs/bundler-vite': 4.3.3(@types/node@20.14.2)(postcss@8.4.39) - '@umijs/bundler-webpack': 4.3.3(typescript@5.4.4)(webpack@5.92.1) + '@umijs/bundler-webpack': 4.3.3(typescript@5.4.4)(webpack@5.93.0) '@umijs/core': 4.3.3 '@umijs/did-you-know': 1.0.3 '@umijs/es-module-parser': 0.0.7 @@ -15731,7 +15957,7 @@ packages: current-script-polyfill: 1.0.0 enhanced-resolve: 5.9.3 fast-glob: 3.2.12 - html-webpack-plugin: 5.5.0(webpack@5.92.1) + html-webpack-plugin: 5.5.0(webpack@5.93.0) less-plugin-resolve: 1.0.2 path-to-regexp: 1.7.0 postcss: 8.4.39 @@ -15761,7 +15987,7 @@ packages: - webpack-plugin-serve dev: false - /@umijs/preset-umi@4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.5)(webpack@5.92.1): + /@umijs/preset-umi@4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.5)(webpack@5.93.0): resolution: {integrity: sha512-Pok9q7W7s1lpONVerG323PbwWjp2Jq1Q7H8sr3Kt5o7QiE8+2VOsKmwZfdpRuV9Ko0MIeEmQ1ROhKlHWvctztQ==} dependencies: '@iconify/utils': 2.1.1 @@ -15772,7 +15998,7 @@ packages: '@umijs/bundler-mako': 0.7.6-beta.1 '@umijs/bundler-utils': 4.3.3 '@umijs/bundler-vite': 4.3.3(@types/node@20.14.2)(postcss@8.4.39) - '@umijs/bundler-webpack': 4.3.3(typescript@5.4.5)(webpack@5.92.1) + '@umijs/bundler-webpack': 4.3.3(typescript@5.4.5)(webpack@5.93.0) '@umijs/core': 4.3.3 '@umijs/did-you-know': 1.0.3 '@umijs/es-module-parser': 0.0.7 @@ -15791,7 +16017,7 @@ packages: current-script-polyfill: 1.0.0 enhanced-resolve: 5.9.3 fast-glob: 3.2.12 - html-webpack-plugin: 5.5.0(webpack@5.92.1) + html-webpack-plugin: 5.5.0(webpack@5.93.0) less-plugin-resolve: 1.0.2 path-to-regexp: 1.7.0 postcss: 8.4.39 @@ -15821,7 +16047,7 @@ packages: - webpack-plugin-serve dev: true - /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.92.1): + /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.93.0): resolution: {integrity: sha512-RtFvB+/GmjRhpHcqNgnw8iWZpTlxOnmNxi8eDcecxMmxmSgeDj25LV0jr4Q6rOhv3GTIfVGBhkwz+khGT5tfmg==} engines: {node: '>= 10.13'} peerDependencies: @@ -15857,7 +16083,7 @@ packages: react-refresh: 0.14.0 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.92.1 + webpack: 5.93.0 /@umijs/renderer-react@4.3.3(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-iseovHKibmtNxJB8jHjhR56C3uzbxkrWdE9z7ktKtGIyf9dVj1ZI54AqsbnadyX4qp5Z5zPjo3lONpGGyycjLA==} @@ -15888,14 +16114,14 @@ packages: transitivePeerDependencies: - supports-color - /@umijs/test@4.3.3(@babel/core@7.22.10): + /@umijs/test@4.3.3(@babel/core@7.25.2): resolution: {integrity: sha512-Kg2mG3KKZDzTiOFPzU3BgCasMaEdl6UzAT50tUxc6zsD9zZZ97ddT7lW/anRipM3w4rQ7CvsyOOdxklBWqO48w==} dependencies: - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.22.10) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.25.2) '@jest/types': 27.5.1 '@umijs/bundler-utils': 4.3.3 '@umijs/utils': 4.3.3 - babel-jest: 29.7.0(@babel/core@7.22.10) + babel-jest: 29.7.0(@babel/core@7.25.2) esbuild: 0.21.4 identity-obj-proxy: 3.0.0 isomorphic-unfetch: 4.0.2 @@ -15931,6 +16157,7 @@ packages: /@ungap/structured-clone@1.2.0: resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: false /@use-gesture/core@10.3.0: resolution: {integrity: sha512-rh+6MND31zfHcy9VU3dOZCqGY511lvGcfyJenN4cWZe0u1BH6brBpBddLVXhF2r4BMqWbvxfsbL7D287thJU2A==} @@ -16201,6 +16428,21 @@ packages: zod: 3.23.8 dev: false + /abitype@1.0.0(typescript@5.5.4)(zod@3.23.8): + resolution: {integrity: sha512-NMeMah//6bJ56H5XRj8QCV4AwuW6hB6zqz2LnhhLdcWVQOsXki6/Pn3APeqxCma62nXIcmZWdu1DlHWS74umVQ==} + peerDependencies: + typescript: '>=5.0.4' + zod: ^3 >=3.22.0 + peerDependenciesMeta: + typescript: + optional: true + zod: + optional: true + dependencies: + typescript: 5.5.4 + zod: 3.23.8 + dev: false + /abs-svg-path@0.1.1: resolution: {integrity: sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==} dev: true @@ -16239,6 +16481,15 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.11.3 + dev: false + + /acorn-jsx@5.3.2(acorn@8.12.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.12.1 + dev: true /acorn-walk@7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} @@ -16287,10 +16538,6 @@ packages: engines: {node: '>=0.3.0'} dev: false - /aes-js@3.0.0: - resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} - dev: false - /aes-js@4.0.0-beta.5: resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} dev: false @@ -16300,7 +16547,7 @@ packages: engines: {node: '>= 6.0.0'} requiresBuild: true dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -16308,7 +16555,7 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false @@ -16428,13 +16675,13 @@ packages: uri-js: 4.4.1 dev: true - /ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + /ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} dependencies: fast-deep-equal: 3.1.3 + fast-uri: 3.0.1 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - uri-js: 4.4.1 /ali-oss@6.18.1: resolution: {integrity: sha512-VsptD0jX3JNc3AjiLs5a9oTP0ArfT9IYhBuY6G/SpuY6LMuiwfqywrAosY65BlHKODAdYy8VWL6kmt0mO7BUGA==} @@ -16445,7 +16692,7 @@ packages: bowser: 1.9.4 copy-to: 2.0.1 dateformat: 2.2.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) destroy: 1.2.0 end-or-error: 1.0.1 get-ready: 1.0.0 @@ -16613,10 +16860,10 @@ packages: tslib: 2.6.3 use-sync-external-store: 1.2.2(react@18.3.1) - /antd-style@3.6.2(@types/react@18.3.3)(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1): + /antd-style@3.6.2(@types/react@18.3.3)(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-p6tRV63+U9yp3T3DB4ope1Xs3VdkhNsPD+yiZMJnR57dclPQPtrNnrGBmdGwjWYP1HlzB1XS4JHqFAyMjvObHA==} peerDependencies: - antd: 5.19.1 + antd: 5.19.4 react: '>=18' dependencies: '@ant-design/cssinjs': 1.21.0(react-dom@18.3.1)(react@18.3.1) @@ -16627,7 +16874,7 @@ packages: '@emotion/serialize': 1.1.4 '@emotion/server': 11.11.0(@emotion/css@11.11.2) '@emotion/utils': 1.2.1 - antd: 5.19.1(react-dom@18.3.1)(react@18.3.1) + antd: 5.19.4(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 use-merge-value: 1.2.0(react@18.3.1) transitivePeerDependencies: @@ -16635,17 +16882,18 @@ packages: - react-dom dev: false - /antd@5.19.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ogGEUPaamSZ2HFGvlyLBNfxZ0c4uX5aqEIwMtmqRTPNjcLY/k+qdMmdWrMMiY1CDJ3j1in5wjzQTvREG+do65g==} + /antd@5.19.4(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-bhSNzeScfaeN85LrQXZh5fD26y6uB+6c5cgoPUmW7lkC5oDN4mnT04yYcpqHpZD8p227AmycE+ZrcnilJH9log==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: '@ant-design/colors': 7.1.0 '@ant-design/cssinjs': 1.21.0(react-dom@18.3.1)(react@18.3.1) - '@ant-design/icons': 5.3.7(react-dom@18.3.1)(react@18.3.1) + '@ant-design/cssinjs-utils': 1.0.3(react-dom@18.3.1)(react@18.3.1) + '@ant-design/icons': 5.4.0(react-dom@18.3.1)(react@18.3.1) '@ant-design/react-slick': 1.1.2(react@18.3.1) - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@ctrl/tinycolor': 3.6.1 '@rc-component/color-picker': 1.5.3(react-dom@18.3.1)(react@18.3.1) '@rc-component/mutate-observer': 1.1.0(react-dom@18.3.1)(react@18.3.1) @@ -16670,12 +16918,12 @@ packages: rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) rc-notification: 5.6.0(react-dom@18.3.1)(react@18.3.1) rc-pagination: 4.2.0(react-dom@18.3.1)(react@18.3.1) - rc-picker: 4.6.7(dayjs@1.11.10)(react-dom@18.3.1)(react@18.3.1) + rc-picker: 4.6.11(dayjs@1.11.10)(react-dom@18.3.1)(react@18.3.1) rc-progress: 4.0.0(react-dom@18.3.1)(react@18.3.1) rc-rate: 2.13.0(react-dom@18.3.1)(react@18.3.1) rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) rc-segmented: 2.3.0(react-dom@18.3.1)(react@18.3.1) - rc-select: 14.15.0(react-dom@18.3.1)(react@18.3.1) + rc-select: 14.15.1(react-dom@18.3.1)(react@18.3.1) rc-slider: 10.6.2(react-dom@18.3.1)(react@18.3.1) rc-steps: 6.0.1(react-dom@18.3.1)(react@18.3.1) rc-switch: 4.1.0(react-dom@18.3.1)(react@18.3.1) @@ -16685,7 +16933,7 @@ packages: rc-tooltip: 6.2.0(react-dom@18.3.1)(react@18.3.1) rc-tree: 5.8.8(react-dom@18.3.1)(react@18.3.1) rc-tree-select: 5.22.1(react-dom@18.3.1)(react@18.3.1) - rc-upload: 4.5.2(react-dom@18.3.1)(react@18.3.1) + rc-upload: 4.6.0(react-dom@18.3.1)(react@18.3.1) rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -16696,10 +16944,6 @@ packages: - luxon - moment - /antlr4ts@0.5.0-alpha.4: - resolution: {integrity: sha512-WPQDt1B74OfPv/IMS2ekXAKkTZIHl88uMetg6q3OTqgFxZ/dxDXI0EWLyZid/1Pe6hTftyg5N7gel5wNAGxXyQ==} - dev: false - /any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} @@ -16885,11 +17129,6 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - /array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} - dev: false - /array.prototype.findlastindex@1.2.3: resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} engines: {node: '>= 0.4'} @@ -16957,6 +17196,7 @@ packages: /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} + dev: true /arrify@2.0.1: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} @@ -17005,6 +17245,11 @@ packages: /assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + /assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + dev: false + /ast-types@0.13.4: resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} engines: {node: '>=4'} @@ -17155,17 +17400,17 @@ packages: resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==} dev: true - /babel-jest@29.7.0(@babel/core@7.22.10): + /babel-jest@29.7.0(@babel/core@7.25.2): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.25.2 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.22.10) + babel-preset-jest: 29.6.3(@babel/core@7.25.2) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -17254,49 +17499,49 @@ packages: zod: 3.23.8 zod-validation-error: 2.1.0(zod@3.23.8) - /babel-plugin-styled-components@2.1.4(@babel/core@7.22.10)(styled-components@5.3.11): + /babel-plugin-styled-components@2.1.4(@babel/core@7.25.2)(styled-components@5.3.11): resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} peerDependencies: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.24.3 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.22.10) + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.25.2) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.11(@babel/core@7.22.10)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1) + styled-components: 5.3.11(@babel/core@7.25.2)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1) transitivePeerDependencies: - '@babel/core' dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.10): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.2): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10) + '@babel/core': 7.25.2 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2) - /babel-preset-jest@29.6.3(@babel/core@7.22.10): + /babel-preset-jest@29.6.3(@babel/core@7.25.2): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.25.2 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.10) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2) /babel-runtime@6.26.0: resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} @@ -17348,10 +17593,6 @@ packages: - supports-color dev: false - /bech32@1.1.4: - resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} - dev: false - /bessel@1.0.2: resolution: {integrity: sha512-Al3nHGQGqDYqqinXhQzmwmcRToe/3WyBv4N8aZc5Pef8xw2neZlR9VPi84Sa23JtgWcucu18HxVZrnI0fn2etw==} engines: {node: '>=0.8'} @@ -17553,6 +17794,10 @@ packages: /brorand@1.1.0: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + /brotli-wasm@2.0.1: + resolution: {integrity: sha512-+3USgYsC7bzb5yU0/p2HnnynZl0ak0E6uoIm4UW4Aby/8s8HFCq6NCfrrf1E9c3O8OCSzq3oYO1tUVqIi61Nww==} + dev: false + /brotli@1.3.3: resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} dependencies: @@ -17768,14 +18013,6 @@ packages: load-tsconfig: 0.2.5 dev: false - /busboy@0.2.14: - resolution: {integrity: sha512-InWFDomvlkEj+xWLBfU3AvnbVYqeTWmQopiW0tWWEy5yehYm2YkGEc59sUmw/4ty5Zj/b0WHGs1LgecuBSBGrg==} - engines: {node: '>=0.8.0'} - dependencies: - dicer: 0.2.5 - readable-stream: 1.1.14 - dev: true - /busboy@1.6.0: resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} engines: {node: '>=10.16.0'} @@ -17936,6 +18173,7 @@ packages: /caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true /cbor@8.1.0: resolution: {integrity: sha512-DwGjNW9omn6EwP70aXsn7FQJx5kO12tX0bZkaTjzdVFM6/7nhA4t0EENocKGx6D2Bch9PE2KzCUf5SceBdeijg==} @@ -17966,12 +18204,12 @@ packages: crc-32: 1.2.2 dev: true - /chai-as-promised@7.1.2(chai@4.3.10): + /chai-as-promised@7.1.2(chai@5.1.1): resolution: {integrity: sha512-aBDHZxRzYnUYuIAIPBH2s511DjlKPzXNlXSGFC8CwmroWQLfrW0LtE1nK3MAwwNhJPa9raEjNCmRoFpG0Hurdw==} peerDependencies: chai: '>= 2.1.2 < 6' dependencies: - chai: 4.3.10 + chai: 5.1.1 check-error: 1.0.3 dev: false @@ -17987,6 +18225,17 @@ packages: pathval: 1.1.1 type-detect: 4.0.8 + /chai@5.1.1: + resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} + engines: {node: '>=12'} + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.1.1 + pathval: 2.0.0 + dev: false + /chainsaw@0.1.0: resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==} dependencies: @@ -18073,6 +18322,11 @@ packages: dependencies: get-func-name: 2.0.2 + /check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + dev: false + /child_process@1.0.2: resolution: {integrity: sha512-Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==} dev: false @@ -18204,14 +18458,13 @@ packages: engines: {node: '>=6'} dev: true - /cli-table3@0.5.1: - resolution: {integrity: sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==} - engines: {node: '>=6'} + /cli-table3@0.6.5: + resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} + engines: {node: 10.* || >= 12.*} dependencies: - object-assign: 4.1.1 - string-width: 2.1.1 + string-width: 4.2.3 optionalDependencies: - colors: 1.4.0 + '@colors/colors': 1.5.0 dev: false /cli-tableau@2.0.1: @@ -18396,11 +18649,6 @@ packages: engines: {node: '>=0.1.90'} dev: false - /colors@1.4.0: - resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} - engines: {node: '>=0.1.90'} - dev: false - /colorspace@1.1.4: resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} dependencies: @@ -18987,6 +19235,21 @@ packages: path-type: 4.0.0 yaml: 1.10.2 + /cosmiconfig@9.0.0(typescript@5.4.4): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + typescript: 5.4.4 + /crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} engines: {node: '>=0.8'} @@ -19184,7 +19447,7 @@ packages: postcss: 8.4.39 postcss-selector-parser: 6.1.0 - /css-loader@6.7.1(webpack@5.92.1): + /css-loader@6.7.1(webpack@5.93.0): resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -19198,7 +19461,7 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.39) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.92.1 + webpack: 5.93.0 /css-prefers-color-scheme@6.0.3(postcss@8.4.39): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} @@ -19233,6 +19496,13 @@ packages: mdn-data: 2.0.14 source-map: 0.6.1 + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.0 + /css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} @@ -19666,7 +19936,7 @@ packages: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 dev: false /dateformat@2.2.0: @@ -19718,18 +19988,6 @@ packages: dependencies: ms: 2.1.2 - /debug@4.3.5(supports-color@5.5.0): - resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} - engines: {node: '>=6.0'} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.1.2 - supports-color: 5.5.0 - /debug@4.3.5(supports-color@8.1.1): resolution: {integrity: sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==} engines: {node: '>=6.0'} @@ -19741,7 +19999,18 @@ packages: dependencies: ms: 2.1.2 supports-color: 8.1.1 - dev: false + + /debug@4.3.6(supports-color@5.5.0): + resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + supports-color: 5.5.0 /decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} @@ -19749,6 +20018,7 @@ packages: dependencies: decamelize: 1.2.0 map-obj: 1.0.1 + dev: true /decamelize@1.2.0: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} @@ -19841,6 +20111,18 @@ packages: dependencies: type-detect: 4.0.8 + /deep-eql@4.1.4: + resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} + engines: {node: '>=6'} + dependencies: + type-detect: 4.1.0 + dev: false + + /deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + dev: false + /deep-equal@1.0.1: resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} @@ -20043,14 +20325,6 @@ packages: resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} dev: true - /dicer@0.2.5: - resolution: {integrity: sha512-FDvbtnq7dzlPz0wyYlOExifDEZcu8h+rErEXgfxqmLfRfC/kJidEFh4+effJRO3P0xmfqyPbSMG0LveNRfTKVg==} - engines: {node: '>=0.8.0'} - dependencies: - readable-stream: 1.1.14 - streamsearch: 0.1.2 - dev: true - /diff-match-patch@1.0.5: resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} dev: true @@ -20110,6 +20384,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 + dev: false /docxtemplater@3.48.0: resolution: {integrity: sha512-eM/sSUIVZND/GeY7FCC8kL2QV9oEQZ/RNxfY9cC07JutpVMFC9EEBOk4ajs3mcN72gqzOUqrsdwXPmKTD9TyHA==} @@ -20137,7 +20412,7 @@ packages: /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.4 csstype: 3.1.3 dev: true @@ -20409,6 +20684,13 @@ packages: graceful-fs: 4.2.11 tapable: 2.2.1 + /enhanced-resolve@5.17.1: + resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + /enhanced-resolve@5.9.3: resolution: {integrity: sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==} engines: {node: '>=10.13.0'} @@ -20954,7 +21236,7 @@ packages: - supports-color dev: false - /eslint-plugin-jest-dom@5.4.0(eslint@8.55.0): + /eslint-plugin-jest-dom@5.4.0(eslint@9.8.0): resolution: {integrity: sha512-yBqvFsnpS5Sybjoq61cJiUsenRkC9K32hYQBFS9doBR7nbQZZ5FyO+X7MlmfM1C48Ejx/qTuOCgukDUNyzKZ7A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6', yarn: '>=1'} peerDependencies: @@ -20965,7 +21247,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.5 - eslint: 8.55.0 + eslint: 9.8.0 requireindex: 1.2.0 dev: true @@ -20990,7 +21272,7 @@ packages: - typescript dev: false - /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.55.0)(typescript@5.4.5): + /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@5.62.0)(eslint@9.8.0)(typescript@5.4.5): resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -21003,9 +21285,9 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.4.5) - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.4.5) - eslint: 8.55.0 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@9.8.0)(typescript@5.4.5) + '@typescript-eslint/utils': 5.62.0(eslint@9.8.0)(typescript@5.4.5) + eslint: 9.8.0 transitivePeerDependencies: - supports-color - typescript @@ -21075,6 +21357,16 @@ packages: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: eslint: 8.55.0 + dev: false + + /eslint-plugin-react-hooks@4.6.0(eslint@9.8.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 9.8.0 + dev: true /eslint-plugin-react@7.33.2(eslint@8.55.0): resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} @@ -21099,15 +21391,41 @@ packages: resolve: 2.0.0-next.5 semver: 6.3.1 string.prototype.matchall: 4.0.11 + dev: false - /eslint-plugin-testing-library@5.11.1(eslint@8.55.0)(typescript@5.4.5): + /eslint-plugin-react@7.33.2(eslint@9.8.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.8 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.4 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.19 + eslint: 9.8.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.8 + object.fromentries: 2.0.8 + object.hasown: 1.1.4 + object.values: 1.2.0 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.11 + dev: true + + /eslint-plugin-testing-library@5.11.1(eslint@9.8.0)(typescript@5.4.5): resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.4.5) - eslint: 8.55.0 + '@typescript-eslint/utils': 5.62.0(eslint@9.8.0)(typescript@5.4.5) + eslint: 9.8.0 transitivePeerDependencies: - supports-color - typescript @@ -21126,6 +21444,15 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 + dev: false + + /eslint-scope@8.0.2: + resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true /eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} @@ -21147,6 +21474,11 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-visitor-keys@4.0.0: + resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + /eslint@8.55.0: resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -21192,6 +21524,59 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color + dev: false + + /eslint@9.8.0: + resolution: {integrity: sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.8.0) + '@eslint-community/regexpp': 4.11.0 + '@eslint/config-array': 0.17.1 + '@eslint/eslintrc': 3.1.0 + '@eslint/js': 9.8.0 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.3.0 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.6(supports-color@5.5.0) + escape-string-regexp: 4.0.0 + eslint-scope: 8.0.2 + eslint-visitor-keys: 4.0.0 + espree: 10.1.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@10.1.0: + resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) + eslint-visitor-keys: 4.0.0 + dev: true /espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} @@ -21200,6 +21585,7 @@ packages: acorn: 8.11.3 acorn-jsx: 5.3.2(acorn@8.11.3) eslint-visitor-keys: 3.4.3 + dev: false /esprima@2.7.3: resolution: {integrity: sha512-OarPfz0lFCiW4/AV2Oy1Rp9qu0iusTKqykwTspGCZtPxmF81JR4MmIebvF1F9+UOKth2ZubLQ4XGGaU+hSn99A==} @@ -21217,6 +21603,14 @@ packages: engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 + dev: false + + /esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true /esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} @@ -21254,33 +21648,6 @@ packages: resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} - /eth-gas-reporter@0.2.27: - resolution: {integrity: sha512-femhvoAM7wL0GcI8ozTdxfuBtBFJ9qsyIAsmKVjlWAHUbdnnXHt+lKzz/kmldM5lA9jLuNHGwuIxorNpLbR1Zw==} - peerDependencies: - '@codechecks/client': ^0.1.0 - peerDependenciesMeta: - '@codechecks/client': - optional: true - dependencies: - '@solidity-parser/parser': 0.14.5 - axios: 1.7.2 - cli-table3: 0.5.1 - colors: 1.4.0 - ethereum-cryptography: 1.2.0 - ethers: 5.7.2 - fs-readdir-recursive: 1.1.0 - lodash: 4.17.21 - markdown-table: 1.1.3 - mocha: 10.7.0 - req-cwd: 2.0.0 - sha1: 1.1.1 - sync-request: 6.1.0 - transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - dev: false - /ethereum-bloom-filters@1.2.0: resolution: {integrity: sha512-28hyiE7HVsWubqhpVLVmZXFd4ITeHi+BUu05o9isf0GUpMtzBUi+8/gFrGaGYzvGAJQmJ3JKj77Mk9G98T84rA==} dependencies: @@ -21355,44 +21722,6 @@ packages: rlp: 2.2.7 dev: false - /ethers@5.7.2: - resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} - dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/providers': 5.7.2 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/solidity': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/units': 5.7.0 - '@ethersproject/wallet': 5.7.0 - '@ethersproject/web': 5.7.1 - '@ethersproject/wordlists': 5.7.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - /ethers@6.13.2: resolution: {integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==} engines: {node: '>=14.0.0'} @@ -21711,6 +22040,9 @@ packages: /fast-safe-stringify@2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + /fast-uri@3.0.1: + resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==} + /fast-url-parser@1.1.3: resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} dependencies: @@ -21776,6 +22108,20 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.2.0 + dev: false + + /file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + dependencies: + flat-cache: 4.0.1 + dev: true + + /file-entry-cache@9.0.0: + resolution: {integrity: sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==} + engines: {node: '>=18'} + dependencies: + flat-cache: 5.0.0 /file-saver@2.0.5: resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==} @@ -21899,6 +22245,22 @@ packages: flatted: 3.2.9 keyv: 4.5.4 rimraf: 3.0.2 + dev: false + + /flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + dev: true + + /flat-cache@5.0.0: + resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==} + engines: {node: '>=18'} + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 /flat-to-nested@1.1.1: resolution: {integrity: sha512-Sym5oik6BO9JnsDEjv9Q9hPTCexG2ttk0UiM2mgLEiCiiUOQr8acBd33r8ixnoSGR0HAxPoP8WtLAL5oV46IhQ==} @@ -21911,6 +22273,9 @@ packages: /flatted@3.2.9: resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + /flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + /flru@1.0.2: resolution: {integrity: sha512-kWyh8ADvHBFz6ua5xYOPnUroZTT/bwWfrCeL0Wj1dzG4/YOmOcfJ99W8dOVyyynJN35rZ9aCOtHChqQovV7yog==} engines: {node: '>=6'} @@ -21947,7 +22312,7 @@ packages: debug: optional: true dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) /fontkit@2.0.2: resolution: {integrity: sha512-jc4k5Yr8iov8QfS6u8w2CnHWVmbOGtdBtOXMze5Y+QD966Rx6PEVWXSEGwXlsDlKtu1G12cJjcsybnqhSk/+LA==} @@ -21987,7 +22352,7 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: true - /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.4)(webpack@5.92.1): + /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.4)(webpack@5.93.0): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -22007,10 +22372,10 @@ packages: semver: 7.6.2 tapable: 2.2.1 typescript: 5.4.4 - webpack: 5.92.1 + webpack: 5.93.0 dev: false - /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.5)(webpack@5.92.1): + /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.5)(webpack@5.93.0): resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -22030,7 +22395,7 @@ packages: semver: 7.6.2 tapable: 2.2.1 typescript: 5.4.5 - webpack: 5.92.1 + webpack: 5.93.0 dev: true /form-data@2.3.3: @@ -22040,6 +22405,7 @@ packages: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 + dev: true /form-data@3.0.1: resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} @@ -22162,10 +22528,6 @@ packages: /fs-monkey@1.0.6: resolution: {integrity: sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==} - /fs-readdir-recursive@1.1.0: - resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} - dev: false - /fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -22310,11 +22672,6 @@ packages: dependencies: pify: 4.0.1 - /get-port@3.2.0: - resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==} - engines: {node: '>=4'} - dev: false - /get-ready@1.0.0: resolution: {integrity: sha512-mFXCZPJIlcYcth+N8267+mghfYN9h3EhsDa6JSnbA3Wrhh/XFpuowviFcsDeYZtKspQyWyJqfs4O6P8CHeTwzw==} dev: true @@ -22400,7 +22757,7 @@ packages: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) fs-extra: 11.2.0 transitivePeerDependencies: - supports-color @@ -22505,6 +22862,7 @@ packages: /glob@5.0.15: resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: inflight: 1.0.6 inherits: 2.0.4 @@ -22527,6 +22885,7 @@ packages: /glob@7.1.7: resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -22601,6 +22960,12 @@ packages: engines: {node: '>=8'} dependencies: type-fest: 0.20.2 + dev: false + + /globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + dev: true /globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} @@ -22709,7 +23074,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.18.0 + uglify-js: 3.19.1 /har-schema@2.0.0: resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} @@ -22728,24 +23093,38 @@ packages: /hard-rejection@2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} engines: {node: '>=6'} + dev: true - /hardhat-gas-reporter@1.0.10(hardhat@2.22.6): - resolution: {integrity: sha512-02N4+So/fZrzJ88ci54GqwVA3Zrf0C9duuTyGt0CFRIh/CdNwbnTgkXkRfojOMLBQ+6t+lBIkgbsOtqMvNwikA==} + /hardhat-gas-reporter@2.2.0(hardhat@2.22.6)(typescript@5.5.4)(zod@3.23.8): + resolution: {integrity: sha512-eAlLWnyDpQ+wJXgSCZsM0yt+rQm3ryJia1I1Hoi94LzlIfuSPcsMQM12VO6UHmAFLvXvoKxXPJ3ZYk0Kz+7CDQ==} peerDependencies: - hardhat: ^2.0.2 + hardhat: ^2.16.0 dependencies: - array-uniq: 1.0.3 - eth-gas-reporter: 0.2.27 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + '@ethersproject/abi': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/units': 5.7.0 + '@solidity-parser/parser': 0.18.0 + axios: 1.7.2 + brotli-wasm: 2.0.1 + chalk: 4.1.2 + cli-table3: 0.6.5 + ethereum-cryptography: 2.2.1 + glob: 10.4.5 + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) + jsonschema: 1.4.1 + lodash: 4.17.21 + markdown-table: 2.0.0 sha1: 1.1.1 + viem: 2.7.14(typescript@5.5.4)(zod@3.23.8) transitivePeerDependencies: - - '@codechecks/client' - bufferutil - debug + - typescript - utf-8-validate + - zod dev: false - /hardhat@2.22.6(ts-node@9.1.1)(typescript@5.5.4): + /hardhat@2.22.6(ts-node@10.9.2)(typescript@5.5.4): resolution: {integrity: sha512-abFEnd9QACwEtSvZZGSmzvw7N3zhQN1cDKz5SLHAupfG24qTHofCjqvD5kT5Wwsq5XOL0ON1Mq5rr4v0XX5ciw==} hasBin: true peerDependencies: @@ -22774,7 +23153,7 @@ packages: chalk: 2.4.2 chokidar: 3.6.0 ci-info: 2.0.0 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) enquirer: 2.4.1 env-paths: 2.2.1 ethereum-cryptography: 1.2.0 @@ -22796,7 +23175,7 @@ packages: solc: 0.8.26(debug@4.3.5) source-map-support: 0.5.21 stacktrace-parser: 0.1.10 - ts-node: 9.1.1(typescript@5.5.4) + ts-node: 10.9.2(@types/node@22.0.2)(typescript@5.5.4) tsort: 0.0.1 typescript: 5.5.4 undici: 5.28.4 @@ -22918,7 +23297,7 @@ packages: /history@5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 /hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} @@ -22934,12 +23313,14 @@ packages: /hosted-git-info@2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true /hosted-git-info@4.1.0: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} dependencies: lru-cache: 6.0.0 + dev: true /hotkeys-js@3.9.4: resolution: {integrity: sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q==} @@ -23012,7 +23393,7 @@ packages: through2: 0.4.2 dev: false - /html-webpack-plugin@5.5.0(webpack@5.92.1): + /html-webpack-plugin@5.5.0(webpack@5.93.0): resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -23023,7 +23404,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.92.1 + webpack: 5.93.0 /htmlparser2@6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} @@ -23049,16 +23430,6 @@ packages: deep-equal: 1.0.1 http-errors: 1.8.1 - /http-basic@8.1.3: - resolution: {integrity: sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==} - engines: {node: '>=6.0.0'} - dependencies: - caseless: 0.12.0 - concat-stream: 1.6.2 - http-response-object: 3.0.2 - parse-cache-control: 1.0.1 - dev: false - /http-cache-semantics@4.1.1: resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} dev: false @@ -23101,7 +23472,7 @@ packages: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -23110,17 +23481,11 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false - /http-response-object@3.0.2: - resolution: {integrity: sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==} - dependencies: - '@types/node': 20.14.2 - dev: false - /http-signature@1.2.0: resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} engines: {node: '>=0.8', npm: '>=1.3.7'} @@ -23139,7 +23504,7 @@ packages: requiresBuild: true dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -23148,7 +23513,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false @@ -23157,7 +23522,7 @@ packages: resolution: {integrity: sha512-l5rcAoKP8A9XOIlcIA87Wt9A7AX2fgOslHOF4WB5Q24y/1+aeH8b7c7NKfm+Bcf+h0u4FHNtLCriC4mAFmCYgg==} dependencies: '@types/node': 20.14.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) transitivePeerDependencies: - supports-color dev: true @@ -23211,10 +23576,10 @@ packages: '@babel/runtime': 7.24.7 dev: false - /i18next@23.11.5: - resolution: {integrity: sha512-41pvpVbW9rhZPk5xjCX2TPJi2861LEig/YRhUkY+1FQ2IQPS0bKUDYnEqY8XPPbB48h1uIwLnP9iiEfuSl20CA==} + /i18next@23.12.2: + resolution: {integrity: sha512-XIeh5V+bi8SJSWGL3jqbTEBW5oD6rbP5L+E7dVQh1MNTxxYef0x15rhJVcRb7oiuq4jLtgy2SD8eFlf6P2cmqg==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} @@ -23249,6 +23614,7 @@ packages: /ignore@5.3.0: resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} engines: {node: '>= 4'} + dev: false /ignore@5.3.1: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} @@ -23302,10 +23668,6 @@ packages: engines: {node: '>=4'} dev: false - /import-lazy@4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} - /imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} @@ -23445,7 +23807,7 @@ packages: dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -23766,6 +24128,7 @@ packages: /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} + dev: true /is-plain-obj@2.1.0: resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} @@ -23957,6 +24320,14 @@ packages: ws: 8.18.0 dev: false + /isows@1.0.3(ws@8.13.0): + resolution: {integrity: sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==} + peerDependencies: + ws: '*' + dependencies: + ws: 8.13.0 + dev: false + /isstream@0.1.2: resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} dev: true @@ -24171,13 +24542,13 @@ packages: resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} dev: false - /jsdom-worker@0.3.0(node-fetch@2.7.0): + /jsdom-worker@0.3.0(node-fetch@3.3.2): resolution: {integrity: sha512-nlPmN0i93+e6vxzov8xqLMR+MBs/TAYeSviehivzqovHH0AgooVx9pQ/otrygASppPvdR+V9Jqx5SMe8+FcADg==} peerDependencies: node-fetch: '*' dependencies: mitt: 3.0.1 - node-fetch: 2.7.0 + node-fetch: 3.3.2 uuid-v4: 0.1.0 dev: false @@ -24445,8 +24816,8 @@ packages: engines: {node: '>=6'} dev: true - /known-css-properties@0.26.0: - resolution: {integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==} + /known-css-properties@0.34.0: + resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==} /koa-bodyparser@4.4.1: resolution: {integrity: sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==} @@ -24470,7 +24841,7 @@ packages: resolution: {integrity: sha512-rm71jaA/P+6HeCpoRhmCv8KVBIi0tfGuO/dMKicbQnQW/YJntJ6MnnspkodoA4QstMVEZArsCphmd0bJEtoMjQ==} engines: {node: '>= 7.6.0'} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) koa-compose: 4.1.0 transitivePeerDependencies: - supports-color @@ -24480,7 +24851,7 @@ packages: engines: {node: '>= 8.0.0'} deprecated: '**IMPORTANT 10x+ PERFORMANCE UPGRADE**: Please upgrade to v12.0.1+ as we have fixed an issue with debuglog causing 10x slower router benchmark performance, see https://github.com/koajs/router/pull/173' dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) http-errors: 1.8.1 koa-compose: 4.1.0 methods: 1.1.2 @@ -24517,7 +24888,7 @@ packages: optional: true dependencies: consolidate: 0.16.0(ejs@3.1.10)(react-dom@18.3.1)(react@18.3.1) - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) get-paths: 0.0.7 koa-send: 5.0.1 mz: 2.7.0 @@ -24619,7 +24990,7 @@ packages: content-disposition: 0.5.4 content-type: 1.0.5 cookies: 0.9.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) delegates: 1.0.0 depd: 2.0.0 destroy: 1.2.0 @@ -25142,6 +25513,12 @@ packages: dependencies: get-func-name: 2.0.2 + /loupe@3.1.1: + resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} + dependencies: + get-func-name: 2.0.2 + dev: false + /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: @@ -25287,6 +25664,7 @@ packages: /map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} + dev: true /map-obj@4.3.0: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} @@ -25323,8 +25701,10 @@ packages: uc.micro: 1.0.6 dev: false - /markdown-table@1.1.3: - resolution: {integrity: sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==} + /markdown-table@2.0.0: + resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==} + dependencies: + repeat-string: 1.6.1 dev: false /mathjs@10.6.4: @@ -25371,6 +25751,9 @@ packages: /mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + /mdurl@1.0.1: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} dev: false @@ -25417,6 +25800,10 @@ packages: engines: {node: '>= 0.10.0'} dev: false + /meow@13.2.0: + resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} + engines: {node: '>=18'} + /meow@6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} @@ -25451,23 +25838,6 @@ packages: yargs-parser: 20.2.9 dev: true - /meow@9.0.0: - resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} - engines: {node: '>=10'} - dependencies: - '@types/minimist': 1.2.5 - camelcase-keys: 6.2.2 - decamelize: 1.2.0 - decamelize-keys: 1.1.1 - hard-rejection: 2.1.0 - minimist-options: 4.1.0 - normalize-package-data: 3.0.3 - read-pkg-up: 7.0.1 - redent: 3.0.0 - trim-newlines: 3.0.1 - type-fest: 0.18.1 - yargs-parser: 20.2.9 - /merge-descriptors@1.0.1: resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} @@ -25525,7 +25895,7 @@ packages: /micromark@2.11.4: resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) parse-entities: 2.0.0 transitivePeerDependencies: - supports-color @@ -25673,6 +26043,7 @@ packages: arrify: 1.0.1 is-plain-obj: 1.1.0 kind-of: 6.0.3 + dev: true /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -25923,21 +26294,6 @@ packages: run-parallel: 1.2.0 dev: true - /multer@1.4.4: - resolution: {integrity: sha512-2wY2+xD4udX612aMqMcB8Ws2Voq6NIUPEtD1be6m411T4uDH/VtL9i//xvcyFlTVfRdaBsk7hV5tgrGQqhuBiw==} - engines: {node: '>= 0.10.0'} - deprecated: Multer 1.x is affected by CVE-2022-24434. This is fixed in v1.4.4-lts.1 which drops support for versions of Node.js before 6. Please upgrade to at least Node.js 6 and version 1.4.4-lts.1 of Multer. If you need support for older versions of Node.js, we are open to accepting patches that would fix the CVE on the main 1.x release line, whilst maintaining compatibility with Node.js 0.10. - dependencies: - append-field: 1.0.0 - busboy: 0.2.14 - concat-stream: 1.6.2 - mkdirp: 0.5.6 - object-assign: 4.1.1 - on-finished: 2.4.1 - type-is: 1.6.18 - xtend: 4.0.2 - dev: true - /multer@1.4.5-lts.1: resolution: {integrity: sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==} engines: {node: '>= 6.0.0'} @@ -26310,7 +26666,7 @@ packages: resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==} hasBin: true dependencies: - abbrev: 1.1.1 + abbrev: 1.0.9 dev: false /nopt@5.0.0: @@ -26335,6 +26691,7 @@ packages: resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 + dev: true /normalize-package-data@3.0.3: resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} @@ -26344,6 +26701,7 @@ packages: is-core-module: 2.13.1 semver: 7.6.2 validate-npm-package-license: 3.0.4 + dev: true /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} @@ -26669,6 +27027,19 @@ packages: levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + dev: false + + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + dev: true /ora@5.4.1: resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} @@ -26822,7 +27193,7 @@ packages: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) get-uri: 6.0.3 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.4 @@ -26893,10 +27264,6 @@ packages: pbkdf2: 3.1.2 safe-buffer: 5.2.1 - /parse-cache-control@1.0.1: - resolution: {integrity: sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==} - dev: false - /parse-entities@2.0.0: resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} dependencies: @@ -27062,6 +27429,11 @@ packages: /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + /pathval@2.0.0: + resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} + engines: {node: '>= 14.16'} + dev: false + /pause-stream@0.0.11: resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} dependencies: @@ -27314,7 +27686,7 @@ packages: resolution: {integrity: sha512-FbLvW60w+vEyvMjP/xom2UPhUN/2bVpdtLfKJeYM3gwzYhoTEEChCOICfFzxkxuoEleOlnpjie+n1nue91bDQw==} engines: {node: '>=5'} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: false @@ -27325,7 +27697,7 @@ packages: dependencies: amp: 0.3.1 amp-message: 0.1.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) escape-string-regexp: 4.0.0 transitivePeerDependencies: - supports-color @@ -27350,7 +27722,7 @@ packages: requiresBuild: true dependencies: async: 3.2.5 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) pidusage: 2.0.21 systeminformation: 5.22.8 tx2: 1.0.5 @@ -27670,9 +28042,6 @@ packages: dependencies: postcss: 8.4.39 - /postcss-media-query-parser@0.2.3: - resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} - /postcss-modules-extract-imports@3.1.0(postcss@8.4.39): resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} engines: {node: ^10 || ^12 || >= 14} @@ -27829,16 +28198,16 @@ packages: dependencies: postcss: 8.4.39 - /postcss-resolve-nested-selector@0.1.1: - resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} + /postcss-resolve-nested-selector@0.1.4: + resolution: {integrity: sha512-R6vHqZWgVnTAPq0C+xjyHfEZqfIYboCBVSy24MjxEDm+tIh1BU4O6o7DP7AA7kHzf136d+Qc5duI4tlpHjixDw==} - /postcss-safe-parser@6.0.0(postcss@8.4.39): - resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} - engines: {node: '>=12.0'} + /postcss-safe-parser@7.0.0(postcss@8.4.40): + resolution: {integrity: sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==} + engines: {node: '>=18.0'} peerDependencies: - postcss: ^8.3.3 + postcss: ^8.4.31 dependencies: - postcss: 8.4.39 + postcss: 8.4.40 /postcss-selector-not@5.0.0(postcss@8.4.39): resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==} @@ -27855,6 +28224,13 @@ packages: cssesc: 3.0.0 util-deprecate: 1.0.2 + /postcss-selector-parser@6.1.1: + resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + /postcss-syntax@0.36.2(postcss@8.4.39): resolution: {integrity: sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==} peerDependencies: @@ -27906,6 +28282,14 @@ packages: picocolors: 1.0.1 source-map-js: 1.2.0 + /postcss@8.4.40: + resolution: {integrity: sha512-YF2kKIUzAofPMpfH6hOi2cGnv/HrUlfucspc7pDyvv7kGdqXrfj8SCl/t8owkEgKEuu8ZcRjSOxFxVLqwChZ2Q==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.1 + source-map-js: 1.2.0 + /postgres-array@2.0.0: resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} engines: {node: '>=4'} @@ -28176,12 +28560,6 @@ packages: dev: false optional: true - /promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} - dependencies: - asap: 2.0.6 - dev: false - /promptly@2.2.0: resolution: {integrity: sha512-aC9j+BZsRSSzEsXBNBwDnAxujdx19HycZoKgRgzWnS8eOHg1asuf9heuLprfbe739zY3IdUQx+Egv6Jn135WHA==} dependencies: @@ -28237,7 +28615,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.4 lru-cache: 7.18.3 @@ -28486,12 +28864,12 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 array-tree-filter: 2.1.0 classnames: 2.5.1 - rc-select: 14.15.0(react-dom@18.3.1)(react@18.3.1) + rc-select: 14.15.1(react-dom@18.3.1)(react@18.3.1) rc-tree: 5.8.8(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28501,9 +28879,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28513,10 +28891,10 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28526,11 +28904,11 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28540,11 +28918,11 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28554,10 +28932,10 @@ packages: react: '>=16.11.0' react-dom: '>=16.11.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28568,9 +28946,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 async-validator: 4.2.5 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.42.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28581,9 +28959,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/async-validator': 5.0.4 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28593,12 +28971,12 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/portal': 1.1.2(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-dialog: 9.5.2(react-dom@18.3.1)(react@18.3.1) rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28623,7 +29001,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/mini-decimal': 1.1.0 classnames: 2.5.1 rc-input: 1.5.1(react-dom@18.3.1)(react@18.3.1) @@ -28650,9 +29028,9 @@ packages: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28662,13 +29040,13 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-input: 1.5.1(react-dom@18.3.1)(react@18.3.1) rc-menu: 9.14.1(react-dom@18.3.1)(react@18.3.1) rc-textarea: 1.7.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28678,7 +29056,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) @@ -28695,31 +29073,18 @@ packages: dependencies: '@babel/runtime': 7.24.7 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: false - /rc-motion@2.9.1(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-QD4bUqByjVQs7PhUT1d4bNxvtTcK9ETwtg7psbDfo6TmYalH/1hhjj4r2hbhW7g5OOEqYHhfwfj4noIvuOVRtQ==} - peerDependencies: - react: '>=16.9.0' - react-dom: '>=16.9.0' - dependencies: - '@babel/runtime': 7.24.7 - classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - dev: true - /rc-motion@2.9.2(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-fUAhHKLDdkAXIDLH0GYwof3raS58dtNUmzLF2MeiR8o6n4thNpSDQhOqQzWE4WfFZDCi9VEN8n7tiB7czREcyw==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 @@ -28732,10 +29097,10 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28758,9 +29123,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28795,8 +29160,8 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: true - /rc-picker@4.6.7(dayjs@1.11.10)(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-ZntxLH863jdNPZq2i6e2+1iXpRfYKHjNfUGgoObA1YExuWAnTCHpZzOkBuS43GnVcnp2MPDp78pH9OZJFd2hLw==} + /rc-picker@4.6.11(dayjs@1.11.10)(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-PEVH5MMTUrdvTTxCmPndsXiJL7TFLSu8q0cDdZrhdcjn8en3NbuhOFacWqKTvdnfG53RPPhiBssXCUHYyc3R/Q==} engines: {node: '>=8.x'} peerDependencies: date-fns: '>= 2.x' @@ -28815,7 +29180,7 @@ packages: moment: optional: true dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 dayjs: 1.11.10 @@ -28831,9 +29196,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28844,9 +29209,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28856,7 +29221,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 @@ -28869,10 +29234,10 @@ packages: react: '>=16.0.0' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28919,25 +29284,25 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.24.7 - '@rc-component/trigger': 2.1.1(react-dom@18.3.1)(react@18.3.1) + '@babel/runtime': 7.24.5 + '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 - rc-motion: 2.9.1(react-dom@18.3.1)(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) rc-overflow: 1.3.2(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.41.0(react-dom@18.3.1)(react@18.3.1) rc-virtual-list: 3.11.4(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: true - /rc-select@14.15.0(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-BDqnDLhhm/8VyyyDlX7ju06S75k6ObJvbsN86zqZ4SY1Fu2ANQxeSWPo7pnwx5nwA5JgG+HcQevtddAgsdeBVQ==} + /rc-select@14.15.1(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-mGvuwW1RMm1NCSI8ZUoRoLRK51R2Nb+QJnmiAvbDRcjh2//ulCkxeV6ZRFTECPpE1t2DPfyqZMPw90SVJzQ7wQ==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) @@ -28954,9 +29319,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28967,9 +29332,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28979,9 +29344,9 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28992,11 +29357,11 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/context': 1.4.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) rc-virtual-list: 3.14.5(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29008,13 +29373,13 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-dropdown: 4.2.0(react-dom@18.3.1)(react@18.3.1) rc-menu: 9.14.1(react-dom@18.3.1)(react@18.3.1) rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29024,7 +29389,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-input: 1.5.1(react-dom@18.3.1)(react@18.3.1) rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) @@ -29038,7 +29403,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 '@rc-component/trigger': 2.2.0(react-dom@18.3.1)(react@18.3.1) classnames: 2.5.1 react: 18.3.1 @@ -29080,11 +29445,11 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-select: 14.15.0(react-dom@18.3.1)(react@18.3.1) + rc-select: 14.15.1(react-dom@18.3.1)(react@18.3.1) rc-tree: 5.8.8(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29142,10 +29507,10 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.5 classnames: 2.5.1 - rc-motion: 2.9.1(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.41.0(react-dom@18.3.1)(react@18.3.1) rc-virtual-list: 3.14.2(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29158,7 +29523,7 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-motion: 2.9.2(react-dom@18.3.1)(react@18.3.1) rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) @@ -29182,15 +29547,15 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: true - /rc-upload@4.5.2(react-dom@18.3.1)(react@18.3.1): - resolution: {integrity: sha512-QO3ne77DwnAPKFn0bA5qJM81QBjQi0e0NHdkvpFyY73Bea2NfITiotqJqVjHgeYPOJu5lLVR32TNGP084aSoXA==} + /rc-upload@4.6.0(react-dom@18.3.1)(react@18.3.1): + resolution: {integrity: sha512-Zr0DT1NHw/ApxrP7UAoxOtGaVYuzarrrCVr0ld7RiEFsKX07uFhE1EpCBxwL11ruFn89GMcshOKWp+s6FLyAlA==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29222,7 +29587,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.5 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 @@ -29245,7 +29610,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 18.3.1 @@ -29260,7 +29625,7 @@ packages: '@babel/runtime': 7.24.7 classnames: 2.5.1 rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.38.1(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: false @@ -29287,10 +29652,10 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.5 classnames: 2.5.1 rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) - rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) + rc-util: 5.41.0(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) dev: true @@ -29302,7 +29667,7 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 classnames: 2.5.1 rc-resize-observer: 1.4.0(react-dom@18.3.1)(react@18.3.1) rc-util: 5.43.0(react-dom@18.3.1)(react@18.3.1) @@ -29395,7 +29760,7 @@ packages: peerDependencies: react: '>=16.13.1' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 react: 18.3.1 dev: false @@ -29419,7 +29784,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.23.6 invariant: 2.2.4 prop-types: 15.8.1 react: 18.3.1 @@ -29470,7 +29835,7 @@ packages: react-dom: 18.3.1(react@18.3.1) dev: false - /react-i18next@14.1.2(i18next@23.11.5)(react-dom@18.3.1)(react@18.3.1): + /react-i18next@14.1.2(i18next@23.12.2)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-FSIcJy6oauJbGEXfhUgVeLzvWBhIBIS+/9c6Lj4niwKZyGaGb4V4vUbATXSlsHJDXXB+ociNxqFNiFuV1gmoqg==} peerDependencies: i18next: '>= 23.2.3' @@ -29485,7 +29850,7 @@ packages: dependencies: '@babel/runtime': 7.24.7 html-parse-stringify: 3.0.1 - i18next: 23.11.5 + i18next: 23.12.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29536,14 +29901,14 @@ packages: /react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - /react-js-cron@3.2.0(antd@5.19.1)(react-dom@18.3.1)(react@18.3.1): + /react-js-cron@3.2.0(antd@5.19.4)(react-dom@18.3.1)(react@18.3.1): resolution: {integrity: sha512-DAluNX6ZpfsSDAIAfJKNyWIckTWTcQ/7IK91J4jaS4o4iihRJo/8gd7kf6ACDTE2RKt0PiSpOf1MBrrSdmdyUQ==} peerDependencies: - antd: 5.19.1 + antd: 5.19.4 react: '>=17.0.0' react-dom: '>=17.0.0' dependencies: - antd: 5.19.1(react-dom@18.3.1)(react@18.3.1) + antd: 5.19.4(react-dom@18.3.1)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29574,7 +29939,7 @@ packages: react: '>=16.3.0' react-dom: '>=16.3.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@popperjs/core': 2.11.8 '@restart/hooks': 0.4.15(react@18.3.1) '@types/warning': 3.0.3 @@ -29638,7 +30003,7 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@types/react-redux': 7.1.33 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -29777,6 +30142,7 @@ packages: find-up: 4.1.0 read-pkg: 5.2.0 type-fest: 0.8.1 + dev: true /read-pkg@5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} @@ -29786,6 +30152,7 @@ packages: normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 + dev: true /read-yaml-file@1.1.0: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} @@ -29821,15 +30188,6 @@ packages: string_decoder: 0.10.31 dev: false - /readable-stream@1.1.14: - resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 0.0.1 - string_decoder: 0.10.31 - dev: true - /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: @@ -29931,7 +30289,7 @@ packages: /redux@4.2.1: resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 /reflect-metadata@0.1.14: resolution: {integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==} @@ -29971,7 +30329,7 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.25.0 dev: false /regexp.prototype.flags@1.5.1: @@ -30060,20 +30418,6 @@ packages: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} - /req-cwd@2.0.0: - resolution: {integrity: sha512-ueoIoLo1OfB6b05COxAA9UpeoscNpYyM+BqYlA7H6LVF4hKGPXQQSSaD2YmvDVJMkk4UDpAHIeU1zG53IqjvlQ==} - engines: {node: '>=4'} - dependencies: - req-from: 2.0.0 - dev: false - - /req-from@2.0.0: - resolution: {integrity: sha512-LzTfEVDVQHBRfjOUMgNBA+V6DWsSnoeKzf42J7l0xa/B4jyPOuuF5MlNSmomLNGemWTnV2TIdjSSLnEn95fOQA==} - engines: {node: '>=4'} - dependencies: - resolve-from: 3.0.0 - dev: false - /request@2.88.2: resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} engines: {node: '>= 6'} @@ -30113,7 +30457,7 @@ packages: resolution: {integrity: sha512-efCx3b+0Z69/LGJmm9Yvi4cqEdxnoGnxYxGxBghkkTTFeXRtTCmmhO0AnAfHz59k957uTSuy8WaHqOs8wbYUWg==} engines: {node: '>=6'} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) module-details-from-path: 1.0.3 resolve: 1.22.8 transitivePeerDependencies: @@ -30124,7 +30468,7 @@ packages: resolution: {integrity: sha512-3TLx5TGyAY6AOqLBoXmHkNql0HIf2RGbuMgCDT2WO/uGVAPJs6h7Kl+bN6TIZGd9bWhWPwnDnTHGtW8Iu77sdw==} engines: {node: '>=8.6.0'} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) module-details-from-path: 1.0.3 resolve: 1.22.8 transitivePeerDependencies: @@ -30146,11 +30490,6 @@ packages: /resize-observer-polyfill@1.5.1: resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} - /resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} - dev: false - /resolve-from@4.0.0: resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} engines: {node: '>=4'} @@ -30650,6 +30989,12 @@ packages: engines: {node: '>=10'} hasBin: true + /semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + dev: false + /send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} @@ -30764,7 +31109,7 @@ packages: dependencies: '@types/debug': 4.1.12 '@types/validator': 13.11.7 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) dottie: 2.0.6 inflection: 1.13.4 lodash: 4.17.21 @@ -31059,7 +31404,7 @@ packages: requiresBuild: true dependencies: agent-base: 6.0.2 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -31071,7 +31416,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) socks: 2.8.3 transitivePeerDependencies: - supports-color @@ -31130,7 +31475,7 @@ packages: ghost-testrpc: 0.0.2 global-modules: 2.0.0 globby: 10.0.2 - hardhat: 2.22.6(ts-node@9.1.1)(typescript@5.5.4) + hardhat: 2.22.6(ts-node@10.9.2)(typescript@5.5.4) jsonschema: 1.4.1 lodash: 4.17.21 mocha: 10.7.0 @@ -31138,7 +31483,7 @@ packages: pify: 4.0.1 recursive-readdir: 2.2.3 sc-istanbul: 0.4.6 - semver: 7.6.2 + semver: 7.6.3 shelljs: 0.8.5 web3-utils: 1.10.4 dev: false @@ -31248,23 +31593,27 @@ packages: dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.17 + dev: true /spdx-exceptions@2.5.0: resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + dev: true /spdx-expression-parse@3.0.1: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.5.0 spdx-license-ids: 3.0.17 + dev: true /spdx-license-ids@3.0.17: resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} + dev: true /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -31277,7 +31626,7 @@ packages: resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} engines: {node: '>=6.0.0'} dependencies: - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -31473,11 +31822,6 @@ packages: engines: {node: '>=4.0.0'} dev: true - /streamsearch@0.1.2: - resolution: {integrity: sha512-jos8u++JKm0ARcSUTAZXOVC0mSox7Bhn6sBgty73P1f3JGf7yG2clTbBNHUdde/kdvP2FESam+vM6l8jBrNxHA==} - engines: {node: '>=0.8.0'} - dev: true - /streamsearch@1.1.0: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} @@ -31614,6 +31958,7 @@ packages: /string_decoder@0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + dev: false /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -31717,10 +32062,7 @@ packages: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} dev: true - /style-search@0.1.0: - resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} - - /styled-components@5.3.11(@babel/core@7.22.10)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1): + /styled-components@5.3.11(@babel/core@7.25.2)(react-dom@18.3.1)(react-is@18.3.1)(react@18.3.1): resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==} engines: {node: '>=10'} peerDependencies: @@ -31733,7 +32075,7 @@ packages: '@emotion/is-prop-valid': 1.2.1 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.22.10)(styled-components@5.3.11) + babel-plugin-styled-components: 2.1.4(@babel/core@7.25.2)(styled-components@5.3.11) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 react: 18.3.1 @@ -31745,66 +32087,68 @@ packages: - '@babel/core' dev: true - /stylelint-config-recommended@7.0.0(stylelint@14.16.1): + /stylelint-config-recommended@7.0.0(stylelint@16.8.1): resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.16.1 + stylelint: 16.8.1(typescript@5.4.4) - /stylelint-config-standard@25.0.0(stylelint@14.16.1): + /stylelint-config-standard@25.0.0(stylelint@16.8.1): resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.16.1 - stylelint-config-recommended: 7.0.0(stylelint@14.16.1) + stylelint: 16.8.1(typescript@5.4.4) + stylelint-config-recommended: 7.0.0(stylelint@16.8.1) - /stylelint@14.16.1: - resolution: {integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /stylelint@16.8.1(typescript@5.4.4): + resolution: {integrity: sha512-O8aDyfdODSDNz/B3gW2HQ+8kv8pfhSu7ZR7xskQ93+vI6FhKKGUJMQ03Ydu+w3OvXXE0/u4hWU4hCPNOyld+OA==} + engines: {node: '>=18.12.0'} hasBin: true dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.0) + '@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1) + '@csstools/css-tokenizer': 2.4.1 + '@csstools/media-query-list-parser': 2.1.13(@csstools/css-parser-algorithms@2.7.1)(@csstools/css-tokenizer@2.4.1) + '@csstools/selector-specificity': 3.1.1(postcss-selector-parser@6.1.1) + '@dual-bundle/import-meta-resolve': 4.1.0 balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 7.1.0 + cosmiconfig: 9.0.0(typescript@5.4.4) css-functions-list: 3.2.2 - debug: 4.3.5(supports-color@5.5.0) + css-tree: 2.3.1 + debug: 4.3.6(supports-color@5.5.0) fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 - file-entry-cache: 6.0.1 + file-entry-cache: 9.0.0 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 ignore: 5.3.1 - import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.26.0 + known-css-properties: 0.34.0 mathml-tag-names: 2.1.3 - meow: 9.0.0 + meow: 13.2.0 micromatch: 4.0.7 normalize-path: 3.0.0 picocolors: 1.0.1 - postcss: 8.4.39 - postcss-media-query-parser: 0.2.3 - postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0(postcss@8.4.39) - postcss-selector-parser: 6.1.0 + postcss: 8.4.40 + postcss-resolve-nested-selector: 0.1.4 + postcss-safe-parser: 7.0.0(postcss@8.4.40) + postcss-selector-parser: 6.1.1 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 - strip-ansi: 6.0.1 - style-search: 0.1.0 - supports-hyperlinks: 2.3.0 + strip-ansi: 7.1.0 + supports-hyperlinks: 3.0.0 svg-tags: 1.0.0 table: 6.8.2 - v8-compile-cache: 2.4.0 - write-file-atomic: 4.0.2 + write-file-atomic: 5.0.1 transitivePeerDependencies: - supports-color + - typescript /stylis@4.2.0: resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} @@ -31836,7 +32180,7 @@ packages: dependencies: component-emitter: 1.3.1 cookiejar: 2.1.4 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 2.1.2 @@ -31853,7 +32197,7 @@ packages: dependencies: component-emitter: 1.3.1 cookiejar: 2.1.4 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 3.5.1 @@ -31919,9 +32263,9 @@ packages: dependencies: has-flag: 4.0.0 - /supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} + /supports-hyperlinks@3.0.0: + resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==} + engines: {node: '>=14.18'} dependencies: has-flag: 4.0.0 supports-color: 7.2.0 @@ -31974,21 +32318,6 @@ packages: /symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} - /sync-request@6.1.0: - resolution: {integrity: sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==} - engines: {node: '>=8.0.0'} - dependencies: - http-response-object: 3.0.2 - sync-rpc: 1.3.6 - then-request: 6.0.2 - dev: false - - /sync-rpc@1.3.6: - resolution: {integrity: sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==} - dependencies: - get-port: 3.2.0 - dev: false - /synckit@0.8.5: resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} engines: {node: ^14.18.0 || >=16.0.0} @@ -32038,7 +32367,7 @@ packages: resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} engines: {node: '>=10.0.0'} dependencies: - ajv: 8.16.0 + ajv: 8.17.1 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 @@ -32176,7 +32505,7 @@ packages: engines: {node: '>=8'} dev: true - /terser-webpack-plugin@5.3.10(webpack@5.92.1): + /terser-webpack-plugin@5.3.10(webpack@5.93.0): resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -32196,8 +32525,8 @@ packages: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.31.2 - webpack: 5.92.1 + terser: 5.31.3 + webpack: 5.93.0 /terser@5.31.2: resolution: {integrity: sha512-LGyRZVFm/QElZHy/CPr/O4eNZOZIzsrQ92y4v9UJe/pFJjypje2yI3C2FmPtvUEnhadlSbmG2nXtdcjHOjCfxw==} @@ -32209,6 +32538,16 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 + /terser@5.31.3: + resolution: {integrity: sha512-pAfYn3NIZLyZpa83ZKigvj6Rn9c/vd5KfYGX7cN1mnzqgDcxWvrU5ZtAfIKhEXz9nRecw4z3LXkjaq96/qZqAA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.12.1 + commander: 2.20.3 + source-map-support: 0.5.21 + /test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -32229,23 +32568,6 @@ packages: /text-table@0.2.0: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - /then-request@6.0.2: - resolution: {integrity: sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==} - engines: {node: '>=6.0.0'} - dependencies: - '@types/concat-stream': 1.6.1 - '@types/form-data': 0.0.33 - '@types/node': 20.14.2 - '@types/qs': 6.9.14 - caseless: 0.12.0 - concat-stream: 1.6.2 - form-data: 2.3.3 - http-basic: 8.1.3 - http-response-object: 3.0.2 - promise: 8.3.0 - qs: 6.12.3 - dev: false - /thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} engines: {node: '>=0.8'} @@ -32414,6 +32736,7 @@ packages: /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} + dev: true /trim-right@1.0.1: resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} @@ -32529,6 +32852,37 @@ packages: yn: 3.1.1 dev: true + /ts-node@10.9.2(@types/node@22.0.2)(typescript@5.5.4): + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': 20.14.2 + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 22.0.2 + acorn: 8.11.3 + acorn-walk: 8.3.2 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.5.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: false + /ts-node@9.1.1(typescript@5.4.4): resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} @@ -32750,6 +33104,11 @@ packages: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} engines: {node: '>=4'} + /type-detect@4.1.0: + resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} + engines: {node: '>=4'} + dev: false + /type-fest@0.13.1: resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} engines: {node: '>=10'} @@ -32758,10 +33117,12 @@ packages: /type-fest@0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} engines: {node: '>=10'} + dev: true /type-fest@0.20.2: resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} engines: {node: '>=10'} + dev: false /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} @@ -32784,6 +33145,7 @@ packages: /type-fest@0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} + dev: true /type-fest@1.4.0: resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} @@ -32809,7 +33171,7 @@ packages: typescript: '>=4.3.0' dependencies: '@types/prettier': 2.7.3 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.6(supports-color@5.5.0) fs-extra: 7.0.1 glob: 7.1.7 js-sha3: 0.8.0 @@ -32914,7 +33276,6 @@ packages: resolution: {integrity: sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==} engines: {node: '>=14.17'} hasBin: true - dev: false /typescript@5.4.5: resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} @@ -32954,8 +33315,8 @@ packages: optionalDependencies: uglify-to-browserify: 1.0.2 - /uglify-js@3.18.0: - resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} + /uglify-js@3.19.1: + resolution: {integrity: sha512-y/2wiW+ceTYR2TSSptAhfnEtpLaQ4Ups5zrjB2d3kuVxHj16j/QJwPl5PvuGy9uARb39J0+iKxcRPvtpsx4A4A==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -32966,20 +33327,20 @@ packages: requiresBuild: true optional: true - /umi@4.3.3(@babel/core@7.22.10)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@8.55.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@14.16.1)(typescript@5.4.4)(webpack@5.92.1): + /umi@4.3.3(@babel/core@7.25.2)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@8.55.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@16.8.1)(typescript@5.4.4)(webpack@5.93.0): resolution: {integrity: sha512-09nUIpF2BMSvaLv8LryvcChTF8fJMaWgtt6T7zNd/iI827jFf2ORkoN9xtz1gYpBb4GdAG0A92Aj++ixtSzXlQ==} engines: {node: '>=14'} hasBin: true dependencies: '@babel/runtime': 7.23.6 '@umijs/bundler-utils': 4.3.3 - '@umijs/bundler-webpack': 4.3.3(typescript@5.4.4)(webpack@5.92.1) + '@umijs/bundler-webpack': 4.3.3(typescript@5.4.4)(webpack@5.93.0) '@umijs/core': 4.3.3 - '@umijs/lint': 4.3.3(eslint@8.55.0)(stylelint@14.16.1)(typescript@5.4.4) - '@umijs/preset-umi': 4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.4)(webpack@5.92.1) + '@umijs/lint': 4.3.3(eslint@8.55.0)(stylelint@16.8.1)(typescript@5.4.4) + '@umijs/preset-umi': 4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.4)(webpack@5.93.0) '@umijs/renderer-react': 4.3.3(react-dom@18.3.1)(react@18.3.1) '@umijs/server': 4.3.3 - '@umijs/test': 4.3.3(@babel/core@7.22.10) + '@umijs/test': 4.3.3(@babel/core@7.25.2) '@umijs/utils': 4.3.3 prettier-plugin-organize-imports: 3.2.4(prettier@3.2.5)(typescript@5.4.4) prettier-plugin-packagejson: 2.4.3(prettier@3.2.5) @@ -33017,20 +33378,20 @@ packages: - webpack-plugin-serve dev: false - /umi@4.3.3(@babel/core@7.22.10)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@8.55.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@14.16.1)(typescript@5.4.5)(webpack@5.92.1): + /umi@4.3.3(@babel/core@7.25.2)(@types/node@20.14.2)(@types/react@18.3.3)(eslint@9.8.0)(prettier@3.2.5)(react-dom@18.3.1)(react@18.3.1)(stylelint@16.8.1)(typescript@5.4.5)(webpack@5.93.0): resolution: {integrity: sha512-09nUIpF2BMSvaLv8LryvcChTF8fJMaWgtt6T7zNd/iI827jFf2ORkoN9xtz1gYpBb4GdAG0A92Aj++ixtSzXlQ==} engines: {node: '>=14'} hasBin: true dependencies: '@babel/runtime': 7.23.6 '@umijs/bundler-utils': 4.3.3 - '@umijs/bundler-webpack': 4.3.3(typescript@5.4.5)(webpack@5.92.1) + '@umijs/bundler-webpack': 4.3.3(typescript@5.4.5)(webpack@5.93.0) '@umijs/core': 4.3.3 - '@umijs/lint': 4.3.3(eslint@8.55.0)(stylelint@14.16.1)(typescript@5.4.5) - '@umijs/preset-umi': 4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.5)(webpack@5.92.1) + '@umijs/lint': 4.3.3(eslint@9.8.0)(stylelint@16.8.1)(typescript@5.4.5) + '@umijs/preset-umi': 4.3.3(@types/node@20.14.2)(@types/react@18.3.3)(typescript@5.4.5)(webpack@5.93.0) '@umijs/renderer-react': 4.3.3(react-dom@18.3.1)(react@18.3.1) '@umijs/server': 4.3.3 - '@umijs/test': 4.3.3(@babel/core@7.22.10) + '@umijs/test': 4.3.3(@babel/core@7.25.2) '@umijs/utils': 4.3.3 prettier-plugin-organize-imports: 3.2.4(prettier@3.2.5)(typescript@5.4.5) prettier-plugin-packagejson: 2.4.3(prettier@3.2.5) @@ -33098,7 +33459,7 @@ packages: peerDependencies: react: '>=15.0.0' dependencies: - '@babel/runtime': 7.24.7 + '@babel/runtime': 7.24.0 '@types/react': 18.3.3 invariant: 2.2.4 react: 18.3.1 @@ -33112,6 +33473,10 @@ packages: /undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + /undici-types@6.11.1: + resolution: {integrity: sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==} + dev: false + /undici@5.28.4: resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==} engines: {node: '>=14.0'} @@ -33489,16 +33854,13 @@ packages: /v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true - - /v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} /validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} dependencies: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 + dev: true /validate-npm-package-name@5.0.0: resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} @@ -33534,6 +33896,29 @@ packages: extsprintf: 1.4.1 dev: true + /viem@2.7.14(typescript@5.5.4)(zod@3.23.8): + resolution: {integrity: sha512-5b1KB1gXli02GOQHZIUsRluNUwssl2t4hqdFAzyWPwJ744N83jAOBOjOkrGz7K3qMIv9b0GQt3DoZIErSQTPkQ==} + peerDependencies: + typescript: '>=5.0.4' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@adraffy/ens-normalize': 1.10.0 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@scure/bip32': 1.3.2 + '@scure/bip39': 1.2.1 + abitype: 1.0.0(typescript@5.5.4)(zod@3.23.8) + isows: 1.0.3(ws@8.13.0) + typescript: 5.5.4 + ws: 8.13.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + - zod + dev: false + /vite-compatible-readable-stream@3.6.1: resolution: {integrity: sha512-t20zYkrSf868+j/p31cRIGN28Phrjm3nRSLR2fyc2tiWi4cZGVdv68yNlwnIINTkMTmPoMiSlc0OadaO7DXZaQ==} engines: {node: '>= 6'} @@ -33549,7 +33934,7 @@ packages: hasBin: true dependencies: cac: 6.7.14 - debug: 4.3.5(supports-color@5.5.0) + debug: 4.3.5(supports-color@8.1.1) pathe: 1.1.2 picocolors: 1.0.0 vite: 5.2.13(@types/node@20.14.2)(sass@1.75.0) @@ -34210,8 +34595,8 @@ packages: resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} engines: {node: '>=10.13.0'} - /webpack@5.92.1: - resolution: {integrity: sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==} + /webpack@5.93.0: + resolution: {integrity: sha512-Y0m5oEY1LRuwly578VqluorkXbvXKh7U3rLoQCEO04M97ScRr44afGVkI0FQFsXzysk5OgFAxjZAb9rsGQVihA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -34229,7 +34614,7 @@ packages: acorn-import-attributes: 1.9.5(acorn@8.12.1) browserslist: 4.23.2 chrome-trace-event: 1.0.4 - enhanced-resolve: 5.17.0 + enhanced-resolve: 5.17.1 es-module-lexer: 1.5.4 eslint-scope: 5.1.1 events: 3.3.0 @@ -34241,7 +34626,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(webpack@5.92.1) + terser-webpack-plugin: 5.3.10(webpack@5.93.0) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -34460,7 +34845,6 @@ packages: /word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} - dev: false /word@0.3.0: resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==} @@ -34535,7 +34919,6 @@ packages: dependencies: imurmurhash: 0.1.4 signal-exit: 4.1.0 - dev: false /write-yaml-file@5.0.0: resolution: {integrity: sha512-FdNA4RyH1L43TlvGG8qOMIfcEczwA5ij+zLXUy3Z83CjxhLvcV7/Q/8pk22wnCgYw7PJhtK+7lhO+qqyT4NdvQ==} @@ -34570,6 +34953,19 @@ packages: utf-8-validate: optional: true + /ws@8.13.0: + resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: false + /ws@8.15.1: resolution: {integrity: sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==} engines: {node: '>=10.0.0'}