@wavemaker-ai/react-runtime 1.0.0-rc.647671 → 1.0.0-rc.647712
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/notification-action.js +3 -3
- package/actions/toast.js +2 -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 +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/message/index.js +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 +2 -0
- package/components/basic/search/index.js +9 -11
- package/components/basic/search/providers.d.ts +1 -1
- package/components/basic/search/providers.js +6 -3
- 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/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 +33 -9
- 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 +2 -1
- package/components/container/linear-layout/index.d.ts +1 -0
- package/components/container/linear-layout/index.js +0 -1
- 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 +8 -6
- 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 +56 -40
- 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 +14 -17
- package/components/data/form/base-form/index.js +22 -23
- package/components/data/form/base-form/props.d.ts +1 -0
- package/components/data/form/base-form/utils.js +5 -4
- package/components/data/form/form-action/index.d.ts +4 -2
- package/components/data/form/form-action/index.js +2 -2
- package/components/data/form/form-context.d.ts +12 -13
- package/components/data/form/form-context.js +4 -6
- package/components/data/form/form-controller/withFormController.js +20 -7
- package/components/data/form/form-field/index.js +40 -15
- package/components/data/form/form-field/props.d.ts +7 -2
- package/components/data/list/components/ListItems.js +1 -3
- package/components/data/list/index.d.ts +2 -0
- package/components/data/list/index.js +6 -11
- package/components/data/pagination/hooks/usePagination.js +8 -8
- package/components/data/table/components/RowExpansionButton.js +5 -1
- package/components/data/table/components/TableBody.js +4 -1
- package/components/data/table/components/TableDataRow.js +1 -1
- package/components/data/table/components/TableHeader.js +3 -1
- package/components/data/table/hooks/useFormWidget.js +2 -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 +3 -3
- package/components/data/table/hooks/useRowSelection.js +22 -13
- package/components/data/table/hooks/useTableColumns.js +5 -5
- package/components/data/table/hooks/useTableData.js +10 -2
- package/components/data/table/index.d.ts +2 -0
- package/components/data/table/index.js +15 -14
- package/components/data/table/live-table/index.d.ts +1 -0
- package/components/data/table/props.d.ts +9 -8
- 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 +45 -50
- 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 +10 -3
- package/components/data/table/utils/index.js +20 -9
- package/components/data/table/utils/selectionUtils.d.ts +14 -0
- package/components/data/table/utils/selectionUtils.js +33 -1
- 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-actions/index.js +11 -2
- 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 +2 -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 +32 -6
- package/components/input/default/checkbox/index.d.ts +2 -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/switch/index.d.ts +2 -0
- package/components/input/epoch/date/index.d.ts +1 -0
- package/components/input/epoch/date/index.js +2 -1
- package/components/input/epoch/date/utils.js +4 -2
- package/components/input/epoch/datetime/index.d.ts +1 -0
- package/components/input/epoch/datetime/index.js +5 -3
- package/components/input/epoch/datetime/props.d.ts +2 -2
- package/components/input/epoch/time/index.d.ts +1 -0
- package/components/input/epoch/time/utils.d.ts +1 -1
- package/components/input/epoch/time/utils.js +2 -2
- package/components/input/fileupload/index.d.ts +1 -0
- package/components/input/fileupload/index.js +2 -1
- package/components/input/fileupload/useFileUpload.js +19 -24
- package/components/input/number/index.d.ts +2 -0
- package/components/input/rating/index.d.ts +2 -0
- package/components/input/select/index.js +6 -3
- package/components/input/slider/index.d.ts +2 -0
- package/components/input/text/index.d.ts +2 -0
- package/components/input/text/index.js +9 -2
- package/components/input/textarea/index.d.ts +2 -0
- package/components/input/upload/index.d.ts +2 -0
- package/components/navbar/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 +1 -0
- package/components/navigation/menu/index.js +13 -9
- package/components/navigation/menu/props.d.ts +1 -0
- package/components/navigation/popover/index.d.ts +2 -1
- package/components/navigation/popover/index.js +16 -4
- package/components/navigation/popover/props.d.ts +1 -1
- 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 +18 -1
- package/core/proxy-service.js +84 -14
- package/higherOrder/BaseApp.js +2 -1
- package/higherOrder/BaseDateTime.js +8 -1
- package/higherOrder/BasePage.js +9 -11
- package/higherOrder/props.d.ts +1 -0
- package/higherOrder/useActivePageReactivity.js +1 -4
- package/higherOrder/withBaseWrapper.js +6 -6
- package/package-lock.json +264 -243
- package/package.json +3 -3
- 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 +1 -7
- package/runtime-dynamic/routes.js +17 -8
- 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/variables/model-variable.d.ts +2 -0
- package/variables/model-variable.js +14 -0
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.647712",
|
|
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.647712",
|
|
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.647712",
|
|
32
|
+
"@wavemaker-ai/variables": "1.0.0-rc.647712",
|
|
33
33
|
"@wavemaker/nvd3": "1.8.16",
|
|
34
34
|
"axios": "1.15.1",
|
|
35
35
|
"d3": "7.8.5",
|
|
@@ -234,12 +234,12 @@
|
|
|
234
234
|
"license": "MIT"
|
|
235
235
|
},
|
|
236
236
|
"node_modules/@babel/generator": {
|
|
237
|
-
"version": "7.29.
|
|
238
|
-
"integrity": "sha512-
|
|
237
|
+
"version": "7.29.8",
|
|
238
|
+
"integrity": "sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==",
|
|
239
239
|
"license": "MIT",
|
|
240
240
|
"dependencies": {
|
|
241
|
-
"@babel/parser": "^7.29.
|
|
242
|
-
"@babel/types": "^7.29.
|
|
241
|
+
"@babel/parser": "^7.29.8",
|
|
242
|
+
"@babel/types": "^7.29.8",
|
|
243
243
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
244
244
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
245
245
|
"jsesc": "^3.0.2"
|
|
@@ -349,11 +349,11 @@
|
|
|
349
349
|
}
|
|
350
350
|
},
|
|
351
351
|
"node_modules/@babel/parser": {
|
|
352
|
-
"version": "7.29.
|
|
353
|
-
"integrity": "sha512-
|
|
352
|
+
"version": "7.29.8",
|
|
353
|
+
"integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
|
|
354
354
|
"license": "MIT",
|
|
355
355
|
"dependencies": {
|
|
356
|
-
"@babel/types": "^7.29.
|
|
356
|
+
"@babel/types": "^7.29.8"
|
|
357
357
|
},
|
|
358
358
|
"bin": {
|
|
359
359
|
"parser": "bin/babel-parser.js"
|
|
@@ -414,16 +414,16 @@
|
|
|
414
414
|
}
|
|
415
415
|
},
|
|
416
416
|
"node_modules/@babel/traverse": {
|
|
417
|
-
"version": "7.29.
|
|
418
|
-
"integrity": "sha512-
|
|
417
|
+
"version": "7.29.8",
|
|
418
|
+
"integrity": "sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==",
|
|
419
419
|
"license": "MIT",
|
|
420
420
|
"dependencies": {
|
|
421
421
|
"@babel/code-frame": "^7.29.7",
|
|
422
|
-
"@babel/generator": "^7.29.
|
|
422
|
+
"@babel/generator": "^7.29.8",
|
|
423
423
|
"@babel/helper-globals": "^7.29.7",
|
|
424
|
-
"@babel/parser": "^7.29.
|
|
424
|
+
"@babel/parser": "^7.29.8",
|
|
425
425
|
"@babel/template": "^7.29.7",
|
|
426
|
-
"@babel/types": "^7.29.
|
|
426
|
+
"@babel/types": "^7.29.8",
|
|
427
427
|
"debug": "^4.3.1"
|
|
428
428
|
},
|
|
429
429
|
"engines": {
|
|
@@ -431,8 +431,8 @@
|
|
|
431
431
|
}
|
|
432
432
|
},
|
|
433
433
|
"node_modules/@babel/types": {
|
|
434
|
-
"version": "7.29.
|
|
435
|
-
"integrity": "sha512-
|
|
434
|
+
"version": "7.29.8",
|
|
435
|
+
"integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
|
|
436
436
|
"license": "MIT",
|
|
437
437
|
"dependencies": {
|
|
438
438
|
"@babel/helper-string-parser": "^7.29.7",
|
|
@@ -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.0",
|
|
541
|
+
"integrity": "sha512-5+5LEmFuY1AjXdYhmgjTJogtQnP1evJ1zrBZGUNZ0thkpwnnmKxcHdAMn/OtFjAb25zA+jKDVYVRl+5G7rjv1A==",
|
|
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.8",
|
|
590
|
+
"integrity": "sha512-CpMLjAvwQg3BL5S0IeqsZNMH7EQrEWi0kLKOC13ZBF0ZwERiLWlibNPJr8G1kdU3Ms/r2KiNrF81pUh2HwAHdg==",
|
|
591
591
|
"dev": true,
|
|
592
592
|
"funding": [
|
|
593
593
|
{
|
|
@@ -2177,8 +2177,8 @@
|
|
|
2177
2177
|
}
|
|
2178
2178
|
},
|
|
2179
2179
|
"node_modules/@internationalized/date": {
|
|
2180
|
-
"version": "3.12.
|
|
2181
|
-
"integrity": "sha512-
|
|
2180
|
+
"version": "3.12.3",
|
|
2181
|
+
"integrity": "sha512-fuLX+3ZKLsxI73y8b01EG/WjHb6gE6weCqlfawPO27kBWGMh9G1yH6Csv1uU7/cac9H2GHmOMt6CjmuQ1aia4Q==",
|
|
2182
2182
|
"license": "Apache-2.0",
|
|
2183
2183
|
"dependencies": {
|
|
2184
2184
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2193,8 +2193,8 @@
|
|
|
2193
2193
|
}
|
|
2194
2194
|
},
|
|
2195
2195
|
"node_modules/@internationalized/string": {
|
|
2196
|
-
"version": "3.2.
|
|
2197
|
-
"integrity": "sha512-
|
|
2196
|
+
"version": "3.2.10",
|
|
2197
|
+
"integrity": "sha512-PDx6//vHSpRnHfxqMqto11zQvhsaU74O3mKv2F/0eicGZcl9NLjQmGlbHz/LsJh5tLKp4A4L7ZVTzN1/MmMTvA==",
|
|
2198
2198
|
"license": "Apache-2.0",
|
|
2199
2199
|
"dependencies": {
|
|
2200
2200
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2920,22 +2920,41 @@
|
|
|
2920
2920
|
}
|
|
2921
2921
|
}
|
|
2922
2922
|
},
|
|
2923
|
+
"node_modules/@napi-rs/lzma-linux-x64-gnu": {
|
|
2924
|
+
"version": "1.5.1",
|
|
2925
|
+
"integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==",
|
|
2926
|
+
"cpu": [
|
|
2927
|
+
"x64"
|
|
2928
|
+
],
|
|
2929
|
+
"dev": true,
|
|
2930
|
+
"license": "MIT",
|
|
2931
|
+
"optional": true,
|
|
2932
|
+
"os": [
|
|
2933
|
+
"linux"
|
|
2934
|
+
],
|
|
2935
|
+
"engines": {
|
|
2936
|
+
"node": "^22.20 || ^24.12 || >=25"
|
|
2937
|
+
}
|
|
2938
|
+
},
|
|
2923
2939
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
2924
|
-
"version": "1.
|
|
2925
|
-
"integrity": "sha512-
|
|
2940
|
+
"version": "1.2.3",
|
|
2941
|
+
"integrity": "sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==",
|
|
2926
2942
|
"dev": true,
|
|
2927
2943
|
"license": "MIT",
|
|
2928
2944
|
"optional": true,
|
|
2929
2945
|
"dependencies": {
|
|
2930
2946
|
"@tybys/wasm-util": "^0.10.3"
|
|
2931
2947
|
},
|
|
2948
|
+
"engines": {
|
|
2949
|
+
"node": "^20.19.0 || ^22.13.0 || >=23.5.0"
|
|
2950
|
+
},
|
|
2932
2951
|
"funding": {
|
|
2933
2952
|
"type": "github",
|
|
2934
2953
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
2935
2954
|
},
|
|
2936
2955
|
"peerDependencies": {
|
|
2937
|
-
"@emnapi/core": "^1.7.1",
|
|
2938
|
-
"@emnapi/runtime": "^1.7.1"
|
|
2956
|
+
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.4",
|
|
2957
|
+
"@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.4"
|
|
2939
2958
|
}
|
|
2940
2959
|
},
|
|
2941
2960
|
"node_modules/@next/env": {
|
|
@@ -3170,8 +3189,8 @@
|
|
|
3170
3189
|
}
|
|
3171
3190
|
},
|
|
3172
3191
|
"node_modules/@react-types/shared": {
|
|
3173
|
-
"version": "3.36.
|
|
3174
|
-
"integrity": "sha512-
|
|
3192
|
+
"version": "3.36.1",
|
|
3193
|
+
"integrity": "sha512-AzsuD9OfxTOZMMvTRhlN3oHBwOmFN7tDh27LzqmHt4+uOgPhJT7ZM7/kVs/8/o0WxayMUIk3hBmCFRHv1FUoag==",
|
|
3175
3194
|
"license": "Apache-2.0",
|
|
3176
3195
|
"peerDependencies": {
|
|
3177
3196
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
@@ -3209,8 +3228,8 @@
|
|
|
3209
3228
|
"license": "MIT"
|
|
3210
3229
|
},
|
|
3211
3230
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3212
|
-
"version": "4.62.
|
|
3213
|
-
"integrity": "sha512-
|
|
3231
|
+
"version": "4.62.5",
|
|
3232
|
+
"integrity": "sha512-jfkGfTwhQpsiSckPF8r9bU3pn3vyd72NlWaO+TgEO6WPSDnUhXzrNYCHBMOYj0ACaUgjm6eERLF+XV9a6RstoA==",
|
|
3214
3233
|
"cpu": [
|
|
3215
3234
|
"arm"
|
|
3216
3235
|
],
|
|
@@ -3222,8 +3241,8 @@
|
|
|
3222
3241
|
]
|
|
3223
3242
|
},
|
|
3224
3243
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3225
|
-
"version": "4.62.
|
|
3226
|
-
"integrity": "sha512-
|
|
3244
|
+
"version": "4.62.5",
|
|
3245
|
+
"integrity": "sha512-oGVqyQlxnrz9/ty89oHpU857VUHEl5/Xu4R2lS+aivCTrNnSsbiENzTnNaBsjxH0CNWGPhzHArOLFwo+oKXveA==",
|
|
3227
3246
|
"cpu": [
|
|
3228
3247
|
"arm64"
|
|
3229
3248
|
],
|
|
@@ -3235,8 +3254,8 @@
|
|
|
3235
3254
|
]
|
|
3236
3255
|
},
|
|
3237
3256
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3238
|
-
"version": "4.62.
|
|
3239
|
-
"integrity": "sha512-
|
|
3257
|
+
"version": "4.62.5",
|
|
3258
|
+
"integrity": "sha512-bW7B8xMEq8n99Q3ieEcPRGuphurdZAaFzQc9Efyyw3FL6DZO6pMy9xhdN+kBoD7Sy05xNXSr4OyPPnpkYriS/A==",
|
|
3240
3259
|
"cpu": [
|
|
3241
3260
|
"arm64"
|
|
3242
3261
|
],
|
|
@@ -3248,8 +3267,8 @@
|
|
|
3248
3267
|
]
|
|
3249
3268
|
},
|
|
3250
3269
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3251
|
-
"version": "4.62.
|
|
3252
|
-
"integrity": "sha512-
|
|
3270
|
+
"version": "4.62.5",
|
|
3271
|
+
"integrity": "sha512-YSwBS86QeHOGlrxJ1PSOIZSkzRL/JmKeunhc+lV6M1a6En8QuVCD/T/qIA0J4Gd2Y86RIOBYrLcOUtqGh9+/1w==",
|
|
3253
3272
|
"cpu": [
|
|
3254
3273
|
"x64"
|
|
3255
3274
|
],
|
|
@@ -3261,8 +3280,8 @@
|
|
|
3261
3280
|
]
|
|
3262
3281
|
},
|
|
3263
3282
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3264
|
-
"version": "4.62.
|
|
3265
|
-
"integrity": "sha512-
|
|
3283
|
+
"version": "4.62.5",
|
|
3284
|
+
"integrity": "sha512-2fST8lILgl7cKbme/1KDdPCmbXbG+gqoV3bHp19L0ypX/3akYMBVdOunPleRCwonoLnXOZ/0F+Mt/v8POFmfcQ==",
|
|
3266
3285
|
"cpu": [
|
|
3267
3286
|
"arm64"
|
|
3268
3287
|
],
|
|
@@ -3274,8 +3293,8 @@
|
|
|
3274
3293
|
]
|
|
3275
3294
|
},
|
|
3276
3295
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3277
|
-
"version": "4.62.
|
|
3278
|
-
"integrity": "sha512-
|
|
3296
|
+
"version": "4.62.5",
|
|
3297
|
+
"integrity": "sha512-cpIxQCP9J+EVad0a6LO1kY3ZGODlk80VlI+2I96B8xMcdHZ4pLVhfQ49JFpYqjPF91FFkQWftf57YlDcTiw9yQ==",
|
|
3279
3298
|
"cpu": [
|
|
3280
3299
|
"x64"
|
|
3281
3300
|
],
|
|
@@ -3287,8 +3306,8 @@
|
|
|
3287
3306
|
]
|
|
3288
3307
|
},
|
|
3289
3308
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3290
|
-
"version": "4.62.
|
|
3291
|
-
"integrity": "sha512-
|
|
3309
|
+
"version": "4.62.5",
|
|
3310
|
+
"integrity": "sha512-r9fGh3eFs3e/udWh5ZjXQtxiYK/xoFxQaYR/cELxac/Udkl5Th+IsFm0CX3Kl9hmUH/we7EoMpjJgeQNnE0+IA==",
|
|
3292
3311
|
"cpu": [
|
|
3293
3312
|
"arm"
|
|
3294
3313
|
],
|
|
@@ -3300,8 +3319,8 @@
|
|
|
3300
3319
|
]
|
|
3301
3320
|
},
|
|
3302
3321
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3303
|
-
"version": "4.62.
|
|
3304
|
-
"integrity": "sha512-
|
|
3322
|
+
"version": "4.62.5",
|
|
3323
|
+
"integrity": "sha512-xdvFdp7OM6KLJviJT2g/YuRSUjnZgGHk4RNgwIbN7X6cPugOucV60DdHXWzsBVCUdrGb6qSXnJQrrAKMmQuj3Q==",
|
|
3305
3324
|
"cpu": [
|
|
3306
3325
|
"arm"
|
|
3307
3326
|
],
|
|
@@ -3313,8 +3332,8 @@
|
|
|
3313
3332
|
]
|
|
3314
3333
|
},
|
|
3315
3334
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3316
|
-
"version": "4.62.
|
|
3317
|
-
"integrity": "sha512-
|
|
3335
|
+
"version": "4.62.5",
|
|
3336
|
+
"integrity": "sha512-rRqILAndyzHzP7T9NFQrq+4HFWNhqkqkKur7eiBpfLmz01PO0JKx5Vchu3YllE4YXI/Ftgq/szrDWg5GJ0mI8g==",
|
|
3318
3337
|
"cpu": [
|
|
3319
3338
|
"arm64"
|
|
3320
3339
|
],
|
|
@@ -3326,8 +3345,8 @@
|
|
|
3326
3345
|
]
|
|
3327
3346
|
},
|
|
3328
3347
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3329
|
-
"version": "4.62.
|
|
3330
|
-
"integrity": "sha512-
|
|
3348
|
+
"version": "4.62.5",
|
|
3349
|
+
"integrity": "sha512-Gf4X3qVMucayUvux6aXXPgXovocSFUC0rrffDuPI/S2nHhNMhjcZxsrAFYCOF350PRreW1XwzFj3CT/3bKsWCw==",
|
|
3331
3350
|
"cpu": [
|
|
3332
3351
|
"arm64"
|
|
3333
3352
|
],
|
|
@@ -3339,8 +3358,8 @@
|
|
|
3339
3358
|
]
|
|
3340
3359
|
},
|
|
3341
3360
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3342
|
-
"version": "4.62.
|
|
3343
|
-
"integrity": "sha512
|
|
3361
|
+
"version": "4.62.5",
|
|
3362
|
+
"integrity": "sha512-+s5qA0TNM0qm8PK/a5gt/1Hpx+NV08uSuCncvhziIlQzT6AEV2fnUQo7eBtFTFO0nA9scauvoR2HusfXmQnO4w==",
|
|
3344
3363
|
"cpu": [
|
|
3345
3364
|
"loong64"
|
|
3346
3365
|
],
|
|
@@ -3352,8 +3371,8 @@
|
|
|
3352
3371
|
]
|
|
3353
3372
|
},
|
|
3354
3373
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3355
|
-
"version": "4.62.
|
|
3356
|
-
"integrity": "sha512-
|
|
3374
|
+
"version": "4.62.5",
|
|
3375
|
+
"integrity": "sha512-ybb6QvWwWJCbBWqERpc8K3pYVGIrXlG8MEQ8IIuJY6Y9KdHQxoFoNyfkAOtKn1VHu3KuLidXvwrvGR1mEjeWCw==",
|
|
3357
3376
|
"cpu": [
|
|
3358
3377
|
"loong64"
|
|
3359
3378
|
],
|
|
@@ -3365,8 +3384,8 @@
|
|
|
3365
3384
|
]
|
|
3366
3385
|
},
|
|
3367
3386
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3368
|
-
"version": "4.62.
|
|
3369
|
-
"integrity": "sha512-
|
|
3387
|
+
"version": "4.62.5",
|
|
3388
|
+
"integrity": "sha512-nZb1DtnOyhCmYvsC8A2CwOkopVg+IS1+fPUa7rMOAXtNw5+lLCLLPqd6XAiNrGtoQKsbvIBOwsHnBH/3wnb4HQ==",
|
|
3370
3389
|
"cpu": [
|
|
3371
3390
|
"ppc64"
|
|
3372
3391
|
],
|
|
@@ -3378,8 +3397,8 @@
|
|
|
3378
3397
|
]
|
|
3379
3398
|
},
|
|
3380
3399
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3381
|
-
"version": "4.62.
|
|
3382
|
-
"integrity": "sha512-
|
|
3400
|
+
"version": "4.62.5",
|
|
3401
|
+
"integrity": "sha512-yMbj63Sp89ryrXLWyz+sy+fYD2HpOnMCLGbe4Oa1smclFSUukdtD/BgdiHaAetJNb74URD8U4hM+qG5KVzMEkg==",
|
|
3383
3402
|
"cpu": [
|
|
3384
3403
|
"ppc64"
|
|
3385
3404
|
],
|
|
@@ -3391,8 +3410,8 @@
|
|
|
3391
3410
|
]
|
|
3392
3411
|
},
|
|
3393
3412
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3394
|
-
"version": "4.62.
|
|
3395
|
-
"integrity": "sha512-
|
|
3413
|
+
"version": "4.62.5",
|
|
3414
|
+
"integrity": "sha512-mhoan3OJw2kYV/e1jtIdmvUZgyBFeA6zGWsOswmR0Tg19TQbowZuR+JMLID6spbbBN7Zee2ejrgmy3+FxGrIdA==",
|
|
3396
3415
|
"cpu": [
|
|
3397
3416
|
"riscv64"
|
|
3398
3417
|
],
|
|
@@ -3404,8 +3423,8 @@
|
|
|
3404
3423
|
]
|
|
3405
3424
|
},
|
|
3406
3425
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3407
|
-
"version": "4.62.
|
|
3408
|
-
"integrity": "sha512-
|
|
3426
|
+
"version": "4.62.5",
|
|
3427
|
+
"integrity": "sha512-5ZTLmjWbb1VZdjuyhe83K/8QO0/h11midQCBP+X5OYn32ra7eOBoM0ZqtaY4nkgNsYgmdVhMYPoyVPTjUpHf3w==",
|
|
3409
3428
|
"cpu": [
|
|
3410
3429
|
"riscv64"
|
|
3411
3430
|
],
|
|
@@ -3417,8 +3436,8 @@
|
|
|
3417
3436
|
]
|
|
3418
3437
|
},
|
|
3419
3438
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3420
|
-
"version": "4.62.
|
|
3421
|
-
"integrity": "sha512-
|
|
3439
|
+
"version": "4.62.5",
|
|
3440
|
+
"integrity": "sha512-m53kG+br6PGxOTmgBEM2DHSDs9RVjsyEbUwjJPJGTFm1grWOG8EKJggDCTb60unD4Tjby8fi7/m9XfkEWasVWg==",
|
|
3422
3441
|
"cpu": [
|
|
3423
3442
|
"s390x"
|
|
3424
3443
|
],
|
|
@@ -3430,8 +3449,8 @@
|
|
|
3430
3449
|
]
|
|
3431
3450
|
},
|
|
3432
3451
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3433
|
-
"version": "4.62.
|
|
3434
|
-
"integrity": "sha512-
|
|
3452
|
+
"version": "4.62.5",
|
|
3453
|
+
"integrity": "sha512-6RHPJR1g/uvdYU8uXBnfq3nlqyZCP82Fr6NHgfGoaIeSh0YEqnX/x6uA9MmJJbnSH7swqX4F+CkGdUF+6doiQA==",
|
|
3435
3454
|
"cpu": [
|
|
3436
3455
|
"x64"
|
|
3437
3456
|
],
|
|
@@ -3443,8 +3462,8 @@
|
|
|
3443
3462
|
]
|
|
3444
3463
|
},
|
|
3445
3464
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3446
|
-
"version": "4.62.
|
|
3447
|
-
"integrity": "sha512-
|
|
3465
|
+
"version": "4.62.5",
|
|
3466
|
+
"integrity": "sha512-xs+OXQtEXgpXT0DmA5+U3qnRZHdCST/5HRQxS8wSPZTUZN/EMWeHuSIod32LQklTBZBV9DyfncKBQ8n5V3eFdw==",
|
|
3448
3467
|
"cpu": [
|
|
3449
3468
|
"x64"
|
|
3450
3469
|
],
|
|
@@ -3456,8 +3475,8 @@
|
|
|
3456
3475
|
]
|
|
3457
3476
|
},
|
|
3458
3477
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3459
|
-
"version": "4.62.
|
|
3460
|
-
"integrity": "sha512-
|
|
3478
|
+
"version": "4.62.5",
|
|
3479
|
+
"integrity": "sha512-e7hD+sl3s+mcLQDZ8pbudBVsdG6r5yN4w3LqG2TJ8sQHDpblWj5lrJs/3m01Cvlxbt4x13zu5thLjgypgtkYzw==",
|
|
3461
3480
|
"cpu": [
|
|
3462
3481
|
"x64"
|
|
3463
3482
|
],
|
|
@@ -3469,8 +3488,8 @@
|
|
|
3469
3488
|
]
|
|
3470
3489
|
},
|
|
3471
3490
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3472
|
-
"version": "4.62.
|
|
3473
|
-
"integrity": "sha512-
|
|
3491
|
+
"version": "4.62.5",
|
|
3492
|
+
"integrity": "sha512-GiyJaCf+WpMub/17aPcKk27QMl5W6f+KhdPTjlFOn5akH5Wa/DCM9Stdx5cDfmasyKB08MqpVQ1uJE2RkkpbXg==",
|
|
3474
3493
|
"cpu": [
|
|
3475
3494
|
"arm64"
|
|
3476
3495
|
],
|
|
@@ -3482,8 +3501,8 @@
|
|
|
3482
3501
|
]
|
|
3483
3502
|
},
|
|
3484
3503
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3485
|
-
"version": "4.62.
|
|
3486
|
-
"integrity": "sha512
|
|
3504
|
+
"version": "4.62.5",
|
|
3505
|
+
"integrity": "sha512-+OQ8U2DdoEfXl8T4Fb18AjmEwbXMerKDKCL8yCPAYhKCEEKoul7rkbeGCBFCbAlaGaa7pmtRTpkAJM2LE/i5FA==",
|
|
3487
3506
|
"cpu": [
|
|
3488
3507
|
"arm64"
|
|
3489
3508
|
],
|
|
@@ -3495,8 +3514,8 @@
|
|
|
3495
3514
|
]
|
|
3496
3515
|
},
|
|
3497
3516
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3498
|
-
"version": "4.62.
|
|
3499
|
-
"integrity": "sha512-
|
|
3517
|
+
"version": "4.62.5",
|
|
3518
|
+
"integrity": "sha512-KanvAZrPKbDBFwrgiU9yEVpQoox9QPV1WZOXX7HudJQY+eSlu82CtWxDU8WtuRRvtN5EGkLczkd6Y6DTcvm9wA==",
|
|
3500
3519
|
"cpu": [
|
|
3501
3520
|
"ia32"
|
|
3502
3521
|
],
|
|
@@ -3508,8 +3527,8 @@
|
|
|
3508
3527
|
]
|
|
3509
3528
|
},
|
|
3510
3529
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3511
|
-
"version": "4.62.
|
|
3512
|
-
"integrity": "sha512-
|
|
3530
|
+
"version": "4.62.5",
|
|
3531
|
+
"integrity": "sha512-1aC3UEWTtRl3RK3VpDJ/Tqk1XI4SLTmXIthAq6wRWo8XiSXJNd+VprJM4/1P4+i6HIaFEFlVi9sTTziniD2tOQ==",
|
|
3513
3532
|
"cpu": [
|
|
3514
3533
|
"x64"
|
|
3515
3534
|
],
|
|
@@ -3521,8 +3540,8 @@
|
|
|
3521
3540
|
]
|
|
3522
3541
|
},
|
|
3523
3542
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3524
|
-
"version": "4.62.
|
|
3525
|
-
"integrity": "sha512
|
|
3543
|
+
"version": "4.62.5",
|
|
3544
|
+
"integrity": "sha512-/gDJaRs4gl0NPIwqCz+6PkpmhhjRAD2j6P4rSNHBzUkO3naEx2mIU0pRle1vUNRQ7mE/+8OOeXLTv/J56FKiQg==",
|
|
3526
3545
|
"cpu": [
|
|
3527
3546
|
"x64"
|
|
3528
3547
|
],
|
|
@@ -3911,8 +3930,8 @@
|
|
|
3911
3930
|
"license": "MIT"
|
|
3912
3931
|
},
|
|
3913
3932
|
"node_modules/@types/d3-geo": {
|
|
3914
|
-
"version": "3.1.
|
|
3915
|
-
"integrity": "sha512-
|
|
3933
|
+
"version": "3.1.1",
|
|
3934
|
+
"integrity": "sha512-65Emv9fQiQQqphLlRkuQ5ypPsOmWPhtBGCMv61JDPEPMvsx+gzhGf74yw1a78xFKPj6zw4AgQICJoQv0vK9M2w==",
|
|
3916
3935
|
"dev": true,
|
|
3917
3936
|
"license": "MIT",
|
|
3918
3937
|
"dependencies": {
|
|
@@ -3980,8 +3999,8 @@
|
|
|
3980
3999
|
"license": "MIT"
|
|
3981
4000
|
},
|
|
3982
4001
|
"node_modules/@types/d3-shape": {
|
|
3983
|
-
"version": "3.
|
|
3984
|
-
"integrity": "sha512-
|
|
4002
|
+
"version": "3.2.0",
|
|
4003
|
+
"integrity": "sha512-kVd74ta9eof3eJOvbNd1vGKS/XERRyQbT26Og63hIsvDO84cjD5gEOhsXf26w3FSoNlPVz84DOFcKv/oou+fMw==",
|
|
3985
4004
|
"dev": true,
|
|
3986
4005
|
"license": "MIT",
|
|
3987
4006
|
"dependencies": {
|
|
@@ -4142,8 +4161,8 @@
|
|
|
4142
4161
|
"license": "MIT"
|
|
4143
4162
|
},
|
|
4144
4163
|
"node_modules/@types/lodash": {
|
|
4145
|
-
"version": "4.17.
|
|
4146
|
-
"integrity": "sha512
|
|
4164
|
+
"version": "4.17.25",
|
|
4165
|
+
"integrity": "sha512-+K1NIO8I+F9/wNulfVvu23QYd0Pe9/OCqRrim4NoYIf1VoEDL90Ve4ClzpyqBLc7NpGGWRvYNCKZ1BE/Jpf8dQ==",
|
|
4147
4166
|
"dev": true,
|
|
4148
4167
|
"license": "MIT"
|
|
4149
4168
|
},
|
|
@@ -4260,16 +4279,16 @@
|
|
|
4260
4279
|
"license": "MIT"
|
|
4261
4280
|
},
|
|
4262
4281
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4263
|
-
"version": "8.
|
|
4264
|
-
"integrity": "sha512-
|
|
4282
|
+
"version": "8.67.0",
|
|
4283
|
+
"integrity": "sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==",
|
|
4265
4284
|
"dev": true,
|
|
4266
4285
|
"license": "MIT",
|
|
4267
4286
|
"dependencies": {
|
|
4268
4287
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4269
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4270
|
-
"@typescript-eslint/type-utils": "8.
|
|
4271
|
-
"@typescript-eslint/utils": "8.
|
|
4272
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4288
|
+
"@typescript-eslint/scope-manager": "8.67.0",
|
|
4289
|
+
"@typescript-eslint/type-utils": "8.67.0",
|
|
4290
|
+
"@typescript-eslint/utils": "8.67.0",
|
|
4291
|
+
"@typescript-eslint/visitor-keys": "8.67.0",
|
|
4273
4292
|
"ignore": "^7.0.5",
|
|
4274
4293
|
"natural-compare": "^1.4.0",
|
|
4275
4294
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4282,7 +4301,7 @@
|
|
|
4282
4301
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4283
4302
|
},
|
|
4284
4303
|
"peerDependencies": {
|
|
4285
|
-
"@typescript-eslint/parser": "^8.
|
|
4304
|
+
"@typescript-eslint/parser": "^8.67.0",
|
|
4286
4305
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4287
4306
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4288
4307
|
}
|
|
@@ -4297,15 +4316,15 @@
|
|
|
4297
4316
|
}
|
|
4298
4317
|
},
|
|
4299
4318
|
"node_modules/@typescript-eslint/parser": {
|
|
4300
|
-
"version": "8.
|
|
4301
|
-
"integrity": "sha512-
|
|
4319
|
+
"version": "8.67.0",
|
|
4320
|
+
"integrity": "sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==",
|
|
4302
4321
|
"dev": true,
|
|
4303
4322
|
"license": "MIT",
|
|
4304
4323
|
"dependencies": {
|
|
4305
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4306
|
-
"@typescript-eslint/types": "8.
|
|
4307
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4308
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4324
|
+
"@typescript-eslint/scope-manager": "8.67.0",
|
|
4325
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4326
|
+
"@typescript-eslint/typescript-estree": "8.67.0",
|
|
4327
|
+
"@typescript-eslint/visitor-keys": "8.67.0",
|
|
4309
4328
|
"debug": "^4.4.3"
|
|
4310
4329
|
},
|
|
4311
4330
|
"engines": {
|
|
@@ -4321,13 +4340,13 @@
|
|
|
4321
4340
|
}
|
|
4322
4341
|
},
|
|
4323
4342
|
"node_modules/@typescript-eslint/project-service": {
|
|
4324
|
-
"version": "8.
|
|
4325
|
-
"integrity": "sha512-
|
|
4343
|
+
"version": "8.67.0",
|
|
4344
|
+
"integrity": "sha512-cvE8c7ulYeXN9fYuszhCeCsbzyVEXuhrRCybnBre7TUmqb5nRmBfQAwCj0O3WJFDeyAZt4VYv51vMCC9LHSdYw==",
|
|
4326
4345
|
"dev": true,
|
|
4327
4346
|
"license": "MIT",
|
|
4328
4347
|
"dependencies": {
|
|
4329
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4330
|
-
"@typescript-eslint/types": "^8.
|
|
4348
|
+
"@typescript-eslint/tsconfig-utils": "^8.67.0",
|
|
4349
|
+
"@typescript-eslint/types": "^8.67.0",
|
|
4331
4350
|
"debug": "^4.4.3"
|
|
4332
4351
|
},
|
|
4333
4352
|
"engines": {
|
|
@@ -4342,13 +4361,13 @@
|
|
|
4342
4361
|
}
|
|
4343
4362
|
},
|
|
4344
4363
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4345
|
-
"version": "8.
|
|
4346
|
-
"integrity": "sha512-
|
|
4364
|
+
"version": "8.67.0",
|
|
4365
|
+
"integrity": "sha512-EgvsleTwS4E+WzzSvem8fAUubLwatMNF1B5hHSLQxcvs7q2dtRhGyujHwLJSYlG41niJ7GP24Aha2+0mb1b2kg==",
|
|
4347
4366
|
"dev": true,
|
|
4348
4367
|
"license": "MIT",
|
|
4349
4368
|
"dependencies": {
|
|
4350
|
-
"@typescript-eslint/types": "8.
|
|
4351
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4369
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4370
|
+
"@typescript-eslint/visitor-keys": "8.67.0"
|
|
4352
4371
|
},
|
|
4353
4372
|
"engines": {
|
|
4354
4373
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4359,8 +4378,8 @@
|
|
|
4359
4378
|
}
|
|
4360
4379
|
},
|
|
4361
4380
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4362
|
-
"version": "8.
|
|
4363
|
-
"integrity": "sha512-
|
|
4381
|
+
"version": "8.67.0",
|
|
4382
|
+
"integrity": "sha512-vV+LUSv5njUWsknE71fqKTlXUva+R76SaeORd6Zojcunk/6DvKFXONU3BrAs2H49mbygUXt6gbYunzwqNwlhdg==",
|
|
4364
4383
|
"dev": true,
|
|
4365
4384
|
"license": "MIT",
|
|
4366
4385
|
"engines": {
|
|
@@ -4375,14 +4394,14 @@
|
|
|
4375
4394
|
}
|
|
4376
4395
|
},
|
|
4377
4396
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4378
|
-
"version": "8.
|
|
4379
|
-
"integrity": "sha512-
|
|
4397
|
+
"version": "8.67.0",
|
|
4398
|
+
"integrity": "sha512-aVWDXbRmdXO9siTfX4ditQI1T9+zVcNazT48EJCD0v40/9RIFoUgZ05CmGEq9H2gixRpjUn/iplwvlcvutJW/Q==",
|
|
4380
4399
|
"dev": true,
|
|
4381
4400
|
"license": "MIT",
|
|
4382
4401
|
"dependencies": {
|
|
4383
|
-
"@typescript-eslint/types": "8.
|
|
4384
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4385
|
-
"@typescript-eslint/utils": "8.
|
|
4402
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4403
|
+
"@typescript-eslint/typescript-estree": "8.67.0",
|
|
4404
|
+
"@typescript-eslint/utils": "8.67.0",
|
|
4386
4405
|
"debug": "^4.4.3",
|
|
4387
4406
|
"ts-api-utils": "^2.5.0"
|
|
4388
4407
|
},
|
|
@@ -4399,8 +4418,8 @@
|
|
|
4399
4418
|
}
|
|
4400
4419
|
},
|
|
4401
4420
|
"node_modules/@typescript-eslint/types": {
|
|
4402
|
-
"version": "8.
|
|
4403
|
-
"integrity": "sha512-
|
|
4421
|
+
"version": "8.67.0",
|
|
4422
|
+
"integrity": "sha512-sBtgslww8nsMYUjhdPBiSyUqSzT8uR6g93A2QXnQC8+cGdjz0CyaOdqHDRJb1AtORbZCNUJBBeFA/tNR2uQmww==",
|
|
4404
4423
|
"dev": true,
|
|
4405
4424
|
"license": "MIT",
|
|
4406
4425
|
"engines": {
|
|
@@ -4412,15 +4431,15 @@
|
|
|
4412
4431
|
}
|
|
4413
4432
|
},
|
|
4414
4433
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4415
|
-
"version": "8.
|
|
4416
|
-
"integrity": "sha512-
|
|
4434
|
+
"version": "8.67.0",
|
|
4435
|
+
"integrity": "sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==",
|
|
4417
4436
|
"dev": true,
|
|
4418
4437
|
"license": "MIT",
|
|
4419
4438
|
"dependencies": {
|
|
4420
|
-
"@typescript-eslint/project-service": "8.
|
|
4421
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4422
|
-
"@typescript-eslint/types": "8.
|
|
4423
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4439
|
+
"@typescript-eslint/project-service": "8.67.0",
|
|
4440
|
+
"@typescript-eslint/tsconfig-utils": "8.67.0",
|
|
4441
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4442
|
+
"@typescript-eslint/visitor-keys": "8.67.0",
|
|
4424
4443
|
"debug": "^4.4.3",
|
|
4425
4444
|
"minimatch": "^10.2.2",
|
|
4426
4445
|
"semver": "^7.7.3",
|
|
@@ -4448,8 +4467,8 @@
|
|
|
4448
4467
|
}
|
|
4449
4468
|
},
|
|
4450
4469
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4451
|
-
"version": "5.0.
|
|
4452
|
-
"integrity": "sha512-
|
|
4470
|
+
"version": "5.0.9",
|
|
4471
|
+
"integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
|
|
4453
4472
|
"dev": true,
|
|
4454
4473
|
"license": "MIT",
|
|
4455
4474
|
"dependencies": {
|
|
@@ -4460,12 +4479,12 @@
|
|
|
4460
4479
|
}
|
|
4461
4480
|
},
|
|
4462
4481
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
4463
|
-
"version": "10.2.
|
|
4464
|
-
"integrity": "sha512-
|
|
4482
|
+
"version": "10.2.6",
|
|
4483
|
+
"integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
|
|
4465
4484
|
"dev": true,
|
|
4466
4485
|
"license": "BlueOak-1.0.0",
|
|
4467
4486
|
"dependencies": {
|
|
4468
|
-
"brace-expansion": "^5.0.
|
|
4487
|
+
"brace-expansion": "^5.0.8"
|
|
4469
4488
|
},
|
|
4470
4489
|
"engines": {
|
|
4471
4490
|
"node": "18 || 20 || >=22"
|
|
@@ -4487,15 +4506,15 @@
|
|
|
4487
4506
|
}
|
|
4488
4507
|
},
|
|
4489
4508
|
"node_modules/@typescript-eslint/utils": {
|
|
4490
|
-
"version": "8.
|
|
4491
|
-
"integrity": "sha512-
|
|
4509
|
+
"version": "8.67.0",
|
|
4510
|
+
"integrity": "sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==",
|
|
4492
4511
|
"dev": true,
|
|
4493
4512
|
"license": "MIT",
|
|
4494
4513
|
"dependencies": {
|
|
4495
4514
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4496
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4497
|
-
"@typescript-eslint/types": "8.
|
|
4498
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4515
|
+
"@typescript-eslint/scope-manager": "8.67.0",
|
|
4516
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4517
|
+
"@typescript-eslint/typescript-estree": "8.67.0"
|
|
4499
4518
|
},
|
|
4500
4519
|
"engines": {
|
|
4501
4520
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4510,12 +4529,12 @@
|
|
|
4510
4529
|
}
|
|
4511
4530
|
},
|
|
4512
4531
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4513
|
-
"version": "8.
|
|
4514
|
-
"integrity": "sha512-
|
|
4532
|
+
"version": "8.67.0",
|
|
4533
|
+
"integrity": "sha512-fkv8dHRDqfGtTHuJeebdrQ7cX6Ad4WAS00rgHh9UGvMycF1mjBfsxry1XsLIFhWZ6Judlh6UdzK+TYlbpCXgnA==",
|
|
4515
4534
|
"dev": true,
|
|
4516
4535
|
"license": "MIT",
|
|
4517
4536
|
"dependencies": {
|
|
4518
|
-
"@typescript-eslint/types": "8.
|
|
4537
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4519
4538
|
"eslint-visitor-keys": "^5.0.0"
|
|
4520
4539
|
},
|
|
4521
4540
|
"engines": {
|
|
@@ -5025,8 +5044,8 @@
|
|
|
5025
5044
|
}
|
|
5026
5045
|
},
|
|
5027
5046
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5028
|
-
"version": "1.0.0-rc.
|
|
5029
|
-
"integrity": "sha512-
|
|
5047
|
+
"version": "1.0.0-rc.647712",
|
|
5048
|
+
"integrity": "sha512-3L/veFxFllkS44PYusC8PnPEFyxsfL+kDRUDuFGOLMRdWmc2tqi8J6HUoDxMvsgTMNsYylAA3BGxrl9GcZA52Q==",
|
|
5030
5049
|
"license": "ISC",
|
|
5031
5050
|
"dependencies": {
|
|
5032
5051
|
"@angular/compiler": "12.2.1",
|
|
@@ -5273,8 +5292,8 @@
|
|
|
5273
5292
|
}
|
|
5274
5293
|
},
|
|
5275
5294
|
"node_modules/@wavemaker-ai/variables": {
|
|
5276
|
-
"version": "1.0.0-rc.
|
|
5277
|
-
"integrity": "sha512-
|
|
5295
|
+
"version": "1.0.0-rc.647712",
|
|
5296
|
+
"integrity": "sha512-iavadKm6vjdZTvls75bRiH0klhNUoI7Ntul9NGdYwOzIusEr8cZadIR5YY436gHP7HBHoOTHKGjotpank6RU7A==",
|
|
5278
5297
|
"license": "ISC",
|
|
5279
5298
|
"dependencies": {
|
|
5280
5299
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5293,8 +5312,8 @@
|
|
|
5293
5312
|
}
|
|
5294
5313
|
},
|
|
5295
5314
|
"node_modules/@xmldom/xmldom": {
|
|
5296
|
-
"version": "0.8.
|
|
5297
|
-
"integrity": "sha512
|
|
5315
|
+
"version": "0.8.15",
|
|
5316
|
+
"integrity": "sha512-/5NV/vDALVFDXgLmfsy9TRCBlKwO2LNBFzpzvb9iIj+jR+eSc6DLYYvVOdivT/jm7MtU6TebYuRmzEOI7w40UA==",
|
|
5298
5317
|
"license": "MIT",
|
|
5299
5318
|
"engines": {
|
|
5300
5319
|
"node": ">=10.0.0"
|
|
@@ -5312,8 +5331,8 @@
|
|
|
5312
5331
|
}
|
|
5313
5332
|
},
|
|
5314
5333
|
"node_modules/acorn": {
|
|
5315
|
-
"version": "8.
|
|
5316
|
-
"integrity": "sha512-
|
|
5334
|
+
"version": "8.18.0",
|
|
5335
|
+
"integrity": "sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==",
|
|
5317
5336
|
"dev": true,
|
|
5318
5337
|
"license": "MIT",
|
|
5319
5338
|
"bin": {
|
|
@@ -5758,8 +5777,8 @@
|
|
|
5758
5777
|
}
|
|
5759
5778
|
},
|
|
5760
5779
|
"node_modules/bare-fs": {
|
|
5761
|
-
"version": "4.
|
|
5762
|
-
"integrity": "sha512-
|
|
5780
|
+
"version": "4.8.0",
|
|
5781
|
+
"integrity": "sha512-fM+MhCvdQhZ7NV6S95a07gPSqjIYKn6mFaXfx266wN3ajZGl/+1AzH+ubkXQ0fFZvOe2nk9VHkzdYkQE5zMV3Q==",
|
|
5763
5782
|
"license": "Apache-2.0",
|
|
5764
5783
|
"dependencies": {
|
|
5765
5784
|
"bare-events": "^2.5.4",
|
|
@@ -5769,7 +5788,7 @@
|
|
|
5769
5788
|
"fast-fifo": "^1.3.2"
|
|
5770
5789
|
},
|
|
5771
5790
|
"engines": {
|
|
5772
|
-
"bare": ">=1.
|
|
5791
|
+
"bare": ">=1.28.0"
|
|
5773
5792
|
},
|
|
5774
5793
|
"peerDependencies": {
|
|
5775
5794
|
"bare-buffer": "*"
|
|
@@ -5812,8 +5831,8 @@
|
|
|
5812
5831
|
}
|
|
5813
5832
|
},
|
|
5814
5833
|
"node_modules/bare-url": {
|
|
5815
|
-
"version": "2.
|
|
5816
|
-
"integrity": "sha512-
|
|
5834
|
+
"version": "2.5.2",
|
|
5835
|
+
"integrity": "sha512-L13PCJzKG8RGvx8V1/DdMi12ERhC3tprr7/8a94BxpmnRsFqxh5XZNdhtMxu5HPkRshYOOWRGY8lDP7ZhpG9Cg==",
|
|
5817
5836
|
"license": "Apache-2.0",
|
|
5818
5837
|
"dependencies": {
|
|
5819
5838
|
"bare-path": "^3.0.0"
|
|
@@ -5839,8 +5858,8 @@
|
|
|
5839
5858
|
"license": "MIT"
|
|
5840
5859
|
},
|
|
5841
5860
|
"node_modules/baseline-browser-mapping": {
|
|
5842
|
-
"version": "2.11.
|
|
5843
|
-
"integrity": "sha512-
|
|
5861
|
+
"version": "2.11.18",
|
|
5862
|
+
"integrity": "sha512-1iEmLEYSiE1SeBoAfPo/Mnx3PzfzHUkDK61ASkCpuk3YXugYLH5DYK1SzqV55F8FMI6s0F+/tCP7Polz1QRjxw==",
|
|
5844
5863
|
"license": "Apache-2.0",
|
|
5845
5864
|
"bin": {
|
|
5846
5865
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5864,8 +5883,8 @@
|
|
|
5864
5883
|
"license": "ISC"
|
|
5865
5884
|
},
|
|
5866
5885
|
"node_modules/brace-expansion": {
|
|
5867
|
-
"version": "1.1.
|
|
5868
|
-
"integrity": "sha512-
|
|
5886
|
+
"version": "1.1.18",
|
|
5887
|
+
"integrity": "sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==",
|
|
5869
5888
|
"license": "MIT",
|
|
5870
5889
|
"dependencies": {
|
|
5871
5890
|
"balanced-match": "^1.0.0",
|
|
@@ -5884,8 +5903,8 @@
|
|
|
5884
5903
|
}
|
|
5885
5904
|
},
|
|
5886
5905
|
"node_modules/browserslist": {
|
|
5887
|
-
"version": "4.28.
|
|
5888
|
-
"integrity": "sha512-
|
|
5906
|
+
"version": "4.28.8",
|
|
5907
|
+
"integrity": "sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==",
|
|
5889
5908
|
"dev": true,
|
|
5890
5909
|
"funding": [
|
|
5891
5910
|
{
|
|
@@ -5903,11 +5922,11 @@
|
|
|
5903
5922
|
],
|
|
5904
5923
|
"license": "MIT",
|
|
5905
5924
|
"dependencies": {
|
|
5906
|
-
"baseline-browser-mapping": "^2.
|
|
5907
|
-
"caniuse-lite": "^1.0.
|
|
5908
|
-
"electron-to-chromium": "^1.5.
|
|
5909
|
-
"node-releases": "^2.0.
|
|
5910
|
-
"update-browserslist-db": "^1.
|
|
5925
|
+
"baseline-browser-mapping": "^2.11.12",
|
|
5926
|
+
"caniuse-lite": "^1.0.30001809",
|
|
5927
|
+
"electron-to-chromium": "^1.5.402",
|
|
5928
|
+
"node-releases": "^2.0.53",
|
|
5929
|
+
"update-browserslist-db": "^1.3.0"
|
|
5911
5930
|
},
|
|
5912
5931
|
"bin": {
|
|
5913
5932
|
"browserslist": "cli.js"
|
|
@@ -6011,8 +6030,8 @@
|
|
|
6011
6030
|
}
|
|
6012
6031
|
},
|
|
6013
6032
|
"node_modules/caniuse-lite": {
|
|
6014
|
-
"version": "1.0.
|
|
6015
|
-
"integrity": "sha512-
|
|
6033
|
+
"version": "1.0.30001809",
|
|
6034
|
+
"integrity": "sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==",
|
|
6016
6035
|
"funding": [
|
|
6017
6036
|
{
|
|
6018
6037
|
"type": "opencollective",
|
|
@@ -7091,8 +7110,8 @@
|
|
|
7091
7110
|
"license": "MIT"
|
|
7092
7111
|
},
|
|
7093
7112
|
"node_modules/electron-to-chromium": {
|
|
7094
|
-
"version": "1.5.
|
|
7095
|
-
"integrity": "sha512-
|
|
7113
|
+
"version": "1.5.412",
|
|
7114
|
+
"integrity": "sha512-z4rMe3esBzlzovKHj4gxJnsCGZRK5l4baUvm+gCGJBPE+gsyUMKsuU9tnEUtI1dOebXz1ytAPGjvXhmQ7rIPwA==",
|
|
7096
7115
|
"dev": true,
|
|
7097
7116
|
"license": "ISC"
|
|
7098
7117
|
},
|
|
@@ -7383,6 +7402,7 @@
|
|
|
7383
7402
|
"node_modules/eslint": {
|
|
7384
7403
|
"version": "9.39.5",
|
|
7385
7404
|
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7405
|
+
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
|
|
7386
7406
|
"dev": true,
|
|
7387
7407
|
"license": "MIT",
|
|
7388
7408
|
"dependencies": {
|
|
@@ -8067,8 +8087,8 @@
|
|
|
8067
8087
|
}
|
|
8068
8088
|
},
|
|
8069
8089
|
"node_modules/flatted": {
|
|
8070
|
-
"version": "3.4.
|
|
8071
|
-
"integrity": "sha512
|
|
8090
|
+
"version": "3.4.4",
|
|
8091
|
+
"integrity": "sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==",
|
|
8072
8092
|
"dev": true,
|
|
8073
8093
|
"license": "ISC"
|
|
8074
8094
|
},
|
|
@@ -8325,8 +8345,8 @@
|
|
|
8325
8345
|
}
|
|
8326
8346
|
},
|
|
8327
8347
|
"node_modules/get-tsconfig": {
|
|
8328
|
-
"version": "4.14.
|
|
8329
|
-
"integrity": "sha512
|
|
8348
|
+
"version": "4.14.3",
|
|
8349
|
+
"integrity": "sha512-++QEw4DIY7WGoukz+/+A/8dGYPT9l9yIadnmSgZ8Rjr3YVSVDipQSO9CdnJo9ePqFqUUqh+wk9uIaoiAwsiPkA==",
|
|
8330
8350
|
"dev": true,
|
|
8331
8351
|
"license": "MIT",
|
|
8332
8352
|
"dependencies": {
|
|
@@ -8369,8 +8389,8 @@
|
|
|
8369
8389
|
}
|
|
8370
8390
|
},
|
|
8371
8391
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
8372
|
-
"version": "2.1.
|
|
8373
|
-
"integrity": "sha512-
|
|
8392
|
+
"version": "2.1.4",
|
|
8393
|
+
"integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
|
|
8374
8394
|
"license": "MIT",
|
|
8375
8395
|
"dependencies": {
|
|
8376
8396
|
"balanced-match": "^1.0.0"
|
|
@@ -9614,8 +9634,8 @@
|
|
|
9614
9634
|
}
|
|
9615
9635
|
},
|
|
9616
9636
|
"node_modules/jodit": {
|
|
9617
|
-
"version": "4.13.
|
|
9618
|
-
"integrity": "sha512-
|
|
9637
|
+
"version": "4.13.23",
|
|
9638
|
+
"integrity": "sha512-RP1K2S6aGzAeRHOIqB7ZV6Ii3AxIbdMLE8wTQSKmCDCyFNBkpmvIiqN2pOCkQcWSnVyXTCW9GWqDBOrFLrtm4g==",
|
|
9619
9639
|
"license": "MIT",
|
|
9620
9640
|
"funding": {
|
|
9621
9641
|
"type": "commercial",
|
|
@@ -9648,8 +9668,8 @@
|
|
|
9648
9668
|
"license": "MIT"
|
|
9649
9669
|
},
|
|
9650
9670
|
"node_modules/js-yaml": {
|
|
9651
|
-
"version": "4.3.
|
|
9652
|
-
"integrity": "sha512-
|
|
9671
|
+
"version": "4.3.1",
|
|
9672
|
+
"integrity": "sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==",
|
|
9653
9673
|
"dev": true,
|
|
9654
9674
|
"funding": [
|
|
9655
9675
|
{
|
|
@@ -10497,8 +10517,8 @@
|
|
|
10497
10517
|
}
|
|
10498
10518
|
},
|
|
10499
10519
|
"node_modules/nanoid": {
|
|
10500
|
-
"version": "3.3.
|
|
10501
|
-
"integrity": "sha512-
|
|
10520
|
+
"version": "3.3.18",
|
|
10521
|
+
"integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
|
|
10502
10522
|
"funding": [
|
|
10503
10523
|
{
|
|
10504
10524
|
"type": "github",
|
|
@@ -10627,8 +10647,8 @@
|
|
|
10627
10647
|
}
|
|
10628
10648
|
},
|
|
10629
10649
|
"node_modules/node-releases": {
|
|
10630
|
-
"version": "2.0.
|
|
10631
|
-
"integrity": "sha512-
|
|
10650
|
+
"version": "2.0.53",
|
|
10651
|
+
"integrity": "sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==",
|
|
10632
10652
|
"dev": true,
|
|
10633
10653
|
"license": "MIT",
|
|
10634
10654
|
"engines": {
|
|
@@ -11263,18 +11283,18 @@
|
|
|
11263
11283
|
}
|
|
11264
11284
|
},
|
|
11265
11285
|
"node_modules/react-aria": {
|
|
11266
|
-
"version": "3.
|
|
11267
|
-
"integrity": "sha512-
|
|
11286
|
+
"version": "3.51.0",
|
|
11287
|
+
"integrity": "sha512-AyWLw0XR38cFPwBu/ErgGaVrc5dupLEKmRlMXTGvFKOtbaGRQ2+yQJkjVhpdHhoRhU4+G+tJDFeHDTS8tK3bfQ==",
|
|
11268
11288
|
"license": "Apache-2.0",
|
|
11269
11289
|
"dependencies": {
|
|
11270
|
-
"@internationalized/date": "^3.12.
|
|
11290
|
+
"@internationalized/date": "^3.12.3",
|
|
11271
11291
|
"@internationalized/number": "^3.6.7",
|
|
11272
|
-
"@internationalized/string": "^3.2.
|
|
11273
|
-
"@react-types/shared": "^3.36.
|
|
11292
|
+
"@internationalized/string": "^3.2.10",
|
|
11293
|
+
"@react-types/shared": "^3.36.1",
|
|
11274
11294
|
"@swc/helpers": "^0.5.0",
|
|
11275
11295
|
"aria-hidden": "^1.2.3",
|
|
11276
11296
|
"clsx": "^2.0.0",
|
|
11277
|
-
"react-stately": "3.
|
|
11297
|
+
"react-stately": "3.49.0",
|
|
11278
11298
|
"use-sync-external-store": "^1.6.0"
|
|
11279
11299
|
},
|
|
11280
11300
|
"peerDependencies": {
|
|
@@ -11414,14 +11434,14 @@
|
|
|
11414
11434
|
}
|
|
11415
11435
|
},
|
|
11416
11436
|
"node_modules/react-stately": {
|
|
11417
|
-
"version": "3.
|
|
11418
|
-
"integrity": "sha512-
|
|
11437
|
+
"version": "3.49.0",
|
|
11438
|
+
"integrity": "sha512-13iNq2KzBrRAzxRc+n53hgROfIistiYY/sPtIhCw1qUB7/kmo+X1xEU2uiS5zcCIrc55AUPwoHqOIIpKWSwB9A==",
|
|
11419
11439
|
"license": "Apache-2.0",
|
|
11420
11440
|
"dependencies": {
|
|
11421
|
-
"@internationalized/date": "^3.12.
|
|
11441
|
+
"@internationalized/date": "^3.12.3",
|
|
11422
11442
|
"@internationalized/number": "^3.6.7",
|
|
11423
|
-
"@internationalized/string": "^3.2.
|
|
11424
|
-
"@react-types/shared": "^3.36.
|
|
11443
|
+
"@internationalized/string": "^3.2.10",
|
|
11444
|
+
"@react-types/shared": "^3.36.1",
|
|
11425
11445
|
"@swc/helpers": "^0.5.0",
|
|
11426
11446
|
"use-sync-external-store": "^1.6.0"
|
|
11427
11447
|
},
|
|
@@ -11476,8 +11496,8 @@
|
|
|
11476
11496
|
}
|
|
11477
11497
|
},
|
|
11478
11498
|
"node_modules/readdir-glob/node_modules/brace-expansion": {
|
|
11479
|
-
"version": "2.1.
|
|
11480
|
-
"integrity": "sha512-
|
|
11499
|
+
"version": "2.1.4",
|
|
11500
|
+
"integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
|
|
11481
11501
|
"license": "MIT",
|
|
11482
11502
|
"dependencies": {
|
|
11483
11503
|
"balanced-match": "^1.0.0"
|
|
@@ -11580,8 +11600,8 @@
|
|
|
11580
11600
|
}
|
|
11581
11601
|
},
|
|
11582
11602
|
"node_modules/reselect": {
|
|
11583
|
-
"version": "5.
|
|
11584
|
-
"integrity": "sha512-
|
|
11603
|
+
"version": "5.3.0",
|
|
11604
|
+
"integrity": "sha512-XGoLeRAVzUTcJ1qkxPQhDJyIZ5d6zzZD9nT7AEZOaaU9UbWclhycElmhO+VD5bFeLuzhPBaOV2oXC8uG35ZSpg==",
|
|
11585
11605
|
"license": "MIT"
|
|
11586
11606
|
},
|
|
11587
11607
|
"node_modules/resolve": {
|
|
@@ -11698,8 +11718,8 @@
|
|
|
11698
11718
|
"license": "Unlicense"
|
|
11699
11719
|
},
|
|
11700
11720
|
"node_modules/rollup": {
|
|
11701
|
-
"version": "4.62.
|
|
11702
|
-
"integrity": "sha512
|
|
11721
|
+
"version": "4.62.5",
|
|
11722
|
+
"integrity": "sha512-/tqMfgP7GPA3PHhCmuiS4vIjrSVhHLgY++i+dhbG462euyAj7FpM4D9uq1X3BgjlqRdpcOrYhcQtfiQLNc8tqw==",
|
|
11703
11723
|
"dev": true,
|
|
11704
11724
|
"license": "MIT",
|
|
11705
11725
|
"dependencies": {
|
|
@@ -11713,31 +11733,32 @@
|
|
|
11713
11733
|
"npm": ">=8.0.0"
|
|
11714
11734
|
},
|
|
11715
11735
|
"optionalDependencies": {
|
|
11716
|
-
"@
|
|
11717
|
-
"@rollup/rollup-android-
|
|
11718
|
-
"@rollup/rollup-
|
|
11719
|
-
"@rollup/rollup-darwin-
|
|
11720
|
-
"@rollup/rollup-
|
|
11721
|
-
"@rollup/rollup-freebsd-
|
|
11722
|
-
"@rollup/rollup-
|
|
11723
|
-
"@rollup/rollup-linux-arm-
|
|
11724
|
-
"@rollup/rollup-linux-
|
|
11725
|
-
"@rollup/rollup-linux-arm64-
|
|
11726
|
-
"@rollup/rollup-linux-
|
|
11727
|
-
"@rollup/rollup-linux-loong64-
|
|
11728
|
-
"@rollup/rollup-linux-
|
|
11729
|
-
"@rollup/rollup-linux-ppc64-
|
|
11730
|
-
"@rollup/rollup-linux-
|
|
11731
|
-
"@rollup/rollup-linux-riscv64-
|
|
11732
|
-
"@rollup/rollup-linux-
|
|
11733
|
-
"@rollup/rollup-linux-
|
|
11734
|
-
"@rollup/rollup-linux-x64-
|
|
11735
|
-
"@rollup/rollup-
|
|
11736
|
-
"@rollup/rollup-
|
|
11737
|
-
"@rollup/rollup-
|
|
11738
|
-
"@rollup/rollup-win32-
|
|
11739
|
-
"@rollup/rollup-win32-
|
|
11740
|
-
"@rollup/rollup-win32-x64-
|
|
11736
|
+
"@napi-rs/lzma-linux-x64-gnu": "1.5.1",
|
|
11737
|
+
"@rollup/rollup-android-arm-eabi": "4.62.5",
|
|
11738
|
+
"@rollup/rollup-android-arm64": "4.62.5",
|
|
11739
|
+
"@rollup/rollup-darwin-arm64": "4.62.5",
|
|
11740
|
+
"@rollup/rollup-darwin-x64": "4.62.5",
|
|
11741
|
+
"@rollup/rollup-freebsd-arm64": "4.62.5",
|
|
11742
|
+
"@rollup/rollup-freebsd-x64": "4.62.5",
|
|
11743
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.62.5",
|
|
11744
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.62.5",
|
|
11745
|
+
"@rollup/rollup-linux-arm64-gnu": "4.62.5",
|
|
11746
|
+
"@rollup/rollup-linux-arm64-musl": "4.62.5",
|
|
11747
|
+
"@rollup/rollup-linux-loong64-gnu": "4.62.5",
|
|
11748
|
+
"@rollup/rollup-linux-loong64-musl": "4.62.5",
|
|
11749
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.62.5",
|
|
11750
|
+
"@rollup/rollup-linux-ppc64-musl": "4.62.5",
|
|
11751
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.62.5",
|
|
11752
|
+
"@rollup/rollup-linux-riscv64-musl": "4.62.5",
|
|
11753
|
+
"@rollup/rollup-linux-s390x-gnu": "4.62.5",
|
|
11754
|
+
"@rollup/rollup-linux-x64-gnu": "4.62.5",
|
|
11755
|
+
"@rollup/rollup-linux-x64-musl": "4.62.5",
|
|
11756
|
+
"@rollup/rollup-openbsd-x64": "4.62.5",
|
|
11757
|
+
"@rollup/rollup-openharmony-arm64": "4.62.5",
|
|
11758
|
+
"@rollup/rollup-win32-arm64-msvc": "4.62.5",
|
|
11759
|
+
"@rollup/rollup-win32-ia32-msvc": "4.62.5",
|
|
11760
|
+
"@rollup/rollup-win32-x64-gnu": "4.62.5",
|
|
11761
|
+
"@rollup/rollup-win32-x64-msvc": "4.62.5",
|
|
11741
11762
|
"fsevents": "~2.3.2"
|
|
11742
11763
|
}
|
|
11743
11764
|
},
|
|
@@ -12427,8 +12448,8 @@
|
|
|
12427
12448
|
}
|
|
12428
12449
|
},
|
|
12429
12450
|
"node_modules/strip-ansi/node_modules/ansi-regex": {
|
|
12430
|
-
"version": "6.
|
|
12431
|
-
"integrity": "sha512-
|
|
12451
|
+
"version": "6.3.0",
|
|
12452
|
+
"integrity": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==",
|
|
12432
12453
|
"license": "MIT",
|
|
12433
12454
|
"engines": {
|
|
12434
12455
|
"node": ">=12"
|
|
@@ -12644,8 +12665,8 @@
|
|
|
12644
12665
|
}
|
|
12645
12666
|
},
|
|
12646
12667
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
12647
|
-
"version": "5.0.
|
|
12648
|
-
"integrity": "sha512-
|
|
12668
|
+
"version": "5.0.9",
|
|
12669
|
+
"integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
|
|
12649
12670
|
"dev": true,
|
|
12650
12671
|
"license": "MIT",
|
|
12651
12672
|
"dependencies": {
|
|
@@ -12656,12 +12677,12 @@
|
|
|
12656
12677
|
}
|
|
12657
12678
|
},
|
|
12658
12679
|
"node_modules/test-exclude/node_modules/minimatch": {
|
|
12659
|
-
"version": "10.2.
|
|
12660
|
-
"integrity": "sha512-
|
|
12680
|
+
"version": "10.2.6",
|
|
12681
|
+
"integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
|
|
12661
12682
|
"dev": true,
|
|
12662
12683
|
"license": "BlueOak-1.0.0",
|
|
12663
12684
|
"dependencies": {
|
|
12664
|
-
"brace-expansion": "^5.0.
|
|
12685
|
+
"brace-expansion": "^5.0.8"
|
|
12665
12686
|
},
|
|
12666
12687
|
"engines": {
|
|
12667
12688
|
"node": "18 || 20 || >=22"
|
|
@@ -12757,20 +12778,20 @@
|
|
|
12757
12778
|
}
|
|
12758
12779
|
},
|
|
12759
12780
|
"node_modules/tldts": {
|
|
12760
|
-
"version": "7.4.
|
|
12761
|
-
"integrity": "sha512-
|
|
12781
|
+
"version": "7.4.10",
|
|
12782
|
+
"integrity": "sha512-GgouD1B+sWwvkaEq8vXC15DjQitxbvs12oIXELpconwm+Tg3zfcEv4jgzq3vtKverDXsg3VI8aRgNL2Nra0Iog==",
|
|
12762
12783
|
"dev": true,
|
|
12763
12784
|
"license": "MIT",
|
|
12764
12785
|
"dependencies": {
|
|
12765
|
-
"tldts-core": "^7.4.
|
|
12786
|
+
"tldts-core": "^7.4.10"
|
|
12766
12787
|
},
|
|
12767
12788
|
"bin": {
|
|
12768
12789
|
"tldts": "bin/cli.js"
|
|
12769
12790
|
}
|
|
12770
12791
|
},
|
|
12771
12792
|
"node_modules/tldts-core": {
|
|
12772
|
-
"version": "7.4.
|
|
12773
|
-
"integrity": "sha512-
|
|
12793
|
+
"version": "7.4.10",
|
|
12794
|
+
"integrity": "sha512-KnQjp53ZekKgm/r3l+u8kJGGzYgrWdP8+Mql7a4vijh2WE0IrZWspQj/TpTxDho/YxO+AnOZnIjQcCD+q6iJsw==",
|
|
12774
12795
|
"dev": true,
|
|
12775
12796
|
"license": "MIT"
|
|
12776
12797
|
},
|
|
@@ -13085,8 +13106,8 @@
|
|
|
13085
13106
|
}
|
|
13086
13107
|
},
|
|
13087
13108
|
"node_modules/update-browserslist-db": {
|
|
13088
|
-
"version": "1.
|
|
13089
|
-
"integrity": "sha512-
|
|
13109
|
+
"version": "1.3.1",
|
|
13110
|
+
"integrity": "sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==",
|
|
13090
13111
|
"dev": true,
|
|
13091
13112
|
"funding": [
|
|
13092
13113
|
{
|
|
@@ -13233,8 +13254,8 @@
|
|
|
13233
13254
|
}
|
|
13234
13255
|
},
|
|
13235
13256
|
"node_modules/vite/node_modules/postcss": {
|
|
13236
|
-
"version": "8.5.
|
|
13237
|
-
"integrity": "sha512-
|
|
13257
|
+
"version": "8.5.26",
|
|
13258
|
+
"integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
|
|
13238
13259
|
"dev": true,
|
|
13239
13260
|
"funding": [
|
|
13240
13261
|
{
|
|
@@ -13252,7 +13273,7 @@
|
|
|
13252
13273
|
],
|
|
13253
13274
|
"license": "MIT",
|
|
13254
13275
|
"dependencies": {
|
|
13255
|
-
"nanoid": "^3.3.
|
|
13276
|
+
"nanoid": "^3.3.17",
|
|
13256
13277
|
"picocolors": "^1.1.1",
|
|
13257
13278
|
"source-map-js": "^1.2.1"
|
|
13258
13279
|
},
|
|
@@ -13727,8 +13748,8 @@
|
|
|
13727
13748
|
}
|
|
13728
13749
|
},
|
|
13729
13750
|
"node_modules/yoctocolors": {
|
|
13730
|
-
"version": "2.
|
|
13731
|
-
"integrity": "sha512-
|
|
13751
|
+
"version": "2.2.0",
|
|
13752
|
+
"integrity": "sha512-xYqdZFUK/VYazNl/oCDYN+3WloWQwMfZxBoiNt6qNyk+xfOdi598muWE42rNZFp1kNOiqW936q5RhUdnpqElSg==",
|
|
13732
13753
|
"license": "MIT",
|
|
13733
13754
|
"engines": {
|
|
13734
13755
|
"node": ">=18"
|