@wavemaker/react-runtime 11.14.3-rc.6401 → 11.15.0-1.246
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/base-action.js +5 -7
- package/actions/login-action.js +7 -8
- package/actions/logout-action.js +5 -7
- package/actions/navigation-action.js +73 -18
- package/actions/notification-action.js +22 -8
- package/actions/timer-action.js +13 -15
- package/actions/toast.js +4 -2
- package/actions/toast.service.js +1 -2
- package/components/advanced/carousel/index.js +1 -1
- package/components/advanced/carousel/template.js +1 -1
- package/components/basic/anchor/index.js +31 -11
- package/components/basic/html/index.js +115 -24
- package/components/basic/icon/index.js +2 -1
- package/components/basic/iframe/index.js +2 -1
- package/components/basic/label/index.js +12 -9
- package/components/basic/message/index.js +12 -3
- package/components/basic/picture/index.js +11 -4
- package/components/basic/progress-bar/index.js +4 -1
- package/components/basic/progress-circle/index.js +34 -28
- package/components/basic/progress-circle/props.js +10 -2
- package/components/basic/richtexteditor/index.js +95 -94
- package/components/basic/search/index.js +401 -156
- package/components/basic/search/providers.js +126 -61
- package/components/basic/spinner/index.js +2 -1
- package/components/basic/tree/index.js +34 -34
- package/components/basic/tree/utils.js +10 -4
- package/components/chart/components/barColumnChart/index.js +36 -33
- package/components/chart/components/bubbleChart/index.js +35 -25
- package/components/chart/components/chartLegend/utils.js +2 -1
- package/components/chart/components/cumulativeLineChart/index.js +30 -26
- package/components/chart/components/lineAreaChart/index.js +50 -32
- package/components/chart/components/pieDonutChart/index.js +13 -4
- package/components/chart/hooks/useXAxisConfig.js +15 -8
- package/components/chart/index.js +223 -53
- package/components/chart/utils.js +12 -1
- package/components/constants.js +5 -2
- package/components/container/accordion/accordion-pane/index.js +17 -12
- package/components/container/accordion/index.js +9 -4
- package/components/container/alignment-utils.js +56 -1
- package/components/container/index.js +49 -20
- package/components/container/panel/components/panel-header/index.js +3 -4
- package/components/container/panel/index.js +15 -10
- package/components/container/repeat-template/index.js +33 -0
- package/components/container/tabs/index.js +83 -14
- package/components/container/tabs/tab-pane/index.js +33 -10
- package/components/container/tabs/utils.js +51 -0
- package/components/container/wizard/components/StepComponents.js +2 -1
- package/components/container/wizard/components/WizardStep.js +2 -1
- package/components/container/wizard/index.js +64 -35
- package/components/container/wizard/utils.js +46 -1
- package/components/container/wizard/wizard-step/index.js +11 -1
- package/components/data/card/card-content/index.js +1 -1
- package/components/data/form/base-form/index.js +985 -183
- package/components/data/form/base-form/props.js +3 -1
- package/components/data/form/base-form/utils.js +159 -1
- package/components/data/form/dynamic-fields/constant.js +53 -0
- package/components/data/form/dynamic-fields/index.js +10 -45
- package/components/data/form/dynamic-fields/utils.js +37 -2
- package/components/data/form/form-action/index.js +5 -4
- package/components/data/form/form-context.js +5 -1
- package/components/data/form/form-controller/utils.js +84 -0
- package/components/data/form/form-controller/validation-contrustor.js +402 -189
- package/components/data/form/form-controller/withFormController.js +191 -52
- package/components/data/form/form-field/base-field.js +67 -45
- package/components/data/form/form-field/index.js +28 -5
- package/components/data/form/form-header/index.js +3 -4
- package/components/data/form/index.js +20 -1
- package/components/data/list/components/ListDND.js +2 -1
- package/components/data/list/components/ListItem.js +6 -2
- package/components/data/list/components/ListItemWithTemplate.js +46 -2
- package/components/data/list/components/ListItems.js +17 -26
- package/components/data/list/components/ListPagination.js +3 -3
- package/components/data/list/components/StandardListItems.js +3 -4
- package/components/data/list/hooks/useListEffects.js +55 -14
- package/components/data/list/hooks/useListEventHandlers.js +3 -1
- package/components/data/list/hooks/useListState.js +3 -1
- package/components/data/list/hooks/usePaginatedGroupedData.js +18 -5
- package/components/data/list/index.js +74 -55
- package/components/data/list/utils/list-helpers.js +73 -35
- package/components/data/list/utils/list-widget-methods.js +138 -95
- package/components/data/live-filter/index.js +26 -15
- package/components/data/live-form/index.js +51 -18
- package/components/data/live-form/props.js +1 -1
- package/components/data/pagination/components/BasicPagination.js +71 -16
- package/components/data/pagination/components/PageSizeSelector.js +8 -3
- package/components/data/pagination/components/TotalRecords.js +1 -5
- package/components/data/pagination/hooks/usePagination.js +349 -66
- package/components/data/pagination/index.js +137 -19
- package/components/data/table/components/AddNewRow.js +5 -1
- package/components/data/table/components/EditableCell.js +2 -2
- package/components/data/table/components/RowCells.js +64 -0
- package/components/data/table/components/RowExpansionButton.js +2 -2
- package/components/data/table/components/SummaryCell.js +111 -0
- package/components/data/table/components/SummaryRow.js +54 -0
- package/components/data/table/components/SummaryRowFooter.js +46 -0
- package/components/data/table/components/TableBody.js +61 -59
- package/components/data/table/components/TableDataRow.js +109 -0
- package/components/data/table/components/TableFilters.js +225 -121
- package/components/data/table/components/TableHeader.js +291 -23
- package/components/data/table/components/TablePanelHeading.js +139 -8
- package/components/data/table/components/index.js +22 -1
- package/components/data/table/hooks/use-edited-rows.js +141 -0
- package/components/data/table/hooks/useCellState.js +5 -12
- package/components/data/table/hooks/useFormWidget.js +58 -52
- package/components/data/table/hooks/usePaginationState.js +45 -24
- package/components/data/table/hooks/usePanelStructure.js +4 -4
- package/components/data/table/hooks/useRowHandlers.js +39 -5
- package/components/data/table/hooks/useRowSelection.js +244 -50
- package/components/data/table/hooks/useServerSideSorting.js +81 -37
- package/components/data/table/hooks/useTableColumns.js +211 -118
- package/components/data/table/hooks/useTableData.js +54 -9
- package/components/data/table/hooks/useTableEdit.js +272 -97
- package/components/data/table/hooks/useTableEffects.js +31 -13
- package/components/data/table/hooks/useTableFilter.js +1 -1
- package/components/data/table/hooks/useTableInitialization.js +23 -22
- package/components/data/table/hooks/useTableState.js +11 -5
- package/components/data/table/hooks/useTableStateManager.js +140 -65
- package/components/data/table/index.js +637 -274
- package/components/data/table/live-table/index.js +54 -22
- package/components/data/table/table-action/index.js +1 -1
- package/components/data/table/table-group/index.js +26 -0
- package/components/data/table/table-row-action/index.js +32 -18
- package/components/data/table/utils/buildSelectionColumns.js +12 -21
- package/components/data/table/utils/columnBuilder.js +29 -14
- package/components/data/table/utils/columnProxy.js +68 -1
- package/components/data/table/utils/constants.js +6 -2
- package/components/data/table/utils/crud-handlers.js +68 -63
- package/components/data/table/utils/groupHeaderUtils.js +102 -0
- package/components/data/table/utils/index.js +210 -21
- package/components/data/table/utils/renderDisplayCell.js +6 -6
- package/components/data/table/utils/selectionUtils.js +25 -26
- package/components/data/table/utils/validation.js +1 -0
- package/components/data/utils/filter-field-util.js +3 -3
- package/components/dialogs/alert-dialog/index.js +1 -1
- package/components/dialogs/confirm-dialog/index.js +1 -1
- package/components/dialogs/dialog/index.js +4 -1
- package/components/dialogs/dialog-content/index.js +3 -1
- package/components/dialogs/dialog-header/index.js +2 -2
- package/components/dialogs/iframe-dialog/index.js +11 -5
- package/components/dialogs/index.js +1 -1
- package/components/dialogs/login-dialog/index.js +1 -1
- package/components/dialogs/page-dialog/index.js +1 -1
- package/components/form/button/index.js +33 -7
- package/components/input/calendar/index.js +18 -6
- package/components/input/chips/index.js +99 -28
- package/components/input/chips/utils.js +34 -4
- package/components/input/color-picker/index.js +74 -25
- package/components/input/composite/index.js +3 -3
- package/components/input/currency/index.js +35 -49
- package/components/input/default/checkbox/index.js +23 -28
- package/components/input/default/checkboxset/index.js +38 -18
- package/components/input/default/checkboxset/utils.js +30 -0
- package/components/input/default/radioset/index.js +36 -39
- package/components/input/default/switch/index.js +30 -13
- package/components/input/epoch/date/index.js +130 -69
- package/components/input/epoch/date/utils.js +94 -1
- package/components/input/epoch/datetime/index.js +72 -22
- package/components/input/epoch/datetime/utils.js +49 -10
- package/components/input/epoch/time/index.js +68 -19
- package/components/input/epoch/time/utils.js +62 -14
- package/components/input/fileupload/Utils.js +12 -7
- package/components/input/fileupload/components/MultiUpload.js +2 -6
- package/components/input/fileupload/components/SingleUpload.js +3 -7
- package/components/input/fileupload/index.js +6 -10
- package/components/input/fileupload/useFileUpload.js +16 -5
- package/components/input/number/index.js +158 -43
- package/components/input/rating/index.js +90 -7
- package/components/input/select/index.js +209 -72
- package/components/input/slider/index.js +84 -26
- package/components/input/text/index.js +38 -18
- package/components/input/text/util.js +283 -130
- package/components/input/textarea/index.js +13 -10
- package/components/input/upload/index.js +124 -0
- package/components/input/upload/props.js +5 -0
- package/components/input/util/index.js +11 -0
- package/components/navbar/index.js +51 -3
- package/components/navbar/nav/index.js +46 -16
- package/components/navbar/nav-item/index.js +11 -5
- package/components/navigation/menu/components/ListItems.js +3 -0
- package/components/navigation/menu/constants.js +2 -1
- package/components/navigation/menu/hooks/useHoverState.hook.js +48 -0
- package/components/navigation/menu/hooks/useKeyboardMovements.hook.js +37 -0
- package/components/navigation/menu/hooks/useTransformedDataset.hook.js +15 -0
- package/components/navigation/menu/index.js +326 -188
- package/components/navigation/menu/utils/action-task.js +14 -0
- package/components/navigation/menu/utils/role-filter.js +76 -0
- package/components/navigation/popover/index.js +105 -32
- package/components/page/partial-container/index.js +34 -5
- package/components/prefab/index.js +2 -4
- package/context/PrefabContext.js +10 -6
- package/context/WidgetProvider.js +30 -31
- package/core/app.service.js +1 -1
- package/core/constants/events.js +57 -1
- package/core/dialog.service.js +1 -2
- package/core/event-notifier.js +1 -2
- package/core/formatter/array-formatters.js +33 -0
- package/core/formatter/date-formatters.js +2 -4
- package/core/formatter/index.js +2 -1
- package/core/formatter/number-formatters.js +5 -10
- package/core/formatter/security-formatters.js +2 -4
- package/core/formatter/string-formatters.js +3 -6
- package/core/proxy-service.js +85 -13
- package/core/script-registry.js +108 -48
- package/core/util/common.js +4 -4
- package/core/util/compare.js +30 -0
- package/core/util/dom.js +8 -8
- package/core/util/index.js +16 -6
- package/core/util/safe-is-equal.js +156 -0
- package/core/util/security.js +1 -2
- package/core/util/utils.js +16 -7
- package/higherOrder/BaseApp.js +108 -65
- package/higherOrder/BaseDateTime.js +31 -13
- package/higherOrder/BasePage.js +268 -144
- package/higherOrder/BasePartial.js +1 -1
- package/higherOrder/BasePrefab.js +33 -15
- package/higherOrder/DataNav.js +99 -16
- package/higherOrder/helper.js +41 -3
- package/higherOrder/withBaseWrapper.js +41 -28
- package/hooks/useAuth.js +11 -5
- package/hooks/useHttp.js +280 -94
- package/mui-config/theme-provider.js +1 -1
- package/mui-config/theme.js +1 -1
- package/package-lock.json +307 -266
- package/package.json +8 -8
- package/store/bindActions/i18nActions.js +18 -0
- package/store/index.js +3 -1
- package/store/slices/appConfigSlice.js +2 -2
- package/store/slices/authSlice.js +31 -28
- package/store/slices/i18nSlice.js +2 -2
- package/store/slices/navigationSlice.js +35 -0
- package/store/viewport.service.js +255 -0
- package/utils/attr.js +35 -0
- package/utils/dataset-util.js +1 -2
- package/utils/form-state.util.js +43 -12
- package/utils/form-utils.js +47 -2
- package/utils/format-util.js +28 -13
- package/utils/page-params-util.js +33 -1
- package/utils/state-persistance.js +72 -13
- package/utils/transformedDataset-utils.js +35 -24
- package/variables/base-variable.js +12 -14
- package/variables/crud-variable.js +225 -0
- package/variables/live-variable.js +56 -20
- package/variables/metadata.service.js +123 -0
- package/variables/model-variable.js +21 -15
- package/variables/service-variable.js +88 -83
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/react-runtime",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.15.0-1.246",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/react-runtime",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.15.0-1.246",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui-components/react": "1.0.0-alpha.8",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"lint-staged": "^16.2.0",
|
|
38
38
|
"lodash-es": "^4.17.21",
|
|
39
39
|
"moment-timezone": "^0.6.0",
|
|
40
|
-
"next": "
|
|
40
|
+
"next": "16.1.1",
|
|
41
41
|
"qrcodejs2": "^0.0.2",
|
|
42
|
-
"react": "^19.
|
|
42
|
+
"react": "^19.2.3",
|
|
43
43
|
"react-color": "^2.19.3",
|
|
44
|
-
"react-dom": "^19.
|
|
44
|
+
"react-dom": "^19.2.3",
|
|
45
45
|
"react-hook-form": "^7.58.1",
|
|
46
46
|
"react-redux": "^9.2.0",
|
|
47
47
|
"recharts": "^3.0.2"
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"@types/js-cookie": "^3.0.6",
|
|
57
57
|
"@types/lodash-es": "^4.17.12",
|
|
58
58
|
"@types/node": "^20",
|
|
59
|
-
"@types/react": "^19",
|
|
59
|
+
"@types/react": "^19.2.8",
|
|
60
60
|
"@types/react-color": "^3.0.13",
|
|
61
|
-
"@types/react-dom": "^19",
|
|
62
|
-
"@wavemaker/variables": "11.
|
|
61
|
+
"@types/react-dom": "^19.2.3",
|
|
62
|
+
"@wavemaker/variables": "11.15.0-1.246",
|
|
63
63
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
64
64
|
"eslint": "^9",
|
|
65
65
|
"eslint-config-next": "15.1.4",
|
|
@@ -2298,9 +2298,18 @@
|
|
|
2298
2298
|
"react": "*"
|
|
2299
2299
|
}
|
|
2300
2300
|
},
|
|
2301
|
+
"node_modules/@img/colour": {
|
|
2302
|
+
"version": "1.0.0",
|
|
2303
|
+
"integrity": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==",
|
|
2304
|
+
"license": "MIT",
|
|
2305
|
+
"optional": true,
|
|
2306
|
+
"engines": {
|
|
2307
|
+
"node": ">=18"
|
|
2308
|
+
}
|
|
2309
|
+
},
|
|
2301
2310
|
"node_modules/@img/sharp-darwin-arm64": {
|
|
2302
|
-
"version": "0.
|
|
2303
|
-
"integrity": "sha512-
|
|
2311
|
+
"version": "0.34.5",
|
|
2312
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
2304
2313
|
"cpu": [
|
|
2305
2314
|
"arm64"
|
|
2306
2315
|
],
|
|
@@ -2316,12 +2325,12 @@
|
|
|
2316
2325
|
"url": "https://opencollective.com/libvips"
|
|
2317
2326
|
},
|
|
2318
2327
|
"optionalDependencies": {
|
|
2319
|
-
"@img/sharp-libvips-darwin-arm64": "1.
|
|
2328
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
2320
2329
|
}
|
|
2321
2330
|
},
|
|
2322
2331
|
"node_modules/@img/sharp-darwin-x64": {
|
|
2323
|
-
"version": "0.
|
|
2324
|
-
"integrity": "sha512-
|
|
2332
|
+
"version": "0.34.5",
|
|
2333
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
2325
2334
|
"cpu": [
|
|
2326
2335
|
"x64"
|
|
2327
2336
|
],
|
|
@@ -2337,12 +2346,12 @@
|
|
|
2337
2346
|
"url": "https://opencollective.com/libvips"
|
|
2338
2347
|
},
|
|
2339
2348
|
"optionalDependencies": {
|
|
2340
|
-
"@img/sharp-libvips-darwin-x64": "1.
|
|
2349
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
2341
2350
|
}
|
|
2342
2351
|
},
|
|
2343
2352
|
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
2344
|
-
"version": "1.
|
|
2345
|
-
"integrity": "sha512-
|
|
2353
|
+
"version": "1.2.4",
|
|
2354
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
2346
2355
|
"cpu": [
|
|
2347
2356
|
"arm64"
|
|
2348
2357
|
],
|
|
@@ -2356,8 +2365,8 @@
|
|
|
2356
2365
|
}
|
|
2357
2366
|
},
|
|
2358
2367
|
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
2359
|
-
"version": "1.
|
|
2360
|
-
"integrity": "sha512-
|
|
2368
|
+
"version": "1.2.4",
|
|
2369
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
2361
2370
|
"cpu": [
|
|
2362
2371
|
"x64"
|
|
2363
2372
|
],
|
|
@@ -2371,8 +2380,8 @@
|
|
|
2371
2380
|
}
|
|
2372
2381
|
},
|
|
2373
2382
|
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
2374
|
-
"version": "1.
|
|
2375
|
-
"integrity": "sha512-
|
|
2383
|
+
"version": "1.2.4",
|
|
2384
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
2376
2385
|
"cpu": [
|
|
2377
2386
|
"arm"
|
|
2378
2387
|
],
|
|
@@ -2386,8 +2395,8 @@
|
|
|
2386
2395
|
}
|
|
2387
2396
|
},
|
|
2388
2397
|
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
2389
|
-
"version": "1.
|
|
2390
|
-
"integrity": "sha512-
|
|
2398
|
+
"version": "1.2.4",
|
|
2399
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
2391
2400
|
"cpu": [
|
|
2392
2401
|
"arm64"
|
|
2393
2402
|
],
|
|
@@ -2400,9 +2409,39 @@
|
|
|
2400
2409
|
"url": "https://opencollective.com/libvips"
|
|
2401
2410
|
}
|
|
2402
2411
|
},
|
|
2412
|
+
"node_modules/@img/sharp-libvips-linux-ppc64": {
|
|
2413
|
+
"version": "1.2.4",
|
|
2414
|
+
"integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
|
|
2415
|
+
"cpu": [
|
|
2416
|
+
"ppc64"
|
|
2417
|
+
],
|
|
2418
|
+
"license": "LGPL-3.0-or-later",
|
|
2419
|
+
"optional": true,
|
|
2420
|
+
"os": [
|
|
2421
|
+
"linux"
|
|
2422
|
+
],
|
|
2423
|
+
"funding": {
|
|
2424
|
+
"url": "https://opencollective.com/libvips"
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2427
|
+
"node_modules/@img/sharp-libvips-linux-riscv64": {
|
|
2428
|
+
"version": "1.2.4",
|
|
2429
|
+
"integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
|
|
2430
|
+
"cpu": [
|
|
2431
|
+
"riscv64"
|
|
2432
|
+
],
|
|
2433
|
+
"license": "LGPL-3.0-or-later",
|
|
2434
|
+
"optional": true,
|
|
2435
|
+
"os": [
|
|
2436
|
+
"linux"
|
|
2437
|
+
],
|
|
2438
|
+
"funding": {
|
|
2439
|
+
"url": "https://opencollective.com/libvips"
|
|
2440
|
+
}
|
|
2441
|
+
},
|
|
2403
2442
|
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
2404
|
-
"version": "1.
|
|
2405
|
-
"integrity": "sha512-
|
|
2443
|
+
"version": "1.2.4",
|
|
2444
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
2406
2445
|
"cpu": [
|
|
2407
2446
|
"s390x"
|
|
2408
2447
|
],
|
|
@@ -2416,8 +2455,8 @@
|
|
|
2416
2455
|
}
|
|
2417
2456
|
},
|
|
2418
2457
|
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
2419
|
-
"version": "1.
|
|
2420
|
-
"integrity": "sha512-
|
|
2458
|
+
"version": "1.2.4",
|
|
2459
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
2421
2460
|
"cpu": [
|
|
2422
2461
|
"x64"
|
|
2423
2462
|
],
|
|
@@ -2431,8 +2470,8 @@
|
|
|
2431
2470
|
}
|
|
2432
2471
|
},
|
|
2433
2472
|
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
2434
|
-
"version": "1.
|
|
2435
|
-
"integrity": "sha512-
|
|
2473
|
+
"version": "1.2.4",
|
|
2474
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
2436
2475
|
"cpu": [
|
|
2437
2476
|
"arm64"
|
|
2438
2477
|
],
|
|
@@ -2446,8 +2485,8 @@
|
|
|
2446
2485
|
}
|
|
2447
2486
|
},
|
|
2448
2487
|
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
2449
|
-
"version": "1.
|
|
2450
|
-
"integrity": "sha512
|
|
2488
|
+
"version": "1.2.4",
|
|
2489
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
2451
2490
|
"cpu": [
|
|
2452
2491
|
"x64"
|
|
2453
2492
|
],
|
|
@@ -2461,8 +2500,8 @@
|
|
|
2461
2500
|
}
|
|
2462
2501
|
},
|
|
2463
2502
|
"node_modules/@img/sharp-linux-arm": {
|
|
2464
|
-
"version": "0.
|
|
2465
|
-
"integrity": "sha512-
|
|
2503
|
+
"version": "0.34.5",
|
|
2504
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
2466
2505
|
"cpu": [
|
|
2467
2506
|
"arm"
|
|
2468
2507
|
],
|
|
@@ -2478,12 +2517,12 @@
|
|
|
2478
2517
|
"url": "https://opencollective.com/libvips"
|
|
2479
2518
|
},
|
|
2480
2519
|
"optionalDependencies": {
|
|
2481
|
-
"@img/sharp-libvips-linux-arm": "1.
|
|
2520
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
2482
2521
|
}
|
|
2483
2522
|
},
|
|
2484
2523
|
"node_modules/@img/sharp-linux-arm64": {
|
|
2485
|
-
"version": "0.
|
|
2486
|
-
"integrity": "sha512-
|
|
2524
|
+
"version": "0.34.5",
|
|
2525
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
2487
2526
|
"cpu": [
|
|
2488
2527
|
"arm64"
|
|
2489
2528
|
],
|
|
@@ -2499,12 +2538,54 @@
|
|
|
2499
2538
|
"url": "https://opencollective.com/libvips"
|
|
2500
2539
|
},
|
|
2501
2540
|
"optionalDependencies": {
|
|
2502
|
-
"@img/sharp-libvips-linux-arm64": "1.
|
|
2541
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4"
|
|
2542
|
+
}
|
|
2543
|
+
},
|
|
2544
|
+
"node_modules/@img/sharp-linux-ppc64": {
|
|
2545
|
+
"version": "0.34.5",
|
|
2546
|
+
"integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
|
|
2547
|
+
"cpu": [
|
|
2548
|
+
"ppc64"
|
|
2549
|
+
],
|
|
2550
|
+
"license": "Apache-2.0",
|
|
2551
|
+
"optional": true,
|
|
2552
|
+
"os": [
|
|
2553
|
+
"linux"
|
|
2554
|
+
],
|
|
2555
|
+
"engines": {
|
|
2556
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2557
|
+
},
|
|
2558
|
+
"funding": {
|
|
2559
|
+
"url": "https://opencollective.com/libvips"
|
|
2560
|
+
},
|
|
2561
|
+
"optionalDependencies": {
|
|
2562
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4"
|
|
2563
|
+
}
|
|
2564
|
+
},
|
|
2565
|
+
"node_modules/@img/sharp-linux-riscv64": {
|
|
2566
|
+
"version": "0.34.5",
|
|
2567
|
+
"integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
|
|
2568
|
+
"cpu": [
|
|
2569
|
+
"riscv64"
|
|
2570
|
+
],
|
|
2571
|
+
"license": "Apache-2.0",
|
|
2572
|
+
"optional": true,
|
|
2573
|
+
"os": [
|
|
2574
|
+
"linux"
|
|
2575
|
+
],
|
|
2576
|
+
"engines": {
|
|
2577
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2578
|
+
},
|
|
2579
|
+
"funding": {
|
|
2580
|
+
"url": "https://opencollective.com/libvips"
|
|
2581
|
+
},
|
|
2582
|
+
"optionalDependencies": {
|
|
2583
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4"
|
|
2503
2584
|
}
|
|
2504
2585
|
},
|
|
2505
2586
|
"node_modules/@img/sharp-linux-s390x": {
|
|
2506
|
-
"version": "0.
|
|
2507
|
-
"integrity": "sha512-
|
|
2587
|
+
"version": "0.34.5",
|
|
2588
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
2508
2589
|
"cpu": [
|
|
2509
2590
|
"s390x"
|
|
2510
2591
|
],
|
|
@@ -2520,12 +2601,12 @@
|
|
|
2520
2601
|
"url": "https://opencollective.com/libvips"
|
|
2521
2602
|
},
|
|
2522
2603
|
"optionalDependencies": {
|
|
2523
|
-
"@img/sharp-libvips-linux-s390x": "1.
|
|
2604
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
2524
2605
|
}
|
|
2525
2606
|
},
|
|
2526
2607
|
"node_modules/@img/sharp-linux-x64": {
|
|
2527
|
-
"version": "0.
|
|
2528
|
-
"integrity": "sha512-
|
|
2608
|
+
"version": "0.34.5",
|
|
2609
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
2529
2610
|
"cpu": [
|
|
2530
2611
|
"x64"
|
|
2531
2612
|
],
|
|
@@ -2541,12 +2622,12 @@
|
|
|
2541
2622
|
"url": "https://opencollective.com/libvips"
|
|
2542
2623
|
},
|
|
2543
2624
|
"optionalDependencies": {
|
|
2544
|
-
"@img/sharp-libvips-linux-x64": "1.
|
|
2625
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
2545
2626
|
}
|
|
2546
2627
|
},
|
|
2547
2628
|
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
2548
|
-
"version": "0.
|
|
2549
|
-
"integrity": "sha512-
|
|
2629
|
+
"version": "0.34.5",
|
|
2630
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
2550
2631
|
"cpu": [
|
|
2551
2632
|
"arm64"
|
|
2552
2633
|
],
|
|
@@ -2562,12 +2643,12 @@
|
|
|
2562
2643
|
"url": "https://opencollective.com/libvips"
|
|
2563
2644
|
},
|
|
2564
2645
|
"optionalDependencies": {
|
|
2565
|
-
"@img/sharp-libvips-linuxmusl-arm64": "1.
|
|
2646
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
2566
2647
|
}
|
|
2567
2648
|
},
|
|
2568
2649
|
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
2569
|
-
"version": "0.
|
|
2570
|
-
"integrity": "sha512-
|
|
2650
|
+
"version": "0.34.5",
|
|
2651
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
2571
2652
|
"cpu": [
|
|
2572
2653
|
"x64"
|
|
2573
2654
|
],
|
|
@@ -2583,19 +2664,19 @@
|
|
|
2583
2664
|
"url": "https://opencollective.com/libvips"
|
|
2584
2665
|
},
|
|
2585
2666
|
"optionalDependencies": {
|
|
2586
|
-
"@img/sharp-libvips-linuxmusl-x64": "1.
|
|
2667
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
2587
2668
|
}
|
|
2588
2669
|
},
|
|
2589
2670
|
"node_modules/@img/sharp-wasm32": {
|
|
2590
|
-
"version": "0.
|
|
2591
|
-
"integrity": "sha512-
|
|
2671
|
+
"version": "0.34.5",
|
|
2672
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
2592
2673
|
"cpu": [
|
|
2593
2674
|
"wasm32"
|
|
2594
2675
|
],
|
|
2595
2676
|
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
2596
2677
|
"optional": true,
|
|
2597
2678
|
"dependencies": {
|
|
2598
|
-
"@emnapi/runtime": "^1.
|
|
2679
|
+
"@emnapi/runtime": "^1.7.0"
|
|
2599
2680
|
},
|
|
2600
2681
|
"engines": {
|
|
2601
2682
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -2604,9 +2685,27 @@
|
|
|
2604
2685
|
"url": "https://opencollective.com/libvips"
|
|
2605
2686
|
}
|
|
2606
2687
|
},
|
|
2688
|
+
"node_modules/@img/sharp-win32-arm64": {
|
|
2689
|
+
"version": "0.34.5",
|
|
2690
|
+
"integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
|
|
2691
|
+
"cpu": [
|
|
2692
|
+
"arm64"
|
|
2693
|
+
],
|
|
2694
|
+
"license": "Apache-2.0 AND LGPL-3.0-or-later",
|
|
2695
|
+
"optional": true,
|
|
2696
|
+
"os": [
|
|
2697
|
+
"win32"
|
|
2698
|
+
],
|
|
2699
|
+
"engines": {
|
|
2700
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
2701
|
+
},
|
|
2702
|
+
"funding": {
|
|
2703
|
+
"url": "https://opencollective.com/libvips"
|
|
2704
|
+
}
|
|
2705
|
+
},
|
|
2607
2706
|
"node_modules/@img/sharp-win32-ia32": {
|
|
2608
|
-
"version": "0.
|
|
2609
|
-
"integrity": "sha512-
|
|
2707
|
+
"version": "0.34.5",
|
|
2708
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
2610
2709
|
"cpu": [
|
|
2611
2710
|
"ia32"
|
|
2612
2711
|
],
|
|
@@ -2623,8 +2722,8 @@
|
|
|
2623
2722
|
}
|
|
2624
2723
|
},
|
|
2625
2724
|
"node_modules/@img/sharp-win32-x64": {
|
|
2626
|
-
"version": "0.
|
|
2627
|
-
"integrity": "sha512
|
|
2725
|
+
"version": "0.34.5",
|
|
2726
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
2628
2727
|
"cpu": [
|
|
2629
2728
|
"x64"
|
|
2630
2729
|
],
|
|
@@ -2918,13 +3017,13 @@
|
|
|
2918
3017
|
}
|
|
2919
3018
|
},
|
|
2920
3019
|
"node_modules/@mui/private-theming": {
|
|
2921
|
-
"version": "7.3.
|
|
2922
|
-
"integrity": "sha512-
|
|
3020
|
+
"version": "7.3.8",
|
|
3021
|
+
"integrity": "sha512-du5dlPZ9XL3xW2apHoGDXBI+QLtyVJGrXNCfcNYfP/ojkz1RQ0rRV6VG9Rkm1DqEFRG8mjjTL7zmE1Bvn1eR4A==",
|
|
2923
3022
|
"license": "MIT",
|
|
2924
3023
|
"peer": true,
|
|
2925
3024
|
"dependencies": {
|
|
2926
|
-
"@babel/runtime": "^7.28.
|
|
2927
|
-
"@mui/utils": "^7.3.
|
|
3025
|
+
"@babel/runtime": "^7.28.6",
|
|
3026
|
+
"@mui/utils": "^7.3.8",
|
|
2928
3027
|
"prop-types": "^15.8.1"
|
|
2929
3028
|
},
|
|
2930
3029
|
"engines": {
|
|
@@ -2945,13 +3044,13 @@
|
|
|
2945
3044
|
}
|
|
2946
3045
|
},
|
|
2947
3046
|
"node_modules/@mui/private-theming/node_modules/@mui/utils": {
|
|
2948
|
-
"version": "7.3.
|
|
2949
|
-
"integrity": "sha512
|
|
3047
|
+
"version": "7.3.8",
|
|
3048
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
2950
3049
|
"license": "MIT",
|
|
2951
3050
|
"peer": true,
|
|
2952
3051
|
"dependencies": {
|
|
2953
|
-
"@babel/runtime": "^7.28.
|
|
2954
|
-
"@mui/types": "^7.4.
|
|
3052
|
+
"@babel/runtime": "^7.28.6",
|
|
3053
|
+
"@mui/types": "^7.4.11",
|
|
2955
3054
|
"@types/prop-types": "^15.7.15",
|
|
2956
3055
|
"clsx": "^2.1.1",
|
|
2957
3056
|
"prop-types": "^15.8.1",
|
|
@@ -2975,12 +3074,12 @@
|
|
|
2975
3074
|
}
|
|
2976
3075
|
},
|
|
2977
3076
|
"node_modules/@mui/styled-engine": {
|
|
2978
|
-
"version": "7.3.
|
|
2979
|
-
"integrity": "sha512-
|
|
3077
|
+
"version": "7.3.8",
|
|
3078
|
+
"integrity": "sha512-JHAeXQzS0tJ+Fq3C6J4TVDsW+yKhO4uuxuiLaopNStJeQYBIUCXpKYyUCcgXym4AmhbznQnv9RlHywSH6b0FOg==",
|
|
2980
3079
|
"license": "MIT",
|
|
2981
3080
|
"peer": true,
|
|
2982
3081
|
"dependencies": {
|
|
2983
|
-
"@babel/runtime": "^7.28.
|
|
3082
|
+
"@babel/runtime": "^7.28.6",
|
|
2984
3083
|
"@emotion/cache": "^11.14.0",
|
|
2985
3084
|
"@emotion/serialize": "^1.3.3",
|
|
2986
3085
|
"@emotion/sheet": "^1.4.0",
|
|
@@ -3009,16 +3108,16 @@
|
|
|
3009
3108
|
}
|
|
3010
3109
|
},
|
|
3011
3110
|
"node_modules/@mui/system": {
|
|
3012
|
-
"version": "7.3.
|
|
3013
|
-
"integrity": "sha512-
|
|
3111
|
+
"version": "7.3.8",
|
|
3112
|
+
"integrity": "sha512-hoFRj4Zw2Km8DPWZp/nKG+ao5Jw5LSk2m/e4EGc6M3RRwXKEkMSG4TgtfVJg7dS2homRwtdXSMW+iRO0ZJ4+IA==",
|
|
3014
3113
|
"license": "MIT",
|
|
3015
3114
|
"peer": true,
|
|
3016
3115
|
"dependencies": {
|
|
3017
|
-
"@babel/runtime": "^7.28.
|
|
3018
|
-
"@mui/private-theming": "^7.3.
|
|
3019
|
-
"@mui/styled-engine": "^7.3.
|
|
3020
|
-
"@mui/types": "^7.4.
|
|
3021
|
-
"@mui/utils": "^7.3.
|
|
3116
|
+
"@babel/runtime": "^7.28.6",
|
|
3117
|
+
"@mui/private-theming": "^7.3.8",
|
|
3118
|
+
"@mui/styled-engine": "^7.3.8",
|
|
3119
|
+
"@mui/types": "^7.4.11",
|
|
3120
|
+
"@mui/utils": "^7.3.8",
|
|
3022
3121
|
"clsx": "^2.1.1",
|
|
3023
3122
|
"csstype": "^3.2.3",
|
|
3024
3123
|
"prop-types": "^15.8.1"
|
|
@@ -3049,13 +3148,13 @@
|
|
|
3049
3148
|
}
|
|
3050
3149
|
},
|
|
3051
3150
|
"node_modules/@mui/system/node_modules/@mui/utils": {
|
|
3052
|
-
"version": "7.3.
|
|
3053
|
-
"integrity": "sha512
|
|
3151
|
+
"version": "7.3.8",
|
|
3152
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
3054
3153
|
"license": "MIT",
|
|
3055
3154
|
"peer": true,
|
|
3056
3155
|
"dependencies": {
|
|
3057
|
-
"@babel/runtime": "^7.28.
|
|
3058
|
-
"@mui/types": "^7.4.
|
|
3156
|
+
"@babel/runtime": "^7.28.6",
|
|
3157
|
+
"@mui/types": "^7.4.11",
|
|
3059
3158
|
"@types/prop-types": "^15.7.15",
|
|
3060
3159
|
"clsx": "^2.1.1",
|
|
3061
3160
|
"prop-types": "^15.8.1",
|
|
@@ -3079,11 +3178,11 @@
|
|
|
3079
3178
|
}
|
|
3080
3179
|
},
|
|
3081
3180
|
"node_modules/@mui/types": {
|
|
3082
|
-
"version": "7.4.
|
|
3083
|
-
"integrity": "sha512-
|
|
3181
|
+
"version": "7.4.11",
|
|
3182
|
+
"integrity": "sha512-fZ2xO9D08IKOxO2oUBi1nnVKH6oJUD+64cnv4YAaFoC0E5+i1+S5AHbNqqvZlYYsbPEQ6qEVwuBqY3jl5W4G+Q==",
|
|
3084
3183
|
"license": "MIT",
|
|
3085
3184
|
"dependencies": {
|
|
3086
|
-
"@babel/runtime": "^7.28.
|
|
3185
|
+
"@babel/runtime": "^7.28.6"
|
|
3087
3186
|
},
|
|
3088
3187
|
"peerDependencies": {
|
|
3089
3188
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
@@ -3202,12 +3301,12 @@
|
|
|
3202
3301
|
}
|
|
3203
3302
|
},
|
|
3204
3303
|
"node_modules/@mui/x-date-pickers/node_modules/@mui/utils": {
|
|
3205
|
-
"version": "7.3.
|
|
3206
|
-
"integrity": "sha512
|
|
3304
|
+
"version": "7.3.8",
|
|
3305
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
3207
3306
|
"license": "MIT",
|
|
3208
3307
|
"dependencies": {
|
|
3209
|
-
"@babel/runtime": "^7.28.
|
|
3210
|
-
"@mui/types": "^7.4.
|
|
3308
|
+
"@babel/runtime": "^7.28.6",
|
|
3309
|
+
"@mui/types": "^7.4.11",
|
|
3211
3310
|
"@types/prop-types": "^15.7.15",
|
|
3212
3311
|
"clsx": "^2.1.1",
|
|
3213
3312
|
"prop-types": "^15.8.1",
|
|
@@ -3252,12 +3351,12 @@
|
|
|
3252
3351
|
}
|
|
3253
3352
|
},
|
|
3254
3353
|
"node_modules/@mui/x-internals/node_modules/@mui/utils": {
|
|
3255
|
-
"version": "7.3.
|
|
3256
|
-
"integrity": "sha512
|
|
3354
|
+
"version": "7.3.8",
|
|
3355
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
3257
3356
|
"license": "MIT",
|
|
3258
3357
|
"dependencies": {
|
|
3259
|
-
"@babel/runtime": "^7.28.
|
|
3260
|
-
"@mui/types": "^7.4.
|
|
3358
|
+
"@babel/runtime": "^7.28.6",
|
|
3359
|
+
"@mui/types": "^7.4.11",
|
|
3261
3360
|
"@types/prop-types": "^15.7.15",
|
|
3262
3361
|
"clsx": "^2.1.1",
|
|
3263
3362
|
"prop-types": "^15.8.1",
|
|
@@ -3293,8 +3392,8 @@
|
|
|
3293
3392
|
}
|
|
3294
3393
|
},
|
|
3295
3394
|
"node_modules/@next/env": {
|
|
3296
|
-
"version": "
|
|
3297
|
-
"integrity": "sha512-
|
|
3395
|
+
"version": "16.1.1",
|
|
3396
|
+
"integrity": "sha512-3oxyM97Sr2PqiVyMyrZUtrtM3jqqFxOQJVuKclDsgj/L728iZt/GyslkN4NwarledZATCenbk4Offjk1hQmaAA==",
|
|
3298
3397
|
"license": "MIT"
|
|
3299
3398
|
},
|
|
3300
3399
|
"node_modules/@next/eslint-plugin-next": {
|
|
@@ -3307,8 +3406,8 @@
|
|
|
3307
3406
|
}
|
|
3308
3407
|
},
|
|
3309
3408
|
"node_modules/@next/swc-darwin-arm64": {
|
|
3310
|
-
"version": "
|
|
3311
|
-
"integrity": "sha512-
|
|
3409
|
+
"version": "16.1.1",
|
|
3410
|
+
"integrity": "sha512-JS3m42ifsVSJjSTzh27nW+Igfha3NdBOFScr9C80hHGrWx55pTrVL23RJbqir7k7/15SKlrLHhh/MQzqBBYrQA==",
|
|
3312
3411
|
"cpu": [
|
|
3313
3412
|
"arm64"
|
|
3314
3413
|
],
|
|
@@ -3322,8 +3421,8 @@
|
|
|
3322
3421
|
}
|
|
3323
3422
|
},
|
|
3324
3423
|
"node_modules/@next/swc-darwin-x64": {
|
|
3325
|
-
"version": "
|
|
3326
|
-
"integrity": "sha512-
|
|
3424
|
+
"version": "16.1.1",
|
|
3425
|
+
"integrity": "sha512-hbyKtrDGUkgkyQi1m1IyD3q4I/3m9ngr+V93z4oKHrPcmxwNL5iMWORvLSGAf2YujL+6HxgVvZuCYZfLfb4bGw==",
|
|
3327
3426
|
"cpu": [
|
|
3328
3427
|
"x64"
|
|
3329
3428
|
],
|
|
@@ -3337,8 +3436,8 @@
|
|
|
3337
3436
|
}
|
|
3338
3437
|
},
|
|
3339
3438
|
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
3340
|
-
"version": "
|
|
3341
|
-
"integrity": "sha512
|
|
3439
|
+
"version": "16.1.1",
|
|
3440
|
+
"integrity": "sha512-/fvHet+EYckFvRLQ0jPHJCUI5/B56+2DpI1xDSvi80r/3Ez+Eaa2Yq4tJcRTaB1kqj/HrYKn8Yplm9bNoMJpwQ==",
|
|
3342
3441
|
"cpu": [
|
|
3343
3442
|
"arm64"
|
|
3344
3443
|
],
|
|
@@ -3352,8 +3451,8 @@
|
|
|
3352
3451
|
}
|
|
3353
3452
|
},
|
|
3354
3453
|
"node_modules/@next/swc-linux-arm64-musl": {
|
|
3355
|
-
"version": "
|
|
3356
|
-
"integrity": "sha512-
|
|
3454
|
+
"version": "16.1.1",
|
|
3455
|
+
"integrity": "sha512-MFHrgL4TXNQbBPzkKKur4Fb5ICEJa87HM7fczFs2+HWblM7mMLdco3dvyTI+QmLBU9xgns/EeeINSZD6Ar+oLg==",
|
|
3357
3456
|
"cpu": [
|
|
3358
3457
|
"arm64"
|
|
3359
3458
|
],
|
|
@@ -3367,8 +3466,8 @@
|
|
|
3367
3466
|
}
|
|
3368
3467
|
},
|
|
3369
3468
|
"node_modules/@next/swc-linux-x64-gnu": {
|
|
3370
|
-
"version": "
|
|
3371
|
-
"integrity": "sha512-
|
|
3469
|
+
"version": "16.1.1",
|
|
3470
|
+
"integrity": "sha512-20bYDfgOQAPUkkKBnyP9PTuHiJGM7HzNBbuqmD0jiFVZ0aOldz+VnJhbxzjcSabYsnNjMPsE0cyzEudpYxsrUQ==",
|
|
3372
3471
|
"cpu": [
|
|
3373
3472
|
"x64"
|
|
3374
3473
|
],
|
|
@@ -3382,8 +3481,8 @@
|
|
|
3382
3481
|
}
|
|
3383
3482
|
},
|
|
3384
3483
|
"node_modules/@next/swc-linux-x64-musl": {
|
|
3385
|
-
"version": "
|
|
3386
|
-
"integrity": "sha512-
|
|
3484
|
+
"version": "16.1.1",
|
|
3485
|
+
"integrity": "sha512-9pRbK3M4asAHQRkwaXwu601oPZHghuSC8IXNENgbBSyImHv/zY4K5udBusgdHkvJ/Tcr96jJwQYOll0qU8+fPA==",
|
|
3387
3486
|
"cpu": [
|
|
3388
3487
|
"x64"
|
|
3389
3488
|
],
|
|
@@ -3397,8 +3496,8 @@
|
|
|
3397
3496
|
}
|
|
3398
3497
|
},
|
|
3399
3498
|
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
3400
|
-
"version": "
|
|
3401
|
-
"integrity": "sha512-
|
|
3499
|
+
"version": "16.1.1",
|
|
3500
|
+
"integrity": "sha512-bdfQkggaLgnmYrFkSQfsHfOhk/mCYmjnrbRCGgkMcoOBZ4n+TRRSLmT/CU5SATzlBJ9TpioUyBW/vWFXTqQRiA==",
|
|
3402
3501
|
"cpu": [
|
|
3403
3502
|
"arm64"
|
|
3404
3503
|
],
|
|
@@ -3412,8 +3511,8 @@
|
|
|
3412
3511
|
}
|
|
3413
3512
|
},
|
|
3414
3513
|
"node_modules/@next/swc-win32-x64-msvc": {
|
|
3415
|
-
"version": "
|
|
3416
|
-
"integrity": "sha512-
|
|
3514
|
+
"version": "16.1.1",
|
|
3515
|
+
"integrity": "sha512-Ncwbw2WJ57Al5OX0k4chM68DKhEPlrXBaSXDCi2kPi5f4d8b3ejr3RRJGfKBLrn2YJL5ezNS7w2TZLHSti8CMw==",
|
|
3417
3516
|
"cpu": [
|
|
3418
3517
|
"x64"
|
|
3419
3518
|
],
|
|
@@ -3730,11 +3829,6 @@
|
|
|
3730
3829
|
"integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
|
|
3731
3830
|
"license": "MIT"
|
|
3732
3831
|
},
|
|
3733
|
-
"node_modules/@swc/counter": {
|
|
3734
|
-
"version": "0.1.3",
|
|
3735
|
-
"integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
|
|
3736
|
-
"license": "Apache-2.0"
|
|
3737
|
-
},
|
|
3738
3832
|
"node_modules/@swc/helpers": {
|
|
3739
3833
|
"version": "0.5.18",
|
|
3740
3834
|
"integrity": "sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==",
|
|
@@ -3878,8 +3972,8 @@
|
|
|
3878
3972
|
}
|
|
3879
3973
|
},
|
|
3880
3974
|
"node_modules/@types/node": {
|
|
3881
|
-
"version": "20.19.
|
|
3882
|
-
"integrity": "sha512-
|
|
3975
|
+
"version": "20.19.33",
|
|
3976
|
+
"integrity": "sha512-Rs1bVAIdBs5gbTIKza/tgpMuG1k3U/UMJLWecIMxNdJFDMzcM5LOiLVRYh3PilWEYDIeUDv7bpiHPLPsbydGcw==",
|
|
3883
3977
|
"dev": true,
|
|
3884
3978
|
"license": "MIT",
|
|
3885
3979
|
"dependencies": {
|
|
@@ -3897,8 +3991,8 @@
|
|
|
3897
3991
|
"license": "MIT"
|
|
3898
3992
|
},
|
|
3899
3993
|
"node_modules/@types/react": {
|
|
3900
|
-
"version": "19.2.
|
|
3901
|
-
"integrity": "sha512-
|
|
3994
|
+
"version": "19.2.14",
|
|
3995
|
+
"integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
|
|
3902
3996
|
"license": "MIT",
|
|
3903
3997
|
"dependencies": {
|
|
3904
3998
|
"csstype": "^3.2.2"
|
|
@@ -3954,16 +4048,16 @@
|
|
|
3954
4048
|
"license": "MIT"
|
|
3955
4049
|
},
|
|
3956
4050
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
3957
|
-
"version": "8.
|
|
3958
|
-
"integrity": "sha512-
|
|
4051
|
+
"version": "8.55.0",
|
|
4052
|
+
"integrity": "sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==",
|
|
3959
4053
|
"dev": true,
|
|
3960
4054
|
"license": "MIT",
|
|
3961
4055
|
"dependencies": {
|
|
3962
4056
|
"@eslint-community/regexpp": "^4.12.2",
|
|
3963
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3964
|
-
"@typescript-eslint/type-utils": "8.
|
|
3965
|
-
"@typescript-eslint/utils": "8.
|
|
3966
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4057
|
+
"@typescript-eslint/scope-manager": "8.55.0",
|
|
4058
|
+
"@typescript-eslint/type-utils": "8.55.0",
|
|
4059
|
+
"@typescript-eslint/utils": "8.55.0",
|
|
4060
|
+
"@typescript-eslint/visitor-keys": "8.55.0",
|
|
3967
4061
|
"ignore": "^7.0.5",
|
|
3968
4062
|
"natural-compare": "^1.4.0",
|
|
3969
4063
|
"ts-api-utils": "^2.4.0"
|
|
@@ -3976,7 +4070,7 @@
|
|
|
3976
4070
|
"url": "https://opencollective.com/typescript-eslint"
|
|
3977
4071
|
},
|
|
3978
4072
|
"peerDependencies": {
|
|
3979
|
-
"@typescript-eslint/parser": "^8.
|
|
4073
|
+
"@typescript-eslint/parser": "^8.55.0",
|
|
3980
4074
|
"eslint": "^8.57.0 || ^9.0.0",
|
|
3981
4075
|
"typescript": ">=4.8.4 <6.0.0"
|
|
3982
4076
|
}
|
|
@@ -3991,15 +4085,15 @@
|
|
|
3991
4085
|
}
|
|
3992
4086
|
},
|
|
3993
4087
|
"node_modules/@typescript-eslint/parser": {
|
|
3994
|
-
"version": "8.
|
|
3995
|
-
"integrity": "sha512-
|
|
4088
|
+
"version": "8.55.0",
|
|
4089
|
+
"integrity": "sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==",
|
|
3996
4090
|
"dev": true,
|
|
3997
4091
|
"license": "MIT",
|
|
3998
4092
|
"dependencies": {
|
|
3999
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4000
|
-
"@typescript-eslint/types": "8.
|
|
4001
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4002
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4093
|
+
"@typescript-eslint/scope-manager": "8.55.0",
|
|
4094
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4095
|
+
"@typescript-eslint/typescript-estree": "8.55.0",
|
|
4096
|
+
"@typescript-eslint/visitor-keys": "8.55.0",
|
|
4003
4097
|
"debug": "^4.4.3"
|
|
4004
4098
|
},
|
|
4005
4099
|
"engines": {
|
|
@@ -4015,13 +4109,13 @@
|
|
|
4015
4109
|
}
|
|
4016
4110
|
},
|
|
4017
4111
|
"node_modules/@typescript-eslint/project-service": {
|
|
4018
|
-
"version": "8.
|
|
4019
|
-
"integrity": "sha512-
|
|
4112
|
+
"version": "8.55.0",
|
|
4113
|
+
"integrity": "sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==",
|
|
4020
4114
|
"dev": true,
|
|
4021
4115
|
"license": "MIT",
|
|
4022
4116
|
"dependencies": {
|
|
4023
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4024
|
-
"@typescript-eslint/types": "^8.
|
|
4117
|
+
"@typescript-eslint/tsconfig-utils": "^8.55.0",
|
|
4118
|
+
"@typescript-eslint/types": "^8.55.0",
|
|
4025
4119
|
"debug": "^4.4.3"
|
|
4026
4120
|
},
|
|
4027
4121
|
"engines": {
|
|
@@ -4036,13 +4130,13 @@
|
|
|
4036
4130
|
}
|
|
4037
4131
|
},
|
|
4038
4132
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4039
|
-
"version": "8.
|
|
4040
|
-
"integrity": "sha512-
|
|
4133
|
+
"version": "8.55.0",
|
|
4134
|
+
"integrity": "sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==",
|
|
4041
4135
|
"dev": true,
|
|
4042
4136
|
"license": "MIT",
|
|
4043
4137
|
"dependencies": {
|
|
4044
|
-
"@typescript-eslint/types": "8.
|
|
4045
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4138
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4139
|
+
"@typescript-eslint/visitor-keys": "8.55.0"
|
|
4046
4140
|
},
|
|
4047
4141
|
"engines": {
|
|
4048
4142
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4053,8 +4147,8 @@
|
|
|
4053
4147
|
}
|
|
4054
4148
|
},
|
|
4055
4149
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4056
|
-
"version": "8.
|
|
4057
|
-
"integrity": "sha512-
|
|
4150
|
+
"version": "8.55.0",
|
|
4151
|
+
"integrity": "sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==",
|
|
4058
4152
|
"dev": true,
|
|
4059
4153
|
"license": "MIT",
|
|
4060
4154
|
"engines": {
|
|
@@ -4069,14 +4163,14 @@
|
|
|
4069
4163
|
}
|
|
4070
4164
|
},
|
|
4071
4165
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4072
|
-
"version": "8.
|
|
4073
|
-
"integrity": "sha512-
|
|
4166
|
+
"version": "8.55.0",
|
|
4167
|
+
"integrity": "sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==",
|
|
4074
4168
|
"dev": true,
|
|
4075
4169
|
"license": "MIT",
|
|
4076
4170
|
"dependencies": {
|
|
4077
|
-
"@typescript-eslint/types": "8.
|
|
4078
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4079
|
-
"@typescript-eslint/utils": "8.
|
|
4171
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4172
|
+
"@typescript-eslint/typescript-estree": "8.55.0",
|
|
4173
|
+
"@typescript-eslint/utils": "8.55.0",
|
|
4080
4174
|
"debug": "^4.4.3",
|
|
4081
4175
|
"ts-api-utils": "^2.4.0"
|
|
4082
4176
|
},
|
|
@@ -4093,8 +4187,8 @@
|
|
|
4093
4187
|
}
|
|
4094
4188
|
},
|
|
4095
4189
|
"node_modules/@typescript-eslint/types": {
|
|
4096
|
-
"version": "8.
|
|
4097
|
-
"integrity": "sha512-
|
|
4190
|
+
"version": "8.55.0",
|
|
4191
|
+
"integrity": "sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==",
|
|
4098
4192
|
"dev": true,
|
|
4099
4193
|
"license": "MIT",
|
|
4100
4194
|
"engines": {
|
|
@@ -4106,15 +4200,15 @@
|
|
|
4106
4200
|
}
|
|
4107
4201
|
},
|
|
4108
4202
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4109
|
-
"version": "8.
|
|
4110
|
-
"integrity": "sha512-
|
|
4203
|
+
"version": "8.55.0",
|
|
4204
|
+
"integrity": "sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==",
|
|
4111
4205
|
"dev": true,
|
|
4112
4206
|
"license": "MIT",
|
|
4113
4207
|
"dependencies": {
|
|
4114
|
-
"@typescript-eslint/project-service": "8.
|
|
4115
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4116
|
-
"@typescript-eslint/types": "8.
|
|
4117
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4208
|
+
"@typescript-eslint/project-service": "8.55.0",
|
|
4209
|
+
"@typescript-eslint/tsconfig-utils": "8.55.0",
|
|
4210
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4211
|
+
"@typescript-eslint/visitor-keys": "8.55.0",
|
|
4118
4212
|
"debug": "^4.4.3",
|
|
4119
4213
|
"minimatch": "^9.0.5",
|
|
4120
4214
|
"semver": "^7.7.3",
|
|
@@ -4169,15 +4263,15 @@
|
|
|
4169
4263
|
}
|
|
4170
4264
|
},
|
|
4171
4265
|
"node_modules/@typescript-eslint/utils": {
|
|
4172
|
-
"version": "8.
|
|
4173
|
-
"integrity": "sha512-
|
|
4266
|
+
"version": "8.55.0",
|
|
4267
|
+
"integrity": "sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==",
|
|
4174
4268
|
"dev": true,
|
|
4175
4269
|
"license": "MIT",
|
|
4176
4270
|
"dependencies": {
|
|
4177
4271
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4178
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4179
|
-
"@typescript-eslint/types": "8.
|
|
4180
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4272
|
+
"@typescript-eslint/scope-manager": "8.55.0",
|
|
4273
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4274
|
+
"@typescript-eslint/typescript-estree": "8.55.0"
|
|
4181
4275
|
},
|
|
4182
4276
|
"engines": {
|
|
4183
4277
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4192,12 +4286,12 @@
|
|
|
4192
4286
|
}
|
|
4193
4287
|
},
|
|
4194
4288
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4195
|
-
"version": "8.
|
|
4196
|
-
"integrity": "sha512-
|
|
4289
|
+
"version": "8.55.0",
|
|
4290
|
+
"integrity": "sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==",
|
|
4197
4291
|
"dev": true,
|
|
4198
4292
|
"license": "MIT",
|
|
4199
4293
|
"dependencies": {
|
|
4200
|
-
"@typescript-eslint/types": "8.
|
|
4294
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4201
4295
|
"eslint-visitor-keys": "^4.2.1"
|
|
4202
4296
|
},
|
|
4203
4297
|
"engines": {
|
|
@@ -4459,8 +4553,8 @@
|
|
|
4459
4553
|
]
|
|
4460
4554
|
},
|
|
4461
4555
|
"node_modules/@wavemaker/variables": {
|
|
4462
|
-
"version": "11.
|
|
4463
|
-
"integrity": "sha512-
|
|
4556
|
+
"version": "11.15.0-1.246",
|
|
4557
|
+
"integrity": "sha512-yBVXZv+uaKoibeN1+VH4LQ6qk0bQjoViJMsebehxCyI/jpFGfARB+POI/0DT1TxTLCPEigPnPbchgeXC3KpObA==",
|
|
4464
4558
|
"dev": true,
|
|
4465
4559
|
"license": "ISC",
|
|
4466
4560
|
"dependencies": {
|
|
@@ -4783,12 +4877,12 @@
|
|
|
4783
4877
|
}
|
|
4784
4878
|
},
|
|
4785
4879
|
"node_modules/axios": {
|
|
4786
|
-
"version": "1.13.
|
|
4787
|
-
"integrity": "sha512-
|
|
4880
|
+
"version": "1.13.5",
|
|
4881
|
+
"integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==",
|
|
4788
4882
|
"license": "MIT",
|
|
4789
4883
|
"dependencies": {
|
|
4790
|
-
"follow-redirects": "^1.15.
|
|
4791
|
-
"form-data": "^4.0.
|
|
4884
|
+
"follow-redirects": "^1.15.11",
|
|
4885
|
+
"form-data": "^4.0.5",
|
|
4792
4886
|
"proxy-from-env": "^1.1.0"
|
|
4793
4887
|
}
|
|
4794
4888
|
},
|
|
@@ -4925,7 +5019,6 @@
|
|
|
4925
5019
|
"node_modules/baseline-browser-mapping": {
|
|
4926
5020
|
"version": "2.9.19",
|
|
4927
5021
|
"integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
|
|
4928
|
-
"dev": true,
|
|
4929
5022
|
"license": "Apache-2.0",
|
|
4930
5023
|
"bin": {
|
|
4931
5024
|
"baseline-browser-mapping": "dist/cli.js"
|
|
@@ -4998,16 +5091,6 @@
|
|
|
4998
5091
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
4999
5092
|
}
|
|
5000
5093
|
},
|
|
5001
|
-
"node_modules/busboy": {
|
|
5002
|
-
"version": "1.6.0",
|
|
5003
|
-
"integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
|
|
5004
|
-
"dependencies": {
|
|
5005
|
-
"streamsearch": "^1.1.0"
|
|
5006
|
-
},
|
|
5007
|
-
"engines": {
|
|
5008
|
-
"node": ">=10.16.0"
|
|
5009
|
-
}
|
|
5010
|
-
},
|
|
5011
5094
|
"node_modules/call-bind": {
|
|
5012
5095
|
"version": "1.0.8",
|
|
5013
5096
|
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
|
|
@@ -5201,23 +5284,10 @@
|
|
|
5201
5284
|
"node": ">=6"
|
|
5202
5285
|
}
|
|
5203
5286
|
},
|
|
5204
|
-
"node_modules/color": {
|
|
5205
|
-
"version": "4.2.3",
|
|
5206
|
-
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
5207
|
-
"license": "MIT",
|
|
5208
|
-
"optional": true,
|
|
5209
|
-
"dependencies": {
|
|
5210
|
-
"color-convert": "^2.0.1",
|
|
5211
|
-
"color-string": "^1.9.0"
|
|
5212
|
-
},
|
|
5213
|
-
"engines": {
|
|
5214
|
-
"node": ">=12.5.0"
|
|
5215
|
-
}
|
|
5216
|
-
},
|
|
5217
5287
|
"node_modules/color-convert": {
|
|
5218
5288
|
"version": "2.0.1",
|
|
5219
5289
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5220
|
-
"
|
|
5290
|
+
"dev": true,
|
|
5221
5291
|
"license": "MIT",
|
|
5222
5292
|
"dependencies": {
|
|
5223
5293
|
"color-name": "~1.1.4"
|
|
@@ -5229,19 +5299,9 @@
|
|
|
5229
5299
|
"node_modules/color-name": {
|
|
5230
5300
|
"version": "1.1.4",
|
|
5231
5301
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
5232
|
-
"
|
|
5302
|
+
"dev": true,
|
|
5233
5303
|
"license": "MIT"
|
|
5234
5304
|
},
|
|
5235
|
-
"node_modules/color-string": {
|
|
5236
|
-
"version": "1.9.1",
|
|
5237
|
-
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
|
5238
|
-
"license": "MIT",
|
|
5239
|
-
"optional": true,
|
|
5240
|
-
"dependencies": {
|
|
5241
|
-
"color-name": "^1.0.0",
|
|
5242
|
-
"simple-swizzle": "^0.2.2"
|
|
5243
|
-
}
|
|
5244
|
-
},
|
|
5245
5305
|
"node_modules/colorette": {
|
|
5246
5306
|
"version": "2.0.20",
|
|
5247
5307
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -7420,8 +7480,8 @@
|
|
|
7420
7480
|
}
|
|
7421
7481
|
},
|
|
7422
7482
|
"node_modules/jodit": {
|
|
7423
|
-
"version": "4.9.
|
|
7424
|
-
"integrity": "sha512-
|
|
7483
|
+
"version": "4.9.6",
|
|
7484
|
+
"integrity": "sha512-2hxjDn5c2p2H//4sbgl9S7zAid1mUXkDXC3aU+HhmsvgABtc+VKuuYFghVGsx/MblNf9zE7waCh6Wyc64zud0Q==",
|
|
7425
7485
|
"license": "MIT"
|
|
7426
7486
|
},
|
|
7427
7487
|
"node_modules/jodit-react": {
|
|
@@ -7905,15 +7965,13 @@
|
|
|
7905
7965
|
"license": "MIT"
|
|
7906
7966
|
},
|
|
7907
7967
|
"node_modules/next": {
|
|
7908
|
-
"version": "
|
|
7909
|
-
"integrity": "sha512-
|
|
7910
|
-
"deprecated": "This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/CVE-2025-66478 for more details.",
|
|
7968
|
+
"version": "16.1.1",
|
|
7969
|
+
"integrity": "sha512-QI+T7xrxt1pF6SQ/JYFz95ro/mg/1Znk5vBebsWwbpejj1T0A23hO7GYEaVac9QUOT2BIMiuzm0L99ooq7k0/w==",
|
|
7911
7970
|
"license": "MIT",
|
|
7912
7971
|
"dependencies": {
|
|
7913
|
-
"@next/env": "
|
|
7914
|
-
"@swc/counter": "0.1.3",
|
|
7972
|
+
"@next/env": "16.1.1",
|
|
7915
7973
|
"@swc/helpers": "0.5.15",
|
|
7916
|
-
"
|
|
7974
|
+
"baseline-browser-mapping": "^2.8.3",
|
|
7917
7975
|
"caniuse-lite": "^1.0.30001579",
|
|
7918
7976
|
"postcss": "8.4.31",
|
|
7919
7977
|
"styled-jsx": "5.1.6"
|
|
@@ -7922,22 +7980,22 @@
|
|
|
7922
7980
|
"next": "dist/bin/next"
|
|
7923
7981
|
},
|
|
7924
7982
|
"engines": {
|
|
7925
|
-
"node": "
|
|
7983
|
+
"node": ">=20.9.0"
|
|
7926
7984
|
},
|
|
7927
7985
|
"optionalDependencies": {
|
|
7928
|
-
"@next/swc-darwin-arm64": "
|
|
7929
|
-
"@next/swc-darwin-x64": "
|
|
7930
|
-
"@next/swc-linux-arm64-gnu": "
|
|
7931
|
-
"@next/swc-linux-arm64-musl": "
|
|
7932
|
-
"@next/swc-linux-x64-gnu": "
|
|
7933
|
-
"@next/swc-linux-x64-musl": "
|
|
7934
|
-
"@next/swc-win32-arm64-msvc": "
|
|
7935
|
-
"@next/swc-win32-x64-msvc": "
|
|
7936
|
-
"sharp": "^0.
|
|
7986
|
+
"@next/swc-darwin-arm64": "16.1.1",
|
|
7987
|
+
"@next/swc-darwin-x64": "16.1.1",
|
|
7988
|
+
"@next/swc-linux-arm64-gnu": "16.1.1",
|
|
7989
|
+
"@next/swc-linux-arm64-musl": "16.1.1",
|
|
7990
|
+
"@next/swc-linux-x64-gnu": "16.1.1",
|
|
7991
|
+
"@next/swc-linux-x64-musl": "16.1.1",
|
|
7992
|
+
"@next/swc-win32-arm64-msvc": "16.1.1",
|
|
7993
|
+
"@next/swc-win32-x64-msvc": "16.1.1",
|
|
7994
|
+
"sharp": "^0.34.4"
|
|
7937
7995
|
},
|
|
7938
7996
|
"peerDependencies": {
|
|
7939
7997
|
"@opentelemetry/api": "^1.1.0",
|
|
7940
|
-
"@playwright/test": "^1.
|
|
7998
|
+
"@playwright/test": "^1.51.1",
|
|
7941
7999
|
"babel-plugin-react-compiler": "*",
|
|
7942
8000
|
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
7943
8001
|
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
@@ -9031,15 +9089,15 @@
|
|
|
9031
9089
|
}
|
|
9032
9090
|
},
|
|
9033
9091
|
"node_modules/sharp": {
|
|
9034
|
-
"version": "0.
|
|
9035
|
-
"integrity": "sha512-
|
|
9092
|
+
"version": "0.34.5",
|
|
9093
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
9036
9094
|
"hasInstallScript": true,
|
|
9037
9095
|
"license": "Apache-2.0",
|
|
9038
9096
|
"optional": true,
|
|
9039
9097
|
"dependencies": {
|
|
9040
|
-
"
|
|
9041
|
-
"detect-libc": "^2.
|
|
9042
|
-
"semver": "^7.
|
|
9098
|
+
"@img/colour": "^1.0.0",
|
|
9099
|
+
"detect-libc": "^2.1.2",
|
|
9100
|
+
"semver": "^7.7.3"
|
|
9043
9101
|
},
|
|
9044
9102
|
"engines": {
|
|
9045
9103
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -9048,25 +9106,30 @@
|
|
|
9048
9106
|
"url": "https://opencollective.com/libvips"
|
|
9049
9107
|
},
|
|
9050
9108
|
"optionalDependencies": {
|
|
9051
|
-
"@img/sharp-darwin-arm64": "0.
|
|
9052
|
-
"@img/sharp-darwin-x64": "0.
|
|
9053
|
-
"@img/sharp-libvips-darwin-arm64": "1.
|
|
9054
|
-
"@img/sharp-libvips-darwin-x64": "1.
|
|
9055
|
-
"@img/sharp-libvips-linux-arm": "1.
|
|
9056
|
-
"@img/sharp-libvips-linux-arm64": "1.
|
|
9057
|
-
"@img/sharp-libvips-linux-
|
|
9058
|
-
"@img/sharp-libvips-linux-
|
|
9059
|
-
"@img/sharp-libvips-
|
|
9060
|
-
"@img/sharp-libvips-
|
|
9061
|
-
"@img/sharp-
|
|
9062
|
-
"@img/sharp-
|
|
9063
|
-
"@img/sharp-linux-
|
|
9064
|
-
"@img/sharp-linux-
|
|
9065
|
-
"@img/sharp-
|
|
9066
|
-
"@img/sharp-
|
|
9067
|
-
"@img/sharp-
|
|
9068
|
-
"@img/sharp-
|
|
9069
|
-
"@img/sharp-
|
|
9109
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
9110
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
9111
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
9112
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
9113
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
9114
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
9115
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
9116
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
9117
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
9118
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
9119
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
9120
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
9121
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
9122
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
9123
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
9124
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
9125
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
9126
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
9127
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
9128
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
9129
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
9130
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
9131
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
9132
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
9070
9133
|
}
|
|
9071
9134
|
},
|
|
9072
9135
|
"node_modules/sharp/node_modules/semver": {
|
|
@@ -9183,21 +9246,6 @@
|
|
|
9183
9246
|
"url": "https://github.com/sponsors/isaacs"
|
|
9184
9247
|
}
|
|
9185
9248
|
},
|
|
9186
|
-
"node_modules/simple-swizzle": {
|
|
9187
|
-
"version": "0.2.4",
|
|
9188
|
-
"integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
|
|
9189
|
-
"license": "MIT",
|
|
9190
|
-
"optional": true,
|
|
9191
|
-
"dependencies": {
|
|
9192
|
-
"is-arrayish": "^0.3.1"
|
|
9193
|
-
}
|
|
9194
|
-
},
|
|
9195
|
-
"node_modules/simple-swizzle/node_modules/is-arrayish": {
|
|
9196
|
-
"version": "0.3.4",
|
|
9197
|
-
"integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
|
|
9198
|
-
"license": "MIT",
|
|
9199
|
-
"optional": true
|
|
9200
|
-
},
|
|
9201
9249
|
"node_modules/slash": {
|
|
9202
9250
|
"version": "2.0.0",
|
|
9203
9251
|
"integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
|
|
@@ -9268,13 +9316,6 @@
|
|
|
9268
9316
|
"node": ">= 0.4"
|
|
9269
9317
|
}
|
|
9270
9318
|
},
|
|
9271
|
-
"node_modules/streamsearch": {
|
|
9272
|
-
"version": "1.1.0",
|
|
9273
|
-
"integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
|
|
9274
|
-
"engines": {
|
|
9275
|
-
"node": ">=10.0.0"
|
|
9276
|
-
}
|
|
9277
|
-
},
|
|
9278
9319
|
"node_modules/string-argv": {
|
|
9279
9320
|
"version": "0.3.2",
|
|
9280
9321
|
"integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
|