@wavemaker-ai/react-runtime 1.0.0-rc.330 → 1.0.0-rc.334
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 +203 -185
- 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.334",
|
|
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.334",
|
|
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.334",
|
|
32
|
+
"@wavemaker-ai/variables": "1.0.0-rc.334",
|
|
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.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
|
{
|
|
@@ -2920,9 +2920,25 @@
|
|
|
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.2.
|
|
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,
|
|
@@ -2937,8 +2953,8 @@
|
|
|
2937
2953
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
2938
2954
|
},
|
|
2939
2955
|
"peerDependencies": {
|
|
2940
|
-
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.
|
|
2941
|
-
"@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.
|
|
2956
|
+
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.4",
|
|
2957
|
+
"@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.4"
|
|
2942
2958
|
}
|
|
2943
2959
|
},
|
|
2944
2960
|
"node_modules/@next/env": {
|
|
@@ -3212,8 +3228,8 @@
|
|
|
3212
3228
|
"license": "MIT"
|
|
3213
3229
|
},
|
|
3214
3230
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3215
|
-
"version": "4.62.
|
|
3216
|
-
"integrity": "sha512-
|
|
3231
|
+
"version": "4.62.5",
|
|
3232
|
+
"integrity": "sha512-jfkGfTwhQpsiSckPF8r9bU3pn3vyd72NlWaO+TgEO6WPSDnUhXzrNYCHBMOYj0ACaUgjm6eERLF+XV9a6RstoA==",
|
|
3217
3233
|
"cpu": [
|
|
3218
3234
|
"arm"
|
|
3219
3235
|
],
|
|
@@ -3225,8 +3241,8 @@
|
|
|
3225
3241
|
]
|
|
3226
3242
|
},
|
|
3227
3243
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3228
|
-
"version": "4.62.
|
|
3229
|
-
"integrity": "sha512-
|
|
3244
|
+
"version": "4.62.5",
|
|
3245
|
+
"integrity": "sha512-oGVqyQlxnrz9/ty89oHpU857VUHEl5/Xu4R2lS+aivCTrNnSsbiENzTnNaBsjxH0CNWGPhzHArOLFwo+oKXveA==",
|
|
3230
3246
|
"cpu": [
|
|
3231
3247
|
"arm64"
|
|
3232
3248
|
],
|
|
@@ -3238,8 +3254,8 @@
|
|
|
3238
3254
|
]
|
|
3239
3255
|
},
|
|
3240
3256
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3241
|
-
"version": "4.62.
|
|
3242
|
-
"integrity": "sha512-
|
|
3257
|
+
"version": "4.62.5",
|
|
3258
|
+
"integrity": "sha512-bW7B8xMEq8n99Q3ieEcPRGuphurdZAaFzQc9Efyyw3FL6DZO6pMy9xhdN+kBoD7Sy05xNXSr4OyPPnpkYriS/A==",
|
|
3243
3259
|
"cpu": [
|
|
3244
3260
|
"arm64"
|
|
3245
3261
|
],
|
|
@@ -3251,8 +3267,8 @@
|
|
|
3251
3267
|
]
|
|
3252
3268
|
},
|
|
3253
3269
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3254
|
-
"version": "4.62.
|
|
3255
|
-
"integrity": "sha512-
|
|
3270
|
+
"version": "4.62.5",
|
|
3271
|
+
"integrity": "sha512-YSwBS86QeHOGlrxJ1PSOIZSkzRL/JmKeunhc+lV6M1a6En8QuVCD/T/qIA0J4Gd2Y86RIOBYrLcOUtqGh9+/1w==",
|
|
3256
3272
|
"cpu": [
|
|
3257
3273
|
"x64"
|
|
3258
3274
|
],
|
|
@@ -3264,8 +3280,8 @@
|
|
|
3264
3280
|
]
|
|
3265
3281
|
},
|
|
3266
3282
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3267
|
-
"version": "4.62.
|
|
3268
|
-
"integrity": "sha512-
|
|
3283
|
+
"version": "4.62.5",
|
|
3284
|
+
"integrity": "sha512-2fST8lILgl7cKbme/1KDdPCmbXbG+gqoV3bHp19L0ypX/3akYMBVdOunPleRCwonoLnXOZ/0F+Mt/v8POFmfcQ==",
|
|
3269
3285
|
"cpu": [
|
|
3270
3286
|
"arm64"
|
|
3271
3287
|
],
|
|
@@ -3277,8 +3293,8 @@
|
|
|
3277
3293
|
]
|
|
3278
3294
|
},
|
|
3279
3295
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3280
|
-
"version": "4.62.
|
|
3281
|
-
"integrity": "sha512-
|
|
3296
|
+
"version": "4.62.5",
|
|
3297
|
+
"integrity": "sha512-cpIxQCP9J+EVad0a6LO1kY3ZGODlk80VlI+2I96B8xMcdHZ4pLVhfQ49JFpYqjPF91FFkQWftf57YlDcTiw9yQ==",
|
|
3282
3298
|
"cpu": [
|
|
3283
3299
|
"x64"
|
|
3284
3300
|
],
|
|
@@ -3290,8 +3306,8 @@
|
|
|
3290
3306
|
]
|
|
3291
3307
|
},
|
|
3292
3308
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3293
|
-
"version": "4.62.
|
|
3294
|
-
"integrity": "sha512-
|
|
3309
|
+
"version": "4.62.5",
|
|
3310
|
+
"integrity": "sha512-r9fGh3eFs3e/udWh5ZjXQtxiYK/xoFxQaYR/cELxac/Udkl5Th+IsFm0CX3Kl9hmUH/we7EoMpjJgeQNnE0+IA==",
|
|
3295
3311
|
"cpu": [
|
|
3296
3312
|
"arm"
|
|
3297
3313
|
],
|
|
@@ -3303,8 +3319,8 @@
|
|
|
3303
3319
|
]
|
|
3304
3320
|
},
|
|
3305
3321
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3306
|
-
"version": "4.62.
|
|
3307
|
-
"integrity": "sha512-
|
|
3322
|
+
"version": "4.62.5",
|
|
3323
|
+
"integrity": "sha512-xdvFdp7OM6KLJviJT2g/YuRSUjnZgGHk4RNgwIbN7X6cPugOucV60DdHXWzsBVCUdrGb6qSXnJQrrAKMmQuj3Q==",
|
|
3308
3324
|
"cpu": [
|
|
3309
3325
|
"arm"
|
|
3310
3326
|
],
|
|
@@ -3316,8 +3332,8 @@
|
|
|
3316
3332
|
]
|
|
3317
3333
|
},
|
|
3318
3334
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3319
|
-
"version": "4.62.
|
|
3320
|
-
"integrity": "sha512-
|
|
3335
|
+
"version": "4.62.5",
|
|
3336
|
+
"integrity": "sha512-rRqILAndyzHzP7T9NFQrq+4HFWNhqkqkKur7eiBpfLmz01PO0JKx5Vchu3YllE4YXI/Ftgq/szrDWg5GJ0mI8g==",
|
|
3321
3337
|
"cpu": [
|
|
3322
3338
|
"arm64"
|
|
3323
3339
|
],
|
|
@@ -3329,8 +3345,8 @@
|
|
|
3329
3345
|
]
|
|
3330
3346
|
},
|
|
3331
3347
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3332
|
-
"version": "4.62.
|
|
3333
|
-
"integrity": "sha512-
|
|
3348
|
+
"version": "4.62.5",
|
|
3349
|
+
"integrity": "sha512-Gf4X3qVMucayUvux6aXXPgXovocSFUC0rrffDuPI/S2nHhNMhjcZxsrAFYCOF350PRreW1XwzFj3CT/3bKsWCw==",
|
|
3334
3350
|
"cpu": [
|
|
3335
3351
|
"arm64"
|
|
3336
3352
|
],
|
|
@@ -3342,8 +3358,8 @@
|
|
|
3342
3358
|
]
|
|
3343
3359
|
},
|
|
3344
3360
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3345
|
-
"version": "4.62.
|
|
3346
|
-
"integrity": "sha512
|
|
3361
|
+
"version": "4.62.5",
|
|
3362
|
+
"integrity": "sha512-+s5qA0TNM0qm8PK/a5gt/1Hpx+NV08uSuCncvhziIlQzT6AEV2fnUQo7eBtFTFO0nA9scauvoR2HusfXmQnO4w==",
|
|
3347
3363
|
"cpu": [
|
|
3348
3364
|
"loong64"
|
|
3349
3365
|
],
|
|
@@ -3355,8 +3371,8 @@
|
|
|
3355
3371
|
]
|
|
3356
3372
|
},
|
|
3357
3373
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3358
|
-
"version": "4.62.
|
|
3359
|
-
"integrity": "sha512-
|
|
3374
|
+
"version": "4.62.5",
|
|
3375
|
+
"integrity": "sha512-ybb6QvWwWJCbBWqERpc8K3pYVGIrXlG8MEQ8IIuJY6Y9KdHQxoFoNyfkAOtKn1VHu3KuLidXvwrvGR1mEjeWCw==",
|
|
3360
3376
|
"cpu": [
|
|
3361
3377
|
"loong64"
|
|
3362
3378
|
],
|
|
@@ -3368,8 +3384,8 @@
|
|
|
3368
3384
|
]
|
|
3369
3385
|
},
|
|
3370
3386
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3371
|
-
"version": "4.62.
|
|
3372
|
-
"integrity": "sha512-
|
|
3387
|
+
"version": "4.62.5",
|
|
3388
|
+
"integrity": "sha512-nZb1DtnOyhCmYvsC8A2CwOkopVg+IS1+fPUa7rMOAXtNw5+lLCLLPqd6XAiNrGtoQKsbvIBOwsHnBH/3wnb4HQ==",
|
|
3373
3389
|
"cpu": [
|
|
3374
3390
|
"ppc64"
|
|
3375
3391
|
],
|
|
@@ -3381,8 +3397,8 @@
|
|
|
3381
3397
|
]
|
|
3382
3398
|
},
|
|
3383
3399
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3384
|
-
"version": "4.62.
|
|
3385
|
-
"integrity": "sha512-
|
|
3400
|
+
"version": "4.62.5",
|
|
3401
|
+
"integrity": "sha512-yMbj63Sp89ryrXLWyz+sy+fYD2HpOnMCLGbe4Oa1smclFSUukdtD/BgdiHaAetJNb74URD8U4hM+qG5KVzMEkg==",
|
|
3386
3402
|
"cpu": [
|
|
3387
3403
|
"ppc64"
|
|
3388
3404
|
],
|
|
@@ -3394,8 +3410,8 @@
|
|
|
3394
3410
|
]
|
|
3395
3411
|
},
|
|
3396
3412
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3397
|
-
"version": "4.62.
|
|
3398
|
-
"integrity": "sha512-
|
|
3413
|
+
"version": "4.62.5",
|
|
3414
|
+
"integrity": "sha512-mhoan3OJw2kYV/e1jtIdmvUZgyBFeA6zGWsOswmR0Tg19TQbowZuR+JMLID6spbbBN7Zee2ejrgmy3+FxGrIdA==",
|
|
3399
3415
|
"cpu": [
|
|
3400
3416
|
"riscv64"
|
|
3401
3417
|
],
|
|
@@ -3407,8 +3423,8 @@
|
|
|
3407
3423
|
]
|
|
3408
3424
|
},
|
|
3409
3425
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3410
|
-
"version": "4.62.
|
|
3411
|
-
"integrity": "sha512-
|
|
3426
|
+
"version": "4.62.5",
|
|
3427
|
+
"integrity": "sha512-5ZTLmjWbb1VZdjuyhe83K/8QO0/h11midQCBP+X5OYn32ra7eOBoM0ZqtaY4nkgNsYgmdVhMYPoyVPTjUpHf3w==",
|
|
3412
3428
|
"cpu": [
|
|
3413
3429
|
"riscv64"
|
|
3414
3430
|
],
|
|
@@ -3420,8 +3436,8 @@
|
|
|
3420
3436
|
]
|
|
3421
3437
|
},
|
|
3422
3438
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3423
|
-
"version": "4.62.
|
|
3424
|
-
"integrity": "sha512-
|
|
3439
|
+
"version": "4.62.5",
|
|
3440
|
+
"integrity": "sha512-m53kG+br6PGxOTmgBEM2DHSDs9RVjsyEbUwjJPJGTFm1grWOG8EKJggDCTb60unD4Tjby8fi7/m9XfkEWasVWg==",
|
|
3425
3441
|
"cpu": [
|
|
3426
3442
|
"s390x"
|
|
3427
3443
|
],
|
|
@@ -3433,8 +3449,8 @@
|
|
|
3433
3449
|
]
|
|
3434
3450
|
},
|
|
3435
3451
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3436
|
-
"version": "4.62.
|
|
3437
|
-
"integrity": "sha512-
|
|
3452
|
+
"version": "4.62.5",
|
|
3453
|
+
"integrity": "sha512-6RHPJR1g/uvdYU8uXBnfq3nlqyZCP82Fr6NHgfGoaIeSh0YEqnX/x6uA9MmJJbnSH7swqX4F+CkGdUF+6doiQA==",
|
|
3438
3454
|
"cpu": [
|
|
3439
3455
|
"x64"
|
|
3440
3456
|
],
|
|
@@ -3446,8 +3462,8 @@
|
|
|
3446
3462
|
]
|
|
3447
3463
|
},
|
|
3448
3464
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3449
|
-
"version": "4.62.
|
|
3450
|
-
"integrity": "sha512-
|
|
3465
|
+
"version": "4.62.5",
|
|
3466
|
+
"integrity": "sha512-xs+OXQtEXgpXT0DmA5+U3qnRZHdCST/5HRQxS8wSPZTUZN/EMWeHuSIod32LQklTBZBV9DyfncKBQ8n5V3eFdw==",
|
|
3451
3467
|
"cpu": [
|
|
3452
3468
|
"x64"
|
|
3453
3469
|
],
|
|
@@ -3459,8 +3475,8 @@
|
|
|
3459
3475
|
]
|
|
3460
3476
|
},
|
|
3461
3477
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3462
|
-
"version": "4.62.
|
|
3463
|
-
"integrity": "sha512-
|
|
3478
|
+
"version": "4.62.5",
|
|
3479
|
+
"integrity": "sha512-e7hD+sl3s+mcLQDZ8pbudBVsdG6r5yN4w3LqG2TJ8sQHDpblWj5lrJs/3m01Cvlxbt4x13zu5thLjgypgtkYzw==",
|
|
3464
3480
|
"cpu": [
|
|
3465
3481
|
"x64"
|
|
3466
3482
|
],
|
|
@@ -3472,8 +3488,8 @@
|
|
|
3472
3488
|
]
|
|
3473
3489
|
},
|
|
3474
3490
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3475
|
-
"version": "4.62.
|
|
3476
|
-
"integrity": "sha512
|
|
3491
|
+
"version": "4.62.5",
|
|
3492
|
+
"integrity": "sha512-GiyJaCf+WpMub/17aPcKk27QMl5W6f+KhdPTjlFOn5akH5Wa/DCM9Stdx5cDfmasyKB08MqpVQ1uJE2RkkpbXg==",
|
|
3477
3493
|
"cpu": [
|
|
3478
3494
|
"arm64"
|
|
3479
3495
|
],
|
|
@@ -3485,8 +3501,8 @@
|
|
|
3485
3501
|
]
|
|
3486
3502
|
},
|
|
3487
3503
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3488
|
-
"version": "4.62.
|
|
3489
|
-
"integrity": "sha512
|
|
3504
|
+
"version": "4.62.5",
|
|
3505
|
+
"integrity": "sha512-+OQ8U2DdoEfXl8T4Fb18AjmEwbXMerKDKCL8yCPAYhKCEEKoul7rkbeGCBFCbAlaGaa7pmtRTpkAJM2LE/i5FA==",
|
|
3490
3506
|
"cpu": [
|
|
3491
3507
|
"arm64"
|
|
3492
3508
|
],
|
|
@@ -3498,8 +3514,8 @@
|
|
|
3498
3514
|
]
|
|
3499
3515
|
},
|
|
3500
3516
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3501
|
-
"version": "4.62.
|
|
3502
|
-
"integrity": "sha512-
|
|
3517
|
+
"version": "4.62.5",
|
|
3518
|
+
"integrity": "sha512-KanvAZrPKbDBFwrgiU9yEVpQoox9QPV1WZOXX7HudJQY+eSlu82CtWxDU8WtuRRvtN5EGkLczkd6Y6DTcvm9wA==",
|
|
3503
3519
|
"cpu": [
|
|
3504
3520
|
"ia32"
|
|
3505
3521
|
],
|
|
@@ -3511,8 +3527,8 @@
|
|
|
3511
3527
|
]
|
|
3512
3528
|
},
|
|
3513
3529
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3514
|
-
"version": "4.62.
|
|
3515
|
-
"integrity": "sha512-
|
|
3530
|
+
"version": "4.62.5",
|
|
3531
|
+
"integrity": "sha512-1aC3UEWTtRl3RK3VpDJ/Tqk1XI4SLTmXIthAq6wRWo8XiSXJNd+VprJM4/1P4+i6HIaFEFlVi9sTTziniD2tOQ==",
|
|
3516
3532
|
"cpu": [
|
|
3517
3533
|
"x64"
|
|
3518
3534
|
],
|
|
@@ -3524,8 +3540,8 @@
|
|
|
3524
3540
|
]
|
|
3525
3541
|
},
|
|
3526
3542
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3527
|
-
"version": "4.62.
|
|
3528
|
-
"integrity": "sha512
|
|
3543
|
+
"version": "4.62.5",
|
|
3544
|
+
"integrity": "sha512-/gDJaRs4gl0NPIwqCz+6PkpmhhjRAD2j6P4rSNHBzUkO3naEx2mIU0pRle1vUNRQ7mE/+8OOeXLTv/J56FKiQg==",
|
|
3529
3545
|
"cpu": [
|
|
3530
3546
|
"x64"
|
|
3531
3547
|
],
|
|
@@ -3914,8 +3930,8 @@
|
|
|
3914
3930
|
"license": "MIT"
|
|
3915
3931
|
},
|
|
3916
3932
|
"node_modules/@types/d3-geo": {
|
|
3917
|
-
"version": "3.1.
|
|
3918
|
-
"integrity": "sha512-
|
|
3933
|
+
"version": "3.1.1",
|
|
3934
|
+
"integrity": "sha512-65Emv9fQiQQqphLlRkuQ5ypPsOmWPhtBGCMv61JDPEPMvsx+gzhGf74yw1a78xFKPj6zw4AgQICJoQv0vK9M2w==",
|
|
3919
3935
|
"dev": true,
|
|
3920
3936
|
"license": "MIT",
|
|
3921
3937
|
"dependencies": {
|
|
@@ -3983,8 +3999,8 @@
|
|
|
3983
3999
|
"license": "MIT"
|
|
3984
4000
|
},
|
|
3985
4001
|
"node_modules/@types/d3-shape": {
|
|
3986
|
-
"version": "3.
|
|
3987
|
-
"integrity": "sha512-
|
|
4002
|
+
"version": "3.2.0",
|
|
4003
|
+
"integrity": "sha512-kVd74ta9eof3eJOvbNd1vGKS/XERRyQbT26Og63hIsvDO84cjD5gEOhsXf26w3FSoNlPVz84DOFcKv/oou+fMw==",
|
|
3988
4004
|
"dev": true,
|
|
3989
4005
|
"license": "MIT",
|
|
3990
4006
|
"dependencies": {
|
|
@@ -4145,8 +4161,8 @@
|
|
|
4145
4161
|
"license": "MIT"
|
|
4146
4162
|
},
|
|
4147
4163
|
"node_modules/@types/lodash": {
|
|
4148
|
-
"version": "4.17.
|
|
4149
|
-
"integrity": "sha512
|
|
4164
|
+
"version": "4.17.25",
|
|
4165
|
+
"integrity": "sha512-+K1NIO8I+F9/wNulfVvu23QYd0Pe9/OCqRrim4NoYIf1VoEDL90Ve4ClzpyqBLc7NpGGWRvYNCKZ1BE/Jpf8dQ==",
|
|
4150
4166
|
"dev": true,
|
|
4151
4167
|
"license": "MIT"
|
|
4152
4168
|
},
|
|
@@ -4263,16 +4279,16 @@
|
|
|
4263
4279
|
"license": "MIT"
|
|
4264
4280
|
},
|
|
4265
4281
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4266
|
-
"version": "8.
|
|
4267
|
-
"integrity": "sha512-
|
|
4282
|
+
"version": "8.67.0",
|
|
4283
|
+
"integrity": "sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==",
|
|
4268
4284
|
"dev": true,
|
|
4269
4285
|
"license": "MIT",
|
|
4270
4286
|
"dependencies": {
|
|
4271
4287
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4272
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4273
|
-
"@typescript-eslint/type-utils": "8.
|
|
4274
|
-
"@typescript-eslint/utils": "8.
|
|
4275
|
-
"@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",
|
|
4276
4292
|
"ignore": "^7.0.5",
|
|
4277
4293
|
"natural-compare": "^1.4.0",
|
|
4278
4294
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4285,7 +4301,7 @@
|
|
|
4285
4301
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4286
4302
|
},
|
|
4287
4303
|
"peerDependencies": {
|
|
4288
|
-
"@typescript-eslint/parser": "^8.
|
|
4304
|
+
"@typescript-eslint/parser": "^8.67.0",
|
|
4289
4305
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4290
4306
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4291
4307
|
}
|
|
@@ -4300,15 +4316,15 @@
|
|
|
4300
4316
|
}
|
|
4301
4317
|
},
|
|
4302
4318
|
"node_modules/@typescript-eslint/parser": {
|
|
4303
|
-
"version": "8.
|
|
4304
|
-
"integrity": "sha512-
|
|
4319
|
+
"version": "8.67.0",
|
|
4320
|
+
"integrity": "sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==",
|
|
4305
4321
|
"dev": true,
|
|
4306
4322
|
"license": "MIT",
|
|
4307
4323
|
"dependencies": {
|
|
4308
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4309
|
-
"@typescript-eslint/types": "8.
|
|
4310
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4311
|
-
"@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",
|
|
4312
4328
|
"debug": "^4.4.3"
|
|
4313
4329
|
},
|
|
4314
4330
|
"engines": {
|
|
@@ -4324,13 +4340,13 @@
|
|
|
4324
4340
|
}
|
|
4325
4341
|
},
|
|
4326
4342
|
"node_modules/@typescript-eslint/project-service": {
|
|
4327
|
-
"version": "8.
|
|
4328
|
-
"integrity": "sha512-
|
|
4343
|
+
"version": "8.67.0",
|
|
4344
|
+
"integrity": "sha512-cvE8c7ulYeXN9fYuszhCeCsbzyVEXuhrRCybnBre7TUmqb5nRmBfQAwCj0O3WJFDeyAZt4VYv51vMCC9LHSdYw==",
|
|
4329
4345
|
"dev": true,
|
|
4330
4346
|
"license": "MIT",
|
|
4331
4347
|
"dependencies": {
|
|
4332
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4333
|
-
"@typescript-eslint/types": "^8.
|
|
4348
|
+
"@typescript-eslint/tsconfig-utils": "^8.67.0",
|
|
4349
|
+
"@typescript-eslint/types": "^8.67.0",
|
|
4334
4350
|
"debug": "^4.4.3"
|
|
4335
4351
|
},
|
|
4336
4352
|
"engines": {
|
|
@@ -4345,13 +4361,13 @@
|
|
|
4345
4361
|
}
|
|
4346
4362
|
},
|
|
4347
4363
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4348
|
-
"version": "8.
|
|
4349
|
-
"integrity": "sha512-
|
|
4364
|
+
"version": "8.67.0",
|
|
4365
|
+
"integrity": "sha512-EgvsleTwS4E+WzzSvem8fAUubLwatMNF1B5hHSLQxcvs7q2dtRhGyujHwLJSYlG41niJ7GP24Aha2+0mb1b2kg==",
|
|
4350
4366
|
"dev": true,
|
|
4351
4367
|
"license": "MIT",
|
|
4352
4368
|
"dependencies": {
|
|
4353
|
-
"@typescript-eslint/types": "8.
|
|
4354
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4369
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4370
|
+
"@typescript-eslint/visitor-keys": "8.67.0"
|
|
4355
4371
|
},
|
|
4356
4372
|
"engines": {
|
|
4357
4373
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4362,8 +4378,8 @@
|
|
|
4362
4378
|
}
|
|
4363
4379
|
},
|
|
4364
4380
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4365
|
-
"version": "8.
|
|
4366
|
-
"integrity": "sha512-
|
|
4381
|
+
"version": "8.67.0",
|
|
4382
|
+
"integrity": "sha512-vV+LUSv5njUWsknE71fqKTlXUva+R76SaeORd6Zojcunk/6DvKFXONU3BrAs2H49mbygUXt6gbYunzwqNwlhdg==",
|
|
4367
4383
|
"dev": true,
|
|
4368
4384
|
"license": "MIT",
|
|
4369
4385
|
"engines": {
|
|
@@ -4378,14 +4394,14 @@
|
|
|
4378
4394
|
}
|
|
4379
4395
|
},
|
|
4380
4396
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4381
|
-
"version": "8.
|
|
4382
|
-
"integrity": "sha512-
|
|
4397
|
+
"version": "8.67.0",
|
|
4398
|
+
"integrity": "sha512-aVWDXbRmdXO9siTfX4ditQI1T9+zVcNazT48EJCD0v40/9RIFoUgZ05CmGEq9H2gixRpjUn/iplwvlcvutJW/Q==",
|
|
4383
4399
|
"dev": true,
|
|
4384
4400
|
"license": "MIT",
|
|
4385
4401
|
"dependencies": {
|
|
4386
|
-
"@typescript-eslint/types": "8.
|
|
4387
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4388
|
-
"@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",
|
|
4389
4405
|
"debug": "^4.4.3",
|
|
4390
4406
|
"ts-api-utils": "^2.5.0"
|
|
4391
4407
|
},
|
|
@@ -4402,8 +4418,8 @@
|
|
|
4402
4418
|
}
|
|
4403
4419
|
},
|
|
4404
4420
|
"node_modules/@typescript-eslint/types": {
|
|
4405
|
-
"version": "8.
|
|
4406
|
-
"integrity": "sha512-
|
|
4421
|
+
"version": "8.67.0",
|
|
4422
|
+
"integrity": "sha512-sBtgslww8nsMYUjhdPBiSyUqSzT8uR6g93A2QXnQC8+cGdjz0CyaOdqHDRJb1AtORbZCNUJBBeFA/tNR2uQmww==",
|
|
4407
4423
|
"dev": true,
|
|
4408
4424
|
"license": "MIT",
|
|
4409
4425
|
"engines": {
|
|
@@ -4415,15 +4431,15 @@
|
|
|
4415
4431
|
}
|
|
4416
4432
|
},
|
|
4417
4433
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4418
|
-
"version": "8.
|
|
4419
|
-
"integrity": "sha512-
|
|
4434
|
+
"version": "8.67.0",
|
|
4435
|
+
"integrity": "sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==",
|
|
4420
4436
|
"dev": true,
|
|
4421
4437
|
"license": "MIT",
|
|
4422
4438
|
"dependencies": {
|
|
4423
|
-
"@typescript-eslint/project-service": "8.
|
|
4424
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4425
|
-
"@typescript-eslint/types": "8.
|
|
4426
|
-
"@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",
|
|
4427
4443
|
"debug": "^4.4.3",
|
|
4428
4444
|
"minimatch": "^10.2.2",
|
|
4429
4445
|
"semver": "^7.7.3",
|
|
@@ -4490,15 +4506,15 @@
|
|
|
4490
4506
|
}
|
|
4491
4507
|
},
|
|
4492
4508
|
"node_modules/@typescript-eslint/utils": {
|
|
4493
|
-
"version": "8.
|
|
4494
|
-
"integrity": "sha512-
|
|
4509
|
+
"version": "8.67.0",
|
|
4510
|
+
"integrity": "sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==",
|
|
4495
4511
|
"dev": true,
|
|
4496
4512
|
"license": "MIT",
|
|
4497
4513
|
"dependencies": {
|
|
4498
4514
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4499
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4500
|
-
"@typescript-eslint/types": "8.
|
|
4501
|
-
"@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"
|
|
4502
4518
|
},
|
|
4503
4519
|
"engines": {
|
|
4504
4520
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4513,12 +4529,12 @@
|
|
|
4513
4529
|
}
|
|
4514
4530
|
},
|
|
4515
4531
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4516
|
-
"version": "8.
|
|
4517
|
-
"integrity": "sha512-
|
|
4532
|
+
"version": "8.67.0",
|
|
4533
|
+
"integrity": "sha512-fkv8dHRDqfGtTHuJeebdrQ7cX6Ad4WAS00rgHh9UGvMycF1mjBfsxry1XsLIFhWZ6Judlh6UdzK+TYlbpCXgnA==",
|
|
4518
4534
|
"dev": true,
|
|
4519
4535
|
"license": "MIT",
|
|
4520
4536
|
"dependencies": {
|
|
4521
|
-
"@typescript-eslint/types": "8.
|
|
4537
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4522
4538
|
"eslint-visitor-keys": "^5.0.0"
|
|
4523
4539
|
},
|
|
4524
4540
|
"engines": {
|
|
@@ -5028,8 +5044,8 @@
|
|
|
5028
5044
|
}
|
|
5029
5045
|
},
|
|
5030
5046
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5031
|
-
"version": "1.0.0-rc.
|
|
5032
|
-
"integrity": "sha512-
|
|
5047
|
+
"version": "1.0.0-rc.334",
|
|
5048
|
+
"integrity": "sha512-kmU4kgOKWRACFux9EMEid6Rv9GqtQmCRiwoBah7g+nS61loxG3P3mUoMMsriysxza31JSSEIC00Ri2jgZ+2gfQ==",
|
|
5033
5049
|
"license": "ISC",
|
|
5034
5050
|
"dependencies": {
|
|
5035
5051
|
"@angular/compiler": "12.2.1",
|
|
@@ -5276,8 +5292,8 @@
|
|
|
5276
5292
|
}
|
|
5277
5293
|
},
|
|
5278
5294
|
"node_modules/@wavemaker-ai/variables": {
|
|
5279
|
-
"version": "1.0.0-rc.
|
|
5280
|
-
"integrity": "sha512-
|
|
5295
|
+
"version": "1.0.0-rc.334",
|
|
5296
|
+
"integrity": "sha512-xGJzgJqybtxgDRR8pNKmqhXPT7ti0WkhaVWGykECKoikNb4luuCejCfV4LuF9fE0zfdL0vC72o9uvH/P4XkWxw==",
|
|
5281
5297
|
"license": "ISC",
|
|
5282
5298
|
"dependencies": {
|
|
5283
5299
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5296,8 +5312,8 @@
|
|
|
5296
5312
|
}
|
|
5297
5313
|
},
|
|
5298
5314
|
"node_modules/@xmldom/xmldom": {
|
|
5299
|
-
"version": "0.8.
|
|
5300
|
-
"integrity": "sha512
|
|
5315
|
+
"version": "0.8.15",
|
|
5316
|
+
"integrity": "sha512-/5NV/vDALVFDXgLmfsy9TRCBlKwO2LNBFzpzvb9iIj+jR+eSc6DLYYvVOdivT/jm7MtU6TebYuRmzEOI7w40UA==",
|
|
5301
5317
|
"license": "MIT",
|
|
5302
5318
|
"engines": {
|
|
5303
5319
|
"node": ">=10.0.0"
|
|
@@ -5761,8 +5777,8 @@
|
|
|
5761
5777
|
}
|
|
5762
5778
|
},
|
|
5763
5779
|
"node_modules/bare-fs": {
|
|
5764
|
-
"version": "4.
|
|
5765
|
-
"integrity": "sha512-
|
|
5780
|
+
"version": "4.8.0",
|
|
5781
|
+
"integrity": "sha512-fM+MhCvdQhZ7NV6S95a07gPSqjIYKn6mFaXfx266wN3ajZGl/+1AzH+ubkXQ0fFZvOe2nk9VHkzdYkQE5zMV3Q==",
|
|
5766
5782
|
"license": "Apache-2.0",
|
|
5767
5783
|
"dependencies": {
|
|
5768
5784
|
"bare-events": "^2.5.4",
|
|
@@ -5772,7 +5788,7 @@
|
|
|
5772
5788
|
"fast-fifo": "^1.3.2"
|
|
5773
5789
|
},
|
|
5774
5790
|
"engines": {
|
|
5775
|
-
"bare": ">=1.
|
|
5791
|
+
"bare": ">=1.28.0"
|
|
5776
5792
|
},
|
|
5777
5793
|
"peerDependencies": {
|
|
5778
5794
|
"bare-buffer": "*"
|
|
@@ -5815,8 +5831,8 @@
|
|
|
5815
5831
|
}
|
|
5816
5832
|
},
|
|
5817
5833
|
"node_modules/bare-url": {
|
|
5818
|
-
"version": "2.
|
|
5819
|
-
"integrity": "sha512-
|
|
5834
|
+
"version": "2.5.2",
|
|
5835
|
+
"integrity": "sha512-L13PCJzKG8RGvx8V1/DdMi12ERhC3tprr7/8a94BxpmnRsFqxh5XZNdhtMxu5HPkRshYOOWRGY8lDP7ZhpG9Cg==",
|
|
5820
5836
|
"license": "Apache-2.0",
|
|
5821
5837
|
"dependencies": {
|
|
5822
5838
|
"bare-path": "^3.0.0"
|
|
@@ -5842,8 +5858,8 @@
|
|
|
5842
5858
|
"license": "MIT"
|
|
5843
5859
|
},
|
|
5844
5860
|
"node_modules/baseline-browser-mapping": {
|
|
5845
|
-
"version": "2.11.
|
|
5846
|
-
"integrity": "sha512-
|
|
5861
|
+
"version": "2.11.17",
|
|
5862
|
+
"integrity": "sha512-KAUDn1OSS0fmPlGO+NOUMRcOQ/b/shUBH3OgkG73mPgdf+JD/BQ6fHboGxNOxnUmlwcq+lLq3dTkayRPuSfXwg==",
|
|
5847
5863
|
"license": "Apache-2.0",
|
|
5848
5864
|
"bin": {
|
|
5849
5865
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5887,8 +5903,8 @@
|
|
|
5887
5903
|
}
|
|
5888
5904
|
},
|
|
5889
5905
|
"node_modules/browserslist": {
|
|
5890
|
-
"version": "4.28.
|
|
5891
|
-
"integrity": "sha512-
|
|
5906
|
+
"version": "4.28.8",
|
|
5907
|
+
"integrity": "sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==",
|
|
5892
5908
|
"dev": true,
|
|
5893
5909
|
"funding": [
|
|
5894
5910
|
{
|
|
@@ -5906,11 +5922,11 @@
|
|
|
5906
5922
|
],
|
|
5907
5923
|
"license": "MIT",
|
|
5908
5924
|
"dependencies": {
|
|
5909
|
-
"baseline-browser-mapping": "^2.
|
|
5910
|
-
"caniuse-lite": "^1.0.
|
|
5911
|
-
"electron-to-chromium": "^1.5.
|
|
5912
|
-
"node-releases": "^2.0.
|
|
5913
|
-
"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"
|
|
5914
5930
|
},
|
|
5915
5931
|
"bin": {
|
|
5916
5932
|
"browserslist": "cli.js"
|
|
@@ -6014,8 +6030,8 @@
|
|
|
6014
6030
|
}
|
|
6015
6031
|
},
|
|
6016
6032
|
"node_modules/caniuse-lite": {
|
|
6017
|
-
"version": "1.0.
|
|
6018
|
-
"integrity": "sha512-
|
|
6033
|
+
"version": "1.0.30001809",
|
|
6034
|
+
"integrity": "sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==",
|
|
6019
6035
|
"funding": [
|
|
6020
6036
|
{
|
|
6021
6037
|
"type": "opencollective",
|
|
@@ -7094,8 +7110,8 @@
|
|
|
7094
7110
|
"license": "MIT"
|
|
7095
7111
|
},
|
|
7096
7112
|
"node_modules/electron-to-chromium": {
|
|
7097
|
-
"version": "1.5.
|
|
7098
|
-
"integrity": "sha512-
|
|
7113
|
+
"version": "1.5.412",
|
|
7114
|
+
"integrity": "sha512-z4rMe3esBzlzovKHj4gxJnsCGZRK5l4baUvm+gCGJBPE+gsyUMKsuU9tnEUtI1dOebXz1ytAPGjvXhmQ7rIPwA==",
|
|
7099
7115
|
"dev": true,
|
|
7100
7116
|
"license": "ISC"
|
|
7101
7117
|
},
|
|
@@ -7386,6 +7402,7 @@
|
|
|
7386
7402
|
"node_modules/eslint": {
|
|
7387
7403
|
"version": "9.39.5",
|
|
7388
7404
|
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7405
|
+
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
|
|
7389
7406
|
"dev": true,
|
|
7390
7407
|
"license": "MIT",
|
|
7391
7408
|
"dependencies": {
|
|
@@ -8328,8 +8345,8 @@
|
|
|
8328
8345
|
}
|
|
8329
8346
|
},
|
|
8330
8347
|
"node_modules/get-tsconfig": {
|
|
8331
|
-
"version": "4.14.
|
|
8332
|
-
"integrity": "sha512
|
|
8348
|
+
"version": "4.14.3",
|
|
8349
|
+
"integrity": "sha512-++QEw4DIY7WGoukz+/+A/8dGYPT9l9yIadnmSgZ8Rjr3YVSVDipQSO9CdnJo9ePqFqUUqh+wk9uIaoiAwsiPkA==",
|
|
8333
8350
|
"dev": true,
|
|
8334
8351
|
"license": "MIT",
|
|
8335
8352
|
"dependencies": {
|
|
@@ -9617,8 +9634,8 @@
|
|
|
9617
9634
|
}
|
|
9618
9635
|
},
|
|
9619
9636
|
"node_modules/jodit": {
|
|
9620
|
-
"version": "4.13.
|
|
9621
|
-
"integrity": "sha512-
|
|
9637
|
+
"version": "4.13.23",
|
|
9638
|
+
"integrity": "sha512-RP1K2S6aGzAeRHOIqB7ZV6Ii3AxIbdMLE8wTQSKmCDCyFNBkpmvIiqN2pOCkQcWSnVyXTCW9GWqDBOrFLrtm4g==",
|
|
9622
9639
|
"license": "MIT",
|
|
9623
9640
|
"funding": {
|
|
9624
9641
|
"type": "commercial",
|
|
@@ -9651,8 +9668,8 @@
|
|
|
9651
9668
|
"license": "MIT"
|
|
9652
9669
|
},
|
|
9653
9670
|
"node_modules/js-yaml": {
|
|
9654
|
-
"version": "4.3.
|
|
9655
|
-
"integrity": "sha512-
|
|
9671
|
+
"version": "4.3.1",
|
|
9672
|
+
"integrity": "sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==",
|
|
9656
9673
|
"dev": true,
|
|
9657
9674
|
"funding": [
|
|
9658
9675
|
{
|
|
@@ -10500,8 +10517,8 @@
|
|
|
10500
10517
|
}
|
|
10501
10518
|
},
|
|
10502
10519
|
"node_modules/nanoid": {
|
|
10503
|
-
"version": "3.3.
|
|
10504
|
-
"integrity": "sha512-
|
|
10520
|
+
"version": "3.3.18",
|
|
10521
|
+
"integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
|
|
10505
10522
|
"funding": [
|
|
10506
10523
|
{
|
|
10507
10524
|
"type": "github",
|
|
@@ -10630,8 +10647,8 @@
|
|
|
10630
10647
|
}
|
|
10631
10648
|
},
|
|
10632
10649
|
"node_modules/node-releases": {
|
|
10633
|
-
"version": "2.0.
|
|
10634
|
-
"integrity": "sha512-
|
|
10650
|
+
"version": "2.0.53",
|
|
10651
|
+
"integrity": "sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==",
|
|
10635
10652
|
"dev": true,
|
|
10636
10653
|
"license": "MIT",
|
|
10637
10654
|
"engines": {
|
|
@@ -11583,8 +11600,8 @@
|
|
|
11583
11600
|
}
|
|
11584
11601
|
},
|
|
11585
11602
|
"node_modules/reselect": {
|
|
11586
|
-
"version": "5.
|
|
11587
|
-
"integrity": "sha512-
|
|
11603
|
+
"version": "5.3.0",
|
|
11604
|
+
"integrity": "sha512-XGoLeRAVzUTcJ1qkxPQhDJyIZ5d6zzZD9nT7AEZOaaU9UbWclhycElmhO+VD5bFeLuzhPBaOV2oXC8uG35ZSpg==",
|
|
11588
11605
|
"license": "MIT"
|
|
11589
11606
|
},
|
|
11590
11607
|
"node_modules/resolve": {
|
|
@@ -11701,8 +11718,8 @@
|
|
|
11701
11718
|
"license": "Unlicense"
|
|
11702
11719
|
},
|
|
11703
11720
|
"node_modules/rollup": {
|
|
11704
|
-
"version": "4.62.
|
|
11705
|
-
"integrity": "sha512
|
|
11721
|
+
"version": "4.62.5",
|
|
11722
|
+
"integrity": "sha512-/tqMfgP7GPA3PHhCmuiS4vIjrSVhHLgY++i+dhbG462euyAj7FpM4D9uq1X3BgjlqRdpcOrYhcQtfiQLNc8tqw==",
|
|
11706
11723
|
"dev": true,
|
|
11707
11724
|
"license": "MIT",
|
|
11708
11725
|
"dependencies": {
|
|
@@ -11716,31 +11733,32 @@
|
|
|
11716
11733
|
"npm": ">=8.0.0"
|
|
11717
11734
|
},
|
|
11718
11735
|
"optionalDependencies": {
|
|
11719
|
-
"@
|
|
11720
|
-
"@rollup/rollup-android-
|
|
11721
|
-
"@rollup/rollup-
|
|
11722
|
-
"@rollup/rollup-darwin-
|
|
11723
|
-
"@rollup/rollup-
|
|
11724
|
-
"@rollup/rollup-freebsd-
|
|
11725
|
-
"@rollup/rollup-
|
|
11726
|
-
"@rollup/rollup-linux-arm-
|
|
11727
|
-
"@rollup/rollup-linux-
|
|
11728
|
-
"@rollup/rollup-linux-arm64-
|
|
11729
|
-
"@rollup/rollup-linux-
|
|
11730
|
-
"@rollup/rollup-linux-loong64-
|
|
11731
|
-
"@rollup/rollup-linux-
|
|
11732
|
-
"@rollup/rollup-linux-ppc64-
|
|
11733
|
-
"@rollup/rollup-linux-
|
|
11734
|
-
"@rollup/rollup-linux-riscv64-
|
|
11735
|
-
"@rollup/rollup-linux-
|
|
11736
|
-
"@rollup/rollup-linux-
|
|
11737
|
-
"@rollup/rollup-linux-x64-
|
|
11738
|
-
"@rollup/rollup-
|
|
11739
|
-
"@rollup/rollup-
|
|
11740
|
-
"@rollup/rollup-
|
|
11741
|
-
"@rollup/rollup-win32-
|
|
11742
|
-
"@rollup/rollup-win32-
|
|
11743
|
-
"@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",
|
|
11744
11762
|
"fsevents": "~2.3.2"
|
|
11745
11763
|
}
|
|
11746
11764
|
},
|
|
@@ -12430,8 +12448,8 @@
|
|
|
12430
12448
|
}
|
|
12431
12449
|
},
|
|
12432
12450
|
"node_modules/strip-ansi/node_modules/ansi-regex": {
|
|
12433
|
-
"version": "6.
|
|
12434
|
-
"integrity": "sha512-
|
|
12451
|
+
"version": "6.3.0",
|
|
12452
|
+
"integrity": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==",
|
|
12435
12453
|
"license": "MIT",
|
|
12436
12454
|
"engines": {
|
|
12437
12455
|
"node": ">=12"
|
|
@@ -13088,8 +13106,8 @@
|
|
|
13088
13106
|
}
|
|
13089
13107
|
},
|
|
13090
13108
|
"node_modules/update-browserslist-db": {
|
|
13091
|
-
"version": "1.
|
|
13092
|
-
"integrity": "sha512-
|
|
13109
|
+
"version": "1.3.1",
|
|
13110
|
+
"integrity": "sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==",
|
|
13093
13111
|
"dev": true,
|
|
13094
13112
|
"funding": [
|
|
13095
13113
|
{
|
|
@@ -13236,8 +13254,8 @@
|
|
|
13236
13254
|
}
|
|
13237
13255
|
},
|
|
13238
13256
|
"node_modules/vite/node_modules/postcss": {
|
|
13239
|
-
"version": "8.5.
|
|
13240
|
-
"integrity": "sha512-
|
|
13257
|
+
"version": "8.5.26",
|
|
13258
|
+
"integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
|
|
13241
13259
|
"dev": true,
|
|
13242
13260
|
"funding": [
|
|
13243
13261
|
{
|
|
@@ -13255,7 +13273,7 @@
|
|
|
13255
13273
|
],
|
|
13256
13274
|
"license": "MIT",
|
|
13257
13275
|
"dependencies": {
|
|
13258
|
-
"nanoid": "^3.3.
|
|
13276
|
+
"nanoid": "^3.3.17",
|
|
13259
13277
|
"picocolors": "^1.1.1",
|
|
13260
13278
|
"source-map-js": "^1.2.1"
|
|
13261
13279
|
},
|