@wavemaker-ai/react-runtime 1.0.0-rc.322 → 1.0.0-rc.326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/login-action.js +1 -1
- package/components/advanced/carousel/index.d.ts +1 -0
- package/components/advanced/carousel/template.d.ts +1 -0
- package/components/advanced/login/index.d.ts +1 -0
- package/components/advanced/marquee/index.d.ts +1 -0
- package/components/basic/anchor/index.d.ts +1 -0
- package/components/basic/anchor/index.js +19 -14
- package/components/basic/audio/index.d.ts +1 -0
- package/components/basic/html/index.d.ts +1 -0
- package/components/basic/icon/index.d.ts +1 -0
- package/components/basic/icon/index.js +13 -16
- package/components/basic/iframe/index.d.ts +1 -0
- package/components/basic/label/index.d.ts +1 -0
- package/components/basic/label/index.js +5 -3
- package/components/basic/label/props.d.ts +1 -1
- package/components/basic/picture/index.d.ts +1 -0
- package/components/basic/picture/index.js +3 -2
- package/components/basic/progress-bar/index.d.ts +1 -0
- package/components/basic/progress-circle/index.d.ts +1 -0
- package/components/basic/richtexteditor/index.d.ts +2 -0
- package/components/basic/search/index.d.ts +6 -0
- package/components/basic/search/index.js +69 -9
- package/components/basic/search/props.d.ts +4 -0
- package/components/basic/spinner/index.d.ts +2 -0
- package/components/basic/spinner/index.js +11 -9
- package/components/basic/spinner/props.d.ts +5 -0
- package/components/basic/tile/index.d.ts +1 -0
- package/components/basic/tree/index.d.ts +1 -0
- package/components/basic/video/index.d.ts +1 -0
- package/components/chart/index.d.ts +2 -0
- package/components/chart/props.d.ts +1 -0
- package/components/chart/src/chart.js +12 -1
- package/components/chart/src/types.d.ts +2 -0
- package/components/common/WmAppIcon/index.d.ts +15 -0
- package/components/common/WmAppIcon/index.js +130 -0
- package/components/common/WmAppIcon/props.d.ts +17 -0
- package/components/common/WmAppIcon/props.js +0 -0
- package/components/common/index.d.ts +3 -1
- package/components/common/index.js +10 -2
- package/components/common/wm-skeleton.d.ts +7 -0
- package/components/common/wm-skeleton.js +11 -1
- package/components/container/accordion/accordion-pane/index.d.ts +2 -0
- package/components/container/accordion/accordion-pane/index.js +10 -1
- package/components/container/accordion/accordion-pane/props.d.ts +1 -0
- package/components/container/accordion/index.d.ts +1 -0
- package/components/container/accordion/index.js +2 -2
- package/components/container/index.d.ts +1 -0
- package/components/container/index.js +6 -1
- package/components/container/layout-grid/grid-column/index.d.ts +1 -0
- package/components/container/layout-grid/grid-row/index.d.ts +1 -0
- package/components/container/layout-grid/grid-row/index.js +1 -1
- package/components/container/layout-grid/index.d.ts +1 -0
- package/components/container/linear-layout/index.d.ts +1 -0
- package/components/container/linear-layout/linear-layout-item/index.d.ts +1 -0
- package/components/container/panel/components/panel-header/index.js +16 -16
- package/components/container/panel/index.d.ts +1 -0
- package/components/container/repeat-template/index.d.ts +1 -0
- package/components/container/tabs/index.d.ts +1 -0
- package/components/container/tabs/index.js +18 -18
- package/components/container/tabs/props.d.ts +1 -0
- package/components/container/tabs/tab-pane/index.d.ts +2 -0
- package/components/container/tabs/tab-pane/index.js +2 -0
- package/components/container/tabs/tab-pane/props.d.ts +1 -0
- package/components/container/wizard/components/StepComponents.js +14 -6
- package/components/container/wizard/index.d.ts +2 -0
- package/components/container/wizard/index.js +2 -2
- package/components/container/wizard/props.d.ts +4 -0
- package/components/container/wizard/wizard-step/index.d.ts +1 -0
- package/components/container/wizard/wizard-step/index.js +6 -0
- package/components/data/card/card-actions/index.d.ts +1 -0
- package/components/data/card/card-content/index.d.ts +1 -0
- package/components/data/card/card-footer/index.d.ts +1 -0
- package/components/data/card/index.d.ts +1 -0
- package/components/data/card/index.js +13 -6
- package/components/data/form/base-form/hooks/useFormSubmission.d.ts +1 -1
- package/components/data/form/base-form/hooks/useFormSubmission.js +3 -1
- package/components/data/form/base-form/index.js +11 -14
- package/components/data/form/base-form/props.d.ts +3 -0
- package/components/data/form/dynamic-fields/index.js +1 -0
- package/components/data/form/form-action/index.d.ts +2 -0
- package/components/data/form/form-action/index.js +6 -4
- package/components/data/form/form-controller/withFormController.js +19 -2
- package/components/data/form/form-field/base-field.js +8 -5
- package/components/data/form/form-field/index.js +14 -9
- package/components/data/form/form-field/props.d.ts +1 -0
- package/components/data/form/form-header/index.d.ts +1 -1
- package/components/data/form/form-header/index.js +10 -1
- package/components/data/form/index.js +5 -3
- package/components/data/form/props.d.ts +1 -0
- package/components/data/list/components/ListHeader.js +19 -3
- package/components/data/list/components/ListItemWithTemplate.js +10 -3
- package/components/data/list/components/ListItems.d.ts +1 -1
- package/components/data/list/components/ListItems.js +5 -1
- package/components/data/list/components/LoadMoreButton.js +14 -2
- package/components/data/list/components/StandardListItems.js +1 -1
- package/components/data/list/components/props.d.ts +11 -5
- package/components/data/list/hooks/props.d.ts +2 -2
- package/components/data/list/hooks/useListEffects.js +1 -1
- package/components/data/list/hooks/useListEventHandlers.js +3 -2
- package/components/data/list/index.d.ts +5 -1
- package/components/data/list/index.js +28 -7
- package/components/data/list/props.d.ts +14 -2
- package/components/data/list/utils/constants.d.ts +0 -1
- package/components/data/list/utils/constants.js +0 -2
- package/components/data/list/utils/list-helpers.d.ts +5 -1
- package/components/data/list/utils/list-helpers.js +10 -0
- package/components/data/pagination/components/PageSizeSelector.js +49 -155
- package/components/data/pagination/hooks/usePagination.js +24 -1
- package/components/data/table/components/RowCells.js +18 -4
- package/components/data/table/components/TableBody.js +5 -3
- package/components/data/table/components/TableDataRow.js +16 -3
- package/components/data/table/components/TableHeader.js +10 -8
- package/components/data/table/components/TablePanelHeading.js +15 -3
- package/components/data/table/hooks/useDynamicColumns.js +1 -1
- package/components/data/table/hooks/useResponsiveColumns.d.ts +1 -0
- package/components/data/table/hooks/useRowExpansion.js +41 -31
- package/components/data/table/hooks/useRowHandlers.js +0 -1
- package/components/data/table/hooks/useServerSideSorting.js +0 -1
- package/components/data/table/hooks/useTableColumns.js +17 -9
- package/components/data/table/hooks/useTableData.js +30 -2
- package/components/data/table/hooks/useTableEdit.js +0 -1
- package/components/data/table/index.d.ts +4 -0
- package/components/data/table/index.js +93 -47
- package/components/data/table/live-table/index.d.ts +1 -0
- package/components/data/table/live-table/index.js +0 -1
- package/components/data/table/props.d.ts +15 -2
- package/components/data/table/table-action/index.d.ts +1 -0
- package/components/data/table/table-column/index.d.ts +1 -0
- package/components/data/table/table-row/index.d.ts +1 -0
- package/components/data/table/table-row-action/index.d.ts +1 -0
- package/components/data/table/utils/buildSelectionColumns.d.ts +1 -1
- package/components/data/table/utils/buildSelectionColumns.js +95 -71
- package/components/data/table/utils/columnBuilder.d.ts +29 -2
- package/components/data/table/utils/columnBuilder.js +40 -26
- package/components/data/table/utils/columnWidthDistribution.d.ts +1 -1
- package/components/data/table/utils/columnWidthDistribution.js +14 -1
- package/components/data/table/utils/constants.d.ts +0 -4
- package/components/data/table/utils/constants.js +0 -7
- package/components/data/table/utils/dynamic-columns.d.ts +1 -1
- package/components/data/table/utils/dynamic-columns.js +3 -8
- package/components/data/table/utils/expansionColumn.d.ts +23 -0
- package/components/data/table/utils/expansionColumn.js +56 -0
- package/components/data/table/utils/index.d.ts +14 -2
- package/components/data/table/utils/index.js +45 -19
- package/components/dialogs/alert-dialog/index.d.ts +2 -0
- package/components/dialogs/confirm-dialog/index.d.ts +2 -0
- package/components/dialogs/dialog/index.d.ts +2 -0
- package/components/dialogs/dialog/index.js +3 -2
- package/components/dialogs/dialog-actions/index.d.ts +1 -0
- package/components/dialogs/dialog-body/index.d.ts +1 -0
- package/components/dialogs/dialog-content/index.d.ts +1 -0
- package/components/dialogs/dialog-header/index.d.ts +1 -0
- package/components/dialogs/dialog-header/index.js +11 -12
- package/components/dialogs/iframe-dialog/index.d.ts +2 -0
- package/components/dialogs/login-dialog/index.d.ts +4 -0
- package/components/dialogs/login-dialog/index.js +2 -1
- package/components/dialogs/login-dialog/props.d.ts +1 -0
- package/components/dialogs/page-dialog/index.d.ts +4 -0
- package/components/dialogs/page-dialog/index.js +2 -1
- package/components/dialogs/page-dialog/props.d.ts +1 -0
- package/components/form/button/index.d.ts +1 -0
- package/components/form/button/index.js +29 -33
- package/components/form/button-group/index.d.ts +1 -0
- package/components/input/calendar/index.d.ts +2 -0
- package/components/input/chips/index.d.ts +2 -0
- package/components/input/chips/index.js +9 -3
- package/components/input/chips/utils.d.ts +5 -0
- package/components/input/chips/utils.js +29 -0
- package/components/input/color-picker/index.d.ts +2 -0
- package/components/input/composite/index.d.ts +1 -0
- package/components/input/composite/index.js +1 -0
- package/components/input/currency/index.d.ts +2 -0
- package/components/input/default/checkbox/index.d.ts +6 -0
- package/components/input/default/checkbox/index.js +48 -18
- package/components/input/default/checkbox/props.d.ts +8 -0
- package/components/input/default/checkboxset/index.d.ts +2 -0
- package/components/input/default/radioset/index.d.ts +2 -0
- package/components/input/default/radioset/index.js +2 -1
- package/components/input/default/switch/index.d.ts +6 -0
- package/components/input/default/switch/index.js +36 -9
- package/components/input/default/switch/prop.d.ts +2 -0
- package/components/input/epoch/date/index.d.ts +1 -0
- package/components/input/epoch/datetime/index.d.ts +1 -0
- package/components/input/epoch/time/index.d.ts +1 -0
- package/components/input/fileupload/components/ListItems.d.ts +5 -1
- package/components/input/fileupload/components/ListItems.js +27 -5
- package/components/input/fileupload/components/MultiUpload.js +12 -1
- package/components/input/fileupload/components/SingleUpload.js +12 -1
- package/components/input/fileupload/index.d.ts +3 -0
- package/components/input/fileupload/index.js +11 -0
- package/components/input/fileupload/props.d.ts +10 -0
- package/components/input/number/index.d.ts +2 -0
- package/components/input/rating/index.d.ts +6 -0
- package/components/input/rating/index.js +10 -5
- package/components/input/rating/props.d.ts +8 -0
- package/components/input/select/index.d.ts +2 -0
- package/components/input/select/index.js +1 -2
- package/components/input/slider/index.d.ts +6 -0
- package/components/input/slider/index.js +19 -2
- package/components/input/slider/props.d.ts +2 -0
- package/components/input/text/index.d.ts +7 -1
- package/components/input/text/index.js +25 -6
- package/components/input/text/props.d.ts +8 -0
- package/components/input/textarea/index.d.ts +2 -0
- package/components/input/textarea/index.js +10 -5
- package/components/input/textarea/util.d.ts +1 -0
- package/components/input/textarea/util.js +17 -0
- package/components/input/upload/index.d.ts +2 -0
- package/components/navbar/index.d.ts +7 -0
- package/components/navbar/index.js +21 -7
- package/components/navbar/nav/index.d.ts +1 -0
- package/components/navbar/nav-item/index.d.ts +1 -0
- package/components/navigation/breadcrumb/index.d.ts +1 -0
- package/components/navigation/menu/index.d.ts +3 -1
- package/components/navigation/menu/index.js +22 -4
- package/components/navigation/menu/props.d.ts +1 -0
- package/components/navigation/popover/index.d.ts +1 -0
- package/components/navigation/popover/index.js +23 -9
- package/components/page/index.js +1 -1
- package/components/page/page-content/index.js +6 -2
- package/components/page/partial/index.d.ts +1 -0
- package/components/page/partial-container/index.js +2 -1
- package/components/prefab/index.js +3 -2
- package/components/prefab/props.d.ts +1 -0
- package/context/WidgetProvider.js +2 -1
- package/core/appstore.d.ts +10 -0
- package/core/appstore.js +9 -1
- package/core/constants/events.d.ts +3 -0
- package/core/constants/events.js +13 -1
- package/core/proxy-service.d.ts +1 -0
- package/core/proxy-service.js +54 -3
- package/core/util/index.d.ts +2 -0
- package/core/util/index.js +32 -1
- package/higherOrder/BasePage.js +106 -30
- package/higherOrder/props.d.ts +1 -0
- package/higherOrder/useActivePageReactivity.d.ts +21 -0
- package/higherOrder/useActivePageReactivity.js +57 -0
- package/higherOrder/withBaseWrapper.js +11 -7
- package/higherOrder/withRenderLogger.d.ts +15 -0
- package/higherOrder/withRenderLogger.js +53 -0
- package/hooks/useAuth.js +7 -1
- package/package-lock.json +273 -263
- package/package.json +4 -3
- package/runtime-dynamic/components/partial-content.js +3 -1
- package/runtime-dynamic/factories/dynamic-component.js +44 -8
- package/runtime-dynamic/factories/utils.js +7 -1
- package/runtime-dynamic/services/compile-render.js +2 -1
- package/runtime-dynamic/services/css-scoping.d.ts +2 -0
- package/runtime-dynamic/services/css-scoping.js +39 -20
- package/store/slices/i18nSlice.d.ts +2 -0
- package/store/slices/i18nSlice.js +3 -1
- package/types/index.d.ts +6 -0
- package/utils/attr.js +4 -1
- package/utils/custom-expression/parser.js +11 -8
- package/utils/svg-icon.d.ts +27 -0
- package/utils/svg-icon.js +75 -0
- package/utils/transformedDataset-utils.d.ts +3 -3
- package/utils/transformedDataset-utils.js +1 -2
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker-ai/react-runtime",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.326",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker-ai/react-runtime",
|
|
9
|
-
"version": "1.0.0-rc.
|
|
9
|
+
"version": "1.0.0-rc.326",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui-components/react": "1.0.0-alpha.8",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"@mui/x-date-pickers": "8.5.3",
|
|
29
29
|
"@reduxjs/toolkit": "2.9.1",
|
|
30
30
|
"@tanstack/react-table": "8.21.3",
|
|
31
|
-
"@wavemaker-ai/react-codegen": "1.0.0-rc.
|
|
32
|
-
"@wavemaker-ai/variables": "1.0.0-rc.
|
|
31
|
+
"@wavemaker-ai/react-codegen": "1.0.0-rc.326",
|
|
32
|
+
"@wavemaker-ai/variables": "1.0.0-rc.326",
|
|
33
33
|
"@wavemaker/nvd3": "1.8.16",
|
|
34
34
|
"axios": "1.15.1",
|
|
35
35
|
"d3": "7.8.5",
|
|
@@ -165,8 +165,8 @@
|
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
167
|
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
|
168
|
-
"version": "11.5.
|
|
169
|
-
"integrity": "sha512-
|
|
168
|
+
"version": "11.5.2",
|
|
169
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
170
170
|
"dev": true,
|
|
171
171
|
"license": "BlueOak-1.0.0",
|
|
172
172
|
"engines": {
|
|
@@ -556,8 +556,8 @@
|
|
|
556
556
|
"license": "CC0-1.0"
|
|
557
557
|
},
|
|
558
558
|
"node_modules/@csstools/color-helpers": {
|
|
559
|
-
"version": "6.0
|
|
560
|
-
"integrity": "sha512-
|
|
559
|
+
"version": "6.1.0",
|
|
560
|
+
"integrity": "sha512-064IFJdjTfUqnjpCVpMOdbr8FLQBhinbZj6yRv2An2E41O/pLEXqfFRWqGq/SxlE5PEUYTlvWsG2r8MswAVvkg==",
|
|
561
561
|
"dev": true,
|
|
562
562
|
"funding": [
|
|
563
563
|
{
|
|
@@ -598,8 +598,8 @@
|
|
|
598
598
|
}
|
|
599
599
|
},
|
|
600
600
|
"node_modules/@csstools/css-color-parser": {
|
|
601
|
-
"version": "4.1.
|
|
602
|
-
"integrity": "sha512-
|
|
601
|
+
"version": "4.1.9",
|
|
602
|
+
"integrity": "sha512-paQcIaOO53Rk5+YrBaBjm/SgrV4INImjo2BT1DtQRYr+XeTRbeAYlS+jxXp9drqvKmtFnWRJKIalDLhZZDu42A==",
|
|
603
603
|
"dev": true,
|
|
604
604
|
"funding": [
|
|
605
605
|
{
|
|
@@ -613,7 +613,7 @@
|
|
|
613
613
|
],
|
|
614
614
|
"license": "MIT",
|
|
615
615
|
"dependencies": {
|
|
616
|
-
"@csstools/color-helpers": "^6.0
|
|
616
|
+
"@csstools/color-helpers": "^6.1.0",
|
|
617
617
|
"@csstools/css-calc": "^3.2.1"
|
|
618
618
|
},
|
|
619
619
|
"engines": {
|
|
@@ -739,8 +739,8 @@
|
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
"node_modules/@emnapi/runtime": {
|
|
742
|
-
"version": "1.11.
|
|
743
|
-
"integrity": "sha512-
|
|
742
|
+
"version": "1.11.2",
|
|
743
|
+
"integrity": "sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==",
|
|
744
744
|
"license": "MIT",
|
|
745
745
|
"optional": true,
|
|
746
746
|
"dependencies": {
|
|
@@ -1384,8 +1384,8 @@
|
|
|
1384
1384
|
}
|
|
1385
1385
|
},
|
|
1386
1386
|
"node_modules/@eslint/eslintrc": {
|
|
1387
|
-
"version": "3.3.
|
|
1388
|
-
"integrity": "sha512-
|
|
1387
|
+
"version": "3.3.6",
|
|
1388
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
1389
1389
|
"dev": true,
|
|
1390
1390
|
"license": "MIT",
|
|
1391
1391
|
"dependencies": {
|
|
@@ -1395,7 +1395,7 @@
|
|
|
1395
1395
|
"globals": "^14.0.0",
|
|
1396
1396
|
"ignore": "^5.2.0",
|
|
1397
1397
|
"import-fresh": "^3.2.1",
|
|
1398
|
-
"js-yaml": "^4.
|
|
1398
|
+
"js-yaml": "^4.3.0",
|
|
1399
1399
|
"minimatch": "^3.1.5",
|
|
1400
1400
|
"strip-json-comments": "^3.1.1"
|
|
1401
1401
|
},
|
|
@@ -1407,8 +1407,8 @@
|
|
|
1407
1407
|
}
|
|
1408
1408
|
},
|
|
1409
1409
|
"node_modules/@eslint/js": {
|
|
1410
|
-
"version": "9.39.
|
|
1411
|
-
"integrity": "sha512-
|
|
1410
|
+
"version": "9.39.5",
|
|
1411
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
1412
1412
|
"dev": true,
|
|
1413
1413
|
"license": "MIT",
|
|
1414
1414
|
"engines": {
|
|
@@ -2967,13 +2967,13 @@
|
|
|
2967
2967
|
}
|
|
2968
2968
|
},
|
|
2969
2969
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
2970
|
-
"version": "1.1.
|
|
2971
|
-
"integrity": "sha512-
|
|
2970
|
+
"version": "1.1.6",
|
|
2971
|
+
"integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
|
|
2972
2972
|
"dev": true,
|
|
2973
2973
|
"license": "MIT",
|
|
2974
2974
|
"optional": true,
|
|
2975
2975
|
"dependencies": {
|
|
2976
|
-
"@tybys/wasm-util": "^0.10.
|
|
2976
|
+
"@tybys/wasm-util": "^0.10.3"
|
|
2977
2977
|
},
|
|
2978
2978
|
"funding": {
|
|
2979
2979
|
"type": "github",
|
|
@@ -3216,8 +3216,8 @@
|
|
|
3216
3216
|
}
|
|
3217
3217
|
},
|
|
3218
3218
|
"node_modules/@react-types/shared": {
|
|
3219
|
-
"version": "3.
|
|
3220
|
-
"integrity": "sha512-
|
|
3219
|
+
"version": "3.36.0",
|
|
3220
|
+
"integrity": "sha512-DkP/H0C2YjjS7gZWKNqOmU8a16qHPjQNdzMwmTq9SzplM6Iw0kVMTZ0OIoe6FOgGqa+FwMsE2QbPjh/n3g/jXQ==",
|
|
3221
3221
|
"license": "Apache-2.0",
|
|
3222
3222
|
"peerDependencies": {
|
|
3223
3223
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
@@ -3255,8 +3255,8 @@
|
|
|
3255
3255
|
"license": "MIT"
|
|
3256
3256
|
},
|
|
3257
3257
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3258
|
-
"version": "4.62.
|
|
3259
|
-
"integrity": "sha512-
|
|
3258
|
+
"version": "4.62.2",
|
|
3259
|
+
"integrity": "sha512-6o7ZLZK+BeenkZCFNDXqpbjw9bD6nuWonvS/lwQJp7NoVVxm6p3qE7qQ5jGuBjiFsgvqjD8mZAU5oWxTmbOeOg==",
|
|
3260
3260
|
"cpu": [
|
|
3261
3261
|
"arm"
|
|
3262
3262
|
],
|
|
@@ -3268,8 +3268,8 @@
|
|
|
3268
3268
|
]
|
|
3269
3269
|
},
|
|
3270
3270
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3271
|
-
"version": "4.62.
|
|
3272
|
-
"integrity": "sha512-
|
|
3271
|
+
"version": "4.62.2",
|
|
3272
|
+
"integrity": "sha512-BaH7BllCACHoH1LguOU56UItGfUWjujlO65kS9LAodViaN4bwIKd7oeW/ZHJ/4ljr/7MIiENnNy3HJ0zXv8Zkw==",
|
|
3273
3273
|
"cpu": [
|
|
3274
3274
|
"arm64"
|
|
3275
3275
|
],
|
|
@@ -3281,8 +3281,8 @@
|
|
|
3281
3281
|
]
|
|
3282
3282
|
},
|
|
3283
3283
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3284
|
-
"version": "4.62.
|
|
3285
|
-
"integrity": "sha512-
|
|
3284
|
+
"version": "4.62.2",
|
|
3285
|
+
"integrity": "sha512-v39RCCvj4He82I9sFmk+M1VZ0PLM9sfsLVikjfx2hYBNALhrrOR2D3JjQA6AhlaSOgcR+RzrKY7e1+bT6SUO/A==",
|
|
3286
3286
|
"cpu": [
|
|
3287
3287
|
"arm64"
|
|
3288
3288
|
],
|
|
@@ -3294,8 +3294,8 @@
|
|
|
3294
3294
|
]
|
|
3295
3295
|
},
|
|
3296
3296
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3297
|
-
"version": "4.62.
|
|
3298
|
-
"integrity": "sha512-
|
|
3297
|
+
"version": "4.62.2",
|
|
3298
|
+
"integrity": "sha512-yl0y2vq3S3lHeuXhEdss6TWfKW8vkujImO12tn4ZkG/4oghr09LvdYm2RElVjokTQiUvDUGXLGsYeLqUMCKpGA==",
|
|
3299
3299
|
"cpu": [
|
|
3300
3300
|
"x64"
|
|
3301
3301
|
],
|
|
@@ -3307,8 +3307,8 @@
|
|
|
3307
3307
|
]
|
|
3308
3308
|
},
|
|
3309
3309
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3310
|
-
"version": "4.62.
|
|
3311
|
-
"integrity": "sha512-
|
|
3310
|
+
"version": "4.62.2",
|
|
3311
|
+
"integrity": "sha512-tT4pvt4qXD+vEoezupCWi+a1F0vvDiksiHc+PxRlYTOH1I6/X4id9jPxTP+Fg+545euaFT1jJVs4CEdHZAU1vw==",
|
|
3312
3312
|
"cpu": [
|
|
3313
3313
|
"arm64"
|
|
3314
3314
|
],
|
|
@@ -3320,8 +3320,8 @@
|
|
|
3320
3320
|
]
|
|
3321
3321
|
},
|
|
3322
3322
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3323
|
-
"version": "4.62.
|
|
3324
|
-
"integrity": "sha512-
|
|
3323
|
+
"version": "4.62.2",
|
|
3324
|
+
"integrity": "sha512-6nU5F2wCW+qvCBhTn1pdIU3bzsIoF7EUwsCDRxilWGprQR6yd508YnH9+OKFCwpfS8pjZqDUmnCAr7exax0XCg==",
|
|
3325
3325
|
"cpu": [
|
|
3326
3326
|
"x64"
|
|
3327
3327
|
],
|
|
@@ -3333,8 +3333,8 @@
|
|
|
3333
3333
|
]
|
|
3334
3334
|
},
|
|
3335
3335
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3336
|
-
"version": "4.62.
|
|
3337
|
-
"integrity": "sha512-
|
|
3336
|
+
"version": "4.62.2",
|
|
3337
|
+
"integrity": "sha512-n1GJHPOvpIfhi3TmrCeh6S6URt9BFCt0KQE3qvexyGCTAKpR4Lg+eWvNZEqu7epxwus/8ElT3hacYEucm49SZg==",
|
|
3338
3338
|
"cpu": [
|
|
3339
3339
|
"arm"
|
|
3340
3340
|
],
|
|
@@ -3346,8 +3346,8 @@
|
|
|
3346
3346
|
]
|
|
3347
3347
|
},
|
|
3348
3348
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3349
|
-
"version": "4.62.
|
|
3350
|
-
"integrity": "sha512-
|
|
3349
|
+
"version": "4.62.2",
|
|
3350
|
+
"integrity": "sha512-JqgflS8wEB+UXV/vS1RpRbifGBeN4D5lz8D8oOFbFZw4vedvdOgCFAjfBmIMdW3yL10XpQQ0Ambepw6MXrhOnA==",
|
|
3351
3351
|
"cpu": [
|
|
3352
3352
|
"arm"
|
|
3353
3353
|
],
|
|
@@ -3359,8 +3359,8 @@
|
|
|
3359
3359
|
]
|
|
3360
3360
|
},
|
|
3361
3361
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3362
|
-
"version": "4.62.
|
|
3363
|
-
"integrity": "sha512-
|
|
3362
|
+
"version": "4.62.2",
|
|
3363
|
+
"integrity": "sha512-wnFJkogWvN4jm/hQRF2UBaeUmk20j5+DmHvoyWii2b8HJDyvz1MF2OU/6ynXt2KR63rbZLWkFpoytpdc/yBuSA==",
|
|
3364
3364
|
"cpu": [
|
|
3365
3365
|
"arm64"
|
|
3366
3366
|
],
|
|
@@ -3372,8 +3372,8 @@
|
|
|
3372
3372
|
]
|
|
3373
3373
|
},
|
|
3374
3374
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3375
|
-
"version": "4.62.
|
|
3376
|
-
"integrity": "sha512-
|
|
3375
|
+
"version": "4.62.2",
|
|
3376
|
+
"integrity": "sha512-HVu2bp0zhvJ8xHEV9+UUs7S90VadmBSY3LcIMvozbPo4AuMGDWlz3ymHLHZPX4hR67TKTt8Qp5PJ5RBg/i+RMQ==",
|
|
3377
3377
|
"cpu": [
|
|
3378
3378
|
"arm64"
|
|
3379
3379
|
],
|
|
@@ -3385,8 +3385,8 @@
|
|
|
3385
3385
|
]
|
|
3386
3386
|
},
|
|
3387
3387
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3388
|
-
"version": "4.62.
|
|
3389
|
-
"integrity": "sha512-
|
|
3388
|
+
"version": "4.62.2",
|
|
3389
|
+
"integrity": "sha512-mQqqAV8QaoSgr9I2fKDLY2BAVvmKjWoGiu/cSYQonsLvtqwEn1E4QYfnCOcp5zoEqNhsDYin1s6jx/VJmrxlZg==",
|
|
3390
3390
|
"cpu": [
|
|
3391
3391
|
"loong64"
|
|
3392
3392
|
],
|
|
@@ -3398,8 +3398,8 @@
|
|
|
3398
3398
|
]
|
|
3399
3399
|
},
|
|
3400
3400
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3401
|
-
"version": "4.62.
|
|
3402
|
-
"integrity": "sha512-
|
|
3401
|
+
"version": "4.62.2",
|
|
3402
|
+
"integrity": "sha512-IxKLoxCQ2IWi6bT2akyDUBGsOImDKB+sPp4EsTmwFQ/fMwpCKm8uLSSgP/Kx/QYUgKis6SEZ5/Nlhup0DIA0PQ==",
|
|
3403
3403
|
"cpu": [
|
|
3404
3404
|
"loong64"
|
|
3405
3405
|
],
|
|
@@ -3411,8 +3411,8 @@
|
|
|
3411
3411
|
]
|
|
3412
3412
|
},
|
|
3413
3413
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3414
|
-
"version": "4.62.
|
|
3415
|
-
"integrity": "sha512-
|
|
3414
|
+
"version": "4.62.2",
|
|
3415
|
+
"integrity": "sha512-Mk5ha2RQSgyFfmYYLkBpPnUk8D8FriBxesO1u9O75X0mHgXL1UQcH5Itl2lurWL2tj0RxV9b9tJgipac0hRY9A==",
|
|
3416
3416
|
"cpu": [
|
|
3417
3417
|
"ppc64"
|
|
3418
3418
|
],
|
|
@@ -3424,8 +3424,8 @@
|
|
|
3424
3424
|
]
|
|
3425
3425
|
},
|
|
3426
3426
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3427
|
-
"version": "4.62.
|
|
3428
|
-
"integrity": "sha512-
|
|
3427
|
+
"version": "4.62.2",
|
|
3428
|
+
"integrity": "sha512-CjvEnqJL/0/TQ3TXX3OPIJ/kmBellrWd4heXUmHeJlTnmwjKpSJzoehLaL6Xk0ZnMHBu9dZuFADNOrtjF4v+2w==",
|
|
3429
3429
|
"cpu": [
|
|
3430
3430
|
"ppc64"
|
|
3431
3431
|
],
|
|
@@ -3437,8 +3437,8 @@
|
|
|
3437
3437
|
]
|
|
3438
3438
|
},
|
|
3439
3439
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3440
|
-
"version": "4.62.
|
|
3441
|
-
"integrity": "sha512-
|
|
3440
|
+
"version": "4.62.2",
|
|
3441
|
+
"integrity": "sha512-1SiZbzwdkaDURsew/tSOrooKiYy7EQGT6m8ufavAi9NEyQb/6VuIxFXAL1fqa4iZe3g4NbNk4P7J32z2tw5Mgg==",
|
|
3442
3442
|
"cpu": [
|
|
3443
3443
|
"riscv64"
|
|
3444
3444
|
],
|
|
@@ -3450,8 +3450,8 @@
|
|
|
3450
3450
|
]
|
|
3451
3451
|
},
|
|
3452
3452
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3453
|
-
"version": "4.62.
|
|
3454
|
-
"integrity": "sha512-
|
|
3453
|
+
"version": "4.62.2",
|
|
3454
|
+
"integrity": "sha512-nQts12zJ3NQRoE6uYljOH89v7szzLDvG2JD/vsX+vGXU8w/At1GowTZ5/7qeFQ8m7L55rpR8Okugnuo5bgjy2Q==",
|
|
3455
3455
|
"cpu": [
|
|
3456
3456
|
"riscv64"
|
|
3457
3457
|
],
|
|
@@ -3463,8 +3463,8 @@
|
|
|
3463
3463
|
]
|
|
3464
3464
|
},
|
|
3465
3465
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3466
|
-
"version": "4.62.
|
|
3467
|
-
"integrity": "sha512-
|
|
3466
|
+
"version": "4.62.2",
|
|
3467
|
+
"integrity": "sha512-E9/ll019jhPIJgpzfZoIkBGhcz+kKNgVWYRY0zr9srBdPPFVpvOKW8VaJKUbeK+eZXyQF9ltME+Kk6affeaPgg==",
|
|
3468
3468
|
"cpu": [
|
|
3469
3469
|
"s390x"
|
|
3470
3470
|
],
|
|
@@ -3476,8 +3476,8 @@
|
|
|
3476
3476
|
]
|
|
3477
3477
|
},
|
|
3478
3478
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3479
|
-
"version": "4.62.
|
|
3480
|
-
"integrity": "sha512-
|
|
3479
|
+
"version": "4.62.2",
|
|
3480
|
+
"integrity": "sha512-5BqxR/pshjey51iliyzTD5Xi3EN0aLmQ2lZ3lvefVV9c82BvrLo2/6OT55iifpWBufs6kdwWbuOKS841DrmK9A==",
|
|
3481
3481
|
"cpu": [
|
|
3482
3482
|
"x64"
|
|
3483
3483
|
],
|
|
@@ -3489,8 +3489,8 @@
|
|
|
3489
3489
|
]
|
|
3490
3490
|
},
|
|
3491
3491
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3492
|
-
"version": "4.62.
|
|
3493
|
-
"integrity": "sha512-
|
|
3492
|
+
"version": "4.62.2",
|
|
3493
|
+
"integrity": "sha512-uNN83XxQrRAh/w0/pmAfibcwyb6YWt4gP+dpnQKPVJshAloQ785ii8CT8ZCIxkGg9opVsvAlGhFitSm6D1Jjpg==",
|
|
3494
3494
|
"cpu": [
|
|
3495
3495
|
"x64"
|
|
3496
3496
|
],
|
|
@@ -3502,8 +3502,8 @@
|
|
|
3502
3502
|
]
|
|
3503
3503
|
},
|
|
3504
3504
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3505
|
-
"version": "4.62.
|
|
3506
|
-
"integrity": "sha512-
|
|
3505
|
+
"version": "4.62.2",
|
|
3506
|
+
"integrity": "sha512-srjEIxSH3LRnJN6THczDHWQplqEMFiAJrTab0msUryh9kwNpkICf3Ea6q6MN/2cZwRFUNx5w+h6Hpi4QuHS6Zg==",
|
|
3507
3507
|
"cpu": [
|
|
3508
3508
|
"x64"
|
|
3509
3509
|
],
|
|
@@ -3515,8 +3515,8 @@
|
|
|
3515
3515
|
]
|
|
3516
3516
|
},
|
|
3517
3517
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3518
|
-
"version": "4.62.
|
|
3519
|
-
"integrity": "sha512-
|
|
3518
|
+
"version": "4.62.2",
|
|
3519
|
+
"integrity": "sha512-8hOJnxgbyObnCm5AlRA3A931xX19xq80RjVTKgJOvEKWqJruP/Uf12IbAOaDjjEXYRewwHLfmF0YRIdK3OwKWA==",
|
|
3520
3520
|
"cpu": [
|
|
3521
3521
|
"arm64"
|
|
3522
3522
|
],
|
|
@@ -3528,8 +3528,8 @@
|
|
|
3528
3528
|
]
|
|
3529
3529
|
},
|
|
3530
3530
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3531
|
-
"version": "4.62.
|
|
3532
|
-
"integrity": "sha512-
|
|
3531
|
+
"version": "4.62.2",
|
|
3532
|
+
"integrity": "sha512-mmF4AY1i0hG/bLWUctUq59gtmgaSIRa3cu/A3JFRp/sCNEme2bgDEiDS22P9FbnJB8NJNF4jPJiSP5RHQpUTDg==",
|
|
3533
3533
|
"cpu": [
|
|
3534
3534
|
"arm64"
|
|
3535
3535
|
],
|
|
@@ -3541,8 +3541,8 @@
|
|
|
3541
3541
|
]
|
|
3542
3542
|
},
|
|
3543
3543
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3544
|
-
"version": "4.62.
|
|
3545
|
-
"integrity": "sha512-
|
|
3544
|
+
"version": "4.62.2",
|
|
3545
|
+
"integrity": "sha512-DZgkknc6jhHrk46V25vbAM0zZkyP0nSDkJB8/dRkLTxv470dOmWDqGoEJl/9A0dFfS7yE3REOwNDxpHwSLSt0Q==",
|
|
3546
3546
|
"cpu": [
|
|
3547
3547
|
"ia32"
|
|
3548
3548
|
],
|
|
@@ -3554,8 +3554,8 @@
|
|
|
3554
3554
|
]
|
|
3555
3555
|
},
|
|
3556
3556
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3557
|
-
"version": "4.62.
|
|
3558
|
-
"integrity": "sha512-
|
|
3557
|
+
"version": "4.62.2",
|
|
3558
|
+
"integrity": "sha512-T6xr6ucWSFto+VGajA8YH26LdpHRuP4YLHEKAtCWvJDOlnmWcDZVCI2Jmjr+IFHDlt2zRaTAKE4tfjTaWLgJBg==",
|
|
3559
3559
|
"cpu": [
|
|
3560
3560
|
"x64"
|
|
3561
3561
|
],
|
|
@@ -3567,8 +3567,8 @@
|
|
|
3567
3567
|
]
|
|
3568
3568
|
},
|
|
3569
3569
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3570
|
-
"version": "4.62.
|
|
3571
|
-
"integrity": "sha512-
|
|
3570
|
+
"version": "4.62.2",
|
|
3571
|
+
"integrity": "sha512-BfzEnDJOt9T8M989/lA37EcJgat01wLRnoi5dQf3QzOH7jzpqTAzdDbVfRljVr5r+jzKqpbHeyOfAaXxAd0PAA==",
|
|
3572
3572
|
"cpu": [
|
|
3573
3573
|
"x64"
|
|
3574
3574
|
],
|
|
@@ -3597,8 +3597,8 @@
|
|
|
3597
3597
|
"license": "MIT"
|
|
3598
3598
|
},
|
|
3599
3599
|
"node_modules/@sinclair/typebox": {
|
|
3600
|
-
"version": "0.34.
|
|
3601
|
-
"integrity": "sha512-
|
|
3600
|
+
"version": "0.34.51",
|
|
3601
|
+
"integrity": "sha512-Nu4sNPT4G3QgAvxmdUCR/NBmsi23F2tEIcbMOZJVHS+qEgk+rmXxQikEeoKFyaX+UEggAoTvHUvIlj8MfYPzXQ==",
|
|
3602
3602
|
"dev": true,
|
|
3603
3603
|
"license": "MIT"
|
|
3604
3604
|
},
|
|
@@ -3747,8 +3747,8 @@
|
|
|
3747
3747
|
}
|
|
3748
3748
|
},
|
|
3749
3749
|
"node_modules/@tybys/wasm-util": {
|
|
3750
|
-
"version": "0.10.
|
|
3751
|
-
"integrity": "sha512-
|
|
3750
|
+
"version": "0.10.3",
|
|
3751
|
+
"integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
|
|
3752
3752
|
"dev": true,
|
|
3753
3753
|
"license": "MIT",
|
|
3754
3754
|
"optional": true,
|
|
@@ -3999,8 +3999,8 @@
|
|
|
3999
3999
|
"license": "MIT"
|
|
4000
4000
|
},
|
|
4001
4001
|
"node_modules/@types/d3-random": {
|
|
4002
|
-
"version": "3.0.
|
|
4003
|
-
"integrity": "sha512-
|
|
4002
|
+
"version": "3.0.4",
|
|
4003
|
+
"integrity": "sha512-UHYId5WTCx4L4YNel7NU00XUXXgvgpgZOvp10PuvsQENjMDXhh2RyFc0KBjO7B45ne4Ha1yVH7ii0vnzKkuzWA==",
|
|
4004
4004
|
"dev": true,
|
|
4005
4005
|
"license": "MIT"
|
|
4006
4006
|
},
|
|
@@ -4309,16 +4309,16 @@
|
|
|
4309
4309
|
"license": "MIT"
|
|
4310
4310
|
},
|
|
4311
4311
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4312
|
-
"version": "8.
|
|
4313
|
-
"integrity": "sha512-
|
|
4312
|
+
"version": "8.63.0",
|
|
4313
|
+
"integrity": "sha512-rvwSgqT+DHpWdzfSzPatRLm02a0GlESt++9iy3hLCDY4BgkaLcl8LBi9Yh7XGFBpwcBE/K3024QuXWTpbz4FfQ==",
|
|
4314
4314
|
"dev": true,
|
|
4315
4315
|
"license": "MIT",
|
|
4316
4316
|
"dependencies": {
|
|
4317
4317
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4318
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4319
|
-
"@typescript-eslint/type-utils": "8.
|
|
4320
|
-
"@typescript-eslint/utils": "8.
|
|
4321
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4318
|
+
"@typescript-eslint/scope-manager": "8.63.0",
|
|
4319
|
+
"@typescript-eslint/type-utils": "8.63.0",
|
|
4320
|
+
"@typescript-eslint/utils": "8.63.0",
|
|
4321
|
+
"@typescript-eslint/visitor-keys": "8.63.0",
|
|
4322
4322
|
"ignore": "^7.0.5",
|
|
4323
4323
|
"natural-compare": "^1.4.0",
|
|
4324
4324
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4331,14 +4331,14 @@
|
|
|
4331
4331
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4332
4332
|
},
|
|
4333
4333
|
"peerDependencies": {
|
|
4334
|
-
"@typescript-eslint/parser": "^8.
|
|
4334
|
+
"@typescript-eslint/parser": "^8.63.0",
|
|
4335
4335
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4336
4336
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4337
4337
|
}
|
|
4338
4338
|
},
|
|
4339
4339
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
4340
|
-
"version": "7.0.
|
|
4341
|
-
"integrity": "sha512-
|
|
4340
|
+
"version": "7.0.6",
|
|
4341
|
+
"integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
|
|
4342
4342
|
"dev": true,
|
|
4343
4343
|
"license": "MIT",
|
|
4344
4344
|
"engines": {
|
|
@@ -4346,15 +4346,15 @@
|
|
|
4346
4346
|
}
|
|
4347
4347
|
},
|
|
4348
4348
|
"node_modules/@typescript-eslint/parser": {
|
|
4349
|
-
"version": "8.
|
|
4350
|
-
"integrity": "sha512-
|
|
4349
|
+
"version": "8.63.0",
|
|
4350
|
+
"integrity": "sha512-gwh4gvvlaVDKKxyfxMG+Gnu1u9X0OQBwyGLkbwB65dIzBKnxeRiJlNFqlI3zwVhNXJIs6qV7mlFCn/BIajlVig==",
|
|
4351
4351
|
"dev": true,
|
|
4352
4352
|
"license": "MIT",
|
|
4353
4353
|
"dependencies": {
|
|
4354
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4355
|
-
"@typescript-eslint/types": "8.
|
|
4356
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4357
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4354
|
+
"@typescript-eslint/scope-manager": "8.63.0",
|
|
4355
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4356
|
+
"@typescript-eslint/typescript-estree": "8.63.0",
|
|
4357
|
+
"@typescript-eslint/visitor-keys": "8.63.0",
|
|
4358
4358
|
"debug": "^4.4.3"
|
|
4359
4359
|
},
|
|
4360
4360
|
"engines": {
|
|
@@ -4370,13 +4370,13 @@
|
|
|
4370
4370
|
}
|
|
4371
4371
|
},
|
|
4372
4372
|
"node_modules/@typescript-eslint/project-service": {
|
|
4373
|
-
"version": "8.
|
|
4374
|
-
"integrity": "sha512-
|
|
4373
|
+
"version": "8.63.0",
|
|
4374
|
+
"integrity": "sha512-e5dh0/UI0ok53AlZ5wRkXCB32z/f2jUZqPR/ygAw5WYaSw8j9EoJWlS7wQjr/dmOaqWjnPIn2m+HhVPCMWGZVQ==",
|
|
4375
4375
|
"dev": true,
|
|
4376
4376
|
"license": "MIT",
|
|
4377
4377
|
"dependencies": {
|
|
4378
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4379
|
-
"@typescript-eslint/types": "^8.
|
|
4378
|
+
"@typescript-eslint/tsconfig-utils": "^8.63.0",
|
|
4379
|
+
"@typescript-eslint/types": "^8.63.0",
|
|
4380
4380
|
"debug": "^4.4.3"
|
|
4381
4381
|
},
|
|
4382
4382
|
"engines": {
|
|
@@ -4391,13 +4391,13 @@
|
|
|
4391
4391
|
}
|
|
4392
4392
|
},
|
|
4393
4393
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4394
|
-
"version": "8.
|
|
4395
|
-
"integrity": "sha512-
|
|
4394
|
+
"version": "8.63.0",
|
|
4395
|
+
"integrity": "sha512-uUyfMWCnDSN8bCpcrY8nGP2BLkQ9Xn0GsipcONcpIDWhwhO4ZSyHvyS14U3X75mzxWxL3I2UZIrenTzdzcJO8A==",
|
|
4396
4396
|
"dev": true,
|
|
4397
4397
|
"license": "MIT",
|
|
4398
4398
|
"dependencies": {
|
|
4399
|
-
"@typescript-eslint/types": "8.
|
|
4400
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4399
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4400
|
+
"@typescript-eslint/visitor-keys": "8.63.0"
|
|
4401
4401
|
},
|
|
4402
4402
|
"engines": {
|
|
4403
4403
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4408,8 +4408,8 @@
|
|
|
4408
4408
|
}
|
|
4409
4409
|
},
|
|
4410
4410
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4411
|
-
"version": "8.
|
|
4412
|
-
"integrity": "sha512-
|
|
4411
|
+
"version": "8.63.0",
|
|
4412
|
+
"integrity": "sha512-sUAbkulqBAsncKnbRP3+7CtQFRKicexnj7ZwNC6ddCR7EmrXvjvdCYMJbUIqMd6lwoEriZjwLo08aS5tSjVMHg==",
|
|
4413
4413
|
"dev": true,
|
|
4414
4414
|
"license": "MIT",
|
|
4415
4415
|
"engines": {
|
|
@@ -4424,14 +4424,14 @@
|
|
|
4424
4424
|
}
|
|
4425
4425
|
},
|
|
4426
4426
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4427
|
-
"version": "8.
|
|
4428
|
-
"integrity": "sha512-
|
|
4427
|
+
"version": "8.63.0",
|
|
4428
|
+
"integrity": "sha512-Nzzh/OGxVCOjObjaj1CQF2RUasyYy2Jfuh+zZ3PjLzG2fYRriAiZLib9UKtO+CpQAS3YHiAS+ckZDclwqI1TPA==",
|
|
4429
4429
|
"dev": true,
|
|
4430
4430
|
"license": "MIT",
|
|
4431
4431
|
"dependencies": {
|
|
4432
|
-
"@typescript-eslint/types": "8.
|
|
4433
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4434
|
-
"@typescript-eslint/utils": "8.
|
|
4432
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4433
|
+
"@typescript-eslint/typescript-estree": "8.63.0",
|
|
4434
|
+
"@typescript-eslint/utils": "8.63.0",
|
|
4435
4435
|
"debug": "^4.4.3",
|
|
4436
4436
|
"ts-api-utils": "^2.5.0"
|
|
4437
4437
|
},
|
|
@@ -4448,8 +4448,8 @@
|
|
|
4448
4448
|
}
|
|
4449
4449
|
},
|
|
4450
4450
|
"node_modules/@typescript-eslint/types": {
|
|
4451
|
-
"version": "8.
|
|
4452
|
-
"integrity": "sha512-
|
|
4451
|
+
"version": "8.63.0",
|
|
4452
|
+
"integrity": "sha512-xyLtl9DUBBFrcJS4x2pIqGLH68/tC2uOa4Z7pUteW09D3bXnnXUom4dyPikzWgB7llmIc1zoeI3aoUdC4rPK/Q==",
|
|
4453
4453
|
"dev": true,
|
|
4454
4454
|
"license": "MIT",
|
|
4455
4455
|
"engines": {
|
|
@@ -4461,15 +4461,15 @@
|
|
|
4461
4461
|
}
|
|
4462
4462
|
},
|
|
4463
4463
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4464
|
-
"version": "8.
|
|
4465
|
-
"integrity": "sha512-
|
|
4464
|
+
"version": "8.63.0",
|
|
4465
|
+
"integrity": "sha512-ygBkU+B7ex5UI/gKhaqexWev79uISfIv7XQCRNYO/jmD8rGLPyWLAb3KMRT6nd8Gt9bmUBi9+iX6tBdYfOY81Q==",
|
|
4466
4466
|
"dev": true,
|
|
4467
4467
|
"license": "MIT",
|
|
4468
4468
|
"dependencies": {
|
|
4469
|
-
"@typescript-eslint/project-service": "8.
|
|
4470
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4471
|
-
"@typescript-eslint/types": "8.
|
|
4472
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4469
|
+
"@typescript-eslint/project-service": "8.63.0",
|
|
4470
|
+
"@typescript-eslint/tsconfig-utils": "8.63.0",
|
|
4471
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4472
|
+
"@typescript-eslint/visitor-keys": "8.63.0",
|
|
4473
4473
|
"debug": "^4.4.3",
|
|
4474
4474
|
"minimatch": "^10.2.2",
|
|
4475
4475
|
"semver": "^7.7.3",
|
|
@@ -4497,8 +4497,8 @@
|
|
|
4497
4497
|
}
|
|
4498
4498
|
},
|
|
4499
4499
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4500
|
-
"version": "5.0.
|
|
4501
|
-
"integrity": "sha512-
|
|
4500
|
+
"version": "5.0.7",
|
|
4501
|
+
"integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
|
|
4502
4502
|
"dev": true,
|
|
4503
4503
|
"license": "MIT",
|
|
4504
4504
|
"dependencies": {
|
|
@@ -4524,8 +4524,8 @@
|
|
|
4524
4524
|
}
|
|
4525
4525
|
},
|
|
4526
4526
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
|
4527
|
-
"version": "7.8.
|
|
4528
|
-
"integrity": "sha512-
|
|
4527
|
+
"version": "7.8.5",
|
|
4528
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
4529
4529
|
"dev": true,
|
|
4530
4530
|
"license": "ISC",
|
|
4531
4531
|
"bin": {
|
|
@@ -4536,15 +4536,15 @@
|
|
|
4536
4536
|
}
|
|
4537
4537
|
},
|
|
4538
4538
|
"node_modules/@typescript-eslint/utils": {
|
|
4539
|
-
"version": "8.
|
|
4540
|
-
"integrity": "sha512-
|
|
4539
|
+
"version": "8.63.0",
|
|
4540
|
+
"integrity": "sha512-fUKaeAvrTuQg/Tgt3nliAUSZHJM6DlCcfyEmxCvlX8kieWSStBX+5O5Fnidtc3i2JrH+9c/GL4RY2iasd/GPTA==",
|
|
4541
4541
|
"dev": true,
|
|
4542
4542
|
"license": "MIT",
|
|
4543
4543
|
"dependencies": {
|
|
4544
4544
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4545
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4546
|
-
"@typescript-eslint/types": "8.
|
|
4547
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4545
|
+
"@typescript-eslint/scope-manager": "8.63.0",
|
|
4546
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4547
|
+
"@typescript-eslint/typescript-estree": "8.63.0"
|
|
4548
4548
|
},
|
|
4549
4549
|
"engines": {
|
|
4550
4550
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4559,12 +4559,12 @@
|
|
|
4559
4559
|
}
|
|
4560
4560
|
},
|
|
4561
4561
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4562
|
-
"version": "8.
|
|
4563
|
-
"integrity": "sha512-
|
|
4562
|
+
"version": "8.63.0",
|
|
4563
|
+
"integrity": "sha512-UexrHGnGTpbuQHct2ExOc2ZcFbGUS9FOesCxxqdBGcpI1BxYu/LZ6U8Aq6/72XtF/qRBk9nhuGHFJIXXMhPMdw==",
|
|
4564
4564
|
"dev": true,
|
|
4565
4565
|
"license": "MIT",
|
|
4566
4566
|
"dependencies": {
|
|
4567
|
-
"@typescript-eslint/types": "8.
|
|
4567
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4568
4568
|
"eslint-visitor-keys": "^5.0.0"
|
|
4569
4569
|
},
|
|
4570
4570
|
"engines": {
|
|
@@ -4984,8 +4984,8 @@
|
|
|
4984
4984
|
}
|
|
4985
4985
|
},
|
|
4986
4986
|
"node_modules/@vitest/pretty-format": {
|
|
4987
|
-
"version": "3.2.
|
|
4988
|
-
"integrity": "sha512-
|
|
4987
|
+
"version": "3.2.7",
|
|
4988
|
+
"integrity": "sha512-KUHlwqVu0sRlhCdyPdQ/wBoTfRahjUky1MubOmYw9fWfIZy1gNoHpuaaQBPAaMaVYdQYHJLurzj8ECCj5OwTqA==",
|
|
4989
4989
|
"dev": true,
|
|
4990
4990
|
"license": "MIT",
|
|
4991
4991
|
"dependencies": {
|
|
@@ -5074,8 +5074,8 @@
|
|
|
5074
5074
|
}
|
|
5075
5075
|
},
|
|
5076
5076
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5077
|
-
"version": "1.0.0-rc.
|
|
5078
|
-
"integrity": "sha512-
|
|
5077
|
+
"version": "1.0.0-rc.326",
|
|
5078
|
+
"integrity": "sha512-KSlbZdNerxfUXy9z8DeB5SOvU8hapDn0SWLB2vXmZGe64HsD6nxZ2RK3Wu25ZVSfmvenJfOGpqbLvx6wTfK9nw==",
|
|
5079
5079
|
"license": "ISC",
|
|
5080
5080
|
"dependencies": {
|
|
5081
5081
|
"@angular/compiler": "12.2.1",
|
|
@@ -5357,8 +5357,8 @@
|
|
|
5357
5357
|
}
|
|
5358
5358
|
},
|
|
5359
5359
|
"node_modules/@wavemaker-ai/variables": {
|
|
5360
|
-
"version": "1.0.0-rc.
|
|
5361
|
-
"integrity": "sha512-
|
|
5360
|
+
"version": "1.0.0-rc.326",
|
|
5361
|
+
"integrity": "sha512-c3T8Eq/X2h5hnb4GU2IkANxBf2uMUH9QHVILLsShoYVnMoee+huuffRzbMp3/isRBnDzG8vsW/qVqoMCPw8SoA==",
|
|
5362
5362
|
"license": "ISC",
|
|
5363
5363
|
"dependencies": {
|
|
5364
5364
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5850,8 +5850,8 @@
|
|
|
5850
5850
|
}
|
|
5851
5851
|
},
|
|
5852
5852
|
"node_modules/bare-fs": {
|
|
5853
|
-
"version": "4.7.
|
|
5854
|
-
"integrity": "sha512-
|
|
5853
|
+
"version": "4.7.4",
|
|
5854
|
+
"integrity": "sha512-y1kC+ffIx/tPLdTE693uNjHfzTfr+ravR5tvWlMXe25nELbkqV400S71qHDwbkAQ1FVEZobB1NFRzFbCCcyBCQ==",
|
|
5855
5855
|
"license": "Apache-2.0",
|
|
5856
5856
|
"dependencies": {
|
|
5857
5857
|
"bare-events": "^2.5.4",
|
|
@@ -5872,21 +5872,10 @@
|
|
|
5872
5872
|
}
|
|
5873
5873
|
}
|
|
5874
5874
|
},
|
|
5875
|
-
"node_modules/bare-os": {
|
|
5876
|
-
"version": "3.9.1",
|
|
5877
|
-
"integrity": "sha512-6M5XjcnsygQNPMCMPXSK379xrJFiZ/AEMNBmFEmQW8d/789VQATvriyi5r0HYTL9TkQ26rn3kgdTG3aisbrXkQ==",
|
|
5878
|
-
"license": "Apache-2.0",
|
|
5879
|
-
"engines": {
|
|
5880
|
-
"bare": ">=1.14.0"
|
|
5881
|
-
}
|
|
5882
|
-
},
|
|
5883
5875
|
"node_modules/bare-path": {
|
|
5884
|
-
"version": "3.
|
|
5885
|
-
"integrity": "sha512-
|
|
5886
|
-
"license": "Apache-2.0"
|
|
5887
|
-
"dependencies": {
|
|
5888
|
-
"bare-os": "^3.0.1"
|
|
5889
|
-
}
|
|
5876
|
+
"version": "3.1.1",
|
|
5877
|
+
"integrity": "sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==",
|
|
5878
|
+
"license": "Apache-2.0"
|
|
5890
5879
|
},
|
|
5891
5880
|
"node_modules/bare-stream": {
|
|
5892
5881
|
"version": "2.13.3",
|
|
@@ -5942,8 +5931,8 @@
|
|
|
5942
5931
|
"license": "MIT"
|
|
5943
5932
|
},
|
|
5944
5933
|
"node_modules/baseline-browser-mapping": {
|
|
5945
|
-
"version": "2.10.
|
|
5946
|
-
"integrity": "sha512-
|
|
5934
|
+
"version": "2.10.42",
|
|
5935
|
+
"integrity": "sha512-c/jurFrDLyui7o1J86yLkRu4LMsTYcBohveus7/I2Hzdn9KIP2bdJPTue/lR1KH46enoPbD77GKeSYNdyPoD3Q==",
|
|
5947
5936
|
"license": "Apache-2.0",
|
|
5948
5937
|
"bin": {
|
|
5949
5938
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5967,8 +5956,8 @@
|
|
|
5967
5956
|
"license": "ISC"
|
|
5968
5957
|
},
|
|
5969
5958
|
"node_modules/brace-expansion": {
|
|
5970
|
-
"version": "1.1.
|
|
5971
|
-
"integrity": "sha512-
|
|
5959
|
+
"version": "1.1.16",
|
|
5960
|
+
"integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==",
|
|
5972
5961
|
"license": "MIT",
|
|
5973
5962
|
"dependencies": {
|
|
5974
5963
|
"balanced-match": "^1.0.0",
|
|
@@ -5987,8 +5976,8 @@
|
|
|
5987
5976
|
}
|
|
5988
5977
|
},
|
|
5989
5978
|
"node_modules/browserslist": {
|
|
5990
|
-
"version": "4.28.
|
|
5991
|
-
"integrity": "sha512-
|
|
5979
|
+
"version": "4.28.5",
|
|
5980
|
+
"integrity": "sha512-Cu2E6QejHWzuDMTkuwgpABFgDfZrXLQq5V13YOACZx4mFAG4IwGTbTfHPMr4WtxlHoXSM8FIuRwYYCz5XiabaQ==",
|
|
5992
5981
|
"dev": true,
|
|
5993
5982
|
"funding": [
|
|
5994
5983
|
{
|
|
@@ -6006,10 +5995,10 @@
|
|
|
6006
5995
|
],
|
|
6007
5996
|
"license": "MIT",
|
|
6008
5997
|
"dependencies": {
|
|
6009
|
-
"baseline-browser-mapping": "^2.10.
|
|
6010
|
-
"caniuse-lite": "^1.0.
|
|
6011
|
-
"electron-to-chromium": "^1.5.
|
|
6012
|
-
"node-releases": "^2.0.
|
|
5998
|
+
"baseline-browser-mapping": "^2.10.42",
|
|
5999
|
+
"caniuse-lite": "^1.0.30001800",
|
|
6000
|
+
"electron-to-chromium": "^1.5.387",
|
|
6001
|
+
"node-releases": "^2.0.50",
|
|
6013
6002
|
"update-browserslist-db": "^1.2.3"
|
|
6014
6003
|
},
|
|
6015
6004
|
"bin": {
|
|
@@ -6114,8 +6103,8 @@
|
|
|
6114
6103
|
}
|
|
6115
6104
|
},
|
|
6116
6105
|
"node_modules/caniuse-lite": {
|
|
6117
|
-
"version": "1.0.
|
|
6118
|
-
"integrity": "sha512-
|
|
6106
|
+
"version": "1.0.30001803",
|
|
6107
|
+
"integrity": "sha512-g/uHREV2ZpK9qMalCsWaxmA6ol+DX8GYhuf3T40RKoP+oL7vhRJh8LNt73PCjpnR6l14FzfPrB5Yux4PKm2meg==",
|
|
6119
6108
|
"funding": [
|
|
6120
6109
|
{
|
|
6121
6110
|
"type": "opencollective",
|
|
@@ -6237,8 +6226,8 @@
|
|
|
6237
6226
|
}
|
|
6238
6227
|
},
|
|
6239
6228
|
"node_modules/cli-truncate/node_modules/string-width": {
|
|
6240
|
-
"version": "8.2.
|
|
6241
|
-
"integrity": "sha512-
|
|
6229
|
+
"version": "8.2.2",
|
|
6230
|
+
"integrity": "sha512-GaPUh5gfdrYzqeVNZvUfT23vYYxXzKYidUcnMtJg/3rxRV63EFZy3k6xfKlmfeJD0176lnUV/Usr3XcwSvFzpg==",
|
|
6242
6231
|
"license": "MIT",
|
|
6243
6232
|
"dependencies": {
|
|
6244
6233
|
"get-east-asian-width": "^1.5.0",
|
|
@@ -6573,8 +6562,8 @@
|
|
|
6573
6562
|
}
|
|
6574
6563
|
},
|
|
6575
6564
|
"node_modules/cssstyle/node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
6576
|
-
"version": "1.1.
|
|
6577
|
-
"integrity": "sha512-
|
|
6565
|
+
"version": "1.1.6",
|
|
6566
|
+
"integrity": "sha512-TcJCWFbXLPpJYq6z7bfOyjWYJDiDg2/I4gyUC9pqPNqHFRIey0EB0q0L5cSnQDfWJg8Jd6VadakxdIez/3zkqQ==",
|
|
6578
6567
|
"dev": true,
|
|
6579
6568
|
"funding": [
|
|
6580
6569
|
{
|
|
@@ -6610,8 +6599,8 @@
|
|
|
6610
6599
|
}
|
|
6611
6600
|
},
|
|
6612
6601
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
|
6613
|
-
"version": "11.5.
|
|
6614
|
-
"integrity": "sha512-
|
|
6602
|
+
"version": "11.5.2",
|
|
6603
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
6615
6604
|
"dev": true,
|
|
6616
6605
|
"license": "BlueOak-1.0.0",
|
|
6617
6606
|
"engines": {
|
|
@@ -7288,8 +7277,8 @@
|
|
|
7288
7277
|
"license": "MIT"
|
|
7289
7278
|
},
|
|
7290
7279
|
"node_modules/electron-to-chromium": {
|
|
7291
|
-
"version": "1.5.
|
|
7292
|
-
"integrity": "sha512-
|
|
7280
|
+
"version": "1.5.389",
|
|
7281
|
+
"integrity": "sha512-cEto7aeOqBfU1D+c5py5pE+ooscKE75JifxLBdFUZsqAxRS6y7kebtxAZvICszSl05gPjYHDTjY+lXpyGvpJbg==",
|
|
7293
7282
|
"dev": true,
|
|
7294
7283
|
"license": "ISC"
|
|
7295
7284
|
},
|
|
@@ -7405,6 +7394,24 @@
|
|
|
7405
7394
|
"url": "https://github.com/sponsors/ljharb"
|
|
7406
7395
|
}
|
|
7407
7396
|
},
|
|
7397
|
+
"node_modules/es-abstract-get": {
|
|
7398
|
+
"version": "1.0.0",
|
|
7399
|
+
"integrity": "sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==",
|
|
7400
|
+
"dev": true,
|
|
7401
|
+
"license": "MIT",
|
|
7402
|
+
"dependencies": {
|
|
7403
|
+
"es-errors": "^1.3.0",
|
|
7404
|
+
"es-object-atoms": "^1.1.2",
|
|
7405
|
+
"is-callable": "^1.2.7",
|
|
7406
|
+
"object-inspect": "^1.13.4"
|
|
7407
|
+
},
|
|
7408
|
+
"engines": {
|
|
7409
|
+
"node": ">= 0.4"
|
|
7410
|
+
},
|
|
7411
|
+
"funding": {
|
|
7412
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
7413
|
+
}
|
|
7414
|
+
},
|
|
7408
7415
|
"node_modules/es-define-property": {
|
|
7409
7416
|
"version": "1.0.1",
|
|
7410
7417
|
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
@@ -7422,8 +7429,8 @@
|
|
|
7422
7429
|
}
|
|
7423
7430
|
},
|
|
7424
7431
|
"node_modules/es-iterator-helpers": {
|
|
7425
|
-
"version": "1.
|
|
7426
|
-
"integrity": "sha512-
|
|
7432
|
+
"version": "1.4.0",
|
|
7433
|
+
"integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
|
|
7427
7434
|
"dev": true,
|
|
7428
7435
|
"license": "MIT",
|
|
7429
7436
|
"dependencies": {
|
|
@@ -7492,14 +7499,17 @@
|
|
|
7492
7499
|
}
|
|
7493
7500
|
},
|
|
7494
7501
|
"node_modules/es-to-primitive": {
|
|
7495
|
-
"version": "1.3.
|
|
7496
|
-
"integrity": "sha512-
|
|
7502
|
+
"version": "1.3.4",
|
|
7503
|
+
"integrity": "sha512-yPDz7wqpg1/mmHLmS3tcfTfbw5f1eryXvyghYBffGdERwe+mV7ZcWzTR8LR17Kvqt3qfPurjlonmnq3MKXIOXw==",
|
|
7497
7504
|
"dev": true,
|
|
7498
7505
|
"license": "MIT",
|
|
7499
7506
|
"dependencies": {
|
|
7507
|
+
"es-abstract-get": "^1.0.0",
|
|
7508
|
+
"es-define-property": "^1.0.1",
|
|
7509
|
+
"es-errors": "^1.3.0",
|
|
7500
7510
|
"is-callable": "^1.2.7",
|
|
7501
|
-
"is-date-object": "^1.0
|
|
7502
|
-
"is-symbol": "^1.
|
|
7511
|
+
"is-date-object": "^1.1.0",
|
|
7512
|
+
"is-symbol": "^1.1.1"
|
|
7503
7513
|
},
|
|
7504
7514
|
"engines": {
|
|
7505
7515
|
"node": ">= 0.4"
|
|
@@ -7569,8 +7579,8 @@
|
|
|
7569
7579
|
}
|
|
7570
7580
|
},
|
|
7571
7581
|
"node_modules/eslint": {
|
|
7572
|
-
"version": "9.39.
|
|
7573
|
-
"integrity": "sha512-
|
|
7582
|
+
"version": "9.39.5",
|
|
7583
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7574
7584
|
"dev": true,
|
|
7575
7585
|
"license": "MIT",
|
|
7576
7586
|
"dependencies": {
|
|
@@ -7579,8 +7589,8 @@
|
|
|
7579
7589
|
"@eslint/config-array": "^0.21.2",
|
|
7580
7590
|
"@eslint/config-helpers": "^0.4.2",
|
|
7581
7591
|
"@eslint/core": "^0.17.0",
|
|
7582
|
-
"@eslint/eslintrc": "^3.3.
|
|
7583
|
-
"@eslint/js": "9.39.
|
|
7592
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
7593
|
+
"@eslint/js": "9.39.5",
|
|
7584
7594
|
"@eslint/plugin-kit": "^0.4.1",
|
|
7585
7595
|
"@humanfs/node": "^0.16.6",
|
|
7586
7596
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -7732,8 +7742,8 @@
|
|
|
7732
7742
|
}
|
|
7733
7743
|
},
|
|
7734
7744
|
"node_modules/eslint-module-utils": {
|
|
7735
|
-
"version": "2.
|
|
7736
|
-
"integrity": "sha512-
|
|
7745
|
+
"version": "2.14.0",
|
|
7746
|
+
"integrity": "sha512-W2WCRZ9Dqntd+2u8jJcVMV2PKulc6RdLgUUoh/yQr3uB6lo/ZOeGx11sv60/8S4QFFKNslAlWhr9u0Ef7ZW6Ig==",
|
|
7737
7747
|
"dev": true,
|
|
7738
7748
|
"license": "MIT",
|
|
7739
7749
|
"dependencies": {
|
|
@@ -8099,8 +8109,8 @@
|
|
|
8099
8109
|
}
|
|
8100
8110
|
},
|
|
8101
8111
|
"node_modules/expect-type": {
|
|
8102
|
-
"version": "1.
|
|
8103
|
-
"integrity": "sha512-
|
|
8112
|
+
"version": "1.4.0",
|
|
8113
|
+
"integrity": "sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==",
|
|
8104
8114
|
"dev": true,
|
|
8105
8115
|
"license": "Apache-2.0",
|
|
8106
8116
|
"engines": {
|
|
@@ -8557,8 +8567,8 @@
|
|
|
8557
8567
|
}
|
|
8558
8568
|
},
|
|
8559
8569
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
8560
|
-
"version": "2.1.
|
|
8561
|
-
"integrity": "sha512-
|
|
8570
|
+
"version": "2.1.2",
|
|
8571
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
8562
8572
|
"license": "MIT",
|
|
8563
8573
|
"dependencies": {
|
|
8564
8574
|
"balanced-match": "^1.0.0"
|
|
@@ -9053,8 +9063,8 @@
|
|
|
9053
9063
|
}
|
|
9054
9064
|
},
|
|
9055
9065
|
"node_modules/is-bun-module/node_modules/semver": {
|
|
9056
|
-
"version": "7.8.
|
|
9057
|
-
"integrity": "sha512-
|
|
9066
|
+
"version": "7.8.5",
|
|
9067
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
9058
9068
|
"dev": true,
|
|
9059
9069
|
"license": "ISC",
|
|
9060
9070
|
"bin": {
|
|
@@ -9819,8 +9829,8 @@
|
|
|
9819
9829
|
}
|
|
9820
9830
|
},
|
|
9821
9831
|
"node_modules/jodit": {
|
|
9822
|
-
"version": "4.12.
|
|
9823
|
-
"integrity": "sha512-
|
|
9832
|
+
"version": "4.12.43",
|
|
9833
|
+
"integrity": "sha512-6rdMmJwPFgymLt2L7Gc6MYLyJonMbTCgaOve3rIWWmtYUjlPvEJlT1J0KtCT7xPVPZezx7hXhyo+5bf4hSXeTg==",
|
|
9824
9834
|
"license": "MIT"
|
|
9825
9835
|
},
|
|
9826
9836
|
"node_modules/jodit-react": {
|
|
@@ -9849,8 +9859,8 @@
|
|
|
9849
9859
|
"license": "MIT"
|
|
9850
9860
|
},
|
|
9851
9861
|
"node_modules/js-yaml": {
|
|
9852
|
-
"version": "4.
|
|
9853
|
-
"integrity": "sha512-
|
|
9862
|
+
"version": "4.3.0",
|
|
9863
|
+
"integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==",
|
|
9854
9864
|
"dev": true,
|
|
9855
9865
|
"funding": [
|
|
9856
9866
|
{
|
|
@@ -10420,8 +10430,8 @@
|
|
|
10420
10430
|
}
|
|
10421
10431
|
},
|
|
10422
10432
|
"node_modules/make-dir/node_modules/semver": {
|
|
10423
|
-
"version": "7.8.
|
|
10424
|
-
"integrity": "sha512-
|
|
10433
|
+
"version": "7.8.5",
|
|
10434
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
10425
10435
|
"dev": true,
|
|
10426
10436
|
"license": "ISC",
|
|
10427
10437
|
"bin": {
|
|
@@ -10713,8 +10723,8 @@
|
|
|
10713
10723
|
}
|
|
10714
10724
|
},
|
|
10715
10725
|
"node_modules/msw/node_modules/yargs": {
|
|
10716
|
-
"version": "17.7.
|
|
10717
|
-
"integrity": "sha512-
|
|
10726
|
+
"version": "17.7.3",
|
|
10727
|
+
"integrity": "sha512-GZtjxm/J/4TSxuL3FNYjCmLktBTnIw/rVmKSIyKeYAZpmJB2ig9VauCC5xsa82GNKVKDAqpOn3KVzNt0zmrU0g==",
|
|
10718
10728
|
"dev": true,
|
|
10719
10729
|
"license": "MIT",
|
|
10720
10730
|
"dependencies": {
|
|
@@ -10770,8 +10780,8 @@
|
|
|
10770
10780
|
}
|
|
10771
10781
|
},
|
|
10772
10782
|
"node_modules/nanoid": {
|
|
10773
|
-
"version": "3.3.
|
|
10774
|
-
"integrity": "sha512-
|
|
10783
|
+
"version": "3.3.15",
|
|
10784
|
+
"integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==",
|
|
10775
10785
|
"funding": [
|
|
10776
10786
|
{
|
|
10777
10787
|
"type": "github",
|
|
@@ -10911,8 +10921,8 @@
|
|
|
10911
10921
|
}
|
|
10912
10922
|
},
|
|
10913
10923
|
"node_modules/node-exports-info": {
|
|
10914
|
-
"version": "1.6.
|
|
10915
|
-
"integrity": "sha512-
|
|
10924
|
+
"version": "1.6.2",
|
|
10925
|
+
"integrity": "sha512-kXs9Go0cah0qHVV2v389IXQLdLCeE1xfFtjOAF+iobu0OIoG1pje8At2vMHyaPMiPMnG/LWP50twML21eMcAag==",
|
|
10916
10926
|
"dev": true,
|
|
10917
10927
|
"license": "MIT",
|
|
10918
10928
|
"dependencies": {
|
|
@@ -10938,8 +10948,8 @@
|
|
|
10938
10948
|
}
|
|
10939
10949
|
},
|
|
10940
10950
|
"node_modules/node-releases": {
|
|
10941
|
-
"version": "2.0.
|
|
10942
|
-
"integrity": "sha512-
|
|
10951
|
+
"version": "2.0.51",
|
|
10952
|
+
"integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==",
|
|
10943
10953
|
"dev": true,
|
|
10944
10954
|
"license": "MIT",
|
|
10945
10955
|
"engines": {
|
|
@@ -11358,8 +11368,8 @@
|
|
|
11358
11368
|
"license": "ISC"
|
|
11359
11369
|
},
|
|
11360
11370
|
"node_modules/picomatch": {
|
|
11361
|
-
"version": "4.0.
|
|
11362
|
-
"integrity": "sha512-
|
|
11371
|
+
"version": "4.0.5",
|
|
11372
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
11363
11373
|
"license": "MIT",
|
|
11364
11374
|
"engines": {
|
|
11365
11375
|
"node": ">=12"
|
|
@@ -11596,18 +11606,18 @@
|
|
|
11596
11606
|
}
|
|
11597
11607
|
},
|
|
11598
11608
|
"node_modules/react-aria": {
|
|
11599
|
-
"version": "3.
|
|
11600
|
-
"integrity": "sha512-
|
|
11609
|
+
"version": "3.50.0",
|
|
11610
|
+
"integrity": "sha512-S0Os6QZk33fzUAKu1QLT9afoUaCBt1ZNdoiq0n2YMVgKIdNIQS8zxiZ8O9hYE6QyDkHKjD6q39LQZ+qaSAIgjw==",
|
|
11601
11611
|
"license": "Apache-2.0",
|
|
11602
11612
|
"dependencies": {
|
|
11603
11613
|
"@internationalized/date": "^3.12.2",
|
|
11604
11614
|
"@internationalized/number": "^3.6.7",
|
|
11605
11615
|
"@internationalized/string": "^3.2.9",
|
|
11606
|
-
"@react-types/shared": "^3.
|
|
11616
|
+
"@react-types/shared": "^3.36.0",
|
|
11607
11617
|
"@swc/helpers": "^0.5.0",
|
|
11608
11618
|
"aria-hidden": "^1.2.3",
|
|
11609
11619
|
"clsx": "^2.0.0",
|
|
11610
|
-
"react-stately": "3.
|
|
11620
|
+
"react-stately": "3.48.0",
|
|
11611
11621
|
"use-sync-external-store": "^1.6.0"
|
|
11612
11622
|
},
|
|
11613
11623
|
"peerDependencies": {
|
|
@@ -11747,14 +11757,14 @@
|
|
|
11747
11757
|
}
|
|
11748
11758
|
},
|
|
11749
11759
|
"node_modules/react-stately": {
|
|
11750
|
-
"version": "3.
|
|
11751
|
-
"integrity": "sha512-
|
|
11760
|
+
"version": "3.48.0",
|
|
11761
|
+
"integrity": "sha512-ImicSAG+lTotAe5izcs1fz49Zk48w7pDusqYg04WaPhCoej8BJ24soMu3iLXIrsi273s4P1gZrYGrqReMfgEEA==",
|
|
11752
11762
|
"license": "Apache-2.0",
|
|
11753
11763
|
"dependencies": {
|
|
11754
11764
|
"@internationalized/date": "^3.12.2",
|
|
11755
11765
|
"@internationalized/number": "^3.6.7",
|
|
11756
11766
|
"@internationalized/string": "^3.2.9",
|
|
11757
|
-
"@react-types/shared": "^3.
|
|
11767
|
+
"@react-types/shared": "^3.36.0",
|
|
11758
11768
|
"@swc/helpers": "^0.5.0",
|
|
11759
11769
|
"use-sync-external-store": "^1.6.0"
|
|
11760
11770
|
},
|
|
@@ -11809,8 +11819,8 @@
|
|
|
11809
11819
|
}
|
|
11810
11820
|
},
|
|
11811
11821
|
"node_modules/readdir-glob/node_modules/brace-expansion": {
|
|
11812
|
-
"version": "2.1.
|
|
11813
|
-
"integrity": "sha512-
|
|
11822
|
+
"version": "2.1.2",
|
|
11823
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
11814
11824
|
"license": "MIT",
|
|
11815
11825
|
"dependencies": {
|
|
11816
11826
|
"balanced-match": "^1.0.0"
|
|
@@ -12031,8 +12041,8 @@
|
|
|
12031
12041
|
"license": "Unlicense"
|
|
12032
12042
|
},
|
|
12033
12043
|
"node_modules/rollup": {
|
|
12034
|
-
"version": "4.62.
|
|
12035
|
-
"integrity": "sha512-
|
|
12044
|
+
"version": "4.62.2",
|
|
12045
|
+
"integrity": "sha512-RFnrW4lhXA3s3eqHDZvN654g8OTjzRfqpIRJYczCGB6HzphckVAi/Qh4tbPUbRuDi7s1Llv8g/NspLkttY3gTA==",
|
|
12036
12046
|
"dev": true,
|
|
12037
12047
|
"license": "MIT",
|
|
12038
12048
|
"dependencies": {
|
|
@@ -12046,31 +12056,31 @@
|
|
|
12046
12056
|
"npm": ">=8.0.0"
|
|
12047
12057
|
},
|
|
12048
12058
|
"optionalDependencies": {
|
|
12049
|
-
"@rollup/rollup-android-arm-eabi": "4.62.
|
|
12050
|
-
"@rollup/rollup-android-arm64": "4.62.
|
|
12051
|
-
"@rollup/rollup-darwin-arm64": "4.62.
|
|
12052
|
-
"@rollup/rollup-darwin-x64": "4.62.
|
|
12053
|
-
"@rollup/rollup-freebsd-arm64": "4.62.
|
|
12054
|
-
"@rollup/rollup-freebsd-x64": "4.62.
|
|
12055
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.62.
|
|
12056
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.62.
|
|
12057
|
-
"@rollup/rollup-linux-arm64-gnu": "4.62.
|
|
12058
|
-
"@rollup/rollup-linux-arm64-musl": "4.62.
|
|
12059
|
-
"@rollup/rollup-linux-loong64-gnu": "4.62.
|
|
12060
|
-
"@rollup/rollup-linux-loong64-musl": "4.62.
|
|
12061
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.62.
|
|
12062
|
-
"@rollup/rollup-linux-ppc64-musl": "4.62.
|
|
12063
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.62.
|
|
12064
|
-
"@rollup/rollup-linux-riscv64-musl": "4.62.
|
|
12065
|
-
"@rollup/rollup-linux-s390x-gnu": "4.62.
|
|
12066
|
-
"@rollup/rollup-linux-x64-gnu": "4.62.
|
|
12067
|
-
"@rollup/rollup-linux-x64-musl": "4.62.
|
|
12068
|
-
"@rollup/rollup-openbsd-x64": "4.62.
|
|
12069
|
-
"@rollup/rollup-openharmony-arm64": "4.62.
|
|
12070
|
-
"@rollup/rollup-win32-arm64-msvc": "4.62.
|
|
12071
|
-
"@rollup/rollup-win32-ia32-msvc": "4.62.
|
|
12072
|
-
"@rollup/rollup-win32-x64-gnu": "4.62.
|
|
12073
|
-
"@rollup/rollup-win32-x64-msvc": "4.62.
|
|
12059
|
+
"@rollup/rollup-android-arm-eabi": "4.62.2",
|
|
12060
|
+
"@rollup/rollup-android-arm64": "4.62.2",
|
|
12061
|
+
"@rollup/rollup-darwin-arm64": "4.62.2",
|
|
12062
|
+
"@rollup/rollup-darwin-x64": "4.62.2",
|
|
12063
|
+
"@rollup/rollup-freebsd-arm64": "4.62.2",
|
|
12064
|
+
"@rollup/rollup-freebsd-x64": "4.62.2",
|
|
12065
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.62.2",
|
|
12066
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.62.2",
|
|
12067
|
+
"@rollup/rollup-linux-arm64-gnu": "4.62.2",
|
|
12068
|
+
"@rollup/rollup-linux-arm64-musl": "4.62.2",
|
|
12069
|
+
"@rollup/rollup-linux-loong64-gnu": "4.62.2",
|
|
12070
|
+
"@rollup/rollup-linux-loong64-musl": "4.62.2",
|
|
12071
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.62.2",
|
|
12072
|
+
"@rollup/rollup-linux-ppc64-musl": "4.62.2",
|
|
12073
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.62.2",
|
|
12074
|
+
"@rollup/rollup-linux-riscv64-musl": "4.62.2",
|
|
12075
|
+
"@rollup/rollup-linux-s390x-gnu": "4.62.2",
|
|
12076
|
+
"@rollup/rollup-linux-x64-gnu": "4.62.2",
|
|
12077
|
+
"@rollup/rollup-linux-x64-musl": "4.62.2",
|
|
12078
|
+
"@rollup/rollup-openbsd-x64": "4.62.2",
|
|
12079
|
+
"@rollup/rollup-openharmony-arm64": "4.62.2",
|
|
12080
|
+
"@rollup/rollup-win32-arm64-msvc": "4.62.2",
|
|
12081
|
+
"@rollup/rollup-win32-ia32-msvc": "4.62.2",
|
|
12082
|
+
"@rollup/rollup-win32-x64-gnu": "4.62.2",
|
|
12083
|
+
"@rollup/rollup-win32-x64-msvc": "4.62.2",
|
|
12074
12084
|
"fsevents": "~2.3.2"
|
|
12075
12085
|
}
|
|
12076
12086
|
},
|
|
@@ -12308,8 +12318,8 @@
|
|
|
12308
12318
|
}
|
|
12309
12319
|
},
|
|
12310
12320
|
"node_modules/sharp/node_modules/semver": {
|
|
12311
|
-
"version": "7.8.
|
|
12312
|
-
"integrity": "sha512-
|
|
12321
|
+
"version": "7.8.5",
|
|
12322
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
12313
12323
|
"license": "ISC",
|
|
12314
12324
|
"optional": true,
|
|
12315
12325
|
"bin": {
|
|
@@ -12931,8 +12941,8 @@
|
|
|
12931
12941
|
"license": "MIT"
|
|
12932
12942
|
},
|
|
12933
12943
|
"node_modules/tabbable": {
|
|
12934
|
-
"version": "6.
|
|
12935
|
-
"integrity": "sha512-
|
|
12944
|
+
"version": "6.5.0",
|
|
12945
|
+
"integrity": "sha512-wieBHXygIm7OyQOu5hQlkk62/WyCFYGlWg7L6/ZCUZwx0o398Zkn4pVmMyfYhfMG8kGrj/Krt8eIk6UKC6VzwA==",
|
|
12936
12946
|
"license": "MIT"
|
|
12937
12947
|
},
|
|
12938
12948
|
"node_modules/tagged-tag": {
|
|
@@ -12990,8 +13000,8 @@
|
|
|
12990
13000
|
}
|
|
12991
13001
|
},
|
|
12992
13002
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
12993
|
-
"version": "5.0.
|
|
12994
|
-
"integrity": "sha512-
|
|
13003
|
+
"version": "5.0.7",
|
|
13004
|
+
"integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
|
|
12995
13005
|
"dev": true,
|
|
12996
13006
|
"license": "MIT",
|
|
12997
13007
|
"dependencies": {
|
|
@@ -13103,20 +13113,20 @@
|
|
|
13103
13113
|
}
|
|
13104
13114
|
},
|
|
13105
13115
|
"node_modules/tldts": {
|
|
13106
|
-
"version": "7.4.
|
|
13107
|
-
"integrity": "sha512-
|
|
13116
|
+
"version": "7.4.8",
|
|
13117
|
+
"integrity": "sha512-htwgN/8KRB3z3vnC0BOETVh2m499g5GmyTK9Wq5JBLX3FNz6tSBveAd+fQhzy9hkjif8vy2jwDMR1sGhLtZl2A==",
|
|
13108
13118
|
"dev": true,
|
|
13109
13119
|
"license": "MIT",
|
|
13110
13120
|
"dependencies": {
|
|
13111
|
-
"tldts-core": "^7.4.
|
|
13121
|
+
"tldts-core": "^7.4.8"
|
|
13112
13122
|
},
|
|
13113
13123
|
"bin": {
|
|
13114
13124
|
"tldts": "bin/cli.js"
|
|
13115
13125
|
}
|
|
13116
13126
|
},
|
|
13117
13127
|
"node_modules/tldts-core": {
|
|
13118
|
-
"version": "7.4.
|
|
13119
|
-
"integrity": "sha512-
|
|
13128
|
+
"version": "7.4.8",
|
|
13129
|
+
"integrity": "sha512-c1P7u0EhACHj7lPy4MJm8iTFEU8+nB0LCtddH0fhP7noaVoXAqafMtOOeX+ulpuPBqnrRgRhw494RICT3mbhnw==",
|
|
13120
13130
|
"dev": true,
|
|
13121
13131
|
"license": "MIT"
|
|
13122
13132
|
},
|
|
@@ -13132,8 +13142,8 @@
|
|
|
13132
13142
|
}
|
|
13133
13143
|
},
|
|
13134
13144
|
"node_modules/tough-cookie": {
|
|
13135
|
-
"version": "6.0.
|
|
13136
|
-
"integrity": "sha512-
|
|
13145
|
+
"version": "6.0.2",
|
|
13146
|
+
"integrity": "sha512-exgYmnmL/sJpR3upZfXG5PoatXQii55xAiXGXzY+sROLZ/Y+SLcp9PgJNI9Vz37HpQ74WvDcLT8eqm+kV3FzrA==",
|
|
13137
13147
|
"dev": true,
|
|
13138
13148
|
"license": "BSD-3-Clause",
|
|
13139
13149
|
"dependencies": {
|
|
@@ -13219,8 +13229,8 @@
|
|
|
13219
13229
|
}
|
|
13220
13230
|
},
|
|
13221
13231
|
"node_modules/type-fest": {
|
|
13222
|
-
"version": "5.
|
|
13223
|
-
"integrity": "sha512-
|
|
13232
|
+
"version": "5.8.0",
|
|
13233
|
+
"integrity": "sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==",
|
|
13224
13234
|
"dev": true,
|
|
13225
13235
|
"license": "(MIT OR CC0-1.0)",
|
|
13226
13236
|
"dependencies": {
|
|
@@ -13351,8 +13361,8 @@
|
|
|
13351
13361
|
}
|
|
13352
13362
|
},
|
|
13353
13363
|
"node_modules/undici": {
|
|
13354
|
-
"version": "7.
|
|
13355
|
-
"integrity": "sha512-
|
|
13364
|
+
"version": "7.28.0",
|
|
13365
|
+
"integrity": "sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==",
|
|
13356
13366
|
"dev": true,
|
|
13357
13367
|
"license": "MIT",
|
|
13358
13368
|
"engines": {
|
|
@@ -13483,12 +13493,12 @@
|
|
|
13483
13493
|
"license": "MIT"
|
|
13484
13494
|
},
|
|
13485
13495
|
"node_modules/vite": {
|
|
13486
|
-
"version": "7.3.
|
|
13487
|
-
"integrity": "sha512-
|
|
13496
|
+
"version": "7.3.6",
|
|
13497
|
+
"integrity": "sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==",
|
|
13488
13498
|
"dev": true,
|
|
13489
13499
|
"license": "MIT",
|
|
13490
13500
|
"dependencies": {
|
|
13491
|
-
"esbuild": "^0.27.0",
|
|
13501
|
+
"esbuild": "^0.27.0 || ^0.28.0",
|
|
13492
13502
|
"fdir": "^6.5.0",
|
|
13493
13503
|
"picomatch": "^4.0.3",
|
|
13494
13504
|
"postcss": "^8.5.6",
|
|
@@ -13579,8 +13589,8 @@
|
|
|
13579
13589
|
}
|
|
13580
13590
|
},
|
|
13581
13591
|
"node_modules/vite/node_modules/postcss": {
|
|
13582
|
-
"version": "8.5.
|
|
13583
|
-
"integrity": "sha512-
|
|
13592
|
+
"version": "8.5.16",
|
|
13593
|
+
"integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==",
|
|
13584
13594
|
"dev": true,
|
|
13585
13595
|
"funding": [
|
|
13586
13596
|
{
|