@wavemaker-ai/react-runtime 1.0.0-rc.332 → 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/components/advanced/carousel/index.d.ts +1 -0
- package/components/advanced/carousel/template.d.ts +1 -0
- package/components/advanced/login/index.d.ts +1 -0
- package/components/advanced/marquee/index.d.ts +1 -0
- package/components/basic/anchor/index.d.ts +1 -0
- package/components/basic/anchor/index.js +3 -5
- package/components/basic/audio/index.d.ts +1 -0
- package/components/basic/html/index.d.ts +1 -0
- package/components/basic/icon/index.d.ts +1 -0
- package/components/basic/iframe/index.d.ts +1 -0
- package/components/basic/label/index.d.ts +1 -0
- package/components/basic/picture/index.d.ts +1 -0
- package/components/basic/progress-bar/index.d.ts +1 -0
- package/components/basic/progress-circle/index.d.ts +1 -0
- package/components/basic/richtexteditor/index.d.ts +2 -0
- package/components/basic/spinner/index.d.ts +1 -0
- package/components/basic/tile/index.d.ts +1 -0
- package/components/basic/tree/index.d.ts +1 -0
- package/components/basic/video/index.d.ts +1 -0
- package/components/chart/index.d.ts +1 -0
- package/components/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 +1 -1
- package/components/container/linear-layout/index.d.ts +1 -0
- package/components/container/linear-layout/linear-layout-item/index.d.ts +1 -0
- package/components/container/panel/index.d.ts +1 -0
- package/components/container/props.d.ts +1 -0
- package/components/container/repeat-template/index.d.ts +1 -0
- package/components/container/repeat-template/index.js +1 -1
- package/components/container/tabs/index.d.ts +1 -0
- package/components/container/tabs/index.js +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 +5 -2
- package/components/data/form/base-form/index.js +10 -14
- package/components/data/form/base-form/props.d.ts +1 -0
- package/components/data/form/form-action/index.d.ts +2 -0
- package/components/data/form/form-controller/withFormController.js +16 -3
- package/components/data/form/form-field/index.js +35 -11
- package/components/data/form/form-field/props.d.ts +7 -2
- package/components/data/list/index.d.ts +2 -0
- package/components/data/list/index.js +4 -9
- package/components/data/pagination/hooks/usePagination.js +6 -6
- package/components/data/table/components/RowExpansionButton.js +5 -1
- package/components/data/table/components/TableBody.js +2 -0
- package/components/data/table/components/TableHeader.js +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 +1 -1
- package/components/data/table/hooks/useRowSelection.js +7 -3
- package/components/data/table/hooks/useTableData.js +10 -2
- package/components/data/table/index.d.ts +2 -0
- package/components/data/table/index.js +14 -13
- package/components/data/table/live-table/index.d.ts +1 -0
- package/components/data/table/props.d.ts +1 -0
- 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 +17 -22
- 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 +5 -8
- package/components/data/table/utils/selectionUtils.d.ts +12 -0
- package/components/data/table/utils/selectionUtils.js +10 -0
- package/components/dialogs/alert-dialog/index.d.ts +2 -0
- package/components/dialogs/confirm-dialog/index.d.ts +2 -0
- package/components/dialogs/dialog/index.d.ts +2 -0
- package/components/dialogs/dialog-actions/index.d.ts +1 -0
- package/components/dialogs/dialog-body/index.d.ts +1 -0
- package/components/dialogs/dialog-content/index.d.ts +1 -0
- package/components/dialogs/dialog-header/index.d.ts +1 -0
- package/components/dialogs/iframe-dialog/index.d.ts +2 -0
- package/components/dialogs/login-dialog/index.d.ts +2 -0
- package/components/dialogs/page-dialog/index.d.ts +2 -0
- package/components/dialogs/withDialogWrapper.js +12 -2
- package/components/form/button/index.d.ts +1 -0
- package/components/form/button-group/index.d.ts +1 -0
- package/components/input/calendar/index.d.ts +2 -0
- package/components/input/chips/index.d.ts +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/datetime/index.d.ts +1 -0
- package/components/input/epoch/datetime/index.js +3 -1
- package/components/input/epoch/time/index.d.ts +1 -0
- package/components/input/fileupload/index.d.ts +1 -0
- package/components/input/fileupload/index.js +2 -1
- package/components/input/number/index.d.ts +2 -0
- package/components/input/rating/index.d.ts +2 -0
- 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 +1 -0
- package/components/navigation/popover/index.js +15 -3
- package/components/page/partial/index.d.ts +1 -0
- package/context/PopoverContext.d.ts +5 -0
- package/context/PopoverContext.js +5 -0
- package/context/WidgetProvider.js +9 -2
- package/core/proxy-service.d.ts +2 -0
- package/core/proxy-service.js +46 -3
- package/higherOrder/BaseApp.js +2 -1
- package/higherOrder/BasePage.js +2 -9
- package/higherOrder/props.d.ts +1 -0
- package/higherOrder/useActivePageReactivity.js +1 -4
- package/higherOrder/withBaseWrapper.js +3 -2
- package/package-lock.json +168 -167
- 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
|
{
|
|
@@ -2937,8 +2937,8 @@
|
|
|
2937
2937
|
}
|
|
2938
2938
|
},
|
|
2939
2939
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
2940
|
-
"version": "1.2.
|
|
2941
|
-
"integrity": "sha512-
|
|
2940
|
+
"version": "1.2.3",
|
|
2941
|
+
"integrity": "sha512-UMduMbqO5s5zF2NkNacMT/yK5Y5QiKvWr2+50bzIIxFDwVJ2h49b+oyjaCGPhJxd2/gC2x39EHv/gHVuu36x2Q==",
|
|
2942
2942
|
"dev": true,
|
|
2943
2943
|
"license": "MIT",
|
|
2944
2944
|
"optional": true,
|
|
@@ -2953,8 +2953,8 @@
|
|
|
2953
2953
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
2954
2954
|
},
|
|
2955
2955
|
"peerDependencies": {
|
|
2956
|
-
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.
|
|
2957
|
-
"@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"
|
|
2958
2958
|
}
|
|
2959
2959
|
},
|
|
2960
2960
|
"node_modules/@next/env": {
|
|
@@ -3228,8 +3228,8 @@
|
|
|
3228
3228
|
"license": "MIT"
|
|
3229
3229
|
},
|
|
3230
3230
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3231
|
-
"version": "4.62.
|
|
3232
|
-
"integrity": "sha512-
|
|
3231
|
+
"version": "4.62.5",
|
|
3232
|
+
"integrity": "sha512-jfkGfTwhQpsiSckPF8r9bU3pn3vyd72NlWaO+TgEO6WPSDnUhXzrNYCHBMOYj0ACaUgjm6eERLF+XV9a6RstoA==",
|
|
3233
3233
|
"cpu": [
|
|
3234
3234
|
"arm"
|
|
3235
3235
|
],
|
|
@@ -3241,8 +3241,8 @@
|
|
|
3241
3241
|
]
|
|
3242
3242
|
},
|
|
3243
3243
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3244
|
-
"version": "4.62.
|
|
3245
|
-
"integrity": "sha512-
|
|
3244
|
+
"version": "4.62.5",
|
|
3245
|
+
"integrity": "sha512-oGVqyQlxnrz9/ty89oHpU857VUHEl5/Xu4R2lS+aivCTrNnSsbiENzTnNaBsjxH0CNWGPhzHArOLFwo+oKXveA==",
|
|
3246
3246
|
"cpu": [
|
|
3247
3247
|
"arm64"
|
|
3248
3248
|
],
|
|
@@ -3254,8 +3254,8 @@
|
|
|
3254
3254
|
]
|
|
3255
3255
|
},
|
|
3256
3256
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3257
|
-
"version": "4.62.
|
|
3258
|
-
"integrity": "sha512-
|
|
3257
|
+
"version": "4.62.5",
|
|
3258
|
+
"integrity": "sha512-bW7B8xMEq8n99Q3ieEcPRGuphurdZAaFzQc9Efyyw3FL6DZO6pMy9xhdN+kBoD7Sy05xNXSr4OyPPnpkYriS/A==",
|
|
3259
3259
|
"cpu": [
|
|
3260
3260
|
"arm64"
|
|
3261
3261
|
],
|
|
@@ -3267,8 +3267,8 @@
|
|
|
3267
3267
|
]
|
|
3268
3268
|
},
|
|
3269
3269
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3270
|
-
"version": "4.62.
|
|
3271
|
-
"integrity": "sha512-
|
|
3270
|
+
"version": "4.62.5",
|
|
3271
|
+
"integrity": "sha512-YSwBS86QeHOGlrxJ1PSOIZSkzRL/JmKeunhc+lV6M1a6En8QuVCD/T/qIA0J4Gd2Y86RIOBYrLcOUtqGh9+/1w==",
|
|
3272
3272
|
"cpu": [
|
|
3273
3273
|
"x64"
|
|
3274
3274
|
],
|
|
@@ -3280,8 +3280,8 @@
|
|
|
3280
3280
|
]
|
|
3281
3281
|
},
|
|
3282
3282
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3283
|
-
"version": "4.62.
|
|
3284
|
-
"integrity": "sha512-
|
|
3283
|
+
"version": "4.62.5",
|
|
3284
|
+
"integrity": "sha512-2fST8lILgl7cKbme/1KDdPCmbXbG+gqoV3bHp19L0ypX/3akYMBVdOunPleRCwonoLnXOZ/0F+Mt/v8POFmfcQ==",
|
|
3285
3285
|
"cpu": [
|
|
3286
3286
|
"arm64"
|
|
3287
3287
|
],
|
|
@@ -3293,8 +3293,8 @@
|
|
|
3293
3293
|
]
|
|
3294
3294
|
},
|
|
3295
3295
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3296
|
-
"version": "4.62.
|
|
3297
|
-
"integrity": "sha512
|
|
3296
|
+
"version": "4.62.5",
|
|
3297
|
+
"integrity": "sha512-cpIxQCP9J+EVad0a6LO1kY3ZGODlk80VlI+2I96B8xMcdHZ4pLVhfQ49JFpYqjPF91FFkQWftf57YlDcTiw9yQ==",
|
|
3298
3298
|
"cpu": [
|
|
3299
3299
|
"x64"
|
|
3300
3300
|
],
|
|
@@ -3306,8 +3306,8 @@
|
|
|
3306
3306
|
]
|
|
3307
3307
|
},
|
|
3308
3308
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3309
|
-
"version": "4.62.
|
|
3310
|
-
"integrity": "sha512-
|
|
3309
|
+
"version": "4.62.5",
|
|
3310
|
+
"integrity": "sha512-r9fGh3eFs3e/udWh5ZjXQtxiYK/xoFxQaYR/cELxac/Udkl5Th+IsFm0CX3Kl9hmUH/we7EoMpjJgeQNnE0+IA==",
|
|
3311
3311
|
"cpu": [
|
|
3312
3312
|
"arm"
|
|
3313
3313
|
],
|
|
@@ -3319,8 +3319,8 @@
|
|
|
3319
3319
|
]
|
|
3320
3320
|
},
|
|
3321
3321
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3322
|
-
"version": "4.62.
|
|
3323
|
-
"integrity": "sha512-
|
|
3322
|
+
"version": "4.62.5",
|
|
3323
|
+
"integrity": "sha512-xdvFdp7OM6KLJviJT2g/YuRSUjnZgGHk4RNgwIbN7X6cPugOucV60DdHXWzsBVCUdrGb6qSXnJQrrAKMmQuj3Q==",
|
|
3324
3324
|
"cpu": [
|
|
3325
3325
|
"arm"
|
|
3326
3326
|
],
|
|
@@ -3332,8 +3332,8 @@
|
|
|
3332
3332
|
]
|
|
3333
3333
|
},
|
|
3334
3334
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3335
|
-
"version": "4.62.
|
|
3336
|
-
"integrity": "sha512-
|
|
3335
|
+
"version": "4.62.5",
|
|
3336
|
+
"integrity": "sha512-rRqILAndyzHzP7T9NFQrq+4HFWNhqkqkKur7eiBpfLmz01PO0JKx5Vchu3YllE4YXI/Ftgq/szrDWg5GJ0mI8g==",
|
|
3337
3337
|
"cpu": [
|
|
3338
3338
|
"arm64"
|
|
3339
3339
|
],
|
|
@@ -3345,8 +3345,8 @@
|
|
|
3345
3345
|
]
|
|
3346
3346
|
},
|
|
3347
3347
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3348
|
-
"version": "4.62.
|
|
3349
|
-
"integrity": "sha512-
|
|
3348
|
+
"version": "4.62.5",
|
|
3349
|
+
"integrity": "sha512-Gf4X3qVMucayUvux6aXXPgXovocSFUC0rrffDuPI/S2nHhNMhjcZxsrAFYCOF350PRreW1XwzFj3CT/3bKsWCw==",
|
|
3350
3350
|
"cpu": [
|
|
3351
3351
|
"arm64"
|
|
3352
3352
|
],
|
|
@@ -3358,8 +3358,8 @@
|
|
|
3358
3358
|
]
|
|
3359
3359
|
},
|
|
3360
3360
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3361
|
-
"version": "4.62.
|
|
3362
|
-
"integrity": "sha512
|
|
3361
|
+
"version": "4.62.5",
|
|
3362
|
+
"integrity": "sha512-+s5qA0TNM0qm8PK/a5gt/1Hpx+NV08uSuCncvhziIlQzT6AEV2fnUQo7eBtFTFO0nA9scauvoR2HusfXmQnO4w==",
|
|
3363
3363
|
"cpu": [
|
|
3364
3364
|
"loong64"
|
|
3365
3365
|
],
|
|
@@ -3371,8 +3371,8 @@
|
|
|
3371
3371
|
]
|
|
3372
3372
|
},
|
|
3373
3373
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3374
|
-
"version": "4.62.
|
|
3375
|
-
"integrity": "sha512-
|
|
3374
|
+
"version": "4.62.5",
|
|
3375
|
+
"integrity": "sha512-ybb6QvWwWJCbBWqERpc8K3pYVGIrXlG8MEQ8IIuJY6Y9KdHQxoFoNyfkAOtKn1VHu3KuLidXvwrvGR1mEjeWCw==",
|
|
3376
3376
|
"cpu": [
|
|
3377
3377
|
"loong64"
|
|
3378
3378
|
],
|
|
@@ -3384,8 +3384,8 @@
|
|
|
3384
3384
|
]
|
|
3385
3385
|
},
|
|
3386
3386
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3387
|
-
"version": "4.62.
|
|
3388
|
-
"integrity": "sha512-
|
|
3387
|
+
"version": "4.62.5",
|
|
3388
|
+
"integrity": "sha512-nZb1DtnOyhCmYvsC8A2CwOkopVg+IS1+fPUa7rMOAXtNw5+lLCLLPqd6XAiNrGtoQKsbvIBOwsHnBH/3wnb4HQ==",
|
|
3389
3389
|
"cpu": [
|
|
3390
3390
|
"ppc64"
|
|
3391
3391
|
],
|
|
@@ -3397,8 +3397,8 @@
|
|
|
3397
3397
|
]
|
|
3398
3398
|
},
|
|
3399
3399
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3400
|
-
"version": "4.62.
|
|
3401
|
-
"integrity": "sha512-
|
|
3400
|
+
"version": "4.62.5",
|
|
3401
|
+
"integrity": "sha512-yMbj63Sp89ryrXLWyz+sy+fYD2HpOnMCLGbe4Oa1smclFSUukdtD/BgdiHaAetJNb74URD8U4hM+qG5KVzMEkg==",
|
|
3402
3402
|
"cpu": [
|
|
3403
3403
|
"ppc64"
|
|
3404
3404
|
],
|
|
@@ -3410,8 +3410,8 @@
|
|
|
3410
3410
|
]
|
|
3411
3411
|
},
|
|
3412
3412
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3413
|
-
"version": "4.62.
|
|
3414
|
-
"integrity": "sha512
|
|
3413
|
+
"version": "4.62.5",
|
|
3414
|
+
"integrity": "sha512-mhoan3OJw2kYV/e1jtIdmvUZgyBFeA6zGWsOswmR0Tg19TQbowZuR+JMLID6spbbBN7Zee2ejrgmy3+FxGrIdA==",
|
|
3415
3415
|
"cpu": [
|
|
3416
3416
|
"riscv64"
|
|
3417
3417
|
],
|
|
@@ -3423,8 +3423,8 @@
|
|
|
3423
3423
|
]
|
|
3424
3424
|
},
|
|
3425
3425
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3426
|
-
"version": "4.62.
|
|
3427
|
-
"integrity": "sha512-
|
|
3426
|
+
"version": "4.62.5",
|
|
3427
|
+
"integrity": "sha512-5ZTLmjWbb1VZdjuyhe83K/8QO0/h11midQCBP+X5OYn32ra7eOBoM0ZqtaY4nkgNsYgmdVhMYPoyVPTjUpHf3w==",
|
|
3428
3428
|
"cpu": [
|
|
3429
3429
|
"riscv64"
|
|
3430
3430
|
],
|
|
@@ -3436,8 +3436,8 @@
|
|
|
3436
3436
|
]
|
|
3437
3437
|
},
|
|
3438
3438
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3439
|
-
"version": "4.62.
|
|
3440
|
-
"integrity": "sha512-
|
|
3439
|
+
"version": "4.62.5",
|
|
3440
|
+
"integrity": "sha512-m53kG+br6PGxOTmgBEM2DHSDs9RVjsyEbUwjJPJGTFm1grWOG8EKJggDCTb60unD4Tjby8fi7/m9XfkEWasVWg==",
|
|
3441
3441
|
"cpu": [
|
|
3442
3442
|
"s390x"
|
|
3443
3443
|
],
|
|
@@ -3449,8 +3449,8 @@
|
|
|
3449
3449
|
]
|
|
3450
3450
|
},
|
|
3451
3451
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3452
|
-
"version": "4.62.
|
|
3453
|
-
"integrity": "sha512-
|
|
3452
|
+
"version": "4.62.5",
|
|
3453
|
+
"integrity": "sha512-6RHPJR1g/uvdYU8uXBnfq3nlqyZCP82Fr6NHgfGoaIeSh0YEqnX/x6uA9MmJJbnSH7swqX4F+CkGdUF+6doiQA==",
|
|
3454
3454
|
"cpu": [
|
|
3455
3455
|
"x64"
|
|
3456
3456
|
],
|
|
@@ -3462,8 +3462,8 @@
|
|
|
3462
3462
|
]
|
|
3463
3463
|
},
|
|
3464
3464
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3465
|
-
"version": "4.62.
|
|
3466
|
-
"integrity": "sha512-
|
|
3465
|
+
"version": "4.62.5",
|
|
3466
|
+
"integrity": "sha512-xs+OXQtEXgpXT0DmA5+U3qnRZHdCST/5HRQxS8wSPZTUZN/EMWeHuSIod32LQklTBZBV9DyfncKBQ8n5V3eFdw==",
|
|
3467
3467
|
"cpu": [
|
|
3468
3468
|
"x64"
|
|
3469
3469
|
],
|
|
@@ -3475,8 +3475,8 @@
|
|
|
3475
3475
|
]
|
|
3476
3476
|
},
|
|
3477
3477
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3478
|
-
"version": "4.62.
|
|
3479
|
-
"integrity": "sha512-
|
|
3478
|
+
"version": "4.62.5",
|
|
3479
|
+
"integrity": "sha512-e7hD+sl3s+mcLQDZ8pbudBVsdG6r5yN4w3LqG2TJ8sQHDpblWj5lrJs/3m01Cvlxbt4x13zu5thLjgypgtkYzw==",
|
|
3480
3480
|
"cpu": [
|
|
3481
3481
|
"x64"
|
|
3482
3482
|
],
|
|
@@ -3488,8 +3488,8 @@
|
|
|
3488
3488
|
]
|
|
3489
3489
|
},
|
|
3490
3490
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3491
|
-
"version": "4.62.
|
|
3492
|
-
"integrity": "sha512-
|
|
3491
|
+
"version": "4.62.5",
|
|
3492
|
+
"integrity": "sha512-GiyJaCf+WpMub/17aPcKk27QMl5W6f+KhdPTjlFOn5akH5Wa/DCM9Stdx5cDfmasyKB08MqpVQ1uJE2RkkpbXg==",
|
|
3493
3493
|
"cpu": [
|
|
3494
3494
|
"arm64"
|
|
3495
3495
|
],
|
|
@@ -3501,8 +3501,8 @@
|
|
|
3501
3501
|
]
|
|
3502
3502
|
},
|
|
3503
3503
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3504
|
-
"version": "4.62.
|
|
3505
|
-
"integrity": "sha512
|
|
3504
|
+
"version": "4.62.5",
|
|
3505
|
+
"integrity": "sha512-+OQ8U2DdoEfXl8T4Fb18AjmEwbXMerKDKCL8yCPAYhKCEEKoul7rkbeGCBFCbAlaGaa7pmtRTpkAJM2LE/i5FA==",
|
|
3506
3506
|
"cpu": [
|
|
3507
3507
|
"arm64"
|
|
3508
3508
|
],
|
|
@@ -3514,8 +3514,8 @@
|
|
|
3514
3514
|
]
|
|
3515
3515
|
},
|
|
3516
3516
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3517
|
-
"version": "4.62.
|
|
3518
|
-
"integrity": "sha512-
|
|
3517
|
+
"version": "4.62.5",
|
|
3518
|
+
"integrity": "sha512-KanvAZrPKbDBFwrgiU9yEVpQoox9QPV1WZOXX7HudJQY+eSlu82CtWxDU8WtuRRvtN5EGkLczkd6Y6DTcvm9wA==",
|
|
3519
3519
|
"cpu": [
|
|
3520
3520
|
"ia32"
|
|
3521
3521
|
],
|
|
@@ -3527,8 +3527,8 @@
|
|
|
3527
3527
|
]
|
|
3528
3528
|
},
|
|
3529
3529
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3530
|
-
"version": "4.62.
|
|
3531
|
-
"integrity": "sha512-
|
|
3530
|
+
"version": "4.62.5",
|
|
3531
|
+
"integrity": "sha512-1aC3UEWTtRl3RK3VpDJ/Tqk1XI4SLTmXIthAq6wRWo8XiSXJNd+VprJM4/1P4+i6HIaFEFlVi9sTTziniD2tOQ==",
|
|
3532
3532
|
"cpu": [
|
|
3533
3533
|
"x64"
|
|
3534
3534
|
],
|
|
@@ -3540,8 +3540,8 @@
|
|
|
3540
3540
|
]
|
|
3541
3541
|
},
|
|
3542
3542
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3543
|
-
"version": "4.62.
|
|
3544
|
-
"integrity": "sha512
|
|
3543
|
+
"version": "4.62.5",
|
|
3544
|
+
"integrity": "sha512-/gDJaRs4gl0NPIwqCz+6PkpmhhjRAD2j6P4rSNHBzUkO3naEx2mIU0pRle1vUNRQ7mE/+8OOeXLTv/J56FKiQg==",
|
|
3545
3545
|
"cpu": [
|
|
3546
3546
|
"x64"
|
|
3547
3547
|
],
|
|
@@ -3999,8 +3999,8 @@
|
|
|
3999
3999
|
"license": "MIT"
|
|
4000
4000
|
},
|
|
4001
4001
|
"node_modules/@types/d3-shape": {
|
|
4002
|
-
"version": "3.
|
|
4003
|
-
"integrity": "sha512-
|
|
4002
|
+
"version": "3.2.0",
|
|
4003
|
+
"integrity": "sha512-kVd74ta9eof3eJOvbNd1vGKS/XERRyQbT26Og63hIsvDO84cjD5gEOhsXf26w3FSoNlPVz84DOFcKv/oou+fMw==",
|
|
4004
4004
|
"dev": true,
|
|
4005
4005
|
"license": "MIT",
|
|
4006
4006
|
"dependencies": {
|
|
@@ -4279,16 +4279,16 @@
|
|
|
4279
4279
|
"license": "MIT"
|
|
4280
4280
|
},
|
|
4281
4281
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4282
|
-
"version": "8.
|
|
4283
|
-
"integrity": "sha512-
|
|
4282
|
+
"version": "8.67.0",
|
|
4283
|
+
"integrity": "sha512-Un7Heoyj65NREbKAyIrFxeM143NZpExWmy1Nep4DLeQOeLlTeumPjoNKnBrU5D5moWXbPJgRa5Uwcdu0faVNGQ==",
|
|
4284
4284
|
"dev": true,
|
|
4285
4285
|
"license": "MIT",
|
|
4286
4286
|
"dependencies": {
|
|
4287
4287
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4288
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4289
|
-
"@typescript-eslint/type-utils": "8.
|
|
4290
|
-
"@typescript-eslint/utils": "8.
|
|
4291
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
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",
|
|
4292
4292
|
"ignore": "^7.0.5",
|
|
4293
4293
|
"natural-compare": "^1.4.0",
|
|
4294
4294
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4301,7 +4301,7 @@
|
|
|
4301
4301
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4302
4302
|
},
|
|
4303
4303
|
"peerDependencies": {
|
|
4304
|
-
"@typescript-eslint/parser": "^8.
|
|
4304
|
+
"@typescript-eslint/parser": "^8.67.0",
|
|
4305
4305
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4306
4306
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4307
4307
|
}
|
|
@@ -4316,15 +4316,15 @@
|
|
|
4316
4316
|
}
|
|
4317
4317
|
},
|
|
4318
4318
|
"node_modules/@typescript-eslint/parser": {
|
|
4319
|
-
"version": "8.
|
|
4320
|
-
"integrity": "sha512-
|
|
4319
|
+
"version": "8.67.0",
|
|
4320
|
+
"integrity": "sha512-fUBfTuuEulWqX6V8+O3PtScV01tzYYRUDTAirHFKoRAt7nOzoGiPt0M/bB47wWNy0coOOcgEwAMUtBpykMxl6w==",
|
|
4321
4321
|
"dev": true,
|
|
4322
4322
|
"license": "MIT",
|
|
4323
4323
|
"dependencies": {
|
|
4324
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4325
|
-
"@typescript-eslint/types": "8.
|
|
4326
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4327
|
-
"@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",
|
|
4328
4328
|
"debug": "^4.4.3"
|
|
4329
4329
|
},
|
|
4330
4330
|
"engines": {
|
|
@@ -4340,13 +4340,13 @@
|
|
|
4340
4340
|
}
|
|
4341
4341
|
},
|
|
4342
4342
|
"node_modules/@typescript-eslint/project-service": {
|
|
4343
|
-
"version": "8.
|
|
4344
|
-
"integrity": "sha512-
|
|
4343
|
+
"version": "8.67.0",
|
|
4344
|
+
"integrity": "sha512-cvE8c7ulYeXN9fYuszhCeCsbzyVEXuhrRCybnBre7TUmqb5nRmBfQAwCj0O3WJFDeyAZt4VYv51vMCC9LHSdYw==",
|
|
4345
4345
|
"dev": true,
|
|
4346
4346
|
"license": "MIT",
|
|
4347
4347
|
"dependencies": {
|
|
4348
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4349
|
-
"@typescript-eslint/types": "^8.
|
|
4348
|
+
"@typescript-eslint/tsconfig-utils": "^8.67.0",
|
|
4349
|
+
"@typescript-eslint/types": "^8.67.0",
|
|
4350
4350
|
"debug": "^4.4.3"
|
|
4351
4351
|
},
|
|
4352
4352
|
"engines": {
|
|
@@ -4361,13 +4361,13 @@
|
|
|
4361
4361
|
}
|
|
4362
4362
|
},
|
|
4363
4363
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4364
|
-
"version": "8.
|
|
4365
|
-
"integrity": "sha512-
|
|
4364
|
+
"version": "8.67.0",
|
|
4365
|
+
"integrity": "sha512-EgvsleTwS4E+WzzSvem8fAUubLwatMNF1B5hHSLQxcvs7q2dtRhGyujHwLJSYlG41niJ7GP24Aha2+0mb1b2kg==",
|
|
4366
4366
|
"dev": true,
|
|
4367
4367
|
"license": "MIT",
|
|
4368
4368
|
"dependencies": {
|
|
4369
|
-
"@typescript-eslint/types": "8.
|
|
4370
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4369
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4370
|
+
"@typescript-eslint/visitor-keys": "8.67.0"
|
|
4371
4371
|
},
|
|
4372
4372
|
"engines": {
|
|
4373
4373
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4378,8 +4378,8 @@
|
|
|
4378
4378
|
}
|
|
4379
4379
|
},
|
|
4380
4380
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4381
|
-
"version": "8.
|
|
4382
|
-
"integrity": "sha512-
|
|
4381
|
+
"version": "8.67.0",
|
|
4382
|
+
"integrity": "sha512-vV+LUSv5njUWsknE71fqKTlXUva+R76SaeORd6Zojcunk/6DvKFXONU3BrAs2H49mbygUXt6gbYunzwqNwlhdg==",
|
|
4383
4383
|
"dev": true,
|
|
4384
4384
|
"license": "MIT",
|
|
4385
4385
|
"engines": {
|
|
@@ -4394,14 +4394,14 @@
|
|
|
4394
4394
|
}
|
|
4395
4395
|
},
|
|
4396
4396
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4397
|
-
"version": "8.
|
|
4398
|
-
"integrity": "sha512-
|
|
4397
|
+
"version": "8.67.0",
|
|
4398
|
+
"integrity": "sha512-aVWDXbRmdXO9siTfX4ditQI1T9+zVcNazT48EJCD0v40/9RIFoUgZ05CmGEq9H2gixRpjUn/iplwvlcvutJW/Q==",
|
|
4399
4399
|
"dev": true,
|
|
4400
4400
|
"license": "MIT",
|
|
4401
4401
|
"dependencies": {
|
|
4402
|
-
"@typescript-eslint/types": "8.
|
|
4403
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4404
|
-
"@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",
|
|
4405
4405
|
"debug": "^4.4.3",
|
|
4406
4406
|
"ts-api-utils": "^2.5.0"
|
|
4407
4407
|
},
|
|
@@ -4418,8 +4418,8 @@
|
|
|
4418
4418
|
}
|
|
4419
4419
|
},
|
|
4420
4420
|
"node_modules/@typescript-eslint/types": {
|
|
4421
|
-
"version": "8.
|
|
4422
|
-
"integrity": "sha512-
|
|
4421
|
+
"version": "8.67.0",
|
|
4422
|
+
"integrity": "sha512-sBtgslww8nsMYUjhdPBiSyUqSzT8uR6g93A2QXnQC8+cGdjz0CyaOdqHDRJb1AtORbZCNUJBBeFA/tNR2uQmww==",
|
|
4423
4423
|
"dev": true,
|
|
4424
4424
|
"license": "MIT",
|
|
4425
4425
|
"engines": {
|
|
@@ -4431,15 +4431,15 @@
|
|
|
4431
4431
|
}
|
|
4432
4432
|
},
|
|
4433
4433
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4434
|
-
"version": "8.
|
|
4435
|
-
"integrity": "sha512-
|
|
4434
|
+
"version": "8.67.0",
|
|
4435
|
+
"integrity": "sha512-EKQBCE9yNlRJYm7jdTW5AhDacDUmSwQb0FAJAmK2EKYrNXIsa2vxcSZx6PvJ/dEdI6lS+Y9W+EXckLj0iPFGcw==",
|
|
4436
4436
|
"dev": true,
|
|
4437
4437
|
"license": "MIT",
|
|
4438
4438
|
"dependencies": {
|
|
4439
|
-
"@typescript-eslint/project-service": "8.
|
|
4440
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4441
|
-
"@typescript-eslint/types": "8.
|
|
4442
|
-
"@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",
|
|
4443
4443
|
"debug": "^4.4.3",
|
|
4444
4444
|
"minimatch": "^10.2.2",
|
|
4445
4445
|
"semver": "^7.7.3",
|
|
@@ -4506,15 +4506,15 @@
|
|
|
4506
4506
|
}
|
|
4507
4507
|
},
|
|
4508
4508
|
"node_modules/@typescript-eslint/utils": {
|
|
4509
|
-
"version": "8.
|
|
4510
|
-
"integrity": "sha512-
|
|
4509
|
+
"version": "8.67.0",
|
|
4510
|
+
"integrity": "sha512-U9D1FdwEWBwok3hxxSdhclMb0twvt9QnjIQ0VfQ1AiX2epnpSgv2ubVDsayOFyY8K6FX+AQ7E0FKWVG3iKsj1A==",
|
|
4511
4511
|
"dev": true,
|
|
4512
4512
|
"license": "MIT",
|
|
4513
4513
|
"dependencies": {
|
|
4514
4514
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4515
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4516
|
-
"@typescript-eslint/types": "8.
|
|
4517
|
-
"@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"
|
|
4518
4518
|
},
|
|
4519
4519
|
"engines": {
|
|
4520
4520
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4529,12 +4529,12 @@
|
|
|
4529
4529
|
}
|
|
4530
4530
|
},
|
|
4531
4531
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4532
|
-
"version": "8.
|
|
4533
|
-
"integrity": "sha512-
|
|
4532
|
+
"version": "8.67.0",
|
|
4533
|
+
"integrity": "sha512-fkv8dHRDqfGtTHuJeebdrQ7cX6Ad4WAS00rgHh9UGvMycF1mjBfsxry1XsLIFhWZ6Judlh6UdzK+TYlbpCXgnA==",
|
|
4534
4534
|
"dev": true,
|
|
4535
4535
|
"license": "MIT",
|
|
4536
4536
|
"dependencies": {
|
|
4537
|
-
"@typescript-eslint/types": "8.
|
|
4537
|
+
"@typescript-eslint/types": "8.67.0",
|
|
4538
4538
|
"eslint-visitor-keys": "^5.0.0"
|
|
4539
4539
|
},
|
|
4540
4540
|
"engines": {
|
|
@@ -5044,8 +5044,8 @@
|
|
|
5044
5044
|
}
|
|
5045
5045
|
},
|
|
5046
5046
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5047
|
-
"version": "1.0.0-rc.
|
|
5048
|
-
"integrity": "sha512-
|
|
5047
|
+
"version": "1.0.0-rc.334",
|
|
5048
|
+
"integrity": "sha512-kmU4kgOKWRACFux9EMEid6Rv9GqtQmCRiwoBah7g+nS61loxG3P3mUoMMsriysxza31JSSEIC00Ri2jgZ+2gfQ==",
|
|
5049
5049
|
"license": "ISC",
|
|
5050
5050
|
"dependencies": {
|
|
5051
5051
|
"@angular/compiler": "12.2.1",
|
|
@@ -5292,8 +5292,8 @@
|
|
|
5292
5292
|
}
|
|
5293
5293
|
},
|
|
5294
5294
|
"node_modules/@wavemaker-ai/variables": {
|
|
5295
|
-
"version": "1.0.0-rc.
|
|
5296
|
-
"integrity": "sha512
|
|
5295
|
+
"version": "1.0.0-rc.334",
|
|
5296
|
+
"integrity": "sha512-xGJzgJqybtxgDRR8pNKmqhXPT7ti0WkhaVWGykECKoikNb4luuCejCfV4LuF9fE0zfdL0vC72o9uvH/P4XkWxw==",
|
|
5297
5297
|
"license": "ISC",
|
|
5298
5298
|
"dependencies": {
|
|
5299
5299
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5312,8 +5312,8 @@
|
|
|
5312
5312
|
}
|
|
5313
5313
|
},
|
|
5314
5314
|
"node_modules/@xmldom/xmldom": {
|
|
5315
|
-
"version": "0.8.
|
|
5316
|
-
"integrity": "sha512
|
|
5315
|
+
"version": "0.8.15",
|
|
5316
|
+
"integrity": "sha512-/5NV/vDALVFDXgLmfsy9TRCBlKwO2LNBFzpzvb9iIj+jR+eSc6DLYYvVOdivT/jm7MtU6TebYuRmzEOI7w40UA==",
|
|
5317
5317
|
"license": "MIT",
|
|
5318
5318
|
"engines": {
|
|
5319
5319
|
"node": ">=10.0.0"
|
|
@@ -5831,8 +5831,8 @@
|
|
|
5831
5831
|
}
|
|
5832
5832
|
},
|
|
5833
5833
|
"node_modules/bare-url": {
|
|
5834
|
-
"version": "2.5.
|
|
5835
|
-
"integrity": "sha512-
|
|
5834
|
+
"version": "2.5.2",
|
|
5835
|
+
"integrity": "sha512-L13PCJzKG8RGvx8V1/DdMi12ERhC3tprr7/8a94BxpmnRsFqxh5XZNdhtMxu5HPkRshYOOWRGY8lDP7ZhpG9Cg==",
|
|
5836
5836
|
"license": "Apache-2.0",
|
|
5837
5837
|
"dependencies": {
|
|
5838
5838
|
"bare-path": "^3.0.0"
|
|
@@ -5858,8 +5858,8 @@
|
|
|
5858
5858
|
"license": "MIT"
|
|
5859
5859
|
},
|
|
5860
5860
|
"node_modules/baseline-browser-mapping": {
|
|
5861
|
-
"version": "2.11.
|
|
5862
|
-
"integrity": "sha512-
|
|
5861
|
+
"version": "2.11.17",
|
|
5862
|
+
"integrity": "sha512-KAUDn1OSS0fmPlGO+NOUMRcOQ/b/shUBH3OgkG73mPgdf+JD/BQ6fHboGxNOxnUmlwcq+lLq3dTkayRPuSfXwg==",
|
|
5863
5863
|
"license": "Apache-2.0",
|
|
5864
5864
|
"bin": {
|
|
5865
5865
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5903,8 +5903,8 @@
|
|
|
5903
5903
|
}
|
|
5904
5904
|
},
|
|
5905
5905
|
"node_modules/browserslist": {
|
|
5906
|
-
"version": "4.28.
|
|
5907
|
-
"integrity": "sha512-
|
|
5906
|
+
"version": "4.28.8",
|
|
5907
|
+
"integrity": "sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==",
|
|
5908
5908
|
"dev": true,
|
|
5909
5909
|
"funding": [
|
|
5910
5910
|
{
|
|
@@ -5922,11 +5922,11 @@
|
|
|
5922
5922
|
],
|
|
5923
5923
|
"license": "MIT",
|
|
5924
5924
|
"dependencies": {
|
|
5925
|
-
"baseline-browser-mapping": "^2.
|
|
5926
|
-
"caniuse-lite": "^1.0.
|
|
5927
|
-
"electron-to-chromium": "^1.5.
|
|
5928
|
-
"node-releases": "^2.0.
|
|
5929
|
-
"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"
|
|
5930
5930
|
},
|
|
5931
5931
|
"bin": {
|
|
5932
5932
|
"browserslist": "cli.js"
|
|
@@ -7110,8 +7110,8 @@
|
|
|
7110
7110
|
"license": "MIT"
|
|
7111
7111
|
},
|
|
7112
7112
|
"node_modules/electron-to-chromium": {
|
|
7113
|
-
"version": "1.5.
|
|
7114
|
-
"integrity": "sha512
|
|
7113
|
+
"version": "1.5.412",
|
|
7114
|
+
"integrity": "sha512-z4rMe3esBzlzovKHj4gxJnsCGZRK5l4baUvm+gCGJBPE+gsyUMKsuU9tnEUtI1dOebXz1ytAPGjvXhmQ7rIPwA==",
|
|
7115
7115
|
"dev": true,
|
|
7116
7116
|
"license": "ISC"
|
|
7117
7117
|
},
|
|
@@ -7402,6 +7402,7 @@
|
|
|
7402
7402
|
"node_modules/eslint": {
|
|
7403
7403
|
"version": "9.39.5",
|
|
7404
7404
|
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7405
|
+
"deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
|
|
7405
7406
|
"dev": true,
|
|
7406
7407
|
"license": "MIT",
|
|
7407
7408
|
"dependencies": {
|
|
@@ -8344,8 +8345,8 @@
|
|
|
8344
8345
|
}
|
|
8345
8346
|
},
|
|
8346
8347
|
"node_modules/get-tsconfig": {
|
|
8347
|
-
"version": "4.14.
|
|
8348
|
-
"integrity": "sha512
|
|
8348
|
+
"version": "4.14.3",
|
|
8349
|
+
"integrity": "sha512-++QEw4DIY7WGoukz+/+A/8dGYPT9l9yIadnmSgZ8Rjr3YVSVDipQSO9CdnJo9ePqFqUUqh+wk9uIaoiAwsiPkA==",
|
|
8349
8350
|
"dev": true,
|
|
8350
8351
|
"license": "MIT",
|
|
8351
8352
|
"dependencies": {
|
|
@@ -9633,8 +9634,8 @@
|
|
|
9633
9634
|
}
|
|
9634
9635
|
},
|
|
9635
9636
|
"node_modules/jodit": {
|
|
9636
|
-
"version": "4.13.
|
|
9637
|
-
"integrity": "sha512-
|
|
9637
|
+
"version": "4.13.23",
|
|
9638
|
+
"integrity": "sha512-RP1K2S6aGzAeRHOIqB7ZV6Ii3AxIbdMLE8wTQSKmCDCyFNBkpmvIiqN2pOCkQcWSnVyXTCW9GWqDBOrFLrtm4g==",
|
|
9638
9639
|
"license": "MIT",
|
|
9639
9640
|
"funding": {
|
|
9640
9641
|
"type": "commercial",
|
|
@@ -11599,8 +11600,8 @@
|
|
|
11599
11600
|
}
|
|
11600
11601
|
},
|
|
11601
11602
|
"node_modules/reselect": {
|
|
11602
|
-
"version": "5.
|
|
11603
|
-
"integrity": "sha512-
|
|
11603
|
+
"version": "5.3.0",
|
|
11604
|
+
"integrity": "sha512-XGoLeRAVzUTcJ1qkxPQhDJyIZ5d6zzZD9nT7AEZOaaU9UbWclhycElmhO+VD5bFeLuzhPBaOV2oXC8uG35ZSpg==",
|
|
11604
11605
|
"license": "MIT"
|
|
11605
11606
|
},
|
|
11606
11607
|
"node_modules/resolve": {
|
|
@@ -11717,8 +11718,8 @@
|
|
|
11717
11718
|
"license": "Unlicense"
|
|
11718
11719
|
},
|
|
11719
11720
|
"node_modules/rollup": {
|
|
11720
|
-
"version": "4.62.
|
|
11721
|
-
"integrity": "sha512
|
|
11721
|
+
"version": "4.62.5",
|
|
11722
|
+
"integrity": "sha512-/tqMfgP7GPA3PHhCmuiS4vIjrSVhHLgY++i+dhbG462euyAj7FpM4D9uq1X3BgjlqRdpcOrYhcQtfiQLNc8tqw==",
|
|
11722
11723
|
"dev": true,
|
|
11723
11724
|
"license": "MIT",
|
|
11724
11725
|
"dependencies": {
|
|
@@ -11733,31 +11734,31 @@
|
|
|
11733
11734
|
},
|
|
11734
11735
|
"optionalDependencies": {
|
|
11735
11736
|
"@napi-rs/lzma-linux-x64-gnu": "1.5.1",
|
|
11736
|
-
"@rollup/rollup-android-arm-eabi": "4.62.
|
|
11737
|
-
"@rollup/rollup-android-arm64": "4.62.
|
|
11738
|
-
"@rollup/rollup-darwin-arm64": "4.62.
|
|
11739
|
-
"@rollup/rollup-darwin-x64": "4.62.
|
|
11740
|
-
"@rollup/rollup-freebsd-arm64": "4.62.
|
|
11741
|
-
"@rollup/rollup-freebsd-x64": "4.62.
|
|
11742
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.62.
|
|
11743
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.62.
|
|
11744
|
-
"@rollup/rollup-linux-arm64-gnu": "4.62.
|
|
11745
|
-
"@rollup/rollup-linux-arm64-musl": "4.62.
|
|
11746
|
-
"@rollup/rollup-linux-loong64-gnu": "4.62.
|
|
11747
|
-
"@rollup/rollup-linux-loong64-musl": "4.62.
|
|
11748
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.62.
|
|
11749
|
-
"@rollup/rollup-linux-ppc64-musl": "4.62.
|
|
11750
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.62.
|
|
11751
|
-
"@rollup/rollup-linux-riscv64-musl": "4.62.
|
|
11752
|
-
"@rollup/rollup-linux-s390x-gnu": "4.62.
|
|
11753
|
-
"@rollup/rollup-linux-x64-gnu": "4.62.
|
|
11754
|
-
"@rollup/rollup-linux-x64-musl": "4.62.
|
|
11755
|
-
"@rollup/rollup-openbsd-x64": "4.62.
|
|
11756
|
-
"@rollup/rollup-openharmony-arm64": "4.62.
|
|
11757
|
-
"@rollup/rollup-win32-arm64-msvc": "4.62.
|
|
11758
|
-
"@rollup/rollup-win32-ia32-msvc": "4.62.
|
|
11759
|
-
"@rollup/rollup-win32-x64-gnu": "4.62.
|
|
11760
|
-
"@rollup/rollup-win32-x64-msvc": "4.62.
|
|
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",
|
|
11761
11762
|
"fsevents": "~2.3.2"
|
|
11762
11763
|
}
|
|
11763
11764
|
},
|
|
@@ -12447,8 +12448,8 @@
|
|
|
12447
12448
|
}
|
|
12448
12449
|
},
|
|
12449
12450
|
"node_modules/strip-ansi/node_modules/ansi-regex": {
|
|
12450
|
-
"version": "6.
|
|
12451
|
-
"integrity": "sha512-
|
|
12451
|
+
"version": "6.3.0",
|
|
12452
|
+
"integrity": "sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==",
|
|
12452
12453
|
"license": "MIT",
|
|
12453
12454
|
"engines": {
|
|
12454
12455
|
"node": ">=12"
|
|
@@ -13105,8 +13106,8 @@
|
|
|
13105
13106
|
}
|
|
13106
13107
|
},
|
|
13107
13108
|
"node_modules/update-browserslist-db": {
|
|
13108
|
-
"version": "1.3.
|
|
13109
|
-
"integrity": "sha512-
|
|
13109
|
+
"version": "1.3.1",
|
|
13110
|
+
"integrity": "sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==",
|
|
13110
13111
|
"dev": true,
|
|
13111
13112
|
"funding": [
|
|
13112
13113
|
{
|