@wavemaker/react-runtime 11.14.3-rc.6401 → 11.15.0-2.247
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 +423 -331
- 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-2.247",
|
|
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-2.247",
|
|
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-2.247",
|
|
63
63
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
64
64
|
"eslint": "^9",
|
|
65
65
|
"eslint-config-next": "15.1.4",
|
|
@@ -2032,19 +2032,19 @@
|
|
|
2032
2032
|
}
|
|
2033
2033
|
},
|
|
2034
2034
|
"node_modules/@eslint/eslintrc": {
|
|
2035
|
-
"version": "3.3.
|
|
2036
|
-
"integrity": "sha512-
|
|
2035
|
+
"version": "3.3.4",
|
|
2036
|
+
"integrity": "sha512-4h4MVF8pmBsncB60r0wSJiIeUKTSD4m7FmTFThG8RHlsg9ajqckLm9OraguFGZE4vVdpiI1Q4+hFnisopmG6gQ==",
|
|
2037
2037
|
"dev": true,
|
|
2038
2038
|
"license": "MIT",
|
|
2039
2039
|
"dependencies": {
|
|
2040
|
-
"ajv": "^6.
|
|
2040
|
+
"ajv": "^6.14.0",
|
|
2041
2041
|
"debug": "^4.3.2",
|
|
2042
2042
|
"espree": "^10.0.1",
|
|
2043
2043
|
"globals": "^14.0.0",
|
|
2044
2044
|
"ignore": "^5.2.0",
|
|
2045
2045
|
"import-fresh": "^3.2.1",
|
|
2046
2046
|
"js-yaml": "^4.1.1",
|
|
2047
|
-
"minimatch": "^3.1.
|
|
2047
|
+
"minimatch": "^3.1.3",
|
|
2048
2048
|
"strip-json-comments": "^3.1.1"
|
|
2049
2049
|
},
|
|
2050
2050
|
"engines": {
|
|
@@ -2055,8 +2055,8 @@
|
|
|
2055
2055
|
}
|
|
2056
2056
|
},
|
|
2057
2057
|
"node_modules/@eslint/js": {
|
|
2058
|
-
"version": "9.39.
|
|
2059
|
-
"integrity": "sha512-
|
|
2058
|
+
"version": "9.39.3",
|
|
2059
|
+
"integrity": "sha512-1B1VkCq6FuUNlQvlBYb+1jDu/gV297TIs/OeiaSR9l1H27SVW55ONE1e1Vp16NqP683+xEGzxYtv4XCiDPaQiw==",
|
|
2060
2060
|
"dev": true,
|
|
2061
2061
|
"license": "MIT",
|
|
2062
2062
|
"engines": {
|
|
@@ -2106,8 +2106,8 @@
|
|
|
2106
2106
|
}
|
|
2107
2107
|
},
|
|
2108
2108
|
"node_modules/@floating-ui/react": {
|
|
2109
|
-
"version": "0.27.
|
|
2110
|
-
"integrity": "sha512-
|
|
2109
|
+
"version": "0.27.18",
|
|
2110
|
+
"integrity": "sha512-xJWJxvmy3a05j643gQt+pRbht5XnTlGpsEsAPnMi5F5YTOEEJymA90uZKBD8OvIv5XvZ1qi4GcccSlqT3Bq44Q==",
|
|
2111
2111
|
"license": "MIT",
|
|
2112
2112
|
"dependencies": {
|
|
2113
2113
|
"@floating-ui/react-dom": "^2.1.7",
|
|
@@ -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"
|
|
@@ -3137,8 +3236,8 @@
|
|
|
3137
3236
|
}
|
|
3138
3237
|
},
|
|
3139
3238
|
"node_modules/@mui/x-date-pickers": {
|
|
3140
|
-
"version": "8.27.
|
|
3141
|
-
"integrity": "sha512-
|
|
3239
|
+
"version": "8.27.2",
|
|
3240
|
+
"integrity": "sha512-06LFkHFRXJ2O9DMXtWAA3kY0jpbL7XH8iqa8L5cBlN+8bRx/UVLKlZYlhGv06C88jF9kuZWY1bUgrv/EoY/2Ww==",
|
|
3142
3241
|
"license": "MIT",
|
|
3143
3242
|
"dependencies": {
|
|
3144
3243
|
"@babel/runtime": "^7.28.4",
|
|
@@ -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
|
],
|
|
@@ -3699,8 +3798,8 @@
|
|
|
3699
3798
|
"license": "MIT"
|
|
3700
3799
|
},
|
|
3701
3800
|
"node_modules/@rushstack/eslint-patch": {
|
|
3702
|
-
"version": "1.
|
|
3703
|
-
"integrity": "sha512-
|
|
3801
|
+
"version": "1.16.1",
|
|
3802
|
+
"integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==",
|
|
3704
3803
|
"dev": true,
|
|
3705
3804
|
"license": "MIT"
|
|
3706
3805
|
},
|
|
@@ -3730,14 +3829,9 @@
|
|
|
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
|
-
"version": "0.5.
|
|
3740
|
-
"integrity": "sha512-
|
|
3833
|
+
"version": "0.5.19",
|
|
3834
|
+
"integrity": "sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==",
|
|
3741
3835
|
"license": "Apache-2.0",
|
|
3742
3836
|
"dependencies": {
|
|
3743
3837
|
"tslib": "^2.8.0"
|
|
@@ -3863,8 +3957,8 @@
|
|
|
3863
3957
|
"license": "MIT"
|
|
3864
3958
|
},
|
|
3865
3959
|
"node_modules/@types/lodash": {
|
|
3866
|
-
"version": "4.17.
|
|
3867
|
-
"integrity": "sha512-
|
|
3960
|
+
"version": "4.17.24",
|
|
3961
|
+
"integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
|
|
3868
3962
|
"dev": true,
|
|
3869
3963
|
"license": "MIT"
|
|
3870
3964
|
},
|
|
@@ -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.35",
|
|
3976
|
+
"integrity": "sha512-Uarfe6J91b9HAUXxjvSOdiO2UPOKLm07Q1oh0JHxoZ1y8HoqxDAu3gVrsrOHeiio0kSsoVBt4wFrKOm0dKxVPQ==",
|
|
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.56.1",
|
|
4052
|
+
"integrity": "sha512-Jz9ZztpB37dNC+HU2HI28Bs9QXpzCz+y/twHOwhyrIRdbuVDxSytJNDl6z/aAKlaRIwC7y8wJdkBv7FxYGgi0A==",
|
|
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.56.1",
|
|
4058
|
+
"@typescript-eslint/type-utils": "8.56.1",
|
|
4059
|
+
"@typescript-eslint/utils": "8.56.1",
|
|
4060
|
+
"@typescript-eslint/visitor-keys": "8.56.1",
|
|
3967
4061
|
"ignore": "^7.0.5",
|
|
3968
4062
|
"natural-compare": "^1.4.0",
|
|
3969
4063
|
"ts-api-utils": "^2.4.0"
|
|
@@ -3976,8 +4070,8 @@
|
|
|
3976
4070
|
"url": "https://opencollective.com/typescript-eslint"
|
|
3977
4071
|
},
|
|
3978
4072
|
"peerDependencies": {
|
|
3979
|
-
"@typescript-eslint/parser": "^8.
|
|
3980
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4073
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
4074
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
3981
4075
|
"typescript": ">=4.8.4 <6.0.0"
|
|
3982
4076
|
}
|
|
3983
4077
|
},
|
|
@@ -3991,15 +4085,15 @@
|
|
|
3991
4085
|
}
|
|
3992
4086
|
},
|
|
3993
4087
|
"node_modules/@typescript-eslint/parser": {
|
|
3994
|
-
"version": "8.
|
|
3995
|
-
"integrity": "sha512-
|
|
4088
|
+
"version": "8.56.1",
|
|
4089
|
+
"integrity": "sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==",
|
|
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.56.1",
|
|
4094
|
+
"@typescript-eslint/types": "8.56.1",
|
|
4095
|
+
"@typescript-eslint/typescript-estree": "8.56.1",
|
|
4096
|
+
"@typescript-eslint/visitor-keys": "8.56.1",
|
|
4003
4097
|
"debug": "^4.4.3"
|
|
4004
4098
|
},
|
|
4005
4099
|
"engines": {
|
|
@@ -4010,18 +4104,18 @@
|
|
|
4010
4104
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4011
4105
|
},
|
|
4012
4106
|
"peerDependencies": {
|
|
4013
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4107
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4014
4108
|
"typescript": ">=4.8.4 <6.0.0"
|
|
4015
4109
|
}
|
|
4016
4110
|
},
|
|
4017
4111
|
"node_modules/@typescript-eslint/project-service": {
|
|
4018
|
-
"version": "8.
|
|
4019
|
-
"integrity": "sha512-
|
|
4112
|
+
"version": "8.56.1",
|
|
4113
|
+
"integrity": "sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==",
|
|
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.56.1",
|
|
4118
|
+
"@typescript-eslint/types": "^8.56.1",
|
|
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.56.1",
|
|
4134
|
+
"integrity": "sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==",
|
|
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.56.1",
|
|
4139
|
+
"@typescript-eslint/visitor-keys": "8.56.1"
|
|
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.56.1",
|
|
4151
|
+
"integrity": "sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==",
|
|
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.56.1",
|
|
4167
|
+
"integrity": "sha512-yB/7dxi7MgTtGhZdaHCemf7PuwrHMenHjmzgUW1aJpO+bBU43OycnM3Wn+DdvDO/8zzA9HlhaJ0AUGuvri4oGg==",
|
|
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.56.1",
|
|
4172
|
+
"@typescript-eslint/typescript-estree": "8.56.1",
|
|
4173
|
+
"@typescript-eslint/utils": "8.56.1",
|
|
4080
4174
|
"debug": "^4.4.3",
|
|
4081
4175
|
"ts-api-utils": "^2.4.0"
|
|
4082
4176
|
},
|
|
@@ -4088,13 +4182,13 @@
|
|
|
4088
4182
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4089
4183
|
},
|
|
4090
4184
|
"peerDependencies": {
|
|
4091
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4185
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4092
4186
|
"typescript": ">=4.8.4 <6.0.0"
|
|
4093
4187
|
}
|
|
4094
4188
|
},
|
|
4095
4189
|
"node_modules/@typescript-eslint/types": {
|
|
4096
|
-
"version": "8.
|
|
4097
|
-
"integrity": "sha512-
|
|
4190
|
+
"version": "8.56.1",
|
|
4191
|
+
"integrity": "sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==",
|
|
4098
4192
|
"dev": true,
|
|
4099
4193
|
"license": "MIT",
|
|
4100
4194
|
"engines": {
|
|
@@ -4106,17 +4200,17 @@
|
|
|
4106
4200
|
}
|
|
4107
4201
|
},
|
|
4108
4202
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4109
|
-
"version": "8.
|
|
4110
|
-
"integrity": "sha512-
|
|
4203
|
+
"version": "8.56.1",
|
|
4204
|
+
"integrity": "sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==",
|
|
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.56.1",
|
|
4209
|
+
"@typescript-eslint/tsconfig-utils": "8.56.1",
|
|
4210
|
+
"@typescript-eslint/types": "8.56.1",
|
|
4211
|
+
"@typescript-eslint/visitor-keys": "8.56.1",
|
|
4118
4212
|
"debug": "^4.4.3",
|
|
4119
|
-
"minimatch": "^
|
|
4213
|
+
"minimatch": "^10.2.2",
|
|
4120
4214
|
"semver": "^7.7.3",
|
|
4121
4215
|
"tinyglobby": "^0.2.15",
|
|
4122
4216
|
"ts-api-utils": "^2.4.0"
|
|
@@ -4132,25 +4226,37 @@
|
|
|
4132
4226
|
"typescript": ">=4.8.4 <6.0.0"
|
|
4133
4227
|
}
|
|
4134
4228
|
},
|
|
4229
|
+
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
|
4230
|
+
"version": "4.0.4",
|
|
4231
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
4232
|
+
"dev": true,
|
|
4233
|
+
"license": "MIT",
|
|
4234
|
+
"engines": {
|
|
4235
|
+
"node": "18 || 20 || >=22"
|
|
4236
|
+
}
|
|
4237
|
+
},
|
|
4135
4238
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4136
|
-
"version": "
|
|
4137
|
-
"integrity": "sha512-
|
|
4239
|
+
"version": "5.0.4",
|
|
4240
|
+
"integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
|
|
4138
4241
|
"dev": true,
|
|
4139
4242
|
"license": "MIT",
|
|
4140
4243
|
"dependencies": {
|
|
4141
|
-
"balanced-match": "^
|
|
4244
|
+
"balanced-match": "^4.0.2"
|
|
4245
|
+
},
|
|
4246
|
+
"engines": {
|
|
4247
|
+
"node": "18 || 20 || >=22"
|
|
4142
4248
|
}
|
|
4143
4249
|
},
|
|
4144
4250
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
4145
|
-
"version": "
|
|
4146
|
-
"integrity": "sha512-
|
|
4251
|
+
"version": "10.2.4",
|
|
4252
|
+
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
|
4147
4253
|
"dev": true,
|
|
4148
|
-
"license": "
|
|
4254
|
+
"license": "BlueOak-1.0.0",
|
|
4149
4255
|
"dependencies": {
|
|
4150
|
-
"brace-expansion": "^
|
|
4256
|
+
"brace-expansion": "^5.0.2"
|
|
4151
4257
|
},
|
|
4152
4258
|
"engines": {
|
|
4153
|
-
"node": "
|
|
4259
|
+
"node": "18 || 20 || >=22"
|
|
4154
4260
|
},
|
|
4155
4261
|
"funding": {
|
|
4156
4262
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -4169,15 +4275,15 @@
|
|
|
4169
4275
|
}
|
|
4170
4276
|
},
|
|
4171
4277
|
"node_modules/@typescript-eslint/utils": {
|
|
4172
|
-
"version": "8.
|
|
4173
|
-
"integrity": "sha512-
|
|
4278
|
+
"version": "8.56.1",
|
|
4279
|
+
"integrity": "sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==",
|
|
4174
4280
|
"dev": true,
|
|
4175
4281
|
"license": "MIT",
|
|
4176
4282
|
"dependencies": {
|
|
4177
4283
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4178
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4179
|
-
"@typescript-eslint/types": "8.
|
|
4180
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4284
|
+
"@typescript-eslint/scope-manager": "8.56.1",
|
|
4285
|
+
"@typescript-eslint/types": "8.56.1",
|
|
4286
|
+
"@typescript-eslint/typescript-estree": "8.56.1"
|
|
4181
4287
|
},
|
|
4182
4288
|
"engines": {
|
|
4183
4289
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4187,18 +4293,18 @@
|
|
|
4187
4293
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4188
4294
|
},
|
|
4189
4295
|
"peerDependencies": {
|
|
4190
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4296
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4191
4297
|
"typescript": ">=4.8.4 <6.0.0"
|
|
4192
4298
|
}
|
|
4193
4299
|
},
|
|
4194
4300
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4195
|
-
"version": "8.
|
|
4196
|
-
"integrity": "sha512-
|
|
4301
|
+
"version": "8.56.1",
|
|
4302
|
+
"integrity": "sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==",
|
|
4197
4303
|
"dev": true,
|
|
4198
4304
|
"license": "MIT",
|
|
4199
4305
|
"dependencies": {
|
|
4200
|
-
"@typescript-eslint/types": "8.
|
|
4201
|
-
"eslint-visitor-keys": "^
|
|
4306
|
+
"@typescript-eslint/types": "8.56.1",
|
|
4307
|
+
"eslint-visitor-keys": "^5.0.0"
|
|
4202
4308
|
},
|
|
4203
4309
|
"engines": {
|
|
4204
4310
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4208,6 +4314,18 @@
|
|
|
4208
4314
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4209
4315
|
}
|
|
4210
4316
|
},
|
|
4317
|
+
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
4318
|
+
"version": "5.0.1",
|
|
4319
|
+
"integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
|
|
4320
|
+
"dev": true,
|
|
4321
|
+
"license": "Apache-2.0",
|
|
4322
|
+
"engines": {
|
|
4323
|
+
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
4324
|
+
},
|
|
4325
|
+
"funding": {
|
|
4326
|
+
"url": "https://opencollective.com/eslint"
|
|
4327
|
+
}
|
|
4328
|
+
},
|
|
4211
4329
|
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
4212
4330
|
"version": "1.11.1",
|
|
4213
4331
|
"integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==",
|
|
@@ -4459,8 +4577,8 @@
|
|
|
4459
4577
|
]
|
|
4460
4578
|
},
|
|
4461
4579
|
"node_modules/@wavemaker/variables": {
|
|
4462
|
-
"version": "11.
|
|
4463
|
-
"integrity": "sha512-
|
|
4580
|
+
"version": "11.15.0-2.247",
|
|
4581
|
+
"integrity": "sha512-9Q2noAVP/sZRVqFtgMrnwiTI3dRS/BWaTTTF79aoe4DrYMhtdQFsE9XjTcGPh4vTF5zEm3981iQ2eDJYEEMCQg==",
|
|
4464
4582
|
"dev": true,
|
|
4465
4583
|
"license": "ISC",
|
|
4466
4584
|
"dependencies": {
|
|
@@ -4481,8 +4599,8 @@
|
|
|
4481
4599
|
}
|
|
4482
4600
|
},
|
|
4483
4601
|
"node_modules/acorn": {
|
|
4484
|
-
"version": "8.
|
|
4485
|
-
"integrity": "sha512-
|
|
4602
|
+
"version": "8.16.0",
|
|
4603
|
+
"integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
|
|
4486
4604
|
"dev": true,
|
|
4487
4605
|
"license": "MIT",
|
|
4488
4606
|
"bin": {
|
|
@@ -4502,8 +4620,8 @@
|
|
|
4502
4620
|
}
|
|
4503
4621
|
},
|
|
4504
4622
|
"node_modules/ajv": {
|
|
4505
|
-
"version": "6.
|
|
4506
|
-
"integrity": "sha512-
|
|
4623
|
+
"version": "6.14.0",
|
|
4624
|
+
"integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
|
|
4507
4625
|
"dev": true,
|
|
4508
4626
|
"license": "MIT",
|
|
4509
4627
|
"dependencies": {
|
|
@@ -4783,12 +4901,12 @@
|
|
|
4783
4901
|
}
|
|
4784
4902
|
},
|
|
4785
4903
|
"node_modules/axios": {
|
|
4786
|
-
"version": "1.13.
|
|
4787
|
-
"integrity": "sha512-
|
|
4904
|
+
"version": "1.13.5",
|
|
4905
|
+
"integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==",
|
|
4788
4906
|
"license": "MIT",
|
|
4789
4907
|
"dependencies": {
|
|
4790
|
-
"follow-redirects": "^1.15.
|
|
4791
|
-
"form-data": "^4.0.
|
|
4908
|
+
"follow-redirects": "^1.15.11",
|
|
4909
|
+
"form-data": "^4.0.5",
|
|
4792
4910
|
"proxy-from-env": "^1.1.0"
|
|
4793
4911
|
}
|
|
4794
4912
|
},
|
|
@@ -4857,8 +4975,8 @@
|
|
|
4857
4975
|
}
|
|
4858
4976
|
},
|
|
4859
4977
|
"node_modules/babel-plugin-module-resolver/node_modules/minimatch": {
|
|
4860
|
-
"version": "8.0.
|
|
4861
|
-
"integrity": "sha512-
|
|
4978
|
+
"version": "8.0.7",
|
|
4979
|
+
"integrity": "sha512-V+1uQNdzybxa14e/p00HZnQNNcTjnRJjDxg2V8wtkjFctq4M7hXFws4oekyTP0Jebeq7QYtpFyOeBAjc88zvYg==",
|
|
4862
4980
|
"dev": true,
|
|
4863
4981
|
"license": "ISC",
|
|
4864
4982
|
"dependencies": {
|
|
@@ -4923,12 +5041,14 @@
|
|
|
4923
5041
|
"license": "MIT"
|
|
4924
5042
|
},
|
|
4925
5043
|
"node_modules/baseline-browser-mapping": {
|
|
4926
|
-
"version": "2.
|
|
4927
|
-
"integrity": "sha512-
|
|
4928
|
-
"dev": true,
|
|
5044
|
+
"version": "2.10.0",
|
|
5045
|
+
"integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
|
|
4929
5046
|
"license": "Apache-2.0",
|
|
4930
5047
|
"bin": {
|
|
4931
|
-
"baseline-browser-mapping": "dist/cli.
|
|
5048
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
5049
|
+
},
|
|
5050
|
+
"engines": {
|
|
5051
|
+
"node": ">=6.0.0"
|
|
4932
5052
|
}
|
|
4933
5053
|
},
|
|
4934
5054
|
"node_modules/binary-extensions": {
|
|
@@ -4998,16 +5118,6 @@
|
|
|
4998
5118
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
4999
5119
|
}
|
|
5000
5120
|
},
|
|
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
5121
|
"node_modules/call-bind": {
|
|
5012
5122
|
"version": "1.0.8",
|
|
5013
5123
|
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
|
|
@@ -5063,8 +5173,8 @@
|
|
|
5063
5173
|
}
|
|
5064
5174
|
},
|
|
5065
5175
|
"node_modules/caniuse-lite": {
|
|
5066
|
-
"version": "1.0.
|
|
5067
|
-
"integrity": "sha512-
|
|
5176
|
+
"version": "1.0.30001774",
|
|
5177
|
+
"integrity": "sha512-DDdwPGz99nmIEv216hKSgLD+D4ikHQHjBC/seF98N9CPqRX4M5mSxT9eTV6oyisnJcuzxtZy4n17yKKQYmYQOA==",
|
|
5068
5178
|
"funding": [
|
|
5069
5179
|
{
|
|
5070
5180
|
"type": "opencollective",
|
|
@@ -5201,23 +5311,10 @@
|
|
|
5201
5311
|
"node": ">=6"
|
|
5202
5312
|
}
|
|
5203
5313
|
},
|
|
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
5314
|
"node_modules/color-convert": {
|
|
5218
5315
|
"version": "2.0.1",
|
|
5219
5316
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5220
|
-
"
|
|
5317
|
+
"dev": true,
|
|
5221
5318
|
"license": "MIT",
|
|
5222
5319
|
"dependencies": {
|
|
5223
5320
|
"color-name": "~1.1.4"
|
|
@@ -5229,19 +5326,9 @@
|
|
|
5229
5326
|
"node_modules/color-name": {
|
|
5230
5327
|
"version": "1.1.4",
|
|
5231
5328
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
5232
|
-
"
|
|
5329
|
+
"dev": true,
|
|
5233
5330
|
"license": "MIT"
|
|
5234
5331
|
},
|
|
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
5332
|
"node_modules/colorette": {
|
|
5246
5333
|
"version": "2.0.20",
|
|
5247
5334
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -5618,8 +5705,8 @@
|
|
|
5618
5705
|
}
|
|
5619
5706
|
},
|
|
5620
5707
|
"node_modules/electron-to-chromium": {
|
|
5621
|
-
"version": "1.5.
|
|
5622
|
-
"integrity": "sha512-
|
|
5708
|
+
"version": "1.5.302",
|
|
5709
|
+
"integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==",
|
|
5623
5710
|
"dev": true,
|
|
5624
5711
|
"license": "ISC"
|
|
5625
5712
|
},
|
|
@@ -5843,8 +5930,8 @@
|
|
|
5843
5930
|
}
|
|
5844
5931
|
},
|
|
5845
5932
|
"node_modules/eslint": {
|
|
5846
|
-
"version": "9.39.
|
|
5847
|
-
"integrity": "sha512-
|
|
5933
|
+
"version": "9.39.3",
|
|
5934
|
+
"integrity": "sha512-VmQ+sifHUbI/IcSopBCF/HO3YiHQx/AVd3UVyYL6weuwW+HvON9VYn5l6Zl1WZzPWXPNZrSQpxwkkZ/VuvJZzg==",
|
|
5848
5935
|
"dev": true,
|
|
5849
5936
|
"license": "MIT",
|
|
5850
5937
|
"dependencies": {
|
|
@@ -5854,7 +5941,7 @@
|
|
|
5854
5941
|
"@eslint/config-helpers": "^0.4.2",
|
|
5855
5942
|
"@eslint/core": "^0.17.0",
|
|
5856
5943
|
"@eslint/eslintrc": "^3.3.1",
|
|
5857
|
-
"@eslint/js": "9.39.
|
|
5944
|
+
"@eslint/js": "9.39.3",
|
|
5858
5945
|
"@eslint/plugin-kit": "^0.4.1",
|
|
5859
5946
|
"@humanfs/node": "^0.16.6",
|
|
5860
5947
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -6124,18 +6211,24 @@
|
|
|
6124
6211
|
}
|
|
6125
6212
|
},
|
|
6126
6213
|
"node_modules/eslint-plugin-react/node_modules/resolve": {
|
|
6127
|
-
"version": "2.0.0-next.
|
|
6128
|
-
"integrity": "sha512-
|
|
6214
|
+
"version": "2.0.0-next.6",
|
|
6215
|
+
"integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==",
|
|
6129
6216
|
"dev": true,
|
|
6130
6217
|
"license": "MIT",
|
|
6131
6218
|
"dependencies": {
|
|
6132
|
-
"
|
|
6219
|
+
"es-errors": "^1.3.0",
|
|
6220
|
+
"is-core-module": "^2.16.1",
|
|
6221
|
+
"node-exports-info": "^1.6.0",
|
|
6222
|
+
"object-keys": "^1.1.1",
|
|
6133
6223
|
"path-parse": "^1.0.7",
|
|
6134
6224
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
6135
6225
|
},
|
|
6136
6226
|
"bin": {
|
|
6137
6227
|
"resolve": "bin/resolve"
|
|
6138
6228
|
},
|
|
6229
|
+
"engines": {
|
|
6230
|
+
"node": ">= 0.4"
|
|
6231
|
+
},
|
|
6139
6232
|
"funding": {
|
|
6140
6233
|
"url": "https://github.com/sponsors/ljharb"
|
|
6141
6234
|
}
|
|
@@ -6553,8 +6646,8 @@
|
|
|
6553
6646
|
}
|
|
6554
6647
|
},
|
|
6555
6648
|
"node_modules/get-east-asian-width": {
|
|
6556
|
-
"version": "1.
|
|
6557
|
-
"integrity": "sha512-
|
|
6649
|
+
"version": "1.5.0",
|
|
6650
|
+
"integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==",
|
|
6558
6651
|
"license": "MIT",
|
|
6559
6652
|
"engines": {
|
|
6560
6653
|
"node": ">=18"
|
|
@@ -7420,8 +7513,8 @@
|
|
|
7420
7513
|
}
|
|
7421
7514
|
},
|
|
7422
7515
|
"node_modules/jodit": {
|
|
7423
|
-
"version": "4.9.
|
|
7424
|
-
"integrity": "sha512-
|
|
7516
|
+
"version": "4.9.14",
|
|
7517
|
+
"integrity": "sha512-fnQaBl4dqdLOl2OJshvkdi7/fz0DailBoLzqmRg10TR2iLkipjj3ldWRbQm+xYqnFKrJkTR466ilUxzN/QWa+w==",
|
|
7425
7518
|
"license": "MIT"
|
|
7426
7519
|
},
|
|
7427
7520
|
"node_modules/jodit-react": {
|
|
@@ -7802,8 +7895,8 @@
|
|
|
7802
7895
|
}
|
|
7803
7896
|
},
|
|
7804
7897
|
"node_modules/minimatch": {
|
|
7805
|
-
"version": "3.1.
|
|
7806
|
-
"integrity": "sha512-
|
|
7898
|
+
"version": "3.1.5",
|
|
7899
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
7807
7900
|
"dev": true,
|
|
7808
7901
|
"license": "ISC",
|
|
7809
7902
|
"dependencies": {
|
|
@@ -7905,15 +7998,13 @@
|
|
|
7905
7998
|
"license": "MIT"
|
|
7906
7999
|
},
|
|
7907
8000
|
"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.",
|
|
8001
|
+
"version": "16.1.1",
|
|
8002
|
+
"integrity": "sha512-QI+T7xrxt1pF6SQ/JYFz95ro/mg/1Znk5vBebsWwbpejj1T0A23hO7GYEaVac9QUOT2BIMiuzm0L99ooq7k0/w==",
|
|
7911
8003
|
"license": "MIT",
|
|
7912
8004
|
"dependencies": {
|
|
7913
|
-
"@next/env": "
|
|
7914
|
-
"@swc/counter": "0.1.3",
|
|
8005
|
+
"@next/env": "16.1.1",
|
|
7915
8006
|
"@swc/helpers": "0.5.15",
|
|
7916
|
-
"
|
|
8007
|
+
"baseline-browser-mapping": "^2.8.3",
|
|
7917
8008
|
"caniuse-lite": "^1.0.30001579",
|
|
7918
8009
|
"postcss": "8.4.31",
|
|
7919
8010
|
"styled-jsx": "5.1.6"
|
|
@@ -7922,22 +8013,22 @@
|
|
|
7922
8013
|
"next": "dist/bin/next"
|
|
7923
8014
|
},
|
|
7924
8015
|
"engines": {
|
|
7925
|
-
"node": "
|
|
8016
|
+
"node": ">=20.9.0"
|
|
7926
8017
|
},
|
|
7927
8018
|
"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.
|
|
8019
|
+
"@next/swc-darwin-arm64": "16.1.1",
|
|
8020
|
+
"@next/swc-darwin-x64": "16.1.1",
|
|
8021
|
+
"@next/swc-linux-arm64-gnu": "16.1.1",
|
|
8022
|
+
"@next/swc-linux-arm64-musl": "16.1.1",
|
|
8023
|
+
"@next/swc-linux-x64-gnu": "16.1.1",
|
|
8024
|
+
"@next/swc-linux-x64-musl": "16.1.1",
|
|
8025
|
+
"@next/swc-win32-arm64-msvc": "16.1.1",
|
|
8026
|
+
"@next/swc-win32-x64-msvc": "16.1.1",
|
|
8027
|
+
"sharp": "^0.34.4"
|
|
7937
8028
|
},
|
|
7938
8029
|
"peerDependencies": {
|
|
7939
8030
|
"@opentelemetry/api": "^1.1.0",
|
|
7940
|
-
"@playwright/test": "^1.
|
|
8031
|
+
"@playwright/test": "^1.51.1",
|
|
7941
8032
|
"babel-plugin-react-compiler": "*",
|
|
7942
8033
|
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
7943
8034
|
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
@@ -7966,6 +8057,24 @@
|
|
|
7966
8057
|
"tslib": "^2.8.0"
|
|
7967
8058
|
}
|
|
7968
8059
|
},
|
|
8060
|
+
"node_modules/node-exports-info": {
|
|
8061
|
+
"version": "1.6.0",
|
|
8062
|
+
"integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==",
|
|
8063
|
+
"dev": true,
|
|
8064
|
+
"license": "MIT",
|
|
8065
|
+
"dependencies": {
|
|
8066
|
+
"array.prototype.flatmap": "^1.3.3",
|
|
8067
|
+
"es-errors": "^1.3.0",
|
|
8068
|
+
"object.entries": "^1.1.9",
|
|
8069
|
+
"semver": "^6.3.1"
|
|
8070
|
+
},
|
|
8071
|
+
"engines": {
|
|
8072
|
+
"node": ">= 0.4"
|
|
8073
|
+
},
|
|
8074
|
+
"funding": {
|
|
8075
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
8076
|
+
}
|
|
8077
|
+
},
|
|
7969
8078
|
"node_modules/node-releases": {
|
|
7970
8079
|
"version": "2.0.27",
|
|
7971
8080
|
"integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
|
|
@@ -8311,10 +8420,10 @@
|
|
|
8311
8420
|
"license": "ISC"
|
|
8312
8421
|
},
|
|
8313
8422
|
"node_modules/path-scurry/node_modules/minipass": {
|
|
8314
|
-
"version": "7.1.
|
|
8315
|
-
"integrity": "sha512-
|
|
8423
|
+
"version": "7.1.3",
|
|
8424
|
+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
|
|
8316
8425
|
"dev": true,
|
|
8317
|
-
"license": "
|
|
8426
|
+
"license": "BlueOak-1.0.0",
|
|
8318
8427
|
"engines": {
|
|
8319
8428
|
"node": ">=16 || 14 >=14.17"
|
|
8320
8429
|
}
|
|
@@ -8610,8 +8719,8 @@
|
|
|
8610
8719
|
}
|
|
8611
8720
|
},
|
|
8612
8721
|
"node_modules/react-hook-form": {
|
|
8613
|
-
"version": "7.71.
|
|
8614
|
-
"integrity": "sha512-
|
|
8722
|
+
"version": "7.71.2",
|
|
8723
|
+
"integrity": "sha512-1CHvcDYzuRUNOflt4MOq3ZM46AronNJtQ1S7tnX6YN4y72qhgiUItpacZUAQ0TyWYci3yz1X+rXaSxiuEm86PA==",
|
|
8615
8724
|
"license": "MIT",
|
|
8616
8725
|
"engines": {
|
|
8617
8726
|
"node": ">=18.0.0"
|
|
@@ -9031,15 +9140,15 @@
|
|
|
9031
9140
|
}
|
|
9032
9141
|
},
|
|
9033
9142
|
"node_modules/sharp": {
|
|
9034
|
-
"version": "0.
|
|
9035
|
-
"integrity": "sha512-
|
|
9143
|
+
"version": "0.34.5",
|
|
9144
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
9036
9145
|
"hasInstallScript": true,
|
|
9037
9146
|
"license": "Apache-2.0",
|
|
9038
9147
|
"optional": true,
|
|
9039
9148
|
"dependencies": {
|
|
9040
|
-
"
|
|
9041
|
-
"detect-libc": "^2.
|
|
9042
|
-
"semver": "^7.
|
|
9149
|
+
"@img/colour": "^1.0.0",
|
|
9150
|
+
"detect-libc": "^2.1.2",
|
|
9151
|
+
"semver": "^7.7.3"
|
|
9043
9152
|
},
|
|
9044
9153
|
"engines": {
|
|
9045
9154
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -9048,25 +9157,30 @@
|
|
|
9048
9157
|
"url": "https://opencollective.com/libvips"
|
|
9049
9158
|
},
|
|
9050
9159
|
"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-
|
|
9160
|
+
"@img/sharp-darwin-arm64": "0.34.5",
|
|
9161
|
+
"@img/sharp-darwin-x64": "0.34.5",
|
|
9162
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4",
|
|
9163
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4",
|
|
9164
|
+
"@img/sharp-libvips-linux-arm": "1.2.4",
|
|
9165
|
+
"@img/sharp-libvips-linux-arm64": "1.2.4",
|
|
9166
|
+
"@img/sharp-libvips-linux-ppc64": "1.2.4",
|
|
9167
|
+
"@img/sharp-libvips-linux-riscv64": "1.2.4",
|
|
9168
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4",
|
|
9169
|
+
"@img/sharp-libvips-linux-x64": "1.2.4",
|
|
9170
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
|
|
9171
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4",
|
|
9172
|
+
"@img/sharp-linux-arm": "0.34.5",
|
|
9173
|
+
"@img/sharp-linux-arm64": "0.34.5",
|
|
9174
|
+
"@img/sharp-linux-ppc64": "0.34.5",
|
|
9175
|
+
"@img/sharp-linux-riscv64": "0.34.5",
|
|
9176
|
+
"@img/sharp-linux-s390x": "0.34.5",
|
|
9177
|
+
"@img/sharp-linux-x64": "0.34.5",
|
|
9178
|
+
"@img/sharp-linuxmusl-arm64": "0.34.5",
|
|
9179
|
+
"@img/sharp-linuxmusl-x64": "0.34.5",
|
|
9180
|
+
"@img/sharp-wasm32": "0.34.5",
|
|
9181
|
+
"@img/sharp-win32-arm64": "0.34.5",
|
|
9182
|
+
"@img/sharp-win32-ia32": "0.34.5",
|
|
9183
|
+
"@img/sharp-win32-x64": "0.34.5"
|
|
9070
9184
|
}
|
|
9071
9185
|
},
|
|
9072
9186
|
"node_modules/sharp/node_modules/semver": {
|
|
@@ -9183,21 +9297,6 @@
|
|
|
9183
9297
|
"url": "https://github.com/sponsors/isaacs"
|
|
9184
9298
|
}
|
|
9185
9299
|
},
|
|
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
9300
|
"node_modules/slash": {
|
|
9202
9301
|
"version": "2.0.0",
|
|
9203
9302
|
"integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
|
|
@@ -9268,13 +9367,6 @@
|
|
|
9268
9367
|
"node": ">= 0.4"
|
|
9269
9368
|
}
|
|
9270
9369
|
},
|
|
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
9370
|
"node_modules/string-argv": {
|
|
9279
9371
|
"version": "0.3.2",
|
|
9280
9372
|
"integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
|
|
@@ -9284,12 +9376,12 @@
|
|
|
9284
9376
|
}
|
|
9285
9377
|
},
|
|
9286
9378
|
"node_modules/string-width": {
|
|
9287
|
-
"version": "8.
|
|
9288
|
-
"integrity": "sha512-
|
|
9379
|
+
"version": "8.2.0",
|
|
9380
|
+
"integrity": "sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==",
|
|
9289
9381
|
"license": "MIT",
|
|
9290
9382
|
"dependencies": {
|
|
9291
|
-
"get-east-asian-width": "^1.
|
|
9292
|
-
"strip-ansi": "^7.1.
|
|
9383
|
+
"get-east-asian-width": "^1.5.0",
|
|
9384
|
+
"strip-ansi": "^7.1.2"
|
|
9293
9385
|
},
|
|
9294
9386
|
"engines": {
|
|
9295
9387
|
"node": ">=20"
|
|
@@ -9406,11 +9498,11 @@
|
|
|
9406
9498
|
}
|
|
9407
9499
|
},
|
|
9408
9500
|
"node_modules/strip-ansi": {
|
|
9409
|
-
"version": "7.
|
|
9410
|
-
"integrity": "sha512-
|
|
9501
|
+
"version": "7.2.0",
|
|
9502
|
+
"integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
|
|
9411
9503
|
"license": "MIT",
|
|
9412
9504
|
"dependencies": {
|
|
9413
|
-
"ansi-regex": "^6.
|
|
9505
|
+
"ansi-regex": "^6.2.2"
|
|
9414
9506
|
},
|
|
9415
9507
|
"engines": {
|
|
9416
9508
|
"node": ">=12"
|