@wavemaker/react-runtime 11.14.2-1.245 → 12.0.0-next.28533
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 +32 -10
- 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 +26 -9
- 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 +1 -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/tabs/index.js +92 -14
- package/components/container/tabs/tab-pane/index.js +15 -8
- 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 +991 -180
- 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 +54 -33
- 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 +23 -7
- 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 -51
- 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 +147 -70
- 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 +99 -26
- 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 +84 -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 +5 -0
- 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 +711 -669
- 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": "
|
|
3
|
+
"version": "12.0.0-next.28533",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/react-runtime",
|
|
9
|
-
"version": "
|
|
9
|
+
"version": "12.0.0-next.28533",
|
|
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": "
|
|
61
|
+
"@types/react-dom": "^19.2.3",
|
|
62
|
+
"@wavemaker/variables": "12.0.0-next.28533",
|
|
63
63
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
64
64
|
"eslint": "^9",
|
|
65
65
|
"eslint-config-next": "15.1.4",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"node_modules/@babel/cli": {
|
|
73
|
-
"version": "7.28.
|
|
74
|
-
"integrity": "sha512-
|
|
73
|
+
"version": "7.28.6",
|
|
74
|
+
"integrity": "sha512-6EUNcuBbNkj08Oj4gAZ+BUU8yLCgKzgVX4gaTh09Ya2C8ICM4P+G30g4m3akRxSYAp3A/gnWchrNst7px4/nUQ==",
|
|
75
75
|
"dev": true,
|
|
76
76
|
"license": "MIT",
|
|
77
77
|
"dependencies": {
|
|
@@ -99,11 +99,11 @@
|
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
101
|
"node_modules/@babel/code-frame": {
|
|
102
|
-
"version": "7.
|
|
103
|
-
"integrity": "sha512-
|
|
102
|
+
"version": "7.29.0",
|
|
103
|
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
|
|
104
104
|
"license": "MIT",
|
|
105
105
|
"dependencies": {
|
|
106
|
-
"@babel/helper-validator-identifier": "^7.
|
|
106
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
107
107
|
"js-tokens": "^4.0.0",
|
|
108
108
|
"picocolors": "^1.1.1"
|
|
109
109
|
},
|
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"node_modules/@babel/compat-data": {
|
|
115
|
-
"version": "7.
|
|
116
|
-
"integrity": "sha512-
|
|
115
|
+
"version": "7.29.0",
|
|
116
|
+
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
|
|
117
117
|
"dev": true,
|
|
118
118
|
"license": "MIT",
|
|
119
119
|
"engines": {
|
|
@@ -121,21 +121,21 @@
|
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"node_modules/@babel/core": {
|
|
124
|
-
"version": "7.
|
|
125
|
-
"integrity": "sha512-
|
|
124
|
+
"version": "7.29.0",
|
|
125
|
+
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
|
|
126
126
|
"dev": true,
|
|
127
127
|
"license": "MIT",
|
|
128
128
|
"peer": true,
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@babel/code-frame": "^7.
|
|
131
|
-
"@babel/generator": "^7.
|
|
132
|
-
"@babel/helper-compilation-targets": "^7.
|
|
133
|
-
"@babel/helper-module-transforms": "^7.28.
|
|
134
|
-
"@babel/helpers": "^7.28.
|
|
135
|
-
"@babel/parser": "^7.
|
|
136
|
-
"@babel/template": "^7.
|
|
137
|
-
"@babel/traverse": "^7.
|
|
138
|
-
"@babel/types": "^7.
|
|
130
|
+
"@babel/code-frame": "^7.29.0",
|
|
131
|
+
"@babel/generator": "^7.29.0",
|
|
132
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
133
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
134
|
+
"@babel/helpers": "^7.28.6",
|
|
135
|
+
"@babel/parser": "^7.29.0",
|
|
136
|
+
"@babel/template": "^7.28.6",
|
|
137
|
+
"@babel/traverse": "^7.29.0",
|
|
138
|
+
"@babel/types": "^7.29.0",
|
|
139
139
|
"@jridgewell/remapping": "^2.3.5",
|
|
140
140
|
"convert-source-map": "^2.0.0",
|
|
141
141
|
"debug": "^4.1.0",
|
|
@@ -152,12 +152,12 @@
|
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
154
|
"node_modules/@babel/generator": {
|
|
155
|
-
"version": "7.
|
|
156
|
-
"integrity": "sha512-
|
|
155
|
+
"version": "7.29.1",
|
|
156
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
157
157
|
"license": "MIT",
|
|
158
158
|
"dependencies": {
|
|
159
|
-
"@babel/parser": "^7.
|
|
160
|
-
"@babel/types": "^7.
|
|
159
|
+
"@babel/parser": "^7.29.0",
|
|
160
|
+
"@babel/types": "^7.29.0",
|
|
161
161
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
162
162
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
163
163
|
"jsesc": "^3.0.2"
|
|
@@ -179,12 +179,12 @@
|
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
181
|
"node_modules/@babel/helper-compilation-targets": {
|
|
182
|
-
"version": "7.
|
|
183
|
-
"integrity": "sha512-
|
|
182
|
+
"version": "7.28.6",
|
|
183
|
+
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
|
|
184
184
|
"dev": true,
|
|
185
185
|
"license": "MIT",
|
|
186
186
|
"dependencies": {
|
|
187
|
-
"@babel/compat-data": "^7.
|
|
187
|
+
"@babel/compat-data": "^7.28.6",
|
|
188
188
|
"@babel/helper-validator-option": "^7.27.1",
|
|
189
189
|
"browserslist": "^4.24.0",
|
|
190
190
|
"lru-cache": "^5.1.1",
|
|
@@ -195,17 +195,17 @@
|
|
|
195
195
|
}
|
|
196
196
|
},
|
|
197
197
|
"node_modules/@babel/helper-create-class-features-plugin": {
|
|
198
|
-
"version": "7.28.
|
|
199
|
-
"integrity": "sha512-
|
|
198
|
+
"version": "7.28.6",
|
|
199
|
+
"integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==",
|
|
200
200
|
"dev": true,
|
|
201
201
|
"license": "MIT",
|
|
202
202
|
"dependencies": {
|
|
203
203
|
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
204
204
|
"@babel/helper-member-expression-to-functions": "^7.28.5",
|
|
205
205
|
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
206
|
-
"@babel/helper-replace-supers": "^7.
|
|
206
|
+
"@babel/helper-replace-supers": "^7.28.6",
|
|
207
207
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
208
|
-
"@babel/traverse": "^7.28.
|
|
208
|
+
"@babel/traverse": "^7.28.6",
|
|
209
209
|
"semver": "^6.3.1"
|
|
210
210
|
},
|
|
211
211
|
"engines": {
|
|
@@ -233,16 +233,16 @@
|
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
235
|
"node_modules/@babel/helper-define-polyfill-provider": {
|
|
236
|
-
"version": "0.6.
|
|
237
|
-
"integrity": "sha512-
|
|
236
|
+
"version": "0.6.6",
|
|
237
|
+
"integrity": "sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==",
|
|
238
238
|
"dev": true,
|
|
239
239
|
"license": "MIT",
|
|
240
240
|
"dependencies": {
|
|
241
|
-
"@babel/helper-compilation-targets": "^7.
|
|
242
|
-
"@babel/helper-plugin-utils": "^7.
|
|
243
|
-
"debug": "^4.4.
|
|
241
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
242
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
243
|
+
"debug": "^4.4.3",
|
|
244
244
|
"lodash.debounce": "^4.0.8",
|
|
245
|
-
"resolve": "^1.22.
|
|
245
|
+
"resolve": "^1.22.11"
|
|
246
246
|
},
|
|
247
247
|
"peerDependencies": {
|
|
248
248
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
@@ -270,26 +270,26 @@
|
|
|
270
270
|
}
|
|
271
271
|
},
|
|
272
272
|
"node_modules/@babel/helper-module-imports": {
|
|
273
|
-
"version": "7.
|
|
274
|
-
"integrity": "sha512-
|
|
273
|
+
"version": "7.28.6",
|
|
274
|
+
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
|
|
275
275
|
"license": "MIT",
|
|
276
276
|
"dependencies": {
|
|
277
|
-
"@babel/traverse": "^7.
|
|
278
|
-
"@babel/types": "^7.
|
|
277
|
+
"@babel/traverse": "^7.28.6",
|
|
278
|
+
"@babel/types": "^7.28.6"
|
|
279
279
|
},
|
|
280
280
|
"engines": {
|
|
281
281
|
"node": ">=6.9.0"
|
|
282
282
|
}
|
|
283
283
|
},
|
|
284
284
|
"node_modules/@babel/helper-module-transforms": {
|
|
285
|
-
"version": "7.28.
|
|
286
|
-
"integrity": "sha512-
|
|
285
|
+
"version": "7.28.6",
|
|
286
|
+
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
|
|
287
287
|
"dev": true,
|
|
288
288
|
"license": "MIT",
|
|
289
289
|
"dependencies": {
|
|
290
|
-
"@babel/helper-module-imports": "^7.
|
|
291
|
-
"@babel/helper-validator-identifier": "^7.
|
|
292
|
-
"@babel/traverse": "^7.28.
|
|
290
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
291
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
292
|
+
"@babel/traverse": "^7.28.6"
|
|
293
293
|
},
|
|
294
294
|
"engines": {
|
|
295
295
|
"node": ">=6.9.0"
|
|
@@ -311,8 +311,8 @@
|
|
|
311
311
|
}
|
|
312
312
|
},
|
|
313
313
|
"node_modules/@babel/helper-plugin-utils": {
|
|
314
|
-
"version": "7.
|
|
315
|
-
"integrity": "sha512-
|
|
314
|
+
"version": "7.28.6",
|
|
315
|
+
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
|
|
316
316
|
"dev": true,
|
|
317
317
|
"license": "MIT",
|
|
318
318
|
"engines": {
|
|
@@ -337,14 +337,14 @@
|
|
|
337
337
|
}
|
|
338
338
|
},
|
|
339
339
|
"node_modules/@babel/helper-replace-supers": {
|
|
340
|
-
"version": "7.
|
|
341
|
-
"integrity": "sha512-
|
|
340
|
+
"version": "7.28.6",
|
|
341
|
+
"integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==",
|
|
342
342
|
"dev": true,
|
|
343
343
|
"license": "MIT",
|
|
344
344
|
"dependencies": {
|
|
345
|
-
"@babel/helper-member-expression-to-functions": "^7.
|
|
345
|
+
"@babel/helper-member-expression-to-functions": "^7.28.5",
|
|
346
346
|
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
347
|
-
"@babel/traverse": "^7.
|
|
347
|
+
"@babel/traverse": "^7.28.6"
|
|
348
348
|
},
|
|
349
349
|
"engines": {
|
|
350
350
|
"node": ">=6.9.0"
|
|
@@ -392,39 +392,39 @@
|
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
394
|
"node_modules/@babel/helper-wrap-function": {
|
|
395
|
-
"version": "7.28.
|
|
396
|
-
"integrity": "sha512-
|
|
395
|
+
"version": "7.28.6",
|
|
396
|
+
"integrity": "sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==",
|
|
397
397
|
"dev": true,
|
|
398
398
|
"license": "MIT",
|
|
399
399
|
"dependencies": {
|
|
400
|
-
"@babel/template": "^7.
|
|
401
|
-
"@babel/traverse": "^7.28.
|
|
402
|
-
"@babel/types": "^7.28.
|
|
400
|
+
"@babel/template": "^7.28.6",
|
|
401
|
+
"@babel/traverse": "^7.28.6",
|
|
402
|
+
"@babel/types": "^7.28.6"
|
|
403
403
|
},
|
|
404
404
|
"engines": {
|
|
405
405
|
"node": ">=6.9.0"
|
|
406
406
|
}
|
|
407
407
|
},
|
|
408
408
|
"node_modules/@babel/helpers": {
|
|
409
|
-
"version": "7.28.
|
|
410
|
-
"integrity": "sha512-
|
|
409
|
+
"version": "7.28.6",
|
|
410
|
+
"integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
|
|
411
411
|
"dev": true,
|
|
412
412
|
"license": "MIT",
|
|
413
413
|
"peer": true,
|
|
414
414
|
"dependencies": {
|
|
415
|
-
"@babel/template": "^7.
|
|
416
|
-
"@babel/types": "^7.28.
|
|
415
|
+
"@babel/template": "^7.28.6",
|
|
416
|
+
"@babel/types": "^7.28.6"
|
|
417
417
|
},
|
|
418
418
|
"engines": {
|
|
419
419
|
"node": ">=6.9.0"
|
|
420
420
|
}
|
|
421
421
|
},
|
|
422
422
|
"node_modules/@babel/parser": {
|
|
423
|
-
"version": "7.
|
|
424
|
-
"integrity": "sha512-
|
|
423
|
+
"version": "7.29.0",
|
|
424
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
425
425
|
"license": "MIT",
|
|
426
426
|
"dependencies": {
|
|
427
|
-
"@babel/types": "^7.
|
|
427
|
+
"@babel/types": "^7.29.0"
|
|
428
428
|
},
|
|
429
429
|
"bin": {
|
|
430
430
|
"parser": "bin/babel-parser.js"
|
|
@@ -497,13 +497,13 @@
|
|
|
497
497
|
}
|
|
498
498
|
},
|
|
499
499
|
"node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
|
|
500
|
-
"version": "7.28.
|
|
501
|
-
"integrity": "sha512-
|
|
500
|
+
"version": "7.28.6",
|
|
501
|
+
"integrity": "sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==",
|
|
502
502
|
"dev": true,
|
|
503
503
|
"license": "MIT",
|
|
504
504
|
"dependencies": {
|
|
505
|
-
"@babel/helper-plugin-utils": "^7.
|
|
506
|
-
"@babel/traverse": "^7.28.
|
|
505
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
506
|
+
"@babel/traverse": "^7.28.6"
|
|
507
507
|
},
|
|
508
508
|
"engines": {
|
|
509
509
|
"node": ">=6.9.0"
|
|
@@ -542,12 +542,12 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"node_modules/@babel/plugin-syntax-import-assertions": {
|
|
545
|
-
"version": "7.
|
|
546
|
-
"integrity": "sha512-
|
|
545
|
+
"version": "7.28.6",
|
|
546
|
+
"integrity": "sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==",
|
|
547
547
|
"dev": true,
|
|
548
548
|
"license": "MIT",
|
|
549
549
|
"dependencies": {
|
|
550
|
-
"@babel/helper-plugin-utils": "^7.
|
|
550
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
551
551
|
},
|
|
552
552
|
"engines": {
|
|
553
553
|
"node": ">=6.9.0"
|
|
@@ -557,12 +557,12 @@
|
|
|
557
557
|
}
|
|
558
558
|
},
|
|
559
559
|
"node_modules/@babel/plugin-syntax-import-attributes": {
|
|
560
|
-
"version": "7.
|
|
561
|
-
"integrity": "sha512-
|
|
560
|
+
"version": "7.28.6",
|
|
561
|
+
"integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==",
|
|
562
562
|
"dev": true,
|
|
563
563
|
"license": "MIT",
|
|
564
564
|
"dependencies": {
|
|
565
|
-
"@babel/helper-plugin-utils": "^7.
|
|
565
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
566
566
|
},
|
|
567
567
|
"engines": {
|
|
568
568
|
"node": ">=6.9.0"
|
|
@@ -572,12 +572,12 @@
|
|
|
572
572
|
}
|
|
573
573
|
},
|
|
574
574
|
"node_modules/@babel/plugin-syntax-jsx": {
|
|
575
|
-
"version": "7.
|
|
576
|
-
"integrity": "sha512-
|
|
575
|
+
"version": "7.28.6",
|
|
576
|
+
"integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
|
|
577
577
|
"dev": true,
|
|
578
578
|
"license": "MIT",
|
|
579
579
|
"dependencies": {
|
|
580
|
-
"@babel/helper-plugin-utils": "^7.
|
|
580
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
581
581
|
},
|
|
582
582
|
"engines": {
|
|
583
583
|
"node": ">=6.9.0"
|
|
@@ -587,12 +587,12 @@
|
|
|
587
587
|
}
|
|
588
588
|
},
|
|
589
589
|
"node_modules/@babel/plugin-syntax-typescript": {
|
|
590
|
-
"version": "7.
|
|
591
|
-
"integrity": "sha512
|
|
590
|
+
"version": "7.28.6",
|
|
591
|
+
"integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
|
|
592
592
|
"dev": true,
|
|
593
593
|
"license": "MIT",
|
|
594
594
|
"dependencies": {
|
|
595
|
-
"@babel/helper-plugin-utils": "^7.
|
|
595
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
596
596
|
},
|
|
597
597
|
"engines": {
|
|
598
598
|
"node": ">=6.9.0"
|
|
@@ -633,14 +633,14 @@
|
|
|
633
633
|
}
|
|
634
634
|
},
|
|
635
635
|
"node_modules/@babel/plugin-transform-async-generator-functions": {
|
|
636
|
-
"version": "7.
|
|
637
|
-
"integrity": "sha512-
|
|
636
|
+
"version": "7.29.0",
|
|
637
|
+
"integrity": "sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==",
|
|
638
638
|
"dev": true,
|
|
639
639
|
"license": "MIT",
|
|
640
640
|
"dependencies": {
|
|
641
|
-
"@babel/helper-plugin-utils": "^7.
|
|
641
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
642
642
|
"@babel/helper-remap-async-to-generator": "^7.27.1",
|
|
643
|
-
"@babel/traverse": "^7.
|
|
643
|
+
"@babel/traverse": "^7.29.0"
|
|
644
644
|
},
|
|
645
645
|
"engines": {
|
|
646
646
|
"node": ">=6.9.0"
|
|
@@ -650,13 +650,13 @@
|
|
|
650
650
|
}
|
|
651
651
|
},
|
|
652
652
|
"node_modules/@babel/plugin-transform-async-to-generator": {
|
|
653
|
-
"version": "7.
|
|
654
|
-
"integrity": "sha512-
|
|
653
|
+
"version": "7.28.6",
|
|
654
|
+
"integrity": "sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==",
|
|
655
655
|
"dev": true,
|
|
656
656
|
"license": "MIT",
|
|
657
657
|
"dependencies": {
|
|
658
|
-
"@babel/helper-module-imports": "^7.
|
|
659
|
-
"@babel/helper-plugin-utils": "^7.
|
|
658
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
659
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
660
660
|
"@babel/helper-remap-async-to-generator": "^7.27.1"
|
|
661
661
|
},
|
|
662
662
|
"engines": {
|
|
@@ -682,12 +682,12 @@
|
|
|
682
682
|
}
|
|
683
683
|
},
|
|
684
684
|
"node_modules/@babel/plugin-transform-block-scoping": {
|
|
685
|
-
"version": "7.28.
|
|
686
|
-
"integrity": "sha512-
|
|
685
|
+
"version": "7.28.6",
|
|
686
|
+
"integrity": "sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==",
|
|
687
687
|
"dev": true,
|
|
688
688
|
"license": "MIT",
|
|
689
689
|
"dependencies": {
|
|
690
|
-
"@babel/helper-plugin-utils": "^7.
|
|
690
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
691
691
|
},
|
|
692
692
|
"engines": {
|
|
693
693
|
"node": ">=6.9.0"
|
|
@@ -697,13 +697,13 @@
|
|
|
697
697
|
}
|
|
698
698
|
},
|
|
699
699
|
"node_modules/@babel/plugin-transform-class-properties": {
|
|
700
|
-
"version": "7.
|
|
701
|
-
"integrity": "sha512-
|
|
700
|
+
"version": "7.28.6",
|
|
701
|
+
"integrity": "sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==",
|
|
702
702
|
"dev": true,
|
|
703
703
|
"license": "MIT",
|
|
704
704
|
"dependencies": {
|
|
705
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
706
|
-
"@babel/helper-plugin-utils": "^7.
|
|
705
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
706
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
707
707
|
},
|
|
708
708
|
"engines": {
|
|
709
709
|
"node": ">=6.9.0"
|
|
@@ -713,13 +713,13 @@
|
|
|
713
713
|
}
|
|
714
714
|
},
|
|
715
715
|
"node_modules/@babel/plugin-transform-class-static-block": {
|
|
716
|
-
"version": "7.28.
|
|
717
|
-
"integrity": "sha512-
|
|
716
|
+
"version": "7.28.6",
|
|
717
|
+
"integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==",
|
|
718
718
|
"dev": true,
|
|
719
719
|
"license": "MIT",
|
|
720
720
|
"dependencies": {
|
|
721
|
-
"@babel/helper-create-class-features-plugin": "^7.28.
|
|
722
|
-
"@babel/helper-plugin-utils": "^7.
|
|
721
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
722
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
723
723
|
},
|
|
724
724
|
"engines": {
|
|
725
725
|
"node": ">=6.9.0"
|
|
@@ -729,17 +729,17 @@
|
|
|
729
729
|
}
|
|
730
730
|
},
|
|
731
731
|
"node_modules/@babel/plugin-transform-classes": {
|
|
732
|
-
"version": "7.28.
|
|
733
|
-
"integrity": "sha512-
|
|
732
|
+
"version": "7.28.6",
|
|
733
|
+
"integrity": "sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==",
|
|
734
734
|
"dev": true,
|
|
735
735
|
"license": "MIT",
|
|
736
736
|
"dependencies": {
|
|
737
737
|
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
738
|
-
"@babel/helper-compilation-targets": "^7.
|
|
738
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
739
739
|
"@babel/helper-globals": "^7.28.0",
|
|
740
|
-
"@babel/helper-plugin-utils": "^7.
|
|
741
|
-
"@babel/helper-replace-supers": "^7.
|
|
742
|
-
"@babel/traverse": "^7.28.
|
|
740
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
741
|
+
"@babel/helper-replace-supers": "^7.28.6",
|
|
742
|
+
"@babel/traverse": "^7.28.6"
|
|
743
743
|
},
|
|
744
744
|
"engines": {
|
|
745
745
|
"node": ">=6.9.0"
|
|
@@ -749,13 +749,13 @@
|
|
|
749
749
|
}
|
|
750
750
|
},
|
|
751
751
|
"node_modules/@babel/plugin-transform-computed-properties": {
|
|
752
|
-
"version": "7.
|
|
753
|
-
"integrity": "sha512-
|
|
752
|
+
"version": "7.28.6",
|
|
753
|
+
"integrity": "sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==",
|
|
754
754
|
"dev": true,
|
|
755
755
|
"license": "MIT",
|
|
756
756
|
"dependencies": {
|
|
757
|
-
"@babel/helper-plugin-utils": "^7.
|
|
758
|
-
"@babel/template": "^7.
|
|
757
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
758
|
+
"@babel/template": "^7.28.6"
|
|
759
759
|
},
|
|
760
760
|
"engines": {
|
|
761
761
|
"node": ">=6.9.0"
|
|
@@ -781,13 +781,13 @@
|
|
|
781
781
|
}
|
|
782
782
|
},
|
|
783
783
|
"node_modules/@babel/plugin-transform-dotall-regex": {
|
|
784
|
-
"version": "7.
|
|
785
|
-
"integrity": "sha512-
|
|
784
|
+
"version": "7.28.6",
|
|
785
|
+
"integrity": "sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==",
|
|
786
786
|
"dev": true,
|
|
787
787
|
"license": "MIT",
|
|
788
788
|
"dependencies": {
|
|
789
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
790
|
-
"@babel/helper-plugin-utils": "^7.
|
|
789
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
790
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
791
791
|
},
|
|
792
792
|
"engines": {
|
|
793
793
|
"node": ">=6.9.0"
|
|
@@ -812,13 +812,13 @@
|
|
|
812
812
|
}
|
|
813
813
|
},
|
|
814
814
|
"node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": {
|
|
815
|
-
"version": "7.
|
|
816
|
-
"integrity": "sha512-
|
|
815
|
+
"version": "7.29.0",
|
|
816
|
+
"integrity": "sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==",
|
|
817
817
|
"dev": true,
|
|
818
818
|
"license": "MIT",
|
|
819
819
|
"dependencies": {
|
|
820
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
821
|
-
"@babel/helper-plugin-utils": "^7.
|
|
820
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
821
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
822
822
|
},
|
|
823
823
|
"engines": {
|
|
824
824
|
"node": ">=6.9.0"
|
|
@@ -843,13 +843,13 @@
|
|
|
843
843
|
}
|
|
844
844
|
},
|
|
845
845
|
"node_modules/@babel/plugin-transform-explicit-resource-management": {
|
|
846
|
-
"version": "7.28.
|
|
847
|
-
"integrity": "sha512-
|
|
846
|
+
"version": "7.28.6",
|
|
847
|
+
"integrity": "sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==",
|
|
848
848
|
"dev": true,
|
|
849
849
|
"license": "MIT",
|
|
850
850
|
"dependencies": {
|
|
851
|
-
"@babel/helper-plugin-utils": "^7.
|
|
852
|
-
"@babel/plugin-transform-destructuring": "^7.28.
|
|
851
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
852
|
+
"@babel/plugin-transform-destructuring": "^7.28.5"
|
|
853
853
|
},
|
|
854
854
|
"engines": {
|
|
855
855
|
"node": ">=6.9.0"
|
|
@@ -859,12 +859,12 @@
|
|
|
859
859
|
}
|
|
860
860
|
},
|
|
861
861
|
"node_modules/@babel/plugin-transform-exponentiation-operator": {
|
|
862
|
-
"version": "7.28.
|
|
863
|
-
"integrity": "sha512-
|
|
862
|
+
"version": "7.28.6",
|
|
863
|
+
"integrity": "sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==",
|
|
864
864
|
"dev": true,
|
|
865
865
|
"license": "MIT",
|
|
866
866
|
"dependencies": {
|
|
867
|
-
"@babel/helper-plugin-utils": "^7.
|
|
867
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
868
868
|
},
|
|
869
869
|
"engines": {
|
|
870
870
|
"node": ">=6.9.0"
|
|
@@ -922,12 +922,12 @@
|
|
|
922
922
|
}
|
|
923
923
|
},
|
|
924
924
|
"node_modules/@babel/plugin-transform-json-strings": {
|
|
925
|
-
"version": "7.
|
|
926
|
-
"integrity": "sha512-
|
|
925
|
+
"version": "7.28.6",
|
|
926
|
+
"integrity": "sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==",
|
|
927
927
|
"dev": true,
|
|
928
928
|
"license": "MIT",
|
|
929
929
|
"dependencies": {
|
|
930
|
-
"@babel/helper-plugin-utils": "^7.
|
|
930
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
931
931
|
},
|
|
932
932
|
"engines": {
|
|
933
933
|
"node": ">=6.9.0"
|
|
@@ -952,12 +952,12 @@
|
|
|
952
952
|
}
|
|
953
953
|
},
|
|
954
954
|
"node_modules/@babel/plugin-transform-logical-assignment-operators": {
|
|
955
|
-
"version": "7.28.
|
|
956
|
-
"integrity": "sha512
|
|
955
|
+
"version": "7.28.6",
|
|
956
|
+
"integrity": "sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==",
|
|
957
957
|
"dev": true,
|
|
958
958
|
"license": "MIT",
|
|
959
959
|
"dependencies": {
|
|
960
|
-
"@babel/helper-plugin-utils": "^7.
|
|
960
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
961
961
|
},
|
|
962
962
|
"engines": {
|
|
963
963
|
"node": ">=6.9.0"
|
|
@@ -998,13 +998,13 @@
|
|
|
998
998
|
}
|
|
999
999
|
},
|
|
1000
1000
|
"node_modules/@babel/plugin-transform-modules-commonjs": {
|
|
1001
|
-
"version": "7.
|
|
1002
|
-
"integrity": "sha512-
|
|
1001
|
+
"version": "7.28.6",
|
|
1002
|
+
"integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==",
|
|
1003
1003
|
"dev": true,
|
|
1004
1004
|
"license": "MIT",
|
|
1005
1005
|
"dependencies": {
|
|
1006
|
-
"@babel/helper-module-transforms": "^7.
|
|
1007
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1006
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
1007
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1008
1008
|
},
|
|
1009
1009
|
"engines": {
|
|
1010
1010
|
"node": ">=6.9.0"
|
|
@@ -1014,15 +1014,15 @@
|
|
|
1014
1014
|
}
|
|
1015
1015
|
},
|
|
1016
1016
|
"node_modules/@babel/plugin-transform-modules-systemjs": {
|
|
1017
|
-
"version": "7.
|
|
1018
|
-
"integrity": "sha512-
|
|
1017
|
+
"version": "7.29.0",
|
|
1018
|
+
"integrity": "sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==",
|
|
1019
1019
|
"dev": true,
|
|
1020
1020
|
"license": "MIT",
|
|
1021
1021
|
"dependencies": {
|
|
1022
|
-
"@babel/helper-module-transforms": "^7.28.
|
|
1023
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1022
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
1023
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1024
1024
|
"@babel/helper-validator-identifier": "^7.28.5",
|
|
1025
|
-
"@babel/traverse": "^7.
|
|
1025
|
+
"@babel/traverse": "^7.29.0"
|
|
1026
1026
|
},
|
|
1027
1027
|
"engines": {
|
|
1028
1028
|
"node": ">=6.9.0"
|
|
@@ -1048,13 +1048,13 @@
|
|
|
1048
1048
|
}
|
|
1049
1049
|
},
|
|
1050
1050
|
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
|
|
1051
|
-
"version": "7.
|
|
1052
|
-
"integrity": "sha512-
|
|
1051
|
+
"version": "7.29.0",
|
|
1052
|
+
"integrity": "sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==",
|
|
1053
1053
|
"dev": true,
|
|
1054
1054
|
"license": "MIT",
|
|
1055
1055
|
"dependencies": {
|
|
1056
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1057
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1056
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1057
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1058
1058
|
},
|
|
1059
1059
|
"engines": {
|
|
1060
1060
|
"node": ">=6.9.0"
|
|
@@ -1079,12 +1079,12 @@
|
|
|
1079
1079
|
}
|
|
1080
1080
|
},
|
|
1081
1081
|
"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
|
|
1082
|
-
"version": "7.
|
|
1083
|
-
"integrity": "sha512-
|
|
1082
|
+
"version": "7.28.6",
|
|
1083
|
+
"integrity": "sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==",
|
|
1084
1084
|
"dev": true,
|
|
1085
1085
|
"license": "MIT",
|
|
1086
1086
|
"dependencies": {
|
|
1087
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1087
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1088
1088
|
},
|
|
1089
1089
|
"engines": {
|
|
1090
1090
|
"node": ">=6.9.0"
|
|
@@ -1094,12 +1094,12 @@
|
|
|
1094
1094
|
}
|
|
1095
1095
|
},
|
|
1096
1096
|
"node_modules/@babel/plugin-transform-numeric-separator": {
|
|
1097
|
-
"version": "7.
|
|
1098
|
-
"integrity": "sha512-
|
|
1097
|
+
"version": "7.28.6",
|
|
1098
|
+
"integrity": "sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==",
|
|
1099
1099
|
"dev": true,
|
|
1100
1100
|
"license": "MIT",
|
|
1101
1101
|
"dependencies": {
|
|
1102
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1102
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1103
1103
|
},
|
|
1104
1104
|
"engines": {
|
|
1105
1105
|
"node": ">=6.9.0"
|
|
@@ -1109,16 +1109,16 @@
|
|
|
1109
1109
|
}
|
|
1110
1110
|
},
|
|
1111
1111
|
"node_modules/@babel/plugin-transform-object-rest-spread": {
|
|
1112
|
-
"version": "7.28.
|
|
1113
|
-
"integrity": "sha512-
|
|
1112
|
+
"version": "7.28.6",
|
|
1113
|
+
"integrity": "sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==",
|
|
1114
1114
|
"dev": true,
|
|
1115
1115
|
"license": "MIT",
|
|
1116
1116
|
"dependencies": {
|
|
1117
|
-
"@babel/helper-compilation-targets": "^7.
|
|
1118
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1119
|
-
"@babel/plugin-transform-destructuring": "^7.28.
|
|
1117
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
1118
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1119
|
+
"@babel/plugin-transform-destructuring": "^7.28.5",
|
|
1120
1120
|
"@babel/plugin-transform-parameters": "^7.27.7",
|
|
1121
|
-
"@babel/traverse": "^7.28.
|
|
1121
|
+
"@babel/traverse": "^7.28.6"
|
|
1122
1122
|
},
|
|
1123
1123
|
"engines": {
|
|
1124
1124
|
"node": ">=6.9.0"
|
|
@@ -1144,12 +1144,12 @@
|
|
|
1144
1144
|
}
|
|
1145
1145
|
},
|
|
1146
1146
|
"node_modules/@babel/plugin-transform-optional-catch-binding": {
|
|
1147
|
-
"version": "7.
|
|
1148
|
-
"integrity": "sha512-
|
|
1147
|
+
"version": "7.28.6",
|
|
1148
|
+
"integrity": "sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==",
|
|
1149
1149
|
"dev": true,
|
|
1150
1150
|
"license": "MIT",
|
|
1151
1151
|
"dependencies": {
|
|
1152
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1152
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1153
1153
|
},
|
|
1154
1154
|
"engines": {
|
|
1155
1155
|
"node": ">=6.9.0"
|
|
@@ -1159,12 +1159,12 @@
|
|
|
1159
1159
|
}
|
|
1160
1160
|
},
|
|
1161
1161
|
"node_modules/@babel/plugin-transform-optional-chaining": {
|
|
1162
|
-
"version": "7.28.
|
|
1163
|
-
"integrity": "sha512-
|
|
1162
|
+
"version": "7.28.6",
|
|
1163
|
+
"integrity": "sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==",
|
|
1164
1164
|
"dev": true,
|
|
1165
1165
|
"license": "MIT",
|
|
1166
1166
|
"dependencies": {
|
|
1167
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1167
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1168
1168
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
|
|
1169
1169
|
},
|
|
1170
1170
|
"engines": {
|
|
@@ -1190,13 +1190,13 @@
|
|
|
1190
1190
|
}
|
|
1191
1191
|
},
|
|
1192
1192
|
"node_modules/@babel/plugin-transform-private-methods": {
|
|
1193
|
-
"version": "7.
|
|
1194
|
-
"integrity": "sha512-
|
|
1193
|
+
"version": "7.28.6",
|
|
1194
|
+
"integrity": "sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==",
|
|
1195
1195
|
"dev": true,
|
|
1196
1196
|
"license": "MIT",
|
|
1197
1197
|
"dependencies": {
|
|
1198
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
1199
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1198
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1199
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1200
1200
|
},
|
|
1201
1201
|
"engines": {
|
|
1202
1202
|
"node": ">=6.9.0"
|
|
@@ -1206,14 +1206,14 @@
|
|
|
1206
1206
|
}
|
|
1207
1207
|
},
|
|
1208
1208
|
"node_modules/@babel/plugin-transform-private-property-in-object": {
|
|
1209
|
-
"version": "7.
|
|
1210
|
-
"integrity": "sha512-
|
|
1209
|
+
"version": "7.28.6",
|
|
1210
|
+
"integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==",
|
|
1211
1211
|
"dev": true,
|
|
1212
1212
|
"license": "MIT",
|
|
1213
1213
|
"dependencies": {
|
|
1214
|
-
"@babel/helper-annotate-as-pure": "^7.27.
|
|
1215
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
1216
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1214
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1215
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1216
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1217
1217
|
},
|
|
1218
1218
|
"engines": {
|
|
1219
1219
|
"node": ">=6.9.0"
|
|
@@ -1253,16 +1253,16 @@
|
|
|
1253
1253
|
}
|
|
1254
1254
|
},
|
|
1255
1255
|
"node_modules/@babel/plugin-transform-react-jsx": {
|
|
1256
|
-
"version": "7.
|
|
1257
|
-
"integrity": "sha512-
|
|
1256
|
+
"version": "7.28.6",
|
|
1257
|
+
"integrity": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==",
|
|
1258
1258
|
"dev": true,
|
|
1259
1259
|
"license": "MIT",
|
|
1260
1260
|
"dependencies": {
|
|
1261
|
-
"@babel/helper-annotate-as-pure": "^7.27.
|
|
1262
|
-
"@babel/helper-module-imports": "^7.
|
|
1263
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1264
|
-
"@babel/plugin-syntax-jsx": "^7.
|
|
1265
|
-
"@babel/types": "^7.
|
|
1261
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1262
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
1263
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1264
|
+
"@babel/plugin-syntax-jsx": "^7.28.6",
|
|
1265
|
+
"@babel/types": "^7.28.6"
|
|
1266
1266
|
},
|
|
1267
1267
|
"engines": {
|
|
1268
1268
|
"node": ">=6.9.0"
|
|
@@ -1303,12 +1303,12 @@
|
|
|
1303
1303
|
}
|
|
1304
1304
|
},
|
|
1305
1305
|
"node_modules/@babel/plugin-transform-regenerator": {
|
|
1306
|
-
"version": "7.
|
|
1307
|
-
"integrity": "sha512
|
|
1306
|
+
"version": "7.29.0",
|
|
1307
|
+
"integrity": "sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==",
|
|
1308
1308
|
"dev": true,
|
|
1309
1309
|
"license": "MIT",
|
|
1310
1310
|
"dependencies": {
|
|
1311
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1311
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1312
1312
|
},
|
|
1313
1313
|
"engines": {
|
|
1314
1314
|
"node": ">=6.9.0"
|
|
@@ -1318,13 +1318,13 @@
|
|
|
1318
1318
|
}
|
|
1319
1319
|
},
|
|
1320
1320
|
"node_modules/@babel/plugin-transform-regexp-modifiers": {
|
|
1321
|
-
"version": "7.
|
|
1322
|
-
"integrity": "sha512-
|
|
1321
|
+
"version": "7.28.6",
|
|
1322
|
+
"integrity": "sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==",
|
|
1323
1323
|
"dev": true,
|
|
1324
1324
|
"license": "MIT",
|
|
1325
1325
|
"dependencies": {
|
|
1326
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1327
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1326
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1327
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1328
1328
|
},
|
|
1329
1329
|
"engines": {
|
|
1330
1330
|
"node": ">=6.9.0"
|
|
@@ -1364,12 +1364,12 @@
|
|
|
1364
1364
|
}
|
|
1365
1365
|
},
|
|
1366
1366
|
"node_modules/@babel/plugin-transform-spread": {
|
|
1367
|
-
"version": "7.
|
|
1368
|
-
"integrity": "sha512-
|
|
1367
|
+
"version": "7.28.6",
|
|
1368
|
+
"integrity": "sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==",
|
|
1369
1369
|
"dev": true,
|
|
1370
1370
|
"license": "MIT",
|
|
1371
1371
|
"dependencies": {
|
|
1372
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1372
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1373
1373
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
|
|
1374
1374
|
},
|
|
1375
1375
|
"engines": {
|
|
@@ -1425,16 +1425,16 @@
|
|
|
1425
1425
|
}
|
|
1426
1426
|
},
|
|
1427
1427
|
"node_modules/@babel/plugin-transform-typescript": {
|
|
1428
|
-
"version": "7.28.
|
|
1429
|
-
"integrity": "sha512-
|
|
1428
|
+
"version": "7.28.6",
|
|
1429
|
+
"integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==",
|
|
1430
1430
|
"dev": true,
|
|
1431
1431
|
"license": "MIT",
|
|
1432
1432
|
"dependencies": {
|
|
1433
1433
|
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1434
|
-
"@babel/helper-create-class-features-plugin": "^7.28.
|
|
1435
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1434
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1435
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1436
1436
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
1437
|
-
"@babel/plugin-syntax-typescript": "^7.
|
|
1437
|
+
"@babel/plugin-syntax-typescript": "^7.28.6"
|
|
1438
1438
|
},
|
|
1439
1439
|
"engines": {
|
|
1440
1440
|
"node": ">=6.9.0"
|
|
@@ -1459,13 +1459,13 @@
|
|
|
1459
1459
|
}
|
|
1460
1460
|
},
|
|
1461
1461
|
"node_modules/@babel/plugin-transform-unicode-property-regex": {
|
|
1462
|
-
"version": "7.
|
|
1463
|
-
"integrity": "sha512-
|
|
1462
|
+
"version": "7.28.6",
|
|
1463
|
+
"integrity": "sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==",
|
|
1464
1464
|
"dev": true,
|
|
1465
1465
|
"license": "MIT",
|
|
1466
1466
|
"dependencies": {
|
|
1467
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1468
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1467
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1468
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1469
1469
|
},
|
|
1470
1470
|
"engines": {
|
|
1471
1471
|
"node": ">=6.9.0"
|
|
@@ -1491,13 +1491,13 @@
|
|
|
1491
1491
|
}
|
|
1492
1492
|
},
|
|
1493
1493
|
"node_modules/@babel/plugin-transform-unicode-sets-regex": {
|
|
1494
|
-
"version": "7.
|
|
1495
|
-
"integrity": "sha512
|
|
1494
|
+
"version": "7.28.6",
|
|
1495
|
+
"integrity": "sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==",
|
|
1496
1496
|
"dev": true,
|
|
1497
1497
|
"license": "MIT",
|
|
1498
1498
|
"dependencies": {
|
|
1499
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1500
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1499
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1500
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1501
1501
|
},
|
|
1502
1502
|
"engines": {
|
|
1503
1503
|
"node": ">=6.9.0"
|
|
@@ -1507,80 +1507,80 @@
|
|
|
1507
1507
|
}
|
|
1508
1508
|
},
|
|
1509
1509
|
"node_modules/@babel/preset-env": {
|
|
1510
|
-
"version": "7.
|
|
1511
|
-
"integrity": "sha512-
|
|
1510
|
+
"version": "7.29.0",
|
|
1511
|
+
"integrity": "sha512-fNEdfc0yi16lt6IZo2Qxk3knHVdfMYX33czNb4v8yWhemoBhibCpQK/uYHtSKIiO+p/zd3+8fYVXhQdOVV608w==",
|
|
1512
1512
|
"dev": true,
|
|
1513
1513
|
"license": "MIT",
|
|
1514
1514
|
"dependencies": {
|
|
1515
|
-
"@babel/compat-data": "^7.
|
|
1516
|
-
"@babel/helper-compilation-targets": "^7.
|
|
1517
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1515
|
+
"@babel/compat-data": "^7.29.0",
|
|
1516
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
1517
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1518
1518
|
"@babel/helper-validator-option": "^7.27.1",
|
|
1519
1519
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5",
|
|
1520
1520
|
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1",
|
|
1521
1521
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1",
|
|
1522
1522
|
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1",
|
|
1523
|
-
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.
|
|
1523
|
+
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.6",
|
|
1524
1524
|
"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
|
|
1525
|
-
"@babel/plugin-syntax-import-assertions": "^7.
|
|
1526
|
-
"@babel/plugin-syntax-import-attributes": "^7.
|
|
1525
|
+
"@babel/plugin-syntax-import-assertions": "^7.28.6",
|
|
1526
|
+
"@babel/plugin-syntax-import-attributes": "^7.28.6",
|
|
1527
1527
|
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
|
|
1528
1528
|
"@babel/plugin-transform-arrow-functions": "^7.27.1",
|
|
1529
|
-
"@babel/plugin-transform-async-generator-functions": "^7.
|
|
1530
|
-
"@babel/plugin-transform-async-to-generator": "^7.
|
|
1529
|
+
"@babel/plugin-transform-async-generator-functions": "^7.29.0",
|
|
1530
|
+
"@babel/plugin-transform-async-to-generator": "^7.28.6",
|
|
1531
1531
|
"@babel/plugin-transform-block-scoped-functions": "^7.27.1",
|
|
1532
|
-
"@babel/plugin-transform-block-scoping": "^7.28.
|
|
1533
|
-
"@babel/plugin-transform-class-properties": "^7.
|
|
1534
|
-
"@babel/plugin-transform-class-static-block": "^7.28.
|
|
1535
|
-
"@babel/plugin-transform-classes": "^7.28.
|
|
1536
|
-
"@babel/plugin-transform-computed-properties": "^7.
|
|
1532
|
+
"@babel/plugin-transform-block-scoping": "^7.28.6",
|
|
1533
|
+
"@babel/plugin-transform-class-properties": "^7.28.6",
|
|
1534
|
+
"@babel/plugin-transform-class-static-block": "^7.28.6",
|
|
1535
|
+
"@babel/plugin-transform-classes": "^7.28.6",
|
|
1536
|
+
"@babel/plugin-transform-computed-properties": "^7.28.6",
|
|
1537
1537
|
"@babel/plugin-transform-destructuring": "^7.28.5",
|
|
1538
|
-
"@babel/plugin-transform-dotall-regex": "^7.
|
|
1538
|
+
"@babel/plugin-transform-dotall-regex": "^7.28.6",
|
|
1539
1539
|
"@babel/plugin-transform-duplicate-keys": "^7.27.1",
|
|
1540
|
-
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.
|
|
1540
|
+
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.29.0",
|
|
1541
1541
|
"@babel/plugin-transform-dynamic-import": "^7.27.1",
|
|
1542
|
-
"@babel/plugin-transform-explicit-resource-management": "^7.28.
|
|
1543
|
-
"@babel/plugin-transform-exponentiation-operator": "^7.28.
|
|
1542
|
+
"@babel/plugin-transform-explicit-resource-management": "^7.28.6",
|
|
1543
|
+
"@babel/plugin-transform-exponentiation-operator": "^7.28.6",
|
|
1544
1544
|
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
|
|
1545
1545
|
"@babel/plugin-transform-for-of": "^7.27.1",
|
|
1546
1546
|
"@babel/plugin-transform-function-name": "^7.27.1",
|
|
1547
|
-
"@babel/plugin-transform-json-strings": "^7.
|
|
1547
|
+
"@babel/plugin-transform-json-strings": "^7.28.6",
|
|
1548
1548
|
"@babel/plugin-transform-literals": "^7.27.1",
|
|
1549
|
-
"@babel/plugin-transform-logical-assignment-operators": "^7.28.
|
|
1549
|
+
"@babel/plugin-transform-logical-assignment-operators": "^7.28.6",
|
|
1550
1550
|
"@babel/plugin-transform-member-expression-literals": "^7.27.1",
|
|
1551
1551
|
"@babel/plugin-transform-modules-amd": "^7.27.1",
|
|
1552
|
-
"@babel/plugin-transform-modules-commonjs": "^7.
|
|
1553
|
-
"@babel/plugin-transform-modules-systemjs": "^7.
|
|
1552
|
+
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
|
|
1553
|
+
"@babel/plugin-transform-modules-systemjs": "^7.29.0",
|
|
1554
1554
|
"@babel/plugin-transform-modules-umd": "^7.27.1",
|
|
1555
|
-
"@babel/plugin-transform-named-capturing-groups-regex": "^7.
|
|
1555
|
+
"@babel/plugin-transform-named-capturing-groups-regex": "^7.29.0",
|
|
1556
1556
|
"@babel/plugin-transform-new-target": "^7.27.1",
|
|
1557
|
-
"@babel/plugin-transform-nullish-coalescing-operator": "^7.
|
|
1558
|
-
"@babel/plugin-transform-numeric-separator": "^7.
|
|
1559
|
-
"@babel/plugin-transform-object-rest-spread": "^7.28.
|
|
1557
|
+
"@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6",
|
|
1558
|
+
"@babel/plugin-transform-numeric-separator": "^7.28.6",
|
|
1559
|
+
"@babel/plugin-transform-object-rest-spread": "^7.28.6",
|
|
1560
1560
|
"@babel/plugin-transform-object-super": "^7.27.1",
|
|
1561
|
-
"@babel/plugin-transform-optional-catch-binding": "^7.
|
|
1562
|
-
"@babel/plugin-transform-optional-chaining": "^7.28.
|
|
1561
|
+
"@babel/plugin-transform-optional-catch-binding": "^7.28.6",
|
|
1562
|
+
"@babel/plugin-transform-optional-chaining": "^7.28.6",
|
|
1563
1563
|
"@babel/plugin-transform-parameters": "^7.27.7",
|
|
1564
|
-
"@babel/plugin-transform-private-methods": "^7.
|
|
1565
|
-
"@babel/plugin-transform-private-property-in-object": "^7.
|
|
1564
|
+
"@babel/plugin-transform-private-methods": "^7.28.6",
|
|
1565
|
+
"@babel/plugin-transform-private-property-in-object": "^7.28.6",
|
|
1566
1566
|
"@babel/plugin-transform-property-literals": "^7.27.1",
|
|
1567
|
-
"@babel/plugin-transform-regenerator": "^7.
|
|
1568
|
-
"@babel/plugin-transform-regexp-modifiers": "^7.
|
|
1567
|
+
"@babel/plugin-transform-regenerator": "^7.29.0",
|
|
1568
|
+
"@babel/plugin-transform-regexp-modifiers": "^7.28.6",
|
|
1569
1569
|
"@babel/plugin-transform-reserved-words": "^7.27.1",
|
|
1570
1570
|
"@babel/plugin-transform-shorthand-properties": "^7.27.1",
|
|
1571
|
-
"@babel/plugin-transform-spread": "^7.
|
|
1571
|
+
"@babel/plugin-transform-spread": "^7.28.6",
|
|
1572
1572
|
"@babel/plugin-transform-sticky-regex": "^7.27.1",
|
|
1573
1573
|
"@babel/plugin-transform-template-literals": "^7.27.1",
|
|
1574
1574
|
"@babel/plugin-transform-typeof-symbol": "^7.27.1",
|
|
1575
1575
|
"@babel/plugin-transform-unicode-escapes": "^7.27.1",
|
|
1576
|
-
"@babel/plugin-transform-unicode-property-regex": "^7.
|
|
1576
|
+
"@babel/plugin-transform-unicode-property-regex": "^7.28.6",
|
|
1577
1577
|
"@babel/plugin-transform-unicode-regex": "^7.27.1",
|
|
1578
|
-
"@babel/plugin-transform-unicode-sets-regex": "^7.
|
|
1578
|
+
"@babel/plugin-transform-unicode-sets-regex": "^7.28.6",
|
|
1579
1579
|
"@babel/preset-modules": "0.1.6-no-external-plugins",
|
|
1580
|
-
"babel-plugin-polyfill-corejs2": "^0.4.
|
|
1581
|
-
"babel-plugin-polyfill-corejs3": "^0.
|
|
1582
|
-
"babel-plugin-polyfill-regenerator": "^0.6.
|
|
1583
|
-
"core-js-compat": "^3.
|
|
1580
|
+
"babel-plugin-polyfill-corejs2": "^0.4.15",
|
|
1581
|
+
"babel-plugin-polyfill-corejs3": "^0.14.0",
|
|
1582
|
+
"babel-plugin-polyfill-regenerator": "^0.6.6",
|
|
1583
|
+
"core-js-compat": "^3.48.0",
|
|
1584
1584
|
"semver": "^6.3.1"
|
|
1585
1585
|
},
|
|
1586
1586
|
"engines": {
|
|
@@ -1644,37 +1644,37 @@
|
|
|
1644
1644
|
}
|
|
1645
1645
|
},
|
|
1646
1646
|
"node_modules/@babel/runtime": {
|
|
1647
|
-
"version": "7.28.
|
|
1648
|
-
"integrity": "sha512-
|
|
1647
|
+
"version": "7.28.6",
|
|
1648
|
+
"integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==",
|
|
1649
1649
|
"license": "MIT",
|
|
1650
1650
|
"engines": {
|
|
1651
1651
|
"node": ">=6.9.0"
|
|
1652
1652
|
}
|
|
1653
1653
|
},
|
|
1654
1654
|
"node_modules/@babel/template": {
|
|
1655
|
-
"version": "7.
|
|
1656
|
-
"integrity": "sha512-
|
|
1655
|
+
"version": "7.28.6",
|
|
1656
|
+
"integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
|
|
1657
1657
|
"license": "MIT",
|
|
1658
1658
|
"dependencies": {
|
|
1659
|
-
"@babel/code-frame": "^7.
|
|
1660
|
-
"@babel/parser": "^7.
|
|
1661
|
-
"@babel/types": "^7.
|
|
1659
|
+
"@babel/code-frame": "^7.28.6",
|
|
1660
|
+
"@babel/parser": "^7.28.6",
|
|
1661
|
+
"@babel/types": "^7.28.6"
|
|
1662
1662
|
},
|
|
1663
1663
|
"engines": {
|
|
1664
1664
|
"node": ">=6.9.0"
|
|
1665
1665
|
}
|
|
1666
1666
|
},
|
|
1667
1667
|
"node_modules/@babel/traverse": {
|
|
1668
|
-
"version": "7.
|
|
1669
|
-
"integrity": "sha512-
|
|
1668
|
+
"version": "7.29.0",
|
|
1669
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
1670
1670
|
"license": "MIT",
|
|
1671
1671
|
"dependencies": {
|
|
1672
|
-
"@babel/code-frame": "^7.
|
|
1673
|
-
"@babel/generator": "^7.
|
|
1672
|
+
"@babel/code-frame": "^7.29.0",
|
|
1673
|
+
"@babel/generator": "^7.29.0",
|
|
1674
1674
|
"@babel/helper-globals": "^7.28.0",
|
|
1675
|
-
"@babel/parser": "^7.
|
|
1676
|
-
"@babel/template": "^7.
|
|
1677
|
-
"@babel/types": "^7.
|
|
1675
|
+
"@babel/parser": "^7.29.0",
|
|
1676
|
+
"@babel/template": "^7.28.6",
|
|
1677
|
+
"@babel/types": "^7.29.0",
|
|
1678
1678
|
"debug": "^4.3.1"
|
|
1679
1679
|
},
|
|
1680
1680
|
"engines": {
|
|
@@ -1682,8 +1682,8 @@
|
|
|
1682
1682
|
}
|
|
1683
1683
|
},
|
|
1684
1684
|
"node_modules/@babel/types": {
|
|
1685
|
-
"version": "7.
|
|
1686
|
-
"integrity": "sha512-
|
|
1685
|
+
"version": "7.29.0",
|
|
1686
|
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
1687
1687
|
"license": "MIT",
|
|
1688
1688
|
"dependencies": {
|
|
1689
1689
|
"@babel/helper-string-parser": "^7.27.1",
|
|
@@ -1787,8 +1787,8 @@
|
|
|
1787
1787
|
}
|
|
1788
1788
|
},
|
|
1789
1789
|
"node_modules/@emnapi/core": {
|
|
1790
|
-
"version": "1.
|
|
1791
|
-
"integrity": "sha512-
|
|
1790
|
+
"version": "1.8.1",
|
|
1791
|
+
"integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
|
|
1792
1792
|
"dev": true,
|
|
1793
1793
|
"license": "MIT",
|
|
1794
1794
|
"optional": true,
|
|
@@ -1798,8 +1798,8 @@
|
|
|
1798
1798
|
}
|
|
1799
1799
|
},
|
|
1800
1800
|
"node_modules/@emnapi/runtime": {
|
|
1801
|
-
"version": "1.
|
|
1802
|
-
"integrity": "sha512-
|
|
1801
|
+
"version": "1.8.1",
|
|
1802
|
+
"integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
|
|
1803
1803
|
"license": "MIT",
|
|
1804
1804
|
"optional": true,
|
|
1805
1805
|
"dependencies": {
|
|
@@ -1955,8 +1955,8 @@
|
|
|
1955
1955
|
"license": "MIT"
|
|
1956
1956
|
},
|
|
1957
1957
|
"node_modules/@eslint-community/eslint-utils": {
|
|
1958
|
-
"version": "4.9.
|
|
1959
|
-
"integrity": "sha512-
|
|
1958
|
+
"version": "4.9.1",
|
|
1959
|
+
"integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
|
|
1960
1960
|
"dev": true,
|
|
1961
1961
|
"license": "MIT",
|
|
1962
1962
|
"dependencies": {
|
|
@@ -2089,28 +2089,28 @@
|
|
|
2089
2089
|
}
|
|
2090
2090
|
},
|
|
2091
2091
|
"node_modules/@floating-ui/core": {
|
|
2092
|
-
"version": "1.7.
|
|
2093
|
-
"integrity": "sha512-
|
|
2092
|
+
"version": "1.7.4",
|
|
2093
|
+
"integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
|
|
2094
2094
|
"license": "MIT",
|
|
2095
2095
|
"dependencies": {
|
|
2096
2096
|
"@floating-ui/utils": "^0.2.10"
|
|
2097
2097
|
}
|
|
2098
2098
|
},
|
|
2099
2099
|
"node_modules/@floating-ui/dom": {
|
|
2100
|
-
"version": "1.7.
|
|
2101
|
-
"integrity": "sha512-
|
|
2100
|
+
"version": "1.7.5",
|
|
2101
|
+
"integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
|
|
2102
2102
|
"license": "MIT",
|
|
2103
2103
|
"dependencies": {
|
|
2104
|
-
"@floating-ui/core": "^1.7.
|
|
2104
|
+
"@floating-ui/core": "^1.7.4",
|
|
2105
2105
|
"@floating-ui/utils": "^0.2.10"
|
|
2106
2106
|
}
|
|
2107
2107
|
},
|
|
2108
2108
|
"node_modules/@floating-ui/react": {
|
|
2109
|
-
"version": "0.27.
|
|
2110
|
-
"integrity": "sha512-
|
|
2109
|
+
"version": "0.27.17",
|
|
2110
|
+
"integrity": "sha512-LGVZKHwmWGg6MRHjLLgsfyaX2y2aCNgnD1zT/E6B+/h+vxg+nIJUqHPAlTzsHDyqdgEpJ1Np5kxWuFEErXzoGg==",
|
|
2111
2111
|
"license": "MIT",
|
|
2112
2112
|
"dependencies": {
|
|
2113
|
-
"@floating-ui/react-dom": "^2.1.
|
|
2113
|
+
"@floating-ui/react-dom": "^2.1.7",
|
|
2114
2114
|
"@floating-ui/utils": "^0.2.10",
|
|
2115
2115
|
"tabbable": "^6.0.0"
|
|
2116
2116
|
},
|
|
@@ -2120,11 +2120,11 @@
|
|
|
2120
2120
|
}
|
|
2121
2121
|
},
|
|
2122
2122
|
"node_modules/@floating-ui/react-dom": {
|
|
2123
|
-
"version": "2.1.
|
|
2124
|
-
"integrity": "sha512-
|
|
2123
|
+
"version": "2.1.7",
|
|
2124
|
+
"integrity": "sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==",
|
|
2125
2125
|
"license": "MIT",
|
|
2126
2126
|
"dependencies": {
|
|
2127
|
-
"@floating-ui/dom": "^1.7.
|
|
2127
|
+
"@floating-ui/dom": "^1.7.5"
|
|
2128
2128
|
},
|
|
2129
2129
|
"peerDependencies": {
|
|
2130
2130
|
"react": ">=16.8.0",
|
|
@@ -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
|
],
|
|
@@ -2641,8 +2740,8 @@
|
|
|
2641
2740
|
}
|
|
2642
2741
|
},
|
|
2643
2742
|
"node_modules/@internationalized/date": {
|
|
2644
|
-
"version": "3.
|
|
2645
|
-
"integrity": "sha512-
|
|
2743
|
+
"version": "3.11.0",
|
|
2744
|
+
"integrity": "sha512-BOx5huLAWhicM9/ZFs84CzP+V3gBW6vlpM02yzsdYC7TGlZJX1OJiEEHcSayF00Z+3jLlm4w79amvSt6RqKN3Q==",
|
|
2646
2745
|
"license": "Apache-2.0",
|
|
2647
2746
|
"dependencies": {
|
|
2648
2747
|
"@swc/helpers": "^0.5.0"
|
|
@@ -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.7",
|
|
3021
|
+
"integrity": "sha512-w7r1+CYhG0syCAQUWAuV5zSaU2/67WA9JXUderdb7DzCIJdp/5RmJv6L85wRjgKCMsxFF0Kfn0kPgPbPgw/jdw==",
|
|
2923
3022
|
"license": "MIT",
|
|
2924
3023
|
"peer": true,
|
|
2925
3024
|
"dependencies": {
|
|
2926
3025
|
"@babel/runtime": "^7.28.4",
|
|
2927
|
-
"@mui/utils": "^7.3.
|
|
3026
|
+
"@mui/utils": "^7.3.7",
|
|
2928
3027
|
"prop-types": "^15.8.1"
|
|
2929
3028
|
},
|
|
2930
3029
|
"engines": {
|
|
@@ -2945,17 +3044,17 @@
|
|
|
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.7",
|
|
3048
|
+
"integrity": "sha512-+YjnjMRnyeTkWnspzoxRdiSOgkrcpTikhNPoxOZW0APXx+urHtUoXJ9lbtCZRCA5a4dg5gSbd19alL1DvRs5fg==",
|
|
2950
3049
|
"license": "MIT",
|
|
2951
3050
|
"peer": true,
|
|
2952
3051
|
"dependencies": {
|
|
2953
3052
|
"@babel/runtime": "^7.28.4",
|
|
2954
|
-
"@mui/types": "^7.4.
|
|
3053
|
+
"@mui/types": "^7.4.10",
|
|
2955
3054
|
"@types/prop-types": "^15.7.15",
|
|
2956
3055
|
"clsx": "^2.1.1",
|
|
2957
3056
|
"prop-types": "^15.8.1",
|
|
2958
|
-
"react-is": "^19.2.
|
|
3057
|
+
"react-is": "^19.2.3"
|
|
2959
3058
|
},
|
|
2960
3059
|
"engines": {
|
|
2961
3060
|
"node": ">=14.0.0"
|
|
@@ -2975,8 +3074,8 @@
|
|
|
2975
3074
|
}
|
|
2976
3075
|
},
|
|
2977
3076
|
"node_modules/@mui/styled-engine": {
|
|
2978
|
-
"version": "7.3.
|
|
2979
|
-
"integrity": "sha512
|
|
3077
|
+
"version": "7.3.7",
|
|
3078
|
+
"integrity": "sha512-y/QkNXv6cF6dZ5APztd/dFWfQ6LHKPx3skyYO38YhQD4+Cxd6sFAL3Z38WMSSC8LQz145Mpp3CcLrSCLKPwYAg==",
|
|
2980
3079
|
"license": "MIT",
|
|
2981
3080
|
"peer": true,
|
|
2982
3081
|
"dependencies": {
|
|
@@ -2984,7 +3083,7 @@
|
|
|
2984
3083
|
"@emotion/cache": "^11.14.0",
|
|
2985
3084
|
"@emotion/serialize": "^1.3.3",
|
|
2986
3085
|
"@emotion/sheet": "^1.4.0",
|
|
2987
|
-
"csstype": "^3.
|
|
3086
|
+
"csstype": "^3.2.3",
|
|
2988
3087
|
"prop-types": "^15.8.1"
|
|
2989
3088
|
},
|
|
2990
3089
|
"engines": {
|
|
@@ -3009,18 +3108,18 @@
|
|
|
3009
3108
|
}
|
|
3010
3109
|
},
|
|
3011
3110
|
"node_modules/@mui/system": {
|
|
3012
|
-
"version": "7.3.
|
|
3013
|
-
"integrity": "sha512-
|
|
3111
|
+
"version": "7.3.7",
|
|
3112
|
+
"integrity": "sha512-DovL3k+FBRKnhmatzUMyO5bKkhMLlQ9L7Qw5qHrre3m8zCZmE+31NDVBFfqrbrA7sq681qaEIHdkWD5nmiAjyQ==",
|
|
3014
3113
|
"license": "MIT",
|
|
3015
3114
|
"peer": true,
|
|
3016
3115
|
"dependencies": {
|
|
3017
3116
|
"@babel/runtime": "^7.28.4",
|
|
3018
|
-
"@mui/private-theming": "^7.3.
|
|
3019
|
-
"@mui/styled-engine": "^7.3.
|
|
3020
|
-
"@mui/types": "^7.4.
|
|
3021
|
-
"@mui/utils": "^7.3.
|
|
3117
|
+
"@mui/private-theming": "^7.3.7",
|
|
3118
|
+
"@mui/styled-engine": "^7.3.7",
|
|
3119
|
+
"@mui/types": "^7.4.10",
|
|
3120
|
+
"@mui/utils": "^7.3.7",
|
|
3022
3121
|
"clsx": "^2.1.1",
|
|
3023
|
-
"csstype": "^3.
|
|
3122
|
+
"csstype": "^3.2.3",
|
|
3024
3123
|
"prop-types": "^15.8.1"
|
|
3025
3124
|
},
|
|
3026
3125
|
"engines": {
|
|
@@ -3049,17 +3148,17 @@
|
|
|
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.7",
|
|
3152
|
+
"integrity": "sha512-+YjnjMRnyeTkWnspzoxRdiSOgkrcpTikhNPoxOZW0APXx+urHtUoXJ9lbtCZRCA5a4dg5gSbd19alL1DvRs5fg==",
|
|
3054
3153
|
"license": "MIT",
|
|
3055
3154
|
"peer": true,
|
|
3056
3155
|
"dependencies": {
|
|
3057
3156
|
"@babel/runtime": "^7.28.4",
|
|
3058
|
-
"@mui/types": "^7.4.
|
|
3157
|
+
"@mui/types": "^7.4.10",
|
|
3059
3158
|
"@types/prop-types": "^15.7.15",
|
|
3060
3159
|
"clsx": "^2.1.1",
|
|
3061
3160
|
"prop-types": "^15.8.1",
|
|
3062
|
-
"react-is": "^19.2.
|
|
3161
|
+
"react-is": "^19.2.3"
|
|
3063
3162
|
},
|
|
3064
3163
|
"engines": {
|
|
3065
3164
|
"node": ">=14.0.0"
|
|
@@ -3079,8 +3178,8 @@
|
|
|
3079
3178
|
}
|
|
3080
3179
|
},
|
|
3081
3180
|
"node_modules/@mui/types": {
|
|
3082
|
-
"version": "7.4.
|
|
3083
|
-
"integrity": "sha512-
|
|
3181
|
+
"version": "7.4.10",
|
|
3182
|
+
"integrity": "sha512-0+4mSjknSu218GW3isRqoxKRTOrTLd/vHi/7UC4+wZcUrOAqD9kRk7UQRL1mcrzqRoe7s3UT6rsRpbLkW5mHpQ==",
|
|
3084
3183
|
"license": "MIT",
|
|
3085
3184
|
"dependencies": {
|
|
3086
3185
|
"@babel/runtime": "^7.28.4"
|
|
@@ -3137,13 +3236,13 @@
|
|
|
3137
3236
|
}
|
|
3138
3237
|
},
|
|
3139
3238
|
"node_modules/@mui/x-date-pickers": {
|
|
3140
|
-
"version": "8.
|
|
3141
|
-
"integrity": "sha512-
|
|
3239
|
+
"version": "8.27.0",
|
|
3240
|
+
"integrity": "sha512-mw47IgelP5qFSBANqxUhqDEly2XO9RT/BcNKwgumy8BmmdosrGAmTev8dgFMoWg20iPHxEczlpBdDGyV6ht0jg==",
|
|
3142
3241
|
"license": "MIT",
|
|
3143
3242
|
"dependencies": {
|
|
3144
3243
|
"@babel/runtime": "^7.28.4",
|
|
3145
3244
|
"@mui/utils": "^7.3.5",
|
|
3146
|
-
"@mui/x-internals": "8.
|
|
3245
|
+
"@mui/x-internals": "8.26.0",
|
|
3147
3246
|
"@types/react-transition-group": "^4.4.12",
|
|
3148
3247
|
"clsx": "^2.1.1",
|
|
3149
3248
|
"prop-types": "^15.8.1",
|
|
@@ -3202,16 +3301,16 @@
|
|
|
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.7",
|
|
3305
|
+
"integrity": "sha512-+YjnjMRnyeTkWnspzoxRdiSOgkrcpTikhNPoxOZW0APXx+urHtUoXJ9lbtCZRCA5a4dg5gSbd19alL1DvRs5fg==",
|
|
3207
3306
|
"license": "MIT",
|
|
3208
3307
|
"dependencies": {
|
|
3209
3308
|
"@babel/runtime": "^7.28.4",
|
|
3210
|
-
"@mui/types": "^7.4.
|
|
3309
|
+
"@mui/types": "^7.4.10",
|
|
3211
3310
|
"@types/prop-types": "^15.7.15",
|
|
3212
3311
|
"clsx": "^2.1.1",
|
|
3213
3312
|
"prop-types": "^15.8.1",
|
|
3214
|
-
"react-is": "^19.2.
|
|
3313
|
+
"react-is": "^19.2.3"
|
|
3215
3314
|
},
|
|
3216
3315
|
"engines": {
|
|
3217
3316
|
"node": ">=14.0.0"
|
|
@@ -3231,8 +3330,8 @@
|
|
|
3231
3330
|
}
|
|
3232
3331
|
},
|
|
3233
3332
|
"node_modules/@mui/x-internals": {
|
|
3234
|
-
"version": "8.
|
|
3235
|
-
"integrity": "sha512-
|
|
3333
|
+
"version": "8.26.0",
|
|
3334
|
+
"integrity": "sha512-B9OZau5IQUvIxwpJZhoFJKqRpmWf5r0yMmSXjQuqb5WuqM755EuzWJOenY48denGoENzMLT8hQpA0hRTeU2IPA==",
|
|
3236
3335
|
"license": "MIT",
|
|
3237
3336
|
"dependencies": {
|
|
3238
3337
|
"@babel/runtime": "^7.28.4",
|
|
@@ -3252,16 +3351,16 @@
|
|
|
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.7",
|
|
3355
|
+
"integrity": "sha512-+YjnjMRnyeTkWnspzoxRdiSOgkrcpTikhNPoxOZW0APXx+urHtUoXJ9lbtCZRCA5a4dg5gSbd19alL1DvRs5fg==",
|
|
3257
3356
|
"license": "MIT",
|
|
3258
3357
|
"dependencies": {
|
|
3259
3358
|
"@babel/runtime": "^7.28.4",
|
|
3260
|
-
"@mui/types": "^7.4.
|
|
3359
|
+
"@mui/types": "^7.4.10",
|
|
3261
3360
|
"@types/prop-types": "^15.7.15",
|
|
3262
3361
|
"clsx": "^2.1.1",
|
|
3263
3362
|
"prop-types": "^15.8.1",
|
|
3264
|
-
"react-is": "^19.2.
|
|
3363
|
+
"react-is": "^19.2.3"
|
|
3265
3364
|
},
|
|
3266
3365
|
"engines": {
|
|
3267
3366
|
"node": ">=14.0.0"
|
|
@@ -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
|
],
|
|
@@ -3487,13 +3586,13 @@
|
|
|
3487
3586
|
}
|
|
3488
3587
|
},
|
|
3489
3588
|
"node_modules/@react-aria/focus": {
|
|
3490
|
-
"version": "3.21.
|
|
3491
|
-
"integrity": "sha512-
|
|
3589
|
+
"version": "3.21.4",
|
|
3590
|
+
"integrity": "sha512-6gz+j9ip0/vFRTKJMl3R30MHopn4i19HqqLfSQfElxJD+r9hBnYG1Q6Wd/kl/WRR1+CALn2F+rn06jUnf5sT8Q==",
|
|
3492
3591
|
"license": "Apache-2.0",
|
|
3493
3592
|
"dependencies": {
|
|
3494
|
-
"@react-aria/interactions": "^3.
|
|
3495
|
-
"@react-aria/utils": "^3.
|
|
3496
|
-
"@react-types/shared": "^3.
|
|
3593
|
+
"@react-aria/interactions": "^3.27.0",
|
|
3594
|
+
"@react-aria/utils": "^3.33.0",
|
|
3595
|
+
"@react-types/shared": "^3.33.0",
|
|
3497
3596
|
"@swc/helpers": "^0.5.0",
|
|
3498
3597
|
"clsx": "^2.0.0"
|
|
3499
3598
|
},
|
|
@@ -3503,17 +3602,17 @@
|
|
|
3503
3602
|
}
|
|
3504
3603
|
},
|
|
3505
3604
|
"node_modules/@react-aria/i18n": {
|
|
3506
|
-
"version": "3.12.
|
|
3507
|
-
"integrity": "sha512-
|
|
3605
|
+
"version": "3.12.15",
|
|
3606
|
+
"integrity": "sha512-3CrAN7ORVHrckvTmbPq76jFZabqq+rScosGT5+ElircJ5rF5+JcdT99Hp5Xg6R10jk74e8G3xiqdYsUd+7iJMA==",
|
|
3508
3607
|
"license": "Apache-2.0",
|
|
3509
3608
|
"dependencies": {
|
|
3510
|
-
"@internationalized/date": "^3.
|
|
3609
|
+
"@internationalized/date": "^3.11.0",
|
|
3511
3610
|
"@internationalized/message": "^3.1.8",
|
|
3512
3611
|
"@internationalized/number": "^3.6.5",
|
|
3513
3612
|
"@internationalized/string": "^3.2.7",
|
|
3514
3613
|
"@react-aria/ssr": "^3.9.10",
|
|
3515
|
-
"@react-aria/utils": "^3.
|
|
3516
|
-
"@react-types/shared": "^3.
|
|
3614
|
+
"@react-aria/utils": "^3.33.0",
|
|
3615
|
+
"@react-types/shared": "^3.33.0",
|
|
3517
3616
|
"@swc/helpers": "^0.5.0"
|
|
3518
3617
|
},
|
|
3519
3618
|
"peerDependencies": {
|
|
@@ -3522,14 +3621,14 @@
|
|
|
3522
3621
|
}
|
|
3523
3622
|
},
|
|
3524
3623
|
"node_modules/@react-aria/interactions": {
|
|
3525
|
-
"version": "3.
|
|
3526
|
-
"integrity": "sha512-
|
|
3624
|
+
"version": "3.27.0",
|
|
3625
|
+
"integrity": "sha512-D27pOy+0jIfHK60BB26AgqjjRFOYdvVSkwC31b2LicIzRCSPOSP06V4gMHuGmkhNTF4+YWDi1HHYjxIvMeiSlA==",
|
|
3527
3626
|
"license": "Apache-2.0",
|
|
3528
3627
|
"dependencies": {
|
|
3529
3628
|
"@react-aria/ssr": "^3.9.10",
|
|
3530
|
-
"@react-aria/utils": "^3.
|
|
3629
|
+
"@react-aria/utils": "^3.33.0",
|
|
3531
3630
|
"@react-stately/flags": "^3.1.2",
|
|
3532
|
-
"@react-types/shared": "^3.
|
|
3631
|
+
"@react-types/shared": "^3.33.0",
|
|
3533
3632
|
"@swc/helpers": "^0.5.0"
|
|
3534
3633
|
},
|
|
3535
3634
|
"peerDependencies": {
|
|
@@ -3538,20 +3637,20 @@
|
|
|
3538
3637
|
}
|
|
3539
3638
|
},
|
|
3540
3639
|
"node_modules/@react-aria/overlays": {
|
|
3541
|
-
"version": "3.31.
|
|
3542
|
-
"integrity": "sha512-
|
|
3640
|
+
"version": "3.31.1",
|
|
3641
|
+
"integrity": "sha512-U5BedzcXU97U5PWm4kIPnNoVpAs9KjTYfbkGx33vapmTVpGYhQyYW9eg6zW2E8ZKsyFJtQ/jkQnbWGen97aHSQ==",
|
|
3543
3642
|
"license": "Apache-2.0",
|
|
3544
3643
|
"dependencies": {
|
|
3545
|
-
"@react-aria/focus": "^3.21.
|
|
3546
|
-
"@react-aria/i18n": "^3.12.
|
|
3547
|
-
"@react-aria/interactions": "^3.
|
|
3644
|
+
"@react-aria/focus": "^3.21.4",
|
|
3645
|
+
"@react-aria/i18n": "^3.12.15",
|
|
3646
|
+
"@react-aria/interactions": "^3.27.0",
|
|
3548
3647
|
"@react-aria/ssr": "^3.9.10",
|
|
3549
|
-
"@react-aria/utils": "^3.
|
|
3550
|
-
"@react-aria/visually-hidden": "^3.8.
|
|
3551
|
-
"@react-stately/overlays": "^3.6.
|
|
3552
|
-
"@react-types/button": "^3.
|
|
3553
|
-
"@react-types/overlays": "^3.9.
|
|
3554
|
-
"@react-types/shared": "^3.
|
|
3648
|
+
"@react-aria/utils": "^3.33.0",
|
|
3649
|
+
"@react-aria/visually-hidden": "^3.8.30",
|
|
3650
|
+
"@react-stately/overlays": "^3.6.22",
|
|
3651
|
+
"@react-types/button": "^3.15.0",
|
|
3652
|
+
"@react-types/overlays": "^3.9.3",
|
|
3653
|
+
"@react-types/shared": "^3.33.0",
|
|
3555
3654
|
"@swc/helpers": "^0.5.0"
|
|
3556
3655
|
},
|
|
3557
3656
|
"peerDependencies": {
|
|
@@ -3574,14 +3673,14 @@
|
|
|
3574
3673
|
}
|
|
3575
3674
|
},
|
|
3576
3675
|
"node_modules/@react-aria/utils": {
|
|
3577
|
-
"version": "3.
|
|
3578
|
-
"integrity": "sha512
|
|
3676
|
+
"version": "3.33.0",
|
|
3677
|
+
"integrity": "sha512-yvz7CMH8d2VjwbSa5nGXqjU031tYhD8ddax95VzJsHSPyqHDEGfxul8RkhGV6oO7bVqZxVs6xY66NIgae+FHjw==",
|
|
3579
3678
|
"license": "Apache-2.0",
|
|
3580
3679
|
"dependencies": {
|
|
3581
3680
|
"@react-aria/ssr": "^3.9.10",
|
|
3582
3681
|
"@react-stately/flags": "^3.1.2",
|
|
3583
3682
|
"@react-stately/utils": "^3.11.0",
|
|
3584
|
-
"@react-types/shared": "^3.
|
|
3683
|
+
"@react-types/shared": "^3.33.0",
|
|
3585
3684
|
"@swc/helpers": "^0.5.0",
|
|
3586
3685
|
"clsx": "^2.0.0"
|
|
3587
3686
|
},
|
|
@@ -3591,13 +3690,13 @@
|
|
|
3591
3690
|
}
|
|
3592
3691
|
},
|
|
3593
3692
|
"node_modules/@react-aria/visually-hidden": {
|
|
3594
|
-
"version": "3.8.
|
|
3595
|
-
"integrity": "sha512-
|
|
3693
|
+
"version": "3.8.30",
|
|
3694
|
+
"integrity": "sha512-iY44USEU8sJy0NOJ/sTDn3YlspbhHuVG3nx2YYrzfmxbS3i+lNwkCfG8kJ77dtmbuDLIdBGKENjGkbcwz3kiJg==",
|
|
3596
3695
|
"license": "Apache-2.0",
|
|
3597
3696
|
"dependencies": {
|
|
3598
|
-
"@react-aria/interactions": "^3.
|
|
3599
|
-
"@react-aria/utils": "^3.
|
|
3600
|
-
"@react-types/shared": "^3.
|
|
3697
|
+
"@react-aria/interactions": "^3.27.0",
|
|
3698
|
+
"@react-aria/utils": "^3.33.0",
|
|
3699
|
+
"@react-types/shared": "^3.33.0",
|
|
3601
3700
|
"@swc/helpers": "^0.5.0"
|
|
3602
3701
|
},
|
|
3603
3702
|
"peerDependencies": {
|
|
@@ -3614,12 +3713,12 @@
|
|
|
3614
3713
|
}
|
|
3615
3714
|
},
|
|
3616
3715
|
"node_modules/@react-stately/overlays": {
|
|
3617
|
-
"version": "3.6.
|
|
3618
|
-
"integrity": "sha512-
|
|
3716
|
+
"version": "3.6.22",
|
|
3717
|
+
"integrity": "sha512-sWBnuy5dqVp8d+1e+ABTRVB3YBcOW86/90pF5PWY44au3bUFXVSUBO2QMdR/6JtojDoPRmrjufonI19/Zs/20w==",
|
|
3619
3718
|
"license": "Apache-2.0",
|
|
3620
3719
|
"dependencies": {
|
|
3621
3720
|
"@react-stately/utils": "^3.11.0",
|
|
3622
|
-
"@react-types/overlays": "^3.9.
|
|
3721
|
+
"@react-types/overlays": "^3.9.3",
|
|
3623
3722
|
"@swc/helpers": "^0.5.0"
|
|
3624
3723
|
},
|
|
3625
3724
|
"peerDependencies": {
|
|
@@ -3638,30 +3737,30 @@
|
|
|
3638
3737
|
}
|
|
3639
3738
|
},
|
|
3640
3739
|
"node_modules/@react-types/button": {
|
|
3641
|
-
"version": "3.
|
|
3642
|
-
"integrity": "sha512-
|
|
3740
|
+
"version": "3.15.0",
|
|
3741
|
+
"integrity": "sha512-X/K2/Oeuq7Hi8nMIzx4/YlZuvWFiSOHZt27p4HmThCnNO/9IDFPmvPrpkYjWN5eN9Nuk+P5vZUb4A7QJgYpvGA==",
|
|
3643
3742
|
"license": "Apache-2.0",
|
|
3644
3743
|
"dependencies": {
|
|
3645
|
-
"@react-types/shared": "^3.
|
|
3744
|
+
"@react-types/shared": "^3.33.0"
|
|
3646
3745
|
},
|
|
3647
3746
|
"peerDependencies": {
|
|
3648
3747
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3649
3748
|
}
|
|
3650
3749
|
},
|
|
3651
3750
|
"node_modules/@react-types/overlays": {
|
|
3652
|
-
"version": "3.9.
|
|
3653
|
-
"integrity": "sha512-
|
|
3751
|
+
"version": "3.9.3",
|
|
3752
|
+
"integrity": "sha512-LzetThNNk8T26pQRbs1I7+isuFhdFYREy7wJCsZmbB0FnZgCukGTfOtThZWv+ry11veyVJiX68jfl4SV6ACTWA==",
|
|
3654
3753
|
"license": "Apache-2.0",
|
|
3655
3754
|
"dependencies": {
|
|
3656
|
-
"@react-types/shared": "^3.
|
|
3755
|
+
"@react-types/shared": "^3.33.0"
|
|
3657
3756
|
},
|
|
3658
3757
|
"peerDependencies": {
|
|
3659
3758
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3660
3759
|
}
|
|
3661
3760
|
},
|
|
3662
3761
|
"node_modules/@react-types/shared": {
|
|
3663
|
-
"version": "3.
|
|
3664
|
-
"integrity": "sha512-
|
|
3762
|
+
"version": "3.33.0",
|
|
3763
|
+
"integrity": "sha512-xuUpP6MyuPmJtzNOqF5pzFUIHH2YogyOQfUQHag54PRmWB7AbjuGWBUv0l1UDmz6+AbzAYGmDVAzcRDOu2PFpw==",
|
|
3665
3764
|
"license": "Apache-2.0",
|
|
3666
3765
|
"peerDependencies": {
|
|
3667
3766
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
@@ -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.18",
|
|
3834
|
+
"integrity": "sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==",
|
|
3741
3835
|
"license": "Apache-2.0",
|
|
3742
3836
|
"dependencies": {
|
|
3743
3837
|
"tslib": "^2.8.0"
|
|
@@ -3821,8 +3915,8 @@
|
|
|
3821
3915
|
}
|
|
3822
3916
|
},
|
|
3823
3917
|
"node_modules/@types/d3-shape": {
|
|
3824
|
-
"version": "3.1.
|
|
3825
|
-
"integrity": "sha512-
|
|
3918
|
+
"version": "3.1.8",
|
|
3919
|
+
"integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
|
|
3826
3920
|
"license": "MIT",
|
|
3827
3921
|
"dependencies": {
|
|
3828
3922
|
"@types/d3-path": "*"
|
|
@@ -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.23",
|
|
3961
|
+
"integrity": "sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==",
|
|
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.31",
|
|
3976
|
+
"integrity": "sha512-5jsi0wpncvTD33Sh1UCgacK37FFwDn+EG7wCmEvs62fCvBL+n8/76cAYDok21NF6+jaVWIqKwCZyX7Vbu8eB3A==",
|
|
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.11",
|
|
3995
|
+
"integrity": "sha512-tORuanb01iEzWvMGVGv2ZDhYZVeRMrw453DCSAIn/5yvcSVnMoUMTyf33nQJLahYEnv9xqrTNbgz4qY5EfSh0g==",
|
|
3902
3996
|
"license": "MIT",
|
|
3903
3997
|
"dependencies": {
|
|
3904
3998
|
"csstype": "^3.2.2"
|
|
@@ -3954,19 +4048,19 @@
|
|
|
3954
4048
|
"license": "MIT"
|
|
3955
4049
|
},
|
|
3956
4050
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
3957
|
-
"version": "8.
|
|
3958
|
-
"integrity": "sha512-
|
|
4051
|
+
"version": "8.54.0",
|
|
4052
|
+
"integrity": "sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==",
|
|
3959
4053
|
"dev": true,
|
|
3960
4054
|
"license": "MIT",
|
|
3961
4055
|
"dependencies": {
|
|
3962
|
-
"@eslint-community/regexpp": "^4.
|
|
3963
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3964
|
-
"@typescript-eslint/type-utils": "8.
|
|
3965
|
-
"@typescript-eslint/utils": "8.
|
|
3966
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3967
|
-
"ignore": "^7.0.
|
|
4056
|
+
"@eslint-community/regexpp": "^4.12.2",
|
|
4057
|
+
"@typescript-eslint/scope-manager": "8.54.0",
|
|
4058
|
+
"@typescript-eslint/type-utils": "8.54.0",
|
|
4059
|
+
"@typescript-eslint/utils": "8.54.0",
|
|
4060
|
+
"@typescript-eslint/visitor-keys": "8.54.0",
|
|
4061
|
+
"ignore": "^7.0.5",
|
|
3968
4062
|
"natural-compare": "^1.4.0",
|
|
3969
|
-
"ts-api-utils": "^2.
|
|
4063
|
+
"ts-api-utils": "^2.4.0"
|
|
3970
4064
|
},
|
|
3971
4065
|
"engines": {
|
|
3972
4066
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.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.54.0",
|
|
3980
4074
|
"eslint": "^8.57.0 || ^9.0.0",
|
|
3981
4075
|
"typescript": ">=4.8.4 <6.0.0"
|
|
3982
4076
|
}
|
|
@@ -3991,16 +4085,16 @@
|
|
|
3991
4085
|
}
|
|
3992
4086
|
},
|
|
3993
4087
|
"node_modules/@typescript-eslint/parser": {
|
|
3994
|
-
"version": "8.
|
|
3995
|
-
"integrity": "sha512-
|
|
4088
|
+
"version": "8.54.0",
|
|
4089
|
+
"integrity": "sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==",
|
|
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.
|
|
4003
|
-
"debug": "^4.3
|
|
4093
|
+
"@typescript-eslint/scope-manager": "8.54.0",
|
|
4094
|
+
"@typescript-eslint/types": "8.54.0",
|
|
4095
|
+
"@typescript-eslint/typescript-estree": "8.54.0",
|
|
4096
|
+
"@typescript-eslint/visitor-keys": "8.54.0",
|
|
4097
|
+
"debug": "^4.4.3"
|
|
4004
4098
|
},
|
|
4005
4099
|
"engines": {
|
|
4006
4100
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4015,14 +4109,14 @@
|
|
|
4015
4109
|
}
|
|
4016
4110
|
},
|
|
4017
4111
|
"node_modules/@typescript-eslint/project-service": {
|
|
4018
|
-
"version": "8.
|
|
4019
|
-
"integrity": "sha512-
|
|
4112
|
+
"version": "8.54.0",
|
|
4113
|
+
"integrity": "sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==",
|
|
4020
4114
|
"dev": true,
|
|
4021
4115
|
"license": "MIT",
|
|
4022
4116
|
"dependencies": {
|
|
4023
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4024
|
-
"@typescript-eslint/types": "^8.
|
|
4025
|
-
"debug": "^4.3
|
|
4117
|
+
"@typescript-eslint/tsconfig-utils": "^8.54.0",
|
|
4118
|
+
"@typescript-eslint/types": "^8.54.0",
|
|
4119
|
+
"debug": "^4.4.3"
|
|
4026
4120
|
},
|
|
4027
4121
|
"engines": {
|
|
4028
4122
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -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.54.0",
|
|
4134
|
+
"integrity": "sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==",
|
|
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.54.0",
|
|
4139
|
+
"@typescript-eslint/visitor-keys": "8.54.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.54.0",
|
|
4151
|
+
"integrity": "sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==",
|
|
4058
4152
|
"dev": true,
|
|
4059
4153
|
"license": "MIT",
|
|
4060
4154
|
"engines": {
|
|
@@ -4069,16 +4163,16 @@
|
|
|
4069
4163
|
}
|
|
4070
4164
|
},
|
|
4071
4165
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4072
|
-
"version": "8.
|
|
4073
|
-
"integrity": "sha512-
|
|
4166
|
+
"version": "8.54.0",
|
|
4167
|
+
"integrity": "sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==",
|
|
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.
|
|
4080
|
-
"debug": "^4.3
|
|
4081
|
-
"ts-api-utils": "^2.
|
|
4171
|
+
"@typescript-eslint/types": "8.54.0",
|
|
4172
|
+
"@typescript-eslint/typescript-estree": "8.54.0",
|
|
4173
|
+
"@typescript-eslint/utils": "8.54.0",
|
|
4174
|
+
"debug": "^4.4.3",
|
|
4175
|
+
"ts-api-utils": "^2.4.0"
|
|
4082
4176
|
},
|
|
4083
4177
|
"engines": {
|
|
4084
4178
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4093,8 +4187,8 @@
|
|
|
4093
4187
|
}
|
|
4094
4188
|
},
|
|
4095
4189
|
"node_modules/@typescript-eslint/types": {
|
|
4096
|
-
"version": "8.
|
|
4097
|
-
"integrity": "sha512-
|
|
4190
|
+
"version": "8.54.0",
|
|
4191
|
+
"integrity": "sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==",
|
|
4098
4192
|
"dev": true,
|
|
4099
4193
|
"license": "MIT",
|
|
4100
4194
|
"engines": {
|
|
@@ -4106,20 +4200,20 @@
|
|
|
4106
4200
|
}
|
|
4107
4201
|
},
|
|
4108
4202
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4109
|
-
"version": "8.
|
|
4110
|
-
"integrity": "sha512-
|
|
4203
|
+
"version": "8.54.0",
|
|
4204
|
+
"integrity": "sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==",
|
|
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.
|
|
4118
|
-
"debug": "^4.3
|
|
4119
|
-
"minimatch": "^9.0.
|
|
4120
|
-
"semver": "^7.
|
|
4208
|
+
"@typescript-eslint/project-service": "8.54.0",
|
|
4209
|
+
"@typescript-eslint/tsconfig-utils": "8.54.0",
|
|
4210
|
+
"@typescript-eslint/types": "8.54.0",
|
|
4211
|
+
"@typescript-eslint/visitor-keys": "8.54.0",
|
|
4212
|
+
"debug": "^4.4.3",
|
|
4213
|
+
"minimatch": "^9.0.5",
|
|
4214
|
+
"semver": "^7.7.3",
|
|
4121
4215
|
"tinyglobby": "^0.2.15",
|
|
4122
|
-
"ts-api-utils": "^2.
|
|
4216
|
+
"ts-api-utils": "^2.4.0"
|
|
4123
4217
|
},
|
|
4124
4218
|
"engines": {
|
|
4125
4219
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4169,15 +4263,15 @@
|
|
|
4169
4263
|
}
|
|
4170
4264
|
},
|
|
4171
4265
|
"node_modules/@typescript-eslint/utils": {
|
|
4172
|
-
"version": "8.
|
|
4173
|
-
"integrity": "sha512-
|
|
4266
|
+
"version": "8.54.0",
|
|
4267
|
+
"integrity": "sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==",
|
|
4174
4268
|
"dev": true,
|
|
4175
4269
|
"license": "MIT",
|
|
4176
4270
|
"dependencies": {
|
|
4177
|
-
"@eslint-community/eslint-utils": "^4.
|
|
4178
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4179
|
-
"@typescript-eslint/types": "8.
|
|
4180
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4271
|
+
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4272
|
+
"@typescript-eslint/scope-manager": "8.54.0",
|
|
4273
|
+
"@typescript-eslint/types": "8.54.0",
|
|
4274
|
+
"@typescript-eslint/typescript-estree": "8.54.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.54.0",
|
|
4290
|
+
"integrity": "sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==",
|
|
4197
4291
|
"dev": true,
|
|
4198
4292
|
"license": "MIT",
|
|
4199
4293
|
"dependencies": {
|
|
4200
|
-
"@typescript-eslint/types": "8.
|
|
4294
|
+
"@typescript-eslint/types": "8.54.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": "
|
|
4463
|
-
"integrity": "sha512-
|
|
4556
|
+
"version": "12.0.0-next.28533",
|
|
4557
|
+
"integrity": "sha512-tURv4QFwhIdc8exeppmDwi8uFNnSoLcP1dZ47raDqe5q3xDds0tPZzXvaiQyaP8p25dUMGecfnJqOEGWPYwZEQ==",
|
|
4464
4558
|
"dev": true,
|
|
4465
4559
|
"license": "ISC",
|
|
4466
4560
|
"dependencies": {
|
|
@@ -4518,8 +4612,8 @@
|
|
|
4518
4612
|
}
|
|
4519
4613
|
},
|
|
4520
4614
|
"node_modules/ansi-escapes": {
|
|
4521
|
-
"version": "7.
|
|
4522
|
-
"integrity": "sha512-
|
|
4615
|
+
"version": "7.3.0",
|
|
4616
|
+
"integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==",
|
|
4523
4617
|
"license": "MIT",
|
|
4524
4618
|
"dependencies": {
|
|
4525
4619
|
"environment": "^1.0.0"
|
|
@@ -4774,8 +4868,8 @@
|
|
|
4774
4868
|
}
|
|
4775
4869
|
},
|
|
4776
4870
|
"node_modules/axe-core": {
|
|
4777
|
-
"version": "4.11.
|
|
4778
|
-
"integrity": "sha512-
|
|
4871
|
+
"version": "4.11.1",
|
|
4872
|
+
"integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==",
|
|
4779
4873
|
"dev": true,
|
|
4780
4874
|
"license": "MPL-2.0",
|
|
4781
4875
|
"engines": {
|
|
@@ -4783,8 +4877,8 @@
|
|
|
4783
4877
|
}
|
|
4784
4878
|
},
|
|
4785
4879
|
"node_modules/axios": {
|
|
4786
|
-
"version": "1.13.
|
|
4787
|
-
"integrity": "sha512-
|
|
4880
|
+
"version": "1.13.4",
|
|
4881
|
+
"integrity": "sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==",
|
|
4788
4882
|
"license": "MIT",
|
|
4789
4883
|
"dependencies": {
|
|
4790
4884
|
"follow-redirects": "^1.15.6",
|
|
@@ -4840,6 +4934,7 @@
|
|
|
4840
4934
|
"node_modules/babel-plugin-module-resolver/node_modules/glob": {
|
|
4841
4935
|
"version": "9.3.5",
|
|
4842
4936
|
"integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==",
|
|
4937
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
4843
4938
|
"dev": true,
|
|
4844
4939
|
"license": "ISC",
|
|
4845
4940
|
"dependencies": {
|
|
@@ -4877,13 +4972,13 @@
|
|
|
4877
4972
|
"license": "MIT"
|
|
4878
4973
|
},
|
|
4879
4974
|
"node_modules/babel-plugin-polyfill-corejs2": {
|
|
4880
|
-
"version": "0.4.
|
|
4881
|
-
"integrity": "sha512-
|
|
4975
|
+
"version": "0.4.15",
|
|
4976
|
+
"integrity": "sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==",
|
|
4882
4977
|
"dev": true,
|
|
4883
4978
|
"license": "MIT",
|
|
4884
4979
|
"dependencies": {
|
|
4885
|
-
"@babel/compat-data": "^7.
|
|
4886
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4980
|
+
"@babel/compat-data": "^7.28.6",
|
|
4981
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6",
|
|
4887
4982
|
"semver": "^6.3.1"
|
|
4888
4983
|
},
|
|
4889
4984
|
"peerDependencies": {
|
|
@@ -4891,25 +4986,25 @@
|
|
|
4891
4986
|
}
|
|
4892
4987
|
},
|
|
4893
4988
|
"node_modules/babel-plugin-polyfill-corejs3": {
|
|
4894
|
-
"version": "0.
|
|
4895
|
-
"integrity": "sha512-
|
|
4989
|
+
"version": "0.14.0",
|
|
4990
|
+
"integrity": "sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==",
|
|
4896
4991
|
"dev": true,
|
|
4897
4992
|
"license": "MIT",
|
|
4898
4993
|
"dependencies": {
|
|
4899
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4900
|
-
"core-js-compat": "^3.
|
|
4994
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6",
|
|
4995
|
+
"core-js-compat": "^3.48.0"
|
|
4901
4996
|
},
|
|
4902
4997
|
"peerDependencies": {
|
|
4903
4998
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
4904
4999
|
}
|
|
4905
5000
|
},
|
|
4906
5001
|
"node_modules/babel-plugin-polyfill-regenerator": {
|
|
4907
|
-
"version": "0.6.
|
|
4908
|
-
"integrity": "sha512-
|
|
5002
|
+
"version": "0.6.6",
|
|
5003
|
+
"integrity": "sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==",
|
|
4909
5004
|
"dev": true,
|
|
4910
5005
|
"license": "MIT",
|
|
4911
5006
|
"dependencies": {
|
|
4912
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
5007
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6"
|
|
4913
5008
|
},
|
|
4914
5009
|
"peerDependencies": {
|
|
4915
5010
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
@@ -4922,9 +5017,8 @@
|
|
|
4922
5017
|
"license": "MIT"
|
|
4923
5018
|
},
|
|
4924
5019
|
"node_modules/baseline-browser-mapping": {
|
|
4925
|
-
"version": "2.9.
|
|
4926
|
-
"integrity": "sha512-
|
|
4927
|
-
"dev": true,
|
|
5020
|
+
"version": "2.9.19",
|
|
5021
|
+
"integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
|
|
4928
5022
|
"license": "Apache-2.0",
|
|
4929
5023
|
"bin": {
|
|
4930
5024
|
"baseline-browser-mapping": "dist/cli.js"
|
|
@@ -4997,16 +5091,6 @@
|
|
|
4997
5091
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
4998
5092
|
}
|
|
4999
5093
|
},
|
|
5000
|
-
"node_modules/busboy": {
|
|
5001
|
-
"version": "1.6.0",
|
|
5002
|
-
"integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
|
|
5003
|
-
"dependencies": {
|
|
5004
|
-
"streamsearch": "^1.1.0"
|
|
5005
|
-
},
|
|
5006
|
-
"engines": {
|
|
5007
|
-
"node": ">=10.16.0"
|
|
5008
|
-
}
|
|
5009
|
-
},
|
|
5010
5094
|
"node_modules/call-bind": {
|
|
5011
5095
|
"version": "1.0.8",
|
|
5012
5096
|
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
|
|
@@ -5062,8 +5146,8 @@
|
|
|
5062
5146
|
}
|
|
5063
5147
|
},
|
|
5064
5148
|
"node_modules/caniuse-lite": {
|
|
5065
|
-
"version": "1.0.
|
|
5066
|
-
"integrity": "sha512-
|
|
5149
|
+
"version": "1.0.30001767",
|
|
5150
|
+
"integrity": "sha512-34+zUAMhSH+r+9eKmYG+k2Rpt8XttfE4yXAjoZvkAPs15xcYQhyBYdalJ65BzivAvGRMViEjy6oKr/S91loekQ==",
|
|
5067
5151
|
"funding": [
|
|
5068
5152
|
{
|
|
5069
5153
|
"type": "opencollective",
|
|
@@ -5200,23 +5284,10 @@
|
|
|
5200
5284
|
"node": ">=6"
|
|
5201
5285
|
}
|
|
5202
5286
|
},
|
|
5203
|
-
"node_modules/color": {
|
|
5204
|
-
"version": "4.2.3",
|
|
5205
|
-
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
5206
|
-
"license": "MIT",
|
|
5207
|
-
"optional": true,
|
|
5208
|
-
"dependencies": {
|
|
5209
|
-
"color-convert": "^2.0.1",
|
|
5210
|
-
"color-string": "^1.9.0"
|
|
5211
|
-
},
|
|
5212
|
-
"engines": {
|
|
5213
|
-
"node": ">=12.5.0"
|
|
5214
|
-
}
|
|
5215
|
-
},
|
|
5216
5287
|
"node_modules/color-convert": {
|
|
5217
5288
|
"version": "2.0.1",
|
|
5218
5289
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5219
|
-
"
|
|
5290
|
+
"dev": true,
|
|
5220
5291
|
"license": "MIT",
|
|
5221
5292
|
"dependencies": {
|
|
5222
5293
|
"color-name": "~1.1.4"
|
|
@@ -5228,19 +5299,9 @@
|
|
|
5228
5299
|
"node_modules/color-name": {
|
|
5229
5300
|
"version": "1.1.4",
|
|
5230
5301
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
5231
|
-
"
|
|
5302
|
+
"dev": true,
|
|
5232
5303
|
"license": "MIT"
|
|
5233
5304
|
},
|
|
5234
|
-
"node_modules/color-string": {
|
|
5235
|
-
"version": "1.9.1",
|
|
5236
|
-
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
|
5237
|
-
"license": "MIT",
|
|
5238
|
-
"optional": true,
|
|
5239
|
-
"dependencies": {
|
|
5240
|
-
"color-name": "^1.0.0",
|
|
5241
|
-
"simple-swizzle": "^0.2.2"
|
|
5242
|
-
}
|
|
5243
|
-
},
|
|
5244
5305
|
"node_modules/colorette": {
|
|
5245
5306
|
"version": "2.0.20",
|
|
5246
5307
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -5279,12 +5340,12 @@
|
|
|
5279
5340
|
"license": "MIT"
|
|
5280
5341
|
},
|
|
5281
5342
|
"node_modules/core-js-compat": {
|
|
5282
|
-
"version": "3.
|
|
5283
|
-
"integrity": "sha512-
|
|
5343
|
+
"version": "3.48.0",
|
|
5344
|
+
"integrity": "sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==",
|
|
5284
5345
|
"dev": true,
|
|
5285
5346
|
"license": "MIT",
|
|
5286
5347
|
"dependencies": {
|
|
5287
|
-
"browserslist": "^4.28.
|
|
5348
|
+
"browserslist": "^4.28.1"
|
|
5288
5349
|
},
|
|
5289
5350
|
"funding": {
|
|
5290
5351
|
"type": "opencollective",
|
|
@@ -5352,8 +5413,8 @@
|
|
|
5352
5413
|
}
|
|
5353
5414
|
},
|
|
5354
5415
|
"node_modules/d3-format": {
|
|
5355
|
-
"version": "3.1.
|
|
5356
|
-
"integrity": "sha512-
|
|
5416
|
+
"version": "3.1.2",
|
|
5417
|
+
"integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
|
|
5357
5418
|
"license": "ISC",
|
|
5358
5419
|
"engines": {
|
|
5359
5420
|
"node": ">=12"
|
|
@@ -5617,8 +5678,8 @@
|
|
|
5617
5678
|
}
|
|
5618
5679
|
},
|
|
5619
5680
|
"node_modules/electron-to-chromium": {
|
|
5620
|
-
"version": "1.5.
|
|
5621
|
-
"integrity": "sha512-
|
|
5681
|
+
"version": "1.5.286",
|
|
5682
|
+
"integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
|
|
5622
5683
|
"dev": true,
|
|
5623
5684
|
"license": "ISC"
|
|
5624
5685
|
},
|
|
@@ -5813,8 +5874,8 @@
|
|
|
5813
5874
|
}
|
|
5814
5875
|
},
|
|
5815
5876
|
"node_modules/es-toolkit": {
|
|
5816
|
-
"version": "1.
|
|
5817
|
-
"integrity": "sha512-
|
|
5877
|
+
"version": "1.44.0",
|
|
5878
|
+
"integrity": "sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==",
|
|
5818
5879
|
"license": "MIT",
|
|
5819
5880
|
"workspaces": [
|
|
5820
5881
|
"docs",
|
|
@@ -6197,8 +6258,8 @@
|
|
|
6197
6258
|
}
|
|
6198
6259
|
},
|
|
6199
6260
|
"node_modules/esquery": {
|
|
6200
|
-
"version": "1.
|
|
6201
|
-
"integrity": "sha512-
|
|
6261
|
+
"version": "1.7.0",
|
|
6262
|
+
"integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
|
|
6202
6263
|
"dev": true,
|
|
6203
6264
|
"license": "BSD-3-Clause",
|
|
6204
6265
|
"dependencies": {
|
|
@@ -6239,8 +6300,8 @@
|
|
|
6239
6300
|
}
|
|
6240
6301
|
},
|
|
6241
6302
|
"node_modules/eventemitter3": {
|
|
6242
|
-
"version": "5.0.
|
|
6243
|
-
"integrity": "sha512-
|
|
6303
|
+
"version": "5.0.4",
|
|
6304
|
+
"integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
|
|
6244
6305
|
"license": "MIT"
|
|
6245
6306
|
},
|
|
6246
6307
|
"node_modules/execa": {
|
|
@@ -6303,8 +6364,8 @@
|
|
|
6303
6364
|
"license": "MIT"
|
|
6304
6365
|
},
|
|
6305
6366
|
"node_modules/fastq": {
|
|
6306
|
-
"version": "1.
|
|
6307
|
-
"integrity": "sha512-
|
|
6367
|
+
"version": "1.20.1",
|
|
6368
|
+
"integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
|
|
6308
6369
|
"dev": true,
|
|
6309
6370
|
"license": "ISC",
|
|
6310
6371
|
"dependencies": {
|
|
@@ -6630,8 +6691,8 @@
|
|
|
6630
6691
|
}
|
|
6631
6692
|
},
|
|
6632
6693
|
"node_modules/get-tsconfig": {
|
|
6633
|
-
"version": "4.13.
|
|
6634
|
-
"integrity": "sha512-
|
|
6694
|
+
"version": "4.13.1",
|
|
6695
|
+
"integrity": "sha512-EoY1N2xCn44xU6750Sx7OjOIT59FkmstNc3X6y5xpz7D5cBtZRe/3pSlTkDJgqsOk3WwZPkWfonhhUJfttQo3w==",
|
|
6635
6696
|
"dev": true,
|
|
6636
6697
|
"license": "MIT",
|
|
6637
6698
|
"dependencies": {
|
|
@@ -6644,7 +6705,7 @@
|
|
|
6644
6705
|
"node_modules/glob": {
|
|
6645
6706
|
"version": "7.2.3",
|
|
6646
6707
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
6647
|
-
"deprecated": "
|
|
6708
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
6648
6709
|
"dev": true,
|
|
6649
6710
|
"license": "ISC",
|
|
6650
6711
|
"dependencies": {
|
|
@@ -7419,16 +7480,16 @@
|
|
|
7419
7480
|
}
|
|
7420
7481
|
},
|
|
7421
7482
|
"node_modules/jodit": {
|
|
7422
|
-
"version": "4.
|
|
7423
|
-
"integrity": "sha512-
|
|
7483
|
+
"version": "4.9.4",
|
|
7484
|
+
"integrity": "sha512-vrC7JqxMfUALL0Q10pq1x1RbECqENegOyAPhYbic5MiNZ+KKJRtBM+S1y6uEH2eYq4iYrp/nNVlfPWVO7OFG3A==",
|
|
7424
7485
|
"license": "MIT"
|
|
7425
7486
|
},
|
|
7426
7487
|
"node_modules/jodit-react": {
|
|
7427
|
-
"version": "5.
|
|
7428
|
-
"integrity": "sha512-
|
|
7488
|
+
"version": "5.3.21",
|
|
7489
|
+
"integrity": "sha512-dSFVKkrDVbhVwKDjuFMJ3HhPdqeEz/Yz5MhJf9v9B3Gg29CnelKCZ00h6MxXzlhglF3qvtvUTc2HSKrSB15khw==",
|
|
7429
7490
|
"license": "MIT",
|
|
7430
7491
|
"dependencies": {
|
|
7431
|
-
"jodit": "^4.
|
|
7492
|
+
"jodit": "^4.9.4"
|
|
7432
7493
|
},
|
|
7433
7494
|
"peerDependencies": {
|
|
7434
7495
|
"react": "~0.14 || ^15 || ^16 || ^17 || ^18 || ^19",
|
|
@@ -7602,8 +7663,8 @@
|
|
|
7602
7663
|
}
|
|
7603
7664
|
},
|
|
7604
7665
|
"node_modules/lint-staged/node_modules/commander": {
|
|
7605
|
-
"version": "14.0.
|
|
7606
|
-
"integrity": "sha512-
|
|
7666
|
+
"version": "14.0.3",
|
|
7667
|
+
"integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==",
|
|
7607
7668
|
"license": "MIT",
|
|
7608
7669
|
"engines": {
|
|
7609
7670
|
"node": ">=20"
|
|
@@ -7655,13 +7716,13 @@
|
|
|
7655
7716
|
}
|
|
7656
7717
|
},
|
|
7657
7718
|
"node_modules/lodash": {
|
|
7658
|
-
"version": "4.17.
|
|
7659
|
-
"integrity": "sha512-
|
|
7719
|
+
"version": "4.17.23",
|
|
7720
|
+
"integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
|
|
7660
7721
|
"license": "MIT"
|
|
7661
7722
|
},
|
|
7662
7723
|
"node_modules/lodash-es": {
|
|
7663
|
-
"version": "4.17.
|
|
7664
|
-
"integrity": "sha512-
|
|
7724
|
+
"version": "4.17.23",
|
|
7725
|
+
"integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
|
|
7665
7726
|
"license": "MIT"
|
|
7666
7727
|
},
|
|
7667
7728
|
"node_modules/lodash.debounce": {
|
|
@@ -7904,15 +7965,13 @@
|
|
|
7904
7965
|
"license": "MIT"
|
|
7905
7966
|
},
|
|
7906
7967
|
"node_modules/next": {
|
|
7907
|
-
"version": "
|
|
7908
|
-
"integrity": "sha512-
|
|
7909
|
-
"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==",
|
|
7910
7970
|
"license": "MIT",
|
|
7911
7971
|
"dependencies": {
|
|
7912
|
-
"@next/env": "
|
|
7913
|
-
"@swc/counter": "0.1.3",
|
|
7972
|
+
"@next/env": "16.1.1",
|
|
7914
7973
|
"@swc/helpers": "0.5.15",
|
|
7915
|
-
"
|
|
7974
|
+
"baseline-browser-mapping": "^2.8.3",
|
|
7916
7975
|
"caniuse-lite": "^1.0.30001579",
|
|
7917
7976
|
"postcss": "8.4.31",
|
|
7918
7977
|
"styled-jsx": "5.1.6"
|
|
@@ -7921,22 +7980,22 @@
|
|
|
7921
7980
|
"next": "dist/bin/next"
|
|
7922
7981
|
},
|
|
7923
7982
|
"engines": {
|
|
7924
|
-
"node": "
|
|
7983
|
+
"node": ">=20.9.0"
|
|
7925
7984
|
},
|
|
7926
7985
|
"optionalDependencies": {
|
|
7927
|
-
"@next/swc-darwin-arm64": "
|
|
7928
|
-
"@next/swc-darwin-x64": "
|
|
7929
|
-
"@next/swc-linux-arm64-gnu": "
|
|
7930
|
-
"@next/swc-linux-arm64-musl": "
|
|
7931
|
-
"@next/swc-linux-x64-gnu": "
|
|
7932
|
-
"@next/swc-linux-x64-musl": "
|
|
7933
|
-
"@next/swc-win32-arm64-msvc": "
|
|
7934
|
-
"@next/swc-win32-x64-msvc": "
|
|
7935
|
-
"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"
|
|
7936
7995
|
},
|
|
7937
7996
|
"peerDependencies": {
|
|
7938
7997
|
"@opentelemetry/api": "^1.1.0",
|
|
7939
|
-
"@playwright/test": "^1.
|
|
7998
|
+
"@playwright/test": "^1.51.1",
|
|
7940
7999
|
"babel-plugin-react-compiler": "*",
|
|
7941
8000
|
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
7942
8001
|
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
@@ -8490,8 +8549,8 @@
|
|
|
8490
8549
|
}
|
|
8491
8550
|
},
|
|
8492
8551
|
"node_modules/prettier": {
|
|
8493
|
-
"version": "3.
|
|
8494
|
-
"integrity": "sha512-
|
|
8552
|
+
"version": "3.8.1",
|
|
8553
|
+
"integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==",
|
|
8495
8554
|
"dev": true,
|
|
8496
8555
|
"license": "MIT",
|
|
8497
8556
|
"bin": {
|
|
@@ -8573,8 +8632,8 @@
|
|
|
8573
8632
|
"license": "MIT"
|
|
8574
8633
|
},
|
|
8575
8634
|
"node_modules/react": {
|
|
8576
|
-
"version": "19.2.
|
|
8577
|
-
"integrity": "sha512-
|
|
8635
|
+
"version": "19.2.4",
|
|
8636
|
+
"integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
|
|
8578
8637
|
"license": "MIT",
|
|
8579
8638
|
"engines": {
|
|
8580
8639
|
"node": ">=0.10.0"
|
|
@@ -8598,19 +8657,19 @@
|
|
|
8598
8657
|
}
|
|
8599
8658
|
},
|
|
8600
8659
|
"node_modules/react-dom": {
|
|
8601
|
-
"version": "19.2.
|
|
8602
|
-
"integrity": "sha512-
|
|
8660
|
+
"version": "19.2.4",
|
|
8661
|
+
"integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
|
|
8603
8662
|
"license": "MIT",
|
|
8604
8663
|
"dependencies": {
|
|
8605
8664
|
"scheduler": "^0.27.0"
|
|
8606
8665
|
},
|
|
8607
8666
|
"peerDependencies": {
|
|
8608
|
-
"react": "^19.2.
|
|
8667
|
+
"react": "^19.2.4"
|
|
8609
8668
|
}
|
|
8610
8669
|
},
|
|
8611
8670
|
"node_modules/react-hook-form": {
|
|
8612
|
-
"version": "7.
|
|
8613
|
-
"integrity": "sha512-
|
|
8671
|
+
"version": "7.71.1",
|
|
8672
|
+
"integrity": "sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w==",
|
|
8614
8673
|
"license": "MIT",
|
|
8615
8674
|
"engines": {
|
|
8616
8675
|
"node": ">=18.0.0"
|
|
@@ -8624,8 +8683,8 @@
|
|
|
8624
8683
|
}
|
|
8625
8684
|
},
|
|
8626
8685
|
"node_modules/react-is": {
|
|
8627
|
-
"version": "19.2.
|
|
8628
|
-
"integrity": "sha512-
|
|
8686
|
+
"version": "19.2.4",
|
|
8687
|
+
"integrity": "sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==",
|
|
8629
8688
|
"license": "MIT"
|
|
8630
8689
|
},
|
|
8631
8690
|
"node_modules/react-redux": {
|
|
@@ -8687,8 +8746,8 @@
|
|
|
8687
8746
|
}
|
|
8688
8747
|
},
|
|
8689
8748
|
"node_modules/recharts": {
|
|
8690
|
-
"version": "3.
|
|
8691
|
-
"integrity": "sha512-
|
|
8749
|
+
"version": "3.7.0",
|
|
8750
|
+
"integrity": "sha512-l2VCsy3XXeraxIID9fx23eCb6iCBsxUQDnE8tWm6DFdszVAO7WVY/ChAD9wVit01y6B2PMupYiMmQwhgPHc9Ew==",
|
|
8692
8751
|
"license": "MIT",
|
|
8693
8752
|
"workspaces": [
|
|
8694
8753
|
"www"
|
|
@@ -9030,15 +9089,15 @@
|
|
|
9030
9089
|
}
|
|
9031
9090
|
},
|
|
9032
9091
|
"node_modules/sharp": {
|
|
9033
|
-
"version": "0.
|
|
9034
|
-
"integrity": "sha512-
|
|
9092
|
+
"version": "0.34.5",
|
|
9093
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
9035
9094
|
"hasInstallScript": true,
|
|
9036
9095
|
"license": "Apache-2.0",
|
|
9037
9096
|
"optional": true,
|
|
9038
9097
|
"dependencies": {
|
|
9039
|
-
"
|
|
9040
|
-
"detect-libc": "^2.
|
|
9041
|
-
"semver": "^7.
|
|
9098
|
+
"@img/colour": "^1.0.0",
|
|
9099
|
+
"detect-libc": "^2.1.2",
|
|
9100
|
+
"semver": "^7.7.3"
|
|
9042
9101
|
},
|
|
9043
9102
|
"engines": {
|
|
9044
9103
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -9047,25 +9106,30 @@
|
|
|
9047
9106
|
"url": "https://opencollective.com/libvips"
|
|
9048
9107
|
},
|
|
9049
9108
|
"optionalDependencies": {
|
|
9050
|
-
"@img/sharp-darwin-arm64": "0.
|
|
9051
|
-
"@img/sharp-darwin-x64": "0.
|
|
9052
|
-
"@img/sharp-libvips-darwin-arm64": "1.
|
|
9053
|
-
"@img/sharp-libvips-darwin-x64": "1.
|
|
9054
|
-
"@img/sharp-libvips-linux-arm": "1.
|
|
9055
|
-
"@img/sharp-libvips-linux-arm64": "1.
|
|
9056
|
-
"@img/sharp-libvips-linux-
|
|
9057
|
-
"@img/sharp-libvips-linux-
|
|
9058
|
-
"@img/sharp-libvips-
|
|
9059
|
-
"@img/sharp-libvips-
|
|
9060
|
-
"@img/sharp-
|
|
9061
|
-
"@img/sharp-
|
|
9062
|
-
"@img/sharp-linux-
|
|
9063
|
-
"@img/sharp-linux-
|
|
9064
|
-
"@img/sharp-
|
|
9065
|
-
"@img/sharp-
|
|
9066
|
-
"@img/sharp-
|
|
9067
|
-
"@img/sharp-
|
|
9068
|
-
"@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"
|
|
9069
9133
|
}
|
|
9070
9134
|
},
|
|
9071
9135
|
"node_modules/sharp/node_modules/semver": {
|
|
@@ -9182,21 +9246,6 @@
|
|
|
9182
9246
|
"url": "https://github.com/sponsors/isaacs"
|
|
9183
9247
|
}
|
|
9184
9248
|
},
|
|
9185
|
-
"node_modules/simple-swizzle": {
|
|
9186
|
-
"version": "0.2.4",
|
|
9187
|
-
"integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
|
|
9188
|
-
"license": "MIT",
|
|
9189
|
-
"optional": true,
|
|
9190
|
-
"dependencies": {
|
|
9191
|
-
"is-arrayish": "^0.3.1"
|
|
9192
|
-
}
|
|
9193
|
-
},
|
|
9194
|
-
"node_modules/simple-swizzle/node_modules/is-arrayish": {
|
|
9195
|
-
"version": "0.3.4",
|
|
9196
|
-
"integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
|
|
9197
|
-
"license": "MIT",
|
|
9198
|
-
"optional": true
|
|
9199
|
-
},
|
|
9200
9249
|
"node_modules/slash": {
|
|
9201
9250
|
"version": "2.0.0",
|
|
9202
9251
|
"integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
|
|
@@ -9267,13 +9316,6 @@
|
|
|
9267
9316
|
"node": ">= 0.4"
|
|
9268
9317
|
}
|
|
9269
9318
|
},
|
|
9270
|
-
"node_modules/streamsearch": {
|
|
9271
|
-
"version": "1.1.0",
|
|
9272
|
-
"integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
|
|
9273
|
-
"engines": {
|
|
9274
|
-
"node": ">=10.0.0"
|
|
9275
|
-
}
|
|
9276
|
-
},
|
|
9277
9319
|
"node_modules/string-argv": {
|
|
9278
9320
|
"version": "0.3.2",
|
|
9279
9321
|
"integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
|
|
@@ -9283,8 +9325,8 @@
|
|
|
9283
9325
|
}
|
|
9284
9326
|
},
|
|
9285
9327
|
"node_modules/string-width": {
|
|
9286
|
-
"version": "8.1.
|
|
9287
|
-
"integrity": "sha512-
|
|
9328
|
+
"version": "8.1.1",
|
|
9329
|
+
"integrity": "sha512-KpqHIdDL9KwYk22wEOg/VIqYbrnLeSApsKT/bSj6Ez7pn3CftUiLAv2Lccpq1ALcpLV9UX1Ppn92npZWu2w/aw==",
|
|
9288
9330
|
"license": "MIT",
|
|
9289
9331
|
"dependencies": {
|
|
9290
9332
|
"get-east-asian-width": "^1.3.0",
|
|
@@ -9501,8 +9543,8 @@
|
|
|
9501
9543
|
}
|
|
9502
9544
|
},
|
|
9503
9545
|
"node_modules/tabbable": {
|
|
9504
|
-
"version": "6.
|
|
9505
|
-
"integrity": "sha512-
|
|
9546
|
+
"version": "6.4.0",
|
|
9547
|
+
"integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==",
|
|
9506
9548
|
"license": "MIT"
|
|
9507
9549
|
},
|
|
9508
9550
|
"node_modules/tiny-invariant": {
|
|
@@ -9572,8 +9614,8 @@
|
|
|
9572
9614
|
}
|
|
9573
9615
|
},
|
|
9574
9616
|
"node_modules/ts-api-utils": {
|
|
9575
|
-
"version": "2.
|
|
9576
|
-
"integrity": "sha512-
|
|
9617
|
+
"version": "2.4.0",
|
|
9618
|
+
"integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==",
|
|
9577
9619
|
"dev": true,
|
|
9578
9620
|
"license": "MIT",
|
|
9579
9621
|
"engines": {
|
|
@@ -9976,8 +10018,8 @@
|
|
|
9976
10018
|
}
|
|
9977
10019
|
},
|
|
9978
10020
|
"node_modules/which-typed-array": {
|
|
9979
|
-
"version": "1.1.
|
|
9980
|
-
"integrity": "sha512-
|
|
10021
|
+
"version": "1.1.20",
|
|
10022
|
+
"integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
|
|
9981
10023
|
"dev": true,
|
|
9982
10024
|
"license": "MIT",
|
|
9983
10025
|
"dependencies": {
|