@wavemaker/react-runtime 11.14.1-rc.241 → 11.14.2-1.245
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/navigation-action.js +5 -3
- package/actions/notification-action.js +6 -3
- package/components/basic/anchor/index.js +6 -7
- package/components/basic/label/index.js +2 -2
- package/components/basic/search/index.js +7 -3
- package/components/chart/components/barColumnChart/index.js +2 -4
- package/components/chart/components/pieDonutChart/index.js +3 -1
- package/components/chart/hooks/useBarYAxisExtras.js +52 -0
- package/components/chart/hooks/useXAxisConfig.js +98 -0
- package/components/chart/index.js +72 -39
- package/components/chart/utils.js +23 -12
- package/components/container/index.js +6 -7
- package/components/container/panel/components/panel-header/index.js +3 -2
- package/components/container/panel/index.js +13 -9
- package/components/container/tabs/index.js +1 -0
- package/components/container/tabs/tab-pane/index.js +39 -3
- package/components/container/wizard/index.js +187 -57
- package/components/container/wizard/utils.js +1 -1
- package/components/container/wizard/wizard-action/index.js +9 -4
- package/components/container/wizard/wizard-step/index.js +21 -8
- package/components/data/form/base-form/index.js +51 -11
- package/components/data/form/form-controller/withFormController.js +7 -10
- package/components/data/list/components/GroupedListItems.js +5 -1
- package/components/data/list/components/ListItemWithTemplate.js +4 -1
- package/components/data/list/hooks/useListEffects.js +34 -14
- package/components/data/list/hooks/useListEventHandlers.js +18 -2
- package/components/data/list/hooks/useListState.js +15 -2
- package/components/data/list/index.js +1 -0
- package/components/data/list/utils/list-helpers.js +3 -5
- package/components/data/list/utils/list-widget-methods.js +1 -1
- package/components/data/live-filter/index.js +6 -5
- package/components/data/live-form/index.js +24 -14
- package/components/data/table/components/TableBody.js +5 -21
- package/components/data/table/components/TableHeader.js +5 -1
- package/components/data/table/index.js +21 -5
- package/components/data/utils/field-data-utils.js +1 -1
- package/components/dialogs/index.js +14 -16
- package/components/input/currency/index.js +11 -7
- package/components/input/default/checkbox/index.js +2 -3
- package/components/input/default/checkboxset/index.js +2 -22
- package/components/input/default/radioset/index.js +5 -4
- package/components/input/epoch/datetime/index.js +6 -2
- package/components/input/epoch/time/index.js +2 -1
- package/components/input/number/index.js +2 -2
- package/components/input/text/util.js +2 -0
- package/components/input/textarea/index.js +22 -24
- package/components/layout/leftnav/index.js +1 -1
- package/components/navbar/nav/index.js +97 -7
- package/components/navbar/nav-item/index.js +5 -2
- package/components/navigation/menu/index.js +73 -12
- package/components/navigation/popover/index.js +2 -0
- package/components/page/error-boundary/index.js +1 -0
- package/components/prefab/container/index.js +10 -3
- package/context/LocalizationProvider.js +1 -0
- package/context/PrefabContext.js +138 -13
- package/context/WidgetProvider.js +2 -2
- package/core/constants/events.js +12 -6
- package/core/constants/index.js +6 -11
- package/core/formatter/number-formatters.js +1 -1
- package/core/proxy-service.js +72 -36
- package/core/util/utils.js +23 -4
- package/higherOrder/BaseApp.js +60 -18
- package/higherOrder/BasePage.js +99 -77
- package/higherOrder/BasePrefab.js +13 -5
- package/higherOrder/withBaseWrapper.js +3 -3
- package/hooks/useDataSourceSubscription.js +1 -1
- package/hooks/useHttp.js +20 -13
- package/mui-config/theme.js +3 -0
- package/package-lock.json +255 -206
- package/package.json +3 -3
- package/store/index.js +5 -1
- package/utils/lib-error-skipper.js +196 -0
- package/variables/service-variable.js +17 -14
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/react-runtime",
|
|
3
|
-
"version": "11.14.1
|
|
3
|
+
"version": "11.14.2-1.245",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/react-runtime",
|
|
9
|
-
"version": "11.14.1
|
|
9
|
+
"version": "11.14.2-1.245",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui-components/react": "1.0.0-alpha.8",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@mui/icons-material": "6.3.1",
|
|
27
27
|
"@mui/material": "6.3.1",
|
|
28
28
|
"@mui/x-date-pickers": "^8.5.3",
|
|
29
|
-
"@reduxjs/toolkit": "
|
|
29
|
+
"@reduxjs/toolkit": "2.9.1",
|
|
30
30
|
"@tanstack/react-table": "^8.21.3",
|
|
31
31
|
"axios": "^1.7.9",
|
|
32
32
|
"dompurify": "^3.2.3",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@types/react": "^19",
|
|
60
60
|
"@types/react-color": "^3.0.13",
|
|
61
61
|
"@types/react-dom": "^19",
|
|
62
|
-
"@wavemaker/variables": "11.14.1
|
|
62
|
+
"@wavemaker/variables": "11.14.2-1.245",
|
|
63
63
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
64
64
|
"eslint": "^9",
|
|
65
65
|
"eslint-config-next": "15.1.4",
|
|
@@ -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",
|
|
@@ -1956,6 +1957,7 @@
|
|
|
1956
1957
|
"node_modules/@eslint-community/eslint-utils": {
|
|
1957
1958
|
"version": "4.9.0",
|
|
1958
1959
|
"integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==",
|
|
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",
|
|
@@ -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"
|
|
@@ -2626,8 +2641,8 @@
|
|
|
2626
2641
|
}
|
|
2627
2642
|
},
|
|
2628
2643
|
"node_modules/@internationalized/date": {
|
|
2629
|
-
"version": "3.10.
|
|
2630
|
-
"integrity": "sha512-
|
|
2644
|
+
"version": "3.10.1",
|
|
2645
|
+
"integrity": "sha512-oJrXtQiAXLvT9clCf1K4kxp3eKsQhIaZqxEyowkBcsvZDdZkbWrVmnGknxs5flTD0VGsxrxKgBCZty1EzoiMzA==",
|
|
2631
2646
|
"license": "Apache-2.0",
|
|
2632
2647
|
"dependencies": {
|
|
2633
2648
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2903,13 +2918,13 @@
|
|
|
2903
2918
|
}
|
|
2904
2919
|
},
|
|
2905
2920
|
"node_modules/@mui/private-theming": {
|
|
2906
|
-
"version": "7.3.
|
|
2907
|
-
"integrity": "sha512-
|
|
2921
|
+
"version": "7.3.6",
|
|
2922
|
+
"integrity": "sha512-Ws9wZpqM+FlnbZXaY/7yvyvWQo1+02Tbx50mVdNmzWEi51C51y56KAbaDCYyulOOBL6BJxuaqG8rNNuj7ivVyw==",
|
|
2908
2923
|
"license": "MIT",
|
|
2909
2924
|
"peer": true,
|
|
2910
2925
|
"dependencies": {
|
|
2911
2926
|
"@babel/runtime": "^7.28.4",
|
|
2912
|
-
"@mui/utils": "^7.3.
|
|
2927
|
+
"@mui/utils": "^7.3.6",
|
|
2913
2928
|
"prop-types": "^15.8.1"
|
|
2914
2929
|
},
|
|
2915
2930
|
"engines": {
|
|
@@ -2930,13 +2945,13 @@
|
|
|
2930
2945
|
}
|
|
2931
2946
|
},
|
|
2932
2947
|
"node_modules/@mui/private-theming/node_modules/@mui/utils": {
|
|
2933
|
-
"version": "7.3.
|
|
2934
|
-
"integrity": "sha512-
|
|
2948
|
+
"version": "7.3.6",
|
|
2949
|
+
"integrity": "sha512-jn+Ba02O6PiFs7nKva8R2aJJ9kJC+3kQ2R0BbKNY3KQQ36Qng98GnPRFTlbwYTdMD6hLEBKaMLUktyg/rTfd2w==",
|
|
2935
2950
|
"license": "MIT",
|
|
2936
2951
|
"peer": true,
|
|
2937
2952
|
"dependencies": {
|
|
2938
2953
|
"@babel/runtime": "^7.28.4",
|
|
2939
|
-
"@mui/types": "^7.4.
|
|
2954
|
+
"@mui/types": "^7.4.9",
|
|
2940
2955
|
"@types/prop-types": "^15.7.15",
|
|
2941
2956
|
"clsx": "^2.1.1",
|
|
2942
2957
|
"prop-types": "^15.8.1",
|
|
@@ -2960,8 +2975,8 @@
|
|
|
2960
2975
|
}
|
|
2961
2976
|
},
|
|
2962
2977
|
"node_modules/@mui/styled-engine": {
|
|
2963
|
-
"version": "7.3.
|
|
2964
|
-
"integrity": "sha512
|
|
2978
|
+
"version": "7.3.6",
|
|
2979
|
+
"integrity": "sha512-+wiYbtvj+zyUkmDB+ysH6zRjuQIJ+CM56w0fEXV+VDNdvOuSywG+/8kpjddvvlfMLsaWdQe5oTuYGBcodmqGzQ==",
|
|
2965
2980
|
"license": "MIT",
|
|
2966
2981
|
"peer": true,
|
|
2967
2982
|
"dependencies": {
|
|
@@ -2994,16 +3009,16 @@
|
|
|
2994
3009
|
}
|
|
2995
3010
|
},
|
|
2996
3011
|
"node_modules/@mui/system": {
|
|
2997
|
-
"version": "7.3.
|
|
2998
|
-
"integrity": "sha512-
|
|
3012
|
+
"version": "7.3.6",
|
|
3013
|
+
"integrity": "sha512-8fehAazkHNP1imMrdD2m2hbA9sl7Ur6jfuNweh5o4l9YPty4iaZzRXqYvBCWQNwFaSHmMEj2KPbyXGp7Bt73Rg==",
|
|
2999
3014
|
"license": "MIT",
|
|
3000
3015
|
"peer": true,
|
|
3001
3016
|
"dependencies": {
|
|
3002
3017
|
"@babel/runtime": "^7.28.4",
|
|
3003
|
-
"@mui/private-theming": "^7.3.
|
|
3004
|
-
"@mui/styled-engine": "^7.3.
|
|
3005
|
-
"@mui/types": "^7.4.
|
|
3006
|
-
"@mui/utils": "^7.3.
|
|
3018
|
+
"@mui/private-theming": "^7.3.6",
|
|
3019
|
+
"@mui/styled-engine": "^7.3.6",
|
|
3020
|
+
"@mui/types": "^7.4.9",
|
|
3021
|
+
"@mui/utils": "^7.3.6",
|
|
3007
3022
|
"clsx": "^2.1.1",
|
|
3008
3023
|
"csstype": "^3.1.3",
|
|
3009
3024
|
"prop-types": "^15.8.1"
|
|
@@ -3034,13 +3049,13 @@
|
|
|
3034
3049
|
}
|
|
3035
3050
|
},
|
|
3036
3051
|
"node_modules/@mui/system/node_modules/@mui/utils": {
|
|
3037
|
-
"version": "7.3.
|
|
3038
|
-
"integrity": "sha512-
|
|
3052
|
+
"version": "7.3.6",
|
|
3053
|
+
"integrity": "sha512-jn+Ba02O6PiFs7nKva8R2aJJ9kJC+3kQ2R0BbKNY3KQQ36Qng98GnPRFTlbwYTdMD6hLEBKaMLUktyg/rTfd2w==",
|
|
3039
3054
|
"license": "MIT",
|
|
3040
3055
|
"peer": true,
|
|
3041
3056
|
"dependencies": {
|
|
3042
3057
|
"@babel/runtime": "^7.28.4",
|
|
3043
|
-
"@mui/types": "^7.4.
|
|
3058
|
+
"@mui/types": "^7.4.9",
|
|
3044
3059
|
"@types/prop-types": "^15.7.15",
|
|
3045
3060
|
"clsx": "^2.1.1",
|
|
3046
3061
|
"prop-types": "^15.8.1",
|
|
@@ -3064,8 +3079,8 @@
|
|
|
3064
3079
|
}
|
|
3065
3080
|
},
|
|
3066
3081
|
"node_modules/@mui/types": {
|
|
3067
|
-
"version": "7.4.
|
|
3068
|
-
"integrity": "sha512-
|
|
3082
|
+
"version": "7.4.9",
|
|
3083
|
+
"integrity": "sha512-dNO8Z9T2cujkSIaCnWwprfeKmTWh97cnjkgmpFJ2sbfXLx8SMZijCYHOtP/y5nnUb/Rm2omxbDMmtUoSaUtKaw==",
|
|
3069
3084
|
"license": "MIT",
|
|
3070
3085
|
"dependencies": {
|
|
3071
3086
|
"@babel/runtime": "^7.28.4"
|
|
@@ -3122,13 +3137,13 @@
|
|
|
3122
3137
|
}
|
|
3123
3138
|
},
|
|
3124
3139
|
"node_modules/@mui/x-date-pickers": {
|
|
3125
|
-
"version": "8.
|
|
3126
|
-
"integrity": "sha512-
|
|
3140
|
+
"version": "8.22.1",
|
|
3141
|
+
"integrity": "sha512-7tnUaKLllBYaliGeSP9vpN2Og33LYRfQW2Eq/F4xeNMQDUAa/6H2N822KW5NtdvW32KxjKkJiWZokgfBfVBtxg==",
|
|
3127
3142
|
"license": "MIT",
|
|
3128
3143
|
"dependencies": {
|
|
3129
3144
|
"@babel/runtime": "^7.28.4",
|
|
3130
3145
|
"@mui/utils": "^7.3.5",
|
|
3131
|
-
"@mui/x-internals": "8.
|
|
3146
|
+
"@mui/x-internals": "8.22.0",
|
|
3132
3147
|
"@types/react-transition-group": "^4.4.12",
|
|
3133
3148
|
"clsx": "^2.1.1",
|
|
3134
3149
|
"prop-types": "^15.8.1",
|
|
@@ -3187,12 +3202,12 @@
|
|
|
3187
3202
|
}
|
|
3188
3203
|
},
|
|
3189
3204
|
"node_modules/@mui/x-date-pickers/node_modules/@mui/utils": {
|
|
3190
|
-
"version": "7.3.
|
|
3191
|
-
"integrity": "sha512-
|
|
3205
|
+
"version": "7.3.6",
|
|
3206
|
+
"integrity": "sha512-jn+Ba02O6PiFs7nKva8R2aJJ9kJC+3kQ2R0BbKNY3KQQ36Qng98GnPRFTlbwYTdMD6hLEBKaMLUktyg/rTfd2w==",
|
|
3192
3207
|
"license": "MIT",
|
|
3193
3208
|
"dependencies": {
|
|
3194
3209
|
"@babel/runtime": "^7.28.4",
|
|
3195
|
-
"@mui/types": "^7.4.
|
|
3210
|
+
"@mui/types": "^7.4.9",
|
|
3196
3211
|
"@types/prop-types": "^15.7.15",
|
|
3197
3212
|
"clsx": "^2.1.1",
|
|
3198
3213
|
"prop-types": "^15.8.1",
|
|
@@ -3216,8 +3231,8 @@
|
|
|
3216
3231
|
}
|
|
3217
3232
|
},
|
|
3218
3233
|
"node_modules/@mui/x-internals": {
|
|
3219
|
-
"version": "8.
|
|
3220
|
-
"integrity": "sha512-
|
|
3234
|
+
"version": "8.22.0",
|
|
3235
|
+
"integrity": "sha512-PA7jCKRLbS6aYvTSbGr3Id4CPUdTrUejHm31l8Vje7dw138gBBHrHeGsqWJh/S5foorpK8loiRejKrLlTZokyQ==",
|
|
3221
3236
|
"license": "MIT",
|
|
3222
3237
|
"dependencies": {
|
|
3223
3238
|
"@babel/runtime": "^7.28.4",
|
|
@@ -3237,12 +3252,12 @@
|
|
|
3237
3252
|
}
|
|
3238
3253
|
},
|
|
3239
3254
|
"node_modules/@mui/x-internals/node_modules/@mui/utils": {
|
|
3240
|
-
"version": "7.3.
|
|
3241
|
-
"integrity": "sha512-
|
|
3255
|
+
"version": "7.3.6",
|
|
3256
|
+
"integrity": "sha512-jn+Ba02O6PiFs7nKva8R2aJJ9kJC+3kQ2R0BbKNY3KQQ36Qng98GnPRFTlbwYTdMD6hLEBKaMLUktyg/rTfd2w==",
|
|
3242
3257
|
"license": "MIT",
|
|
3243
3258
|
"dependencies": {
|
|
3244
3259
|
"@babel/runtime": "^7.28.4",
|
|
3245
|
-
"@mui/types": "^7.4.
|
|
3260
|
+
"@mui/types": "^7.4.9",
|
|
3246
3261
|
"@types/prop-types": "^15.7.15",
|
|
3247
3262
|
"clsx": "^2.1.1",
|
|
3248
3263
|
"prop-types": "^15.8.1",
|
|
@@ -3472,12 +3487,12 @@
|
|
|
3472
3487
|
}
|
|
3473
3488
|
},
|
|
3474
3489
|
"node_modules/@react-aria/focus": {
|
|
3475
|
-
"version": "3.21.
|
|
3476
|
-
"integrity": "sha512-
|
|
3490
|
+
"version": "3.21.3",
|
|
3491
|
+
"integrity": "sha512-FsquWvjSCwC2/sBk4b+OqJyONETUIXQ2vM0YdPAuC+QFQh2DT6TIBo6dOZVSezlhudDla69xFBd6JvCFq1AbUw==",
|
|
3477
3492
|
"license": "Apache-2.0",
|
|
3478
3493
|
"dependencies": {
|
|
3479
|
-
"@react-aria/interactions": "^3.
|
|
3480
|
-
"@react-aria/utils": "^3.
|
|
3494
|
+
"@react-aria/interactions": "^3.26.0",
|
|
3495
|
+
"@react-aria/utils": "^3.32.0",
|
|
3481
3496
|
"@react-types/shared": "^3.32.1",
|
|
3482
3497
|
"@swc/helpers": "^0.5.0",
|
|
3483
3498
|
"clsx": "^2.0.0"
|
|
@@ -3488,16 +3503,16 @@
|
|
|
3488
3503
|
}
|
|
3489
3504
|
},
|
|
3490
3505
|
"node_modules/@react-aria/i18n": {
|
|
3491
|
-
"version": "3.12.
|
|
3492
|
-
"integrity": "sha512-
|
|
3506
|
+
"version": "3.12.14",
|
|
3507
|
+
"integrity": "sha512-zYvs1FlLamFD49uneX3i5mPHrAsB3OjVpSWApTcPw8ydxOaphQDp/Q1aqrbcxlrQCcxZdXWHuvLlbkNR4+8jzw==",
|
|
3493
3508
|
"license": "Apache-2.0",
|
|
3494
3509
|
"dependencies": {
|
|
3495
|
-
"@internationalized/date": "^3.10.
|
|
3510
|
+
"@internationalized/date": "^3.10.1",
|
|
3496
3511
|
"@internationalized/message": "^3.1.8",
|
|
3497
3512
|
"@internationalized/number": "^3.6.5",
|
|
3498
3513
|
"@internationalized/string": "^3.2.7",
|
|
3499
3514
|
"@react-aria/ssr": "^3.9.10",
|
|
3500
|
-
"@react-aria/utils": "^3.
|
|
3515
|
+
"@react-aria/utils": "^3.32.0",
|
|
3501
3516
|
"@react-types/shared": "^3.32.1",
|
|
3502
3517
|
"@swc/helpers": "^0.5.0"
|
|
3503
3518
|
},
|
|
@@ -3507,12 +3522,12 @@
|
|
|
3507
3522
|
}
|
|
3508
3523
|
},
|
|
3509
3524
|
"node_modules/@react-aria/interactions": {
|
|
3510
|
-
"version": "3.
|
|
3511
|
-
"integrity": "sha512-
|
|
3525
|
+
"version": "3.26.0",
|
|
3526
|
+
"integrity": "sha512-AAEcHiltjfbmP1i9iaVw34Mb7kbkiHpYdqieWufldh4aplWgsF11YQZOfaCJW4QoR2ML4Zzoa9nfFwLXA52R7Q==",
|
|
3512
3527
|
"license": "Apache-2.0",
|
|
3513
3528
|
"dependencies": {
|
|
3514
3529
|
"@react-aria/ssr": "^3.9.10",
|
|
3515
|
-
"@react-aria/utils": "^3.
|
|
3530
|
+
"@react-aria/utils": "^3.32.0",
|
|
3516
3531
|
"@react-stately/flags": "^3.1.2",
|
|
3517
3532
|
"@react-types/shared": "^3.32.1",
|
|
3518
3533
|
"@swc/helpers": "^0.5.0"
|
|
@@ -3523,17 +3538,17 @@
|
|
|
3523
3538
|
}
|
|
3524
3539
|
},
|
|
3525
3540
|
"node_modules/@react-aria/overlays": {
|
|
3526
|
-
"version": "3.
|
|
3527
|
-
"integrity": "sha512-
|
|
3541
|
+
"version": "3.31.0",
|
|
3542
|
+
"integrity": "sha512-Vq41X1s8XheGIhGbbuqRJslJEX08qmMVX//dwuBaFX9T18mMR04tumKOMxp8Lz+vqwdGLvjNUYDMcgolL+AMjw==",
|
|
3528
3543
|
"license": "Apache-2.0",
|
|
3529
3544
|
"dependencies": {
|
|
3530
|
-
"@react-aria/focus": "^3.21.
|
|
3531
|
-
"@react-aria/i18n": "^3.12.
|
|
3532
|
-
"@react-aria/interactions": "^3.
|
|
3545
|
+
"@react-aria/focus": "^3.21.3",
|
|
3546
|
+
"@react-aria/i18n": "^3.12.14",
|
|
3547
|
+
"@react-aria/interactions": "^3.26.0",
|
|
3533
3548
|
"@react-aria/ssr": "^3.9.10",
|
|
3534
|
-
"@react-aria/utils": "^3.
|
|
3535
|
-
"@react-aria/visually-hidden": "^3.8.
|
|
3536
|
-
"@react-stately/overlays": "^3.6.
|
|
3549
|
+
"@react-aria/utils": "^3.32.0",
|
|
3550
|
+
"@react-aria/visually-hidden": "^3.8.29",
|
|
3551
|
+
"@react-stately/overlays": "^3.6.21",
|
|
3537
3552
|
"@react-types/button": "^3.14.1",
|
|
3538
3553
|
"@react-types/overlays": "^3.9.2",
|
|
3539
3554
|
"@react-types/shared": "^3.32.1",
|
|
@@ -3559,13 +3574,13 @@
|
|
|
3559
3574
|
}
|
|
3560
3575
|
},
|
|
3561
3576
|
"node_modules/@react-aria/utils": {
|
|
3562
|
-
"version": "3.
|
|
3563
|
-
"integrity": "sha512
|
|
3577
|
+
"version": "3.32.0",
|
|
3578
|
+
"integrity": "sha512-/7Rud06+HVBIlTwmwmJa2W8xVtgxgzm0+kLbuFooZRzKDON6hhozS1dOMR/YLMxyJOaYOTpImcP4vRR9gL1hEg==",
|
|
3564
3579
|
"license": "Apache-2.0",
|
|
3565
3580
|
"dependencies": {
|
|
3566
3581
|
"@react-aria/ssr": "^3.9.10",
|
|
3567
3582
|
"@react-stately/flags": "^3.1.2",
|
|
3568
|
-
"@react-stately/utils": "^3.
|
|
3583
|
+
"@react-stately/utils": "^3.11.0",
|
|
3569
3584
|
"@react-types/shared": "^3.32.1",
|
|
3570
3585
|
"@swc/helpers": "^0.5.0",
|
|
3571
3586
|
"clsx": "^2.0.0"
|
|
@@ -3576,12 +3591,12 @@
|
|
|
3576
3591
|
}
|
|
3577
3592
|
},
|
|
3578
3593
|
"node_modules/@react-aria/visually-hidden": {
|
|
3579
|
-
"version": "3.8.
|
|
3580
|
-
"integrity": "sha512-
|
|
3594
|
+
"version": "3.8.29",
|
|
3595
|
+
"integrity": "sha512-1joCP+MHBLd+YA6Gb08nMFfDBhOF0Kh1gR1SA8zoxEB5RMfQEEkufIB8k0GGwvHGSCK3gFyO8UAVsD0+rRYEyg==",
|
|
3581
3596
|
"license": "Apache-2.0",
|
|
3582
3597
|
"dependencies": {
|
|
3583
|
-
"@react-aria/interactions": "^3.
|
|
3584
|
-
"@react-aria/utils": "^3.
|
|
3598
|
+
"@react-aria/interactions": "^3.26.0",
|
|
3599
|
+
"@react-aria/utils": "^3.32.0",
|
|
3585
3600
|
"@react-types/shared": "^3.32.1",
|
|
3586
3601
|
"@swc/helpers": "^0.5.0"
|
|
3587
3602
|
},
|
|
@@ -3599,11 +3614,11 @@
|
|
|
3599
3614
|
}
|
|
3600
3615
|
},
|
|
3601
3616
|
"node_modules/@react-stately/overlays": {
|
|
3602
|
-
"version": "3.6.
|
|
3603
|
-
"integrity": "sha512-
|
|
3617
|
+
"version": "3.6.21",
|
|
3618
|
+
"integrity": "sha512-7f25H1PS2g+SNvuWPEW30pSGqYNHxesCP4w+1RcV/XV1oQI7oP5Ji2WfI0QsJEFc9wP/ZO1pyjHNKpfLI3O88g==",
|
|
3604
3619
|
"license": "Apache-2.0",
|
|
3605
3620
|
"dependencies": {
|
|
3606
|
-
"@react-stately/utils": "^3.
|
|
3621
|
+
"@react-stately/utils": "^3.11.0",
|
|
3607
3622
|
"@react-types/overlays": "^3.9.2",
|
|
3608
3623
|
"@swc/helpers": "^0.5.0"
|
|
3609
3624
|
},
|
|
@@ -3612,8 +3627,8 @@
|
|
|
3612
3627
|
}
|
|
3613
3628
|
},
|
|
3614
3629
|
"node_modules/@react-stately/utils": {
|
|
3615
|
-
"version": "3.
|
|
3616
|
-
"integrity": "sha512-
|
|
3630
|
+
"version": "3.11.0",
|
|
3631
|
+
"integrity": "sha512-8LZpYowJ9eZmmYLpudbo/eclIRnbhWIJZ994ncmlKlouNzKohtM8qTC6B1w1pwUbiwGdUoyzLuQbeaIor5Dvcw==",
|
|
3617
3632
|
"license": "Apache-2.0",
|
|
3618
3633
|
"dependencies": {
|
|
3619
3634
|
"@swc/helpers": "^0.5.0"
|
|
@@ -3653,13 +3668,13 @@
|
|
|
3653
3668
|
}
|
|
3654
3669
|
},
|
|
3655
3670
|
"node_modules/@reduxjs/toolkit": {
|
|
3656
|
-
"version": "2.
|
|
3657
|
-
"integrity": "sha512-
|
|
3671
|
+
"version": "2.9.1",
|
|
3672
|
+
"integrity": "sha512-sETJ3qO72y7L7WiR5K54UFLT3jRzAtqeBPVO15xC3bGA6kDqCH8m/v7BKCPH4czydXzz/1lPEGLvew7GjOO3Qw==",
|
|
3658
3673
|
"license": "MIT",
|
|
3659
3674
|
"dependencies": {
|
|
3660
3675
|
"@standard-schema/spec": "^1.0.0",
|
|
3661
3676
|
"@standard-schema/utils": "^0.3.0",
|
|
3662
|
-
"immer": "^
|
|
3677
|
+
"immer": "^10.0.3",
|
|
3663
3678
|
"redux": "^5.0.1",
|
|
3664
3679
|
"redux-thunk": "^3.1.0",
|
|
3665
3680
|
"reselect": "^5.1.0"
|
|
@@ -3706,8 +3721,8 @@
|
|
|
3706
3721
|
}
|
|
3707
3722
|
},
|
|
3708
3723
|
"node_modules/@standard-schema/spec": {
|
|
3709
|
-
"version": "1.
|
|
3710
|
-
"integrity": "sha512-
|
|
3724
|
+
"version": "1.1.0",
|
|
3725
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
3711
3726
|
"license": "MIT"
|
|
3712
3727
|
},
|
|
3713
3728
|
"node_modules/@standard-schema/utils": {
|
|
@@ -3826,6 +3841,7 @@
|
|
|
3826
3841
|
"node_modules/@types/estree": {
|
|
3827
3842
|
"version": "1.0.8",
|
|
3828
3843
|
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
3844
|
+
"dev": true,
|
|
3829
3845
|
"license": "MIT"
|
|
3830
3846
|
},
|
|
3831
3847
|
"node_modules/@types/js-cookie": {
|
|
@@ -3837,6 +3853,7 @@
|
|
|
3837
3853
|
"node_modules/@types/json-schema": {
|
|
3838
3854
|
"version": "7.0.15",
|
|
3839
3855
|
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
|
|
3856
|
+
"dev": true,
|
|
3840
3857
|
"license": "MIT"
|
|
3841
3858
|
},
|
|
3842
3859
|
"node_modules/@types/json5": {
|
|
@@ -3861,8 +3878,8 @@
|
|
|
3861
3878
|
}
|
|
3862
3879
|
},
|
|
3863
3880
|
"node_modules/@types/node": {
|
|
3864
|
-
"version": "20.19.
|
|
3865
|
-
"integrity": "sha512-
|
|
3881
|
+
"version": "20.19.27",
|
|
3882
|
+
"integrity": "sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug==",
|
|
3866
3883
|
"dev": true,
|
|
3867
3884
|
"license": "MIT",
|
|
3868
3885
|
"dependencies": {
|
|
@@ -3937,17 +3954,16 @@
|
|
|
3937
3954
|
"license": "MIT"
|
|
3938
3955
|
},
|
|
3939
3956
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
3940
|
-
"version": "8.
|
|
3941
|
-
"integrity": "sha512-
|
|
3957
|
+
"version": "8.50.0",
|
|
3958
|
+
"integrity": "sha512-O7QnmOXYKVtPrfYzMolrCTfkezCJS9+ljLdKW/+DCvRsc3UAz+sbH6Xcsv7p30+0OwUbeWfUDAQE0vpabZ3QLg==",
|
|
3942
3959
|
"dev": true,
|
|
3943
3960
|
"license": "MIT",
|
|
3944
3961
|
"dependencies": {
|
|
3945
3962
|
"@eslint-community/regexpp": "^4.10.0",
|
|
3946
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3947
|
-
"@typescript-eslint/type-utils": "8.
|
|
3948
|
-
"@typescript-eslint/utils": "8.
|
|
3949
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3950
|
-
"graphemer": "^1.4.0",
|
|
3963
|
+
"@typescript-eslint/scope-manager": "8.50.0",
|
|
3964
|
+
"@typescript-eslint/type-utils": "8.50.0",
|
|
3965
|
+
"@typescript-eslint/utils": "8.50.0",
|
|
3966
|
+
"@typescript-eslint/visitor-keys": "8.50.0",
|
|
3951
3967
|
"ignore": "^7.0.0",
|
|
3952
3968
|
"natural-compare": "^1.4.0",
|
|
3953
3969
|
"ts-api-utils": "^2.1.0"
|
|
@@ -3960,7 +3976,7 @@
|
|
|
3960
3976
|
"url": "https://opencollective.com/typescript-eslint"
|
|
3961
3977
|
},
|
|
3962
3978
|
"peerDependencies": {
|
|
3963
|
-
"@typescript-eslint/parser": "^8.
|
|
3979
|
+
"@typescript-eslint/parser": "^8.50.0",
|
|
3964
3980
|
"eslint": "^8.57.0 || ^9.0.0",
|
|
3965
3981
|
"typescript": ">=4.8.4 <6.0.0"
|
|
3966
3982
|
}
|
|
@@ -3975,15 +3991,15 @@
|
|
|
3975
3991
|
}
|
|
3976
3992
|
},
|
|
3977
3993
|
"node_modules/@typescript-eslint/parser": {
|
|
3978
|
-
"version": "8.
|
|
3979
|
-
"integrity": "sha512-
|
|
3994
|
+
"version": "8.50.0",
|
|
3995
|
+
"integrity": "sha512-6/cmF2piao+f6wSxUsJLZjck7OQsYyRtcOZS02k7XINSNlz93v6emM8WutDQSXnroG2xwYlEVHJI+cPA7CPM3Q==",
|
|
3980
3996
|
"dev": true,
|
|
3981
3997
|
"license": "MIT",
|
|
3982
3998
|
"dependencies": {
|
|
3983
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3984
|
-
"@typescript-eslint/types": "8.
|
|
3985
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
3986
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3999
|
+
"@typescript-eslint/scope-manager": "8.50.0",
|
|
4000
|
+
"@typescript-eslint/types": "8.50.0",
|
|
4001
|
+
"@typescript-eslint/typescript-estree": "8.50.0",
|
|
4002
|
+
"@typescript-eslint/visitor-keys": "8.50.0",
|
|
3987
4003
|
"debug": "^4.3.4"
|
|
3988
4004
|
},
|
|
3989
4005
|
"engines": {
|
|
@@ -3999,13 +4015,13 @@
|
|
|
3999
4015
|
}
|
|
4000
4016
|
},
|
|
4001
4017
|
"node_modules/@typescript-eslint/project-service": {
|
|
4002
|
-
"version": "8.
|
|
4003
|
-
"integrity": "sha512-
|
|
4018
|
+
"version": "8.50.0",
|
|
4019
|
+
"integrity": "sha512-Cg/nQcL1BcoTijEWyx4mkVC56r8dj44bFDvBdygifuS20f3OZCHmFbjF34DPSi07kwlFvqfv/xOLnJ5DquxSGQ==",
|
|
4004
4020
|
"dev": true,
|
|
4005
4021
|
"license": "MIT",
|
|
4006
4022
|
"dependencies": {
|
|
4007
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4008
|
-
"@typescript-eslint/types": "^8.
|
|
4023
|
+
"@typescript-eslint/tsconfig-utils": "^8.50.0",
|
|
4024
|
+
"@typescript-eslint/types": "^8.50.0",
|
|
4009
4025
|
"debug": "^4.3.4"
|
|
4010
4026
|
},
|
|
4011
4027
|
"engines": {
|
|
@@ -4020,13 +4036,13 @@
|
|
|
4020
4036
|
}
|
|
4021
4037
|
},
|
|
4022
4038
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4023
|
-
"version": "8.
|
|
4024
|
-
"integrity": "sha512-
|
|
4039
|
+
"version": "8.50.0",
|
|
4040
|
+
"integrity": "sha512-xCwfuCZjhIqy7+HKxBLrDVT5q/iq7XBVBXLn57RTIIpelLtEIZHXAF/Upa3+gaCpeV1NNS5Z9A+ID6jn50VD4A==",
|
|
4025
4041
|
"dev": true,
|
|
4026
4042
|
"license": "MIT",
|
|
4027
4043
|
"dependencies": {
|
|
4028
|
-
"@typescript-eslint/types": "8.
|
|
4029
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4044
|
+
"@typescript-eslint/types": "8.50.0",
|
|
4045
|
+
"@typescript-eslint/visitor-keys": "8.50.0"
|
|
4030
4046
|
},
|
|
4031
4047
|
"engines": {
|
|
4032
4048
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4037,8 +4053,8 @@
|
|
|
4037
4053
|
}
|
|
4038
4054
|
},
|
|
4039
4055
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4040
|
-
"version": "8.
|
|
4041
|
-
"integrity": "sha512-
|
|
4056
|
+
"version": "8.50.0",
|
|
4057
|
+
"integrity": "sha512-vxd3G/ybKTSlm31MOA96gqvrRGv9RJ7LGtZCn2Vrc5htA0zCDvcMqUkifcjrWNNKXHUU3WCkYOzzVSFBd0wa2w==",
|
|
4042
4058
|
"dev": true,
|
|
4043
4059
|
"license": "MIT",
|
|
4044
4060
|
"engines": {
|
|
@@ -4053,14 +4069,14 @@
|
|
|
4053
4069
|
}
|
|
4054
4070
|
},
|
|
4055
4071
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4056
|
-
"version": "8.
|
|
4057
|
-
"integrity": "sha512-
|
|
4072
|
+
"version": "8.50.0",
|
|
4073
|
+
"integrity": "sha512-7OciHT2lKCewR0mFoBrvZJ4AXTMe/sYOe87289WAViOocEmDjjv8MvIOT2XESuKj9jp8u3SZYUSh89QA4S1kQw==",
|
|
4058
4074
|
"dev": true,
|
|
4059
4075
|
"license": "MIT",
|
|
4060
4076
|
"dependencies": {
|
|
4061
|
-
"@typescript-eslint/types": "8.
|
|
4062
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4063
|
-
"@typescript-eslint/utils": "8.
|
|
4077
|
+
"@typescript-eslint/types": "8.50.0",
|
|
4078
|
+
"@typescript-eslint/typescript-estree": "8.50.0",
|
|
4079
|
+
"@typescript-eslint/utils": "8.50.0",
|
|
4064
4080
|
"debug": "^4.3.4",
|
|
4065
4081
|
"ts-api-utils": "^2.1.0"
|
|
4066
4082
|
},
|
|
@@ -4077,8 +4093,8 @@
|
|
|
4077
4093
|
}
|
|
4078
4094
|
},
|
|
4079
4095
|
"node_modules/@typescript-eslint/types": {
|
|
4080
|
-
"version": "8.
|
|
4081
|
-
"integrity": "sha512-
|
|
4096
|
+
"version": "8.50.0",
|
|
4097
|
+
"integrity": "sha512-iX1mgmGrXdANhhITbpp2QQM2fGehBse9LbTf0sidWK6yg/NE+uhV5dfU1g6EYPlcReYmkE9QLPq/2irKAmtS9w==",
|
|
4082
4098
|
"dev": true,
|
|
4083
4099
|
"license": "MIT",
|
|
4084
4100
|
"engines": {
|
|
@@ -4090,15 +4106,15 @@
|
|
|
4090
4106
|
}
|
|
4091
4107
|
},
|
|
4092
4108
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4093
|
-
"version": "8.
|
|
4094
|
-
"integrity": "sha512-
|
|
4109
|
+
"version": "8.50.0",
|
|
4110
|
+
"integrity": "sha512-W7SVAGBR/IX7zm1t70Yujpbk+zdPq/u4soeFSknWFdXIFuWsBGBOUu/Tn/I6KHSKvSh91OiMuaSnYp3mtPt5IQ==",
|
|
4095
4111
|
"dev": true,
|
|
4096
4112
|
"license": "MIT",
|
|
4097
4113
|
"dependencies": {
|
|
4098
|
-
"@typescript-eslint/project-service": "8.
|
|
4099
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4100
|
-
"@typescript-eslint/types": "8.
|
|
4101
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4114
|
+
"@typescript-eslint/project-service": "8.50.0",
|
|
4115
|
+
"@typescript-eslint/tsconfig-utils": "8.50.0",
|
|
4116
|
+
"@typescript-eslint/types": "8.50.0",
|
|
4117
|
+
"@typescript-eslint/visitor-keys": "8.50.0",
|
|
4102
4118
|
"debug": "^4.3.4",
|
|
4103
4119
|
"minimatch": "^9.0.4",
|
|
4104
4120
|
"semver": "^7.6.0",
|
|
@@ -4153,15 +4169,15 @@
|
|
|
4153
4169
|
}
|
|
4154
4170
|
},
|
|
4155
4171
|
"node_modules/@typescript-eslint/utils": {
|
|
4156
|
-
"version": "8.
|
|
4157
|
-
"integrity": "sha512-
|
|
4172
|
+
"version": "8.50.0",
|
|
4173
|
+
"integrity": "sha512-87KgUXET09CRjGCi2Ejxy3PULXna63/bMYv72tCAlDJC3Yqwln0HiFJ3VJMst2+mEtNtZu5oFvX4qJGjKsnAgg==",
|
|
4158
4174
|
"dev": true,
|
|
4159
4175
|
"license": "MIT",
|
|
4160
4176
|
"dependencies": {
|
|
4161
4177
|
"@eslint-community/eslint-utils": "^4.7.0",
|
|
4162
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4163
|
-
"@typescript-eslint/types": "8.
|
|
4164
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4178
|
+
"@typescript-eslint/scope-manager": "8.50.0",
|
|
4179
|
+
"@typescript-eslint/types": "8.50.0",
|
|
4180
|
+
"@typescript-eslint/typescript-estree": "8.50.0"
|
|
4165
4181
|
},
|
|
4166
4182
|
"engines": {
|
|
4167
4183
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4176,12 +4192,12 @@
|
|
|
4176
4192
|
}
|
|
4177
4193
|
},
|
|
4178
4194
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4179
|
-
"version": "8.
|
|
4180
|
-
"integrity": "sha512-
|
|
4195
|
+
"version": "8.50.0",
|
|
4196
|
+
"integrity": "sha512-Xzmnb58+Db78gT/CCj/PVCvK+zxbnsw6F+O1oheYszJbBSdEjVhQi3C/Xttzxgi/GLmpvOggRs1RFpiJ8+c34Q==",
|
|
4181
4197
|
"dev": true,
|
|
4182
4198
|
"license": "MIT",
|
|
4183
4199
|
"dependencies": {
|
|
4184
|
-
"@typescript-eslint/types": "8.
|
|
4200
|
+
"@typescript-eslint/types": "8.50.0",
|
|
4185
4201
|
"eslint-visitor-keys": "^4.2.1"
|
|
4186
4202
|
},
|
|
4187
4203
|
"engines": {
|
|
@@ -4443,8 +4459,8 @@
|
|
|
4443
4459
|
]
|
|
4444
4460
|
},
|
|
4445
4461
|
"node_modules/@wavemaker/variables": {
|
|
4446
|
-
"version": "11.14.1
|
|
4447
|
-
"integrity": "sha512-
|
|
4462
|
+
"version": "11.14.2-1.245",
|
|
4463
|
+
"integrity": "sha512-4qvfm4nRf61qi9TT3Drt5HM+mZfkBPWd2BS7u+/k2f3KaPZN1mZXg4eVPywYyYJ7J4Ks2aWiU22I2eVepXshMQ==",
|
|
4448
4464
|
"dev": true,
|
|
4449
4465
|
"license": "ISC",
|
|
4450
4466
|
"dependencies": {
|
|
@@ -4467,6 +4483,7 @@
|
|
|
4467
4483
|
"node_modules/acorn": {
|
|
4468
4484
|
"version": "8.15.0",
|
|
4469
4485
|
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
4486
|
+
"dev": true,
|
|
4470
4487
|
"license": "MIT",
|
|
4471
4488
|
"bin": {
|
|
4472
4489
|
"acorn": "bin/acorn"
|
|
@@ -4478,6 +4495,7 @@
|
|
|
4478
4495
|
"node_modules/acorn-jsx": {
|
|
4479
4496
|
"version": "5.3.2",
|
|
4480
4497
|
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
|
4498
|
+
"dev": true,
|
|
4481
4499
|
"license": "MIT",
|
|
4482
4500
|
"peerDependencies": {
|
|
4483
4501
|
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
@@ -4486,6 +4504,7 @@
|
|
|
4486
4504
|
"node_modules/ajv": {
|
|
4487
4505
|
"version": "6.12.6",
|
|
4488
4506
|
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
|
4507
|
+
"dev": true,
|
|
4489
4508
|
"license": "MIT",
|
|
4490
4509
|
"dependencies": {
|
|
4491
4510
|
"fast-deep-equal": "^3.1.1",
|
|
@@ -4526,6 +4545,7 @@
|
|
|
4526
4545
|
"node_modules/ansi-styles": {
|
|
4527
4546
|
"version": "4.3.0",
|
|
4528
4547
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
4548
|
+
"dev": true,
|
|
4529
4549
|
"license": "MIT",
|
|
4530
4550
|
"dependencies": {
|
|
4531
4551
|
"color-convert": "^2.0.1"
|
|
@@ -4554,6 +4574,7 @@
|
|
|
4554
4574
|
"node_modules/argparse": {
|
|
4555
4575
|
"version": "2.0.1",
|
|
4556
4576
|
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
4577
|
+
"dev": true,
|
|
4557
4578
|
"license": "Python-2.0"
|
|
4558
4579
|
},
|
|
4559
4580
|
"node_modules/aria-query": {
|
|
@@ -4897,11 +4918,12 @@
|
|
|
4897
4918
|
"node_modules/balanced-match": {
|
|
4898
4919
|
"version": "1.0.2",
|
|
4899
4920
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
4921
|
+
"dev": true,
|
|
4900
4922
|
"license": "MIT"
|
|
4901
4923
|
},
|
|
4902
4924
|
"node_modules/baseline-browser-mapping": {
|
|
4903
|
-
"version": "2.
|
|
4904
|
-
"integrity": "sha512-
|
|
4925
|
+
"version": "2.9.11",
|
|
4926
|
+
"integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
|
|
4905
4927
|
"dev": true,
|
|
4906
4928
|
"license": "Apache-2.0",
|
|
4907
4929
|
"bin": {
|
|
@@ -4924,6 +4946,7 @@
|
|
|
4924
4946
|
"node_modules/brace-expansion": {
|
|
4925
4947
|
"version": "1.1.12",
|
|
4926
4948
|
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
4949
|
+
"dev": true,
|
|
4927
4950
|
"license": "MIT",
|
|
4928
4951
|
"dependencies": {
|
|
4929
4952
|
"balanced-match": "^1.0.0",
|
|
@@ -4942,8 +4965,8 @@
|
|
|
4942
4965
|
}
|
|
4943
4966
|
},
|
|
4944
4967
|
"node_modules/browserslist": {
|
|
4945
|
-
"version": "4.28.
|
|
4946
|
-
"integrity": "sha512-
|
|
4968
|
+
"version": "4.28.1",
|
|
4969
|
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
|
4947
4970
|
"dev": true,
|
|
4948
4971
|
"funding": [
|
|
4949
4972
|
{
|
|
@@ -4961,11 +4984,11 @@
|
|
|
4961
4984
|
],
|
|
4962
4985
|
"license": "MIT",
|
|
4963
4986
|
"dependencies": {
|
|
4964
|
-
"baseline-browser-mapping": "^2.
|
|
4965
|
-
"caniuse-lite": "^1.0.
|
|
4966
|
-
"electron-to-chromium": "^1.5.
|
|
4987
|
+
"baseline-browser-mapping": "^2.9.0",
|
|
4988
|
+
"caniuse-lite": "^1.0.30001759",
|
|
4989
|
+
"electron-to-chromium": "^1.5.263",
|
|
4967
4990
|
"node-releases": "^2.0.27",
|
|
4968
|
-
"update-browserslist-db": "^1.
|
|
4991
|
+
"update-browserslist-db": "^1.2.0"
|
|
4969
4992
|
},
|
|
4970
4993
|
"bin": {
|
|
4971
4994
|
"browserslist": "cli.js"
|
|
@@ -5039,8 +5062,8 @@
|
|
|
5039
5062
|
}
|
|
5040
5063
|
},
|
|
5041
5064
|
"node_modules/caniuse-lite": {
|
|
5042
|
-
"version": "1.0.
|
|
5043
|
-
"integrity": "sha512-
|
|
5065
|
+
"version": "1.0.30001761",
|
|
5066
|
+
"integrity": "sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==",
|
|
5044
5067
|
"funding": [
|
|
5045
5068
|
{
|
|
5046
5069
|
"type": "opencollective",
|
|
@@ -5060,6 +5083,7 @@
|
|
|
5060
5083
|
"node_modules/chalk": {
|
|
5061
5084
|
"version": "4.1.2",
|
|
5062
5085
|
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
5086
|
+
"dev": true,
|
|
5063
5087
|
"license": "MIT",
|
|
5064
5088
|
"dependencies": {
|
|
5065
5089
|
"ansi-styles": "^4.1.0",
|
|
@@ -5192,6 +5216,7 @@
|
|
|
5192
5216
|
"node_modules/color-convert": {
|
|
5193
5217
|
"version": "2.0.1",
|
|
5194
5218
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
5219
|
+
"devOptional": true,
|
|
5195
5220
|
"license": "MIT",
|
|
5196
5221
|
"dependencies": {
|
|
5197
5222
|
"color-name": "~1.1.4"
|
|
@@ -5203,6 +5228,7 @@
|
|
|
5203
5228
|
"node_modules/color-name": {
|
|
5204
5229
|
"version": "1.1.4",
|
|
5205
5230
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
5231
|
+
"devOptional": true,
|
|
5206
5232
|
"license": "MIT"
|
|
5207
5233
|
},
|
|
5208
5234
|
"node_modules/color-string": {
|
|
@@ -5243,6 +5269,7 @@
|
|
|
5243
5269
|
"node_modules/concat-map": {
|
|
5244
5270
|
"version": "0.0.1",
|
|
5245
5271
|
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
5272
|
+
"dev": true,
|
|
5246
5273
|
"license": "MIT"
|
|
5247
5274
|
},
|
|
5248
5275
|
"node_modules/convert-source-map": {
|
|
@@ -5493,6 +5520,7 @@
|
|
|
5493
5520
|
"node_modules/deep-is": {
|
|
5494
5521
|
"version": "0.1.4",
|
|
5495
5522
|
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
|
|
5523
|
+
"dev": true,
|
|
5496
5524
|
"license": "MIT"
|
|
5497
5525
|
},
|
|
5498
5526
|
"node_modules/define-data-property": {
|
|
@@ -5568,8 +5596,8 @@
|
|
|
5568
5596
|
}
|
|
5569
5597
|
},
|
|
5570
5598
|
"node_modules/dompurify": {
|
|
5571
|
-
"version": "3.3.
|
|
5572
|
-
"integrity": "sha512-
|
|
5599
|
+
"version": "3.3.1",
|
|
5600
|
+
"integrity": "sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==",
|
|
5573
5601
|
"license": "(MPL-2.0 OR Apache-2.0)",
|
|
5574
5602
|
"optionalDependencies": {
|
|
5575
5603
|
"@types/trusted-types": "^2.0.7"
|
|
@@ -5589,8 +5617,8 @@
|
|
|
5589
5617
|
}
|
|
5590
5618
|
},
|
|
5591
5619
|
"node_modules/electron-to-chromium": {
|
|
5592
|
-
"version": "1.5.
|
|
5593
|
-
"integrity": "sha512-
|
|
5620
|
+
"version": "1.5.267",
|
|
5621
|
+
"integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
|
|
5594
5622
|
"dev": true,
|
|
5595
5623
|
"license": "ISC"
|
|
5596
5624
|
},
|
|
@@ -5620,8 +5648,8 @@
|
|
|
5620
5648
|
}
|
|
5621
5649
|
},
|
|
5622
5650
|
"node_modules/es-abstract": {
|
|
5623
|
-
"version": "1.24.
|
|
5624
|
-
"integrity": "sha512-
|
|
5651
|
+
"version": "1.24.1",
|
|
5652
|
+
"integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==",
|
|
5625
5653
|
"dev": true,
|
|
5626
5654
|
"license": "MIT",
|
|
5627
5655
|
"dependencies": {
|
|
@@ -5704,26 +5732,26 @@
|
|
|
5704
5732
|
}
|
|
5705
5733
|
},
|
|
5706
5734
|
"node_modules/es-iterator-helpers": {
|
|
5707
|
-
"version": "1.2.
|
|
5708
|
-
"integrity": "sha512-
|
|
5735
|
+
"version": "1.2.2",
|
|
5736
|
+
"integrity": "sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==",
|
|
5709
5737
|
"dev": true,
|
|
5710
5738
|
"license": "MIT",
|
|
5711
5739
|
"dependencies": {
|
|
5712
5740
|
"call-bind": "^1.0.8",
|
|
5713
|
-
"call-bound": "^1.0.
|
|
5741
|
+
"call-bound": "^1.0.4",
|
|
5714
5742
|
"define-properties": "^1.2.1",
|
|
5715
|
-
"es-abstract": "^1.
|
|
5743
|
+
"es-abstract": "^1.24.1",
|
|
5716
5744
|
"es-errors": "^1.3.0",
|
|
5717
|
-
"es-set-tostringtag": "^2.0
|
|
5745
|
+
"es-set-tostringtag": "^2.1.0",
|
|
5718
5746
|
"function-bind": "^1.1.2",
|
|
5719
|
-
"get-intrinsic": "^1.
|
|
5747
|
+
"get-intrinsic": "^1.3.0",
|
|
5720
5748
|
"globalthis": "^1.0.4",
|
|
5721
5749
|
"gopd": "^1.2.0",
|
|
5722
5750
|
"has-property-descriptors": "^1.0.2",
|
|
5723
5751
|
"has-proto": "^1.2.0",
|
|
5724
5752
|
"has-symbols": "^1.1.0",
|
|
5725
5753
|
"internal-slot": "^1.1.0",
|
|
5726
|
-
"iterator.prototype": "^1.1.
|
|
5754
|
+
"iterator.prototype": "^1.1.5",
|
|
5727
5755
|
"safe-array-concat": "^1.1.3"
|
|
5728
5756
|
},
|
|
5729
5757
|
"engines": {
|
|
@@ -5785,8 +5813,8 @@
|
|
|
5785
5813
|
}
|
|
5786
5814
|
},
|
|
5787
5815
|
"node_modules/es-toolkit": {
|
|
5788
|
-
"version": "1.
|
|
5789
|
-
"integrity": "sha512-
|
|
5816
|
+
"version": "1.43.0",
|
|
5817
|
+
"integrity": "sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==",
|
|
5790
5818
|
"license": "MIT",
|
|
5791
5819
|
"workspaces": [
|
|
5792
5820
|
"docs",
|
|
@@ -5814,8 +5842,9 @@
|
|
|
5814
5842
|
}
|
|
5815
5843
|
},
|
|
5816
5844
|
"node_modules/eslint": {
|
|
5817
|
-
"version": "9.39.
|
|
5818
|
-
"integrity": "sha512-
|
|
5845
|
+
"version": "9.39.2",
|
|
5846
|
+
"integrity": "sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==",
|
|
5847
|
+
"dev": true,
|
|
5819
5848
|
"license": "MIT",
|
|
5820
5849
|
"dependencies": {
|
|
5821
5850
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
@@ -5824,7 +5853,7 @@
|
|
|
5824
5853
|
"@eslint/config-helpers": "^0.4.2",
|
|
5825
5854
|
"@eslint/core": "^0.17.0",
|
|
5826
5855
|
"@eslint/eslintrc": "^3.3.1",
|
|
5827
|
-
"@eslint/js": "9.39.
|
|
5856
|
+
"@eslint/js": "9.39.2",
|
|
5828
5857
|
"@eslint/plugin-kit": "^0.4.1",
|
|
5829
5858
|
"@humanfs/node": "^0.16.6",
|
|
5830
5859
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -6093,17 +6122,6 @@
|
|
|
6093
6122
|
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
|
|
6094
6123
|
}
|
|
6095
6124
|
},
|
|
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
6125
|
"node_modules/eslint-plugin-react/node_modules/resolve": {
|
|
6108
6126
|
"version": "2.0.0-next.5",
|
|
6109
6127
|
"integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
|
|
@@ -6124,6 +6142,7 @@
|
|
|
6124
6142
|
"node_modules/eslint-scope": {
|
|
6125
6143
|
"version": "8.4.0",
|
|
6126
6144
|
"integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
|
|
6145
|
+
"dev": true,
|
|
6127
6146
|
"license": "BSD-2-Clause",
|
|
6128
6147
|
"dependencies": {
|
|
6129
6148
|
"esrecurse": "^4.3.0",
|
|
@@ -6139,6 +6158,7 @@
|
|
|
6139
6158
|
"node_modules/eslint-visitor-keys": {
|
|
6140
6159
|
"version": "4.2.1",
|
|
6141
6160
|
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
6161
|
+
"dev": true,
|
|
6142
6162
|
"license": "Apache-2.0",
|
|
6143
6163
|
"engines": {
|
|
6144
6164
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6150,6 +6170,7 @@
|
|
|
6150
6170
|
"node_modules/eslint/node_modules/glob-parent": {
|
|
6151
6171
|
"version": "6.0.2",
|
|
6152
6172
|
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
|
6173
|
+
"dev": true,
|
|
6153
6174
|
"license": "ISC",
|
|
6154
6175
|
"dependencies": {
|
|
6155
6176
|
"is-glob": "^4.0.3"
|
|
@@ -6161,6 +6182,7 @@
|
|
|
6161
6182
|
"node_modules/espree": {
|
|
6162
6183
|
"version": "10.4.0",
|
|
6163
6184
|
"integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
|
|
6185
|
+
"dev": true,
|
|
6164
6186
|
"license": "BSD-2-Clause",
|
|
6165
6187
|
"dependencies": {
|
|
6166
6188
|
"acorn": "^8.15.0",
|
|
@@ -6177,6 +6199,7 @@
|
|
|
6177
6199
|
"node_modules/esquery": {
|
|
6178
6200
|
"version": "1.6.0",
|
|
6179
6201
|
"integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
|
|
6202
|
+
"dev": true,
|
|
6180
6203
|
"license": "BSD-3-Clause",
|
|
6181
6204
|
"dependencies": {
|
|
6182
6205
|
"estraverse": "^5.1.0"
|
|
@@ -6188,6 +6211,7 @@
|
|
|
6188
6211
|
"node_modules/esrecurse": {
|
|
6189
6212
|
"version": "4.3.0",
|
|
6190
6213
|
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
|
|
6214
|
+
"dev": true,
|
|
6191
6215
|
"license": "BSD-2-Clause",
|
|
6192
6216
|
"dependencies": {
|
|
6193
6217
|
"estraverse": "^5.2.0"
|
|
@@ -6199,6 +6223,7 @@
|
|
|
6199
6223
|
"node_modules/estraverse": {
|
|
6200
6224
|
"version": "5.3.0",
|
|
6201
6225
|
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
|
6226
|
+
"dev": true,
|
|
6202
6227
|
"license": "BSD-2-Clause",
|
|
6203
6228
|
"engines": {
|
|
6204
6229
|
"node": ">=4.0"
|
|
@@ -6207,6 +6232,7 @@
|
|
|
6207
6232
|
"node_modules/esutils": {
|
|
6208
6233
|
"version": "2.0.3",
|
|
6209
6234
|
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
6235
|
+
"dev": true,
|
|
6210
6236
|
"license": "BSD-2-Clause",
|
|
6211
6237
|
"engines": {
|
|
6212
6238
|
"node": ">=0.10.0"
|
|
@@ -6218,8 +6244,8 @@
|
|
|
6218
6244
|
"license": "MIT"
|
|
6219
6245
|
},
|
|
6220
6246
|
"node_modules/execa": {
|
|
6221
|
-
"version": "9.6.
|
|
6222
|
-
"integrity": "sha512-
|
|
6247
|
+
"version": "9.6.1",
|
|
6248
|
+
"integrity": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==",
|
|
6223
6249
|
"license": "MIT",
|
|
6224
6250
|
"dependencies": {
|
|
6225
6251
|
"@sindresorhus/merge-streams": "^4.0.0",
|
|
@@ -6245,6 +6271,7 @@
|
|
|
6245
6271
|
"node_modules/fast-deep-equal": {
|
|
6246
6272
|
"version": "3.1.3",
|
|
6247
6273
|
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
6274
|
+
"dev": true,
|
|
6248
6275
|
"license": "MIT"
|
|
6249
6276
|
},
|
|
6250
6277
|
"node_modules/fast-glob": {
|
|
@@ -6266,11 +6293,13 @@
|
|
|
6266
6293
|
"node_modules/fast-json-stable-stringify": {
|
|
6267
6294
|
"version": "2.1.0",
|
|
6268
6295
|
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
|
|
6296
|
+
"dev": true,
|
|
6269
6297
|
"license": "MIT"
|
|
6270
6298
|
},
|
|
6271
6299
|
"node_modules/fast-levenshtein": {
|
|
6272
6300
|
"version": "2.0.6",
|
|
6273
6301
|
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
|
|
6302
|
+
"dev": true,
|
|
6274
6303
|
"license": "MIT"
|
|
6275
6304
|
},
|
|
6276
6305
|
"node_modules/fastq": {
|
|
@@ -6299,6 +6328,7 @@
|
|
|
6299
6328
|
"node_modules/file-entry-cache": {
|
|
6300
6329
|
"version": "8.0.0",
|
|
6301
6330
|
"integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
|
|
6331
|
+
"dev": true,
|
|
6302
6332
|
"license": "MIT",
|
|
6303
6333
|
"dependencies": {
|
|
6304
6334
|
"flat-cache": "^4.0.0"
|
|
@@ -6335,6 +6365,7 @@
|
|
|
6335
6365
|
"node_modules/find-up": {
|
|
6336
6366
|
"version": "5.0.0",
|
|
6337
6367
|
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
|
6368
|
+
"dev": true,
|
|
6338
6369
|
"license": "MIT",
|
|
6339
6370
|
"dependencies": {
|
|
6340
6371
|
"locate-path": "^6.0.0",
|
|
@@ -6350,6 +6381,7 @@
|
|
|
6350
6381
|
"node_modules/flat-cache": {
|
|
6351
6382
|
"version": "4.0.1",
|
|
6352
6383
|
"integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
|
|
6384
|
+
"dev": true,
|
|
6353
6385
|
"license": "MIT",
|
|
6354
6386
|
"dependencies": {
|
|
6355
6387
|
"flatted": "^3.2.9",
|
|
@@ -6362,6 +6394,7 @@
|
|
|
6362
6394
|
"node_modules/flatted": {
|
|
6363
6395
|
"version": "3.3.3",
|
|
6364
6396
|
"integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
|
|
6397
|
+
"dev": true,
|
|
6365
6398
|
"license": "ISC"
|
|
6366
6399
|
},
|
|
6367
6400
|
"node_modules/follow-redirects": {
|
|
@@ -6414,8 +6447,8 @@
|
|
|
6414
6447
|
}
|
|
6415
6448
|
},
|
|
6416
6449
|
"node_modules/fs-extra": {
|
|
6417
|
-
"version": "11.3.
|
|
6418
|
-
"integrity": "sha512-
|
|
6450
|
+
"version": "11.3.3",
|
|
6451
|
+
"integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
|
|
6419
6452
|
"dev": true,
|
|
6420
6453
|
"license": "MIT",
|
|
6421
6454
|
"dependencies": {
|
|
@@ -6644,6 +6677,7 @@
|
|
|
6644
6677
|
"node_modules/globals": {
|
|
6645
6678
|
"version": "14.0.0",
|
|
6646
6679
|
"integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
|
|
6680
|
+
"dev": true,
|
|
6647
6681
|
"license": "MIT",
|
|
6648
6682
|
"engines": {
|
|
6649
6683
|
"node": ">=18"
|
|
@@ -6685,12 +6719,6 @@
|
|
|
6685
6719
|
"dev": true,
|
|
6686
6720
|
"license": "ISC"
|
|
6687
6721
|
},
|
|
6688
|
-
"node_modules/graphemer": {
|
|
6689
|
-
"version": "1.4.0",
|
|
6690
|
-
"integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
|
|
6691
|
-
"dev": true,
|
|
6692
|
-
"license": "MIT"
|
|
6693
|
-
},
|
|
6694
6722
|
"node_modules/has-bigints": {
|
|
6695
6723
|
"version": "1.1.0",
|
|
6696
6724
|
"integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
|
|
@@ -6706,6 +6734,7 @@
|
|
|
6706
6734
|
"node_modules/has-flag": {
|
|
6707
6735
|
"version": "4.0.0",
|
|
6708
6736
|
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
6737
|
+
"dev": true,
|
|
6709
6738
|
"license": "MIT",
|
|
6710
6739
|
"engines": {
|
|
6711
6740
|
"node": ">=8"
|
|
@@ -6821,14 +6850,15 @@
|
|
|
6821
6850
|
"node_modules/ignore": {
|
|
6822
6851
|
"version": "5.3.2",
|
|
6823
6852
|
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
|
|
6853
|
+
"dev": true,
|
|
6824
6854
|
"license": "MIT",
|
|
6825
6855
|
"engines": {
|
|
6826
6856
|
"node": ">= 4"
|
|
6827
6857
|
}
|
|
6828
6858
|
},
|
|
6829
6859
|
"node_modules/immer": {
|
|
6830
|
-
"version": "
|
|
6831
|
-
"integrity": "sha512-
|
|
6860
|
+
"version": "10.2.0",
|
|
6861
|
+
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
6832
6862
|
"license": "MIT",
|
|
6833
6863
|
"funding": {
|
|
6834
6864
|
"type": "opencollective",
|
|
@@ -6853,6 +6883,7 @@
|
|
|
6853
6883
|
"node_modules/imurmurhash": {
|
|
6854
6884
|
"version": "0.1.4",
|
|
6855
6885
|
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
|
|
6886
|
+
"dev": true,
|
|
6856
6887
|
"license": "MIT",
|
|
6857
6888
|
"engines": {
|
|
6858
6889
|
"node": ">=0.8.19"
|
|
@@ -7076,6 +7107,7 @@
|
|
|
7076
7107
|
"node_modules/is-extglob": {
|
|
7077
7108
|
"version": "2.1.1",
|
|
7078
7109
|
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
7110
|
+
"dev": true,
|
|
7079
7111
|
"license": "MIT",
|
|
7080
7112
|
"engines": {
|
|
7081
7113
|
"node": ">=0.10.0"
|
|
@@ -7132,6 +7164,7 @@
|
|
|
7132
7164
|
"node_modules/is-glob": {
|
|
7133
7165
|
"version": "4.0.3",
|
|
7134
7166
|
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
7167
|
+
"dev": true,
|
|
7135
7168
|
"license": "MIT",
|
|
7136
7169
|
"dependencies": {
|
|
7137
7170
|
"is-extglob": "^2.1.1"
|
|
@@ -7418,6 +7451,7 @@
|
|
|
7418
7451
|
"node_modules/js-yaml": {
|
|
7419
7452
|
"version": "4.1.1",
|
|
7420
7453
|
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
|
|
7454
|
+
"dev": true,
|
|
7421
7455
|
"license": "MIT",
|
|
7422
7456
|
"dependencies": {
|
|
7423
7457
|
"argparse": "^2.0.1"
|
|
@@ -7440,6 +7474,7 @@
|
|
|
7440
7474
|
"node_modules/json-buffer": {
|
|
7441
7475
|
"version": "3.0.1",
|
|
7442
7476
|
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
|
|
7477
|
+
"dev": true,
|
|
7443
7478
|
"license": "MIT"
|
|
7444
7479
|
},
|
|
7445
7480
|
"node_modules/json-parse-even-better-errors": {
|
|
@@ -7450,11 +7485,13 @@
|
|
|
7450
7485
|
"node_modules/json-schema-traverse": {
|
|
7451
7486
|
"version": "0.4.1",
|
|
7452
7487
|
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
|
7488
|
+
"dev": true,
|
|
7453
7489
|
"license": "MIT"
|
|
7454
7490
|
},
|
|
7455
7491
|
"node_modules/json-stable-stringify-without-jsonify": {
|
|
7456
7492
|
"version": "1.0.1",
|
|
7457
7493
|
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
|
|
7494
|
+
"dev": true,
|
|
7458
7495
|
"license": "MIT"
|
|
7459
7496
|
},
|
|
7460
7497
|
"node_modules/json5": {
|
|
@@ -7499,6 +7536,7 @@
|
|
|
7499
7536
|
"node_modules/keyv": {
|
|
7500
7537
|
"version": "4.5.4",
|
|
7501
7538
|
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
|
|
7539
|
+
"dev": true,
|
|
7502
7540
|
"license": "MIT",
|
|
7503
7541
|
"dependencies": {
|
|
7504
7542
|
"json-buffer": "3.0.1"
|
|
@@ -7525,6 +7563,7 @@
|
|
|
7525
7563
|
"node_modules/levn": {
|
|
7526
7564
|
"version": "0.4.1",
|
|
7527
7565
|
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
|
7566
|
+
"dev": true,
|
|
7528
7567
|
"license": "MIT",
|
|
7529
7568
|
"dependencies": {
|
|
7530
7569
|
"prelude-ls": "^1.2.1",
|
|
@@ -7571,14 +7610,17 @@
|
|
|
7571
7610
|
}
|
|
7572
7611
|
},
|
|
7573
7612
|
"node_modules/lint-staged/node_modules/yaml": {
|
|
7574
|
-
"version": "2.8.
|
|
7575
|
-
"integrity": "sha512-
|
|
7613
|
+
"version": "2.8.2",
|
|
7614
|
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
7576
7615
|
"license": "ISC",
|
|
7577
7616
|
"bin": {
|
|
7578
7617
|
"yaml": "bin.mjs"
|
|
7579
7618
|
},
|
|
7580
7619
|
"engines": {
|
|
7581
7620
|
"node": ">= 14.6"
|
|
7621
|
+
},
|
|
7622
|
+
"funding": {
|
|
7623
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
7582
7624
|
}
|
|
7583
7625
|
},
|
|
7584
7626
|
"node_modules/listr2": {
|
|
@@ -7600,6 +7642,7 @@
|
|
|
7600
7642
|
"node_modules/locate-path": {
|
|
7601
7643
|
"version": "6.0.0",
|
|
7602
7644
|
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
|
7645
|
+
"dev": true,
|
|
7603
7646
|
"license": "MIT",
|
|
7604
7647
|
"dependencies": {
|
|
7605
7648
|
"p-locate": "^5.0.0"
|
|
@@ -7617,8 +7660,8 @@
|
|
|
7617
7660
|
"license": "MIT"
|
|
7618
7661
|
},
|
|
7619
7662
|
"node_modules/lodash-es": {
|
|
7620
|
-
"version": "4.17.
|
|
7621
|
-
"integrity": "sha512-
|
|
7663
|
+
"version": "4.17.22",
|
|
7664
|
+
"integrity": "sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==",
|
|
7622
7665
|
"license": "MIT"
|
|
7623
7666
|
},
|
|
7624
7667
|
"node_modules/lodash.debounce": {
|
|
@@ -7630,6 +7673,7 @@
|
|
|
7630
7673
|
"node_modules/lodash.merge": {
|
|
7631
7674
|
"version": "4.6.2",
|
|
7632
7675
|
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
|
7676
|
+
"dev": true,
|
|
7633
7677
|
"license": "MIT"
|
|
7634
7678
|
},
|
|
7635
7679
|
"node_modules/log-update": {
|
|
@@ -7759,6 +7803,7 @@
|
|
|
7759
7803
|
"node_modules/minimatch": {
|
|
7760
7804
|
"version": "3.1.2",
|
|
7761
7805
|
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
7806
|
+
"dev": true,
|
|
7762
7807
|
"license": "ISC",
|
|
7763
7808
|
"dependencies": {
|
|
7764
7809
|
"brace-expansion": "^1.1.7"
|
|
@@ -7855,11 +7900,13 @@
|
|
|
7855
7900
|
"node_modules/natural-compare": {
|
|
7856
7901
|
"version": "1.4.0",
|
|
7857
7902
|
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
|
|
7903
|
+
"dev": true,
|
|
7858
7904
|
"license": "MIT"
|
|
7859
7905
|
},
|
|
7860
7906
|
"node_modules/next": {
|
|
7861
7907
|
"version": "15.1.4",
|
|
7862
7908
|
"integrity": "sha512-mTaq9dwaSuwwOrcu3ebjDYObekkxRnXpuVL21zotM8qE2W0HBOdVIdg2Li9QjMEZrj73LN96LcWcz62V19FjAg==",
|
|
7909
|
+
"deprecated": "This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/CVE-2025-66478 for more details.",
|
|
7863
7910
|
"license": "MIT",
|
|
7864
7911
|
"dependencies": {
|
|
7865
7912
|
"@next/env": "15.1.4",
|
|
@@ -8100,6 +8147,7 @@
|
|
|
8100
8147
|
"node_modules/optionator": {
|
|
8101
8148
|
"version": "0.9.4",
|
|
8102
8149
|
"integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
|
|
8150
|
+
"dev": true,
|
|
8103
8151
|
"license": "MIT",
|
|
8104
8152
|
"dependencies": {
|
|
8105
8153
|
"deep-is": "^0.1.3",
|
|
@@ -8133,6 +8181,7 @@
|
|
|
8133
8181
|
"node_modules/p-limit": {
|
|
8134
8182
|
"version": "3.1.0",
|
|
8135
8183
|
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
|
|
8184
|
+
"dev": true,
|
|
8136
8185
|
"license": "MIT",
|
|
8137
8186
|
"dependencies": {
|
|
8138
8187
|
"yocto-queue": "^0.1.0"
|
|
@@ -8147,6 +8196,7 @@
|
|
|
8147
8196
|
"node_modules/p-locate": {
|
|
8148
8197
|
"version": "5.0.0",
|
|
8149
8198
|
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
|
|
8199
|
+
"dev": true,
|
|
8150
8200
|
"license": "MIT",
|
|
8151
8201
|
"dependencies": {
|
|
8152
8202
|
"p-limit": "^3.0.2"
|
|
@@ -8209,6 +8259,7 @@
|
|
|
8209
8259
|
"node_modules/path-exists": {
|
|
8210
8260
|
"version": "4.0.0",
|
|
8211
8261
|
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
|
8262
|
+
"dev": true,
|
|
8212
8263
|
"license": "MIT",
|
|
8213
8264
|
"engines": {
|
|
8214
8265
|
"node": ">=8"
|
|
@@ -8432,14 +8483,15 @@
|
|
|
8432
8483
|
"node_modules/prelude-ls": {
|
|
8433
8484
|
"version": "1.2.1",
|
|
8434
8485
|
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
|
|
8486
|
+
"dev": true,
|
|
8435
8487
|
"license": "MIT",
|
|
8436
8488
|
"engines": {
|
|
8437
8489
|
"node": ">= 0.8.0"
|
|
8438
8490
|
}
|
|
8439
8491
|
},
|
|
8440
8492
|
"node_modules/prettier": {
|
|
8441
|
-
"version": "3.
|
|
8442
|
-
"integrity": "sha512-
|
|
8493
|
+
"version": "3.7.4",
|
|
8494
|
+
"integrity": "sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==",
|
|
8443
8495
|
"dev": true,
|
|
8444
8496
|
"license": "MIT",
|
|
8445
8497
|
"bin": {
|
|
@@ -8489,6 +8541,7 @@
|
|
|
8489
8541
|
"node_modules/punycode": {
|
|
8490
8542
|
"version": "2.3.1",
|
|
8491
8543
|
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
8544
|
+
"dev": true,
|
|
8492
8545
|
"license": "MIT",
|
|
8493
8546
|
"engines": {
|
|
8494
8547
|
"node": ">=6"
|
|
@@ -8520,8 +8573,8 @@
|
|
|
8520
8573
|
"license": "MIT"
|
|
8521
8574
|
},
|
|
8522
8575
|
"node_modules/react": {
|
|
8523
|
-
"version": "19.2.
|
|
8524
|
-
"integrity": "sha512-
|
|
8576
|
+
"version": "19.2.3",
|
|
8577
|
+
"integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
|
|
8525
8578
|
"license": "MIT",
|
|
8526
8579
|
"engines": {
|
|
8527
8580
|
"node": ">=0.10.0"
|
|
@@ -8545,19 +8598,19 @@
|
|
|
8545
8598
|
}
|
|
8546
8599
|
},
|
|
8547
8600
|
"node_modules/react-dom": {
|
|
8548
|
-
"version": "19.2.
|
|
8549
|
-
"integrity": "sha512-
|
|
8601
|
+
"version": "19.2.3",
|
|
8602
|
+
"integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==",
|
|
8550
8603
|
"license": "MIT",
|
|
8551
8604
|
"dependencies": {
|
|
8552
8605
|
"scheduler": "^0.27.0"
|
|
8553
8606
|
},
|
|
8554
8607
|
"peerDependencies": {
|
|
8555
|
-
"react": "^19.2.
|
|
8608
|
+
"react": "^19.2.3"
|
|
8556
8609
|
}
|
|
8557
8610
|
},
|
|
8558
8611
|
"node_modules/react-hook-form": {
|
|
8559
|
-
"version": "7.
|
|
8560
|
-
"integrity": "sha512-
|
|
8612
|
+
"version": "7.69.0",
|
|
8613
|
+
"integrity": "sha512-yt6ZGME9f4F6WHwevrvpAjh42HMvocuSnSIHUGycBqXIJdhqGSPQzTpGF+1NLREk/58IdPxEMfPcFCjlMhclGw==",
|
|
8561
8614
|
"license": "MIT",
|
|
8562
8615
|
"engines": {
|
|
8563
8616
|
"node": ">=18.0.0"
|
|
@@ -8571,8 +8624,8 @@
|
|
|
8571
8624
|
}
|
|
8572
8625
|
},
|
|
8573
8626
|
"node_modules/react-is": {
|
|
8574
|
-
"version": "19.2.
|
|
8575
|
-
"integrity": "sha512-
|
|
8627
|
+
"version": "19.2.3",
|
|
8628
|
+
"integrity": "sha512-qJNJfu81ByyabuG7hPFEbXqNcWSU3+eVus+KJs+0ncpGfMyYdvSmxiJxbWR65lYi1I+/0HBcliO029gc4F+PnA==",
|
|
8576
8629
|
"license": "MIT"
|
|
8577
8630
|
},
|
|
8578
8631
|
"node_modules/react-redux": {
|
|
@@ -8634,8 +8687,8 @@
|
|
|
8634
8687
|
}
|
|
8635
8688
|
},
|
|
8636
8689
|
"node_modules/recharts": {
|
|
8637
|
-
"version": "3.
|
|
8638
|
-
"integrity": "sha512-
|
|
8690
|
+
"version": "3.6.0",
|
|
8691
|
+
"integrity": "sha512-L5bjxvQRAe26RlToBAziKUB7whaGKEwD3znoM6fz3DrTowCIC/FnJYnuq1GEzB8Zv2kdTfaxQfi5GoH0tBinyg==",
|
|
8639
8692
|
"license": "MIT",
|
|
8640
8693
|
"workspaces": [
|
|
8641
8694
|
"www"
|
|
@@ -8645,7 +8698,6 @@
|
|
|
8645
8698
|
"clsx": "^2.1.1",
|
|
8646
8699
|
"decimal.js-light": "^2.5.1",
|
|
8647
8700
|
"es-toolkit": "^1.39.3",
|
|
8648
|
-
"eslint-plugin-react-perf": "^3.3.3",
|
|
8649
8701
|
"eventemitter3": "^5.0.1",
|
|
8650
8702
|
"immer": "^10.1.1",
|
|
8651
8703
|
"react-redux": "8.x.x || 9.x.x",
|
|
@@ -8663,15 +8715,6 @@
|
|
|
8663
8715
|
"react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
8664
8716
|
}
|
|
8665
8717
|
},
|
|
8666
|
-
"node_modules/recharts/node_modules/immer": {
|
|
8667
|
-
"version": "10.2.0",
|
|
8668
|
-
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
8669
|
-
"license": "MIT",
|
|
8670
|
-
"funding": {
|
|
8671
|
-
"type": "opencollective",
|
|
8672
|
-
"url": "https://opencollective.com/immer"
|
|
8673
|
-
}
|
|
8674
|
-
},
|
|
8675
8718
|
"node_modules/redux": {
|
|
8676
8719
|
"version": "5.0.1",
|
|
8677
8720
|
"integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
|
|
@@ -9398,6 +9441,7 @@
|
|
|
9398
9441
|
"node_modules/strip-json-comments": {
|
|
9399
9442
|
"version": "3.1.1",
|
|
9400
9443
|
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
|
9444
|
+
"dev": true,
|
|
9401
9445
|
"license": "MIT",
|
|
9402
9446
|
"engines": {
|
|
9403
9447
|
"node": ">=8"
|
|
@@ -9436,6 +9480,7 @@
|
|
|
9436
9480
|
"node_modules/supports-color": {
|
|
9437
9481
|
"version": "7.2.0",
|
|
9438
9482
|
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
|
9483
|
+
"dev": true,
|
|
9439
9484
|
"license": "MIT",
|
|
9440
9485
|
"dependencies": {
|
|
9441
9486
|
"has-flag": "^4.0.0"
|
|
@@ -9570,6 +9615,7 @@
|
|
|
9570
9615
|
"node_modules/type-check": {
|
|
9571
9616
|
"version": "0.4.0",
|
|
9572
9617
|
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
|
|
9618
|
+
"dev": true,
|
|
9573
9619
|
"license": "MIT",
|
|
9574
9620
|
"dependencies": {
|
|
9575
9621
|
"prelude-ls": "^1.2.1"
|
|
@@ -9784,8 +9830,8 @@
|
|
|
9784
9830
|
}
|
|
9785
9831
|
},
|
|
9786
9832
|
"node_modules/update-browserslist-db": {
|
|
9787
|
-
"version": "1.
|
|
9788
|
-
"integrity": "sha512-
|
|
9833
|
+
"version": "1.2.3",
|
|
9834
|
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
|
9789
9835
|
"dev": true,
|
|
9790
9836
|
"funding": [
|
|
9791
9837
|
{
|
|
@@ -9816,6 +9862,7 @@
|
|
|
9816
9862
|
"node_modules/uri-js": {
|
|
9817
9863
|
"version": "4.4.1",
|
|
9818
9864
|
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
|
9865
|
+
"dev": true,
|
|
9819
9866
|
"license": "BSD-2-Clause",
|
|
9820
9867
|
"dependencies": {
|
|
9821
9868
|
"punycode": "^2.1.0"
|
|
@@ -9952,6 +9999,7 @@
|
|
|
9952
9999
|
"node_modules/word-wrap": {
|
|
9953
10000
|
"version": "1.2.5",
|
|
9954
10001
|
"integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
|
|
10002
|
+
"dev": true,
|
|
9955
10003
|
"license": "MIT",
|
|
9956
10004
|
"engines": {
|
|
9957
10005
|
"node": ">=0.10.0"
|
|
@@ -10095,6 +10143,7 @@
|
|
|
10095
10143
|
"node_modules/yocto-queue": {
|
|
10096
10144
|
"version": "0.1.0",
|
|
10097
10145
|
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
|
|
10146
|
+
"dev": true,
|
|
10098
10147
|
"license": "MIT",
|
|
10099
10148
|
"engines": {
|
|
10100
10149
|
"node": ">=10"
|