@wavemaker/react-runtime 11.14.2-rc.6311 → 11.15.0-1.246
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/base-action.js +5 -7
- package/actions/login-action.js +7 -8
- package/actions/logout-action.js +5 -7
- package/actions/navigation-action.js +73 -18
- package/actions/notification-action.js +22 -8
- package/actions/timer-action.js +13 -15
- package/actions/toast.js +4 -2
- package/actions/toast.service.js +1 -2
- package/components/advanced/carousel/index.js +1 -1
- package/components/advanced/carousel/template.js +1 -1
- package/components/basic/anchor/index.js +31 -11
- package/components/basic/html/index.js +115 -24
- package/components/basic/icon/index.js +2 -1
- package/components/basic/iframe/index.js +2 -1
- package/components/basic/label/index.js +12 -9
- package/components/basic/message/index.js +12 -3
- package/components/basic/picture/index.js +11 -4
- package/components/basic/progress-bar/index.js +4 -1
- package/components/basic/progress-circle/index.js +34 -28
- package/components/basic/progress-circle/props.js +10 -2
- package/components/basic/richtexteditor/index.js +95 -94
- package/components/basic/search/index.js +401 -156
- package/components/basic/search/providers.js +126 -61
- package/components/basic/spinner/index.js +2 -1
- package/components/basic/tree/index.js +34 -34
- package/components/basic/tree/utils.js +10 -4
- package/components/chart/components/barColumnChart/index.js +36 -33
- package/components/chart/components/bubbleChart/index.js +35 -25
- package/components/chart/components/chartLegend/utils.js +2 -1
- package/components/chart/components/cumulativeLineChart/index.js +30 -26
- package/components/chart/components/lineAreaChart/index.js +50 -32
- package/components/chart/components/pieDonutChart/index.js +13 -4
- package/components/chart/hooks/useXAxisConfig.js +15 -8
- package/components/chart/index.js +223 -53
- package/components/chart/utils.js +12 -1
- package/components/constants.js +5 -2
- package/components/container/accordion/accordion-pane/index.js +17 -12
- package/components/container/accordion/index.js +9 -4
- package/components/container/alignment-utils.js +56 -1
- package/components/container/index.js +49 -20
- package/components/container/panel/components/panel-header/index.js +3 -4
- package/components/container/panel/index.js +15 -10
- package/components/container/repeat-template/index.js +33 -0
- package/components/container/tabs/index.js +83 -14
- package/components/container/tabs/tab-pane/index.js +33 -10
- package/components/container/tabs/utils.js +51 -0
- package/components/container/wizard/components/StepComponents.js +2 -1
- package/components/container/wizard/components/WizardStep.js +2 -1
- package/components/container/wizard/index.js +64 -35
- package/components/container/wizard/utils.js +46 -1
- package/components/container/wizard/wizard-step/index.js +11 -1
- package/components/data/card/card-content/index.js +1 -1
- package/components/data/form/base-form/index.js +985 -183
- package/components/data/form/base-form/props.js +3 -1
- package/components/data/form/base-form/utils.js +159 -1
- package/components/data/form/dynamic-fields/constant.js +53 -0
- package/components/data/form/dynamic-fields/index.js +10 -45
- package/components/data/form/dynamic-fields/utils.js +37 -2
- package/components/data/form/form-action/index.js +5 -4
- package/components/data/form/form-context.js +5 -1
- package/components/data/form/form-controller/utils.js +84 -0
- package/components/data/form/form-controller/validation-contrustor.js +402 -189
- package/components/data/form/form-controller/withFormController.js +191 -52
- package/components/data/form/form-field/base-field.js +67 -45
- package/components/data/form/form-field/index.js +28 -5
- package/components/data/form/form-header/index.js +3 -4
- package/components/data/form/index.js +20 -1
- package/components/data/list/components/ListDND.js +2 -1
- package/components/data/list/components/ListItem.js +6 -2
- package/components/data/list/components/ListItemWithTemplate.js +46 -2
- package/components/data/list/components/ListItems.js +17 -26
- package/components/data/list/components/ListPagination.js +3 -3
- package/components/data/list/components/StandardListItems.js +3 -4
- package/components/data/list/hooks/useListEffects.js +55 -14
- package/components/data/list/hooks/useListEventHandlers.js +3 -1
- package/components/data/list/hooks/useListState.js +3 -1
- package/components/data/list/hooks/usePaginatedGroupedData.js +18 -5
- package/components/data/list/index.js +74 -55
- package/components/data/list/utils/list-helpers.js +73 -35
- package/components/data/list/utils/list-widget-methods.js +138 -95
- package/components/data/live-filter/index.js +26 -15
- package/components/data/live-form/index.js +51 -18
- package/components/data/live-form/props.js +1 -1
- package/components/data/pagination/components/BasicPagination.js +71 -16
- package/components/data/pagination/components/PageSizeSelector.js +8 -3
- package/components/data/pagination/components/TotalRecords.js +1 -5
- package/components/data/pagination/hooks/usePagination.js +349 -66
- package/components/data/pagination/index.js +137 -19
- package/components/data/table/components/AddNewRow.js +5 -1
- package/components/data/table/components/EditableCell.js +2 -2
- package/components/data/table/components/RowCells.js +64 -0
- package/components/data/table/components/RowExpansionButton.js +2 -2
- package/components/data/table/components/SummaryCell.js +111 -0
- package/components/data/table/components/SummaryRow.js +54 -0
- package/components/data/table/components/SummaryRowFooter.js +46 -0
- package/components/data/table/components/TableBody.js +61 -59
- package/components/data/table/components/TableDataRow.js +109 -0
- package/components/data/table/components/TableFilters.js +225 -121
- package/components/data/table/components/TableHeader.js +291 -23
- package/components/data/table/components/TablePanelHeading.js +139 -8
- package/components/data/table/components/index.js +22 -1
- package/components/data/table/hooks/use-edited-rows.js +141 -0
- package/components/data/table/hooks/useCellState.js +5 -12
- package/components/data/table/hooks/useFormWidget.js +58 -52
- package/components/data/table/hooks/usePaginationState.js +45 -24
- package/components/data/table/hooks/usePanelStructure.js +4 -4
- package/components/data/table/hooks/useRowHandlers.js +39 -5
- package/components/data/table/hooks/useRowSelection.js +244 -50
- package/components/data/table/hooks/useServerSideSorting.js +81 -37
- package/components/data/table/hooks/useTableColumns.js +211 -118
- package/components/data/table/hooks/useTableData.js +54 -9
- package/components/data/table/hooks/useTableEdit.js +272 -97
- package/components/data/table/hooks/useTableEffects.js +31 -13
- package/components/data/table/hooks/useTableFilter.js +1 -1
- package/components/data/table/hooks/useTableInitialization.js +23 -22
- package/components/data/table/hooks/useTableState.js +11 -5
- package/components/data/table/hooks/useTableStateManager.js +140 -65
- package/components/data/table/index.js +637 -274
- package/components/data/table/live-table/index.js +54 -22
- package/components/data/table/table-action/index.js +1 -1
- package/components/data/table/table-group/index.js +26 -0
- package/components/data/table/table-row-action/index.js +32 -18
- package/components/data/table/utils/buildSelectionColumns.js +12 -21
- package/components/data/table/utils/columnBuilder.js +29 -14
- package/components/data/table/utils/columnProxy.js +68 -1
- package/components/data/table/utils/constants.js +6 -2
- package/components/data/table/utils/crud-handlers.js +68 -63
- package/components/data/table/utils/groupHeaderUtils.js +102 -0
- package/components/data/table/utils/index.js +210 -21
- package/components/data/table/utils/renderDisplayCell.js +6 -6
- package/components/data/table/utils/selectionUtils.js +25 -26
- package/components/data/table/utils/validation.js +1 -0
- package/components/data/utils/filter-field-util.js +3 -3
- package/components/dialogs/alert-dialog/index.js +1 -1
- package/components/dialogs/confirm-dialog/index.js +1 -1
- package/components/dialogs/dialog/index.js +4 -1
- package/components/dialogs/dialog-content/index.js +3 -1
- package/components/dialogs/dialog-header/index.js +2 -2
- package/components/dialogs/iframe-dialog/index.js +11 -5
- package/components/dialogs/index.js +1 -1
- package/components/dialogs/login-dialog/index.js +1 -1
- package/components/dialogs/page-dialog/index.js +1 -1
- package/components/form/button/index.js +33 -7
- package/components/input/calendar/index.js +18 -6
- package/components/input/chips/index.js +99 -28
- package/components/input/chips/utils.js +34 -4
- package/components/input/color-picker/index.js +74 -25
- package/components/input/composite/index.js +3 -3
- package/components/input/currency/index.js +35 -49
- package/components/input/default/checkbox/index.js +23 -28
- package/components/input/default/checkboxset/index.js +38 -18
- package/components/input/default/checkboxset/utils.js +30 -0
- package/components/input/default/radioset/index.js +36 -39
- package/components/input/default/switch/index.js +30 -13
- package/components/input/epoch/date/index.js +130 -69
- package/components/input/epoch/date/utils.js +94 -1
- package/components/input/epoch/datetime/index.js +72 -22
- package/components/input/epoch/datetime/utils.js +49 -10
- package/components/input/epoch/time/index.js +68 -19
- package/components/input/epoch/time/utils.js +62 -14
- package/components/input/fileupload/Utils.js +12 -7
- package/components/input/fileupload/components/MultiUpload.js +2 -6
- package/components/input/fileupload/components/SingleUpload.js +3 -7
- package/components/input/fileupload/index.js +6 -10
- package/components/input/fileupload/useFileUpload.js +16 -5
- package/components/input/number/index.js +158 -43
- package/components/input/rating/index.js +90 -7
- package/components/input/select/index.js +209 -72
- package/components/input/slider/index.js +84 -26
- package/components/input/text/index.js +38 -18
- package/components/input/text/util.js +283 -130
- package/components/input/textarea/index.js +13 -10
- package/components/input/upload/index.js +124 -0
- package/components/input/upload/props.js +5 -0
- package/components/input/util/index.js +11 -0
- package/components/navbar/index.js +51 -3
- package/components/navbar/nav/index.js +46 -16
- package/components/navbar/nav-item/index.js +11 -5
- package/components/navigation/menu/components/ListItems.js +3 -0
- package/components/navigation/menu/constants.js +2 -1
- package/components/navigation/menu/hooks/useHoverState.hook.js +48 -0
- package/components/navigation/menu/hooks/useKeyboardMovements.hook.js +37 -0
- package/components/navigation/menu/hooks/useTransformedDataset.hook.js +15 -0
- package/components/navigation/menu/index.js +326 -188
- package/components/navigation/menu/utils/action-task.js +14 -0
- package/components/navigation/menu/utils/role-filter.js +76 -0
- package/components/navigation/popover/index.js +105 -32
- package/components/page/partial-container/index.js +34 -5
- package/components/prefab/index.js +2 -4
- package/context/PrefabContext.js +10 -6
- package/context/WidgetProvider.js +30 -31
- package/core/app.service.js +1 -1
- package/core/constants/events.js +57 -1
- package/core/dialog.service.js +1 -2
- package/core/event-notifier.js +1 -2
- package/core/formatter/array-formatters.js +33 -0
- package/core/formatter/date-formatters.js +2 -4
- package/core/formatter/index.js +2 -1
- package/core/formatter/number-formatters.js +5 -10
- package/core/formatter/security-formatters.js +2 -4
- package/core/formatter/string-formatters.js +3 -6
- package/core/proxy-service.js +85 -13
- package/core/script-registry.js +108 -48
- package/core/util/common.js +4 -4
- package/core/util/compare.js +30 -0
- package/core/util/dom.js +8 -8
- package/core/util/index.js +16 -6
- package/core/util/safe-is-equal.js +156 -0
- package/core/util/security.js +1 -2
- package/core/util/utils.js +16 -7
- package/higherOrder/BaseApp.js +108 -65
- package/higherOrder/BaseDateTime.js +31 -13
- package/higherOrder/BasePage.js +268 -144
- package/higherOrder/BasePartial.js +1 -1
- package/higherOrder/BasePrefab.js +33 -15
- package/higherOrder/DataNav.js +99 -16
- package/higherOrder/helper.js +41 -3
- package/higherOrder/withBaseWrapper.js +41 -28
- package/hooks/useAuth.js +11 -5
- package/hooks/useHttp.js +280 -94
- package/mui-config/theme-provider.js +1 -1
- package/mui-config/theme.js +1 -1
- package/package-lock.json +840 -740
- package/package.json +8 -8
- package/store/bindActions/i18nActions.js +18 -0
- package/store/index.js +3 -1
- package/store/slices/appConfigSlice.js +2 -2
- package/store/slices/authSlice.js +31 -28
- package/store/slices/i18nSlice.js +2 -2
- package/store/slices/navigationSlice.js +35 -0
- package/store/viewport.service.js +255 -0
- package/utils/attr.js +35 -0
- package/utils/dataset-util.js +1 -2
- package/utils/form-state.util.js +43 -12
- package/utils/form-utils.js +47 -2
- package/utils/format-util.js +28 -13
- package/utils/page-params-util.js +33 -1
- package/utils/state-persistance.js +72 -13
- package/utils/transformedDataset-utils.js +35 -24
- package/variables/base-variable.js +12 -14
- package/variables/crud-variable.js +225 -0
- package/variables/live-variable.js +56 -20
- package/variables/metadata.service.js +123 -0
- package/variables/model-variable.js +21 -15
- package/variables/service-variable.js +88 -83
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/react-runtime",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.15.0-1.246",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/react-runtime",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.15.0-1.246",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui-components/react": "1.0.0-alpha.8",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"lint-staged": "^16.2.0",
|
|
38
38
|
"lodash-es": "^4.17.21",
|
|
39
39
|
"moment-timezone": "^0.6.0",
|
|
40
|
-
"next": "
|
|
40
|
+
"next": "16.1.1",
|
|
41
41
|
"qrcodejs2": "^0.0.2",
|
|
42
|
-
"react": "^19.
|
|
42
|
+
"react": "^19.2.3",
|
|
43
43
|
"react-color": "^2.19.3",
|
|
44
|
-
"react-dom": "^19.
|
|
44
|
+
"react-dom": "^19.2.3",
|
|
45
45
|
"react-hook-form": "^7.58.1",
|
|
46
46
|
"react-redux": "^9.2.0",
|
|
47
47
|
"recharts": "^3.0.2"
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"@types/js-cookie": "^3.0.6",
|
|
57
57
|
"@types/lodash-es": "^4.17.12",
|
|
58
58
|
"@types/node": "^20",
|
|
59
|
-
"@types/react": "^19",
|
|
59
|
+
"@types/react": "^19.2.8",
|
|
60
60
|
"@types/react-color": "^3.0.13",
|
|
61
|
-
"@types/react-dom": "^19",
|
|
62
|
-
"@wavemaker/variables": "11.
|
|
61
|
+
"@types/react-dom": "^19.2.3",
|
|
62
|
+
"@wavemaker/variables": "11.15.0-1.246",
|
|
63
63
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
64
64
|
"eslint": "^9",
|
|
65
65
|
"eslint-config-next": "15.1.4",
|
|
@@ -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",
|
|
@@ -1696,6 +1696,7 @@
|
|
|
1696
1696
|
"node_modules/@base-ui-components/react": {
|
|
1697
1697
|
"version": "1.0.0-alpha.8",
|
|
1698
1698
|
"integrity": "sha512-tGSksjEjA9TPguCXzFZU2cpvvsE6lnkVWVI0qSk3Zl/jQiE9F6opPVBp1uzHcJou7hj7fr6pEgtNf7WzsiXh4Q==",
|
|
1699
|
+
"deprecated": "Package was renamed to @base-ui/react",
|
|
1699
1700
|
"license": "MIT",
|
|
1700
1701
|
"dependencies": {
|
|
1701
1702
|
"@babel/runtime": "^7.27.0",
|
|
@@ -1786,8 +1787,8 @@
|
|
|
1786
1787
|
}
|
|
1787
1788
|
},
|
|
1788
1789
|
"node_modules/@emnapi/core": {
|
|
1789
|
-
"version": "1.
|
|
1790
|
-
"integrity": "sha512-
|
|
1790
|
+
"version": "1.8.1",
|
|
1791
|
+
"integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
|
|
1791
1792
|
"dev": true,
|
|
1792
1793
|
"license": "MIT",
|
|
1793
1794
|
"optional": true,
|
|
@@ -1797,8 +1798,8 @@
|
|
|
1797
1798
|
}
|
|
1798
1799
|
},
|
|
1799
1800
|
"node_modules/@emnapi/runtime": {
|
|
1800
|
-
"version": "1.
|
|
1801
|
-
"integrity": "sha512-
|
|
1801
|
+
"version": "1.8.1",
|
|
1802
|
+
"integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
|
|
1802
1803
|
"license": "MIT",
|
|
1803
1804
|
"optional": true,
|
|
1804
1805
|
"dependencies": {
|
|
@@ -1954,8 +1955,9 @@
|
|
|
1954
1955
|
"license": "MIT"
|
|
1955
1956
|
},
|
|
1956
1957
|
"node_modules/@eslint-community/eslint-utils": {
|
|
1957
|
-
"version": "4.9.
|
|
1958
|
-
"integrity": "sha512-
|
|
1958
|
+
"version": "4.9.1",
|
|
1959
|
+
"integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
|
|
1960
|
+
"dev": true,
|
|
1959
1961
|
"license": "MIT",
|
|
1960
1962
|
"dependencies": {
|
|
1961
1963
|
"eslint-visitor-keys": "^3.4.3"
|
|
@@ -1973,6 +1975,7 @@
|
|
|
1973
1975
|
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
|
|
1974
1976
|
"version": "3.4.3",
|
|
1975
1977
|
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
|
|
1978
|
+
"dev": true,
|
|
1976
1979
|
"license": "Apache-2.0",
|
|
1977
1980
|
"engines": {
|
|
1978
1981
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -1984,6 +1987,7 @@
|
|
|
1984
1987
|
"node_modules/@eslint-community/regexpp": {
|
|
1985
1988
|
"version": "4.12.2",
|
|
1986
1989
|
"integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
|
|
1990
|
+
"dev": true,
|
|
1987
1991
|
"license": "MIT",
|
|
1988
1992
|
"engines": {
|
|
1989
1993
|
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
|
@@ -1992,6 +1996,7 @@
|
|
|
1992
1996
|
"node_modules/@eslint/config-array": {
|
|
1993
1997
|
"version": "0.21.1",
|
|
1994
1998
|
"integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==",
|
|
1999
|
+
"dev": true,
|
|
1995
2000
|
"license": "Apache-2.0",
|
|
1996
2001
|
"dependencies": {
|
|
1997
2002
|
"@eslint/object-schema": "^2.1.7",
|
|
@@ -2005,6 +2010,7 @@
|
|
|
2005
2010
|
"node_modules/@eslint/config-helpers": {
|
|
2006
2011
|
"version": "0.4.2",
|
|
2007
2012
|
"integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
|
|
2013
|
+
"dev": true,
|
|
2008
2014
|
"license": "Apache-2.0",
|
|
2009
2015
|
"dependencies": {
|
|
2010
2016
|
"@eslint/core": "^0.17.0"
|
|
@@ -2016,6 +2022,7 @@
|
|
|
2016
2022
|
"node_modules/@eslint/core": {
|
|
2017
2023
|
"version": "0.17.0",
|
|
2018
2024
|
"integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
|
|
2025
|
+
"dev": true,
|
|
2019
2026
|
"license": "Apache-2.0",
|
|
2020
2027
|
"dependencies": {
|
|
2021
2028
|
"@types/json-schema": "^7.0.15"
|
|
@@ -2025,8 +2032,9 @@
|
|
|
2025
2032
|
}
|
|
2026
2033
|
},
|
|
2027
2034
|
"node_modules/@eslint/eslintrc": {
|
|
2028
|
-
"version": "3.3.
|
|
2029
|
-
"integrity": "sha512-
|
|
2035
|
+
"version": "3.3.3",
|
|
2036
|
+
"integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
|
|
2037
|
+
"dev": true,
|
|
2030
2038
|
"license": "MIT",
|
|
2031
2039
|
"dependencies": {
|
|
2032
2040
|
"ajv": "^6.12.4",
|
|
@@ -2035,7 +2043,7 @@
|
|
|
2035
2043
|
"globals": "^14.0.0",
|
|
2036
2044
|
"ignore": "^5.2.0",
|
|
2037
2045
|
"import-fresh": "^3.2.1",
|
|
2038
|
-
"js-yaml": "^4.1.
|
|
2046
|
+
"js-yaml": "^4.1.1",
|
|
2039
2047
|
"minimatch": "^3.1.2",
|
|
2040
2048
|
"strip-json-comments": "^3.1.1"
|
|
2041
2049
|
},
|
|
@@ -2047,8 +2055,9 @@
|
|
|
2047
2055
|
}
|
|
2048
2056
|
},
|
|
2049
2057
|
"node_modules/@eslint/js": {
|
|
2050
|
-
"version": "9.39.
|
|
2051
|
-
"integrity": "sha512-
|
|
2058
|
+
"version": "9.39.2",
|
|
2059
|
+
"integrity": "sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==",
|
|
2060
|
+
"dev": true,
|
|
2052
2061
|
"license": "MIT",
|
|
2053
2062
|
"engines": {
|
|
2054
2063
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2060,6 +2069,7 @@
|
|
|
2060
2069
|
"node_modules/@eslint/object-schema": {
|
|
2061
2070
|
"version": "2.1.7",
|
|
2062
2071
|
"integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
|
|
2072
|
+
"dev": true,
|
|
2063
2073
|
"license": "Apache-2.0",
|
|
2064
2074
|
"engines": {
|
|
2065
2075
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2068,6 +2078,7 @@
|
|
|
2068
2078
|
"node_modules/@eslint/plugin-kit": {
|
|
2069
2079
|
"version": "0.4.1",
|
|
2070
2080
|
"integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
|
|
2081
|
+
"dev": true,
|
|
2071
2082
|
"license": "Apache-2.0",
|
|
2072
2083
|
"dependencies": {
|
|
2073
2084
|
"@eslint/core": "^0.17.0",
|
|
@@ -2078,28 +2089,28 @@
|
|
|
2078
2089
|
}
|
|
2079
2090
|
},
|
|
2080
2091
|
"node_modules/@floating-ui/core": {
|
|
2081
|
-
"version": "1.7.
|
|
2082
|
-
"integrity": "sha512-
|
|
2092
|
+
"version": "1.7.4",
|
|
2093
|
+
"integrity": "sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==",
|
|
2083
2094
|
"license": "MIT",
|
|
2084
2095
|
"dependencies": {
|
|
2085
2096
|
"@floating-ui/utils": "^0.2.10"
|
|
2086
2097
|
}
|
|
2087
2098
|
},
|
|
2088
2099
|
"node_modules/@floating-ui/dom": {
|
|
2089
|
-
"version": "1.7.
|
|
2090
|
-
"integrity": "sha512-
|
|
2100
|
+
"version": "1.7.5",
|
|
2101
|
+
"integrity": "sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==",
|
|
2091
2102
|
"license": "MIT",
|
|
2092
2103
|
"dependencies": {
|
|
2093
|
-
"@floating-ui/core": "^1.7.
|
|
2104
|
+
"@floating-ui/core": "^1.7.4",
|
|
2094
2105
|
"@floating-ui/utils": "^0.2.10"
|
|
2095
2106
|
}
|
|
2096
2107
|
},
|
|
2097
2108
|
"node_modules/@floating-ui/react": {
|
|
2098
|
-
"version": "0.27.
|
|
2099
|
-
"integrity": "sha512-
|
|
2109
|
+
"version": "0.27.17",
|
|
2110
|
+
"integrity": "sha512-LGVZKHwmWGg6MRHjLLgsfyaX2y2aCNgnD1zT/E6B+/h+vxg+nIJUqHPAlTzsHDyqdgEpJ1Np5kxWuFEErXzoGg==",
|
|
2100
2111
|
"license": "MIT",
|
|
2101
2112
|
"dependencies": {
|
|
2102
|
-
"@floating-ui/react-dom": "^2.1.
|
|
2113
|
+
"@floating-ui/react-dom": "^2.1.7",
|
|
2103
2114
|
"@floating-ui/utils": "^0.2.10",
|
|
2104
2115
|
"tabbable": "^6.0.0"
|
|
2105
2116
|
},
|
|
@@ -2109,11 +2120,11 @@
|
|
|
2109
2120
|
}
|
|
2110
2121
|
},
|
|
2111
2122
|
"node_modules/@floating-ui/react-dom": {
|
|
2112
|
-
"version": "2.1.
|
|
2113
|
-
"integrity": "sha512-
|
|
2123
|
+
"version": "2.1.7",
|
|
2124
|
+
"integrity": "sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==",
|
|
2114
2125
|
"license": "MIT",
|
|
2115
2126
|
"dependencies": {
|
|
2116
|
-
"@floating-ui/dom": "^1.7.
|
|
2127
|
+
"@floating-ui/dom": "^1.7.5"
|
|
2117
2128
|
},
|
|
2118
2129
|
"peerDependencies": {
|
|
2119
2130
|
"react": ">=16.8.0",
|
|
@@ -2234,6 +2245,7 @@
|
|
|
2234
2245
|
"node_modules/@humanfs/core": {
|
|
2235
2246
|
"version": "0.19.1",
|
|
2236
2247
|
"integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
|
|
2248
|
+
"dev": true,
|
|
2237
2249
|
"license": "Apache-2.0",
|
|
2238
2250
|
"engines": {
|
|
2239
2251
|
"node": ">=18.18.0"
|
|
@@ -2242,6 +2254,7 @@
|
|
|
2242
2254
|
"node_modules/@humanfs/node": {
|
|
2243
2255
|
"version": "0.16.7",
|
|
2244
2256
|
"integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==",
|
|
2257
|
+
"dev": true,
|
|
2245
2258
|
"license": "Apache-2.0",
|
|
2246
2259
|
"dependencies": {
|
|
2247
2260
|
"@humanfs/core": "^0.19.1",
|
|
@@ -2254,6 +2267,7 @@
|
|
|
2254
2267
|
"node_modules/@humanwhocodes/module-importer": {
|
|
2255
2268
|
"version": "1.0.1",
|
|
2256
2269
|
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
|
|
2270
|
+
"dev": true,
|
|
2257
2271
|
"license": "Apache-2.0",
|
|
2258
2272
|
"engines": {
|
|
2259
2273
|
"node": ">=12.22"
|
|
@@ -2266,6 +2280,7 @@
|
|
|
2266
2280
|
"node_modules/@humanwhocodes/retry": {
|
|
2267
2281
|
"version": "0.4.3",
|
|
2268
2282
|
"integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
|
|
2283
|
+
"dev": true,
|
|
2269
2284
|
"license": "Apache-2.0",
|
|
2270
2285
|
"engines": {
|
|
2271
2286
|
"node": ">=18.18"
|
|
@@ -2283,9 +2298,18 @@
|
|
|
2283
2298
|
"react": "*"
|
|
2284
2299
|
}
|
|
2285
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
|
+
},
|
|
2286
2310
|
"node_modules/@img/sharp-darwin-arm64": {
|
|
2287
|
-
"version": "0.
|
|
2288
|
-
"integrity": "sha512-
|
|
2311
|
+
"version": "0.34.5",
|
|
2312
|
+
"integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
|
|
2289
2313
|
"cpu": [
|
|
2290
2314
|
"arm64"
|
|
2291
2315
|
],
|
|
@@ -2301,12 +2325,12 @@
|
|
|
2301
2325
|
"url": "https://opencollective.com/libvips"
|
|
2302
2326
|
},
|
|
2303
2327
|
"optionalDependencies": {
|
|
2304
|
-
"@img/sharp-libvips-darwin-arm64": "1.
|
|
2328
|
+
"@img/sharp-libvips-darwin-arm64": "1.2.4"
|
|
2305
2329
|
}
|
|
2306
2330
|
},
|
|
2307
2331
|
"node_modules/@img/sharp-darwin-x64": {
|
|
2308
|
-
"version": "0.
|
|
2309
|
-
"integrity": "sha512-
|
|
2332
|
+
"version": "0.34.5",
|
|
2333
|
+
"integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
|
|
2310
2334
|
"cpu": [
|
|
2311
2335
|
"x64"
|
|
2312
2336
|
],
|
|
@@ -2322,12 +2346,12 @@
|
|
|
2322
2346
|
"url": "https://opencollective.com/libvips"
|
|
2323
2347
|
},
|
|
2324
2348
|
"optionalDependencies": {
|
|
2325
|
-
"@img/sharp-libvips-darwin-x64": "1.
|
|
2349
|
+
"@img/sharp-libvips-darwin-x64": "1.2.4"
|
|
2326
2350
|
}
|
|
2327
2351
|
},
|
|
2328
2352
|
"node_modules/@img/sharp-libvips-darwin-arm64": {
|
|
2329
|
-
"version": "1.
|
|
2330
|
-
"integrity": "sha512-
|
|
2353
|
+
"version": "1.2.4",
|
|
2354
|
+
"integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
|
|
2331
2355
|
"cpu": [
|
|
2332
2356
|
"arm64"
|
|
2333
2357
|
],
|
|
@@ -2341,8 +2365,8 @@
|
|
|
2341
2365
|
}
|
|
2342
2366
|
},
|
|
2343
2367
|
"node_modules/@img/sharp-libvips-darwin-x64": {
|
|
2344
|
-
"version": "1.
|
|
2345
|
-
"integrity": "sha512-
|
|
2368
|
+
"version": "1.2.4",
|
|
2369
|
+
"integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
|
|
2346
2370
|
"cpu": [
|
|
2347
2371
|
"x64"
|
|
2348
2372
|
],
|
|
@@ -2356,8 +2380,8 @@
|
|
|
2356
2380
|
}
|
|
2357
2381
|
},
|
|
2358
2382
|
"node_modules/@img/sharp-libvips-linux-arm": {
|
|
2359
|
-
"version": "1.
|
|
2360
|
-
"integrity": "sha512-
|
|
2383
|
+
"version": "1.2.4",
|
|
2384
|
+
"integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
|
|
2361
2385
|
"cpu": [
|
|
2362
2386
|
"arm"
|
|
2363
2387
|
],
|
|
@@ -2371,8 +2395,8 @@
|
|
|
2371
2395
|
}
|
|
2372
2396
|
},
|
|
2373
2397
|
"node_modules/@img/sharp-libvips-linux-arm64": {
|
|
2374
|
-
"version": "1.
|
|
2375
|
-
"integrity": "sha512-
|
|
2398
|
+
"version": "1.2.4",
|
|
2399
|
+
"integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
|
|
2376
2400
|
"cpu": [
|
|
2377
2401
|
"arm64"
|
|
2378
2402
|
],
|
|
@@ -2385,9 +2409,39 @@
|
|
|
2385
2409
|
"url": "https://opencollective.com/libvips"
|
|
2386
2410
|
}
|
|
2387
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
|
+
},
|
|
2388
2442
|
"node_modules/@img/sharp-libvips-linux-s390x": {
|
|
2389
|
-
"version": "1.
|
|
2390
|
-
"integrity": "sha512-
|
|
2443
|
+
"version": "1.2.4",
|
|
2444
|
+
"integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
|
|
2391
2445
|
"cpu": [
|
|
2392
2446
|
"s390x"
|
|
2393
2447
|
],
|
|
@@ -2401,8 +2455,8 @@
|
|
|
2401
2455
|
}
|
|
2402
2456
|
},
|
|
2403
2457
|
"node_modules/@img/sharp-libvips-linux-x64": {
|
|
2404
|
-
"version": "1.
|
|
2405
|
-
"integrity": "sha512-
|
|
2458
|
+
"version": "1.2.4",
|
|
2459
|
+
"integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
|
|
2406
2460
|
"cpu": [
|
|
2407
2461
|
"x64"
|
|
2408
2462
|
],
|
|
@@ -2416,8 +2470,8 @@
|
|
|
2416
2470
|
}
|
|
2417
2471
|
},
|
|
2418
2472
|
"node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
|
2419
|
-
"version": "1.
|
|
2420
|
-
"integrity": "sha512-
|
|
2473
|
+
"version": "1.2.4",
|
|
2474
|
+
"integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
|
|
2421
2475
|
"cpu": [
|
|
2422
2476
|
"arm64"
|
|
2423
2477
|
],
|
|
@@ -2431,8 +2485,8 @@
|
|
|
2431
2485
|
}
|
|
2432
2486
|
},
|
|
2433
2487
|
"node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
2434
|
-
"version": "1.
|
|
2435
|
-
"integrity": "sha512
|
|
2488
|
+
"version": "1.2.4",
|
|
2489
|
+
"integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
|
|
2436
2490
|
"cpu": [
|
|
2437
2491
|
"x64"
|
|
2438
2492
|
],
|
|
@@ -2446,8 +2500,8 @@
|
|
|
2446
2500
|
}
|
|
2447
2501
|
},
|
|
2448
2502
|
"node_modules/@img/sharp-linux-arm": {
|
|
2449
|
-
"version": "0.
|
|
2450
|
-
"integrity": "sha512-
|
|
2503
|
+
"version": "0.34.5",
|
|
2504
|
+
"integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
|
|
2451
2505
|
"cpu": [
|
|
2452
2506
|
"arm"
|
|
2453
2507
|
],
|
|
@@ -2463,12 +2517,12 @@
|
|
|
2463
2517
|
"url": "https://opencollective.com/libvips"
|
|
2464
2518
|
},
|
|
2465
2519
|
"optionalDependencies": {
|
|
2466
|
-
"@img/sharp-libvips-linux-arm": "1.
|
|
2520
|
+
"@img/sharp-libvips-linux-arm": "1.2.4"
|
|
2467
2521
|
}
|
|
2468
2522
|
},
|
|
2469
2523
|
"node_modules/@img/sharp-linux-arm64": {
|
|
2470
|
-
"version": "0.
|
|
2471
|
-
"integrity": "sha512-
|
|
2524
|
+
"version": "0.34.5",
|
|
2525
|
+
"integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
|
|
2472
2526
|
"cpu": [
|
|
2473
2527
|
"arm64"
|
|
2474
2528
|
],
|
|
@@ -2484,12 +2538,54 @@
|
|
|
2484
2538
|
"url": "https://opencollective.com/libvips"
|
|
2485
2539
|
},
|
|
2486
2540
|
"optionalDependencies": {
|
|
2487
|
-
"@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"
|
|
2488
2584
|
}
|
|
2489
2585
|
},
|
|
2490
2586
|
"node_modules/@img/sharp-linux-s390x": {
|
|
2491
|
-
"version": "0.
|
|
2492
|
-
"integrity": "sha512-
|
|
2587
|
+
"version": "0.34.5",
|
|
2588
|
+
"integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
|
|
2493
2589
|
"cpu": [
|
|
2494
2590
|
"s390x"
|
|
2495
2591
|
],
|
|
@@ -2505,12 +2601,12 @@
|
|
|
2505
2601
|
"url": "https://opencollective.com/libvips"
|
|
2506
2602
|
},
|
|
2507
2603
|
"optionalDependencies": {
|
|
2508
|
-
"@img/sharp-libvips-linux-s390x": "1.
|
|
2604
|
+
"@img/sharp-libvips-linux-s390x": "1.2.4"
|
|
2509
2605
|
}
|
|
2510
2606
|
},
|
|
2511
2607
|
"node_modules/@img/sharp-linux-x64": {
|
|
2512
|
-
"version": "0.
|
|
2513
|
-
"integrity": "sha512-
|
|
2608
|
+
"version": "0.34.5",
|
|
2609
|
+
"integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
|
|
2514
2610
|
"cpu": [
|
|
2515
2611
|
"x64"
|
|
2516
2612
|
],
|
|
@@ -2526,12 +2622,12 @@
|
|
|
2526
2622
|
"url": "https://opencollective.com/libvips"
|
|
2527
2623
|
},
|
|
2528
2624
|
"optionalDependencies": {
|
|
2529
|
-
"@img/sharp-libvips-linux-x64": "1.
|
|
2625
|
+
"@img/sharp-libvips-linux-x64": "1.2.4"
|
|
2530
2626
|
}
|
|
2531
2627
|
},
|
|
2532
2628
|
"node_modules/@img/sharp-linuxmusl-arm64": {
|
|
2533
|
-
"version": "0.
|
|
2534
|
-
"integrity": "sha512-
|
|
2629
|
+
"version": "0.34.5",
|
|
2630
|
+
"integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
|
|
2535
2631
|
"cpu": [
|
|
2536
2632
|
"arm64"
|
|
2537
2633
|
],
|
|
@@ -2547,12 +2643,12 @@
|
|
|
2547
2643
|
"url": "https://opencollective.com/libvips"
|
|
2548
2644
|
},
|
|
2549
2645
|
"optionalDependencies": {
|
|
2550
|
-
"@img/sharp-libvips-linuxmusl-arm64": "1.
|
|
2646
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
|
|
2551
2647
|
}
|
|
2552
2648
|
},
|
|
2553
2649
|
"node_modules/@img/sharp-linuxmusl-x64": {
|
|
2554
|
-
"version": "0.
|
|
2555
|
-
"integrity": "sha512-
|
|
2650
|
+
"version": "0.34.5",
|
|
2651
|
+
"integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
|
|
2556
2652
|
"cpu": [
|
|
2557
2653
|
"x64"
|
|
2558
2654
|
],
|
|
@@ -2568,19 +2664,19 @@
|
|
|
2568
2664
|
"url": "https://opencollective.com/libvips"
|
|
2569
2665
|
},
|
|
2570
2666
|
"optionalDependencies": {
|
|
2571
|
-
"@img/sharp-libvips-linuxmusl-x64": "1.
|
|
2667
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.2.4"
|
|
2572
2668
|
}
|
|
2573
2669
|
},
|
|
2574
2670
|
"node_modules/@img/sharp-wasm32": {
|
|
2575
|
-
"version": "0.
|
|
2576
|
-
"integrity": "sha512-
|
|
2671
|
+
"version": "0.34.5",
|
|
2672
|
+
"integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
|
|
2577
2673
|
"cpu": [
|
|
2578
2674
|
"wasm32"
|
|
2579
2675
|
],
|
|
2580
2676
|
"license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
|
|
2581
2677
|
"optional": true,
|
|
2582
2678
|
"dependencies": {
|
|
2583
|
-
"@emnapi/runtime": "^1.
|
|
2679
|
+
"@emnapi/runtime": "^1.7.0"
|
|
2584
2680
|
},
|
|
2585
2681
|
"engines": {
|
|
2586
2682
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -2589,9 +2685,27 @@
|
|
|
2589
2685
|
"url": "https://opencollective.com/libvips"
|
|
2590
2686
|
}
|
|
2591
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
|
+
},
|
|
2592
2706
|
"node_modules/@img/sharp-win32-ia32": {
|
|
2593
|
-
"version": "0.
|
|
2594
|
-
"integrity": "sha512-
|
|
2707
|
+
"version": "0.34.5",
|
|
2708
|
+
"integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
|
|
2595
2709
|
"cpu": [
|
|
2596
2710
|
"ia32"
|
|
2597
2711
|
],
|
|
@@ -2608,8 +2722,8 @@
|
|
|
2608
2722
|
}
|
|
2609
2723
|
},
|
|
2610
2724
|
"node_modules/@img/sharp-win32-x64": {
|
|
2611
|
-
"version": "0.
|
|
2612
|
-
"integrity": "sha512
|
|
2725
|
+
"version": "0.34.5",
|
|
2726
|
+
"integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
|
|
2613
2727
|
"cpu": [
|
|
2614
2728
|
"x64"
|
|
2615
2729
|
],
|
|
@@ -2626,8 +2740,8 @@
|
|
|
2626
2740
|
}
|
|
2627
2741
|
},
|
|
2628
2742
|
"node_modules/@internationalized/date": {
|
|
2629
|
-
"version": "3.
|
|
2630
|
-
"integrity": "sha512-
|
|
2743
|
+
"version": "3.11.0",
|
|
2744
|
+
"integrity": "sha512-BOx5huLAWhicM9/ZFs84CzP+V3gBW6vlpM02yzsdYC7TGlZJX1OJiEEHcSayF00Z+3jLlm4w79amvSt6RqKN3Q==",
|
|
2631
2745
|
"license": "Apache-2.0",
|
|
2632
2746
|
"dependencies": {
|
|
2633
2747
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2903,13 +3017,13 @@
|
|
|
2903
3017
|
}
|
|
2904
3018
|
},
|
|
2905
3019
|
"node_modules/@mui/private-theming": {
|
|
2906
|
-
"version": "7.3.
|
|
2907
|
-
"integrity": "sha512-
|
|
3020
|
+
"version": "7.3.8",
|
|
3021
|
+
"integrity": "sha512-du5dlPZ9XL3xW2apHoGDXBI+QLtyVJGrXNCfcNYfP/ojkz1RQ0rRV6VG9Rkm1DqEFRG8mjjTL7zmE1Bvn1eR4A==",
|
|
2908
3022
|
"license": "MIT",
|
|
2909
3023
|
"peer": true,
|
|
2910
3024
|
"dependencies": {
|
|
2911
|
-
"@babel/runtime": "^7.28.
|
|
2912
|
-
"@mui/utils": "^7.3.
|
|
3025
|
+
"@babel/runtime": "^7.28.6",
|
|
3026
|
+
"@mui/utils": "^7.3.8",
|
|
2913
3027
|
"prop-types": "^15.8.1"
|
|
2914
3028
|
},
|
|
2915
3029
|
"engines": {
|
|
@@ -2930,17 +3044,17 @@
|
|
|
2930
3044
|
}
|
|
2931
3045
|
},
|
|
2932
3046
|
"node_modules/@mui/private-theming/node_modules/@mui/utils": {
|
|
2933
|
-
"version": "7.3.
|
|
2934
|
-
"integrity": "sha512-
|
|
3047
|
+
"version": "7.3.8",
|
|
3048
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
2935
3049
|
"license": "MIT",
|
|
2936
3050
|
"peer": true,
|
|
2937
3051
|
"dependencies": {
|
|
2938
|
-
"@babel/runtime": "^7.28.
|
|
2939
|
-
"@mui/types": "^7.4.
|
|
3052
|
+
"@babel/runtime": "^7.28.6",
|
|
3053
|
+
"@mui/types": "^7.4.11",
|
|
2940
3054
|
"@types/prop-types": "^15.7.15",
|
|
2941
3055
|
"clsx": "^2.1.1",
|
|
2942
3056
|
"prop-types": "^15.8.1",
|
|
2943
|
-
"react-is": "^19.2.
|
|
3057
|
+
"react-is": "^19.2.3"
|
|
2944
3058
|
},
|
|
2945
3059
|
"engines": {
|
|
2946
3060
|
"node": ">=14.0.0"
|
|
@@ -2960,16 +3074,16 @@
|
|
|
2960
3074
|
}
|
|
2961
3075
|
},
|
|
2962
3076
|
"node_modules/@mui/styled-engine": {
|
|
2963
|
-
"version": "7.3.
|
|
2964
|
-
"integrity": "sha512-
|
|
3077
|
+
"version": "7.3.8",
|
|
3078
|
+
"integrity": "sha512-JHAeXQzS0tJ+Fq3C6J4TVDsW+yKhO4uuxuiLaopNStJeQYBIUCXpKYyUCcgXym4AmhbznQnv9RlHywSH6b0FOg==",
|
|
2965
3079
|
"license": "MIT",
|
|
2966
3080
|
"peer": true,
|
|
2967
3081
|
"dependencies": {
|
|
2968
|
-
"@babel/runtime": "^7.28.
|
|
3082
|
+
"@babel/runtime": "^7.28.6",
|
|
2969
3083
|
"@emotion/cache": "^11.14.0",
|
|
2970
3084
|
"@emotion/serialize": "^1.3.3",
|
|
2971
3085
|
"@emotion/sheet": "^1.4.0",
|
|
2972
|
-
"csstype": "^3.
|
|
3086
|
+
"csstype": "^3.2.3",
|
|
2973
3087
|
"prop-types": "^15.8.1"
|
|
2974
3088
|
},
|
|
2975
3089
|
"engines": {
|
|
@@ -2994,18 +3108,18 @@
|
|
|
2994
3108
|
}
|
|
2995
3109
|
},
|
|
2996
3110
|
"node_modules/@mui/system": {
|
|
2997
|
-
"version": "7.3.
|
|
2998
|
-
"integrity": "sha512-
|
|
3111
|
+
"version": "7.3.8",
|
|
3112
|
+
"integrity": "sha512-hoFRj4Zw2Km8DPWZp/nKG+ao5Jw5LSk2m/e4EGc6M3RRwXKEkMSG4TgtfVJg7dS2homRwtdXSMW+iRO0ZJ4+IA==",
|
|
2999
3113
|
"license": "MIT",
|
|
3000
3114
|
"peer": true,
|
|
3001
3115
|
"dependencies": {
|
|
3002
|
-
"@babel/runtime": "^7.28.
|
|
3003
|
-
"@mui/private-theming": "^7.3.
|
|
3004
|
-
"@mui/styled-engine": "^7.3.
|
|
3005
|
-
"@mui/types": "^7.4.
|
|
3006
|
-
"@mui/utils": "^7.3.
|
|
3116
|
+
"@babel/runtime": "^7.28.6",
|
|
3117
|
+
"@mui/private-theming": "^7.3.8",
|
|
3118
|
+
"@mui/styled-engine": "^7.3.8",
|
|
3119
|
+
"@mui/types": "^7.4.11",
|
|
3120
|
+
"@mui/utils": "^7.3.8",
|
|
3007
3121
|
"clsx": "^2.1.1",
|
|
3008
|
-
"csstype": "^3.
|
|
3122
|
+
"csstype": "^3.2.3",
|
|
3009
3123
|
"prop-types": "^15.8.1"
|
|
3010
3124
|
},
|
|
3011
3125
|
"engines": {
|
|
@@ -3034,17 +3148,17 @@
|
|
|
3034
3148
|
}
|
|
3035
3149
|
},
|
|
3036
3150
|
"node_modules/@mui/system/node_modules/@mui/utils": {
|
|
3037
|
-
"version": "7.3.
|
|
3038
|
-
"integrity": "sha512-
|
|
3151
|
+
"version": "7.3.8",
|
|
3152
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
3039
3153
|
"license": "MIT",
|
|
3040
3154
|
"peer": true,
|
|
3041
3155
|
"dependencies": {
|
|
3042
|
-
"@babel/runtime": "^7.28.
|
|
3043
|
-
"@mui/types": "^7.4.
|
|
3156
|
+
"@babel/runtime": "^7.28.6",
|
|
3157
|
+
"@mui/types": "^7.4.11",
|
|
3044
3158
|
"@types/prop-types": "^15.7.15",
|
|
3045
3159
|
"clsx": "^2.1.1",
|
|
3046
3160
|
"prop-types": "^15.8.1",
|
|
3047
|
-
"react-is": "^19.2.
|
|
3161
|
+
"react-is": "^19.2.3"
|
|
3048
3162
|
},
|
|
3049
3163
|
"engines": {
|
|
3050
3164
|
"node": ">=14.0.0"
|
|
@@ -3064,11 +3178,11 @@
|
|
|
3064
3178
|
}
|
|
3065
3179
|
},
|
|
3066
3180
|
"node_modules/@mui/types": {
|
|
3067
|
-
"version": "7.4.
|
|
3068
|
-
"integrity": "sha512-
|
|
3181
|
+
"version": "7.4.11",
|
|
3182
|
+
"integrity": "sha512-fZ2xO9D08IKOxO2oUBi1nnVKH6oJUD+64cnv4YAaFoC0E5+i1+S5AHbNqqvZlYYsbPEQ6qEVwuBqY3jl5W4G+Q==",
|
|
3069
3183
|
"license": "MIT",
|
|
3070
3184
|
"dependencies": {
|
|
3071
|
-
"@babel/runtime": "^7.28.
|
|
3185
|
+
"@babel/runtime": "^7.28.6"
|
|
3072
3186
|
},
|
|
3073
3187
|
"peerDependencies": {
|
|
3074
3188
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
@@ -3122,13 +3236,13 @@
|
|
|
3122
3236
|
}
|
|
3123
3237
|
},
|
|
3124
3238
|
"node_modules/@mui/x-date-pickers": {
|
|
3125
|
-
"version": "8.
|
|
3126
|
-
"integrity": "sha512-
|
|
3239
|
+
"version": "8.27.0",
|
|
3240
|
+
"integrity": "sha512-mw47IgelP5qFSBANqxUhqDEly2XO9RT/BcNKwgumy8BmmdosrGAmTev8dgFMoWg20iPHxEczlpBdDGyV6ht0jg==",
|
|
3127
3241
|
"license": "MIT",
|
|
3128
3242
|
"dependencies": {
|
|
3129
3243
|
"@babel/runtime": "^7.28.4",
|
|
3130
3244
|
"@mui/utils": "^7.3.5",
|
|
3131
|
-
"@mui/x-internals": "8.
|
|
3245
|
+
"@mui/x-internals": "8.26.0",
|
|
3132
3246
|
"@types/react-transition-group": "^4.4.12",
|
|
3133
3247
|
"clsx": "^2.1.1",
|
|
3134
3248
|
"prop-types": "^15.8.1",
|
|
@@ -3187,16 +3301,16 @@
|
|
|
3187
3301
|
}
|
|
3188
3302
|
},
|
|
3189
3303
|
"node_modules/@mui/x-date-pickers/node_modules/@mui/utils": {
|
|
3190
|
-
"version": "7.3.
|
|
3191
|
-
"integrity": "sha512-
|
|
3304
|
+
"version": "7.3.8",
|
|
3305
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
3192
3306
|
"license": "MIT",
|
|
3193
3307
|
"dependencies": {
|
|
3194
|
-
"@babel/runtime": "^7.28.
|
|
3195
|
-
"@mui/types": "^7.4.
|
|
3308
|
+
"@babel/runtime": "^7.28.6",
|
|
3309
|
+
"@mui/types": "^7.4.11",
|
|
3196
3310
|
"@types/prop-types": "^15.7.15",
|
|
3197
3311
|
"clsx": "^2.1.1",
|
|
3198
3312
|
"prop-types": "^15.8.1",
|
|
3199
|
-
"react-is": "^19.2.
|
|
3313
|
+
"react-is": "^19.2.3"
|
|
3200
3314
|
},
|
|
3201
3315
|
"engines": {
|
|
3202
3316
|
"node": ">=14.0.0"
|
|
@@ -3216,8 +3330,8 @@
|
|
|
3216
3330
|
}
|
|
3217
3331
|
},
|
|
3218
3332
|
"node_modules/@mui/x-internals": {
|
|
3219
|
-
"version": "8.
|
|
3220
|
-
"integrity": "sha512-
|
|
3333
|
+
"version": "8.26.0",
|
|
3334
|
+
"integrity": "sha512-B9OZau5IQUvIxwpJZhoFJKqRpmWf5r0yMmSXjQuqb5WuqM755EuzWJOenY48denGoENzMLT8hQpA0hRTeU2IPA==",
|
|
3221
3335
|
"license": "MIT",
|
|
3222
3336
|
"dependencies": {
|
|
3223
3337
|
"@babel/runtime": "^7.28.4",
|
|
@@ -3237,16 +3351,16 @@
|
|
|
3237
3351
|
}
|
|
3238
3352
|
},
|
|
3239
3353
|
"node_modules/@mui/x-internals/node_modules/@mui/utils": {
|
|
3240
|
-
"version": "7.3.
|
|
3241
|
-
"integrity": "sha512-
|
|
3354
|
+
"version": "7.3.8",
|
|
3355
|
+
"integrity": "sha512-kZRcE2620CBGr+XI8YMmwPj6WIPwSF7uMJjvSfqd8zXVvlz0MCJbzRRUGNf8NgflCLthdji2DdS643TeyJ3+nA==",
|
|
3242
3356
|
"license": "MIT",
|
|
3243
3357
|
"dependencies": {
|
|
3244
|
-
"@babel/runtime": "^7.28.
|
|
3245
|
-
"@mui/types": "^7.4.
|
|
3358
|
+
"@babel/runtime": "^7.28.6",
|
|
3359
|
+
"@mui/types": "^7.4.11",
|
|
3246
3360
|
"@types/prop-types": "^15.7.15",
|
|
3247
3361
|
"clsx": "^2.1.1",
|
|
3248
3362
|
"prop-types": "^15.8.1",
|
|
3249
|
-
"react-is": "^19.2.
|
|
3363
|
+
"react-is": "^19.2.3"
|
|
3250
3364
|
},
|
|
3251
3365
|
"engines": {
|
|
3252
3366
|
"node": ">=14.0.0"
|
|
@@ -3278,8 +3392,8 @@
|
|
|
3278
3392
|
}
|
|
3279
3393
|
},
|
|
3280
3394
|
"node_modules/@next/env": {
|
|
3281
|
-
"version": "
|
|
3282
|
-
"integrity": "sha512-
|
|
3395
|
+
"version": "16.1.1",
|
|
3396
|
+
"integrity": "sha512-3oxyM97Sr2PqiVyMyrZUtrtM3jqqFxOQJVuKclDsgj/L728iZt/GyslkN4NwarledZATCenbk4Offjk1hQmaAA==",
|
|
3283
3397
|
"license": "MIT"
|
|
3284
3398
|
},
|
|
3285
3399
|
"node_modules/@next/eslint-plugin-next": {
|
|
@@ -3292,8 +3406,8 @@
|
|
|
3292
3406
|
}
|
|
3293
3407
|
},
|
|
3294
3408
|
"node_modules/@next/swc-darwin-arm64": {
|
|
3295
|
-
"version": "
|
|
3296
|
-
"integrity": "sha512-
|
|
3409
|
+
"version": "16.1.1",
|
|
3410
|
+
"integrity": "sha512-JS3m42ifsVSJjSTzh27nW+Igfha3NdBOFScr9C80hHGrWx55pTrVL23RJbqir7k7/15SKlrLHhh/MQzqBBYrQA==",
|
|
3297
3411
|
"cpu": [
|
|
3298
3412
|
"arm64"
|
|
3299
3413
|
],
|
|
@@ -3307,8 +3421,8 @@
|
|
|
3307
3421
|
}
|
|
3308
3422
|
},
|
|
3309
3423
|
"node_modules/@next/swc-darwin-x64": {
|
|
3310
|
-
"version": "
|
|
3311
|
-
"integrity": "sha512-
|
|
3424
|
+
"version": "16.1.1",
|
|
3425
|
+
"integrity": "sha512-hbyKtrDGUkgkyQi1m1IyD3q4I/3m9ngr+V93z4oKHrPcmxwNL5iMWORvLSGAf2YujL+6HxgVvZuCYZfLfb4bGw==",
|
|
3312
3426
|
"cpu": [
|
|
3313
3427
|
"x64"
|
|
3314
3428
|
],
|
|
@@ -3322,8 +3436,8 @@
|
|
|
3322
3436
|
}
|
|
3323
3437
|
},
|
|
3324
3438
|
"node_modules/@next/swc-linux-arm64-gnu": {
|
|
3325
|
-
"version": "
|
|
3326
|
-
"integrity": "sha512
|
|
3439
|
+
"version": "16.1.1",
|
|
3440
|
+
"integrity": "sha512-/fvHet+EYckFvRLQ0jPHJCUI5/B56+2DpI1xDSvi80r/3Ez+Eaa2Yq4tJcRTaB1kqj/HrYKn8Yplm9bNoMJpwQ==",
|
|
3327
3441
|
"cpu": [
|
|
3328
3442
|
"arm64"
|
|
3329
3443
|
],
|
|
@@ -3337,8 +3451,8 @@
|
|
|
3337
3451
|
}
|
|
3338
3452
|
},
|
|
3339
3453
|
"node_modules/@next/swc-linux-arm64-musl": {
|
|
3340
|
-
"version": "
|
|
3341
|
-
"integrity": "sha512-
|
|
3454
|
+
"version": "16.1.1",
|
|
3455
|
+
"integrity": "sha512-MFHrgL4TXNQbBPzkKKur4Fb5ICEJa87HM7fczFs2+HWblM7mMLdco3dvyTI+QmLBU9xgns/EeeINSZD6Ar+oLg==",
|
|
3342
3456
|
"cpu": [
|
|
3343
3457
|
"arm64"
|
|
3344
3458
|
],
|
|
@@ -3352,8 +3466,8 @@
|
|
|
3352
3466
|
}
|
|
3353
3467
|
},
|
|
3354
3468
|
"node_modules/@next/swc-linux-x64-gnu": {
|
|
3355
|
-
"version": "
|
|
3356
|
-
"integrity": "sha512-
|
|
3469
|
+
"version": "16.1.1",
|
|
3470
|
+
"integrity": "sha512-20bYDfgOQAPUkkKBnyP9PTuHiJGM7HzNBbuqmD0jiFVZ0aOldz+VnJhbxzjcSabYsnNjMPsE0cyzEudpYxsrUQ==",
|
|
3357
3471
|
"cpu": [
|
|
3358
3472
|
"x64"
|
|
3359
3473
|
],
|
|
@@ -3367,8 +3481,8 @@
|
|
|
3367
3481
|
}
|
|
3368
3482
|
},
|
|
3369
3483
|
"node_modules/@next/swc-linux-x64-musl": {
|
|
3370
|
-
"version": "
|
|
3371
|
-
"integrity": "sha512-
|
|
3484
|
+
"version": "16.1.1",
|
|
3485
|
+
"integrity": "sha512-9pRbK3M4asAHQRkwaXwu601oPZHghuSC8IXNENgbBSyImHv/zY4K5udBusgdHkvJ/Tcr96jJwQYOll0qU8+fPA==",
|
|
3372
3486
|
"cpu": [
|
|
3373
3487
|
"x64"
|
|
3374
3488
|
],
|
|
@@ -3382,8 +3496,8 @@
|
|
|
3382
3496
|
}
|
|
3383
3497
|
},
|
|
3384
3498
|
"node_modules/@next/swc-win32-arm64-msvc": {
|
|
3385
|
-
"version": "
|
|
3386
|
-
"integrity": "sha512-
|
|
3499
|
+
"version": "16.1.1",
|
|
3500
|
+
"integrity": "sha512-bdfQkggaLgnmYrFkSQfsHfOhk/mCYmjnrbRCGgkMcoOBZ4n+TRRSLmT/CU5SATzlBJ9TpioUyBW/vWFXTqQRiA==",
|
|
3387
3501
|
"cpu": [
|
|
3388
3502
|
"arm64"
|
|
3389
3503
|
],
|
|
@@ -3397,8 +3511,8 @@
|
|
|
3397
3511
|
}
|
|
3398
3512
|
},
|
|
3399
3513
|
"node_modules/@next/swc-win32-x64-msvc": {
|
|
3400
|
-
"version": "
|
|
3401
|
-
"integrity": "sha512-
|
|
3514
|
+
"version": "16.1.1",
|
|
3515
|
+
"integrity": "sha512-Ncwbw2WJ57Al5OX0k4chM68DKhEPlrXBaSXDCi2kPi5f4d8b3ejr3RRJGfKBLrn2YJL5ezNS7w2TZLHSti8CMw==",
|
|
3402
3516
|
"cpu": [
|
|
3403
3517
|
"x64"
|
|
3404
3518
|
],
|
|
@@ -3472,13 +3586,13 @@
|
|
|
3472
3586
|
}
|
|
3473
3587
|
},
|
|
3474
3588
|
"node_modules/@react-aria/focus": {
|
|
3475
|
-
"version": "3.21.
|
|
3476
|
-
"integrity": "sha512-
|
|
3589
|
+
"version": "3.21.4",
|
|
3590
|
+
"integrity": "sha512-6gz+j9ip0/vFRTKJMl3R30MHopn4i19HqqLfSQfElxJD+r9hBnYG1Q6Wd/kl/WRR1+CALn2F+rn06jUnf5sT8Q==",
|
|
3477
3591
|
"license": "Apache-2.0",
|
|
3478
3592
|
"dependencies": {
|
|
3479
|
-
"@react-aria/interactions": "^3.
|
|
3480
|
-
"@react-aria/utils": "^3.
|
|
3481
|
-
"@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",
|
|
3482
3596
|
"@swc/helpers": "^0.5.0",
|
|
3483
3597
|
"clsx": "^2.0.0"
|
|
3484
3598
|
},
|
|
@@ -3488,17 +3602,17 @@
|
|
|
3488
3602
|
}
|
|
3489
3603
|
},
|
|
3490
3604
|
"node_modules/@react-aria/i18n": {
|
|
3491
|
-
"version": "3.12.
|
|
3492
|
-
"integrity": "sha512-
|
|
3605
|
+
"version": "3.12.15",
|
|
3606
|
+
"integrity": "sha512-3CrAN7ORVHrckvTmbPq76jFZabqq+rScosGT5+ElircJ5rF5+JcdT99Hp5Xg6R10jk74e8G3xiqdYsUd+7iJMA==",
|
|
3493
3607
|
"license": "Apache-2.0",
|
|
3494
3608
|
"dependencies": {
|
|
3495
|
-
"@internationalized/date": "^3.
|
|
3609
|
+
"@internationalized/date": "^3.11.0",
|
|
3496
3610
|
"@internationalized/message": "^3.1.8",
|
|
3497
3611
|
"@internationalized/number": "^3.6.5",
|
|
3498
3612
|
"@internationalized/string": "^3.2.7",
|
|
3499
3613
|
"@react-aria/ssr": "^3.9.10",
|
|
3500
|
-
"@react-aria/utils": "^3.
|
|
3501
|
-
"@react-types/shared": "^3.
|
|
3614
|
+
"@react-aria/utils": "^3.33.0",
|
|
3615
|
+
"@react-types/shared": "^3.33.0",
|
|
3502
3616
|
"@swc/helpers": "^0.5.0"
|
|
3503
3617
|
},
|
|
3504
3618
|
"peerDependencies": {
|
|
@@ -3507,14 +3621,14 @@
|
|
|
3507
3621
|
}
|
|
3508
3622
|
},
|
|
3509
3623
|
"node_modules/@react-aria/interactions": {
|
|
3510
|
-
"version": "3.
|
|
3511
|
-
"integrity": "sha512-
|
|
3624
|
+
"version": "3.27.0",
|
|
3625
|
+
"integrity": "sha512-D27pOy+0jIfHK60BB26AgqjjRFOYdvVSkwC31b2LicIzRCSPOSP06V4gMHuGmkhNTF4+YWDi1HHYjxIvMeiSlA==",
|
|
3512
3626
|
"license": "Apache-2.0",
|
|
3513
3627
|
"dependencies": {
|
|
3514
3628
|
"@react-aria/ssr": "^3.9.10",
|
|
3515
|
-
"@react-aria/utils": "^3.
|
|
3629
|
+
"@react-aria/utils": "^3.33.0",
|
|
3516
3630
|
"@react-stately/flags": "^3.1.2",
|
|
3517
|
-
"@react-types/shared": "^3.
|
|
3631
|
+
"@react-types/shared": "^3.33.0",
|
|
3518
3632
|
"@swc/helpers": "^0.5.0"
|
|
3519
3633
|
},
|
|
3520
3634
|
"peerDependencies": {
|
|
@@ -3523,20 +3637,20 @@
|
|
|
3523
3637
|
}
|
|
3524
3638
|
},
|
|
3525
3639
|
"node_modules/@react-aria/overlays": {
|
|
3526
|
-
"version": "3.
|
|
3527
|
-
"integrity": "sha512-
|
|
3640
|
+
"version": "3.31.1",
|
|
3641
|
+
"integrity": "sha512-U5BedzcXU97U5PWm4kIPnNoVpAs9KjTYfbkGx33vapmTVpGYhQyYW9eg6zW2E8ZKsyFJtQ/jkQnbWGen97aHSQ==",
|
|
3528
3642
|
"license": "Apache-2.0",
|
|
3529
3643
|
"dependencies": {
|
|
3530
|
-
"@react-aria/focus": "^3.21.
|
|
3531
|
-
"@react-aria/i18n": "^3.12.
|
|
3532
|
-
"@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",
|
|
3533
3647
|
"@react-aria/ssr": "^3.9.10",
|
|
3534
|
-
"@react-aria/utils": "^3.
|
|
3535
|
-
"@react-aria/visually-hidden": "^3.8.
|
|
3536
|
-
"@react-stately/overlays": "^3.6.
|
|
3537
|
-
"@react-types/button": "^3.
|
|
3538
|
-
"@react-types/overlays": "^3.9.
|
|
3539
|
-
"@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",
|
|
3540
3654
|
"@swc/helpers": "^0.5.0"
|
|
3541
3655
|
},
|
|
3542
3656
|
"peerDependencies": {
|
|
@@ -3559,14 +3673,14 @@
|
|
|
3559
3673
|
}
|
|
3560
3674
|
},
|
|
3561
3675
|
"node_modules/@react-aria/utils": {
|
|
3562
|
-
"version": "3.
|
|
3563
|
-
"integrity": "sha512-
|
|
3676
|
+
"version": "3.33.0",
|
|
3677
|
+
"integrity": "sha512-yvz7CMH8d2VjwbSa5nGXqjU031tYhD8ddax95VzJsHSPyqHDEGfxul8RkhGV6oO7bVqZxVs6xY66NIgae+FHjw==",
|
|
3564
3678
|
"license": "Apache-2.0",
|
|
3565
3679
|
"dependencies": {
|
|
3566
3680
|
"@react-aria/ssr": "^3.9.10",
|
|
3567
3681
|
"@react-stately/flags": "^3.1.2",
|
|
3568
|
-
"@react-stately/utils": "^3.
|
|
3569
|
-
"@react-types/shared": "^3.
|
|
3682
|
+
"@react-stately/utils": "^3.11.0",
|
|
3683
|
+
"@react-types/shared": "^3.33.0",
|
|
3570
3684
|
"@swc/helpers": "^0.5.0",
|
|
3571
3685
|
"clsx": "^2.0.0"
|
|
3572
3686
|
},
|
|
@@ -3576,13 +3690,13 @@
|
|
|
3576
3690
|
}
|
|
3577
3691
|
},
|
|
3578
3692
|
"node_modules/@react-aria/visually-hidden": {
|
|
3579
|
-
"version": "3.8.
|
|
3580
|
-
"integrity": "sha512-
|
|
3693
|
+
"version": "3.8.30",
|
|
3694
|
+
"integrity": "sha512-iY44USEU8sJy0NOJ/sTDn3YlspbhHuVG3nx2YYrzfmxbS3i+lNwkCfG8kJ77dtmbuDLIdBGKENjGkbcwz3kiJg==",
|
|
3581
3695
|
"license": "Apache-2.0",
|
|
3582
3696
|
"dependencies": {
|
|
3583
|
-
"@react-aria/interactions": "^3.
|
|
3584
|
-
"@react-aria/utils": "^3.
|
|
3585
|
-
"@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",
|
|
3586
3700
|
"@swc/helpers": "^0.5.0"
|
|
3587
3701
|
},
|
|
3588
3702
|
"peerDependencies": {
|
|
@@ -3599,12 +3713,12 @@
|
|
|
3599
3713
|
}
|
|
3600
3714
|
},
|
|
3601
3715
|
"node_modules/@react-stately/overlays": {
|
|
3602
|
-
"version": "3.6.
|
|
3603
|
-
"integrity": "sha512-
|
|
3716
|
+
"version": "3.6.22",
|
|
3717
|
+
"integrity": "sha512-sWBnuy5dqVp8d+1e+ABTRVB3YBcOW86/90pF5PWY44au3bUFXVSUBO2QMdR/6JtojDoPRmrjufonI19/Zs/20w==",
|
|
3604
3718
|
"license": "Apache-2.0",
|
|
3605
3719
|
"dependencies": {
|
|
3606
|
-
"@react-stately/utils": "^3.
|
|
3607
|
-
"@react-types/overlays": "^3.9.
|
|
3720
|
+
"@react-stately/utils": "^3.11.0",
|
|
3721
|
+
"@react-types/overlays": "^3.9.3",
|
|
3608
3722
|
"@swc/helpers": "^0.5.0"
|
|
3609
3723
|
},
|
|
3610
3724
|
"peerDependencies": {
|
|
@@ -3612,8 +3726,8 @@
|
|
|
3612
3726
|
}
|
|
3613
3727
|
},
|
|
3614
3728
|
"node_modules/@react-stately/utils": {
|
|
3615
|
-
"version": "3.
|
|
3616
|
-
"integrity": "sha512-
|
|
3729
|
+
"version": "3.11.0",
|
|
3730
|
+
"integrity": "sha512-8LZpYowJ9eZmmYLpudbo/eclIRnbhWIJZ994ncmlKlouNzKohtM8qTC6B1w1pwUbiwGdUoyzLuQbeaIor5Dvcw==",
|
|
3617
3731
|
"license": "Apache-2.0",
|
|
3618
3732
|
"dependencies": {
|
|
3619
3733
|
"@swc/helpers": "^0.5.0"
|
|
@@ -3623,30 +3737,30 @@
|
|
|
3623
3737
|
}
|
|
3624
3738
|
},
|
|
3625
3739
|
"node_modules/@react-types/button": {
|
|
3626
|
-
"version": "3.
|
|
3627
|
-
"integrity": "sha512-
|
|
3740
|
+
"version": "3.15.0",
|
|
3741
|
+
"integrity": "sha512-X/K2/Oeuq7Hi8nMIzx4/YlZuvWFiSOHZt27p4HmThCnNO/9IDFPmvPrpkYjWN5eN9Nuk+P5vZUb4A7QJgYpvGA==",
|
|
3628
3742
|
"license": "Apache-2.0",
|
|
3629
3743
|
"dependencies": {
|
|
3630
|
-
"@react-types/shared": "^3.
|
|
3744
|
+
"@react-types/shared": "^3.33.0"
|
|
3631
3745
|
},
|
|
3632
3746
|
"peerDependencies": {
|
|
3633
3747
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3634
3748
|
}
|
|
3635
3749
|
},
|
|
3636
3750
|
"node_modules/@react-types/overlays": {
|
|
3637
|
-
"version": "3.9.
|
|
3638
|
-
"integrity": "sha512-
|
|
3751
|
+
"version": "3.9.3",
|
|
3752
|
+
"integrity": "sha512-LzetThNNk8T26pQRbs1I7+isuFhdFYREy7wJCsZmbB0FnZgCukGTfOtThZWv+ry11veyVJiX68jfl4SV6ACTWA==",
|
|
3639
3753
|
"license": "Apache-2.0",
|
|
3640
3754
|
"dependencies": {
|
|
3641
|
-
"@react-types/shared": "^3.
|
|
3755
|
+
"@react-types/shared": "^3.33.0"
|
|
3642
3756
|
},
|
|
3643
3757
|
"peerDependencies": {
|
|
3644
3758
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3645
3759
|
}
|
|
3646
3760
|
},
|
|
3647
3761
|
"node_modules/@react-types/shared": {
|
|
3648
|
-
"version": "3.
|
|
3649
|
-
"integrity": "sha512-
|
|
3762
|
+
"version": "3.33.0",
|
|
3763
|
+
"integrity": "sha512-xuUpP6MyuPmJtzNOqF5pzFUIHH2YogyOQfUQHag54PRmWB7AbjuGWBUv0l1UDmz6+AbzAYGmDVAzcRDOu2PFpw==",
|
|
3650
3764
|
"license": "Apache-2.0",
|
|
3651
3765
|
"peerDependencies": {
|
|
3652
3766
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
@@ -3706,8 +3820,8 @@
|
|
|
3706
3820
|
}
|
|
3707
3821
|
},
|
|
3708
3822
|
"node_modules/@standard-schema/spec": {
|
|
3709
|
-
"version": "1.
|
|
3710
|
-
"integrity": "sha512-
|
|
3823
|
+
"version": "1.1.0",
|
|
3824
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
3711
3825
|
"license": "MIT"
|
|
3712
3826
|
},
|
|
3713
3827
|
"node_modules/@standard-schema/utils": {
|
|
@@ -3715,14 +3829,9 @@
|
|
|
3715
3829
|
"integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
|
|
3716
3830
|
"license": "MIT"
|
|
3717
3831
|
},
|
|
3718
|
-
"node_modules/@swc/counter": {
|
|
3719
|
-
"version": "0.1.3",
|
|
3720
|
-
"integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
|
|
3721
|
-
"license": "Apache-2.0"
|
|
3722
|
-
},
|
|
3723
3832
|
"node_modules/@swc/helpers": {
|
|
3724
|
-
"version": "0.5.
|
|
3725
|
-
"integrity": "sha512-
|
|
3833
|
+
"version": "0.5.18",
|
|
3834
|
+
"integrity": "sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==",
|
|
3726
3835
|
"license": "Apache-2.0",
|
|
3727
3836
|
"dependencies": {
|
|
3728
3837
|
"tslib": "^2.8.0"
|
|
@@ -3806,8 +3915,8 @@
|
|
|
3806
3915
|
}
|
|
3807
3916
|
},
|
|
3808
3917
|
"node_modules/@types/d3-shape": {
|
|
3809
|
-
"version": "3.1.
|
|
3810
|
-
"integrity": "sha512-
|
|
3918
|
+
"version": "3.1.8",
|
|
3919
|
+
"integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
|
|
3811
3920
|
"license": "MIT",
|
|
3812
3921
|
"dependencies": {
|
|
3813
3922
|
"@types/d3-path": "*"
|
|
@@ -3826,6 +3935,7 @@
|
|
|
3826
3935
|
"node_modules/@types/estree": {
|
|
3827
3936
|
"version": "1.0.8",
|
|
3828
3937
|
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
3938
|
+
"dev": true,
|
|
3829
3939
|
"license": "MIT"
|
|
3830
3940
|
},
|
|
3831
3941
|
"node_modules/@types/js-cookie": {
|
|
@@ -3837,6 +3947,7 @@
|
|
|
3837
3947
|
"node_modules/@types/json-schema": {
|
|
3838
3948
|
"version": "7.0.15",
|
|
3839
3949
|
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
|
|
3950
|
+
"dev": true,
|
|
3840
3951
|
"license": "MIT"
|
|
3841
3952
|
},
|
|
3842
3953
|
"node_modules/@types/json5": {
|
|
@@ -3846,8 +3957,8 @@
|
|
|
3846
3957
|
"license": "MIT"
|
|
3847
3958
|
},
|
|
3848
3959
|
"node_modules/@types/lodash": {
|
|
3849
|
-
"version": "4.17.
|
|
3850
|
-
"integrity": "sha512-
|
|
3960
|
+
"version": "4.17.23",
|
|
3961
|
+
"integrity": "sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==",
|
|
3851
3962
|
"dev": true,
|
|
3852
3963
|
"license": "MIT"
|
|
3853
3964
|
},
|
|
@@ -3861,8 +3972,8 @@
|
|
|
3861
3972
|
}
|
|
3862
3973
|
},
|
|
3863
3974
|
"node_modules/@types/node": {
|
|
3864
|
-
"version": "20.19.
|
|
3865
|
-
"integrity": "sha512-
|
|
3975
|
+
"version": "20.19.33",
|
|
3976
|
+
"integrity": "sha512-Rs1bVAIdBs5gbTIKza/tgpMuG1k3U/UMJLWecIMxNdJFDMzcM5LOiLVRYh3PilWEYDIeUDv7bpiHPLPsbydGcw==",
|
|
3866
3977
|
"dev": true,
|
|
3867
3978
|
"license": "MIT",
|
|
3868
3979
|
"dependencies": {
|
|
@@ -3880,8 +3991,8 @@
|
|
|
3880
3991
|
"license": "MIT"
|
|
3881
3992
|
},
|
|
3882
3993
|
"node_modules/@types/react": {
|
|
3883
|
-
"version": "19.2.
|
|
3884
|
-
"integrity": "sha512-
|
|
3994
|
+
"version": "19.2.14",
|
|
3995
|
+
"integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
|
|
3885
3996
|
"license": "MIT",
|
|
3886
3997
|
"dependencies": {
|
|
3887
3998
|
"csstype": "^3.2.2"
|
|
@@ -3937,20 +4048,19 @@
|
|
|
3937
4048
|
"license": "MIT"
|
|
3938
4049
|
},
|
|
3939
4050
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
3940
|
-
"version": "8.
|
|
3941
|
-
"integrity": "sha512-
|
|
4051
|
+
"version": "8.55.0",
|
|
4052
|
+
"integrity": "sha512-1y/MVSz0NglV1ijHC8OT49mPJ4qhPYjiK08YUQVbIOyu+5k862LKUHFkpKHWu//zmr7hDR2rhwUm6gnCGNmGBQ==",
|
|
3942
4053
|
"dev": true,
|
|
3943
4054
|
"license": "MIT",
|
|
3944
4055
|
"dependencies": {
|
|
3945
|
-
"@eslint-community/regexpp": "^4.
|
|
3946
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3947
|
-
"@typescript-eslint/type-utils": "8.
|
|
3948
|
-
"@typescript-eslint/utils": "8.
|
|
3949
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3950
|
-
"
|
|
3951
|
-
"ignore": "^7.0.0",
|
|
4056
|
+
"@eslint-community/regexpp": "^4.12.2",
|
|
4057
|
+
"@typescript-eslint/scope-manager": "8.55.0",
|
|
4058
|
+
"@typescript-eslint/type-utils": "8.55.0",
|
|
4059
|
+
"@typescript-eslint/utils": "8.55.0",
|
|
4060
|
+
"@typescript-eslint/visitor-keys": "8.55.0",
|
|
4061
|
+
"ignore": "^7.0.5",
|
|
3952
4062
|
"natural-compare": "^1.4.0",
|
|
3953
|
-
"ts-api-utils": "^2.
|
|
4063
|
+
"ts-api-utils": "^2.4.0"
|
|
3954
4064
|
},
|
|
3955
4065
|
"engines": {
|
|
3956
4066
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -3960,7 +4070,7 @@
|
|
|
3960
4070
|
"url": "https://opencollective.com/typescript-eslint"
|
|
3961
4071
|
},
|
|
3962
4072
|
"peerDependencies": {
|
|
3963
|
-
"@typescript-eslint/parser": "^8.
|
|
4073
|
+
"@typescript-eslint/parser": "^8.55.0",
|
|
3964
4074
|
"eslint": "^8.57.0 || ^9.0.0",
|
|
3965
4075
|
"typescript": ">=4.8.4 <6.0.0"
|
|
3966
4076
|
}
|
|
@@ -3975,16 +4085,16 @@
|
|
|
3975
4085
|
}
|
|
3976
4086
|
},
|
|
3977
4087
|
"node_modules/@typescript-eslint/parser": {
|
|
3978
|
-
"version": "8.
|
|
3979
|
-
"integrity": "sha512-
|
|
4088
|
+
"version": "8.55.0",
|
|
4089
|
+
"integrity": "sha512-4z2nCSBfVIMnbuu8uinj+f0o4qOeggYJLbjpPHka3KH1om7e+H9yLKTYgksTaHcGco+NClhhY2vyO3HsMH1RGw==",
|
|
3980
4090
|
"dev": true,
|
|
3981
4091
|
"license": "MIT",
|
|
3982
4092
|
"dependencies": {
|
|
3983
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3984
|
-
"@typescript-eslint/types": "8.
|
|
3985
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
3986
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3987
|
-
"debug": "^4.3
|
|
4093
|
+
"@typescript-eslint/scope-manager": "8.55.0",
|
|
4094
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4095
|
+
"@typescript-eslint/typescript-estree": "8.55.0",
|
|
4096
|
+
"@typescript-eslint/visitor-keys": "8.55.0",
|
|
4097
|
+
"debug": "^4.4.3"
|
|
3988
4098
|
},
|
|
3989
4099
|
"engines": {
|
|
3990
4100
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -3999,14 +4109,14 @@
|
|
|
3999
4109
|
}
|
|
4000
4110
|
},
|
|
4001
4111
|
"node_modules/@typescript-eslint/project-service": {
|
|
4002
|
-
"version": "8.
|
|
4003
|
-
"integrity": "sha512-
|
|
4112
|
+
"version": "8.55.0",
|
|
4113
|
+
"integrity": "sha512-zRcVVPFUYWa3kNnjaZGXSu3xkKV1zXy8M4nO/pElzQhFweb7PPtluDLQtKArEOGmjXoRjnUZ29NjOiF0eCDkcQ==",
|
|
4004
4114
|
"dev": true,
|
|
4005
4115
|
"license": "MIT",
|
|
4006
4116
|
"dependencies": {
|
|
4007
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4008
|
-
"@typescript-eslint/types": "^8.
|
|
4009
|
-
"debug": "^4.3
|
|
4117
|
+
"@typescript-eslint/tsconfig-utils": "^8.55.0",
|
|
4118
|
+
"@typescript-eslint/types": "^8.55.0",
|
|
4119
|
+
"debug": "^4.4.3"
|
|
4010
4120
|
},
|
|
4011
4121
|
"engines": {
|
|
4012
4122
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4020,13 +4130,13 @@
|
|
|
4020
4130
|
}
|
|
4021
4131
|
},
|
|
4022
4132
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4023
|
-
"version": "8.
|
|
4024
|
-
"integrity": "sha512-
|
|
4133
|
+
"version": "8.55.0",
|
|
4134
|
+
"integrity": "sha512-fVu5Omrd3jeqeQLiB9f1YsuK/iHFOwb04bCtY4BSCLgjNbOD33ZdV6KyEqplHr+IlpgT0QTZ/iJ+wT7hvTx49Q==",
|
|
4025
4135
|
"dev": true,
|
|
4026
4136
|
"license": "MIT",
|
|
4027
4137
|
"dependencies": {
|
|
4028
|
-
"@typescript-eslint/types": "8.
|
|
4029
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4138
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4139
|
+
"@typescript-eslint/visitor-keys": "8.55.0"
|
|
4030
4140
|
},
|
|
4031
4141
|
"engines": {
|
|
4032
4142
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4037,8 +4147,8 @@
|
|
|
4037
4147
|
}
|
|
4038
4148
|
},
|
|
4039
4149
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4040
|
-
"version": "8.
|
|
4041
|
-
"integrity": "sha512-
|
|
4150
|
+
"version": "8.55.0",
|
|
4151
|
+
"integrity": "sha512-1R9cXqY7RQd7WuqSN47PK9EDpgFUK3VqdmbYrvWJZYDd0cavROGn+74ktWBlmJ13NXUQKlZ/iAEQHI/V0kKe0Q==",
|
|
4042
4152
|
"dev": true,
|
|
4043
4153
|
"license": "MIT",
|
|
4044
4154
|
"engines": {
|
|
@@ -4053,16 +4163,16 @@
|
|
|
4053
4163
|
}
|
|
4054
4164
|
},
|
|
4055
4165
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4056
|
-
"version": "8.
|
|
4057
|
-
"integrity": "sha512-
|
|
4166
|
+
"version": "8.55.0",
|
|
4167
|
+
"integrity": "sha512-x1iH2unH4qAt6I37I2CGlsNs+B9WGxurP2uyZLRz6UJoZWDBx9cJL1xVN/FiOmHEONEg6RIufdvyT0TEYIgC5g==",
|
|
4058
4168
|
"dev": true,
|
|
4059
4169
|
"license": "MIT",
|
|
4060
4170
|
"dependencies": {
|
|
4061
|
-
"@typescript-eslint/types": "8.
|
|
4062
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4063
|
-
"@typescript-eslint/utils": "8.
|
|
4064
|
-
"debug": "^4.3
|
|
4065
|
-
"ts-api-utils": "^2.
|
|
4171
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4172
|
+
"@typescript-eslint/typescript-estree": "8.55.0",
|
|
4173
|
+
"@typescript-eslint/utils": "8.55.0",
|
|
4174
|
+
"debug": "^4.4.3",
|
|
4175
|
+
"ts-api-utils": "^2.4.0"
|
|
4066
4176
|
},
|
|
4067
4177
|
"engines": {
|
|
4068
4178
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4077,8 +4187,8 @@
|
|
|
4077
4187
|
}
|
|
4078
4188
|
},
|
|
4079
4189
|
"node_modules/@typescript-eslint/types": {
|
|
4080
|
-
"version": "8.
|
|
4081
|
-
"integrity": "sha512-
|
|
4190
|
+
"version": "8.55.0",
|
|
4191
|
+
"integrity": "sha512-ujT0Je8GI5BJWi+/mMoR0wxwVEQaxM+pi30xuMiJETlX80OPovb2p9E8ss87gnSVtYXtJoU9U1Cowcr6w2FE0w==",
|
|
4082
4192
|
"dev": true,
|
|
4083
4193
|
"license": "MIT",
|
|
4084
4194
|
"engines": {
|
|
@@ -4090,20 +4200,20 @@
|
|
|
4090
4200
|
}
|
|
4091
4201
|
},
|
|
4092
4202
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4093
|
-
"version": "8.
|
|
4094
|
-
"integrity": "sha512-
|
|
4203
|
+
"version": "8.55.0",
|
|
4204
|
+
"integrity": "sha512-EwrH67bSWdx/3aRQhCoxDaHM+CrZjotc2UCCpEDVqfCE+7OjKAGWNY2HsCSTEVvWH2clYQK8pdeLp42EVs+xQw==",
|
|
4095
4205
|
"dev": true,
|
|
4096
4206
|
"license": "MIT",
|
|
4097
4207
|
"dependencies": {
|
|
4098
|
-
"@typescript-eslint/project-service": "8.
|
|
4099
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4100
|
-
"@typescript-eslint/types": "8.
|
|
4101
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4102
|
-
"debug": "^4.3
|
|
4103
|
-
"minimatch": "^9.0.
|
|
4104
|
-
"semver": "^7.
|
|
4208
|
+
"@typescript-eslint/project-service": "8.55.0",
|
|
4209
|
+
"@typescript-eslint/tsconfig-utils": "8.55.0",
|
|
4210
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4211
|
+
"@typescript-eslint/visitor-keys": "8.55.0",
|
|
4212
|
+
"debug": "^4.4.3",
|
|
4213
|
+
"minimatch": "^9.0.5",
|
|
4214
|
+
"semver": "^7.7.3",
|
|
4105
4215
|
"tinyglobby": "^0.2.15",
|
|
4106
|
-
"ts-api-utils": "^2.
|
|
4216
|
+
"ts-api-utils": "^2.4.0"
|
|
4107
4217
|
},
|
|
4108
4218
|
"engines": {
|
|
4109
4219
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4141,8 +4251,8 @@
|
|
|
4141
4251
|
}
|
|
4142
4252
|
},
|
|
4143
4253
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
|
4144
|
-
"version": "7.7.
|
|
4145
|
-
"integrity": "sha512-
|
|
4254
|
+
"version": "7.7.4",
|
|
4255
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
4146
4256
|
"dev": true,
|
|
4147
4257
|
"license": "ISC",
|
|
4148
4258
|
"bin": {
|
|
@@ -4153,15 +4263,15 @@
|
|
|
4153
4263
|
}
|
|
4154
4264
|
},
|
|
4155
4265
|
"node_modules/@typescript-eslint/utils": {
|
|
4156
|
-
"version": "8.
|
|
4157
|
-
"integrity": "sha512-
|
|
4266
|
+
"version": "8.55.0",
|
|
4267
|
+
"integrity": "sha512-BqZEsnPGdYpgyEIkDC1BadNY8oMwckftxBT+C8W0g1iKPdeqKZBtTfnvcq0nf60u7MkjFO8RBvpRGZBPw4L2ow==",
|
|
4158
4268
|
"dev": true,
|
|
4159
4269
|
"license": "MIT",
|
|
4160
4270
|
"dependencies": {
|
|
4161
|
-
"@eslint-community/eslint-utils": "^4.
|
|
4162
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4163
|
-
"@typescript-eslint/types": "8.
|
|
4164
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4271
|
+
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4272
|
+
"@typescript-eslint/scope-manager": "8.55.0",
|
|
4273
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4274
|
+
"@typescript-eslint/typescript-estree": "8.55.0"
|
|
4165
4275
|
},
|
|
4166
4276
|
"engines": {
|
|
4167
4277
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4176,12 +4286,12 @@
|
|
|
4176
4286
|
}
|
|
4177
4287
|
},
|
|
4178
4288
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4179
|
-
"version": "8.
|
|
4180
|
-
"integrity": "sha512-
|
|
4289
|
+
"version": "8.55.0",
|
|
4290
|
+
"integrity": "sha512-AxNRwEie8Nn4eFS1FzDMJWIISMGoXMb037sgCBJ3UR6o0fQTzr2tqN9WT+DkWJPhIdQCfV7T6D387566VtnCJA==",
|
|
4181
4291
|
"dev": true,
|
|
4182
4292
|
"license": "MIT",
|
|
4183
4293
|
"dependencies": {
|
|
4184
|
-
"@typescript-eslint/types": "8.
|
|
4294
|
+
"@typescript-eslint/types": "8.55.0",
|
|
4185
4295
|
"eslint-visitor-keys": "^4.2.1"
|
|
4186
4296
|
},
|
|
4187
4297
|
"engines": {
|
|
@@ -4443,8 +4553,8 @@
|
|
|
4443
4553
|
]
|
|
4444
4554
|
},
|
|
4445
4555
|
"node_modules/@wavemaker/variables": {
|
|
4446
|
-
"version": "11.
|
|
4447
|
-
"integrity": "sha512-
|
|
4556
|
+
"version": "11.15.0-1.246",
|
|
4557
|
+
"integrity": "sha512-yBVXZv+uaKoibeN1+VH4LQ6qk0bQjoViJMsebehxCyI/jpFGfARB+POI/0DT1TxTLCPEigPnPbchgeXC3KpObA==",
|
|
4448
4558
|
"dev": true,
|
|
4449
4559
|
"license": "ISC",
|
|
4450
4560
|
"dependencies": {
|
|
@@ -4467,6 +4577,7 @@
|
|
|
4467
4577
|
"node_modules/acorn": {
|
|
4468
4578
|
"version": "8.15.0",
|
|
4469
4579
|
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
4580
|
+
"dev": true,
|
|
4470
4581
|
"license": "MIT",
|
|
4471
4582
|
"bin": {
|
|
4472
4583
|
"acorn": "bin/acorn"
|
|
@@ -4478,6 +4589,7 @@
|
|
|
4478
4589
|
"node_modules/acorn-jsx": {
|
|
4479
4590
|
"version": "5.3.2",
|
|
4480
4591
|
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
|
4592
|
+
"dev": true,
|
|
4481
4593
|
"license": "MIT",
|
|
4482
4594
|
"peerDependencies": {
|
|
4483
4595
|
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
@@ -4486,6 +4598,7 @@
|
|
|
4486
4598
|
"node_modules/ajv": {
|
|
4487
4599
|
"version": "6.12.6",
|
|
4488
4600
|
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
4601
|
+
"dev": true,
|
|
4489
4602
|
"license": "MIT",
|
|
4490
4603
|
"dependencies": {
|
|
4491
4604
|
"fast-deep-equal": "^3.1.1",
|
|
@@ -4499,8 +4612,8 @@
|
|
|
4499
4612
|
}
|
|
4500
4613
|
},
|
|
4501
4614
|
"node_modules/ansi-escapes": {
|
|
4502
|
-
"version": "7.
|
|
4503
|
-
"integrity": "sha512-
|
|
4615
|
+
"version": "7.3.0",
|
|
4616
|
+
"integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==",
|
|
4504
4617
|
"license": "MIT",
|
|
4505
4618
|
"dependencies": {
|
|
4506
4619
|
"environment": "^1.0.0"
|
|
@@ -4526,6 +4639,7 @@
|
|
|
4526
4639
|
"node_modules/ansi-styles": {
|
|
4527
4640
|
"version": "4.3.0",
|
|
4528
4641
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
4642
|
+
"dev": true,
|
|
4529
4643
|
"license": "MIT",
|
|
4530
4644
|
"dependencies": {
|
|
4531
4645
|
"color-convert": "^2.0.1"
|
|
@@ -4554,6 +4668,7 @@
|
|
|
4554
4668
|
"node_modules/argparse": {
|
|
4555
4669
|
"version": "2.0.1",
|
|
4556
4670
|
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
4671
|
+
"dev": true,
|
|
4557
4672
|
"license": "Python-2.0"
|
|
4558
4673
|
},
|
|
4559
4674
|
"node_modules/aria-query": {
|
|
@@ -4753,8 +4868,8 @@
|
|
|
4753
4868
|
}
|
|
4754
4869
|
},
|
|
4755
4870
|
"node_modules/axe-core": {
|
|
4756
|
-
"version": "4.11.
|
|
4757
|
-
"integrity": "sha512-
|
|
4871
|
+
"version": "4.11.1",
|
|
4872
|
+
"integrity": "sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==",
|
|
4758
4873
|
"dev": true,
|
|
4759
4874
|
"license": "MPL-2.0",
|
|
4760
4875
|
"engines": {
|
|
@@ -4762,12 +4877,12 @@
|
|
|
4762
4877
|
}
|
|
4763
4878
|
},
|
|
4764
4879
|
"node_modules/axios": {
|
|
4765
|
-
"version": "1.13.
|
|
4766
|
-
"integrity": "sha512-
|
|
4880
|
+
"version": "1.13.5",
|
|
4881
|
+
"integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==",
|
|
4767
4882
|
"license": "MIT",
|
|
4768
4883
|
"dependencies": {
|
|
4769
|
-
"follow-redirects": "^1.15.
|
|
4770
|
-
"form-data": "^4.0.
|
|
4884
|
+
"follow-redirects": "^1.15.11",
|
|
4885
|
+
"form-data": "^4.0.5",
|
|
4771
4886
|
"proxy-from-env": "^1.1.0"
|
|
4772
4887
|
}
|
|
4773
4888
|
},
|
|
@@ -4819,6 +4934,7 @@
|
|
|
4819
4934
|
"node_modules/babel-plugin-module-resolver/node_modules/glob": {
|
|
4820
4935
|
"version": "9.3.5",
|
|
4821
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",
|
|
4822
4938
|
"dev": true,
|
|
4823
4939
|
"license": "ISC",
|
|
4824
4940
|
"dependencies": {
|
|
@@ -4856,13 +4972,13 @@
|
|
|
4856
4972
|
"license": "MIT"
|
|
4857
4973
|
},
|
|
4858
4974
|
"node_modules/babel-plugin-polyfill-corejs2": {
|
|
4859
|
-
"version": "0.4.
|
|
4860
|
-
"integrity": "sha512-
|
|
4975
|
+
"version": "0.4.15",
|
|
4976
|
+
"integrity": "sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==",
|
|
4861
4977
|
"dev": true,
|
|
4862
4978
|
"license": "MIT",
|
|
4863
4979
|
"dependencies": {
|
|
4864
|
-
"@babel/compat-data": "^7.
|
|
4865
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4980
|
+
"@babel/compat-data": "^7.28.6",
|
|
4981
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6",
|
|
4866
4982
|
"semver": "^6.3.1"
|
|
4867
4983
|
},
|
|
4868
4984
|
"peerDependencies": {
|
|
@@ -4870,25 +4986,25 @@
|
|
|
4870
4986
|
}
|
|
4871
4987
|
},
|
|
4872
4988
|
"node_modules/babel-plugin-polyfill-corejs3": {
|
|
4873
|
-
"version": "0.
|
|
4874
|
-
"integrity": "sha512-
|
|
4989
|
+
"version": "0.14.0",
|
|
4990
|
+
"integrity": "sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==",
|
|
4875
4991
|
"dev": true,
|
|
4876
4992
|
"license": "MIT",
|
|
4877
4993
|
"dependencies": {
|
|
4878
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4879
|
-
"core-js-compat": "^3.
|
|
4994
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6",
|
|
4995
|
+
"core-js-compat": "^3.48.0"
|
|
4880
4996
|
},
|
|
4881
4997
|
"peerDependencies": {
|
|
4882
4998
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
4883
4999
|
}
|
|
4884
5000
|
},
|
|
4885
5001
|
"node_modules/babel-plugin-polyfill-regenerator": {
|
|
4886
|
-
"version": "0.6.
|
|
4887
|
-
"integrity": "sha512-
|
|
5002
|
+
"version": "0.6.6",
|
|
5003
|
+
"integrity": "sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==",
|
|
4888
5004
|
"dev": true,
|
|
4889
5005
|
"license": "MIT",
|
|
4890
5006
|
"dependencies": {
|
|
4891
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
5007
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6"
|
|
4892
5008
|
},
|
|
4893
5009
|
"peerDependencies": {
|
|
4894
5010
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
@@ -4897,12 +5013,12 @@
|
|
|
4897
5013
|
"node_modules/balanced-match": {
|
|
4898
5014
|
"version": "1.0.2",
|
|
4899
5015
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
5016
|
+
"dev": true,
|
|
4900
5017
|
"license": "MIT"
|
|
4901
5018
|
},
|
|
4902
5019
|
"node_modules/baseline-browser-mapping": {
|
|
4903
|
-
"version": "2.
|
|
4904
|
-
"integrity": "sha512-
|
|
4905
|
-
"dev": true,
|
|
5020
|
+
"version": "2.9.19",
|
|
5021
|
+
"integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
|
|
4906
5022
|
"license": "Apache-2.0",
|
|
4907
5023
|
"bin": {
|
|
4908
5024
|
"baseline-browser-mapping": "dist/cli.js"
|
|
@@ -4924,6 +5040,7 @@
|
|
|
4924
5040
|
"node_modules/brace-expansion": {
|
|
4925
5041
|
"version": "1.1.12",
|
|
4926
5042
|
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
5043
|
+
"dev": true,
|
|
4927
5044
|
"license": "MIT",
|
|
4928
5045
|
"dependencies": {
|
|
4929
5046
|
"balanced-match": "^1.0.0",
|
|
@@ -4942,8 +5059,8 @@
|
|
|
4942
5059
|
}
|
|
4943
5060
|
},
|
|
4944
5061
|
"node_modules/browserslist": {
|
|
4945
|
-
"version": "4.28.
|
|
4946
|
-
"integrity": "sha512-
|
|
5062
|
+
"version": "4.28.1",
|
|
5063
|
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
|
4947
5064
|
"dev": true,
|
|
4948
5065
|
"funding": [
|
|
4949
5066
|
{
|
|
@@ -4961,11 +5078,11 @@
|
|
|
4961
5078
|
],
|
|
4962
5079
|
"license": "MIT",
|
|
4963
5080
|
"dependencies": {
|
|
4964
|
-
"baseline-browser-mapping": "^2.
|
|
4965
|
-
"caniuse-lite": "^1.0.
|
|
4966
|
-
"electron-to-chromium": "^1.5.
|
|
5081
|
+
"baseline-browser-mapping": "^2.9.0",
|
|
5082
|
+
"caniuse-lite": "^1.0.30001759",
|
|
5083
|
+
"electron-to-chromium": "^1.5.263",
|
|
4967
5084
|
"node-releases": "^2.0.27",
|
|
4968
|
-
"update-browserslist-db": "^1.
|
|
5085
|
+
"update-browserslist-db": "^1.2.0"
|
|
4969
5086
|
},
|
|
4970
5087
|
"bin": {
|
|
4971
5088
|
"browserslist": "cli.js"
|
|
@@ -4974,16 +5091,6 @@
|
|
|
4974
5091
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
|
4975
5092
|
}
|
|
4976
5093
|
},
|
|
4977
|
-
"node_modules/busboy": {
|
|
4978
|
-
"version": "1.6.0",
|
|
4979
|
-
"integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
|
|
4980
|
-
"dependencies": {
|
|
4981
|
-
"streamsearch": "^1.1.0"
|
|
4982
|
-
},
|
|
4983
|
-
"engines": {
|
|
4984
|
-
"node": ">=10.16.0"
|
|
4985
|
-
}
|
|
4986
|
-
},
|
|
4987
5094
|
"node_modules/call-bind": {
|
|
4988
5095
|
"version": "1.0.8",
|
|
4989
5096
|
"integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
|
|
@@ -5039,8 +5146,8 @@
|
|
|
5039
5146
|
}
|
|
5040
5147
|
},
|
|
5041
5148
|
"node_modules/caniuse-lite": {
|
|
5042
|
-
"version": "1.0.
|
|
5043
|
-
"integrity": "sha512-
|
|
5149
|
+
"version": "1.0.30001769",
|
|
5150
|
+
"integrity": "sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==",
|
|
5044
5151
|
"funding": [
|
|
5045
5152
|
{
|
|
5046
5153
|
"type": "opencollective",
|
|
@@ -5060,6 +5167,7 @@
|
|
|
5060
5167
|
"node_modules/chalk": {
|
|
5061
5168
|
"version": "4.1.2",
|
|
5062
5169
|
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5170
|
+
"dev": true,
|
|
5063
5171
|
"license": "MIT",
|
|
5064
5172
|
"dependencies": {
|
|
5065
5173
|
"ansi-styles": "^4.1.0",
|
|
@@ -5176,22 +5284,10 @@
|
|
|
5176
5284
|
"node": ">=6"
|
|
5177
5285
|
}
|
|
5178
5286
|
},
|
|
5179
|
-
"node_modules/color": {
|
|
5180
|
-
"version": "4.2.3",
|
|
5181
|
-
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
5182
|
-
"license": "MIT",
|
|
5183
|
-
"optional": true,
|
|
5184
|
-
"dependencies": {
|
|
5185
|
-
"color-convert": "^2.0.1",
|
|
5186
|
-
"color-string": "^1.9.0"
|
|
5187
|
-
},
|
|
5188
|
-
"engines": {
|
|
5189
|
-
"node": ">=12.5.0"
|
|
5190
|
-
}
|
|
5191
|
-
},
|
|
5192
5287
|
"node_modules/color-convert": {
|
|
5193
5288
|
"version": "2.0.1",
|
|
5194
5289
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5290
|
+
"dev": true,
|
|
5195
5291
|
"license": "MIT",
|
|
5196
5292
|
"dependencies": {
|
|
5197
5293
|
"color-name": "~1.1.4"
|
|
@@ -5203,18 +5299,9 @@
|
|
|
5203
5299
|
"node_modules/color-name": {
|
|
5204
5300
|
"version": "1.1.4",
|
|
5205
5301
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
5302
|
+
"dev": true,
|
|
5206
5303
|
"license": "MIT"
|
|
5207
5304
|
},
|
|
5208
|
-
"node_modules/color-string": {
|
|
5209
|
-
"version": "1.9.1",
|
|
5210
|
-
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
|
5211
|
-
"license": "MIT",
|
|
5212
|
-
"optional": true,
|
|
5213
|
-
"dependencies": {
|
|
5214
|
-
"color-name": "^1.0.0",
|
|
5215
|
-
"simple-swizzle": "^0.2.2"
|
|
5216
|
-
}
|
|
5217
|
-
},
|
|
5218
5305
|
"node_modules/colorette": {
|
|
5219
5306
|
"version": "2.0.20",
|
|
5220
5307
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -5243,6 +5330,7 @@
|
|
|
5243
5330
|
"node_modules/concat-map": {
|
|
5244
5331
|
"version": "0.0.1",
|
|
5245
5332
|
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
5333
|
+
"dev": true,
|
|
5246
5334
|
"license": "MIT"
|
|
5247
5335
|
},
|
|
5248
5336
|
"node_modules/convert-source-map": {
|
|
@@ -5252,12 +5340,12 @@
|
|
|
5252
5340
|
"license": "MIT"
|
|
5253
5341
|
},
|
|
5254
5342
|
"node_modules/core-js-compat": {
|
|
5255
|
-
"version": "3.
|
|
5256
|
-
"integrity": "sha512-
|
|
5343
|
+
"version": "3.48.0",
|
|
5344
|
+
"integrity": "sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==",
|
|
5257
5345
|
"dev": true,
|
|
5258
5346
|
"license": "MIT",
|
|
5259
5347
|
"dependencies": {
|
|
5260
|
-
"browserslist": "^4.28.
|
|
5348
|
+
"browserslist": "^4.28.1"
|
|
5261
5349
|
},
|
|
5262
5350
|
"funding": {
|
|
5263
5351
|
"type": "opencollective",
|
|
@@ -5325,8 +5413,8 @@
|
|
|
5325
5413
|
}
|
|
5326
5414
|
},
|
|
5327
5415
|
"node_modules/d3-format": {
|
|
5328
|
-
"version": "3.1.
|
|
5329
|
-
"integrity": "sha512-
|
|
5416
|
+
"version": "3.1.2",
|
|
5417
|
+
"integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
|
|
5330
5418
|
"license": "ISC",
|
|
5331
5419
|
"engines": {
|
|
5332
5420
|
"node": ">=12"
|
|
@@ -5493,6 +5581,7 @@
|
|
|
5493
5581
|
"node_modules/deep-is": {
|
|
5494
5582
|
"version": "0.1.4",
|
|
5495
5583
|
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
|
|
5584
|
+
"dev": true,
|
|
5496
5585
|
"license": "MIT"
|
|
5497
5586
|
},
|
|
5498
5587
|
"node_modules/define-data-property": {
|
|
@@ -5568,8 +5657,8 @@
|
|
|
5568
5657
|
}
|
|
5569
5658
|
},
|
|
5570
5659
|
"node_modules/dompurify": {
|
|
5571
|
-
"version": "3.3.
|
|
5572
|
-
"integrity": "sha512-
|
|
5660
|
+
"version": "3.3.1",
|
|
5661
|
+
"integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
|
|
5573
5662
|
"license": "(MPL-2.0 OR Apache-2.0)",
|
|
5574
5663
|
"optionalDependencies": {
|
|
5575
5664
|
"@types/trusted-types": "^2.0.7"
|
|
@@ -5589,8 +5678,8 @@
|
|
|
5589
5678
|
}
|
|
5590
5679
|
},
|
|
5591
5680
|
"node_modules/electron-to-chromium": {
|
|
5592
|
-
"version": "1.5.
|
|
5593
|
-
"integrity": "sha512-
|
|
5681
|
+
"version": "1.5.286",
|
|
5682
|
+
"integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
|
|
5594
5683
|
"dev": true,
|
|
5595
5684
|
"license": "ISC"
|
|
5596
5685
|
},
|
|
@@ -5620,8 +5709,8 @@
|
|
|
5620
5709
|
}
|
|
5621
5710
|
},
|
|
5622
5711
|
"node_modules/es-abstract": {
|
|
5623
|
-
"version": "1.24.
|
|
5624
|
-
"integrity": "sha512-
|
|
5712
|
+
"version": "1.24.1",
|
|
5713
|
+
"integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==",
|
|
5625
5714
|
"dev": true,
|
|
5626
5715
|
"license": "MIT",
|
|
5627
5716
|
"dependencies": {
|
|
@@ -5704,26 +5793,26 @@
|
|
|
5704
5793
|
}
|
|
5705
5794
|
},
|
|
5706
5795
|
"node_modules/es-iterator-helpers": {
|
|
5707
|
-
"version": "1.2.
|
|
5708
|
-
"integrity": "sha512-
|
|
5796
|
+
"version": "1.2.2",
|
|
5797
|
+
"integrity": "sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==",
|
|
5709
5798
|
"dev": true,
|
|
5710
5799
|
"license": "MIT",
|
|
5711
5800
|
"dependencies": {
|
|
5712
5801
|
"call-bind": "^1.0.8",
|
|
5713
|
-
"call-bound": "^1.0.
|
|
5802
|
+
"call-bound": "^1.0.4",
|
|
5714
5803
|
"define-properties": "^1.2.1",
|
|
5715
|
-
"es-abstract": "^1.
|
|
5804
|
+
"es-abstract": "^1.24.1",
|
|
5716
5805
|
"es-errors": "^1.3.0",
|
|
5717
|
-
"es-set-tostringtag": "^2.0
|
|
5806
|
+
"es-set-tostringtag": "^2.1.0",
|
|
5718
5807
|
"function-bind": "^1.1.2",
|
|
5719
|
-
"get-intrinsic": "^1.
|
|
5808
|
+
"get-intrinsic": "^1.3.0",
|
|
5720
5809
|
"globalthis": "^1.0.4",
|
|
5721
5810
|
"gopd": "^1.2.0",
|
|
5722
5811
|
"has-property-descriptors": "^1.0.2",
|
|
5723
5812
|
"has-proto": "^1.2.0",
|
|
5724
5813
|
"has-symbols": "^1.1.0",
|
|
5725
5814
|
"internal-slot": "^1.1.0",
|
|
5726
|
-
"iterator.prototype": "^1.1.
|
|
5815
|
+
"iterator.prototype": "^1.1.5",
|
|
5727
5816
|
"safe-array-concat": "^1.1.3"
|
|
5728
5817
|
},
|
|
5729
5818
|
"engines": {
|
|
@@ -5785,8 +5874,8 @@
|
|
|
5785
5874
|
}
|
|
5786
5875
|
},
|
|
5787
5876
|
"node_modules/es-toolkit": {
|
|
5788
|
-
"version": "1.
|
|
5789
|
-
"integrity": "sha512-
|
|
5877
|
+
"version": "1.44.0",
|
|
5878
|
+
"integrity": "sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==",
|
|
5790
5879
|
"license": "MIT",
|
|
5791
5880
|
"workspaces": [
|
|
5792
5881
|
"docs",
|
|
@@ -5814,8 +5903,9 @@
|
|
|
5814
5903
|
}
|
|
5815
5904
|
},
|
|
5816
5905
|
"node_modules/eslint": {
|
|
5817
|
-
"version": "9.39.
|
|
5818
|
-
"integrity": "sha512-
|
|
5906
|
+
"version": "9.39.2",
|
|
5907
|
+
"integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
|
|
5908
|
+
"dev": true,
|
|
5819
5909
|
"license": "MIT",
|
|
5820
5910
|
"dependencies": {
|
|
5821
5911
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
@@ -5824,7 +5914,7 @@
|
|
|
5824
5914
|
"@eslint/config-helpers": "^0.4.2",
|
|
5825
5915
|
"@eslint/core": "^0.17.0",
|
|
5826
5916
|
"@eslint/eslintrc": "^3.3.1",
|
|
5827
|
-
"@eslint/js": "9.39.
|
|
5917
|
+
"@eslint/js": "9.39.2",
|
|
5828
5918
|
"@eslint/plugin-kit": "^0.4.1",
|
|
5829
5919
|
"@humanfs/node": "^0.16.6",
|
|
5830
5920
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -6093,17 +6183,6 @@
|
|
|
6093
6183
|
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
|
|
6094
6184
|
}
|
|
6095
6185
|
},
|
|
6096
|
-
"node_modules/eslint-plugin-react-perf": {
|
|
6097
|
-
"version": "3.3.3",
|
|
6098
|
-
"integrity": "sha512-EzPdxsRJg5IllCAH9ny/3nK7sv9251tvKmi/d3Ouv5KzI8TB3zNhzScxL9wnh9Hvv8GYC5LEtzTauynfOEYiAw==",
|
|
6099
|
-
"license": "MIT",
|
|
6100
|
-
"engines": {
|
|
6101
|
-
"node": ">=6.9.1"
|
|
6102
|
-
},
|
|
6103
|
-
"peerDependencies": {
|
|
6104
|
-
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
|
|
6105
|
-
}
|
|
6106
|
-
},
|
|
6107
6186
|
"node_modules/eslint-plugin-react/node_modules/resolve": {
|
|
6108
6187
|
"version": "2.0.0-next.5",
|
|
6109
6188
|
"integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
|
|
@@ -6124,6 +6203,7 @@
|
|
|
6124
6203
|
"node_modules/eslint-scope": {
|
|
6125
6204
|
"version": "8.4.0",
|
|
6126
6205
|
"integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
|
|
6206
|
+
"dev": true,
|
|
6127
6207
|
"license": "BSD-2-Clause",
|
|
6128
6208
|
"dependencies": {
|
|
6129
6209
|
"esrecurse": "^4.3.0",
|
|
@@ -6139,6 +6219,7 @@
|
|
|
6139
6219
|
"node_modules/eslint-visitor-keys": {
|
|
6140
6220
|
"version": "4.2.1",
|
|
6141
6221
|
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
6222
|
+
"dev": true,
|
|
6142
6223
|
"license": "Apache-2.0",
|
|
6143
6224
|
"engines": {
|
|
6144
6225
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6150,6 +6231,7 @@
|
|
|
6150
6231
|
"node_modules/eslint/node_modules/glob-parent": {
|
|
6151
6232
|
"version": "6.0.2",
|
|
6152
6233
|
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
|
6234
|
+
"dev": true,
|
|
6153
6235
|
"license": "ISC",
|
|
6154
6236
|
"dependencies": {
|
|
6155
6237
|
"is-glob": "^4.0.3"
|
|
@@ -6161,6 +6243,7 @@
|
|
|
6161
6243
|
"node_modules/espree": {
|
|
6162
6244
|
"version": "10.4.0",
|
|
6163
6245
|
"integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
|
|
6246
|
+
"dev": true,
|
|
6164
6247
|
"license": "BSD-2-Clause",
|
|
6165
6248
|
"dependencies": {
|
|
6166
6249
|
"acorn": "^8.15.0",
|
|
@@ -6175,8 +6258,9 @@
|
|
|
6175
6258
|
}
|
|
6176
6259
|
},
|
|
6177
6260
|
"node_modules/esquery": {
|
|
6178
|
-
"version": "1.
|
|
6179
|
-
"integrity": "sha512-
|
|
6261
|
+
"version": "1.7.0",
|
|
6262
|
+
"integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
|
|
6263
|
+
"dev": true,
|
|
6180
6264
|
"license": "BSD-3-Clause",
|
|
6181
6265
|
"dependencies": {
|
|
6182
6266
|
"estraverse": "^5.1.0"
|
|
@@ -6188,6 +6272,7 @@
|
|
|
6188
6272
|
"node_modules/esrecurse": {
|
|
6189
6273
|
"version": "4.3.0",
|
|
6190
6274
|
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
|
|
6275
|
+
"dev": true,
|
|
6191
6276
|
"license": "BSD-2-Clause",
|
|
6192
6277
|
"dependencies": {
|
|
6193
6278
|
"estraverse": "^5.2.0"
|
|
@@ -6199,6 +6284,7 @@
|
|
|
6199
6284
|
"node_modules/estraverse": {
|
|
6200
6285
|
"version": "5.3.0",
|
|
6201
6286
|
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
|
6287
|
+
"dev": true,
|
|
6202
6288
|
"license": "BSD-2-Clause",
|
|
6203
6289
|
"engines": {
|
|
6204
6290
|
"node": ">=4.0"
|
|
@@ -6207,19 +6293,20 @@
|
|
|
6207
6293
|
"node_modules/esutils": {
|
|
6208
6294
|
"version": "2.0.3",
|
|
6209
6295
|
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
6296
|
+
"dev": true,
|
|
6210
6297
|
"license": "BSD-2-Clause",
|
|
6211
6298
|
"engines": {
|
|
6212
6299
|
"node": ">=0.10.0"
|
|
6213
6300
|
}
|
|
6214
6301
|
},
|
|
6215
6302
|
"node_modules/eventemitter3": {
|
|
6216
|
-
"version": "5.0.
|
|
6217
|
-
"integrity": "sha512-
|
|
6303
|
+
"version": "5.0.4",
|
|
6304
|
+
"integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
|
|
6218
6305
|
"license": "MIT"
|
|
6219
6306
|
},
|
|
6220
6307
|
"node_modules/execa": {
|
|
6221
|
-
"version": "9.6.
|
|
6222
|
-
"integrity": "sha512-
|
|
6308
|
+
"version": "9.6.1",
|
|
6309
|
+
"integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==",
|
|
6223
6310
|
"license": "MIT",
|
|
6224
6311
|
"dependencies": {
|
|
6225
6312
|
"@sindresorhus/merge-streams": "^4.0.0",
|
|
@@ -6245,6 +6332,7 @@
|
|
|
6245
6332
|
"node_modules/fast-deep-equal": {
|
|
6246
6333
|
"version": "3.1.3",
|
|
6247
6334
|
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
6335
|
+
"dev": true,
|
|
6248
6336
|
"license": "MIT"
|
|
6249
6337
|
},
|
|
6250
6338
|
"node_modules/fast-glob": {
|
|
@@ -6266,16 +6354,18 @@
|
|
|
6266
6354
|
"node_modules/fast-json-stable-stringify": {
|
|
6267
6355
|
"version": "2.1.0",
|
|
6268
6356
|
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
|
|
6357
|
+
"dev": true,
|
|
6269
6358
|
"license": "MIT"
|
|
6270
6359
|
},
|
|
6271
6360
|
"node_modules/fast-levenshtein": {
|
|
6272
6361
|
"version": "2.0.6",
|
|
6273
6362
|
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
|
|
6363
|
+
"dev": true,
|
|
6274
6364
|
"license": "MIT"
|
|
6275
6365
|
},
|
|
6276
6366
|
"node_modules/fastq": {
|
|
6277
|
-
"version": "1.
|
|
6278
|
-
"integrity": "sha512-
|
|
6367
|
+
"version": "1.20.1",
|
|
6368
|
+
"integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
|
|
6279
6369
|
"dev": true,
|
|
6280
6370
|
"license": "ISC",
|
|
6281
6371
|
"dependencies": {
|
|
@@ -6299,6 +6389,7 @@
|
|
|
6299
6389
|
"node_modules/file-entry-cache": {
|
|
6300
6390
|
"version": "8.0.0",
|
|
6301
6391
|
"integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
|
|
6392
|
+
"dev": true,
|
|
6302
6393
|
"license": "MIT",
|
|
6303
6394
|
"dependencies": {
|
|
6304
6395
|
"flat-cache": "^4.0.0"
|
|
@@ -6335,6 +6426,7 @@
|
|
|
6335
6426
|
"node_modules/find-up": {
|
|
6336
6427
|
"version": "5.0.0",
|
|
6337
6428
|
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
|
6429
|
+
"dev": true,
|
|
6338
6430
|
"license": "MIT",
|
|
6339
6431
|
"dependencies": {
|
|
6340
6432
|
"locate-path": "^6.0.0",
|
|
@@ -6350,6 +6442,7 @@
|
|
|
6350
6442
|
"node_modules/flat-cache": {
|
|
6351
6443
|
"version": "4.0.1",
|
|
6352
6444
|
"integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
|
|
6445
|
+
"dev": true,
|
|
6353
6446
|
"license": "MIT",
|
|
6354
6447
|
"dependencies": {
|
|
6355
6448
|
"flatted": "^3.2.9",
|
|
@@ -6362,6 +6455,7 @@
|
|
|
6362
6455
|
"node_modules/flatted": {
|
|
6363
6456
|
"version": "3.3.3",
|
|
6364
6457
|
"integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
|
|
6458
|
+
"dev": true,
|
|
6365
6459
|
"license": "ISC"
|
|
6366
6460
|
},
|
|
6367
6461
|
"node_modules/follow-redirects": {
|
|
@@ -6414,8 +6508,8 @@
|
|
|
6414
6508
|
}
|
|
6415
6509
|
},
|
|
6416
6510
|
"node_modules/fs-extra": {
|
|
6417
|
-
"version": "11.3.
|
|
6418
|
-
"integrity": "sha512-
|
|
6511
|
+
"version": "11.3.3",
|
|
6512
|
+
"integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
|
|
6419
6513
|
"dev": true,
|
|
6420
6514
|
"license": "MIT",
|
|
6421
6515
|
"dependencies": {
|
|
@@ -6597,8 +6691,8 @@
|
|
|
6597
6691
|
}
|
|
6598
6692
|
},
|
|
6599
6693
|
"node_modules/get-tsconfig": {
|
|
6600
|
-
"version": "4.13.
|
|
6601
|
-
"integrity": "sha512-
|
|
6694
|
+
"version": "4.13.6",
|
|
6695
|
+
"integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
|
|
6602
6696
|
"dev": true,
|
|
6603
6697
|
"license": "MIT",
|
|
6604
6698
|
"dependencies": {
|
|
@@ -6611,7 +6705,7 @@
|
|
|
6611
6705
|
"node_modules/glob": {
|
|
6612
6706
|
"version": "7.2.3",
|
|
6613
6707
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
6614
|
-
"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",
|
|
6615
6709
|
"dev": true,
|
|
6616
6710
|
"license": "ISC",
|
|
6617
6711
|
"dependencies": {
|
|
@@ -6644,6 +6738,7 @@
|
|
|
6644
6738
|
"node_modules/globals": {
|
|
6645
6739
|
"version": "14.0.0",
|
|
6646
6740
|
"integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
|
|
6741
|
+
"dev": true,
|
|
6647
6742
|
"license": "MIT",
|
|
6648
6743
|
"engines": {
|
|
6649
6744
|
"node": ">=18"
|
|
@@ -6685,12 +6780,6 @@
|
|
|
6685
6780
|
"dev": true,
|
|
6686
6781
|
"license": "ISC"
|
|
6687
6782
|
},
|
|
6688
|
-
"node_modules/graphemer": {
|
|
6689
|
-
"version": "1.4.0",
|
|
6690
|
-
"integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
|
|
6691
|
-
"dev": true,
|
|
6692
|
-
"license": "MIT"
|
|
6693
|
-
},
|
|
6694
6783
|
"node_modules/has-bigints": {
|
|
6695
6784
|
"version": "1.1.0",
|
|
6696
6785
|
"integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
|
|
@@ -6706,6 +6795,7 @@
|
|
|
6706
6795
|
"node_modules/has-flag": {
|
|
6707
6796
|
"version": "4.0.0",
|
|
6708
6797
|
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
6798
|
+
"dev": true,
|
|
6709
6799
|
"license": "MIT",
|
|
6710
6800
|
"engines": {
|
|
6711
6801
|
"node": ">=8"
|
|
@@ -6821,6 +6911,7 @@
|
|
|
6821
6911
|
"node_modules/ignore": {
|
|
6822
6912
|
"version": "5.3.2",
|
|
6823
6913
|
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
|
|
6914
|
+
"dev": true,
|
|
6824
6915
|
"license": "MIT",
|
|
6825
6916
|
"engines": {
|
|
6826
6917
|
"node": ">= 4"
|
|
@@ -6853,6 +6944,7 @@
|
|
|
6853
6944
|
"node_modules/imurmurhash": {
|
|
6854
6945
|
"version": "0.1.4",
|
|
6855
6946
|
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
|
|
6947
|
+
"dev": true,
|
|
6856
6948
|
"license": "MIT",
|
|
6857
6949
|
"engines": {
|
|
6858
6950
|
"node": ">=0.8.19"
|
|
@@ -7003,8 +7095,8 @@
|
|
|
7003
7095
|
}
|
|
7004
7096
|
},
|
|
7005
7097
|
"node_modules/is-bun-module/node_modules/semver": {
|
|
7006
|
-
"version": "7.7.
|
|
7007
|
-
"integrity": "sha512-
|
|
7098
|
+
"version": "7.7.4",
|
|
7099
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
7008
7100
|
"dev": true,
|
|
7009
7101
|
"license": "ISC",
|
|
7010
7102
|
"bin": {
|
|
@@ -7076,6 +7168,7 @@
|
|
|
7076
7168
|
"node_modules/is-extglob": {
|
|
7077
7169
|
"version": "2.1.1",
|
|
7078
7170
|
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
7171
|
+
"dev": true,
|
|
7079
7172
|
"license": "MIT",
|
|
7080
7173
|
"engines": {
|
|
7081
7174
|
"node": ">=0.10.0"
|
|
@@ -7132,6 +7225,7 @@
|
|
|
7132
7225
|
"node_modules/is-glob": {
|
|
7133
7226
|
"version": "4.0.3",
|
|
7134
7227
|
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
7228
|
+
"dev": true,
|
|
7135
7229
|
"license": "MIT",
|
|
7136
7230
|
"dependencies": {
|
|
7137
7231
|
"is-extglob": "^2.1.1"
|
|
@@ -7386,16 +7480,16 @@
|
|
|
7386
7480
|
}
|
|
7387
7481
|
},
|
|
7388
7482
|
"node_modules/jodit": {
|
|
7389
|
-
"version": "4.
|
|
7390
|
-
"integrity": "sha512-
|
|
7483
|
+
"version": "4.9.6",
|
|
7484
|
+
"integrity": "sha512-2hxjDn5c2p2H//4sbgl9S7zAid1mUXkDXC3aU+HhmsvgABtc+VKuuYFghVGsx/MblNf9zE7waCh6Wyc64zud0Q==",
|
|
7391
7485
|
"license": "MIT"
|
|
7392
7486
|
},
|
|
7393
7487
|
"node_modules/jodit-react": {
|
|
7394
|
-
"version": "5.
|
|
7395
|
-
"integrity": "sha512-
|
|
7488
|
+
"version": "5.3.21",
|
|
7489
|
+
"integrity": "sha512-dSFVKkrDVbhVwKDjuFMJ3HhPdqeEz/Yz5MhJf9v9B3Gg29CnelKCZ00h6MxXzlhglF3qvtvUTc2HSKrSB15khw==",
|
|
7396
7490
|
"license": "MIT",
|
|
7397
7491
|
"dependencies": {
|
|
7398
|
-
"jodit": "^4.
|
|
7492
|
+
"jodit": "^4.9.4"
|
|
7399
7493
|
},
|
|
7400
7494
|
"peerDependencies": {
|
|
7401
7495
|
"react": "~0.14 || ^15 || ^16 || ^17 || ^18 || ^19",
|
|
@@ -7418,6 +7512,7 @@
|
|
|
7418
7512
|
"node_modules/js-yaml": {
|
|
7419
7513
|
"version": "4.1.1",
|
|
7420
7514
|
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
|
|
7515
|
+
"dev": true,
|
|
7421
7516
|
"license": "MIT",
|
|
7422
7517
|
"dependencies": {
|
|
7423
7518
|
"argparse": "^2.0.1"
|
|
@@ -7440,6 +7535,7 @@
|
|
|
7440
7535
|
"node_modules/json-buffer": {
|
|
7441
7536
|
"version": "3.0.1",
|
|
7442
7537
|
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
|
|
7538
|
+
"dev": true,
|
|
7443
7539
|
"license": "MIT"
|
|
7444
7540
|
},
|
|
7445
7541
|
"node_modules/json-parse-even-better-errors": {
|
|
@@ -7450,11 +7546,13 @@
|
|
|
7450
7546
|
"node_modules/json-schema-traverse": {
|
|
7451
7547
|
"version": "0.4.1",
|
|
7452
7548
|
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
|
7549
|
+
"dev": true,
|
|
7453
7550
|
"license": "MIT"
|
|
7454
7551
|
},
|
|
7455
7552
|
"node_modules/json-stable-stringify-without-jsonify": {
|
|
7456
7553
|
"version": "1.0.1",
|
|
7457
7554
|
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
|
|
7555
|
+
"dev": true,
|
|
7458
7556
|
"license": "MIT"
|
|
7459
7557
|
},
|
|
7460
7558
|
"node_modules/json5": {
|
|
@@ -7499,6 +7597,7 @@
|
|
|
7499
7597
|
"node_modules/keyv": {
|
|
7500
7598
|
"version": "4.5.4",
|
|
7501
7599
|
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
|
|
7600
|
+
"dev": true,
|
|
7502
7601
|
"license": "MIT",
|
|
7503
7602
|
"dependencies": {
|
|
7504
7603
|
"json-buffer": "3.0.1"
|
|
@@ -7525,6 +7624,7 @@
|
|
|
7525
7624
|
"node_modules/levn": {
|
|
7526
7625
|
"version": "0.4.1",
|
|
7527
7626
|
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
|
7627
|
+
"dev": true,
|
|
7528
7628
|
"license": "MIT",
|
|
7529
7629
|
"dependencies": {
|
|
7530
7630
|
"prelude-ls": "^1.2.1",
|
|
@@ -7563,22 +7663,25 @@
|
|
|
7563
7663
|
}
|
|
7564
7664
|
},
|
|
7565
7665
|
"node_modules/lint-staged/node_modules/commander": {
|
|
7566
|
-
"version": "14.0.
|
|
7567
|
-
"integrity": "sha512-
|
|
7666
|
+
"version": "14.0.3",
|
|
7667
|
+
"integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==",
|
|
7568
7668
|
"license": "MIT",
|
|
7569
7669
|
"engines": {
|
|
7570
7670
|
"node": ">=20"
|
|
7571
7671
|
}
|
|
7572
7672
|
},
|
|
7573
7673
|
"node_modules/lint-staged/node_modules/yaml": {
|
|
7574
|
-
"version": "2.8.
|
|
7575
|
-
"integrity": "sha512-
|
|
7674
|
+
"version": "2.8.2",
|
|
7675
|
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
7576
7676
|
"license": "ISC",
|
|
7577
7677
|
"bin": {
|
|
7578
7678
|
"yaml": "bin.mjs"
|
|
7579
7679
|
},
|
|
7580
7680
|
"engines": {
|
|
7581
7681
|
"node": ">= 14.6"
|
|
7682
|
+
},
|
|
7683
|
+
"funding": {
|
|
7684
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
7582
7685
|
}
|
|
7583
7686
|
},
|
|
7584
7687
|
"node_modules/listr2": {
|
|
@@ -7600,6 +7703,7 @@
|
|
|
7600
7703
|
"node_modules/locate-path": {
|
|
7601
7704
|
"version": "6.0.0",
|
|
7602
7705
|
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
|
7706
|
+
"dev": true,
|
|
7603
7707
|
"license": "MIT",
|
|
7604
7708
|
"dependencies": {
|
|
7605
7709
|
"p-locate": "^5.0.0"
|
|
@@ -7612,13 +7716,13 @@
|
|
|
7612
7716
|
}
|
|
7613
7717
|
},
|
|
7614
7718
|
"node_modules/lodash": {
|
|
7615
|
-
"version": "4.17.
|
|
7616
|
-
"integrity": "sha512-
|
|
7719
|
+
"version": "4.17.23",
|
|
7720
|
+
"integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
|
|
7617
7721
|
"license": "MIT"
|
|
7618
7722
|
},
|
|
7619
7723
|
"node_modules/lodash-es": {
|
|
7620
|
-
"version": "4.17.
|
|
7621
|
-
"integrity": "sha512-
|
|
7724
|
+
"version": "4.17.23",
|
|
7725
|
+
"integrity": "sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==",
|
|
7622
7726
|
"license": "MIT"
|
|
7623
7727
|
},
|
|
7624
7728
|
"node_modules/lodash.debounce": {
|
|
@@ -7630,6 +7734,7 @@
|
|
|
7630
7734
|
"node_modules/lodash.merge": {
|
|
7631
7735
|
"version": "4.6.2",
|
|
7632
7736
|
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
|
7737
|
+
"dev": true,
|
|
7633
7738
|
"license": "MIT"
|
|
7634
7739
|
},
|
|
7635
7740
|
"node_modules/log-update": {
|
|
@@ -7759,6 +7864,7 @@
|
|
|
7759
7864
|
"node_modules/minimatch": {
|
|
7760
7865
|
"version": "3.1.2",
|
|
7761
7866
|
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
7867
|
+
"dev": true,
|
|
7762
7868
|
"license": "ISC",
|
|
7763
7869
|
"dependencies": {
|
|
7764
7870
|
"brace-expansion": "^1.1.7"
|
|
@@ -7855,17 +7961,17 @@
|
|
|
7855
7961
|
"node_modules/natural-compare": {
|
|
7856
7962
|
"version": "1.4.0",
|
|
7857
7963
|
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
|
|
7964
|
+
"dev": true,
|
|
7858
7965
|
"license": "MIT"
|
|
7859
7966
|
},
|
|
7860
7967
|
"node_modules/next": {
|
|
7861
|
-
"version": "
|
|
7862
|
-
"integrity": "sha512-
|
|
7968
|
+
"version": "16.1.1",
|
|
7969
|
+
"integrity": "sha512-QI+T7xrxt1pF6SQ/JYFz95ro/mg/1Znk5vBebsWwbpejj1T0A23hO7GYEaVac9QUOT2BIMiuzm0L99ooq7k0/w==",
|
|
7863
7970
|
"license": "MIT",
|
|
7864
7971
|
"dependencies": {
|
|
7865
|
-
"@next/env": "
|
|
7866
|
-
"@swc/counter": "0.1.3",
|
|
7972
|
+
"@next/env": "16.1.1",
|
|
7867
7973
|
"@swc/helpers": "0.5.15",
|
|
7868
|
-
"
|
|
7974
|
+
"baseline-browser-mapping": "^2.8.3",
|
|
7869
7975
|
"caniuse-lite": "^1.0.30001579",
|
|
7870
7976
|
"postcss": "8.4.31",
|
|
7871
7977
|
"styled-jsx": "5.1.6"
|
|
@@ -7874,22 +7980,22 @@
|
|
|
7874
7980
|
"next": "dist/bin/next"
|
|
7875
7981
|
},
|
|
7876
7982
|
"engines": {
|
|
7877
|
-
"node": "
|
|
7983
|
+
"node": ">=20.9.0"
|
|
7878
7984
|
},
|
|
7879
7985
|
"optionalDependencies": {
|
|
7880
|
-
"@next/swc-darwin-arm64": "
|
|
7881
|
-
"@next/swc-darwin-x64": "
|
|
7882
|
-
"@next/swc-linux-arm64-gnu": "
|
|
7883
|
-
"@next/swc-linux-arm64-musl": "
|
|
7884
|
-
"@next/swc-linux-x64-gnu": "
|
|
7885
|
-
"@next/swc-linux-x64-musl": "
|
|
7886
|
-
"@next/swc-win32-arm64-msvc": "
|
|
7887
|
-
"@next/swc-win32-x64-msvc": "
|
|
7888
|
-
"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"
|
|
7889
7995
|
},
|
|
7890
7996
|
"peerDependencies": {
|
|
7891
7997
|
"@opentelemetry/api": "^1.1.0",
|
|
7892
|
-
"@playwright/test": "^1.
|
|
7998
|
+
"@playwright/test": "^1.51.1",
|
|
7893
7999
|
"babel-plugin-react-compiler": "*",
|
|
7894
8000
|
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
7895
8001
|
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
|
|
@@ -8100,6 +8206,7 @@
|
|
|
8100
8206
|
"node_modules/optionator": {
|
|
8101
8207
|
"version": "0.9.4",
|
|
8102
8208
|
"integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
|
|
8209
|
+
"dev": true,
|
|
8103
8210
|
"license": "MIT",
|
|
8104
8211
|
"dependencies": {
|
|
8105
8212
|
"deep-is": "^0.1.3",
|
|
@@ -8133,6 +8240,7 @@
|
|
|
8133
8240
|
"node_modules/p-limit": {
|
|
8134
8241
|
"version": "3.1.0",
|
|
8135
8242
|
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
|
|
8243
|
+
"dev": true,
|
|
8136
8244
|
"license": "MIT",
|
|
8137
8245
|
"dependencies": {
|
|
8138
8246
|
"yocto-queue": "^0.1.0"
|
|
@@ -8147,6 +8255,7 @@
|
|
|
8147
8255
|
"node_modules/p-locate": {
|
|
8148
8256
|
"version": "5.0.0",
|
|
8149
8257
|
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
|
|
8258
|
+
"dev": true,
|
|
8150
8259
|
"license": "MIT",
|
|
8151
8260
|
"dependencies": {
|
|
8152
8261
|
"p-limit": "^3.0.2"
|
|
@@ -8209,6 +8318,7 @@
|
|
|
8209
8318
|
"node_modules/path-exists": {
|
|
8210
8319
|
"version": "4.0.0",
|
|
8211
8320
|
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
|
8321
|
+
"dev": true,
|
|
8212
8322
|
"license": "MIT",
|
|
8213
8323
|
"engines": {
|
|
8214
8324
|
"node": ">=8"
|
|
@@ -8432,14 +8542,15 @@
|
|
|
8432
8542
|
"node_modules/prelude-ls": {
|
|
8433
8543
|
"version": "1.2.1",
|
|
8434
8544
|
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
|
|
8545
|
+
"dev": true,
|
|
8435
8546
|
"license": "MIT",
|
|
8436
8547
|
"engines": {
|
|
8437
8548
|
"node": ">= 0.8.0"
|
|
8438
8549
|
}
|
|
8439
8550
|
},
|
|
8440
8551
|
"node_modules/prettier": {
|
|
8441
|
-
"version": "3.
|
|
8442
|
-
"integrity": "sha512-
|
|
8552
|
+
"version": "3.8.1",
|
|
8553
|
+
"integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==",
|
|
8443
8554
|
"dev": true,
|
|
8444
8555
|
"license": "MIT",
|
|
8445
8556
|
"bin": {
|
|
@@ -8489,6 +8600,7 @@
|
|
|
8489
8600
|
"node_modules/punycode": {
|
|
8490
8601
|
"version": "2.3.1",
|
|
8491
8602
|
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
8603
|
+
"dev": true,
|
|
8492
8604
|
"license": "MIT",
|
|
8493
8605
|
"engines": {
|
|
8494
8606
|
"node": ">=6"
|
|
@@ -8520,8 +8632,8 @@
|
|
|
8520
8632
|
"license": "MIT"
|
|
8521
8633
|
},
|
|
8522
8634
|
"node_modules/react": {
|
|
8523
|
-
"version": "19.2.
|
|
8524
|
-
"integrity": "sha512-
|
|
8635
|
+
"version": "19.2.4",
|
|
8636
|
+
"integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
|
|
8525
8637
|
"license": "MIT",
|
|
8526
8638
|
"engines": {
|
|
8527
8639
|
"node": ">=0.10.0"
|
|
@@ -8545,19 +8657,19 @@
|
|
|
8545
8657
|
}
|
|
8546
8658
|
},
|
|
8547
8659
|
"node_modules/react-dom": {
|
|
8548
|
-
"version": "19.2.
|
|
8549
|
-
"integrity": "sha512-
|
|
8660
|
+
"version": "19.2.4",
|
|
8661
|
+
"integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
|
|
8550
8662
|
"license": "MIT",
|
|
8551
8663
|
"dependencies": {
|
|
8552
8664
|
"scheduler": "^0.27.0"
|
|
8553
8665
|
},
|
|
8554
8666
|
"peerDependencies": {
|
|
8555
|
-
"react": "^19.2.
|
|
8667
|
+
"react": "^19.2.4"
|
|
8556
8668
|
}
|
|
8557
8669
|
},
|
|
8558
8670
|
"node_modules/react-hook-form": {
|
|
8559
|
-
"version": "7.
|
|
8560
|
-
"integrity": "sha512-
|
|
8671
|
+
"version": "7.71.1",
|
|
8672
|
+
"integrity": "sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w==",
|
|
8561
8673
|
"license": "MIT",
|
|
8562
8674
|
"engines": {
|
|
8563
8675
|
"node": ">=18.0.0"
|
|
@@ -8571,8 +8683,8 @@
|
|
|
8571
8683
|
}
|
|
8572
8684
|
},
|
|
8573
8685
|
"node_modules/react-is": {
|
|
8574
|
-
"version": "19.2.
|
|
8575
|
-
"integrity": "sha512-
|
|
8686
|
+
"version": "19.2.4",
|
|
8687
|
+
"integrity": "sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==",
|
|
8576
8688
|
"license": "MIT"
|
|
8577
8689
|
},
|
|
8578
8690
|
"node_modules/react-redux": {
|
|
@@ -8634,8 +8746,8 @@
|
|
|
8634
8746
|
}
|
|
8635
8747
|
},
|
|
8636
8748
|
"node_modules/recharts": {
|
|
8637
|
-
"version": "3.
|
|
8638
|
-
"integrity": "sha512-
|
|
8749
|
+
"version": "3.7.0",
|
|
8750
|
+
"integrity": "sha512-l2VCsy3XXeraxIID9fx23eCb6iCBsxUQDnE8tWm6DFdszVAO7WVY/ChAD9wVit01y6B2PMupYiMmQwhgPHc9Ew==",
|
|
8639
8751
|
"license": "MIT",
|
|
8640
8752
|
"workspaces": [
|
|
8641
8753
|
"www"
|
|
@@ -8645,7 +8757,6 @@
|
|
|
8645
8757
|
"clsx": "^2.1.1",
|
|
8646
8758
|
"decimal.js-light": "^2.5.1",
|
|
8647
8759
|
"es-toolkit": "^1.39.3",
|
|
8648
|
-
"eslint-plugin-react-perf": "^3.3.3",
|
|
8649
8760
|
"eventemitter3": "^5.0.1",
|
|
8650
8761
|
"immer": "^10.1.1",
|
|
8651
8762
|
"react-redux": "8.x.x || 9.x.x",
|
|
@@ -8978,15 +9089,15 @@
|
|
|
8978
9089
|
}
|
|
8979
9090
|
},
|
|
8980
9091
|
"node_modules/sharp": {
|
|
8981
|
-
"version": "0.
|
|
8982
|
-
"integrity": "sha512-
|
|
9092
|
+
"version": "0.34.5",
|
|
9093
|
+
"integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
|
|
8983
9094
|
"hasInstallScript": true,
|
|
8984
9095
|
"license": "Apache-2.0",
|
|
8985
9096
|
"optional": true,
|
|
8986
9097
|
"dependencies": {
|
|
8987
|
-
"
|
|
8988
|
-
"detect-libc": "^2.
|
|
8989
|
-
"semver": "^7.
|
|
9098
|
+
"@img/colour": "^1.0.0",
|
|
9099
|
+
"detect-libc": "^2.1.2",
|
|
9100
|
+
"semver": "^7.7.3"
|
|
8990
9101
|
},
|
|
8991
9102
|
"engines": {
|
|
8992
9103
|
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
@@ -8995,30 +9106,35 @@
|
|
|
8995
9106
|
"url": "https://opencollective.com/libvips"
|
|
8996
9107
|
},
|
|
8997
9108
|
"optionalDependencies": {
|
|
8998
|
-
"@img/sharp-darwin-arm64": "0.
|
|
8999
|
-
"@img/sharp-darwin-x64": "0.
|
|
9000
|
-
"@img/sharp-libvips-darwin-arm64": "1.
|
|
9001
|
-
"@img/sharp-libvips-darwin-x64": "1.
|
|
9002
|
-
"@img/sharp-libvips-linux-arm": "1.
|
|
9003
|
-
"@img/sharp-libvips-linux-arm64": "1.
|
|
9004
|
-
"@img/sharp-libvips-linux-
|
|
9005
|
-
"@img/sharp-libvips-linux-
|
|
9006
|
-
"@img/sharp-libvips-
|
|
9007
|
-
"@img/sharp-libvips-
|
|
9008
|
-
"@img/sharp-
|
|
9009
|
-
"@img/sharp-
|
|
9010
|
-
"@img/sharp-linux-
|
|
9011
|
-
"@img/sharp-linux-
|
|
9012
|
-
"@img/sharp-
|
|
9013
|
-
"@img/sharp-
|
|
9014
|
-
"@img/sharp-
|
|
9015
|
-
"@img/sharp-
|
|
9016
|
-
"@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"
|
|
9017
9133
|
}
|
|
9018
9134
|
},
|
|
9019
9135
|
"node_modules/sharp/node_modules/semver": {
|
|
9020
|
-
"version": "7.7.
|
|
9021
|
-
"integrity": "sha512-
|
|
9136
|
+
"version": "7.7.4",
|
|
9137
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
9022
9138
|
"license": "ISC",
|
|
9023
9139
|
"optional": true,
|
|
9024
9140
|
"bin": {
|
|
@@ -9130,21 +9246,6 @@
|
|
|
9130
9246
|
"url": "https://github.com/sponsors/isaacs"
|
|
9131
9247
|
}
|
|
9132
9248
|
},
|
|
9133
|
-
"node_modules/simple-swizzle": {
|
|
9134
|
-
"version": "0.2.4",
|
|
9135
|
-
"integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
|
|
9136
|
-
"license": "MIT",
|
|
9137
|
-
"optional": true,
|
|
9138
|
-
"dependencies": {
|
|
9139
|
-
"is-arrayish": "^0.3.1"
|
|
9140
|
-
}
|
|
9141
|
-
},
|
|
9142
|
-
"node_modules/simple-swizzle/node_modules/is-arrayish": {
|
|
9143
|
-
"version": "0.3.4",
|
|
9144
|
-
"integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
|
|
9145
|
-
"license": "MIT",
|
|
9146
|
-
"optional": true
|
|
9147
|
-
},
|
|
9148
9249
|
"node_modules/slash": {
|
|
9149
9250
|
"version": "2.0.0",
|
|
9150
9251
|
"integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
|
|
@@ -9215,13 +9316,6 @@
|
|
|
9215
9316
|
"node": ">= 0.4"
|
|
9216
9317
|
}
|
|
9217
9318
|
},
|
|
9218
|
-
"node_modules/streamsearch": {
|
|
9219
|
-
"version": "1.1.0",
|
|
9220
|
-
"integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
|
|
9221
|
-
"engines": {
|
|
9222
|
-
"node": ">=10.0.0"
|
|
9223
|
-
}
|
|
9224
|
-
},
|
|
9225
9319
|
"node_modules/string-argv": {
|
|
9226
9320
|
"version": "0.3.2",
|
|
9227
9321
|
"integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==",
|
|
@@ -9231,8 +9325,8 @@
|
|
|
9231
9325
|
}
|
|
9232
9326
|
},
|
|
9233
9327
|
"node_modules/string-width": {
|
|
9234
|
-
"version": "8.1.
|
|
9235
|
-
"integrity": "sha512-
|
|
9328
|
+
"version": "8.1.1",
|
|
9329
|
+
"integrity": "sha512-KpqHIdDL9KwYk22wEOg/VIqYbrnLeSApsKT/bSj6Ez7pn3CftUiLAv2Lccpq1ALcpLV9UX1Ppn92npZWu2w/aw==",
|
|
9236
9330
|
"license": "MIT",
|
|
9237
9331
|
"dependencies": {
|
|
9238
9332
|
"get-east-asian-width": "^1.3.0",
|
|
@@ -9389,6 +9483,7 @@
|
|
|
9389
9483
|
"node_modules/strip-json-comments": {
|
|
9390
9484
|
"version": "3.1.1",
|
|
9391
9485
|
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
|
9486
|
+
"dev": true,
|
|
9392
9487
|
"license": "MIT",
|
|
9393
9488
|
"engines": {
|
|
9394
9489
|
"node": ">=8"
|
|
@@ -9427,6 +9522,7 @@
|
|
|
9427
9522
|
"node_modules/supports-color": {
|
|
9428
9523
|
"version": "7.2.0",
|
|
9429
9524
|
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
9525
|
+
"dev": true,
|
|
9430
9526
|
"license": "MIT",
|
|
9431
9527
|
"dependencies": {
|
|
9432
9528
|
"has-flag": "^4.0.0"
|
|
@@ -9447,8 +9543,8 @@
|
|
|
9447
9543
|
}
|
|
9448
9544
|
},
|
|
9449
9545
|
"node_modules/tabbable": {
|
|
9450
|
-
"version": "6.
|
|
9451
|
-
"integrity": "sha512-
|
|
9546
|
+
"version": "6.4.0",
|
|
9547
|
+
"integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==",
|
|
9452
9548
|
"license": "MIT"
|
|
9453
9549
|
},
|
|
9454
9550
|
"node_modules/tiny-invariant": {
|
|
@@ -9518,8 +9614,8 @@
|
|
|
9518
9614
|
}
|
|
9519
9615
|
},
|
|
9520
9616
|
"node_modules/ts-api-utils": {
|
|
9521
|
-
"version": "2.
|
|
9522
|
-
"integrity": "sha512-
|
|
9617
|
+
"version": "2.4.0",
|
|
9618
|
+
"integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==",
|
|
9523
9619
|
"dev": true,
|
|
9524
9620
|
"license": "MIT",
|
|
9525
9621
|
"engines": {
|
|
@@ -9561,6 +9657,7 @@
|
|
|
9561
9657
|
"node_modules/type-check": {
|
|
9562
9658
|
"version": "0.4.0",
|
|
9563
9659
|
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
|
|
9660
|
+
"dev": true,
|
|
9564
9661
|
"license": "MIT",
|
|
9565
9662
|
"dependencies": {
|
|
9566
9663
|
"prelude-ls": "^1.2.1"
|
|
@@ -9775,8 +9872,8 @@
|
|
|
9775
9872
|
}
|
|
9776
9873
|
},
|
|
9777
9874
|
"node_modules/update-browserslist-db": {
|
|
9778
|
-
"version": "1.
|
|
9779
|
-
"integrity": "sha512-
|
|
9875
|
+
"version": "1.2.3",
|
|
9876
|
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
|
9780
9877
|
"dev": true,
|
|
9781
9878
|
"funding": [
|
|
9782
9879
|
{
|
|
@@ -9807,6 +9904,7 @@
|
|
|
9807
9904
|
"node_modules/uri-js": {
|
|
9808
9905
|
"version": "4.4.1",
|
|
9809
9906
|
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
|
9907
|
+
"dev": true,
|
|
9810
9908
|
"license": "BSD-2-Clause",
|
|
9811
9909
|
"dependencies": {
|
|
9812
9910
|
"punycode": "^2.1.0"
|
|
@@ -9920,8 +10018,8 @@
|
|
|
9920
10018
|
}
|
|
9921
10019
|
},
|
|
9922
10020
|
"node_modules/which-typed-array": {
|
|
9923
|
-
"version": "1.1.
|
|
9924
|
-
"integrity": "sha512-
|
|
10021
|
+
"version": "1.1.20",
|
|
10022
|
+
"integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
|
|
9925
10023
|
"dev": true,
|
|
9926
10024
|
"license": "MIT",
|
|
9927
10025
|
"dependencies": {
|
|
@@ -9943,6 +10041,7 @@
|
|
|
9943
10041
|
"node_modules/word-wrap": {
|
|
9944
10042
|
"version": "1.2.5",
|
|
9945
10043
|
"integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
|
|
10044
|
+
"dev": true,
|
|
9946
10045
|
"license": "MIT",
|
|
9947
10046
|
"engines": {
|
|
9948
10047
|
"node": ">=0.10.0"
|
|
@@ -10086,6 +10185,7 @@
|
|
|
10086
10185
|
"node_modules/yocto-queue": {
|
|
10087
10186
|
"version": "0.1.0",
|
|
10088
10187
|
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
|
|
10188
|
+
"dev": true,
|
|
10089
10189
|
"license": "MIT",
|
|
10090
10190
|
"engines": {
|
|
10091
10191
|
"node": ">=10"
|