@wavemaker-ai/react-runtime 1.0.0-rc.647684 → 12.0.0-rc.335
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/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 +3 -5
- 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/iframe/index.d.ts +1 -0
- package/components/basic/label/index.d.ts +1 -0
- package/components/basic/picture/index.d.ts +1 -0
- 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 +3 -0
- package/components/basic/search/index.js +5 -4
- package/components/basic/search/utils.d.ts +1 -0
- package/components/basic/search/utils.js +9 -0
- package/components/basic/spinner/index.d.ts +1 -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 +1 -0
- package/components/common/index.d.ts +2 -0
- package/components/common/index.js +2 -0
- package/components/common/partial-content-wrapper.d.ts +15 -0
- package/components/common/partial-content-wrapper.js +11 -0
- package/components/container/accordion/accordion-pane/index.d.ts +1 -0
- package/components/container/accordion/index.d.ts +1 -0
- package/components/container/index.d.ts +4 -0
- package/components/container/index.js +38 -11
- 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/index.d.ts +1 -0
- package/components/container/layout-grid/index.js +1 -1
- 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/index.d.ts +1 -0
- package/components/container/props.d.ts +1 -0
- package/components/container/repeat-template/index.d.ts +1 -0
- package/components/container/repeat-template/index.js +1 -1
- package/components/container/tabs/index.d.ts +1 -0
- package/components/container/tabs/index.js +12 -8
- package/components/container/tabs/tab-pane/index.d.ts +1 -0
- package/components/container/tabs/tab-pane/index.js +2 -2
- package/components/container/wizard/index.d.ts +2 -0
- package/components/container/wizard/index.js +92 -43
- package/components/container/wizard/props.d.ts +2 -2
- package/components/container/wizard/wizard-step/index.d.ts +1 -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/form/base-form/hooks/useFormOperations.d.ts +1 -1
- package/components/data/form/base-form/hooks/useFormOperations.js +5 -2
- package/components/data/form/base-form/index.js +10 -14
- package/components/data/form/base-form/props.d.ts +1 -0
- package/components/data/form/dynamic-fields/WmxDynamicFormField.js +9 -23
- package/components/data/form/form-action/index.d.ts +2 -0
- package/components/data/form/form-controller/props.d.ts +2 -0
- package/components/data/form/form-controller/utils.js +3 -2
- package/components/data/form/form-controller/validation-contrustor.js +112 -1
- package/components/data/form/form-controller/withFormController.js +16 -3
- package/components/data/form/form-field/index.js +38 -11
- package/components/data/form/form-field/props.d.ts +8 -2
- package/components/data/list/components/ListItemWithTemplate.js +1 -1
- package/components/data/list/index.d.ts +2 -0
- package/components/data/list/index.js +5 -10
- package/components/data/pagination/hooks/usePagination.js +6 -6
- package/components/data/table/components/EditableCell.js +47 -24
- package/components/data/table/components/FieldValidationError.js +1 -1
- package/components/data/table/components/RowExpansionButton.js +5 -1
- package/components/data/table/components/TableBody.js +2 -0
- package/components/data/table/components/TableHeader.js +12 -4
- package/components/data/table/hooks/useFormWidget.js +13 -2
- package/components/data/table/hooks/usePanelStructure.js +6 -1
- package/components/data/table/hooks/useResponsiveColumns.d.ts +1 -0
- package/components/data/table/hooks/useRowHandlers.js +1 -1
- package/components/data/table/hooks/useRowSelection.js +65 -4
- package/components/data/table/hooks/useTableData.js +10 -2
- package/components/data/table/hooks/useTableEdit.d.ts +1 -1
- package/components/data/table/hooks/useTableEdit.js +115 -75
- package/components/data/table/hooks/useTableEditForms.d.ts +25 -0
- package/components/data/table/hooks/useTableEditForms.js +30 -0
- package/components/data/table/index.d.ts +2 -0
- package/components/data/table/index.js +82 -45
- package/components/data/table/live-table/index.d.ts +1 -0
- package/components/data/table/props.d.ts +43 -23
- 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.js +19 -24
- package/components/data/table/utils/columnProxy.d.ts +7 -1
- package/components/data/table/utils/columnProxy.js +21 -1
- package/components/data/table/utils/columnValidation.d.ts +19 -0
- package/components/data/table/utils/columnValidation.js +76 -0
- package/components/data/table/utils/constants.d.ts +2 -0
- package/components/data/table/utils/constants.js +2 -0
- package/components/data/table/utils/crud-handlers.js +3 -1
- package/components/data/table/utils/expansionColumn.js +1 -1
- package/components/data/table/utils/index.d.ts +14 -15
- package/components/data/table/utils/index.js +18 -85
- package/components/data/table/utils/selectionUtils.d.ts +12 -0
- package/components/data/table/utils/selectionUtils.js +23 -5
- 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-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/iframe-dialog/index.d.ts +2 -0
- package/components/dialogs/login-dialog/index.d.ts +2 -0
- package/components/dialogs/page-dialog/index.d.ts +2 -0
- package/components/dialogs/withDialogWrapper.js +12 -2
- package/components/form/button/index.d.ts +1 -0
- 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 +3 -0
- package/components/input/color-picker/index.d.ts +3 -0
- package/components/input/composite/index.d.ts +1 -0
- package/components/input/composite/index.js +32 -6
- package/components/input/currency/index.d.ts +1 -0
- package/components/input/default/checkbox/index.d.ts +3 -0
- package/components/input/default/checkboxset/index.d.ts +3 -0
- package/components/input/default/radioset/index.d.ts +3 -0
- package/components/input/default/switch/index.d.ts +3 -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/datetime/index.js +13 -3
- package/components/input/epoch/time/index.d.ts +1 -0
- package/components/input/fileupload/index.d.ts +1 -0
- package/components/input/fileupload/index.js +2 -1
- package/components/input/number/index.d.ts +3 -0
- package/components/input/rating/index.d.ts +3 -0
- package/components/input/select/index.d.ts +1 -0
- package/components/input/slider/index.d.ts +3 -0
- package/components/input/text/index.d.ts +3 -0
- package/components/input/text/index.js +9 -2
- package/components/input/textarea/index.d.ts +3 -0
- package/components/input/upload/index.d.ts +3 -0
- package/components/layout/footer/index.js +4 -2
- package/components/layout/footer/props.d.ts +1 -0
- package/components/layout/header/index.js +29 -3
- package/components/layout/header/props.d.ts +1 -0
- package/components/layout/leftnav/index.js +22 -6
- package/components/layout/leftnav/props.d.ts +1 -0
- package/components/layout/leftnav/utils/page-class-util.d.ts +1 -0
- package/components/layout/leftnav/utils/page-class-util.js +4 -3
- package/components/layout/rightnav/index.js +4 -2
- package/components/layout/rightnav/props.d.ts +1 -0
- package/components/layout/topnav/index.js +4 -2
- package/components/layout/topnav/props.d.ts +1 -0
- package/components/navbar/index.d.ts +1 -0
- package/components/navbar/index.js +32 -7
- 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 +1 -0
- package/components/navigation/menu/index.js +19 -11
- package/components/navigation/menu/props.d.ts +1 -0
- package/components/navigation/popover/index.d.ts +1 -0
- package/components/navigation/popover/index.js +15 -3
- package/components/page/index.js +60 -19
- package/components/page/page-context.d.ts +4 -0
- package/components/page/partial/index.d.ts +1 -0
- package/context/PopoverContext.d.ts +5 -0
- package/context/PopoverContext.js +5 -0
- package/context/WidgetProvider.js +9 -2
- package/core/proxy-service.d.ts +2 -0
- package/core/proxy-service.js +132 -22
- package/higherOrder/BaseApp.js +3 -2
- package/higherOrder/BasePage.js +4 -10
- package/higherOrder/props.d.ts +1 -0
- package/higherOrder/useActivePageReactivity.js +1 -4
- package/higherOrder/withBaseWrapper.js +12 -3
- package/hooks/useHttp.d.ts +14 -4
- package/hooks/useHttp.js +47 -9
- package/package-lock.json +332 -325
- package/package.json +3 -3
- package/runtime-dynamic/App.js +21 -2
- package/runtime-dynamic/app-initializer.js +8 -1
- package/runtime-dynamic/components/PageWrapper.js +1 -1
- package/runtime-dynamic/components/PrefabPreview.js +1 -1
- package/runtime-dynamic/components/partial-content.js +17 -1
- package/runtime-dynamic/factories/build-base-page-like-component.js +11 -7
- package/runtime-dynamic/factories/dynamic-component.js +5 -10
- package/runtime-dynamic/main.d.ts +1 -0
- package/runtime-dynamic/main.js +9 -1
- package/runtime-dynamic/routes.js +17 -8
- package/runtime-dynamic/services/compile-render.js +7 -0
- package/runtime-dynamic/services/css-scoping.d.ts +1 -1
- package/runtime-dynamic/services/css-scoping.js +2 -2
- package/runtime-dynamic/services/variable-factory.js +2 -1
- package/runtime-dynamic/services/variable-transpiler.js +4 -1
- package/runtime-dynamic/wmx-shared.d.ts +40 -0
- package/runtime-dynamic/wmx-shared.js +33 -0
- package/utils/page-params-util.js +22 -1
- package/utils/partial-host-util.d.ts +40 -0
- package/utils/partial-host-util.js +41 -0
- package/utils/style-utils.js +1 -1
- package/utils/wmx.utils.d.ts +0 -1
- package/utils/wmx.utils.js +0 -25
- package/variables/crud-variable.d.ts +10 -0
- package/variables/crud-variable.js +53 -2
- package/variables/live-variable.d.ts +1 -0
- package/variables/live-variable.js +2 -1
- package/variables/model-variable.d.ts +2 -0
- package/variables/model-variable.js +14 -0
- package/variables/operation-params.d.ts +29 -0
- package/variables/operation-params.js +69 -0
- package/variables/service-variable.d.ts +9 -0
- package/variables/service-variable.js +21 -2
- package/components/data/table/utils/validation.d.ts +0 -13
- package/components/data/table/utils/validation.js +0 -82
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker-ai/react-runtime",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0-rc.335",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker-ai/react-runtime",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "12.0.0-rc.335",
|
|
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": "
|
|
32
|
-
"@wavemaker-ai/variables": "
|
|
31
|
+
"@wavemaker-ai/react-codegen": "12.0.0-rc.335",
|
|
32
|
+
"@wavemaker-ai/variables": "12.0.0-rc.335",
|
|
33
33
|
"@wavemaker/nvd3": "1.8.16",
|
|
34
34
|
"axios": "1.15.1",
|
|
35
35
|
"d3": "7.8.5",
|
|
@@ -495,8 +495,8 @@
|
|
|
495
495
|
}
|
|
496
496
|
},
|
|
497
497
|
"node_modules/@csstools/color-helpers": {
|
|
498
|
-
"version": "6.1.
|
|
499
|
-
"integrity": "sha512-
|
|
498
|
+
"version": "6.1.1",
|
|
499
|
+
"integrity": "sha512-gLNsunvwf3mCi5u5o46/Z/JcJMnhbHSaZ69rkgPzNM3J4s8hWwpPUQB6/tt0EDFyCiWzxANlx+2LJwpYj4zS1w==",
|
|
500
500
|
"dev": true,
|
|
501
501
|
"funding": [
|
|
502
502
|
{
|
|
@@ -537,8 +537,8 @@
|
|
|
537
537
|
}
|
|
538
538
|
},
|
|
539
539
|
"node_modules/@csstools/css-color-parser": {
|
|
540
|
-
"version": "4.
|
|
541
|
-
"integrity": "sha512-
|
|
540
|
+
"version": "4.2.2",
|
|
541
|
+
"integrity": "sha512-3QKjR/vxyjcSXBLgb6lP0S3MGdvwbmqSsvLPbYdVORqPDc8FX1HAJ0Spk38bxaRXgvENTA47tlhhbb5Z2e8hEg==",
|
|
542
542
|
"dev": true,
|
|
543
543
|
"funding": [
|
|
544
544
|
{
|
|
@@ -552,7 +552,7 @@
|
|
|
552
552
|
],
|
|
553
553
|
"license": "MIT",
|
|
554
554
|
"dependencies": {
|
|
555
|
-
"@csstools/color-helpers": "^6.1.
|
|
555
|
+
"@csstools/color-helpers": "^6.1.1",
|
|
556
556
|
"@csstools/css-calc": "^3.3.0"
|
|
557
557
|
},
|
|
558
558
|
"engines": {
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
}
|
|
587
587
|
},
|
|
588
588
|
"node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
589
|
-
"version": "1.1.
|
|
590
|
-
"integrity": "sha512-
|
|
589
|
+
"version": "1.1.12",
|
|
590
|
+
"integrity": "sha512-3vLQK+dXxhBMR2Wx99PTCifE+vHtW2ndZWyla8yK813ev6oGhyn8Lja8jCyGAWTJ+LEYZK7EVtJxrDj8ztevJw==",
|
|
591
591
|
"dev": true,
|
|
592
592
|
"funding": [
|
|
593
593
|
{
|
|
@@ -1347,8 +1347,8 @@
|
|
|
1347
1347
|
}
|
|
1348
1348
|
},
|
|
1349
1349
|
"node_modules/@eslint/eslintrc": {
|
|
1350
|
-
"version": "3.3.
|
|
1351
|
-
"integrity": "sha512-
|
|
1350
|
+
"version": "3.3.7",
|
|
1351
|
+
"integrity": "sha512-F42g89Qd5oAWtp0k0nnSrjziAKza7w8SVT4mStc18LZMaRb4J1HQAHLCalEtDCxrTuksx7NU9qsmeLwpOfPqWw==",
|
|
1352
1352
|
"dev": true,
|
|
1353
1353
|
"license": "MIT",
|
|
1354
1354
|
"dependencies": {
|
|
@@ -1358,7 +1358,7 @@
|
|
|
1358
1358
|
"globals": "^14.0.0",
|
|
1359
1359
|
"ignore": "^5.2.0",
|
|
1360
1360
|
"import-fresh": "^3.2.1",
|
|
1361
|
-
"js-yaml": "^4.3.
|
|
1361
|
+
"js-yaml": "^4.3.2",
|
|
1362
1362
|
"minimatch": "^3.1.5",
|
|
1363
1363
|
"strip-json-comments": "^3.1.1"
|
|
1364
1364
|
},
|
|
@@ -2177,16 +2177,16 @@
|
|
|
2177
2177
|
}
|
|
2178
2178
|
},
|
|
2179
2179
|
"node_modules/@internationalized/date": {
|
|
2180
|
-
"version": "3.12.
|
|
2181
|
-
"integrity": "sha512-
|
|
2180
|
+
"version": "3.12.4",
|
|
2181
|
+
"integrity": "sha512-M1dEn4c1U1HsSlaVR8upZtSqvXrTkHDfv18H01uCSJyjVLDxnBR38v/fMxecmlwXKR4i9HeZcmgQAPE6A+aGJQ==",
|
|
2182
2182
|
"license": "Apache-2.0",
|
|
2183
2183
|
"dependencies": {
|
|
2184
2184
|
"@swc/helpers": "^0.5.0"
|
|
2185
2185
|
}
|
|
2186
2186
|
},
|
|
2187
2187
|
"node_modules/@internationalized/number": {
|
|
2188
|
-
"version": "3.6.
|
|
2189
|
-
"integrity": "sha512-
|
|
2188
|
+
"version": "3.6.8",
|
|
2189
|
+
"integrity": "sha512-8UmMFia46DUt+k97zKd9fKWXcWHR+k8ae3eYzILETuT2KbIvLyOfac7zesw+sJdRAAZ7Q9pM1Mk22aXp2LD0Ig==",
|
|
2190
2190
|
"license": "Apache-2.0",
|
|
2191
2191
|
"dependencies": {
|
|
2192
2192
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2226,8 +2226,8 @@
|
|
|
2226
2226
|
}
|
|
2227
2227
|
},
|
|
2228
2228
|
"node_modules/@jest/diff-sequences": {
|
|
2229
|
-
"version": "30.
|
|
2230
|
-
"integrity": "sha512-
|
|
2229
|
+
"version": "30.5.0",
|
|
2230
|
+
"integrity": "sha512-OsqBjHXCn8cadasoAZBP6nWYvMsRhpMzGXTpxJ5aO04NlbdhIz+FVe3q49l0AwVhsz/cEmIpBes6gAFl1/dWQg==",
|
|
2231
2231
|
"dev": true,
|
|
2232
2232
|
"license": "MIT",
|
|
2233
2233
|
"engines": {
|
|
@@ -2235,20 +2235,20 @@
|
|
|
2235
2235
|
}
|
|
2236
2236
|
},
|
|
2237
2237
|
"node_modules/@jest/expect-utils": {
|
|
2238
|
-
"version": "30.
|
|
2239
|
-
"integrity": "sha512-
|
|
2238
|
+
"version": "30.5.1",
|
|
2239
|
+
"integrity": "sha512-WcRWhHQdTMRDpyWKZ/6MINBmovI7zeD+bL8wFjCncRV3NQOwKy1X45IfyblfHR4k/XciIlNEdFL9QjFO+HNKOg==",
|
|
2240
2240
|
"dev": true,
|
|
2241
2241
|
"license": "MIT",
|
|
2242
2242
|
"dependencies": {
|
|
2243
|
-
"@jest/get-type": "30.
|
|
2243
|
+
"@jest/get-type": "30.5.0"
|
|
2244
2244
|
},
|
|
2245
2245
|
"engines": {
|
|
2246
2246
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
2247
2247
|
}
|
|
2248
2248
|
},
|
|
2249
2249
|
"node_modules/@jest/get-type": {
|
|
2250
|
-
"version": "30.
|
|
2251
|
-
"integrity": "sha512-
|
|
2250
|
+
"version": "30.5.0",
|
|
2251
|
+
"integrity": "sha512-9/2VUPitAjmBzbvDvqrxmvB7BzWsBW0WmkkojX1ODuxX1NLGxx9gfaZpHB0z8DtJ9uhGNmZG/VXBhf8uO0OV8Q==",
|
|
2252
2252
|
"dev": true,
|
|
2253
2253
|
"license": "MIT",
|
|
2254
2254
|
"engines": {
|
|
@@ -2256,21 +2256,35 @@
|
|
|
2256
2256
|
}
|
|
2257
2257
|
},
|
|
2258
2258
|
"node_modules/@jest/pattern": {
|
|
2259
|
-
"version": "30.
|
|
2260
|
-
"integrity": "sha512-
|
|
2259
|
+
"version": "30.5.0",
|
|
2260
|
+
"integrity": "sha512-HdNQYSdRTEBNrginaqzQtTjG0HRMfrra/z6Ok7uL3S87vSlarIVohEsJsSj5edu3MiHoHjAkvPROz5ZjoKai+w==",
|
|
2261
2261
|
"dev": true,
|
|
2262
2262
|
"license": "MIT",
|
|
2263
2263
|
"dependencies": {
|
|
2264
2264
|
"@types/node": "*",
|
|
2265
|
-
"jest-regex-util": "30.
|
|
2265
|
+
"jest-regex-util": "30.5.0"
|
|
2266
2266
|
},
|
|
2267
2267
|
"engines": {
|
|
2268
2268
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
2269
2269
|
}
|
|
2270
2270
|
},
|
|
2271
|
+
"node_modules/@jest/react-is-18": {
|
|
2272
|
+
"name": "react-is",
|
|
2273
|
+
"version": "18.3.1",
|
|
2274
|
+
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
2275
|
+
"dev": true,
|
|
2276
|
+
"license": "MIT"
|
|
2277
|
+
},
|
|
2278
|
+
"node_modules/@jest/react-is-19": {
|
|
2279
|
+
"name": "react-is",
|
|
2280
|
+
"version": "19.2.8",
|
|
2281
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
2282
|
+
"dev": true,
|
|
2283
|
+
"license": "MIT"
|
|
2284
|
+
},
|
|
2271
2285
|
"node_modules/@jest/schemas": {
|
|
2272
|
-
"version": "30.
|
|
2273
|
-
"integrity": "sha512
|
|
2286
|
+
"version": "30.5.0",
|
|
2287
|
+
"integrity": "sha512-/hunigyNpc4RCjC0VaW3f5RCUZVM2+WQ65qP7z083Gmvac7or2LI50XVNOtE4YPgBpV0yxYiAgorAPGniCoJmg==",
|
|
2274
2288
|
"dev": true,
|
|
2275
2289
|
"license": "MIT",
|
|
2276
2290
|
"dependencies": {
|
|
@@ -2281,13 +2295,13 @@
|
|
|
2281
2295
|
}
|
|
2282
2296
|
},
|
|
2283
2297
|
"node_modules/@jest/types": {
|
|
2284
|
-
"version": "30.
|
|
2285
|
-
"integrity": "sha512-
|
|
2298
|
+
"version": "30.5.1",
|
|
2299
|
+
"integrity": "sha512-LvVYn83nnXPl+Rg98nvcFgjx6nRMTArhSn6RAX/w3ELn54S8A42TYZvsCMdGUqTM8S0wyXbtlQdU6Hi6dykj9g==",
|
|
2286
2300
|
"dev": true,
|
|
2287
2301
|
"license": "MIT",
|
|
2288
2302
|
"dependencies": {
|
|
2289
|
-
"@jest/pattern": "30.
|
|
2290
|
-
"@jest/schemas": "30.
|
|
2303
|
+
"@jest/pattern": "30.5.0",
|
|
2304
|
+
"@jest/schemas": "30.5.0",
|
|
2291
2305
|
"@types/istanbul-lib-coverage": "^2.0.6",
|
|
2292
2306
|
"@types/istanbul-reports": "^3.0.4",
|
|
2293
2307
|
"@types/node": "*",
|
|
@@ -2326,8 +2340,8 @@
|
|
|
2326
2340
|
}
|
|
2327
2341
|
},
|
|
2328
2342
|
"node_modules/@jridgewell/sourcemap-codec": {
|
|
2329
|
-
"version": "1.
|
|
2330
|
-
"integrity": "sha512-
|
|
2343
|
+
"version": "1.6.0",
|
|
2344
|
+
"integrity": "sha512-T7jf+5zgsZHwNJ4lvQ7/aezbyk0nNX+zJVWpmHA7VYsEx7a7qr5Rg5IbtJFqkgze5Y2sruq1RUY8Q837Od7iFw==",
|
|
2331
2345
|
"license": "MIT"
|
|
2332
2346
|
},
|
|
2333
2347
|
"node_modules/@jridgewell/trace-mapping": {
|
|
@@ -2937,8 +2951,8 @@
|
|
|
2937
2951
|
}
|
|
2938
2952
|
},
|
|
2939
2953
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
2940
|
-
"version": "1.2.
|
|
2941
|
-
"integrity": "sha512-
|
|
2954
|
+
"version": "1.2.3",
|
|
2955
|
+
"integrity": "sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==",
|
|
2942
2956
|
"dev": true,
|
|
2943
2957
|
"license": "MIT",
|
|
2944
2958
|
"optional": true,
|
|
@@ -2953,8 +2967,8 @@
|
|
|
2953
2967
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
2954
2968
|
},
|
|
2955
2969
|
"peerDependencies": {
|
|
2956
|
-
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.
|
|
2957
|
-
"@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.
|
|
2970
|
+
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.4",
|
|
2971
|
+
"@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.4"
|
|
2958
2972
|
}
|
|
2959
2973
|
},
|
|
2960
2974
|
"node_modules/@next/env": {
|
|
@@ -3228,8 +3242,8 @@
|
|
|
3228
3242
|
"license": "MIT"
|
|
3229
3243
|
},
|
|
3230
3244
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3231
|
-
"version": "4.
|
|
3232
|
-
"integrity": "sha512-
|
|
3245
|
+
"version": "4.63.1",
|
|
3246
|
+
"integrity": "sha512-UZ8sUxPTiHWYX9QNdJedb1kDZSpS1t/VPWBWGSgqHNi9w3Cu6IXvu2mzbhiTiPvtrqgTQJ+zqiAq2iPIPilpaQ==",
|
|
3233
3247
|
"cpu": [
|
|
3234
3248
|
"arm"
|
|
3235
3249
|
],
|
|
@@ -3241,8 +3255,8 @@
|
|
|
3241
3255
|
]
|
|
3242
3256
|
},
|
|
3243
3257
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3244
|
-
"version": "4.
|
|
3245
|
-
"integrity": "sha512-
|
|
3258
|
+
"version": "4.63.1",
|
|
3259
|
+
"integrity": "sha512-cQ4nFQABN5cDvDpbvJ7bMStCpnaVxynZrRMfUJYgxcIk9Sh54FIO1vtfkg0B69REjER77ioZ/ov+eAApx/KmLQ==",
|
|
3246
3260
|
"cpu": [
|
|
3247
3261
|
"arm64"
|
|
3248
3262
|
],
|
|
@@ -3254,8 +3268,8 @@
|
|
|
3254
3268
|
]
|
|
3255
3269
|
},
|
|
3256
3270
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3257
|
-
"version": "4.
|
|
3258
|
-
"integrity": "sha512-
|
|
3271
|
+
"version": "4.63.1",
|
|
3272
|
+
"integrity": "sha512-FQNqd1lRy/0QhDk3xeRIkSBiCpXCiDnZO3YLVdcDKN1UBiKToNftCzcXYNLshmPDUMlu2TdeS8tGcsU6f3YF1Q==",
|
|
3259
3273
|
"cpu": [
|
|
3260
3274
|
"arm64"
|
|
3261
3275
|
],
|
|
@@ -3267,8 +3281,8 @@
|
|
|
3267
3281
|
]
|
|
3268
3282
|
},
|
|
3269
3283
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3270
|
-
"version": "4.
|
|
3271
|
-
"integrity": "sha512-
|
|
3284
|
+
"version": "4.63.1",
|
|
3285
|
+
"integrity": "sha512-pvD16V939D3CloK0+qikpGaxiPrDUXTe7Y5cWOMkMSy7m1cawa8EGy/kXYi/G/cKAC4HDAbSnzCIk1WmsoOKXg==",
|
|
3272
3286
|
"cpu": [
|
|
3273
3287
|
"x64"
|
|
3274
3288
|
],
|
|
@@ -3280,8 +3294,8 @@
|
|
|
3280
3294
|
]
|
|
3281
3295
|
},
|
|
3282
3296
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3283
|
-
"version": "4.
|
|
3284
|
-
"integrity": "sha512-
|
|
3297
|
+
"version": "4.63.1",
|
|
3298
|
+
"integrity": "sha512-pcFGeL2345VwdTnJhA6zLbew+YgWB0qBG2+dMtXjCicf6+rm6kO6cOoh5VnTe0ZMrMRgRyuHmCJxZWrIdzYuOw==",
|
|
3285
3299
|
"cpu": [
|
|
3286
3300
|
"arm64"
|
|
3287
3301
|
],
|
|
@@ -3293,8 +3307,8 @@
|
|
|
3293
3307
|
]
|
|
3294
3308
|
},
|
|
3295
3309
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3296
|
-
"version": "4.
|
|
3297
|
-
"integrity": "sha512
|
|
3310
|
+
"version": "4.63.1",
|
|
3311
|
+
"integrity": "sha512-mRJlqSRulVzcKq/LKA6ICSIc3K/l4fzlVn/gePn2nXIHy8seRi5z/eeRE0d/XMBxcMldiXtQTSpRj0tkkC3g8Q==",
|
|
3298
3312
|
"cpu": [
|
|
3299
3313
|
"x64"
|
|
3300
3314
|
],
|
|
@@ -3306,8 +3320,8 @@
|
|
|
3306
3320
|
]
|
|
3307
3321
|
},
|
|
3308
3322
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3309
|
-
"version": "4.
|
|
3310
|
-
"integrity": "sha512-
|
|
3323
|
+
"version": "4.63.1",
|
|
3324
|
+
"integrity": "sha512-YDUNvVM85TI3g/1OpnqKP1h4NeW/j64DfWMf+G3M809xNk1bJSnpFp4sh83NpmVE5DXnkh8ULor4LTVZKoYLHw==",
|
|
3311
3325
|
"cpu": [
|
|
3312
3326
|
"arm"
|
|
3313
3327
|
],
|
|
@@ -3319,8 +3333,8 @@
|
|
|
3319
3333
|
]
|
|
3320
3334
|
},
|
|
3321
3335
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3322
|
-
"version": "4.
|
|
3323
|
-
"integrity": "sha512-
|
|
3336
|
+
"version": "4.63.1",
|
|
3337
|
+
"integrity": "sha512-7Mcn71p9ZuQFAj+h+dhQXy/yeLePRS2yKRnmW1DijA9thKO5qap0GNOIQK4yQ6iP3SU0Mrb/yWo8h8vgRba8lw==",
|
|
3324
3338
|
"cpu": [
|
|
3325
3339
|
"arm"
|
|
3326
3340
|
],
|
|
@@ -3332,8 +3346,8 @@
|
|
|
3332
3346
|
]
|
|
3333
3347
|
},
|
|
3334
3348
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3335
|
-
"version": "4.
|
|
3336
|
-
"integrity": "sha512-
|
|
3349
|
+
"version": "4.63.1",
|
|
3350
|
+
"integrity": "sha512-4YiLQTX6U4CSl0L9cluep9A9W6UmTfqBDc2/CH6wlu54pl4E7Jn3cOD8oxzvBDEGk/JMKgJ47C8g+radF7mwvg==",
|
|
3337
3351
|
"cpu": [
|
|
3338
3352
|
"arm64"
|
|
3339
3353
|
],
|
|
@@ -3345,8 +3359,8 @@
|
|
|
3345
3359
|
]
|
|
3346
3360
|
},
|
|
3347
3361
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3348
|
-
"version": "4.
|
|
3349
|
-
"integrity": "sha512-
|
|
3362
|
+
"version": "4.63.1",
|
|
3363
|
+
"integrity": "sha512-2ra8F7w8OquwZN9z2/fKFnli69wa8PLwaVzRMIPGb13ByMJwC28Fbp8YcVGoUhlYMTt7j5j9bNgpysrN2UM+vw==",
|
|
3350
3364
|
"cpu": [
|
|
3351
3365
|
"arm64"
|
|
3352
3366
|
],
|
|
@@ -3358,8 +3372,8 @@
|
|
|
3358
3372
|
]
|
|
3359
3373
|
},
|
|
3360
3374
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3361
|
-
"version": "4.
|
|
3362
|
-
"integrity": "sha512-
|
|
3375
|
+
"version": "4.63.1",
|
|
3376
|
+
"integrity": "sha512-Sy20ncyhjmBP0Ml+UvQbimjlk6VFgjW5uNP+qqwHB00mTE8Bl2C1TuHTlRwK2YoXeZbee5lP2XevBWVkAQAtSQ==",
|
|
3363
3377
|
"cpu": [
|
|
3364
3378
|
"loong64"
|
|
3365
3379
|
],
|
|
@@ -3371,8 +3385,8 @@
|
|
|
3371
3385
|
]
|
|
3372
3386
|
},
|
|
3373
3387
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3374
|
-
"version": "4.
|
|
3375
|
-
"integrity": "sha512-
|
|
3388
|
+
"version": "4.63.1",
|
|
3389
|
+
"integrity": "sha512-noITLp8oNjYliPnGWmLyelIHwULGqbHloQHGw1rtxbWhTuWooRpnZarZQJ1y9EUC4szuCusCc+HEpUtxpIwYvA==",
|
|
3376
3390
|
"cpu": [
|
|
3377
3391
|
"loong64"
|
|
3378
3392
|
],
|
|
@@ -3384,8 +3398,8 @@
|
|
|
3384
3398
|
]
|
|
3385
3399
|
},
|
|
3386
3400
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3387
|
-
"version": "4.
|
|
3388
|
-
"integrity": "sha512-
|
|
3401
|
+
"version": "4.63.1",
|
|
3402
|
+
"integrity": "sha512-hlxxXd+F1mWiAcaFR7Sv9ZQT6m6UfI8+Vy/kFJzztq2pDMU/0wZ9sish0iszNZvsQDo8Gc0i5yuFEOz5dDf6fA==",
|
|
3389
3403
|
"cpu": [
|
|
3390
3404
|
"ppc64"
|
|
3391
3405
|
],
|
|
@@ -3397,8 +3411,8 @@
|
|
|
3397
3411
|
]
|
|
3398
3412
|
},
|
|
3399
3413
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3400
|
-
"version": "4.
|
|
3401
|
-
"integrity": "sha512-
|
|
3414
|
+
"version": "4.63.1",
|
|
3415
|
+
"integrity": "sha512-EF7OpqQTQ/BvGqLzUi4rEHuagCV9MugAUXSHemwPW5vxZ75RR+jxO/2j95Ph2dalMpFHSVECjRoioHZgA9zOYA==",
|
|
3402
3416
|
"cpu": [
|
|
3403
3417
|
"ppc64"
|
|
3404
3418
|
],
|
|
@@ -3410,8 +3424,8 @@
|
|
|
3410
3424
|
]
|
|
3411
3425
|
},
|
|
3412
3426
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3413
|
-
"version": "4.
|
|
3414
|
-
"integrity": "sha512
|
|
3427
|
+
"version": "4.63.1",
|
|
3428
|
+
"integrity": "sha512-wQO3JesW9PRkwlabQ27y7sPfVOOTLRG73I4F2UYHG5PXun3J9U3y+b7ezVKSYbsvSKGQ1k1cq8Qlun4C9kLt3w==",
|
|
3415
3429
|
"cpu": [
|
|
3416
3430
|
"riscv64"
|
|
3417
3431
|
],
|
|
@@ -3423,8 +3437,8 @@
|
|
|
3423
3437
|
]
|
|
3424
3438
|
},
|
|
3425
3439
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3426
|
-
"version": "4.
|
|
3427
|
-
"integrity": "sha512-
|
|
3440
|
+
"version": "4.63.1",
|
|
3441
|
+
"integrity": "sha512-ouAGwhO6wHRXdnOVCOsB0tRFkA7nhNB2Nwax6oECXN0YiN8EYUTBAOudADOB1PI+yDL61TeNx/u7MVCzksNbkQ==",
|
|
3428
3442
|
"cpu": [
|
|
3429
3443
|
"riscv64"
|
|
3430
3444
|
],
|
|
@@ -3436,8 +3450,8 @@
|
|
|
3436
3450
|
]
|
|
3437
3451
|
},
|
|
3438
3452
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3439
|
-
"version": "4.
|
|
3440
|
-
"integrity": "sha512-
|
|
3453
|
+
"version": "4.63.1",
|
|
3454
|
+
"integrity": "sha512-q2R38Sn+1J8RxhfJ+T54wSWmyKXWec+9jgDfqO2AtArEqHO5R2aeayp5H5OYLr5UYDVGsVaZPEFUooMhYCdz5A==",
|
|
3441
3455
|
"cpu": [
|
|
3442
3456
|
"s390x"
|
|
3443
3457
|
],
|
|
@@ -3449,8 +3463,8 @@
|
|
|
3449
3463
|
]
|
|
3450
3464
|
},
|
|
3451
3465
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3452
|
-
"version": "4.
|
|
3453
|
-
"integrity": "sha512-
|
|
3466
|
+
"version": "4.63.1",
|
|
3467
|
+
"integrity": "sha512-gfI5T24WLLuFfSKw7Go/zDXjAAV0fny0swTaDv+WjK7vqcw4cRhFfdsyKL1n+ukI+ooBxn3bVQnyrn06WpI50w==",
|
|
3454
3468
|
"cpu": [
|
|
3455
3469
|
"x64"
|
|
3456
3470
|
],
|
|
@@ -3462,8 +3476,8 @@
|
|
|
3462
3476
|
]
|
|
3463
3477
|
},
|
|
3464
3478
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3465
|
-
"version": "4.
|
|
3466
|
-
"integrity": "sha512-
|
|
3479
|
+
"version": "4.63.1",
|
|
3480
|
+
"integrity": "sha512-4h6XqthmB4Hspji84wvgk+ElodTsGj+dbZqHJHHtKxj4mYq0ANSEEPX9ys3moJueqsRjwpaJYH7874Itwnj2ow==",
|
|
3467
3481
|
"cpu": [
|
|
3468
3482
|
"x64"
|
|
3469
3483
|
],
|
|
@@ -3475,8 +3489,8 @@
|
|
|
3475
3489
|
]
|
|
3476
3490
|
},
|
|
3477
3491
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3478
|
-
"version": "4.
|
|
3479
|
-
"integrity": "sha512-
|
|
3492
|
+
"version": "4.63.1",
|
|
3493
|
+
"integrity": "sha512-dlfCOa87o1VAYegLQ9EKilx2JCeRofiyPGhTCmqnuXZ6bMPiycO1rq1+sKoulAp7pGLIsTIw+1x5R+zgh5LhhA==",
|
|
3480
3494
|
"cpu": [
|
|
3481
3495
|
"x64"
|
|
3482
3496
|
],
|
|
@@ -3488,8 +3502,8 @@
|
|
|
3488
3502
|
]
|
|
3489
3503
|
},
|
|
3490
3504
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3491
|
-
"version": "4.
|
|
3492
|
-
"integrity": "sha512-
|
|
3505
|
+
"version": "4.63.1",
|
|
3506
|
+
"integrity": "sha512-cjkLbOlfcm3QGhMM1J5zaZjsw1GggbN6rw9UTSSRrPrR1KkcXnN7Uq9rPw34xImQ9VOY9GN+6u2Zj80B9ptkcw==",
|
|
3493
3507
|
"cpu": [
|
|
3494
3508
|
"arm64"
|
|
3495
3509
|
],
|
|
@@ -3501,8 +3515,8 @@
|
|
|
3501
3515
|
]
|
|
3502
3516
|
},
|
|
3503
3517
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3504
|
-
"version": "4.
|
|
3505
|
-
"integrity": "sha512-
|
|
3518
|
+
"version": "4.63.1",
|
|
3519
|
+
"integrity": "sha512-Li1KdUnWGE4N3e1F/B4RTB1ms+nG4WBgjByO46pkeBVX/2UBsY53xf5vK9WygVmnH3RwncIST7lkSdLSY6P9lg==",
|
|
3506
3520
|
"cpu": [
|
|
3507
3521
|
"arm64"
|
|
3508
3522
|
],
|
|
@@ -3514,8 +3528,8 @@
|
|
|
3514
3528
|
]
|
|
3515
3529
|
},
|
|
3516
3530
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3517
|
-
"version": "4.
|
|
3518
|
-
"integrity": "sha512-
|
|
3531
|
+
"version": "4.63.1",
|
|
3532
|
+
"integrity": "sha512-t4ZYOSoLTgwhuFMrmTMLx/+i1DQVK7HYqMc6kY46EApwi8X0nIVphzdNoThU3xt6n+N5urG1/gxBdCaKDLavfg==",
|
|
3519
3533
|
"cpu": [
|
|
3520
3534
|
"ia32"
|
|
3521
3535
|
],
|
|
@@ -3527,8 +3541,8 @@
|
|
|
3527
3541
|
]
|
|
3528
3542
|
},
|
|
3529
3543
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3530
|
-
"version": "4.
|
|
3531
|
-
"integrity": "sha512-
|
|
3544
|
+
"version": "4.63.1",
|
|
3545
|
+
"integrity": "sha512-RgroPfMmKlD1RzSDxvwgcPiy2HNQKoYV7OmwIXDsk73uKW5t6B/V8KIy27SMv/FNXFo/oSBtWc9J0X7t91ezZg==",
|
|
3532
3546
|
"cpu": [
|
|
3533
3547
|
"x64"
|
|
3534
3548
|
],
|
|
@@ -3540,8 +3554,8 @@
|
|
|
3540
3554
|
]
|
|
3541
3555
|
},
|
|
3542
3556
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3543
|
-
"version": "4.
|
|
3544
|
-
"integrity": "sha512-
|
|
3557
|
+
"version": "4.63.1",
|
|
3558
|
+
"integrity": "sha512-at8QVep6S3h5Y6gSbdGU06bRY5WJkf6WUduM9YtvYMbYhB1MOFfUgc6kehitQXzOtMSaT70q7f9ydPhpqu821w==",
|
|
3545
3559
|
"cpu": [
|
|
3546
3560
|
"x64"
|
|
3547
3561
|
],
|
|
@@ -3999,8 +4013,8 @@
|
|
|
3999
4013
|
"license": "MIT"
|
|
4000
4014
|
},
|
|
4001
4015
|
"node_modules/@types/d3-shape": {
|
|
4002
|
-
"version": "3.
|
|
4003
|
-
"integrity": "sha512-
|
|
4016
|
+
"version": "3.2.0",
|
|
4017
|
+
"integrity": "sha512-kVd74ta9eof3eJOvbNd1vGKS/XERRyQbT26Og63hIsvDO84cjD5gEOhsXf26w3FSoNlPVz84DOFcKv/oou+fMw==",
|
|
4004
4018
|
"dev": true,
|
|
4005
4019
|
"license": "MIT",
|
|
4006
4020
|
"dependencies": {
|
|
@@ -4128,15 +4142,15 @@
|
|
|
4128
4142
|
}
|
|
4129
4143
|
},
|
|
4130
4144
|
"node_modules/@types/jest/node_modules/pretty-format": {
|
|
4131
|
-
"version": "30.
|
|
4132
|
-
"integrity": "sha512-
|
|
4145
|
+
"version": "30.5.1",
|
|
4146
|
+
"integrity": "sha512-byhRAPguVKMQIj4kjJwJ5lAskVhfuiSdiYl/aLTWpgkGEmic2jYhJh1yE9ih8Ox44Xg9ccCT11/S6QrzSJuNrg==",
|
|
4133
4147
|
"dev": true,
|
|
4134
4148
|
"license": "MIT",
|
|
4135
4149
|
"dependencies": {
|
|
4136
|
-
"@jest/
|
|
4137
|
-
"
|
|
4138
|
-
"
|
|
4139
|
-
"
|
|
4150
|
+
"@jest/react-is-18": "npm:react-is@^18.3.1",
|
|
4151
|
+
"@jest/react-is-19": "npm:react-is@^19.2.5",
|
|
4152
|
+
"@jest/schemas": "30.5.0",
|
|
4153
|
+
"ansi-styles": "^5.2.0"
|
|
4140
4154
|
},
|
|
4141
4155
|
"engines": {
|
|
4142
4156
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
@@ -4279,16 +4293,16 @@
|
|
|
4279
4293
|
"license": "MIT"
|
|
4280
4294
|
},
|
|
4281
4295
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4282
|
-
"version": "8.
|
|
4283
|
-
"integrity": "sha512-
|
|
4296
|
+
"version": "8.69.0",
|
|
4297
|
+
"integrity": "sha512-t5jQTKPIgVW1PE6dR6H6Qz5gm8zjMlX5/2gRaOGd9eO6V7J+tQc6iWKukEe7dY8u9HyYasQ0yfF0/FSSTEO2gA==",
|
|
4284
4298
|
"dev": true,
|
|
4285
4299
|
"license": "MIT",
|
|
4286
4300
|
"dependencies": {
|
|
4287
4301
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4288
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4289
|
-
"@typescript-eslint/type-utils": "8.
|
|
4290
|
-
"@typescript-eslint/utils": "8.
|
|
4291
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4302
|
+
"@typescript-eslint/scope-manager": "8.69.0",
|
|
4303
|
+
"@typescript-eslint/type-utils": "8.69.0",
|
|
4304
|
+
"@typescript-eslint/utils": "8.69.0",
|
|
4305
|
+
"@typescript-eslint/visitor-keys": "8.69.0",
|
|
4292
4306
|
"ignore": "^7.0.5",
|
|
4293
4307
|
"natural-compare": "^1.4.0",
|
|
4294
4308
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4301,14 +4315,14 @@
|
|
|
4301
4315
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4302
4316
|
},
|
|
4303
4317
|
"peerDependencies": {
|
|
4304
|
-
"@typescript-eslint/parser": "^8.
|
|
4318
|
+
"@typescript-eslint/parser": "^8.69.0",
|
|
4305
4319
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4306
4320
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4307
4321
|
}
|
|
4308
4322
|
},
|
|
4309
4323
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
4310
|
-
"version": "7.0.
|
|
4311
|
-
"integrity": "sha512-
|
|
4324
|
+
"version": "7.0.8",
|
|
4325
|
+
"integrity": "sha512-YYNsSlXBjMk92SKnkwvB5LOVSa6OznlFUGcsvrFgNJbJCd0M1XKeFVRc8ZByeCqz32FivYNHJVooLmdqrmvp/Q==",
|
|
4312
4326
|
"dev": true,
|
|
4313
4327
|
"license": "MIT",
|
|
4314
4328
|
"engines": {
|
|
@@ -4316,15 +4330,15 @@
|
|
|
4316
4330
|
}
|
|
4317
4331
|
},
|
|
4318
4332
|
"node_modules/@typescript-eslint/parser": {
|
|
4319
|
-
"version": "8.
|
|
4320
|
-
"integrity": "sha512-
|
|
4333
|
+
"version": "8.69.0",
|
|
4334
|
+
"integrity": "sha512-l4b0DhWioGg6Gt2ebGlvfkFMOjRsauxtsnDRwUSRX1qHq3HdTfQHV8wW9zEXeciai6HfeaKOedQn2Zoofx3WBw==",
|
|
4321
4335
|
"dev": true,
|
|
4322
4336
|
"license": "MIT",
|
|
4323
4337
|
"dependencies": {
|
|
4324
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4325
|
-
"@typescript-eslint/types": "8.
|
|
4326
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4327
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4338
|
+
"@typescript-eslint/scope-manager": "8.69.0",
|
|
4339
|
+
"@typescript-eslint/types": "8.69.0",
|
|
4340
|
+
"@typescript-eslint/typescript-estree": "8.69.0",
|
|
4341
|
+
"@typescript-eslint/visitor-keys": "8.69.0",
|
|
4328
4342
|
"debug": "^4.4.3"
|
|
4329
4343
|
},
|
|
4330
4344
|
"engines": {
|
|
@@ -4340,13 +4354,13 @@
|
|
|
4340
4354
|
}
|
|
4341
4355
|
},
|
|
4342
4356
|
"node_modules/@typescript-eslint/project-service": {
|
|
4343
|
-
"version": "8.
|
|
4344
|
-
"integrity": "sha512-
|
|
4357
|
+
"version": "8.69.0",
|
|
4358
|
+
"integrity": "sha512-yi4obFrHMmnsesWehHbkg9zMA7Jt8cXT+mKM08G999pH1yT6nqgsHx7MYm0uY1wAj8CqiBXYRJ7WAT0QdQHQXg==",
|
|
4345
4359
|
"dev": true,
|
|
4346
4360
|
"license": "MIT",
|
|
4347
4361
|
"dependencies": {
|
|
4348
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4349
|
-
"@typescript-eslint/types": "^8.
|
|
4362
|
+
"@typescript-eslint/tsconfig-utils": "^8.69.0",
|
|
4363
|
+
"@typescript-eslint/types": "^8.69.0",
|
|
4350
4364
|
"debug": "^4.4.3"
|
|
4351
4365
|
},
|
|
4352
4366
|
"engines": {
|
|
@@ -4361,13 +4375,13 @@
|
|
|
4361
4375
|
}
|
|
4362
4376
|
},
|
|
4363
4377
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4364
|
-
"version": "8.
|
|
4365
|
-
"integrity": "sha512-
|
|
4378
|
+
"version": "8.69.0",
|
|
4379
|
+
"integrity": "sha512-ewfspqWvSxKSOaplqAUNbaSFO0eB6w1EtQ+esfYFRm3614Ty4uNtExkcbgd6nWsXphbqKyf9ZYdbZdv2xEoWEQ==",
|
|
4366
4380
|
"dev": true,
|
|
4367
4381
|
"license": "MIT",
|
|
4368
4382
|
"dependencies": {
|
|
4369
|
-
"@typescript-eslint/types": "8.
|
|
4370
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4383
|
+
"@typescript-eslint/types": "8.69.0",
|
|
4384
|
+
"@typescript-eslint/visitor-keys": "8.69.0"
|
|
4371
4385
|
},
|
|
4372
4386
|
"engines": {
|
|
4373
4387
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4378,8 +4392,8 @@
|
|
|
4378
4392
|
}
|
|
4379
4393
|
},
|
|
4380
4394
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4381
|
-
"version": "8.
|
|
4382
|
-
"integrity": "sha512-
|
|
4395
|
+
"version": "8.69.0",
|
|
4396
|
+
"integrity": "sha512-xNqK7YTDZsLniQMV/4rpFR8Z5JlqeRvVjuG1YgF/mdPVH84HSD19L8CczMA0qg2RfwEV231GHH3VnToJDo4MfQ==",
|
|
4383
4397
|
"dev": true,
|
|
4384
4398
|
"license": "MIT",
|
|
4385
4399
|
"engines": {
|
|
@@ -4394,14 +4408,14 @@
|
|
|
4394
4408
|
}
|
|
4395
4409
|
},
|
|
4396
4410
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4397
|
-
"version": "8.
|
|
4398
|
-
"integrity": "sha512-
|
|
4411
|
+
"version": "8.69.0",
|
|
4412
|
+
"integrity": "sha512-ZfoJAVg3JZndQEpEl9petVlxau3lRuElc4HRMuAlLCf8to04/iHz692RUSNmXKDjEuJmIL+KZ2/BsOcBc16dsA==",
|
|
4399
4413
|
"dev": true,
|
|
4400
4414
|
"license": "MIT",
|
|
4401
4415
|
"dependencies": {
|
|
4402
|
-
"@typescript-eslint/types": "8.
|
|
4403
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4404
|
-
"@typescript-eslint/utils": "8.
|
|
4416
|
+
"@typescript-eslint/types": "8.69.0",
|
|
4417
|
+
"@typescript-eslint/typescript-estree": "8.69.0",
|
|
4418
|
+
"@typescript-eslint/utils": "8.69.0",
|
|
4405
4419
|
"debug": "^4.4.3",
|
|
4406
4420
|
"ts-api-utils": "^2.5.0"
|
|
4407
4421
|
},
|
|
@@ -4418,8 +4432,8 @@
|
|
|
4418
4432
|
}
|
|
4419
4433
|
},
|
|
4420
4434
|
"node_modules/@typescript-eslint/types": {
|
|
4421
|
-
"version": "8.
|
|
4422
|
-
"integrity": "sha512-
|
|
4435
|
+
"version": "8.69.0",
|
|
4436
|
+
"integrity": "sha512-K3VrubUPhlo9VDBS6QdI8YB5j7ClpqLRdefcz6PFrhnwicehBweqQ9Evhl4l+FYz0HdDmMqIiSX0aldGRYtDCA==",
|
|
4423
4437
|
"dev": true,
|
|
4424
4438
|
"license": "MIT",
|
|
4425
4439
|
"engines": {
|
|
@@ -4431,15 +4445,15 @@
|
|
|
4431
4445
|
}
|
|
4432
4446
|
},
|
|
4433
4447
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4434
|
-
"version": "8.
|
|
4435
|
-
"integrity": "sha512-
|
|
4448
|
+
"version": "8.69.0",
|
|
4449
|
+
"integrity": "sha512-AdFkgqck3Vudb/kWnxlyafU/4aBhHrbQ9locP2N4psXTy5mOBg0SHJumnLvx7r6g1gV4DKvUFwV2nJZBoqOD8w==",
|
|
4436
4450
|
"dev": true,
|
|
4437
4451
|
"license": "MIT",
|
|
4438
4452
|
"dependencies": {
|
|
4439
|
-
"@typescript-eslint/project-service": "8.
|
|
4440
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4441
|
-
"@typescript-eslint/types": "8.
|
|
4442
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4453
|
+
"@typescript-eslint/project-service": "8.69.0",
|
|
4454
|
+
"@typescript-eslint/tsconfig-utils": "8.69.0",
|
|
4455
|
+
"@typescript-eslint/types": "8.69.0",
|
|
4456
|
+
"@typescript-eslint/visitor-keys": "8.69.0",
|
|
4443
4457
|
"debug": "^4.4.3",
|
|
4444
4458
|
"minimatch": "^10.2.2",
|
|
4445
4459
|
"semver": "^7.7.3",
|
|
@@ -4506,15 +4520,15 @@
|
|
|
4506
4520
|
}
|
|
4507
4521
|
},
|
|
4508
4522
|
"node_modules/@typescript-eslint/utils": {
|
|
4509
|
-
"version": "8.
|
|
4510
|
-
"integrity": "sha512-
|
|
4523
|
+
"version": "8.69.0",
|
|
4524
|
+
"integrity": "sha512-tUbx60BBqQa31kXF5MCsOOLL5E/WzUuxIn7YpAvq+eaUlqvk8/NXnXMBNAdLCr0icjkzem7iUA5QqWHe/hJ1aw==",
|
|
4511
4525
|
"dev": true,
|
|
4512
4526
|
"license": "MIT",
|
|
4513
4527
|
"dependencies": {
|
|
4514
4528
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4515
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4516
|
-
"@typescript-eslint/types": "8.
|
|
4517
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4529
|
+
"@typescript-eslint/scope-manager": "8.69.0",
|
|
4530
|
+
"@typescript-eslint/types": "8.69.0",
|
|
4531
|
+
"@typescript-eslint/typescript-estree": "8.69.0"
|
|
4518
4532
|
},
|
|
4519
4533
|
"engines": {
|
|
4520
4534
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4529,12 +4543,12 @@
|
|
|
4529
4543
|
}
|
|
4530
4544
|
},
|
|
4531
4545
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4532
|
-
"version": "8.
|
|
4533
|
-
"integrity": "sha512
|
|
4546
|
+
"version": "8.69.0",
|
|
4547
|
+
"integrity": "sha512-+rmdgPA+EXkNgKYvHvFfhrs35utXbwaC5PGpDquSXcoXQDKUA5UjV0LmTucG/4JXkM31BTu4TilHtrN8IVBe8w==",
|
|
4534
4548
|
"dev": true,
|
|
4535
4549
|
"license": "MIT",
|
|
4536
4550
|
"dependencies": {
|
|
4537
|
-
"@typescript-eslint/types": "8.
|
|
4551
|
+
"@typescript-eslint/types": "8.69.0",
|
|
4538
4552
|
"eslint-visitor-keys": "^5.0.0"
|
|
4539
4553
|
},
|
|
4540
4554
|
"engines": {
|
|
@@ -5044,8 +5058,8 @@
|
|
|
5044
5058
|
}
|
|
5045
5059
|
},
|
|
5046
5060
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5047
|
-
"version": "
|
|
5048
|
-
"integrity": "sha512-
|
|
5061
|
+
"version": "12.0.0-rc.335",
|
|
5062
|
+
"integrity": "sha512-oLNURbSIEkAUDWuQKT/OCUMrCY5qS0zUCk8ka/sFdbbDaIVVF6c9F/uOdtGQm//iFJQz2Qv740mr6m+WR4nwIw==",
|
|
5049
5063
|
"license": "ISC",
|
|
5050
5064
|
"dependencies": {
|
|
5051
5065
|
"@angular/compiler": "12.2.1",
|
|
@@ -5292,17 +5306,22 @@
|
|
|
5292
5306
|
}
|
|
5293
5307
|
},
|
|
5294
5308
|
"node_modules/@wavemaker-ai/variables": {
|
|
5295
|
-
"version": "
|
|
5296
|
-
"integrity": "sha512-
|
|
5309
|
+
"version": "12.0.0-rc.335",
|
|
5310
|
+
"integrity": "sha512-54mk7SbcoYlYwRVOq9vEmcQ+gHpzvi+iVeU4ouX0tBSf9gdVD7lXd4GU4RP0Nd2VWDvUQQCFkKqxCkETI12cvQ==",
|
|
5297
5311
|
"license": "ISC",
|
|
5298
5312
|
"dependencies": {
|
|
5299
|
-
"@metrichor/jmespath": "
|
|
5300
|
-
"he": "
|
|
5301
|
-
"lodash-es": "
|
|
5302
|
-
"moment": "
|
|
5303
|
-
"x2js": "
|
|
5313
|
+
"@metrichor/jmespath": "0.3.1",
|
|
5314
|
+
"he": "1.2.0",
|
|
5315
|
+
"lodash-es": "4.18.1",
|
|
5316
|
+
"moment": "2.30.1",
|
|
5317
|
+
"x2js": "3.4.4"
|
|
5304
5318
|
}
|
|
5305
5319
|
},
|
|
5320
|
+
"node_modules/@wavemaker-ai/variables/node_modules/lodash-es": {
|
|
5321
|
+
"version": "4.18.1",
|
|
5322
|
+
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
|
5323
|
+
"license": "MIT"
|
|
5324
|
+
},
|
|
5306
5325
|
"node_modules/@wavemaker/nvd3": {
|
|
5307
5326
|
"version": "1.8.16",
|
|
5308
5327
|
"integrity": "sha512-gzgcW3Gr3MYUpYqbhWXVlUq8NhWpBFCz/QKF+Ekvi6pUjTHDLfe264HgiyrPs0PbCPsqN7Z/cFNbQTYJZC+fzQ==",
|
|
@@ -5312,8 +5331,8 @@
|
|
|
5312
5331
|
}
|
|
5313
5332
|
},
|
|
5314
5333
|
"node_modules/@xmldom/xmldom": {
|
|
5315
|
-
"version": "0.8.
|
|
5316
|
-
"integrity": "sha512
|
|
5334
|
+
"version": "0.8.15",
|
|
5335
|
+
"integrity": "sha512-/5NV/vDALVFDXgLmfsy9TRCBlKwO2LNBFzpzvb9iIj+jR+eSc6DLYYvVOdivT/jm7MtU6TebYuRmzEOI7w40UA==",
|
|
5317
5336
|
"license": "MIT",
|
|
5318
5337
|
"engines": {
|
|
5319
5338
|
"node": ">=10.0.0"
|
|
@@ -5764,8 +5783,8 @@
|
|
|
5764
5783
|
"license": "MIT"
|
|
5765
5784
|
},
|
|
5766
5785
|
"node_modules/bare-events": {
|
|
5767
|
-
"version": "2.9.
|
|
5768
|
-
"integrity": "sha512-
|
|
5786
|
+
"version": "2.9.2",
|
|
5787
|
+
"integrity": "sha512-AIPKioV7/Y/8KfZ3AAhjPJxLLbY49S64Ym5DakZlUg75qQiTgUq9hEJoEwa4eUezPUlXRy/i5NpsKvo9jgKmoA==",
|
|
5769
5788
|
"license": "Apache-2.0",
|
|
5770
5789
|
"peerDependencies": {
|
|
5771
5790
|
"bare-abort-controller": "*"
|
|
@@ -5777,8 +5796,8 @@
|
|
|
5777
5796
|
}
|
|
5778
5797
|
},
|
|
5779
5798
|
"node_modules/bare-fs": {
|
|
5780
|
-
"version": "4.8.
|
|
5781
|
-
"integrity": "sha512-
|
|
5799
|
+
"version": "4.8.1",
|
|
5800
|
+
"integrity": "sha512-N1nnXdHZAOSstz0XiHikGS4HGMH4CnSwhqWdGQQMqqdvp4Jybm9sE3R1WVnpWVd4SFkc8ryPDBLViNLwiEqECg==",
|
|
5782
5801
|
"license": "Apache-2.0",
|
|
5783
5802
|
"dependencies": {
|
|
5784
5803
|
"bare-events": "^2.5.4",
|
|
@@ -5800,13 +5819,13 @@
|
|
|
5800
5819
|
}
|
|
5801
5820
|
},
|
|
5802
5821
|
"node_modules/bare-path": {
|
|
5803
|
-
"version": "3.1.
|
|
5804
|
-
"integrity": "sha512-
|
|
5822
|
+
"version": "3.1.2",
|
|
5823
|
+
"integrity": "sha512-ZyKbsuuqK6Ag0K8pX6V5Txq6XeJRvY+wXucnFGRjiyVYP9YWDpIQugk/b+enRYrEYBJaqLzghRQpXPMR7341Nw==",
|
|
5805
5824
|
"license": "Apache-2.0"
|
|
5806
5825
|
},
|
|
5807
5826
|
"node_modules/bare-stream": {
|
|
5808
|
-
"version": "2.13.
|
|
5809
|
-
"integrity": "sha512-
|
|
5827
|
+
"version": "2.13.4",
|
|
5828
|
+
"integrity": "sha512-PcrQ8lVLbiJscNm1Kez+Yp4Gy4AHGcN1lzwjvf5NybWen7VvEgUfyfnXYJ2zNqWnzOfCb1Abq6lH8ti0syQszA==",
|
|
5810
5829
|
"license": "Apache-2.0",
|
|
5811
5830
|
"dependencies": {
|
|
5812
5831
|
"b4a": "^1.8.1",
|
|
@@ -5831,8 +5850,8 @@
|
|
|
5831
5850
|
}
|
|
5832
5851
|
},
|
|
5833
5852
|
"node_modules/bare-url": {
|
|
5834
|
-
"version": "2.5.
|
|
5835
|
-
"integrity": "sha512-
|
|
5853
|
+
"version": "2.5.4",
|
|
5854
|
+
"integrity": "sha512-Gxa7UVWBr0/edU1b+TJhn/AZvMQUj9OGspvYsaTYQrAbZA4BOTZGL3LiZxvD+CeMlDH4juwD84+eTAp/bLYW5g==",
|
|
5836
5855
|
"license": "Apache-2.0",
|
|
5837
5856
|
"dependencies": {
|
|
5838
5857
|
"bare-path": "^3.0.0"
|
|
@@ -5858,8 +5877,8 @@
|
|
|
5858
5877
|
"license": "MIT"
|
|
5859
5878
|
},
|
|
5860
5879
|
"node_modules/baseline-browser-mapping": {
|
|
5861
|
-
"version": "2.11.
|
|
5862
|
-
"integrity": "sha512-
|
|
5880
|
+
"version": "2.11.21",
|
|
5881
|
+
"integrity": "sha512-uh8vpY/1/YyFkunIDFH/12p7/7VdPKA1hejMVEbdkEaWnUz0Hesvx5EbiU6XxjyHZIOju+ZMbQJkRh+es3/spQ==",
|
|
5863
5882
|
"license": "Apache-2.0",
|
|
5864
5883
|
"bin": {
|
|
5865
5884
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5903,8 +5922,8 @@
|
|
|
5903
5922
|
}
|
|
5904
5923
|
},
|
|
5905
5924
|
"node_modules/browserslist": {
|
|
5906
|
-
"version": "4.28.
|
|
5907
|
-
"integrity": "sha512-
|
|
5925
|
+
"version": "4.28.9",
|
|
5926
|
+
"integrity": "sha512-EWazOblFYUvlGZcfGhPUPmYh3nikUxBVb+y9MJun5f3hBi812X+8MSQTujLBtgK3cf51fJWbWfOjyeO954d+Eg==",
|
|
5908
5927
|
"dev": true,
|
|
5909
5928
|
"funding": [
|
|
5910
5929
|
{
|
|
@@ -5922,11 +5941,11 @@
|
|
|
5922
5941
|
],
|
|
5923
5942
|
"license": "MIT",
|
|
5924
5943
|
"dependencies": {
|
|
5925
|
-
"baseline-browser-mapping": "^2.11.
|
|
5926
|
-
"caniuse-lite": "^1.0.
|
|
5927
|
-
"electron-to-chromium": "^1.5.
|
|
5928
|
-
"node-releases": "^2.0.
|
|
5929
|
-
"update-browserslist-db": "^1.3.
|
|
5944
|
+
"baseline-browser-mapping": "^2.11.20",
|
|
5945
|
+
"caniuse-lite": "^1.0.30001810",
|
|
5946
|
+
"electron-to-chromium": "^1.5.420",
|
|
5947
|
+
"node-releases": "^2.0.54",
|
|
5948
|
+
"update-browserslist-db": "^1.3.2"
|
|
5930
5949
|
},
|
|
5931
5950
|
"bin": {
|
|
5932
5951
|
"browserslist": "cli.js"
|
|
@@ -6030,8 +6049,8 @@
|
|
|
6030
6049
|
}
|
|
6031
6050
|
},
|
|
6032
6051
|
"node_modules/caniuse-lite": {
|
|
6033
|
-
"version": "1.0.
|
|
6034
|
-
"integrity": "sha512-
|
|
6052
|
+
"version": "1.0.30001810",
|
|
6053
|
+
"integrity": "sha512-TITQPUkaz+aVk5GL6NhOdwk1aEaNTSDPsGFWrTuhKGtjTF70jL/Oht2W4c6rXUe5fu7Ie19VIahAXHIIiWWNeg==",
|
|
6035
6054
|
"funding": [
|
|
6036
6055
|
{
|
|
6037
6056
|
"type": "opencollective",
|
|
@@ -7110,8 +7129,8 @@
|
|
|
7110
7129
|
"license": "MIT"
|
|
7111
7130
|
},
|
|
7112
7131
|
"node_modules/electron-to-chromium": {
|
|
7113
|
-
"version": "1.5.
|
|
7114
|
-
"integrity": "sha512
|
|
7132
|
+
"version": "1.5.422",
|
|
7133
|
+
"integrity": "sha512-UvA/32XqrLDdZSn7Jllo1AYNcWji/G0d5M0GTViE7KoGBiMunw3a34Sb2KO4ZZyrSEhqsxFoVhWWJshdyfKqJA==",
|
|
7115
7134
|
"dev": true,
|
|
7116
7135
|
"license": "ISC"
|
|
7117
7136
|
},
|
|
@@ -7402,6 +7421,7 @@
|
|
|
7402
7421
|
"node_modules/eslint": {
|
|
7403
7422
|
"version": "9.39.5",
|
|
7404
7423
|
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7424
|
+
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
|
|
7405
7425
|
"dev": true,
|
|
7406
7426
|
"license": "MIT",
|
|
7407
7427
|
"dependencies": {
|
|
@@ -7913,17 +7933,17 @@
|
|
|
7913
7933
|
}
|
|
7914
7934
|
},
|
|
7915
7935
|
"node_modules/expect": {
|
|
7916
|
-
"version": "30.
|
|
7917
|
-
"integrity": "sha512-
|
|
7936
|
+
"version": "30.5.1",
|
|
7937
|
+
"integrity": "sha512-m8YrYgvKe9+9gEnWEuKz+qCGfHqkrff7PPfyDnOFkjsfYRKqiYyOxDFMFieCGAuhtk/VNm63tvNgKZVzVy+Hvg==",
|
|
7918
7938
|
"dev": true,
|
|
7919
7939
|
"license": "MIT",
|
|
7920
7940
|
"dependencies": {
|
|
7921
|
-
"@jest/expect-utils": "30.
|
|
7922
|
-
"@jest/get-type": "30.
|
|
7923
|
-
"jest-matcher-utils": "30.
|
|
7924
|
-
"jest-message-util": "30.
|
|
7925
|
-
"jest-mock": "30.
|
|
7926
|
-
"jest-util": "30.
|
|
7941
|
+
"@jest/expect-utils": "30.5.1",
|
|
7942
|
+
"@jest/get-type": "30.5.0",
|
|
7943
|
+
"jest-matcher-utils": "30.5.1",
|
|
7944
|
+
"jest-message-util": "30.5.1",
|
|
7945
|
+
"jest-mock": "30.5.1",
|
|
7946
|
+
"jest-util": "30.5.1"
|
|
7927
7947
|
},
|
|
7928
7948
|
"engines": {
|
|
7929
7949
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
@@ -7990,8 +8010,8 @@
|
|
|
7990
8010
|
"license": "MIT"
|
|
7991
8011
|
},
|
|
7992
8012
|
"node_modules/fastq": {
|
|
7993
|
-
"version": "1.20.
|
|
7994
|
-
"integrity": "sha512-
|
|
8013
|
+
"version": "1.20.3",
|
|
8014
|
+
"integrity": "sha512-XKv5nnLs6nLF71NgiKJLIZFLkPyIEuOselLG7ujZnGrRfQK8HpvY+WqKhAJUAdLomwVHErVS4LfxFlPq0/FTAw==",
|
|
7995
8015
|
"dev": true,
|
|
7996
8016
|
"license": "ISC",
|
|
7997
8017
|
"dependencies": {
|
|
@@ -8344,8 +8364,8 @@
|
|
|
8344
8364
|
}
|
|
8345
8365
|
},
|
|
8346
8366
|
"node_modules/get-tsconfig": {
|
|
8347
|
-
"version": "4.14.
|
|
8348
|
-
"integrity": "sha512
|
|
8367
|
+
"version": "4.14.3",
|
|
8368
|
+
"integrity": "sha512-++QEw4DIY7WGoukz+/+A/8dGYPT9l9yIadnmSgZ8Rjr3YVSVDipQSO9CdnJo9ePqFqUUqh+wk9uIaoiAwsiPkA==",
|
|
8349
8369
|
"dev": true,
|
|
8350
8370
|
"license": "MIT",
|
|
8351
8371
|
"dependencies": {
|
|
@@ -9452,15 +9472,15 @@
|
|
|
9452
9472
|
"license": "MIT"
|
|
9453
9473
|
},
|
|
9454
9474
|
"node_modules/jest-diff": {
|
|
9455
|
-
"version": "30.
|
|
9456
|
-
"integrity": "sha512-
|
|
9475
|
+
"version": "30.5.1",
|
|
9476
|
+
"integrity": "sha512-e3cNNMpv8Kh20MjjphTXs+3Vz7DQyLM1nft7KJhnh46atFhjVJRa+0Hq0beywuwsACtMQUBihQkFl8zxb7gt1Q==",
|
|
9457
9477
|
"dev": true,
|
|
9458
9478
|
"license": "MIT",
|
|
9459
9479
|
"dependencies": {
|
|
9460
|
-
"@jest/diff-sequences": "30.
|
|
9461
|
-
"@jest/get-type": "30.
|
|
9480
|
+
"@jest/diff-sequences": "30.5.0",
|
|
9481
|
+
"@jest/get-type": "30.5.0",
|
|
9462
9482
|
"chalk": "^4.1.2",
|
|
9463
|
-
"pretty-format": "30.
|
|
9483
|
+
"pretty-format": "30.5.1"
|
|
9464
9484
|
},
|
|
9465
9485
|
"engines": {
|
|
9466
9486
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
@@ -9479,15 +9499,15 @@
|
|
|
9479
9499
|
}
|
|
9480
9500
|
},
|
|
9481
9501
|
"node_modules/jest-diff/node_modules/pretty-format": {
|
|
9482
|
-
"version": "30.
|
|
9483
|
-
"integrity": "sha512-
|
|
9502
|
+
"version": "30.5.1",
|
|
9503
|
+
"integrity": "sha512-byhRAPguVKMQIj4kjJwJ5lAskVhfuiSdiYl/aLTWpgkGEmic2jYhJh1yE9ih8Ox44Xg9ccCT11/S6QrzSJuNrg==",
|
|
9484
9504
|
"dev": true,
|
|
9485
9505
|
"license": "MIT",
|
|
9486
9506
|
"dependencies": {
|
|
9487
|
-
"@jest/
|
|
9488
|
-
"
|
|
9489
|
-
"
|
|
9490
|
-
"
|
|
9507
|
+
"@jest/react-is-18": "npm:react-is@^18.3.1",
|
|
9508
|
+
"@jest/react-is-19": "npm:react-is@^19.2.5",
|
|
9509
|
+
"@jest/schemas": "30.5.0",
|
|
9510
|
+
"ansi-styles": "^5.2.0"
|
|
9491
9511
|
},
|
|
9492
9512
|
"engines": {
|
|
9493
9513
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
@@ -9503,15 +9523,15 @@
|
|
|
9503
9523
|
}
|
|
9504
9524
|
},
|
|
9505
9525
|
"node_modules/jest-matcher-utils": {
|
|
9506
|
-
"version": "30.
|
|
9507
|
-
"integrity": "sha512-
|
|
9526
|
+
"version": "30.5.1",
|
|
9527
|
+
"integrity": "sha512-aroZVqwOz/wC2y6pC+obgFWKV9viaQWQTTSB6W5H55+egtUczIfXR/rxExTv92xD/ADYwpqaYfVWx1aqwKg7FA==",
|
|
9508
9528
|
"dev": true,
|
|
9509
9529
|
"license": "MIT",
|
|
9510
9530
|
"dependencies": {
|
|
9511
|
-
"@jest/get-type": "30.
|
|
9531
|
+
"@jest/get-type": "30.5.0",
|
|
9512
9532
|
"chalk": "^4.1.2",
|
|
9513
|
-
"jest-diff": "30.
|
|
9514
|
-
"pretty-format": "30.
|
|
9533
|
+
"jest-diff": "30.5.1",
|
|
9534
|
+
"pretty-format": "30.5.1"
|
|
9515
9535
|
},
|
|
9516
9536
|
"engines": {
|
|
9517
9537
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
@@ -9530,34 +9550,34 @@
|
|
|
9530
9550
|
}
|
|
9531
9551
|
},
|
|
9532
9552
|
"node_modules/jest-matcher-utils/node_modules/pretty-format": {
|
|
9533
|
-
"version": "30.
|
|
9534
|
-
"integrity": "sha512-
|
|
9553
|
+
"version": "30.5.1",
|
|
9554
|
+
"integrity": "sha512-byhRAPguVKMQIj4kjJwJ5lAskVhfuiSdiYl/aLTWpgkGEmic2jYhJh1yE9ih8Ox44Xg9ccCT11/S6QrzSJuNrg==",
|
|
9535
9555
|
"dev": true,
|
|
9536
9556
|
"license": "MIT",
|
|
9537
9557
|
"dependencies": {
|
|
9538
|
-
"@jest/
|
|
9539
|
-
"
|
|
9540
|
-
"
|
|
9541
|
-
"
|
|
9558
|
+
"@jest/react-is-18": "npm:react-is@^18.3.1",
|
|
9559
|
+
"@jest/react-is-19": "npm:react-is@^19.2.5",
|
|
9560
|
+
"@jest/schemas": "30.5.0",
|
|
9561
|
+
"ansi-styles": "^5.2.0"
|
|
9542
9562
|
},
|
|
9543
9563
|
"engines": {
|
|
9544
9564
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
9545
9565
|
}
|
|
9546
9566
|
},
|
|
9547
9567
|
"node_modules/jest-message-util": {
|
|
9548
|
-
"version": "30.
|
|
9549
|
-
"integrity": "sha512-
|
|
9568
|
+
"version": "30.5.1",
|
|
9569
|
+
"integrity": "sha512-UdQlLdd9wL/Ys7xRErckqwD6wPlSZYueosSWuHc1r2ztGLwlgPvtSJq2+BPEgaEY13WLvfFbmhTj8pba0Sd1jg==",
|
|
9550
9570
|
"dev": true,
|
|
9551
9571
|
"license": "MIT",
|
|
9552
9572
|
"dependencies": {
|
|
9553
9573
|
"@babel/code-frame": "^7.27.1",
|
|
9554
|
-
"@jest/types": "30.
|
|
9574
|
+
"@jest/types": "30.5.1",
|
|
9555
9575
|
"@types/stack-utils": "^2.0.3",
|
|
9556
9576
|
"chalk": "^4.1.2",
|
|
9557
9577
|
"graceful-fs": "^4.2.11",
|
|
9558
|
-
"jest-util": "30.
|
|
9578
|
+
"jest-util": "30.5.1",
|
|
9559
9579
|
"picomatch": "^4.0.3",
|
|
9560
|
-
"pretty-format": "30.
|
|
9580
|
+
"pretty-format": "30.5.1",
|
|
9561
9581
|
"slash": "^3.0.0",
|
|
9562
9582
|
"stack-utils": "^2.0.6"
|
|
9563
9583
|
},
|
|
@@ -9578,37 +9598,38 @@
|
|
|
9578
9598
|
}
|
|
9579
9599
|
},
|
|
9580
9600
|
"node_modules/jest-message-util/node_modules/pretty-format": {
|
|
9581
|
-
"version": "30.
|
|
9582
|
-
"integrity": "sha512-
|
|
9601
|
+
"version": "30.5.1",
|
|
9602
|
+
"integrity": "sha512-byhRAPguVKMQIj4kjJwJ5lAskVhfuiSdiYl/aLTWpgkGEmic2jYhJh1yE9ih8Ox44Xg9ccCT11/S6QrzSJuNrg==",
|
|
9583
9603
|
"dev": true,
|
|
9584
9604
|
"license": "MIT",
|
|
9585
9605
|
"dependencies": {
|
|
9586
|
-
"@jest/
|
|
9587
|
-
"
|
|
9588
|
-
"
|
|
9589
|
-
"
|
|
9606
|
+
"@jest/react-is-18": "npm:react-is@^18.3.1",
|
|
9607
|
+
"@jest/react-is-19": "npm:react-is@^19.2.5",
|
|
9608
|
+
"@jest/schemas": "30.5.0",
|
|
9609
|
+
"ansi-styles": "^5.2.0"
|
|
9590
9610
|
},
|
|
9591
9611
|
"engines": {
|
|
9592
9612
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
9593
9613
|
}
|
|
9594
9614
|
},
|
|
9595
9615
|
"node_modules/jest-mock": {
|
|
9596
|
-
"version": "30.
|
|
9597
|
-
"integrity": "sha512
|
|
9616
|
+
"version": "30.5.1",
|
|
9617
|
+
"integrity": "sha512-9fVjc3leUpGID2/by/LU4Dvdcp7PFh9LlxS3QRWK3ABm+KtvEVsG/AEGeLY3gKOZsjkBxyfwGltoAVlW7dygHg==",
|
|
9598
9618
|
"dev": true,
|
|
9599
9619
|
"license": "MIT",
|
|
9600
9620
|
"dependencies": {
|
|
9601
|
-
"@jest/
|
|
9621
|
+
"@jest/expect-utils": "30.5.1",
|
|
9622
|
+
"@jest/types": "30.5.1",
|
|
9602
9623
|
"@types/node": "*",
|
|
9603
|
-
"jest-util": "30.
|
|
9624
|
+
"jest-util": "30.5.1"
|
|
9604
9625
|
},
|
|
9605
9626
|
"engines": {
|
|
9606
9627
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
9607
9628
|
}
|
|
9608
9629
|
},
|
|
9609
9630
|
"node_modules/jest-regex-util": {
|
|
9610
|
-
"version": "30.
|
|
9611
|
-
"integrity": "sha512-
|
|
9631
|
+
"version": "30.5.0",
|
|
9632
|
+
"integrity": "sha512-Mg0WK7A6xRHLSA1udJ8y9f3lM0uUhFTBnLKzwPmqB9AylvpleJ6BLemR8K9dK27DY+cesDryoA7yLZCAHsPG1A==",
|
|
9612
9633
|
"dev": true,
|
|
9613
9634
|
"license": "MIT",
|
|
9614
9635
|
"engines": {
|
|
@@ -9616,12 +9637,12 @@
|
|
|
9616
9637
|
}
|
|
9617
9638
|
},
|
|
9618
9639
|
"node_modules/jest-util": {
|
|
9619
|
-
"version": "30.
|
|
9620
|
-
"integrity": "sha512-
|
|
9640
|
+
"version": "30.5.1",
|
|
9641
|
+
"integrity": "sha512-yKuxmNy2rSbTXw+3SIPanJo+nV4/BS1p26v44IYBFMsswSQySfMMcPHErnOncda7i9HEz0q605rIhSTBVgrZTg==",
|
|
9621
9642
|
"dev": true,
|
|
9622
9643
|
"license": "MIT",
|
|
9623
9644
|
"dependencies": {
|
|
9624
|
-
"@jest/types": "30.
|
|
9645
|
+
"@jest/types": "30.5.1",
|
|
9625
9646
|
"@types/node": "*",
|
|
9626
9647
|
"chalk": "^4.1.2",
|
|
9627
9648
|
"ci-info": "^4.2.0",
|
|
@@ -9633,8 +9654,8 @@
|
|
|
9633
9654
|
}
|
|
9634
9655
|
},
|
|
9635
9656
|
"node_modules/jodit": {
|
|
9636
|
-
"version": "4.
|
|
9637
|
-
"integrity": "sha512
|
|
9657
|
+
"version": "4.14.2",
|
|
9658
|
+
"integrity": "sha512-+/VWCJZaRpEOVqVw+20vCf3z7SiE9zxrr6EMoFGa3EKvcDv2HEql3d5TBEWCJzecxA9z5SxPDZUHQiRpyxz98Q==",
|
|
9638
9659
|
"license": "MIT",
|
|
9639
9660
|
"funding": {
|
|
9640
9661
|
"type": "commercial",
|
|
@@ -9667,8 +9688,8 @@
|
|
|
9667
9688
|
"license": "MIT"
|
|
9668
9689
|
},
|
|
9669
9690
|
"node_modules/js-yaml": {
|
|
9670
|
-
"version": "4.3.
|
|
9671
|
-
"integrity": "sha512-
|
|
9691
|
+
"version": "4.3.2",
|
|
9692
|
+
"integrity": "sha512-SFNOvSJ+Dgf/9An904Yx+CgSlIPCkIpao4qo51lpee25TIRejdH3rhR4EZMGoNx3/TP3O+wzWuiTFl4sqbltzA==",
|
|
9672
9693
|
"dev": true,
|
|
9673
9694
|
"funding": [
|
|
9674
9695
|
{
|
|
@@ -10646,8 +10667,8 @@
|
|
|
10646
10667
|
}
|
|
10647
10668
|
},
|
|
10648
10669
|
"node_modules/node-releases": {
|
|
10649
|
-
"version": "2.0.
|
|
10650
|
-
"integrity": "sha512-
|
|
10670
|
+
"version": "2.0.54",
|
|
10671
|
+
"integrity": "sha512-YHs7BmmcsdAI5Ozuf8JZo6PT0mv2GIWC9vMfvUC3dp65M8hn7Ux8CPL+2oBI7juNuj9d0ndhTcznq2ODBps9cQ==",
|
|
10651
10672
|
"dev": true,
|
|
10652
10673
|
"license": "MIT",
|
|
10653
10674
|
"engines": {
|
|
@@ -11059,8 +11080,8 @@
|
|
|
11059
11080
|
"license": "ISC"
|
|
11060
11081
|
},
|
|
11061
11082
|
"node_modules/picomatch": {
|
|
11062
|
-
"version": "4.0.
|
|
11063
|
-
"integrity": "sha512-
|
|
11083
|
+
"version": "4.0.7",
|
|
11084
|
+
"integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
|
|
11064
11085
|
"license": "MIT",
|
|
11065
11086
|
"engines": {
|
|
11066
11087
|
"node": ">=12"
|
|
@@ -11190,8 +11211,8 @@
|
|
|
11190
11211
|
"license": "MIT"
|
|
11191
11212
|
},
|
|
11192
11213
|
"node_modules/pretty-ms": {
|
|
11193
|
-
"version": "9.3.
|
|
11194
|
-
"integrity": "sha512-
|
|
11214
|
+
"version": "9.3.1",
|
|
11215
|
+
"integrity": "sha512-HzMy3Geq23nVALD/M2LliU+F+M+gVNsvkQWWqeBZ8HDiCgzo6YPJ/Omrmtq24EFrIsk0a3EkQGEd7bDOo+IhGA==",
|
|
11195
11216
|
"license": "MIT",
|
|
11196
11217
|
"dependencies": {
|
|
11197
11218
|
"parse-ms": "^4.0.0"
|
|
@@ -11282,18 +11303,18 @@
|
|
|
11282
11303
|
}
|
|
11283
11304
|
},
|
|
11284
11305
|
"node_modules/react-aria": {
|
|
11285
|
-
"version": "3.
|
|
11286
|
-
"integrity": "sha512-
|
|
11306
|
+
"version": "3.52.1",
|
|
11307
|
+
"integrity": "sha512-fdZZruC9/x/joCg0mhKGs5aHpwrXLCSZ4GOJmhhYyiE0ffyEsk9MLFt9LCOCF9tn8ErTD+UDQP4oDUSlZkmpCg==",
|
|
11287
11308
|
"license": "Apache-2.0",
|
|
11288
11309
|
"dependencies": {
|
|
11289
|
-
"@internationalized/date": "^3.12.
|
|
11290
|
-
"@internationalized/number": "^3.6.
|
|
11310
|
+
"@internationalized/date": "^3.12.4",
|
|
11311
|
+
"@internationalized/number": "^3.6.8",
|
|
11291
11312
|
"@internationalized/string": "^3.2.10",
|
|
11292
11313
|
"@react-types/shared": "^3.36.1",
|
|
11293
11314
|
"@swc/helpers": "^0.5.0",
|
|
11294
11315
|
"aria-hidden": "^1.2.3",
|
|
11295
11316
|
"clsx": "^2.0.0",
|
|
11296
|
-
"react-stately": "3.
|
|
11317
|
+
"react-stately": "3.50.0",
|
|
11297
11318
|
"use-sync-external-store": "^1.6.0"
|
|
11298
11319
|
},
|
|
11299
11320
|
"peerDependencies": {
|
|
@@ -11349,20 +11370,6 @@
|
|
|
11349
11370
|
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11350
11371
|
"license": "MIT"
|
|
11351
11372
|
},
|
|
11352
|
-
"node_modules/react-is-18": {
|
|
11353
|
-
"name": "react-is",
|
|
11354
|
-
"version": "18.3.1",
|
|
11355
|
-
"integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
|
|
11356
|
-
"dev": true,
|
|
11357
|
-
"license": "MIT"
|
|
11358
|
-
},
|
|
11359
|
-
"node_modules/react-is-19": {
|
|
11360
|
-
"name": "react-is",
|
|
11361
|
-
"version": "19.2.8",
|
|
11362
|
-
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11363
|
-
"dev": true,
|
|
11364
|
-
"license": "MIT"
|
|
11365
|
-
},
|
|
11366
11373
|
"node_modules/react-redux": {
|
|
11367
11374
|
"version": "9.2.0",
|
|
11368
11375
|
"integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==",
|
|
@@ -11433,12 +11440,12 @@
|
|
|
11433
11440
|
}
|
|
11434
11441
|
},
|
|
11435
11442
|
"node_modules/react-stately": {
|
|
11436
|
-
"version": "3.
|
|
11437
|
-
"integrity": "sha512-
|
|
11443
|
+
"version": "3.50.0",
|
|
11444
|
+
"integrity": "sha512-TnckvpDQGU0672wEaLZqdzvhuSeXWjgW6vijMWxiKOxc8CosQUfPGISdcZyfHqjX3XMjEtRxj4w9HumvX4h4mw==",
|
|
11438
11445
|
"license": "Apache-2.0",
|
|
11439
11446
|
"dependencies": {
|
|
11440
|
-
"@internationalized/date": "^3.12.
|
|
11441
|
-
"@internationalized/number": "^3.6.
|
|
11447
|
+
"@internationalized/date": "^3.12.4",
|
|
11448
|
+
"@internationalized/number": "^3.6.8",
|
|
11442
11449
|
"@internationalized/string": "^3.2.10",
|
|
11443
11450
|
"@react-types/shared": "^3.36.1",
|
|
11444
11451
|
"@swc/helpers": "^0.5.0",
|
|
@@ -11599,8 +11606,8 @@
|
|
|
11599
11606
|
}
|
|
11600
11607
|
},
|
|
11601
11608
|
"node_modules/reselect": {
|
|
11602
|
-
"version": "5.
|
|
11603
|
-
"integrity": "sha512-
|
|
11609
|
+
"version": "5.3.0",
|
|
11610
|
+
"integrity": "sha512-XGoLeRAVzUTcJ1qkxPQhDJyIZ5d6zzZD9nT7AEZOaaU9UbWclhycElmhO+VD5bFeLuzhPBaOV2oXC8uG35ZSpg==",
|
|
11604
11611
|
"license": "MIT"
|
|
11605
11612
|
},
|
|
11606
11613
|
"node_modules/resolve": {
|
|
@@ -11717,8 +11724,8 @@
|
|
|
11717
11724
|
"license": "Unlicense"
|
|
11718
11725
|
},
|
|
11719
11726
|
"node_modules/rollup": {
|
|
11720
|
-
"version": "4.
|
|
11721
|
-
"integrity": "sha512-
|
|
11727
|
+
"version": "4.63.1",
|
|
11728
|
+
"integrity": "sha512-3Df9jsstwhccuEfmAMi9l8XUh/GOkVObmFTU7CCVBysEbcOZLl84jCtaAZMcPiMz2EGKsATzQcU+Xr3n/wU6cg==",
|
|
11722
11729
|
"dev": true,
|
|
11723
11730
|
"license": "MIT",
|
|
11724
11731
|
"dependencies": {
|
|
@@ -11733,31 +11740,31 @@
|
|
|
11733
11740
|
},
|
|
11734
11741
|
"optionalDependencies": {
|
|
11735
11742
|
"@napi-rs/lzma-linux-x64-gnu": "1.5.1",
|
|
11736
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
11737
|
-
"@rollup/rollup-android-arm64": "4.
|
|
11738
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
11739
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
11740
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
11741
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
11742
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
11743
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
11744
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
11745
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
11746
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
11747
|
-
"@rollup/rollup-linux-loong64-musl": "4.
|
|
11748
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.
|
|
11749
|
-
"@rollup/rollup-linux-ppc64-musl": "4.
|
|
11750
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
11751
|
-
"@rollup/rollup-linux-riscv64-musl": "4.
|
|
11752
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
11753
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
11754
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
11755
|
-
"@rollup/rollup-openbsd-x64": "4.
|
|
11756
|
-
"@rollup/rollup-openharmony-arm64": "4.
|
|
11757
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
11758
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
11759
|
-
"@rollup/rollup-win32-x64-gnu": "4.
|
|
11760
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
11743
|
+
"@rollup/rollup-android-arm-eabi": "4.63.1",
|
|
11744
|
+
"@rollup/rollup-android-arm64": "4.63.1",
|
|
11745
|
+
"@rollup/rollup-darwin-arm64": "4.63.1",
|
|
11746
|
+
"@rollup/rollup-darwin-x64": "4.63.1",
|
|
11747
|
+
"@rollup/rollup-freebsd-arm64": "4.63.1",
|
|
11748
|
+
"@rollup/rollup-freebsd-x64": "4.63.1",
|
|
11749
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.63.1",
|
|
11750
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.63.1",
|
|
11751
|
+
"@rollup/rollup-linux-arm64-gnu": "4.63.1",
|
|
11752
|
+
"@rollup/rollup-linux-arm64-musl": "4.63.1",
|
|
11753
|
+
"@rollup/rollup-linux-loong64-gnu": "4.63.1",
|
|
11754
|
+
"@rollup/rollup-linux-loong64-musl": "4.63.1",
|
|
11755
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.63.1",
|
|
11756
|
+
"@rollup/rollup-linux-ppc64-musl": "4.63.1",
|
|
11757
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.63.1",
|
|
11758
|
+
"@rollup/rollup-linux-riscv64-musl": "4.63.1",
|
|
11759
|
+
"@rollup/rollup-linux-s390x-gnu": "4.63.1",
|
|
11760
|
+
"@rollup/rollup-linux-x64-gnu": "4.63.1",
|
|
11761
|
+
"@rollup/rollup-linux-x64-musl": "4.63.1",
|
|
11762
|
+
"@rollup/rollup-openbsd-x64": "4.63.1",
|
|
11763
|
+
"@rollup/rollup-openharmony-arm64": "4.63.1",
|
|
11764
|
+
"@rollup/rollup-win32-arm64-msvc": "4.63.1",
|
|
11765
|
+
"@rollup/rollup-win32-ia32-msvc": "4.63.1",
|
|
11766
|
+
"@rollup/rollup-win32-x64-gnu": "4.63.1",
|
|
11767
|
+
"@rollup/rollup-win32-x64-msvc": "4.63.1",
|
|
11761
11768
|
"fsevents": "~2.3.2"
|
|
11762
11769
|
}
|
|
11763
11770
|
},
|
|
@@ -12227,8 +12234,8 @@
|
|
|
12227
12234
|
}
|
|
12228
12235
|
},
|
|
12229
12236
|
"node_modules/streamx": {
|
|
12230
|
-
"version": "2.28.
|
|
12231
|
-
"integrity": "sha512-
|
|
12237
|
+
"version": "2.28.1",
|
|
12238
|
+
"integrity": "sha512-zEzXb0s5Cds7tqMH6rhZ05lcJydCWiQPEwiNngVqzsxCc962vLY4Uw+mW7od8kDH258k2Uz/JrOkdIAAhSh9VA==",
|
|
12232
12239
|
"license": "MIT",
|
|
12233
12240
|
"dependencies": {
|
|
12234
12241
|
"events-universal": "^1.0.0",
|
|
@@ -12327,24 +12334,24 @@
|
|
|
12327
12334
|
}
|
|
12328
12335
|
},
|
|
12329
12336
|
"node_modules/string.prototype.matchall": {
|
|
12330
|
-
"version": "4.0
|
|
12331
|
-
"integrity": "sha512-
|
|
12337
|
+
"version": "4.1.0",
|
|
12338
|
+
"integrity": "sha512-tHNHTxInrYLCga9O9YGxWA3G9/nnzQw8UGAyqGx3Ar1pSTTzIuM4woFSq4SowkXCjJIwq5sIiQvEfRI9tCH1qQ==",
|
|
12332
12339
|
"dev": true,
|
|
12333
12340
|
"license": "MIT",
|
|
12334
12341
|
"dependencies": {
|
|
12335
|
-
"call-bind": "^1.0.
|
|
12336
|
-
"call-bound": "^1.0.
|
|
12342
|
+
"call-bind": "^1.0.9",
|
|
12343
|
+
"call-bound": "^1.0.4",
|
|
12337
12344
|
"define-properties": "^1.2.1",
|
|
12338
|
-
"es-abstract": "^1.
|
|
12345
|
+
"es-abstract": "^1.24.2",
|
|
12339
12346
|
"es-errors": "^1.3.0",
|
|
12340
|
-
"es-object-atoms": "^1.
|
|
12341
|
-
"get-intrinsic": "^1.
|
|
12347
|
+
"es-object-atoms": "^1.1.2",
|
|
12348
|
+
"get-intrinsic": "^1.3.0",
|
|
12342
12349
|
"gopd": "^1.2.0",
|
|
12343
12350
|
"has-symbols": "^1.1.0",
|
|
12344
12351
|
"internal-slot": "^1.1.0",
|
|
12345
|
-
"regexp.prototype.flags": "^1.5.
|
|
12352
|
+
"regexp.prototype.flags": "^1.5.4",
|
|
12346
12353
|
"set-function-name": "^2.0.2",
|
|
12347
|
-
"side-channel": "^1.1.
|
|
12354
|
+
"side-channel": "^1.1.1"
|
|
12348
12355
|
},
|
|
12349
12356
|
"engines": {
|
|
12350
12357
|
"node": ">= 0.4"
|
|
@@ -12447,8 +12454,8 @@
|
|
|
12447
12454
|
}
|
|
12448
12455
|
},
|
|
12449
12456
|
"node_modules/strip-ansi/node_modules/ansi-regex": {
|
|
12450
|
-
"version": "6.
|
|
12451
|
-
"integrity": "sha512-
|
|
12457
|
+
"version": "6.3.0",
|
|
12458
|
+
"integrity": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==",
|
|
12452
12459
|
"license": "MIT",
|
|
12453
12460
|
"engines": {
|
|
12454
12461
|
"node": ">=12"
|
|
@@ -12622,8 +12629,8 @@
|
|
|
12622
12629
|
}
|
|
12623
12630
|
},
|
|
12624
12631
|
"node_modules/tar-stream": {
|
|
12625
|
-
"version": "3.2.
|
|
12626
|
-
"integrity": "sha512-
|
|
12632
|
+
"version": "3.2.1",
|
|
12633
|
+
"integrity": "sha512-nqsEO8zLZJvrOMdEwkA0QdCLFbetHMn95Zqu4fKwX+hkaTWJPZZOrxx/PwtxoK0MMGQmBQNRW3CPs8IFYQz4cQ==",
|
|
12627
12634
|
"license": "MIT",
|
|
12628
12635
|
"dependencies": {
|
|
12629
12636
|
"b4a": "^1.6.4",
|
|
@@ -12768,8 +12775,8 @@
|
|
|
12768
12775
|
}
|
|
12769
12776
|
},
|
|
12770
12777
|
"node_modules/tinyspy": {
|
|
12771
|
-
"version": "4.0.
|
|
12772
|
-
"integrity": "sha512-
|
|
12778
|
+
"version": "4.0.6",
|
|
12779
|
+
"integrity": "sha512-u8KszXvGfU68hVcZpRHKG28T0krMuv2G5nDhiHaMLen/gIuFEgIJhaJuO69qjnXg5paSrbPMFfx3brNuN8eVSg==",
|
|
12773
12780
|
"dev": true,
|
|
12774
12781
|
"license": "MIT",
|
|
12775
12782
|
"engines": {
|
|
@@ -12777,20 +12784,20 @@
|
|
|
12777
12784
|
}
|
|
12778
12785
|
},
|
|
12779
12786
|
"node_modules/tldts": {
|
|
12780
|
-
"version": "7.4.
|
|
12781
|
-
"integrity": "sha512-
|
|
12787
|
+
"version": "7.4.11",
|
|
12788
|
+
"integrity": "sha512-aBiNayCfTQxuIJBm06M+xR14cYaYlDlSXZbgsnKzKNxDKUVq7KFwTjwBSsb7m9Y5xO8WfPnBc63WaYFMTGlvqw==",
|
|
12782
12789
|
"dev": true,
|
|
12783
12790
|
"license": "MIT",
|
|
12784
12791
|
"dependencies": {
|
|
12785
|
-
"tldts-core": "^7.4.
|
|
12792
|
+
"tldts-core": "^7.4.11"
|
|
12786
12793
|
},
|
|
12787
12794
|
"bin": {
|
|
12788
12795
|
"tldts": "bin/cli.js"
|
|
12789
12796
|
}
|
|
12790
12797
|
},
|
|
12791
12798
|
"node_modules/tldts-core": {
|
|
12792
|
-
"version": "7.4.
|
|
12793
|
-
"integrity": "sha512-
|
|
12799
|
+
"version": "7.4.11",
|
|
12800
|
+
"integrity": "sha512-CW3WN2rIIE/Of21mulhgnGOwoDyEFNygyIBOONSdyAuSATgMMUCpLeUlB+E8sAwA5xRV9hYPl+kyZ9citHCaKg==",
|
|
12794
12801
|
"dev": true,
|
|
12795
12802
|
"license": "MIT"
|
|
12796
12803
|
},
|
|
@@ -12893,8 +12900,8 @@
|
|
|
12893
12900
|
}
|
|
12894
12901
|
},
|
|
12895
12902
|
"node_modules/type-fest": {
|
|
12896
|
-
"version": "5.
|
|
12897
|
-
"integrity": "sha512-
|
|
12903
|
+
"version": "5.9.0",
|
|
12904
|
+
"integrity": "sha512-yANm3Jr3GiJ1qgJlxGAVxTOIcEOk1rhQHamlXtnrCK7EHP4HeM9OGxtMg/W7HFdrVzw/ZWJKGVIJusVH85sLtw==",
|
|
12898
12905
|
"dev": true,
|
|
12899
12906
|
"license": "(MIT OR CC0-1.0)",
|
|
12900
12907
|
"dependencies": {
|
|
@@ -13025,8 +13032,8 @@
|
|
|
13025
13032
|
}
|
|
13026
13033
|
},
|
|
13027
13034
|
"node_modules/undici": {
|
|
13028
|
-
"version": "7.29.
|
|
13029
|
-
"integrity": "sha512-
|
|
13035
|
+
"version": "7.29.1",
|
|
13036
|
+
"integrity": "sha512-RYONW2MeafgYlkVOKYKkA/Ag7BmXqgIWCa8t1m0JcxrQg9pI9lEqRhAOruOBCbAohOa/gkCF+iPi9hrgvTzu6Q==",
|
|
13030
13037
|
"dev": true,
|
|
13031
13038
|
"license": "MIT",
|
|
13032
13039
|
"engines": {
|
|
@@ -13105,8 +13112,8 @@
|
|
|
13105
13112
|
}
|
|
13106
13113
|
},
|
|
13107
13114
|
"node_modules/update-browserslist-db": {
|
|
13108
|
-
"version": "1.3.
|
|
13109
|
-
"integrity": "sha512-
|
|
13115
|
+
"version": "1.3.2",
|
|
13116
|
+
"integrity": "sha512-UQ+MSxlhRm1bzjhU+DcuXfjFO1FzNtqhK5+9Yvlp90ItDLk5vT932A0rFu619nf7RVS+Y/VeaUW1jaRDqZ8VJw==",
|
|
13110
13117
|
"dev": true,
|
|
13111
13118
|
"funding": [
|
|
13112
13119
|
{
|
|
@@ -13253,8 +13260,8 @@
|
|
|
13253
13260
|
}
|
|
13254
13261
|
},
|
|
13255
13262
|
"node_modules/vite/node_modules/postcss": {
|
|
13256
|
-
"version": "8.5.
|
|
13257
|
-
"integrity": "sha512-
|
|
13263
|
+
"version": "8.5.28",
|
|
13264
|
+
"integrity": "sha512-RRuzqDtt5Y9h3quz5hWhK+TPnsmVs6WwSU6LkJMeY4HstUEDuYTG8UJSdawMRzmzAtV+KEoG8N3Qg2qLy5vM/A==",
|
|
13258
13265
|
"dev": true,
|
|
13259
13266
|
"funding": [
|
|
13260
13267
|
{
|
|
@@ -13272,7 +13279,7 @@
|
|
|
13272
13279
|
],
|
|
13273
13280
|
"license": "MIT",
|
|
13274
13281
|
"dependencies": {
|
|
13275
|
-
"nanoid": "^3.3.
|
|
13282
|
+
"nanoid": "^3.3.18",
|
|
13276
13283
|
"picocolors": "^1.1.1",
|
|
13277
13284
|
"source-map-js": "^1.2.1"
|
|
13278
13285
|
},
|