@wavemaker/react-runtime 11.14.3-rc.6401 → 11.14.4-rc.647538
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 +3 -5
- package/actions/notification-action.js +3 -6
- package/components/basic/anchor/index.js +7 -6
- package/components/basic/label/index.js +2 -2
- package/components/basic/search/index.js +3 -7
- package/components/chart/components/barColumnChart/index.js +4 -2
- package/components/chart/components/pieDonutChart/index.js +1 -3
- package/components/chart/index.js +39 -72
- package/components/chart/utils.js +12 -23
- package/components/container/index.js +7 -6
- package/components/container/panel/components/panel-header/index.js +2 -3
- package/components/container/panel/index.js +9 -13
- package/components/container/tabs/index.js +0 -1
- package/components/container/tabs/tab-pane/index.js +3 -39
- package/components/container/wizard/index.js +57 -187
- package/components/container/wizard/utils.js +1 -1
- package/components/container/wizard/wizard-action/index.js +4 -9
- package/components/container/wizard/wizard-step/index.js +8 -21
- package/components/data/form/base-form/index.js +11 -51
- package/components/data/form/form-controller/withFormController.js +10 -7
- package/components/data/list/components/GroupedListItems.js +1 -5
- package/components/data/list/components/ListItemWithTemplate.js +1 -4
- package/components/data/list/hooks/useListEffects.js +14 -34
- package/components/data/list/hooks/useListEventHandlers.js +2 -18
- package/components/data/list/hooks/useListState.js +2 -15
- package/components/data/list/index.js +0 -1
- package/components/data/list/utils/list-helpers.js +5 -3
- package/components/data/list/utils/list-widget-methods.js +1 -1
- package/components/data/live-filter/index.js +5 -6
- package/components/data/live-form/index.js +14 -24
- package/components/data/table/components/TableBody.js +21 -5
- package/components/data/table/components/TableHeader.js +1 -5
- package/components/data/table/index.js +5 -21
- package/components/data/utils/field-data-utils.js +1 -1
- package/components/dialogs/index.js +16 -14
- package/components/input/currency/index.js +7 -11
- package/components/input/default/checkbox/index.js +3 -2
- package/components/input/default/checkboxset/index.js +22 -2
- package/components/input/default/radioset/index.js +4 -5
- package/components/input/epoch/datetime/index.js +2 -6
- package/components/input/epoch/time/index.js +1 -2
- package/components/input/number/index.js +2 -2
- package/components/input/text/util.js +0 -2
- package/components/input/textarea/index.js +24 -22
- package/components/layout/leftnav/index.js +1 -1
- package/components/navbar/nav/index.js +7 -97
- package/components/navbar/nav-item/index.js +2 -5
- package/components/navigation/menu/index.js +12 -73
- package/components/navigation/popover/index.js +0 -2
- package/components/page/error-boundary/index.js +0 -1
- package/components/prefab/container/index.js +3 -10
- package/context/LocalizationProvider.js +0 -1
- package/context/PrefabContext.js +13 -138
- package/context/WidgetProvider.js +2 -2
- package/core/constants/events.js +6 -12
- package/core/constants/index.js +11 -6
- package/core/formatter/number-formatters.js +1 -1
- package/core/proxy-service.js +36 -72
- package/core/util/utils.js +4 -23
- package/higherOrder/BaseApp.js +18 -60
- package/higherOrder/BasePage.js +77 -99
- package/higherOrder/BasePrefab.js +5 -13
- package/higherOrder/withBaseWrapper.js +3 -3
- package/hooks/useDataSourceSubscription.js +1 -1
- package/hooks/useHttp.js +13 -20
- package/mui-config/theme.js +0 -3
- package/package-lock.json +747 -704
- package/package.json +3 -3
- package/store/index.js +1 -5
- package/variables/service-variable.js +14 -17
- package/components/chart/hooks/useBarYAxisExtras.js +0 -52
- package/components/chart/hooks/useXAxisConfig.js +0 -98
- package/utils/lib-error-skipper.js +0 -196
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/react-runtime",
|
|
3
|
-
"version": "11.14.
|
|
3
|
+
"version": "11.14.4-rc.647538",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/react-runtime",
|
|
9
|
-
"version": "11.14.
|
|
9
|
+
"version": "11.14.4-rc.647538",
|
|
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": "2.
|
|
29
|
+
"@reduxjs/toolkit": "^2.6.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.
|
|
62
|
+
"@wavemaker/variables": "11.14.4-rc.647538",
|
|
63
63
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
64
64
|
"eslint": "^9",
|
|
65
65
|
"eslint-config-next": "15.1.4",
|
|
@@ -112,8 +112,8 @@
|
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
114
|
"node_modules/@babel/compat-data": {
|
|
115
|
-
"version": "7.29.
|
|
116
|
-
"integrity": "sha512-
|
|
115
|
+
"version": "7.29.3",
|
|
116
|
+
"integrity": "sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==",
|
|
117
117
|
"dev": true,
|
|
118
118
|
"license": "MIT",
|
|
119
119
|
"engines": {
|
|
@@ -195,8 +195,8 @@
|
|
|
195
195
|
}
|
|
196
196
|
},
|
|
197
197
|
"node_modules/@babel/helper-create-class-features-plugin": {
|
|
198
|
-
"version": "7.
|
|
199
|
-
"integrity": "sha512-
|
|
198
|
+
"version": "7.29.3",
|
|
199
|
+
"integrity": "sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA==",
|
|
200
200
|
"dev": true,
|
|
201
201
|
"license": "MIT",
|
|
202
202
|
"dependencies": {
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
206
206
|
"@babel/helper-replace-supers": "^7.28.6",
|
|
207
207
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
208
|
-
"@babel/traverse": "^7.
|
|
208
|
+
"@babel/traverse": "^7.29.0",
|
|
209
209
|
"semver": "^6.3.1"
|
|
210
210
|
},
|
|
211
211
|
"engines": {
|
|
@@ -233,8 +233,8 @@
|
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
235
|
"node_modules/@babel/helper-define-polyfill-provider": {
|
|
236
|
-
"version": "0.6.
|
|
237
|
-
"integrity": "sha512-
|
|
236
|
+
"version": "0.6.8",
|
|
237
|
+
"integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==",
|
|
238
238
|
"dev": true,
|
|
239
239
|
"license": "MIT",
|
|
240
240
|
"dependencies": {
|
|
@@ -406,22 +406,22 @@
|
|
|
406
406
|
}
|
|
407
407
|
},
|
|
408
408
|
"node_modules/@babel/helpers": {
|
|
409
|
-
"version": "7.
|
|
410
|
-
"integrity": "sha512-
|
|
409
|
+
"version": "7.29.2",
|
|
410
|
+
"integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==",
|
|
411
411
|
"dev": true,
|
|
412
412
|
"license": "MIT",
|
|
413
413
|
"peer": true,
|
|
414
414
|
"dependencies": {
|
|
415
415
|
"@babel/template": "^7.28.6",
|
|
416
|
-
"@babel/types": "^7.
|
|
416
|
+
"@babel/types": "^7.29.0"
|
|
417
417
|
},
|
|
418
418
|
"engines": {
|
|
419
419
|
"node": ">=6.9.0"
|
|
420
420
|
}
|
|
421
421
|
},
|
|
422
422
|
"node_modules/@babel/parser": {
|
|
423
|
-
"version": "7.29.
|
|
424
|
-
"integrity": "sha512-
|
|
423
|
+
"version": "7.29.3",
|
|
424
|
+
"integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
|
|
425
425
|
"license": "MIT",
|
|
426
426
|
"dependencies": {
|
|
427
427
|
"@babel/types": "^7.29.0"
|
|
@@ -479,6 +479,22 @@
|
|
|
479
479
|
"@babel/core": "^7.0.0"
|
|
480
480
|
}
|
|
481
481
|
},
|
|
482
|
+
"node_modules/@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": {
|
|
483
|
+
"version": "7.29.3",
|
|
484
|
+
"integrity": "sha512-SRS46DFR4HqzUzCVgi90/xMoL+zeBDBvWdKYXSEzh79kXswNFEglUpMKxR04//dPqwYXWUBJ3mpUd933ru9Kmg==",
|
|
485
|
+
"dev": true,
|
|
486
|
+
"license": "MIT",
|
|
487
|
+
"dependencies": {
|
|
488
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
489
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
|
|
490
|
+
},
|
|
491
|
+
"engines": {
|
|
492
|
+
"node": ">=6.9.0"
|
|
493
|
+
},
|
|
494
|
+
"peerDependencies": {
|
|
495
|
+
"@babel/core": "^7.0.0"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
482
498
|
"node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
|
|
483
499
|
"version": "7.27.1",
|
|
484
500
|
"integrity": "sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==",
|
|
@@ -1014,8 +1030,8 @@
|
|
|
1014
1030
|
}
|
|
1015
1031
|
},
|
|
1016
1032
|
"node_modules/@babel/plugin-transform-modules-systemjs": {
|
|
1017
|
-
"version": "7.29.
|
|
1018
|
-
"integrity": "sha512-
|
|
1033
|
+
"version": "7.29.4",
|
|
1034
|
+
"integrity": "sha512-N7QmZ0xRZfjHOfZeQLJjwgX2zS9pdGHSVl/cjSGlo4dXMqvurfxXDMKY4RqEKzPozV78VMcd0lxyG13mlbKc4w==",
|
|
1019
1035
|
"dev": true,
|
|
1020
1036
|
"license": "MIT",
|
|
1021
1037
|
"dependencies": {
|
|
@@ -1507,18 +1523,19 @@
|
|
|
1507
1523
|
}
|
|
1508
1524
|
},
|
|
1509
1525
|
"node_modules/@babel/preset-env": {
|
|
1510
|
-
"version": "7.29.
|
|
1511
|
-
"integrity": "sha512
|
|
1526
|
+
"version": "7.29.5",
|
|
1527
|
+
"integrity": "sha512-/69t2aEzGKHD76DyLbHysF/QH2LJOB8iFnYO37unDTKBTubzcMRv0f3H5EiN1Q6ajOd/eB7dAInF0qdFVS06kA==",
|
|
1512
1528
|
"dev": true,
|
|
1513
1529
|
"license": "MIT",
|
|
1514
1530
|
"dependencies": {
|
|
1515
|
-
"@babel/compat-data": "^7.29.
|
|
1531
|
+
"@babel/compat-data": "^7.29.3",
|
|
1516
1532
|
"@babel/helper-compilation-targets": "^7.28.6",
|
|
1517
1533
|
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1518
1534
|
"@babel/helper-validator-option": "^7.27.1",
|
|
1519
1535
|
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.28.5",
|
|
1520
1536
|
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1",
|
|
1521
1537
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1",
|
|
1538
|
+
"@babel/plugin-bugfix-safari-rest-destructuring-rhs-array": "^7.29.3",
|
|
1522
1539
|
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1",
|
|
1523
1540
|
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.6",
|
|
1524
1541
|
"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
|
|
@@ -1550,7 +1567,7 @@
|
|
|
1550
1567
|
"@babel/plugin-transform-member-expression-literals": "^7.27.1",
|
|
1551
1568
|
"@babel/plugin-transform-modules-amd": "^7.27.1",
|
|
1552
1569
|
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
|
|
1553
|
-
"@babel/plugin-transform-modules-systemjs": "^7.29.
|
|
1570
|
+
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
|
|
1554
1571
|
"@babel/plugin-transform-modules-umd": "^7.27.1",
|
|
1555
1572
|
"@babel/plugin-transform-named-capturing-groups-regex": "^7.29.0",
|
|
1556
1573
|
"@babel/plugin-transform-new-target": "^7.27.1",
|
|
@@ -1644,8 +1661,8 @@
|
|
|
1644
1661
|
}
|
|
1645
1662
|
},
|
|
1646
1663
|
"node_modules/@babel/runtime": {
|
|
1647
|
-
"version": "7.
|
|
1648
|
-
"integrity": "sha512-
|
|
1664
|
+
"version": "7.29.2",
|
|
1665
|
+
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
|
|
1649
1666
|
"license": "MIT",
|
|
1650
1667
|
"engines": {
|
|
1651
1668
|
"node": ">=6.9.0"
|
|
@@ -1787,19 +1804,19 @@
|
|
|
1787
1804
|
}
|
|
1788
1805
|
},
|
|
1789
1806
|
"node_modules/@emnapi/core": {
|
|
1790
|
-
"version": "1.
|
|
1791
|
-
"integrity": "sha512-
|
|
1807
|
+
"version": "1.10.0",
|
|
1808
|
+
"integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
|
|
1792
1809
|
"dev": true,
|
|
1793
1810
|
"license": "MIT",
|
|
1794
1811
|
"optional": true,
|
|
1795
1812
|
"dependencies": {
|
|
1796
|
-
"@emnapi/wasi-threads": "1.1
|
|
1813
|
+
"@emnapi/wasi-threads": "1.2.1",
|
|
1797
1814
|
"tslib": "^2.4.0"
|
|
1798
1815
|
}
|
|
1799
1816
|
},
|
|
1800
1817
|
"node_modules/@emnapi/runtime": {
|
|
1801
|
-
"version": "1.
|
|
1802
|
-
"integrity": "sha512-
|
|
1818
|
+
"version": "1.10.0",
|
|
1819
|
+
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
|
|
1803
1820
|
"license": "MIT",
|
|
1804
1821
|
"optional": true,
|
|
1805
1822
|
"dependencies": {
|
|
@@ -1807,8 +1824,8 @@
|
|
|
1807
1824
|
}
|
|
1808
1825
|
},
|
|
1809
1826
|
"node_modules/@emnapi/wasi-threads": {
|
|
1810
|
-
"version": "1.1
|
|
1811
|
-
"integrity": "sha512-
|
|
1827
|
+
"version": "1.2.1",
|
|
1828
|
+
"integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
|
|
1812
1829
|
"dev": true,
|
|
1813
1830
|
"license": "MIT",
|
|
1814
1831
|
"optional": true,
|
|
@@ -1994,14 +2011,14 @@
|
|
|
1994
2011
|
}
|
|
1995
2012
|
},
|
|
1996
2013
|
"node_modules/@eslint/config-array": {
|
|
1997
|
-
"version": "0.21.
|
|
1998
|
-
"integrity": "sha512-
|
|
2014
|
+
"version": "0.21.2",
|
|
2015
|
+
"integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
|
|
1999
2016
|
"dev": true,
|
|
2000
2017
|
"license": "Apache-2.0",
|
|
2001
2018
|
"dependencies": {
|
|
2002
2019
|
"@eslint/object-schema": "^2.1.7",
|
|
2003
2020
|
"debug": "^4.3.1",
|
|
2004
|
-
"minimatch": "^3.1.
|
|
2021
|
+
"minimatch": "^3.1.5"
|
|
2005
2022
|
},
|
|
2006
2023
|
"engines": {
|
|
2007
2024
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -2032,19 +2049,19 @@
|
|
|
2032
2049
|
}
|
|
2033
2050
|
},
|
|
2034
2051
|
"node_modules/@eslint/eslintrc": {
|
|
2035
|
-
"version": "3.3.
|
|
2036
|
-
"integrity": "sha512-
|
|
2052
|
+
"version": "3.3.5",
|
|
2053
|
+
"integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==",
|
|
2037
2054
|
"dev": true,
|
|
2038
2055
|
"license": "MIT",
|
|
2039
2056
|
"dependencies": {
|
|
2040
|
-
"ajv": "^6.
|
|
2057
|
+
"ajv": "^6.14.0",
|
|
2041
2058
|
"debug": "^4.3.2",
|
|
2042
2059
|
"espree": "^10.0.1",
|
|
2043
2060
|
"globals": "^14.0.0",
|
|
2044
2061
|
"ignore": "^5.2.0",
|
|
2045
2062
|
"import-fresh": "^3.2.1",
|
|
2046
2063
|
"js-yaml": "^4.1.1",
|
|
2047
|
-
"minimatch": "^3.1.
|
|
2064
|
+
"minimatch": "^3.1.5",
|
|
2048
2065
|
"strip-json-comments": "^3.1.1"
|
|
2049
2066
|
},
|
|
2050
2067
|
"engines": {
|
|
@@ -2055,8 +2072,8 @@
|
|
|
2055
2072
|
}
|
|
2056
2073
|
},
|
|
2057
2074
|
"node_modules/@eslint/js": {
|
|
2058
|
-
"version": "9.39.
|
|
2059
|
-
"integrity": "sha512-
|
|
2075
|
+
"version": "9.39.4",
|
|
2076
|
+
"integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==",
|
|
2060
2077
|
"dev": true,
|
|
2061
2078
|
"license": "MIT",
|
|
2062
2079
|
"engines": {
|
|
@@ -2089,29 +2106,29 @@
|
|
|
2089
2106
|
}
|
|
2090
2107
|
},
|
|
2091
2108
|
"node_modules/@floating-ui/core": {
|
|
2092
|
-
"version": "1.7.
|
|
2093
|
-
"integrity": "sha512-
|
|
2109
|
+
"version": "1.7.5",
|
|
2110
|
+
"integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
|
|
2094
2111
|
"license": "MIT",
|
|
2095
2112
|
"dependencies": {
|
|
2096
|
-
"@floating-ui/utils": "^0.2.
|
|
2113
|
+
"@floating-ui/utils": "^0.2.11"
|
|
2097
2114
|
}
|
|
2098
2115
|
},
|
|
2099
2116
|
"node_modules/@floating-ui/dom": {
|
|
2100
|
-
"version": "1.7.
|
|
2101
|
-
"integrity": "sha512-
|
|
2117
|
+
"version": "1.7.6",
|
|
2118
|
+
"integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
|
|
2102
2119
|
"license": "MIT",
|
|
2103
2120
|
"dependencies": {
|
|
2104
|
-
"@floating-ui/core": "^1.7.
|
|
2105
|
-
"@floating-ui/utils": "^0.2.
|
|
2121
|
+
"@floating-ui/core": "^1.7.5",
|
|
2122
|
+
"@floating-ui/utils": "^0.2.11"
|
|
2106
2123
|
}
|
|
2107
2124
|
},
|
|
2108
2125
|
"node_modules/@floating-ui/react": {
|
|
2109
|
-
"version": "0.27.
|
|
2110
|
-
"integrity": "sha512-
|
|
2126
|
+
"version": "0.27.19",
|
|
2127
|
+
"integrity": "sha512-31B8h5mm8YxotlE7/AU/PhNAl8eWxAmjL/v2QOxroDNkTFLk3Uu82u63N3b6TXa4EGJeeZLVcd/9AlNlVqzeog==",
|
|
2111
2128
|
"license": "MIT",
|
|
2112
2129
|
"dependencies": {
|
|
2113
|
-
"@floating-ui/react-dom": "^2.1.
|
|
2114
|
-
"@floating-ui/utils": "^0.2.
|
|
2130
|
+
"@floating-ui/react-dom": "^2.1.8",
|
|
2131
|
+
"@floating-ui/utils": "^0.2.11",
|
|
2115
2132
|
"tabbable": "^6.0.0"
|
|
2116
2133
|
},
|
|
2117
2134
|
"peerDependencies": {
|
|
@@ -2120,11 +2137,11 @@
|
|
|
2120
2137
|
}
|
|
2121
2138
|
},
|
|
2122
2139
|
"node_modules/@floating-ui/react-dom": {
|
|
2123
|
-
"version": "2.1.
|
|
2124
|
-
"integrity": "sha512-
|
|
2140
|
+
"version": "2.1.8",
|
|
2141
|
+
"integrity": "sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==",
|
|
2125
2142
|
"license": "MIT",
|
|
2126
2143
|
"dependencies": {
|
|
2127
|
-
"@floating-ui/dom": "^1.7.
|
|
2144
|
+
"@floating-ui/dom": "^1.7.6"
|
|
2128
2145
|
},
|
|
2129
2146
|
"peerDependencies": {
|
|
2130
2147
|
"react": ">=16.8.0",
|
|
@@ -2132,56 +2149,10 @@
|
|
|
2132
2149
|
}
|
|
2133
2150
|
},
|
|
2134
2151
|
"node_modules/@floating-ui/utils": {
|
|
2135
|
-
"version": "0.2.
|
|
2136
|
-
"integrity": "sha512-
|
|
2152
|
+
"version": "0.2.11",
|
|
2153
|
+
"integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
|
|
2137
2154
|
"license": "MIT"
|
|
2138
2155
|
},
|
|
2139
|
-
"node_modules/@formatjs/ecma402-abstract": {
|
|
2140
|
-
"version": "2.3.6",
|
|
2141
|
-
"integrity": "sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw==",
|
|
2142
|
-
"license": "MIT",
|
|
2143
|
-
"dependencies": {
|
|
2144
|
-
"@formatjs/fast-memoize": "2.2.7",
|
|
2145
|
-
"@formatjs/intl-localematcher": "0.6.2",
|
|
2146
|
-
"decimal.js": "^10.4.3",
|
|
2147
|
-
"tslib": "^2.8.0"
|
|
2148
|
-
}
|
|
2149
|
-
},
|
|
2150
|
-
"node_modules/@formatjs/fast-memoize": {
|
|
2151
|
-
"version": "2.2.7",
|
|
2152
|
-
"integrity": "sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==",
|
|
2153
|
-
"license": "MIT",
|
|
2154
|
-
"dependencies": {
|
|
2155
|
-
"tslib": "^2.8.0"
|
|
2156
|
-
}
|
|
2157
|
-
},
|
|
2158
|
-
"node_modules/@formatjs/icu-messageformat-parser": {
|
|
2159
|
-
"version": "2.11.4",
|
|
2160
|
-
"integrity": "sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw==",
|
|
2161
|
-
"license": "MIT",
|
|
2162
|
-
"dependencies": {
|
|
2163
|
-
"@formatjs/ecma402-abstract": "2.3.6",
|
|
2164
|
-
"@formatjs/icu-skeleton-parser": "1.8.16",
|
|
2165
|
-
"tslib": "^2.8.0"
|
|
2166
|
-
}
|
|
2167
|
-
},
|
|
2168
|
-
"node_modules/@formatjs/icu-skeleton-parser": {
|
|
2169
|
-
"version": "1.8.16",
|
|
2170
|
-
"integrity": "sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ==",
|
|
2171
|
-
"license": "MIT",
|
|
2172
|
-
"dependencies": {
|
|
2173
|
-
"@formatjs/ecma402-abstract": "2.3.6",
|
|
2174
|
-
"tslib": "^2.8.0"
|
|
2175
|
-
}
|
|
2176
|
-
},
|
|
2177
|
-
"node_modules/@formatjs/intl-localematcher": {
|
|
2178
|
-
"version": "0.6.2",
|
|
2179
|
-
"integrity": "sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==",
|
|
2180
|
-
"license": "MIT",
|
|
2181
|
-
"dependencies": {
|
|
2182
|
-
"tslib": "^2.8.0"
|
|
2183
|
-
}
|
|
2184
|
-
},
|
|
2185
2156
|
"node_modules/@fullcalendar/core": {
|
|
2186
2157
|
"version": "6.1.15",
|
|
2187
2158
|
"integrity": "sha512-BuX7o6ALpLb84cMw1FCB9/cSgF4JbVO894cjJZ6kP74jzbUZNjtwffwRdA+Id8rrLjT30d/7TrkW90k4zbXB5Q==",
|
|
@@ -2243,27 +2214,40 @@
|
|
|
2243
2214
|
}
|
|
2244
2215
|
},
|
|
2245
2216
|
"node_modules/@humanfs/core": {
|
|
2246
|
-
"version": "0.19.
|
|
2247
|
-
"integrity": "sha512-
|
|
2217
|
+
"version": "0.19.2",
|
|
2218
|
+
"integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
|
|
2248
2219
|
"dev": true,
|
|
2249
2220
|
"license": "Apache-2.0",
|
|
2221
|
+
"dependencies": {
|
|
2222
|
+
"@humanfs/types": "^0.15.0"
|
|
2223
|
+
},
|
|
2250
2224
|
"engines": {
|
|
2251
2225
|
"node": ">=18.18.0"
|
|
2252
2226
|
}
|
|
2253
2227
|
},
|
|
2254
2228
|
"node_modules/@humanfs/node": {
|
|
2255
|
-
"version": "0.16.
|
|
2256
|
-
"integrity": "sha512
|
|
2229
|
+
"version": "0.16.8",
|
|
2230
|
+
"integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
|
|
2257
2231
|
"dev": true,
|
|
2258
2232
|
"license": "Apache-2.0",
|
|
2259
2233
|
"dependencies": {
|
|
2260
|
-
"@humanfs/core": "^0.19.
|
|
2234
|
+
"@humanfs/core": "^0.19.2",
|
|
2235
|
+
"@humanfs/types": "^0.15.0",
|
|
2261
2236
|
"@humanwhocodes/retry": "^0.4.0"
|
|
2262
2237
|
},
|
|
2263
2238
|
"engines": {
|
|
2264
2239
|
"node": ">=18.18.0"
|
|
2265
2240
|
}
|
|
2266
2241
|
},
|
|
2242
|
+
"node_modules/@humanfs/types": {
|
|
2243
|
+
"version": "0.15.0",
|
|
2244
|
+
"integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
|
|
2245
|
+
"dev": true,
|
|
2246
|
+
"license": "Apache-2.0",
|
|
2247
|
+
"engines": {
|
|
2248
|
+
"node": ">=18.18.0"
|
|
2249
|
+
}
|
|
2250
|
+
},
|
|
2267
2251
|
"node_modules/@humanwhocodes/module-importer": {
|
|
2268
2252
|
"version": "1.0.1",
|
|
2269
2253
|
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
|
|
@@ -2641,33 +2625,24 @@
|
|
|
2641
2625
|
}
|
|
2642
2626
|
},
|
|
2643
2627
|
"node_modules/@internationalized/date": {
|
|
2644
|
-
"version": "3.
|
|
2645
|
-
"integrity": "sha512-
|
|
2628
|
+
"version": "3.12.1",
|
|
2629
|
+
"integrity": "sha512-6IedsVWXyq4P9Tj+TxuU8WGWM70hYLl12nbYU8jkikVpa6WXapFazPUcHUMDMoWftIDE2ILDkFFte6W2nFCkRQ==",
|
|
2646
2630
|
"license": "Apache-2.0",
|
|
2647
2631
|
"dependencies": {
|
|
2648
2632
|
"@swc/helpers": "^0.5.0"
|
|
2649
2633
|
}
|
|
2650
2634
|
},
|
|
2651
|
-
"node_modules/@internationalized/message": {
|
|
2652
|
-
"version": "3.1.8",
|
|
2653
|
-
"integrity": "sha512-Rwk3j/TlYZhn3HQ6PyXUV0XP9Uv42jqZGNegt0BXlxjE6G3+LwHjbQZAGHhCnCPdaA6Tvd3ma/7QzLlLkJxAWA==",
|
|
2654
|
-
"license": "Apache-2.0",
|
|
2655
|
-
"dependencies": {
|
|
2656
|
-
"@swc/helpers": "^0.5.0",
|
|
2657
|
-
"intl-messageformat": "^10.1.0"
|
|
2658
|
-
}
|
|
2659
|
-
},
|
|
2660
2635
|
"node_modules/@internationalized/number": {
|
|
2661
|
-
"version": "3.6.
|
|
2662
|
-
"integrity": "sha512-
|
|
2636
|
+
"version": "3.6.6",
|
|
2637
|
+
"integrity": "sha512-iFgmQaXHE0vytNfpLZWOC2mEJCBRzcUxt53Xf/yCXG93lRvqas237i3r7X4RKMwO3txiyZD4mQjKAByFv6UGSQ==",
|
|
2663
2638
|
"license": "Apache-2.0",
|
|
2664
2639
|
"dependencies": {
|
|
2665
2640
|
"@swc/helpers": "^0.5.0"
|
|
2666
2641
|
}
|
|
2667
2642
|
},
|
|
2668
2643
|
"node_modules/@internationalized/string": {
|
|
2669
|
-
"version": "3.2.
|
|
2670
|
-
"integrity": "sha512-
|
|
2644
|
+
"version": "3.2.8",
|
|
2645
|
+
"integrity": "sha512-NdbMQUSfXLYIQol5VyMtinm9pZDciiMfN7RtmSuSB78io1hqwJ0naYfxyW6vgxWBkzWymQa/3uLDlbfmshtCaA==",
|
|
2671
2646
|
"license": "Apache-2.0",
|
|
2672
2647
|
"dependencies": {
|
|
2673
2648
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2918,13 +2893,13 @@
|
|
|
2918
2893
|
}
|
|
2919
2894
|
},
|
|
2920
2895
|
"node_modules/@mui/private-theming": {
|
|
2921
|
-
"version": "7.3.
|
|
2922
|
-
"integrity": "sha512-
|
|
2896
|
+
"version": "7.3.11",
|
|
2897
|
+
"integrity": "sha512-9B+YKms0fRHbNrqp9tOT/DNbNnU5gyvJ1o3qAGXfq8GmZcbJnE3At9x07Zr/o0pkhzg4aDdwXVqe4+AcgtOCPA==",
|
|
2923
2898
|
"license": "MIT",
|
|
2924
2899
|
"peer": true,
|
|
2925
2900
|
"dependencies": {
|
|
2926
|
-
"@babel/runtime": "^7.28.
|
|
2927
|
-
"@mui/utils": "^7.3.
|
|
2901
|
+
"@babel/runtime": "^7.28.6",
|
|
2902
|
+
"@mui/utils": "^7.3.11",
|
|
2928
2903
|
"prop-types": "^15.8.1"
|
|
2929
2904
|
},
|
|
2930
2905
|
"engines": {
|
|
@@ -2945,13 +2920,13 @@
|
|
|
2945
2920
|
}
|
|
2946
2921
|
},
|
|
2947
2922
|
"node_modules/@mui/private-theming/node_modules/@mui/utils": {
|
|
2948
|
-
"version": "7.3.
|
|
2949
|
-
"integrity": "sha512
|
|
2923
|
+
"version": "7.3.11",
|
|
2924
|
+
"integrity": "sha512-XTjGnifwteg71/ij+0e7Y7d+hwyntMYP5wPoA/g2drdGH+Flkvjwy0OfrVpKBbaOvofq4zU/LIyUZyKgmWu18g==",
|
|
2950
2925
|
"license": "MIT",
|
|
2951
2926
|
"peer": true,
|
|
2952
2927
|
"dependencies": {
|
|
2953
|
-
"@babel/runtime": "^7.28.
|
|
2954
|
-
"@mui/types": "^7.4.
|
|
2928
|
+
"@babel/runtime": "^7.28.6",
|
|
2929
|
+
"@mui/types": "^7.4.12",
|
|
2955
2930
|
"@types/prop-types": "^15.7.15",
|
|
2956
2931
|
"clsx": "^2.1.1",
|
|
2957
2932
|
"prop-types": "^15.8.1",
|
|
@@ -2975,12 +2950,12 @@
|
|
|
2975
2950
|
}
|
|
2976
2951
|
},
|
|
2977
2952
|
"node_modules/@mui/styled-engine": {
|
|
2978
|
-
"version": "7.3.
|
|
2979
|
-
"integrity": "sha512-
|
|
2953
|
+
"version": "7.3.10",
|
|
2954
|
+
"integrity": "sha512-WxE9SiF8xskAQqGjsp0poXCkCqsoXFEsSr0HBXfApmGHR+DBnXRp+z46Vsltg4gpPM4Z96DeAQRpeAOnhNg7Ng==",
|
|
2980
2955
|
"license": "MIT",
|
|
2981
2956
|
"peer": true,
|
|
2982
2957
|
"dependencies": {
|
|
2983
|
-
"@babel/runtime": "^7.28.
|
|
2958
|
+
"@babel/runtime": "^7.28.6",
|
|
2984
2959
|
"@emotion/cache": "^11.14.0",
|
|
2985
2960
|
"@emotion/serialize": "^1.3.3",
|
|
2986
2961
|
"@emotion/sheet": "^1.4.0",
|
|
@@ -3009,16 +2984,16 @@
|
|
|
3009
2984
|
}
|
|
3010
2985
|
},
|
|
3011
2986
|
"node_modules/@mui/system": {
|
|
3012
|
-
"version": "7.3.
|
|
3013
|
-
"integrity": "sha512-
|
|
2987
|
+
"version": "7.3.11",
|
|
2988
|
+
"integrity": "sha512-7izwGWdNawAKpBKcRlx7f2gFnAAjmASBWvMcyX4YYEeLOFsbfGRbUYGInvnAcUeql3rPxI7F9Ft4oY2OLRz44g==",
|
|
3014
2989
|
"license": "MIT",
|
|
3015
2990
|
"peer": true,
|
|
3016
2991
|
"dependencies": {
|
|
3017
|
-
"@babel/runtime": "^7.28.
|
|
3018
|
-
"@mui/private-theming": "^7.3.
|
|
3019
|
-
"@mui/styled-engine": "^7.3.
|
|
3020
|
-
"@mui/types": "^7.4.
|
|
3021
|
-
"@mui/utils": "^7.3.
|
|
2992
|
+
"@babel/runtime": "^7.28.6",
|
|
2993
|
+
"@mui/private-theming": "^7.3.11",
|
|
2994
|
+
"@mui/styled-engine": "^7.3.10",
|
|
2995
|
+
"@mui/types": "^7.4.12",
|
|
2996
|
+
"@mui/utils": "^7.3.11",
|
|
3022
2997
|
"clsx": "^2.1.1",
|
|
3023
2998
|
"csstype": "^3.2.3",
|
|
3024
2999
|
"prop-types": "^15.8.1"
|
|
@@ -3049,13 +3024,13 @@
|
|
|
3049
3024
|
}
|
|
3050
3025
|
},
|
|
3051
3026
|
"node_modules/@mui/system/node_modules/@mui/utils": {
|
|
3052
|
-
"version": "7.3.
|
|
3053
|
-
"integrity": "sha512
|
|
3027
|
+
"version": "7.3.11",
|
|
3028
|
+
"integrity": "sha512-XTjGnifwteg71/ij+0e7Y7d+hwyntMYP5wPoA/g2drdGH+Flkvjwy0OfrVpKBbaOvofq4zU/LIyUZyKgmWu18g==",
|
|
3054
3029
|
"license": "MIT",
|
|
3055
3030
|
"peer": true,
|
|
3056
3031
|
"dependencies": {
|
|
3057
|
-
"@babel/runtime": "^7.28.
|
|
3058
|
-
"@mui/types": "^7.4.
|
|
3032
|
+
"@babel/runtime": "^7.28.6",
|
|
3033
|
+
"@mui/types": "^7.4.12",
|
|
3059
3034
|
"@types/prop-types": "^15.7.15",
|
|
3060
3035
|
"clsx": "^2.1.1",
|
|
3061
3036
|
"prop-types": "^15.8.1",
|
|
@@ -3079,11 +3054,11 @@
|
|
|
3079
3054
|
}
|
|
3080
3055
|
},
|
|
3081
3056
|
"node_modules/@mui/types": {
|
|
3082
|
-
"version": "7.4.
|
|
3083
|
-
"integrity": "sha512-
|
|
3057
|
+
"version": "7.4.12",
|
|
3058
|
+
"integrity": "sha512-iKNAF2u9PzSIj40CjvKJWxFXJo122jXVdrmdh0hMYd+FR+NuJMkr/L88XwWLCRiJ5P1j+uyac25+Kp6YC4hu6w==",
|
|
3084
3059
|
"license": "MIT",
|
|
3085
3060
|
"dependencies": {
|
|
3086
|
-
"@babel/runtime": "^7.28.
|
|
3061
|
+
"@babel/runtime": "^7.28.6"
|
|
3087
3062
|
},
|
|
3088
3063
|
"peerDependencies": {
|
|
3089
3064
|
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
@@ -3137,8 +3112,8 @@
|
|
|
3137
3112
|
}
|
|
3138
3113
|
},
|
|
3139
3114
|
"node_modules/@mui/x-date-pickers": {
|
|
3140
|
-
"version": "8.
|
|
3141
|
-
"integrity": "sha512-
|
|
3115
|
+
"version": "8.28.7",
|
|
3116
|
+
"integrity": "sha512-mstYYaC3sBaWbpvfbzxWO9E+s/Hkx7JeVJOa5HdwtnORvxnFOPW0Wf/Wf6oBou4k4jargfNXbg2vkQT0tXRm7A==",
|
|
3142
3117
|
"license": "MIT",
|
|
3143
3118
|
"dependencies": {
|
|
3144
3119
|
"@babel/runtime": "^7.28.4",
|
|
@@ -3202,12 +3177,12 @@
|
|
|
3202
3177
|
}
|
|
3203
3178
|
},
|
|
3204
3179
|
"node_modules/@mui/x-date-pickers/node_modules/@mui/utils": {
|
|
3205
|
-
"version": "7.3.
|
|
3206
|
-
"integrity": "sha512
|
|
3180
|
+
"version": "7.3.11",
|
|
3181
|
+
"integrity": "sha512-XTjGnifwteg71/ij+0e7Y7d+hwyntMYP5wPoA/g2drdGH+Flkvjwy0OfrVpKBbaOvofq4zU/LIyUZyKgmWu18g==",
|
|
3207
3182
|
"license": "MIT",
|
|
3208
3183
|
"dependencies": {
|
|
3209
|
-
"@babel/runtime": "^7.28.
|
|
3210
|
-
"@mui/types": "^7.4.
|
|
3184
|
+
"@babel/runtime": "^7.28.6",
|
|
3185
|
+
"@mui/types": "^7.4.12",
|
|
3211
3186
|
"@types/prop-types": "^15.7.15",
|
|
3212
3187
|
"clsx": "^2.1.1",
|
|
3213
3188
|
"prop-types": "^15.8.1",
|
|
@@ -3252,12 +3227,12 @@
|
|
|
3252
3227
|
}
|
|
3253
3228
|
},
|
|
3254
3229
|
"node_modules/@mui/x-internals/node_modules/@mui/utils": {
|
|
3255
|
-
"version": "7.3.
|
|
3256
|
-
"integrity": "sha512
|
|
3230
|
+
"version": "7.3.11",
|
|
3231
|
+
"integrity": "sha512-XTjGnifwteg71/ij+0e7Y7d+hwyntMYP5wPoA/g2drdGH+Flkvjwy0OfrVpKBbaOvofq4zU/LIyUZyKgmWu18g==",
|
|
3257
3232
|
"license": "MIT",
|
|
3258
3233
|
"dependencies": {
|
|
3259
|
-
"@babel/runtime": "^7.28.
|
|
3260
|
-
"@mui/types": "^7.4.
|
|
3234
|
+
"@babel/runtime": "^7.28.6",
|
|
3235
|
+
"@mui/types": "^7.4.12",
|
|
3261
3236
|
"@types/prop-types": "^15.7.15",
|
|
3262
3237
|
"clsx": "^2.1.1",
|
|
3263
3238
|
"prop-types": "^15.8.1",
|
|
@@ -3281,15 +3256,21 @@
|
|
|
3281
3256
|
}
|
|
3282
3257
|
},
|
|
3283
3258
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
3284
|
-
"version": "
|
|
3285
|
-
"integrity": "sha512-
|
|
3259
|
+
"version": "1.1.4",
|
|
3260
|
+
"integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
|
|
3286
3261
|
"dev": true,
|
|
3287
3262
|
"license": "MIT",
|
|
3288
3263
|
"optional": true,
|
|
3289
3264
|
"dependencies": {
|
|
3290
|
-
"@
|
|
3291
|
-
|
|
3292
|
-
|
|
3265
|
+
"@tybys/wasm-util": "^0.10.1"
|
|
3266
|
+
},
|
|
3267
|
+
"funding": {
|
|
3268
|
+
"type": "github",
|
|
3269
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
3270
|
+
},
|
|
3271
|
+
"peerDependencies": {
|
|
3272
|
+
"@emnapi/core": "^1.7.1",
|
|
3273
|
+
"@emnapi/runtime": "^1.7.1"
|
|
3293
3274
|
}
|
|
3294
3275
|
},
|
|
3295
3276
|
"node_modules/@next/env": {
|
|
@@ -3486,195 +3467,35 @@
|
|
|
3486
3467
|
"url": "https://opencollective.com/popperjs"
|
|
3487
3468
|
}
|
|
3488
3469
|
},
|
|
3489
|
-
"node_modules/@react-aria/focus": {
|
|
3490
|
-
"version": "3.21.4",
|
|
3491
|
-
"integrity": "sha512-6gz+j9ip0/vFRTKJMl3R30MHopn4i19HqqLfSQfElxJD+r9hBnYG1Q6Wd/kl/WRR1+CALn2F+rn06jUnf5sT8Q==",
|
|
3492
|
-
"license": "Apache-2.0",
|
|
3493
|
-
"dependencies": {
|
|
3494
|
-
"@react-aria/interactions": "^3.27.0",
|
|
3495
|
-
"@react-aria/utils": "^3.33.0",
|
|
3496
|
-
"@react-types/shared": "^3.33.0",
|
|
3497
|
-
"@swc/helpers": "^0.5.0",
|
|
3498
|
-
"clsx": "^2.0.0"
|
|
3499
|
-
},
|
|
3500
|
-
"peerDependencies": {
|
|
3501
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
3502
|
-
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3503
|
-
}
|
|
3504
|
-
},
|
|
3505
|
-
"node_modules/@react-aria/i18n": {
|
|
3506
|
-
"version": "3.12.15",
|
|
3507
|
-
"integrity": "sha512-3CrAN7ORVHrckvTmbPq76jFZabqq+rScosGT5+ElircJ5rF5+JcdT99Hp5Xg6R10jk74e8G3xiqdYsUd+7iJMA==",
|
|
3508
|
-
"license": "Apache-2.0",
|
|
3509
|
-
"dependencies": {
|
|
3510
|
-
"@internationalized/date": "^3.11.0",
|
|
3511
|
-
"@internationalized/message": "^3.1.8",
|
|
3512
|
-
"@internationalized/number": "^3.6.5",
|
|
3513
|
-
"@internationalized/string": "^3.2.7",
|
|
3514
|
-
"@react-aria/ssr": "^3.9.10",
|
|
3515
|
-
"@react-aria/utils": "^3.33.0",
|
|
3516
|
-
"@react-types/shared": "^3.33.0",
|
|
3517
|
-
"@swc/helpers": "^0.5.0"
|
|
3518
|
-
},
|
|
3519
|
-
"peerDependencies": {
|
|
3520
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
3521
|
-
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3522
|
-
}
|
|
3523
|
-
},
|
|
3524
|
-
"node_modules/@react-aria/interactions": {
|
|
3525
|
-
"version": "3.27.0",
|
|
3526
|
-
"integrity": "sha512-D27pOy+0jIfHK60BB26AgqjjRFOYdvVSkwC31b2LicIzRCSPOSP06V4gMHuGmkhNTF4+YWDi1HHYjxIvMeiSlA==",
|
|
3527
|
-
"license": "Apache-2.0",
|
|
3528
|
-
"dependencies": {
|
|
3529
|
-
"@react-aria/ssr": "^3.9.10",
|
|
3530
|
-
"@react-aria/utils": "^3.33.0",
|
|
3531
|
-
"@react-stately/flags": "^3.1.2",
|
|
3532
|
-
"@react-types/shared": "^3.33.0",
|
|
3533
|
-
"@swc/helpers": "^0.5.0"
|
|
3534
|
-
},
|
|
3535
|
-
"peerDependencies": {
|
|
3536
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
3537
|
-
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3538
|
-
}
|
|
3539
|
-
},
|
|
3540
3470
|
"node_modules/@react-aria/overlays": {
|
|
3541
|
-
"version": "3.
|
|
3542
|
-
"integrity": "sha512-
|
|
3543
|
-
"license": "Apache-2.0",
|
|
3544
|
-
"dependencies": {
|
|
3545
|
-
"@react-aria/focus": "^3.21.4",
|
|
3546
|
-
"@react-aria/i18n": "^3.12.15",
|
|
3547
|
-
"@react-aria/interactions": "^3.27.0",
|
|
3548
|
-
"@react-aria/ssr": "^3.9.10",
|
|
3549
|
-
"@react-aria/utils": "^3.33.0",
|
|
3550
|
-
"@react-aria/visually-hidden": "^3.8.30",
|
|
3551
|
-
"@react-stately/overlays": "^3.6.22",
|
|
3552
|
-
"@react-types/button": "^3.15.0",
|
|
3553
|
-
"@react-types/overlays": "^3.9.3",
|
|
3554
|
-
"@react-types/shared": "^3.33.0",
|
|
3555
|
-
"@swc/helpers": "^0.5.0"
|
|
3556
|
-
},
|
|
3557
|
-
"peerDependencies": {
|
|
3558
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
3559
|
-
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3560
|
-
}
|
|
3561
|
-
},
|
|
3562
|
-
"node_modules/@react-aria/ssr": {
|
|
3563
|
-
"version": "3.9.10",
|
|
3564
|
-
"integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
|
|
3565
|
-
"license": "Apache-2.0",
|
|
3566
|
-
"dependencies": {
|
|
3567
|
-
"@swc/helpers": "^0.5.0"
|
|
3568
|
-
},
|
|
3569
|
-
"engines": {
|
|
3570
|
-
"node": ">= 12"
|
|
3571
|
-
},
|
|
3572
|
-
"peerDependencies": {
|
|
3573
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3574
|
-
}
|
|
3575
|
-
},
|
|
3576
|
-
"node_modules/@react-aria/utils": {
|
|
3577
|
-
"version": "3.33.0",
|
|
3578
|
-
"integrity": "sha512-yvz7CMH8d2VjwbSa5nGXqjU031tYhD8ddax95VzJsHSPyqHDEGfxul8RkhGV6oO7bVqZxVs6xY66NIgae+FHjw==",
|
|
3471
|
+
"version": "3.32.0",
|
|
3472
|
+
"integrity": "sha512-H9meBB14/M0bDwk8gZl8Fu8bwZN2El9LDlk5cNkgAozbEiRuQvTFOeE3RoP6XI6bwEnSBvb0ovPmx3/kNyOehQ==",
|
|
3579
3473
|
"license": "Apache-2.0",
|
|
3580
3474
|
"dependencies": {
|
|
3581
|
-
"@react-aria/ssr": "^3.9.10",
|
|
3582
|
-
"@react-stately/flags": "^3.1.2",
|
|
3583
|
-
"@react-stately/utils": "^3.11.0",
|
|
3584
|
-
"@react-types/shared": "^3.33.0",
|
|
3585
3475
|
"@swc/helpers": "^0.5.0",
|
|
3586
|
-
"
|
|
3476
|
+
"react-aria": "3.48.0"
|
|
3587
3477
|
},
|
|
3588
3478
|
"peerDependencies": {
|
|
3589
3479
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
3590
3480
|
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3591
3481
|
}
|
|
3592
3482
|
},
|
|
3593
|
-
"node_modules/@react-aria/visually-hidden": {
|
|
3594
|
-
"version": "3.8.30",
|
|
3595
|
-
"integrity": "sha512-iY44USEU8sJy0NOJ/sTDn3YlspbhHuVG3nx2YYrzfmxbS3i+lNwkCfG8kJ77dtmbuDLIdBGKENjGkbcwz3kiJg==",
|
|
3596
|
-
"license": "Apache-2.0",
|
|
3597
|
-
"dependencies": {
|
|
3598
|
-
"@react-aria/interactions": "^3.27.0",
|
|
3599
|
-
"@react-aria/utils": "^3.33.0",
|
|
3600
|
-
"@react-types/shared": "^3.33.0",
|
|
3601
|
-
"@swc/helpers": "^0.5.0"
|
|
3602
|
-
},
|
|
3603
|
-
"peerDependencies": {
|
|
3604
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
3605
|
-
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3606
|
-
}
|
|
3607
|
-
},
|
|
3608
|
-
"node_modules/@react-stately/flags": {
|
|
3609
|
-
"version": "3.1.2",
|
|
3610
|
-
"integrity": "sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==",
|
|
3611
|
-
"license": "Apache-2.0",
|
|
3612
|
-
"dependencies": {
|
|
3613
|
-
"@swc/helpers": "^0.5.0"
|
|
3614
|
-
}
|
|
3615
|
-
},
|
|
3616
|
-
"node_modules/@react-stately/overlays": {
|
|
3617
|
-
"version": "3.6.22",
|
|
3618
|
-
"integrity": "sha512-sWBnuy5dqVp8d+1e+ABTRVB3YBcOW86/90pF5PWY44au3bUFXVSUBO2QMdR/6JtojDoPRmrjufonI19/Zs/20w==",
|
|
3619
|
-
"license": "Apache-2.0",
|
|
3620
|
-
"dependencies": {
|
|
3621
|
-
"@react-stately/utils": "^3.11.0",
|
|
3622
|
-
"@react-types/overlays": "^3.9.3",
|
|
3623
|
-
"@swc/helpers": "^0.5.0"
|
|
3624
|
-
},
|
|
3625
|
-
"peerDependencies": {
|
|
3626
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3627
|
-
}
|
|
3628
|
-
},
|
|
3629
|
-
"node_modules/@react-stately/utils": {
|
|
3630
|
-
"version": "3.11.0",
|
|
3631
|
-
"integrity": "sha512-8LZpYowJ9eZmmYLpudbo/eclIRnbhWIJZ994ncmlKlouNzKohtM8qTC6B1w1pwUbiwGdUoyzLuQbeaIor5Dvcw==",
|
|
3632
|
-
"license": "Apache-2.0",
|
|
3633
|
-
"dependencies": {
|
|
3634
|
-
"@swc/helpers": "^0.5.0"
|
|
3635
|
-
},
|
|
3636
|
-
"peerDependencies": {
|
|
3637
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3638
|
-
}
|
|
3639
|
-
},
|
|
3640
|
-
"node_modules/@react-types/button": {
|
|
3641
|
-
"version": "3.15.0",
|
|
3642
|
-
"integrity": "sha512-X/K2/Oeuq7Hi8nMIzx4/YlZuvWFiSOHZt27p4HmThCnNO/9IDFPmvPrpkYjWN5eN9Nuk+P5vZUb4A7QJgYpvGA==",
|
|
3643
|
-
"license": "Apache-2.0",
|
|
3644
|
-
"dependencies": {
|
|
3645
|
-
"@react-types/shared": "^3.33.0"
|
|
3646
|
-
},
|
|
3647
|
-
"peerDependencies": {
|
|
3648
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3649
|
-
}
|
|
3650
|
-
},
|
|
3651
|
-
"node_modules/@react-types/overlays": {
|
|
3652
|
-
"version": "3.9.3",
|
|
3653
|
-
"integrity": "sha512-LzetThNNk8T26pQRbs1I7+isuFhdFYREy7wJCsZmbB0FnZgCukGTfOtThZWv+ry11veyVJiX68jfl4SV6ACTWA==",
|
|
3654
|
-
"license": "Apache-2.0",
|
|
3655
|
-
"dependencies": {
|
|
3656
|
-
"@react-types/shared": "^3.33.0"
|
|
3657
|
-
},
|
|
3658
|
-
"peerDependencies": {
|
|
3659
|
-
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3660
|
-
}
|
|
3661
|
-
},
|
|
3662
3483
|
"node_modules/@react-types/shared": {
|
|
3663
|
-
"version": "3.
|
|
3664
|
-
"integrity": "sha512-
|
|
3484
|
+
"version": "3.34.0",
|
|
3485
|
+
"integrity": "sha512-gp6xo/s2lX54AlTjOiqwDnxA7UW79BNvI9dB9pr3LZTzRKCd1ZA+ZbgKw/ReIiWuvvVw/8QFJpnqeeFyLocMcQ==",
|
|
3665
3486
|
"license": "Apache-2.0",
|
|
3666
3487
|
"peerDependencies": {
|
|
3667
3488
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
3668
3489
|
}
|
|
3669
3490
|
},
|
|
3670
3491
|
"node_modules/@reduxjs/toolkit": {
|
|
3671
|
-
"version": "2.
|
|
3672
|
-
"integrity": "sha512-
|
|
3492
|
+
"version": "2.12.0",
|
|
3493
|
+
"integrity": "sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==",
|
|
3673
3494
|
"license": "MIT",
|
|
3674
3495
|
"dependencies": {
|
|
3675
3496
|
"@standard-schema/spec": "^1.0.0",
|
|
3676
3497
|
"@standard-schema/utils": "^0.3.0",
|
|
3677
|
-
"immer": "^
|
|
3498
|
+
"immer": "^11.0.0",
|
|
3678
3499
|
"redux": "^5.0.1",
|
|
3679
3500
|
"redux-thunk": "^3.1.0",
|
|
3680
3501
|
"reselect": "^5.1.0"
|
|
@@ -3699,8 +3520,8 @@
|
|
|
3699
3520
|
"license": "MIT"
|
|
3700
3521
|
},
|
|
3701
3522
|
"node_modules/@rushstack/eslint-patch": {
|
|
3702
|
-
"version": "1.
|
|
3703
|
-
"integrity": "sha512-
|
|
3523
|
+
"version": "1.16.1",
|
|
3524
|
+
"integrity": "sha512-TvZbIpeKqGQQ7X0zSCvPH9riMSFQFSggnfBjFZ1mEoILW+UuXCKwOoPcgjMwiUtRqFZ8jWhPJc4um14vC6I4ag==",
|
|
3704
3525
|
"dev": true,
|
|
3705
3526
|
"license": "MIT"
|
|
3706
3527
|
},
|
|
@@ -3736,8 +3557,8 @@
|
|
|
3736
3557
|
"license": "Apache-2.0"
|
|
3737
3558
|
},
|
|
3738
3559
|
"node_modules/@swc/helpers": {
|
|
3739
|
-
"version": "0.5.
|
|
3740
|
-
"integrity": "sha512-
|
|
3560
|
+
"version": "0.5.21",
|
|
3561
|
+
"integrity": "sha512-jI/VAmtdjB/RnI8GTnokyX7Ug8c+g+ffD6QRLa6XQewtnGyukKkKSk3wLTM3b5cjt1jNh9x0jfVlagdN2gDKQg==",
|
|
3741
3562
|
"license": "Apache-2.0",
|
|
3742
3563
|
"dependencies": {
|
|
3743
3564
|
"tslib": "^2.8.0"
|
|
@@ -3775,8 +3596,8 @@
|
|
|
3775
3596
|
}
|
|
3776
3597
|
},
|
|
3777
3598
|
"node_modules/@tybys/wasm-util": {
|
|
3778
|
-
"version": "0.10.
|
|
3779
|
-
"integrity": "sha512-
|
|
3599
|
+
"version": "0.10.2",
|
|
3600
|
+
"integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
|
|
3780
3601
|
"dev": true,
|
|
3781
3602
|
"license": "MIT",
|
|
3782
3603
|
"optional": true,
|
|
@@ -3839,8 +3660,8 @@
|
|
|
3839
3660
|
"license": "MIT"
|
|
3840
3661
|
},
|
|
3841
3662
|
"node_modules/@types/estree": {
|
|
3842
|
-
"version": "1.0.
|
|
3843
|
-
"integrity": "sha512-
|
|
3663
|
+
"version": "1.0.9",
|
|
3664
|
+
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
3844
3665
|
"dev": true,
|
|
3845
3666
|
"license": "MIT"
|
|
3846
3667
|
},
|
|
@@ -3863,8 +3684,8 @@
|
|
|
3863
3684
|
"license": "MIT"
|
|
3864
3685
|
},
|
|
3865
3686
|
"node_modules/@types/lodash": {
|
|
3866
|
-
"version": "4.17.
|
|
3867
|
-
"integrity": "sha512-
|
|
3687
|
+
"version": "4.17.24",
|
|
3688
|
+
"integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
|
|
3868
3689
|
"dev": true,
|
|
3869
3690
|
"license": "MIT"
|
|
3870
3691
|
},
|
|
@@ -3878,8 +3699,8 @@
|
|
|
3878
3699
|
}
|
|
3879
3700
|
},
|
|
3880
3701
|
"node_modules/@types/node": {
|
|
3881
|
-
"version": "20.19.
|
|
3882
|
-
"integrity": "sha512-
|
|
3702
|
+
"version": "20.19.41",
|
|
3703
|
+
"integrity": "sha512-ECymXOukMnOoVkC2bb1Vc/w/836DXncOg5m8Xj1RH7xSHZJWNYY6Zh7EH477vcnD5egKNNfy2RpNOmuChhFPgQ==",
|
|
3883
3704
|
"dev": true,
|
|
3884
3705
|
"license": "MIT",
|
|
3885
3706
|
"dependencies": {
|
|
@@ -3897,8 +3718,8 @@
|
|
|
3897
3718
|
"license": "MIT"
|
|
3898
3719
|
},
|
|
3899
3720
|
"node_modules/@types/react": {
|
|
3900
|
-
"version": "19.2.
|
|
3901
|
-
"integrity": "sha512-
|
|
3721
|
+
"version": "19.2.15",
|
|
3722
|
+
"integrity": "sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==",
|
|
3902
3723
|
"license": "MIT",
|
|
3903
3724
|
"dependencies": {
|
|
3904
3725
|
"csstype": "^3.2.2"
|
|
@@ -3954,19 +3775,19 @@
|
|
|
3954
3775
|
"license": "MIT"
|
|
3955
3776
|
},
|
|
3956
3777
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
3957
|
-
"version": "8.
|
|
3958
|
-
"integrity": "sha512-
|
|
3778
|
+
"version": "8.59.4",
|
|
3779
|
+
"integrity": "sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A==",
|
|
3959
3780
|
"dev": true,
|
|
3960
3781
|
"license": "MIT",
|
|
3961
3782
|
"dependencies": {
|
|
3962
3783
|
"@eslint-community/regexpp": "^4.12.2",
|
|
3963
|
-
"@typescript-eslint/scope-manager": "8.
|
|
3964
|
-
"@typescript-eslint/type-utils": "8.
|
|
3965
|
-
"@typescript-eslint/utils": "8.
|
|
3966
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3784
|
+
"@typescript-eslint/scope-manager": "8.59.4",
|
|
3785
|
+
"@typescript-eslint/type-utils": "8.59.4",
|
|
3786
|
+
"@typescript-eslint/utils": "8.59.4",
|
|
3787
|
+
"@typescript-eslint/visitor-keys": "8.59.4",
|
|
3967
3788
|
"ignore": "^7.0.5",
|
|
3968
3789
|
"natural-compare": "^1.4.0",
|
|
3969
|
-
"ts-api-utils": "^2.
|
|
3790
|
+
"ts-api-utils": "^2.5.0"
|
|
3970
3791
|
},
|
|
3971
3792
|
"engines": {
|
|
3972
3793
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -3976,9 +3797,9 @@
|
|
|
3976
3797
|
"url": "https://opencollective.com/typescript-eslint"
|
|
3977
3798
|
},
|
|
3978
3799
|
"peerDependencies": {
|
|
3979
|
-
"@typescript-eslint/parser": "^8.
|
|
3980
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
3981
|
-
"typescript": ">=4.8.4 <6.
|
|
3800
|
+
"@typescript-eslint/parser": "^8.59.4",
|
|
3801
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
3802
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
3982
3803
|
}
|
|
3983
3804
|
},
|
|
3984
3805
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
@@ -3991,15 +3812,15 @@
|
|
|
3991
3812
|
}
|
|
3992
3813
|
},
|
|
3993
3814
|
"node_modules/@typescript-eslint/parser": {
|
|
3994
|
-
"version": "8.
|
|
3995
|
-
"integrity": "sha512-
|
|
3815
|
+
"version": "8.59.4",
|
|
3816
|
+
"integrity": "sha512-zORHqO/tuhxY1zWuTvMUqddRxpiFJ72xVfcNoWpqdLjs6lfPbuQBJuW4pk+49/uBMy7Ssr4bzgjiKmmDB1UbZQ==",
|
|
3996
3817
|
"dev": true,
|
|
3997
3818
|
"license": "MIT",
|
|
3998
3819
|
"dependencies": {
|
|
3999
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4000
|
-
"@typescript-eslint/types": "8.
|
|
4001
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4002
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3820
|
+
"@typescript-eslint/scope-manager": "8.59.4",
|
|
3821
|
+
"@typescript-eslint/types": "8.59.4",
|
|
3822
|
+
"@typescript-eslint/typescript-estree": "8.59.4",
|
|
3823
|
+
"@typescript-eslint/visitor-keys": "8.59.4",
|
|
4003
3824
|
"debug": "^4.4.3"
|
|
4004
3825
|
},
|
|
4005
3826
|
"engines": {
|
|
@@ -4010,18 +3831,18 @@
|
|
|
4010
3831
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4011
3832
|
},
|
|
4012
3833
|
"peerDependencies": {
|
|
4013
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4014
|
-
"typescript": ">=4.8.4 <6.
|
|
3834
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
3835
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
4015
3836
|
}
|
|
4016
3837
|
},
|
|
4017
3838
|
"node_modules/@typescript-eslint/project-service": {
|
|
4018
|
-
"version": "8.
|
|
4019
|
-
"integrity": "sha512-
|
|
3839
|
+
"version": "8.59.4",
|
|
3840
|
+
"integrity": "sha512-Ly00Vu4oAacfDeHp2Zg85ioNG6l8HG+tN1D7J+xTHSxu9y0awYKJ2zH1rFBn8ZSfuGK+7FxK3Cgl3uAz0aZZLg==",
|
|
4020
3841
|
"dev": true,
|
|
4021
3842
|
"license": "MIT",
|
|
4022
3843
|
"dependencies": {
|
|
4023
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4024
|
-
"@typescript-eslint/types": "^8.
|
|
3844
|
+
"@typescript-eslint/tsconfig-utils": "^8.59.4",
|
|
3845
|
+
"@typescript-eslint/types": "^8.59.4",
|
|
4025
3846
|
"debug": "^4.4.3"
|
|
4026
3847
|
},
|
|
4027
3848
|
"engines": {
|
|
@@ -4032,17 +3853,17 @@
|
|
|
4032
3853
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4033
3854
|
},
|
|
4034
3855
|
"peerDependencies": {
|
|
4035
|
-
"typescript": ">=4.8.4 <6.
|
|
3856
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
4036
3857
|
}
|
|
4037
3858
|
},
|
|
4038
3859
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4039
|
-
"version": "8.
|
|
4040
|
-
"integrity": "sha512-
|
|
3860
|
+
"version": "8.59.4",
|
|
3861
|
+
"integrity": "sha512-mUeR/3H1WrTAddJrwut8OoPjfauaztMQmRwV5fQTUyNVJCLiUXXe4lGEyYIL2oFDpP7UtgbGJXCt72wT0z2S3Q==",
|
|
4041
3862
|
"dev": true,
|
|
4042
3863
|
"license": "MIT",
|
|
4043
3864
|
"dependencies": {
|
|
4044
|
-
"@typescript-eslint/types": "8.
|
|
4045
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3865
|
+
"@typescript-eslint/types": "8.59.4",
|
|
3866
|
+
"@typescript-eslint/visitor-keys": "8.59.4"
|
|
4046
3867
|
},
|
|
4047
3868
|
"engines": {
|
|
4048
3869
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4053,8 +3874,8 @@
|
|
|
4053
3874
|
}
|
|
4054
3875
|
},
|
|
4055
3876
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4056
|
-
"version": "8.
|
|
4057
|
-
"integrity": "sha512-
|
|
3877
|
+
"version": "8.59.4",
|
|
3878
|
+
"integrity": "sha512-DLCpnKgD4alVxTBSKulK+gU1KCqOgUXfDRDXh2mZgzokQKa/70ax93I2uVO3m/LLvIAtWZIFoiifudmIqAxpMA==",
|
|
4058
3879
|
"dev": true,
|
|
4059
3880
|
"license": "MIT",
|
|
4060
3881
|
"engines": {
|
|
@@ -4065,20 +3886,20 @@
|
|
|
4065
3886
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4066
3887
|
},
|
|
4067
3888
|
"peerDependencies": {
|
|
4068
|
-
"typescript": ">=4.8.4 <6.
|
|
3889
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
4069
3890
|
}
|
|
4070
3891
|
},
|
|
4071
3892
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4072
|
-
"version": "8.
|
|
4073
|
-
"integrity": "sha512-
|
|
3893
|
+
"version": "8.59.4",
|
|
3894
|
+
"integrity": "sha512-uonTuPAAKr9XaBGqJ3LjYTh72zy5DyGesljO9gtmk/eFW0W1fRHjnwVYKB35Lm8d5Q5CluEW3gPHjTvZTmgrfA==",
|
|
4074
3895
|
"dev": true,
|
|
4075
3896
|
"license": "MIT",
|
|
4076
3897
|
"dependencies": {
|
|
4077
|
-
"@typescript-eslint/types": "8.
|
|
4078
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4079
|
-
"@typescript-eslint/utils": "8.
|
|
3898
|
+
"@typescript-eslint/types": "8.59.4",
|
|
3899
|
+
"@typescript-eslint/typescript-estree": "8.59.4",
|
|
3900
|
+
"@typescript-eslint/utils": "8.59.4",
|
|
4080
3901
|
"debug": "^4.4.3",
|
|
4081
|
-
"ts-api-utils": "^2.
|
|
3902
|
+
"ts-api-utils": "^2.5.0"
|
|
4082
3903
|
},
|
|
4083
3904
|
"engines": {
|
|
4084
3905
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4088,13 +3909,13 @@
|
|
|
4088
3909
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4089
3910
|
},
|
|
4090
3911
|
"peerDependencies": {
|
|
4091
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4092
|
-
"typescript": ">=4.8.4 <6.
|
|
3912
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
3913
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
4093
3914
|
}
|
|
4094
3915
|
},
|
|
4095
3916
|
"node_modules/@typescript-eslint/types": {
|
|
4096
|
-
"version": "8.
|
|
4097
|
-
"integrity": "sha512-
|
|
3917
|
+
"version": "8.59.4",
|
|
3918
|
+
"integrity": "sha512-F1o7WJcCq+bc8dwcO/YsSEOudAH8RDtaOhM6wcAQhcUsFhnWQl81JKy48q1hoxAU0qrzM89+31GYh1515Zde3Q==",
|
|
4098
3919
|
"dev": true,
|
|
4099
3920
|
"license": "MIT",
|
|
4100
3921
|
"engines": {
|
|
@@ -4106,20 +3927,20 @@
|
|
|
4106
3927
|
}
|
|
4107
3928
|
},
|
|
4108
3929
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4109
|
-
"version": "8.
|
|
4110
|
-
"integrity": "sha512-
|
|
3930
|
+
"version": "8.59.4",
|
|
3931
|
+
"integrity": "sha512-F+RuOmcDXo4+TPdfd/TCLS3m2nw8gE9XXyZLrA3JBfaA5tz9TtdkyD3YJFmPxulyc2cKbEok/CvFE3MgSLWnag==",
|
|
4111
3932
|
"dev": true,
|
|
4112
3933
|
"license": "MIT",
|
|
4113
3934
|
"dependencies": {
|
|
4114
|
-
"@typescript-eslint/project-service": "8.
|
|
4115
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4116
|
-
"@typescript-eslint/types": "8.
|
|
4117
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
3935
|
+
"@typescript-eslint/project-service": "8.59.4",
|
|
3936
|
+
"@typescript-eslint/tsconfig-utils": "8.59.4",
|
|
3937
|
+
"@typescript-eslint/types": "8.59.4",
|
|
3938
|
+
"@typescript-eslint/visitor-keys": "8.59.4",
|
|
4118
3939
|
"debug": "^4.4.3",
|
|
4119
|
-
"minimatch": "^
|
|
3940
|
+
"minimatch": "^10.2.2",
|
|
4120
3941
|
"semver": "^7.7.3",
|
|
4121
3942
|
"tinyglobby": "^0.2.15",
|
|
4122
|
-
"ts-api-utils": "^2.
|
|
3943
|
+
"ts-api-utils": "^2.5.0"
|
|
4123
3944
|
},
|
|
4124
3945
|
"engines": {
|
|
4125
3946
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4129,36 +3950,48 @@
|
|
|
4129
3950
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4130
3951
|
},
|
|
4131
3952
|
"peerDependencies": {
|
|
4132
|
-
"typescript": ">=4.8.4 <6.
|
|
3953
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
3954
|
+
}
|
|
3955
|
+
},
|
|
3956
|
+
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
|
|
3957
|
+
"version": "4.0.4",
|
|
3958
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
3959
|
+
"dev": true,
|
|
3960
|
+
"license": "MIT",
|
|
3961
|
+
"engines": {
|
|
3962
|
+
"node": "18 || 20 || >=22"
|
|
4133
3963
|
}
|
|
4134
3964
|
},
|
|
4135
3965
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4136
|
-
"version": "
|
|
4137
|
-
"integrity": "sha512-
|
|
3966
|
+
"version": "5.0.6",
|
|
3967
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
4138
3968
|
"dev": true,
|
|
4139
3969
|
"license": "MIT",
|
|
4140
3970
|
"dependencies": {
|
|
4141
|
-
"balanced-match": "^
|
|
3971
|
+
"balanced-match": "^4.0.2"
|
|
3972
|
+
},
|
|
3973
|
+
"engines": {
|
|
3974
|
+
"node": "18 || 20 || >=22"
|
|
4142
3975
|
}
|
|
4143
3976
|
},
|
|
4144
3977
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
4145
|
-
"version": "
|
|
4146
|
-
"integrity": "sha512-
|
|
3978
|
+
"version": "10.2.5",
|
|
3979
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
4147
3980
|
"dev": true,
|
|
4148
|
-
"license": "
|
|
3981
|
+
"license": "BlueOak-1.0.0",
|
|
4149
3982
|
"dependencies": {
|
|
4150
|
-
"brace-expansion": "^
|
|
3983
|
+
"brace-expansion": "^5.0.5"
|
|
4151
3984
|
},
|
|
4152
3985
|
"engines": {
|
|
4153
|
-
"node": "
|
|
3986
|
+
"node": "18 || 20 || >=22"
|
|
4154
3987
|
},
|
|
4155
3988
|
"funding": {
|
|
4156
3989
|
"url": "https://github.com/sponsors/isaacs"
|
|
4157
3990
|
}
|
|
4158
3991
|
},
|
|
4159
3992
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
|
4160
|
-
"version": "7.
|
|
4161
|
-
"integrity": "sha512-
|
|
3993
|
+
"version": "7.8.1",
|
|
3994
|
+
"integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==",
|
|
4162
3995
|
"dev": true,
|
|
4163
3996
|
"license": "ISC",
|
|
4164
3997
|
"bin": {
|
|
@@ -4169,15 +4002,15 @@
|
|
|
4169
4002
|
}
|
|
4170
4003
|
},
|
|
4171
4004
|
"node_modules/@typescript-eslint/utils": {
|
|
4172
|
-
"version": "8.
|
|
4173
|
-
"integrity": "sha512-
|
|
4005
|
+
"version": "8.59.4",
|
|
4006
|
+
"integrity": "sha512-cYXeNAUsG4lJo5dbc1FcKm+JwIWrj1/UpTORsC6tGMjEZ81DYcvIr9/ueikhMa/Y/gDQYGp+YX9/xQrXje5BJw==",
|
|
4174
4007
|
"dev": true,
|
|
4175
4008
|
"license": "MIT",
|
|
4176
4009
|
"dependencies": {
|
|
4177
4010
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4178
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4179
|
-
"@typescript-eslint/types": "8.
|
|
4180
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4011
|
+
"@typescript-eslint/scope-manager": "8.59.4",
|
|
4012
|
+
"@typescript-eslint/types": "8.59.4",
|
|
4013
|
+
"@typescript-eslint/typescript-estree": "8.59.4"
|
|
4181
4014
|
},
|
|
4182
4015
|
"engines": {
|
|
4183
4016
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4187,18 +4020,18 @@
|
|
|
4187
4020
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4188
4021
|
},
|
|
4189
4022
|
"peerDependencies": {
|
|
4190
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
4191
|
-
"typescript": ">=4.8.4 <6.
|
|
4023
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4024
|
+
"typescript": ">=4.8.4 <6.1.0"
|
|
4192
4025
|
}
|
|
4193
4026
|
},
|
|
4194
4027
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4195
|
-
"version": "8.
|
|
4196
|
-
"integrity": "sha512-
|
|
4028
|
+
"version": "8.59.4",
|
|
4029
|
+
"integrity": "sha512-U3gxVaDVnuZKhSspW/MzMxE1kq7zOdc072FcSNoqA1I9p8HyKbBFfEHoWckBAMgNMph4MamwS5iTVzFmrnt8TQ==",
|
|
4197
4030
|
"dev": true,
|
|
4198
4031
|
"license": "MIT",
|
|
4199
4032
|
"dependencies": {
|
|
4200
|
-
"@typescript-eslint/types": "8.
|
|
4201
|
-
"eslint-visitor-keys": "^
|
|
4033
|
+
"@typescript-eslint/types": "8.59.4",
|
|
4034
|
+
"eslint-visitor-keys": "^5.0.0"
|
|
4202
4035
|
},
|
|
4203
4036
|
"engines": {
|
|
4204
4037
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4208,9 +4041,21 @@
|
|
|
4208
4041
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4209
4042
|
}
|
|
4210
4043
|
},
|
|
4044
|
+
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
4045
|
+
"version": "5.0.1",
|
|
4046
|
+
"integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
|
|
4047
|
+
"dev": true,
|
|
4048
|
+
"license": "Apache-2.0",
|
|
4049
|
+
"engines": {
|
|
4050
|
+
"node": "^20.19.0 || ^22.13.0 || >=24"
|
|
4051
|
+
},
|
|
4052
|
+
"funding": {
|
|
4053
|
+
"url": "https://opencollective.com/eslint"
|
|
4054
|
+
}
|
|
4055
|
+
},
|
|
4211
4056
|
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
4212
|
-
"version": "1.
|
|
4213
|
-
"integrity": "sha512-
|
|
4057
|
+
"version": "1.12.2",
|
|
4058
|
+
"integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==",
|
|
4214
4059
|
"cpu": [
|
|
4215
4060
|
"arm"
|
|
4216
4061
|
],
|
|
@@ -4222,8 +4067,8 @@
|
|
|
4222
4067
|
]
|
|
4223
4068
|
},
|
|
4224
4069
|
"node_modules/@unrs/resolver-binding-android-arm64": {
|
|
4225
|
-
"version": "1.
|
|
4226
|
-
"integrity": "sha512-
|
|
4070
|
+
"version": "1.12.2",
|
|
4071
|
+
"integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==",
|
|
4227
4072
|
"cpu": [
|
|
4228
4073
|
"arm64"
|
|
4229
4074
|
],
|
|
@@ -4235,8 +4080,8 @@
|
|
|
4235
4080
|
]
|
|
4236
4081
|
},
|
|
4237
4082
|
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
|
4238
|
-
"version": "1.
|
|
4239
|
-
"integrity": "sha512-
|
|
4083
|
+
"version": "1.12.2",
|
|
4084
|
+
"integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==",
|
|
4240
4085
|
"cpu": [
|
|
4241
4086
|
"arm64"
|
|
4242
4087
|
],
|
|
@@ -4248,8 +4093,8 @@
|
|
|
4248
4093
|
]
|
|
4249
4094
|
},
|
|
4250
4095
|
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
|
4251
|
-
"version": "1.
|
|
4252
|
-
"integrity": "sha512-
|
|
4096
|
+
"version": "1.12.2",
|
|
4097
|
+
"integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==",
|
|
4253
4098
|
"cpu": [
|
|
4254
4099
|
"x64"
|
|
4255
4100
|
],
|
|
@@ -4261,8 +4106,8 @@
|
|
|
4261
4106
|
]
|
|
4262
4107
|
},
|
|
4263
4108
|
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
|
4264
|
-
"version": "1.
|
|
4265
|
-
"integrity": "sha512-
|
|
4109
|
+
"version": "1.12.2",
|
|
4110
|
+
"integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==",
|
|
4266
4111
|
"cpu": [
|
|
4267
4112
|
"x64"
|
|
4268
4113
|
],
|
|
@@ -4274,8 +4119,8 @@
|
|
|
4274
4119
|
]
|
|
4275
4120
|
},
|
|
4276
4121
|
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
|
4277
|
-
"version": "1.
|
|
4278
|
-
"integrity": "sha512-
|
|
4122
|
+
"version": "1.12.2",
|
|
4123
|
+
"integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==",
|
|
4279
4124
|
"cpu": [
|
|
4280
4125
|
"arm"
|
|
4281
4126
|
],
|
|
@@ -4287,8 +4132,8 @@
|
|
|
4287
4132
|
]
|
|
4288
4133
|
},
|
|
4289
4134
|
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
|
4290
|
-
"version": "1.
|
|
4291
|
-
"integrity": "sha512-
|
|
4135
|
+
"version": "1.12.2",
|
|
4136
|
+
"integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==",
|
|
4292
4137
|
"cpu": [
|
|
4293
4138
|
"arm"
|
|
4294
4139
|
],
|
|
@@ -4300,8 +4145,8 @@
|
|
|
4300
4145
|
]
|
|
4301
4146
|
},
|
|
4302
4147
|
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
|
4303
|
-
"version": "1.
|
|
4304
|
-
"integrity": "sha512-
|
|
4148
|
+
"version": "1.12.2",
|
|
4149
|
+
"integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==",
|
|
4305
4150
|
"cpu": [
|
|
4306
4151
|
"arm64"
|
|
4307
4152
|
],
|
|
@@ -4313,8 +4158,8 @@
|
|
|
4313
4158
|
]
|
|
4314
4159
|
},
|
|
4315
4160
|
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
|
4316
|
-
"version": "1.
|
|
4317
|
-
"integrity": "sha512-
|
|
4161
|
+
"version": "1.12.2",
|
|
4162
|
+
"integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==",
|
|
4318
4163
|
"cpu": [
|
|
4319
4164
|
"arm64"
|
|
4320
4165
|
],
|
|
@@ -4325,9 +4170,35 @@
|
|
|
4325
4170
|
"linux"
|
|
4326
4171
|
]
|
|
4327
4172
|
},
|
|
4173
|
+
"node_modules/@unrs/resolver-binding-linux-loong64-gnu": {
|
|
4174
|
+
"version": "1.12.2",
|
|
4175
|
+
"integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==",
|
|
4176
|
+
"cpu": [
|
|
4177
|
+
"loong64"
|
|
4178
|
+
],
|
|
4179
|
+
"dev": true,
|
|
4180
|
+
"license": "MIT",
|
|
4181
|
+
"optional": true,
|
|
4182
|
+
"os": [
|
|
4183
|
+
"linux"
|
|
4184
|
+
]
|
|
4185
|
+
},
|
|
4186
|
+
"node_modules/@unrs/resolver-binding-linux-loong64-musl": {
|
|
4187
|
+
"version": "1.12.2",
|
|
4188
|
+
"integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==",
|
|
4189
|
+
"cpu": [
|
|
4190
|
+
"loong64"
|
|
4191
|
+
],
|
|
4192
|
+
"dev": true,
|
|
4193
|
+
"license": "MIT",
|
|
4194
|
+
"optional": true,
|
|
4195
|
+
"os": [
|
|
4196
|
+
"linux"
|
|
4197
|
+
]
|
|
4198
|
+
},
|
|
4328
4199
|
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
|
4329
|
-
"version": "1.
|
|
4330
|
-
"integrity": "sha512-
|
|
4200
|
+
"version": "1.12.2",
|
|
4201
|
+
"integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==",
|
|
4331
4202
|
"cpu": [
|
|
4332
4203
|
"ppc64"
|
|
4333
4204
|
],
|
|
@@ -4339,8 +4210,8 @@
|
|
|
4339
4210
|
]
|
|
4340
4211
|
},
|
|
4341
4212
|
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
|
|
4342
|
-
"version": "1.
|
|
4343
|
-
"integrity": "sha512-
|
|
4213
|
+
"version": "1.12.2",
|
|
4214
|
+
"integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==",
|
|
4344
4215
|
"cpu": [
|
|
4345
4216
|
"riscv64"
|
|
4346
4217
|
],
|
|
@@ -4352,8 +4223,8 @@
|
|
|
4352
4223
|
]
|
|
4353
4224
|
},
|
|
4354
4225
|
"node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
|
|
4355
|
-
"version": "1.
|
|
4356
|
-
"integrity": "sha512-
|
|
4226
|
+
"version": "1.12.2",
|
|
4227
|
+
"integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==",
|
|
4357
4228
|
"cpu": [
|
|
4358
4229
|
"riscv64"
|
|
4359
4230
|
],
|
|
@@ -4365,8 +4236,8 @@
|
|
|
4365
4236
|
]
|
|
4366
4237
|
},
|
|
4367
4238
|
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
|
4368
|
-
"version": "1.
|
|
4369
|
-
"integrity": "sha512-
|
|
4239
|
+
"version": "1.12.2",
|
|
4240
|
+
"integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==",
|
|
4370
4241
|
"cpu": [
|
|
4371
4242
|
"s390x"
|
|
4372
4243
|
],
|
|
@@ -4378,8 +4249,8 @@
|
|
|
4378
4249
|
]
|
|
4379
4250
|
},
|
|
4380
4251
|
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
|
4381
|
-
"version": "1.
|
|
4382
|
-
"integrity": "sha512-
|
|
4252
|
+
"version": "1.12.2",
|
|
4253
|
+
"integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==",
|
|
4383
4254
|
"cpu": [
|
|
4384
4255
|
"x64"
|
|
4385
4256
|
],
|
|
@@ -4391,8 +4262,8 @@
|
|
|
4391
4262
|
]
|
|
4392
4263
|
},
|
|
4393
4264
|
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
|
4394
|
-
"version": "1.
|
|
4395
|
-
"integrity": "sha512-
|
|
4265
|
+
"version": "1.12.2",
|
|
4266
|
+
"integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==",
|
|
4396
4267
|
"cpu": [
|
|
4397
4268
|
"x64"
|
|
4398
4269
|
],
|
|
@@ -4403,9 +4274,22 @@
|
|
|
4403
4274
|
"linux"
|
|
4404
4275
|
]
|
|
4405
4276
|
},
|
|
4277
|
+
"node_modules/@unrs/resolver-binding-openharmony-arm64": {
|
|
4278
|
+
"version": "1.12.2",
|
|
4279
|
+
"integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==",
|
|
4280
|
+
"cpu": [
|
|
4281
|
+
"arm64"
|
|
4282
|
+
],
|
|
4283
|
+
"dev": true,
|
|
4284
|
+
"license": "MIT",
|
|
4285
|
+
"optional": true,
|
|
4286
|
+
"os": [
|
|
4287
|
+
"openharmony"
|
|
4288
|
+
]
|
|
4289
|
+
},
|
|
4406
4290
|
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
|
4407
|
-
"version": "1.
|
|
4408
|
-
"integrity": "sha512-
|
|
4291
|
+
"version": "1.12.2",
|
|
4292
|
+
"integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==",
|
|
4409
4293
|
"cpu": [
|
|
4410
4294
|
"wasm32"
|
|
4411
4295
|
],
|
|
@@ -4413,15 +4297,17 @@
|
|
|
4413
4297
|
"license": "MIT",
|
|
4414
4298
|
"optional": true,
|
|
4415
4299
|
"dependencies": {
|
|
4416
|
-
"@
|
|
4300
|
+
"@emnapi/core": "1.10.0",
|
|
4301
|
+
"@emnapi/runtime": "1.10.0",
|
|
4302
|
+
"@napi-rs/wasm-runtime": "^1.1.4"
|
|
4417
4303
|
},
|
|
4418
4304
|
"engines": {
|
|
4419
4305
|
"node": ">=14.0.0"
|
|
4420
4306
|
}
|
|
4421
4307
|
},
|
|
4422
4308
|
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
|
4423
|
-
"version": "1.
|
|
4424
|
-
"integrity": "sha512-
|
|
4309
|
+
"version": "1.12.2",
|
|
4310
|
+
"integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==",
|
|
4425
4311
|
"cpu": [
|
|
4426
4312
|
"arm64"
|
|
4427
4313
|
],
|
|
@@ -4433,8 +4319,8 @@
|
|
|
4433
4319
|
]
|
|
4434
4320
|
},
|
|
4435
4321
|
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
|
4436
|
-
"version": "1.
|
|
4437
|
-
"integrity": "sha512-
|
|
4322
|
+
"version": "1.12.2",
|
|
4323
|
+
"integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==",
|
|
4438
4324
|
"cpu": [
|
|
4439
4325
|
"ia32"
|
|
4440
4326
|
],
|
|
@@ -4446,8 +4332,8 @@
|
|
|
4446
4332
|
]
|
|
4447
4333
|
},
|
|
4448
4334
|
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
|
4449
|
-
"version": "1.
|
|
4450
|
-
"integrity": "sha512-
|
|
4335
|
+
"version": "1.12.2",
|
|
4336
|
+
"integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==",
|
|
4451
4337
|
"cpu": [
|
|
4452
4338
|
"x64"
|
|
4453
4339
|
],
|
|
@@ -4459,8 +4345,8 @@
|
|
|
4459
4345
|
]
|
|
4460
4346
|
},
|
|
4461
4347
|
"node_modules/@wavemaker/variables": {
|
|
4462
|
-
"version": "11.14.
|
|
4463
|
-
"integrity": "sha512-
|
|
4348
|
+
"version": "11.14.4-rc.647538",
|
|
4349
|
+
"integrity": "sha512-UOkVYbVGC6RHBDcQivMXQIvQFLAb2ggbdEn42JC1XcFaQbOE2c5MsTDmoquSO29JD/c+ON6PKKs6RMt084GwPw==",
|
|
4464
4350
|
"dev": true,
|
|
4465
4351
|
"license": "ISC",
|
|
4466
4352
|
"dependencies": {
|
|
@@ -4472,8 +4358,8 @@
|
|
|
4472
4358
|
}
|
|
4473
4359
|
},
|
|
4474
4360
|
"node_modules/@xmldom/xmldom": {
|
|
4475
|
-
"version": "0.8.
|
|
4476
|
-
"integrity": "sha512-
|
|
4361
|
+
"version": "0.8.13",
|
|
4362
|
+
"integrity": "sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==",
|
|
4477
4363
|
"dev": true,
|
|
4478
4364
|
"license": "MIT",
|
|
4479
4365
|
"engines": {
|
|
@@ -4481,8 +4367,8 @@
|
|
|
4481
4367
|
}
|
|
4482
4368
|
},
|
|
4483
4369
|
"node_modules/acorn": {
|
|
4484
|
-
"version": "8.
|
|
4485
|
-
"integrity": "sha512-
|
|
4370
|
+
"version": "8.16.0",
|
|
4371
|
+
"integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
|
|
4486
4372
|
"dev": true,
|
|
4487
4373
|
"license": "MIT",
|
|
4488
4374
|
"bin": {
|
|
@@ -4501,9 +4387,20 @@
|
|
|
4501
4387
|
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
4502
4388
|
}
|
|
4503
4389
|
},
|
|
4390
|
+
"node_modules/agent-base": {
|
|
4391
|
+
"version": "6.0.2",
|
|
4392
|
+
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
4393
|
+
"license": "MIT",
|
|
4394
|
+
"dependencies": {
|
|
4395
|
+
"debug": "4"
|
|
4396
|
+
},
|
|
4397
|
+
"engines": {
|
|
4398
|
+
"node": ">= 6.0.0"
|
|
4399
|
+
}
|
|
4400
|
+
},
|
|
4504
4401
|
"node_modules/ajv": {
|
|
4505
|
-
"version": "6.
|
|
4506
|
-
"integrity": "sha512-
|
|
4402
|
+
"version": "6.15.0",
|
|
4403
|
+
"integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
|
|
4507
4404
|
"dev": true,
|
|
4508
4405
|
"license": "MIT",
|
|
4509
4406
|
"dependencies": {
|
|
@@ -4577,6 +4474,17 @@
|
|
|
4577
4474
|
"dev": true,
|
|
4578
4475
|
"license": "Python-2.0"
|
|
4579
4476
|
},
|
|
4477
|
+
"node_modules/aria-hidden": {
|
|
4478
|
+
"version": "1.2.6",
|
|
4479
|
+
"integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
|
|
4480
|
+
"license": "MIT",
|
|
4481
|
+
"dependencies": {
|
|
4482
|
+
"tslib": "^2.0.0"
|
|
4483
|
+
},
|
|
4484
|
+
"engines": {
|
|
4485
|
+
"node": ">=10"
|
|
4486
|
+
}
|
|
4487
|
+
},
|
|
4580
4488
|
"node_modules/aria-query": {
|
|
4581
4489
|
"version": "5.3.2",
|
|
4582
4490
|
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
|
|
@@ -4774,8 +4682,8 @@
|
|
|
4774
4682
|
}
|
|
4775
4683
|
},
|
|
4776
4684
|
"node_modules/axe-core": {
|
|
4777
|
-
"version": "4.11.
|
|
4778
|
-
"integrity": "sha512-
|
|
4685
|
+
"version": "4.11.4",
|
|
4686
|
+
"integrity": "sha512-KunSNx+TVpkAw/6ULfhnx+HWRecjqZGTOyquAoWHYLRSdK1tB5Ihce1ZW+UY3fj33bYAFWPu7W/GRSmmrCGuxA==",
|
|
4779
4687
|
"dev": true,
|
|
4780
4688
|
"license": "MPL-2.0",
|
|
4781
4689
|
"engines": {
|
|
@@ -4783,13 +4691,14 @@
|
|
|
4783
4691
|
}
|
|
4784
4692
|
},
|
|
4785
4693
|
"node_modules/axios": {
|
|
4786
|
-
"version": "1.
|
|
4787
|
-
"integrity": "sha512-
|
|
4694
|
+
"version": "1.16.1",
|
|
4695
|
+
"integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
|
|
4788
4696
|
"license": "MIT",
|
|
4789
4697
|
"dependencies": {
|
|
4790
|
-
"follow-redirects": "^1.
|
|
4791
|
-
"form-data": "^4.0.
|
|
4792
|
-
"proxy-
|
|
4698
|
+
"follow-redirects": "^1.16.0",
|
|
4699
|
+
"form-data": "^4.0.5",
|
|
4700
|
+
"https-proxy-agent": "^5.0.1",
|
|
4701
|
+
"proxy-from-env": "^2.1.0"
|
|
4793
4702
|
}
|
|
4794
4703
|
},
|
|
4795
4704
|
"node_modules/axobject-query": {
|
|
@@ -4816,8 +4725,8 @@
|
|
|
4816
4725
|
}
|
|
4817
4726
|
},
|
|
4818
4727
|
"node_modules/babel-plugin-module-resolver": {
|
|
4819
|
-
"version": "5.0.
|
|
4820
|
-
"integrity": "sha512-
|
|
4728
|
+
"version": "5.0.3",
|
|
4729
|
+
"integrity": "sha512-h8h6H71ZvdLJZxZrYkaeR30BojTaV7O9GfqacY14SNj5CNB8ocL9tydNzTC0JrnNN7vY3eJhwCmkDj7tuEUaqQ==",
|
|
4821
4730
|
"dev": true,
|
|
4822
4731
|
"license": "MIT",
|
|
4823
4732
|
"dependencies": {
|
|
@@ -4829,8 +4738,8 @@
|
|
|
4829
4738
|
}
|
|
4830
4739
|
},
|
|
4831
4740
|
"node_modules/babel-plugin-module-resolver/node_modules/brace-expansion": {
|
|
4832
|
-
"version": "2.0
|
|
4833
|
-
"integrity": "sha512-
|
|
4741
|
+
"version": "2.1.0",
|
|
4742
|
+
"integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==",
|
|
4834
4743
|
"dev": true,
|
|
4835
4744
|
"license": "MIT",
|
|
4836
4745
|
"dependencies": {
|
|
@@ -4857,8 +4766,8 @@
|
|
|
4857
4766
|
}
|
|
4858
4767
|
},
|
|
4859
4768
|
"node_modules/babel-plugin-module-resolver/node_modules/minimatch": {
|
|
4860
|
-
"version": "8.0.
|
|
4861
|
-
"integrity": "sha512-
|
|
4769
|
+
"version": "8.0.7",
|
|
4770
|
+
"integrity": "sha512-V+1uQNdzybxa14e/p00HZnQNNcTjnRJjDxg2V8wtkjFctq4M7hXFws4oekyTP0Jebeq7QYtpFyOeBAjc88zvYg==",
|
|
4862
4771
|
"dev": true,
|
|
4863
4772
|
"license": "ISC",
|
|
4864
4773
|
"dependencies": {
|
|
@@ -4878,13 +4787,13 @@
|
|
|
4878
4787
|
"license": "MIT"
|
|
4879
4788
|
},
|
|
4880
4789
|
"node_modules/babel-plugin-polyfill-corejs2": {
|
|
4881
|
-
"version": "0.4.
|
|
4882
|
-
"integrity": "sha512-
|
|
4790
|
+
"version": "0.4.17",
|
|
4791
|
+
"integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==",
|
|
4883
4792
|
"dev": true,
|
|
4884
4793
|
"license": "MIT",
|
|
4885
4794
|
"dependencies": {
|
|
4886
4795
|
"@babel/compat-data": "^7.28.6",
|
|
4887
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4796
|
+
"@babel/helper-define-polyfill-provider": "^0.6.8",
|
|
4888
4797
|
"semver": "^6.3.1"
|
|
4889
4798
|
},
|
|
4890
4799
|
"peerDependencies": {
|
|
@@ -4892,12 +4801,12 @@
|
|
|
4892
4801
|
}
|
|
4893
4802
|
},
|
|
4894
4803
|
"node_modules/babel-plugin-polyfill-corejs3": {
|
|
4895
|
-
"version": "0.14.
|
|
4896
|
-
"integrity": "sha512-
|
|
4804
|
+
"version": "0.14.2",
|
|
4805
|
+
"integrity": "sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==",
|
|
4897
4806
|
"dev": true,
|
|
4898
4807
|
"license": "MIT",
|
|
4899
4808
|
"dependencies": {
|
|
4900
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4809
|
+
"@babel/helper-define-polyfill-provider": "^0.6.8",
|
|
4901
4810
|
"core-js-compat": "^3.48.0"
|
|
4902
4811
|
},
|
|
4903
4812
|
"peerDependencies": {
|
|
@@ -4905,12 +4814,12 @@
|
|
|
4905
4814
|
}
|
|
4906
4815
|
},
|
|
4907
4816
|
"node_modules/babel-plugin-polyfill-regenerator": {
|
|
4908
|
-
"version": "0.6.
|
|
4909
|
-
"integrity": "sha512-
|
|
4817
|
+
"version": "0.6.8",
|
|
4818
|
+
"integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==",
|
|
4910
4819
|
"dev": true,
|
|
4911
4820
|
"license": "MIT",
|
|
4912
4821
|
"dependencies": {
|
|
4913
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
4822
|
+
"@babel/helper-define-polyfill-provider": "^0.6.8"
|
|
4914
4823
|
},
|
|
4915
4824
|
"peerDependencies": {
|
|
4916
4825
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
@@ -4923,12 +4832,15 @@
|
|
|
4923
4832
|
"license": "MIT"
|
|
4924
4833
|
},
|
|
4925
4834
|
"node_modules/baseline-browser-mapping": {
|
|
4926
|
-
"version": "2.
|
|
4927
|
-
"integrity": "sha512-
|
|
4835
|
+
"version": "2.10.31",
|
|
4836
|
+
"integrity": "sha512-MujYO3eP72uvmSE0i4wltsodRfIpZATP3jvzRNRGGxgzId7aVocVJJV3nf01qnzzKFGxQVC9bpWxl5cjxTr/7Q==",
|
|
4928
4837
|
"dev": true,
|
|
4929
4838
|
"license": "Apache-2.0",
|
|
4930
4839
|
"bin": {
|
|
4931
|
-
"baseline-browser-mapping": "dist/cli.
|
|
4840
|
+
"baseline-browser-mapping": "dist/cli.cjs"
|
|
4841
|
+
},
|
|
4842
|
+
"engines": {
|
|
4843
|
+
"node": ">=6.0.0"
|
|
4932
4844
|
}
|
|
4933
4845
|
},
|
|
4934
4846
|
"node_modules/binary-extensions": {
|
|
@@ -4945,8 +4857,8 @@
|
|
|
4945
4857
|
}
|
|
4946
4858
|
},
|
|
4947
4859
|
"node_modules/brace-expansion": {
|
|
4948
|
-
"version": "1.1.
|
|
4949
|
-
"integrity": "sha512-
|
|
4860
|
+
"version": "1.1.14",
|
|
4861
|
+
"integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==",
|
|
4950
4862
|
"dev": true,
|
|
4951
4863
|
"license": "MIT",
|
|
4952
4864
|
"dependencies": {
|
|
@@ -4957,6 +4869,7 @@
|
|
|
4957
4869
|
"node_modules/braces": {
|
|
4958
4870
|
"version": "3.0.3",
|
|
4959
4871
|
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
4872
|
+
"dev": true,
|
|
4960
4873
|
"license": "MIT",
|
|
4961
4874
|
"dependencies": {
|
|
4962
4875
|
"fill-range": "^7.1.1"
|
|
@@ -4966,8 +4879,8 @@
|
|
|
4966
4879
|
}
|
|
4967
4880
|
},
|
|
4968
4881
|
"node_modules/browserslist": {
|
|
4969
|
-
"version": "4.28.
|
|
4970
|
-
"integrity": "sha512-
|
|
4882
|
+
"version": "4.28.2",
|
|
4883
|
+
"integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==",
|
|
4971
4884
|
"dev": true,
|
|
4972
4885
|
"funding": [
|
|
4973
4886
|
{
|
|
@@ -4985,11 +4898,11 @@
|
|
|
4985
4898
|
],
|
|
4986
4899
|
"license": "MIT",
|
|
4987
4900
|
"dependencies": {
|
|
4988
|
-
"baseline-browser-mapping": "^2.
|
|
4989
|
-
"caniuse-lite": "^1.0.
|
|
4990
|
-
"electron-to-chromium": "^1.5.
|
|
4991
|
-
"node-releases": "^2.0.
|
|
4992
|
-
"update-browserslist-db": "^1.2.
|
|
4901
|
+
"baseline-browser-mapping": "^2.10.12",
|
|
4902
|
+
"caniuse-lite": "^1.0.30001782",
|
|
4903
|
+
"electron-to-chromium": "^1.5.328",
|
|
4904
|
+
"node-releases": "^2.0.36",
|
|
4905
|
+
"update-browserslist-db": "^1.2.3"
|
|
4993
4906
|
},
|
|
4994
4907
|
"bin": {
|
|
4995
4908
|
"browserslist": "cli.js"
|
|
@@ -5009,14 +4922,14 @@
|
|
|
5009
4922
|
}
|
|
5010
4923
|
},
|
|
5011
4924
|
"node_modules/call-bind": {
|
|
5012
|
-
"version": "1.0.
|
|
5013
|
-
"integrity": "sha512-
|
|
4925
|
+
"version": "1.0.9",
|
|
4926
|
+
"integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==",
|
|
5014
4927
|
"dev": true,
|
|
5015
4928
|
"license": "MIT",
|
|
5016
4929
|
"dependencies": {
|
|
5017
|
-
"call-bind-apply-helpers": "^1.0.
|
|
5018
|
-
"es-define-property": "^1.0.
|
|
5019
|
-
"get-intrinsic": "^1.
|
|
4930
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
4931
|
+
"es-define-property": "^1.0.1",
|
|
4932
|
+
"get-intrinsic": "^1.3.0",
|
|
5020
4933
|
"set-function-length": "^1.2.2"
|
|
5021
4934
|
},
|
|
5022
4935
|
"engines": {
|
|
@@ -5063,8 +4976,8 @@
|
|
|
5063
4976
|
}
|
|
5064
4977
|
},
|
|
5065
4978
|
"node_modules/caniuse-lite": {
|
|
5066
|
-
"version": "1.0.
|
|
5067
|
-
"integrity": "sha512-
|
|
4979
|
+
"version": "1.0.30001793",
|
|
4980
|
+
"integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
|
|
5068
4981
|
"funding": [
|
|
5069
4982
|
{
|
|
5070
4983
|
"type": "opencollective",
|
|
@@ -5137,12 +5050,12 @@
|
|
|
5137
5050
|
}
|
|
5138
5051
|
},
|
|
5139
5052
|
"node_modules/cli-truncate": {
|
|
5140
|
-
"version": "5.
|
|
5141
|
-
"integrity": "sha512-
|
|
5053
|
+
"version": "5.2.0",
|
|
5054
|
+
"integrity": "sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==",
|
|
5142
5055
|
"license": "MIT",
|
|
5143
5056
|
"dependencies": {
|
|
5144
|
-
"slice-ansi": "^
|
|
5145
|
-
"string-width": "^8.
|
|
5057
|
+
"slice-ansi": "^8.0.0",
|
|
5058
|
+
"string-width": "^8.2.0"
|
|
5146
5059
|
},
|
|
5147
5060
|
"engines": {
|
|
5148
5061
|
"node": ">=20"
|
|
@@ -5280,8 +5193,8 @@
|
|
|
5280
5193
|
"license": "MIT"
|
|
5281
5194
|
},
|
|
5282
5195
|
"node_modules/core-js-compat": {
|
|
5283
|
-
"version": "3.
|
|
5284
|
-
"integrity": "sha512-
|
|
5196
|
+
"version": "3.49.0",
|
|
5197
|
+
"integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==",
|
|
5285
5198
|
"dev": true,
|
|
5286
5199
|
"license": "MIT",
|
|
5287
5200
|
"dependencies": {
|
|
@@ -5508,11 +5421,6 @@
|
|
|
5508
5421
|
}
|
|
5509
5422
|
}
|
|
5510
5423
|
},
|
|
5511
|
-
"node_modules/decimal.js": {
|
|
5512
|
-
"version": "10.6.0",
|
|
5513
|
-
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
|
|
5514
|
-
"license": "MIT"
|
|
5515
|
-
},
|
|
5516
5424
|
"node_modules/decimal.js-light": {
|
|
5517
5425
|
"version": "2.5.1",
|
|
5518
5426
|
"integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==",
|
|
@@ -5597,8 +5505,8 @@
|
|
|
5597
5505
|
}
|
|
5598
5506
|
},
|
|
5599
5507
|
"node_modules/dompurify": {
|
|
5600
|
-
"version": "3.
|
|
5601
|
-
"integrity": "sha512-
|
|
5508
|
+
"version": "3.4.5",
|
|
5509
|
+
"integrity": "sha512-OrwIBKsdNSVEeubdJ1HBv/wNENRM9ytAVCv7YXt//A3vPdVMNuACRqK9mXCGCBW2ln7BT/A4X0jXHo2Gu89miA==",
|
|
5602
5510
|
"license": "(MPL-2.0 OR Apache-2.0)",
|
|
5603
5511
|
"optionalDependencies": {
|
|
5604
5512
|
"@types/trusted-types": "^2.0.7"
|
|
@@ -5618,8 +5526,8 @@
|
|
|
5618
5526
|
}
|
|
5619
5527
|
},
|
|
5620
5528
|
"node_modules/electron-to-chromium": {
|
|
5621
|
-
"version": "1.5.
|
|
5622
|
-
"integrity": "sha512-
|
|
5529
|
+
"version": "1.5.361",
|
|
5530
|
+
"integrity": "sha512-Q6Hts7N9FnJc5LeGRINFvLhCI9xZmNtTDe5ZbcVezQz7cU4a8Aua3GH1b8J2XY8Al9PF+OCwYqhgsOOheMdvkA==",
|
|
5623
5531
|
"dev": true,
|
|
5624
5532
|
"license": "ISC"
|
|
5625
5533
|
},
|
|
@@ -5649,8 +5557,8 @@
|
|
|
5649
5557
|
}
|
|
5650
5558
|
},
|
|
5651
5559
|
"node_modules/es-abstract": {
|
|
5652
|
-
"version": "1.24.
|
|
5653
|
-
"integrity": "sha512-
|
|
5560
|
+
"version": "1.24.2",
|
|
5561
|
+
"integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==",
|
|
5654
5562
|
"dev": true,
|
|
5655
5563
|
"license": "MIT",
|
|
5656
5564
|
"dependencies": {
|
|
@@ -5733,15 +5641,15 @@
|
|
|
5733
5641
|
}
|
|
5734
5642
|
},
|
|
5735
5643
|
"node_modules/es-iterator-helpers": {
|
|
5736
|
-
"version": "1.
|
|
5737
|
-
"integrity": "sha512-
|
|
5644
|
+
"version": "1.3.2",
|
|
5645
|
+
"integrity": "sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==",
|
|
5738
5646
|
"dev": true,
|
|
5739
5647
|
"license": "MIT",
|
|
5740
5648
|
"dependencies": {
|
|
5741
|
-
"call-bind": "^1.0.
|
|
5649
|
+
"call-bind": "^1.0.9",
|
|
5742
5650
|
"call-bound": "^1.0.4",
|
|
5743
5651
|
"define-properties": "^1.2.1",
|
|
5744
|
-
"es-abstract": "^1.24.
|
|
5652
|
+
"es-abstract": "^1.24.2",
|
|
5745
5653
|
"es-errors": "^1.3.0",
|
|
5746
5654
|
"es-set-tostringtag": "^2.1.0",
|
|
5747
5655
|
"function-bind": "^1.1.2",
|
|
@@ -5753,7 +5661,7 @@
|
|
|
5753
5661
|
"has-symbols": "^1.1.0",
|
|
5754
5662
|
"internal-slot": "^1.1.0",
|
|
5755
5663
|
"iterator.prototype": "^1.1.5",
|
|
5756
|
-
"
|
|
5664
|
+
"math-intrinsics": "^1.1.0"
|
|
5757
5665
|
},
|
|
5758
5666
|
"engines": {
|
|
5759
5667
|
"node": ">= 0.4"
|
|
@@ -5814,8 +5722,8 @@
|
|
|
5814
5722
|
}
|
|
5815
5723
|
},
|
|
5816
5724
|
"node_modules/es-toolkit": {
|
|
5817
|
-
"version": "1.
|
|
5818
|
-
"integrity": "sha512-
|
|
5725
|
+
"version": "1.46.1",
|
|
5726
|
+
"integrity": "sha512-5eNtXOs3tbfxXOj04tjjseeWkRWaoCjdEI+96DgwzZoe6c9juL49pXlzAFTI72aWC9Y8p7168g6XIKjh7k6pyQ==",
|
|
5819
5727
|
"license": "MIT",
|
|
5820
5728
|
"workspaces": [
|
|
5821
5729
|
"docs",
|
|
@@ -5843,24 +5751,24 @@
|
|
|
5843
5751
|
}
|
|
5844
5752
|
},
|
|
5845
5753
|
"node_modules/eslint": {
|
|
5846
|
-
"version": "9.39.
|
|
5847
|
-
"integrity": "sha512-
|
|
5754
|
+
"version": "9.39.4",
|
|
5755
|
+
"integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==",
|
|
5848
5756
|
"dev": true,
|
|
5849
5757
|
"license": "MIT",
|
|
5850
5758
|
"dependencies": {
|
|
5851
5759
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
5852
5760
|
"@eslint-community/regexpp": "^4.12.1",
|
|
5853
|
-
"@eslint/config-array": "^0.21.
|
|
5761
|
+
"@eslint/config-array": "^0.21.2",
|
|
5854
5762
|
"@eslint/config-helpers": "^0.4.2",
|
|
5855
5763
|
"@eslint/core": "^0.17.0",
|
|
5856
|
-
"@eslint/eslintrc": "^3.3.
|
|
5857
|
-
"@eslint/js": "9.39.
|
|
5764
|
+
"@eslint/eslintrc": "^3.3.5",
|
|
5765
|
+
"@eslint/js": "9.39.4",
|
|
5858
5766
|
"@eslint/plugin-kit": "^0.4.1",
|
|
5859
5767
|
"@humanfs/node": "^0.16.6",
|
|
5860
5768
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
5861
5769
|
"@humanwhocodes/retry": "^0.4.2",
|
|
5862
5770
|
"@types/estree": "^1.0.6",
|
|
5863
|
-
"ajv": "^6.
|
|
5771
|
+
"ajv": "^6.14.0",
|
|
5864
5772
|
"chalk": "^4.0.0",
|
|
5865
5773
|
"cross-spawn": "^7.0.6",
|
|
5866
5774
|
"debug": "^4.3.2",
|
|
@@ -5879,7 +5787,7 @@
|
|
|
5879
5787
|
"is-glob": "^4.0.0",
|
|
5880
5788
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
5881
5789
|
"lodash.merge": "^4.6.2",
|
|
5882
|
-
"minimatch": "^3.1.
|
|
5790
|
+
"minimatch": "^3.1.5",
|
|
5883
5791
|
"natural-compare": "^1.4.0",
|
|
5884
5792
|
"optionator": "^0.9.3"
|
|
5885
5793
|
},
|
|
@@ -5929,14 +5837,14 @@
|
|
|
5929
5837
|
}
|
|
5930
5838
|
},
|
|
5931
5839
|
"node_modules/eslint-import-resolver-node": {
|
|
5932
|
-
"version": "0.3.
|
|
5933
|
-
"integrity": "sha512-
|
|
5840
|
+
"version": "0.3.10",
|
|
5841
|
+
"integrity": "sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==",
|
|
5934
5842
|
"dev": true,
|
|
5935
5843
|
"license": "MIT",
|
|
5936
5844
|
"dependencies": {
|
|
5937
5845
|
"debug": "^3.2.7",
|
|
5938
|
-
"is-core-module": "^2.
|
|
5939
|
-
"resolve": "^
|
|
5846
|
+
"is-core-module": "^2.16.1",
|
|
5847
|
+
"resolve": "^2.0.0-next.6"
|
|
5940
5848
|
}
|
|
5941
5849
|
},
|
|
5942
5850
|
"node_modules/eslint-import-resolver-node/node_modules/debug": {
|
|
@@ -5948,6 +5856,29 @@
|
|
|
5948
5856
|
"ms": "^2.1.1"
|
|
5949
5857
|
}
|
|
5950
5858
|
},
|
|
5859
|
+
"node_modules/eslint-import-resolver-node/node_modules/resolve": {
|
|
5860
|
+
"version": "2.0.0-next.7",
|
|
5861
|
+
"integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==",
|
|
5862
|
+
"dev": true,
|
|
5863
|
+
"license": "MIT",
|
|
5864
|
+
"dependencies": {
|
|
5865
|
+
"es-errors": "^1.3.0",
|
|
5866
|
+
"is-core-module": "^2.16.2",
|
|
5867
|
+
"node-exports-info": "^1.6.0",
|
|
5868
|
+
"object-keys": "^1.1.1",
|
|
5869
|
+
"path-parse": "^1.0.7",
|
|
5870
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
5871
|
+
},
|
|
5872
|
+
"bin": {
|
|
5873
|
+
"resolve": "bin/resolve"
|
|
5874
|
+
},
|
|
5875
|
+
"engines": {
|
|
5876
|
+
"node": ">= 0.4"
|
|
5877
|
+
},
|
|
5878
|
+
"funding": {
|
|
5879
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
5880
|
+
}
|
|
5881
|
+
},
|
|
5951
5882
|
"node_modules/eslint-import-resolver-typescript": {
|
|
5952
5883
|
"version": "3.10.1",
|
|
5953
5884
|
"integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==",
|
|
@@ -6124,18 +6055,24 @@
|
|
|
6124
6055
|
}
|
|
6125
6056
|
},
|
|
6126
6057
|
"node_modules/eslint-plugin-react/node_modules/resolve": {
|
|
6127
|
-
"version": "2.0.0-next.
|
|
6128
|
-
"integrity": "sha512-
|
|
6058
|
+
"version": "2.0.0-next.7",
|
|
6059
|
+
"integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==",
|
|
6129
6060
|
"dev": true,
|
|
6130
6061
|
"license": "MIT",
|
|
6131
6062
|
"dependencies": {
|
|
6132
|
-
"
|
|
6063
|
+
"es-errors": "^1.3.0",
|
|
6064
|
+
"is-core-module": "^2.16.2",
|
|
6065
|
+
"node-exports-info": "^1.6.0",
|
|
6066
|
+
"object-keys": "^1.1.1",
|
|
6133
6067
|
"path-parse": "^1.0.7",
|
|
6134
6068
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
6135
6069
|
},
|
|
6136
6070
|
"bin": {
|
|
6137
6071
|
"resolve": "bin/resolve"
|
|
6138
6072
|
},
|
|
6073
|
+
"engines": {
|
|
6074
|
+
"node": ">= 0.4"
|
|
6075
|
+
},
|
|
6139
6076
|
"funding": {
|
|
6140
6077
|
"url": "https://github.com/sponsors/ljharb"
|
|
6141
6078
|
}
|
|
@@ -6341,6 +6278,7 @@
|
|
|
6341
6278
|
"node_modules/fill-range": {
|
|
6342
6279
|
"version": "7.1.1",
|
|
6343
6280
|
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
6281
|
+
"dev": true,
|
|
6344
6282
|
"license": "MIT",
|
|
6345
6283
|
"dependencies": {
|
|
6346
6284
|
"to-regex-range": "^5.0.1"
|
|
@@ -6393,14 +6331,14 @@
|
|
|
6393
6331
|
}
|
|
6394
6332
|
},
|
|
6395
6333
|
"node_modules/flatted": {
|
|
6396
|
-
"version": "3.
|
|
6397
|
-
"integrity": "sha512-
|
|
6334
|
+
"version": "3.4.2",
|
|
6335
|
+
"integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
|
|
6398
6336
|
"dev": true,
|
|
6399
6337
|
"license": "ISC"
|
|
6400
6338
|
},
|
|
6401
6339
|
"node_modules/follow-redirects": {
|
|
6402
|
-
"version": "1.
|
|
6403
|
-
"integrity": "sha512-
|
|
6340
|
+
"version": "1.16.0",
|
|
6341
|
+
"integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
|
|
6404
6342
|
"funding": [
|
|
6405
6343
|
{
|
|
6406
6344
|
"type": "individual",
|
|
@@ -6448,8 +6386,8 @@
|
|
|
6448
6386
|
}
|
|
6449
6387
|
},
|
|
6450
6388
|
"node_modules/fs-extra": {
|
|
6451
|
-
"version": "11.3.
|
|
6452
|
-
"integrity": "sha512-
|
|
6389
|
+
"version": "11.3.5",
|
|
6390
|
+
"integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==",
|
|
6453
6391
|
"dev": true,
|
|
6454
6392
|
"license": "MIT",
|
|
6455
6393
|
"dependencies": {
|
|
@@ -6553,8 +6491,8 @@
|
|
|
6553
6491
|
}
|
|
6554
6492
|
},
|
|
6555
6493
|
"node_modules/get-east-asian-width": {
|
|
6556
|
-
"version": "1.
|
|
6557
|
-
"integrity": "sha512-
|
|
6494
|
+
"version": "1.6.0",
|
|
6495
|
+
"integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
|
|
6558
6496
|
"license": "MIT",
|
|
6559
6497
|
"engines": {
|
|
6560
6498
|
"node": ">=18"
|
|
@@ -6631,8 +6569,8 @@
|
|
|
6631
6569
|
}
|
|
6632
6570
|
},
|
|
6633
6571
|
"node_modules/get-tsconfig": {
|
|
6634
|
-
"version": "4.
|
|
6635
|
-
"integrity": "sha512-
|
|
6572
|
+
"version": "4.14.0",
|
|
6573
|
+
"integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==",
|
|
6636
6574
|
"dev": true,
|
|
6637
6575
|
"license": "MIT",
|
|
6638
6576
|
"dependencies": {
|
|
@@ -6794,8 +6732,8 @@
|
|
|
6794
6732
|
}
|
|
6795
6733
|
},
|
|
6796
6734
|
"node_modules/hasown": {
|
|
6797
|
-
"version": "2.0.
|
|
6798
|
-
"integrity": "sha512-
|
|
6735
|
+
"version": "2.0.3",
|
|
6736
|
+
"integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==",
|
|
6799
6737
|
"license": "MIT",
|
|
6800
6738
|
"dependencies": {
|
|
6801
6739
|
"function-bind": "^1.1.2"
|
|
@@ -6826,6 +6764,18 @@
|
|
|
6826
6764
|
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
|
|
6827
6765
|
"license": "MIT"
|
|
6828
6766
|
},
|
|
6767
|
+
"node_modules/https-proxy-agent": {
|
|
6768
|
+
"version": "5.0.1",
|
|
6769
|
+
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
6770
|
+
"license": "MIT",
|
|
6771
|
+
"dependencies": {
|
|
6772
|
+
"agent-base": "6",
|
|
6773
|
+
"debug": "4"
|
|
6774
|
+
},
|
|
6775
|
+
"engines": {
|
|
6776
|
+
"node": ">= 6"
|
|
6777
|
+
}
|
|
6778
|
+
},
|
|
6829
6779
|
"node_modules/human-signals": {
|
|
6830
6780
|
"version": "8.0.1",
|
|
6831
6781
|
"integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==",
|
|
@@ -6858,8 +6808,8 @@
|
|
|
6858
6808
|
}
|
|
6859
6809
|
},
|
|
6860
6810
|
"node_modules/immer": {
|
|
6861
|
-
"version": "
|
|
6862
|
-
"integrity": "sha512
|
|
6811
|
+
"version": "11.1.8",
|
|
6812
|
+
"integrity": "sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==",
|
|
6863
6813
|
"license": "MIT",
|
|
6864
6814
|
"funding": {
|
|
6865
6815
|
"type": "opencollective",
|
|
@@ -6929,17 +6879,6 @@
|
|
|
6929
6879
|
"node": ">=12"
|
|
6930
6880
|
}
|
|
6931
6881
|
},
|
|
6932
|
-
"node_modules/intl-messageformat": {
|
|
6933
|
-
"version": "10.7.18",
|
|
6934
|
-
"integrity": "sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g==",
|
|
6935
|
-
"license": "BSD-3-Clause",
|
|
6936
|
-
"dependencies": {
|
|
6937
|
-
"@formatjs/ecma402-abstract": "2.3.6",
|
|
6938
|
-
"@formatjs/fast-memoize": "2.2.7",
|
|
6939
|
-
"@formatjs/icu-messageformat-parser": "2.11.4",
|
|
6940
|
-
"tslib": "^2.8.0"
|
|
6941
|
-
}
|
|
6942
|
-
},
|
|
6943
6882
|
"node_modules/is-array-buffer": {
|
|
6944
6883
|
"version": "3.0.5",
|
|
6945
6884
|
"integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
|
|
@@ -7035,8 +6974,8 @@
|
|
|
7035
6974
|
}
|
|
7036
6975
|
},
|
|
7037
6976
|
"node_modules/is-bun-module/node_modules/semver": {
|
|
7038
|
-
"version": "7.
|
|
7039
|
-
"integrity": "sha512-
|
|
6977
|
+
"version": "7.8.1",
|
|
6978
|
+
"integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==",
|
|
7040
6979
|
"dev": true,
|
|
7041
6980
|
"license": "ISC",
|
|
7042
6981
|
"bin": {
|
|
@@ -7059,11 +6998,11 @@
|
|
|
7059
6998
|
}
|
|
7060
6999
|
},
|
|
7061
7000
|
"node_modules/is-core-module": {
|
|
7062
|
-
"version": "2.16.
|
|
7063
|
-
"integrity": "sha512-
|
|
7001
|
+
"version": "2.16.2",
|
|
7002
|
+
"integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==",
|
|
7064
7003
|
"license": "MIT",
|
|
7065
7004
|
"dependencies": {
|
|
7066
|
-
"hasown": "^2.0.
|
|
7005
|
+
"hasown": "^2.0.3"
|
|
7067
7006
|
},
|
|
7068
7007
|
"engines": {
|
|
7069
7008
|
"node": ">= 0.4"
|
|
@@ -7201,6 +7140,7 @@
|
|
|
7201
7140
|
"node_modules/is-number": {
|
|
7202
7141
|
"version": "7.0.0",
|
|
7203
7142
|
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
7143
|
+
"dev": true,
|
|
7204
7144
|
"license": "MIT",
|
|
7205
7145
|
"engines": {
|
|
7206
7146
|
"node": ">=0.12.0"
|
|
@@ -7420,8 +7360,8 @@
|
|
|
7420
7360
|
}
|
|
7421
7361
|
},
|
|
7422
7362
|
"node_modules/jodit": {
|
|
7423
|
-
"version": "4.
|
|
7424
|
-
"integrity": "sha512-
|
|
7363
|
+
"version": "4.12.2",
|
|
7364
|
+
"integrity": "sha512-SoZAH2YvL8JxPmL4muQJPbbF27rFKVzFQOiCRabjtSQcLVghm+XpIm5t9dXq+fCA4d1Z2O+8x/sORPVdLI4zbg==",
|
|
7425
7365
|
"license": "MIT"
|
|
7426
7366
|
},
|
|
7427
7367
|
"node_modules/jodit-react": {
|
|
@@ -7437,11 +7377,11 @@
|
|
|
7437
7377
|
}
|
|
7438
7378
|
},
|
|
7439
7379
|
"node_modules/js-cookie": {
|
|
7440
|
-
"version": "3.0.
|
|
7441
|
-
"integrity": "sha512-
|
|
7380
|
+
"version": "3.0.7",
|
|
7381
|
+
"integrity": "sha512-z/wZZgDrkNV1eA0ULjM/F9/50Ya8fbzgKneSpoPsXSGd0KnpdtHfOZWK+GcwLk+EZbS4F9RBhU+K2RgzuDaItw==",
|
|
7442
7382
|
"license": "MIT",
|
|
7443
7383
|
"engines": {
|
|
7444
|
-
"node": ">=
|
|
7384
|
+
"node": ">=20"
|
|
7445
7385
|
}
|
|
7446
7386
|
},
|
|
7447
7387
|
"node_modules/js-tokens": {
|
|
@@ -7508,8 +7448,8 @@
|
|
|
7508
7448
|
}
|
|
7509
7449
|
},
|
|
7510
7450
|
"node_modules/jsonfile": {
|
|
7511
|
-
"version": "6.2.
|
|
7512
|
-
"integrity": "sha512-
|
|
7451
|
+
"version": "6.2.1",
|
|
7452
|
+
"integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
|
|
7513
7453
|
"dev": true,
|
|
7514
7454
|
"license": "MIT",
|
|
7515
7455
|
"dependencies": {
|
|
@@ -7580,17 +7520,16 @@
|
|
|
7580
7520
|
"license": "MIT"
|
|
7581
7521
|
},
|
|
7582
7522
|
"node_modules/lint-staged": {
|
|
7583
|
-
"version": "16.
|
|
7584
|
-
"integrity": "sha512-
|
|
7523
|
+
"version": "16.4.0",
|
|
7524
|
+
"integrity": "sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==",
|
|
7585
7525
|
"license": "MIT",
|
|
7586
7526
|
"dependencies": {
|
|
7587
|
-
"commander": "^14.0.
|
|
7527
|
+
"commander": "^14.0.3",
|
|
7588
7528
|
"listr2": "^9.0.5",
|
|
7589
|
-
"
|
|
7590
|
-
"nano-spawn": "^2.0.0",
|
|
7591
|
-
"pidtree": "^0.6.0",
|
|
7529
|
+
"picomatch": "^4.0.3",
|
|
7592
7530
|
"string-argv": "^0.3.2",
|
|
7593
|
-
"
|
|
7531
|
+
"tinyexec": "^1.0.4",
|
|
7532
|
+
"yaml": "^2.8.2"
|
|
7594
7533
|
},
|
|
7595
7534
|
"bin": {
|
|
7596
7535
|
"lint-staged": "bin/lint-staged.js"
|
|
@@ -7610,9 +7549,20 @@
|
|
|
7610
7549
|
"node": ">=20"
|
|
7611
7550
|
}
|
|
7612
7551
|
},
|
|
7552
|
+
"node_modules/lint-staged/node_modules/picomatch": {
|
|
7553
|
+
"version": "4.0.4",
|
|
7554
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
7555
|
+
"license": "MIT",
|
|
7556
|
+
"engines": {
|
|
7557
|
+
"node": ">=12"
|
|
7558
|
+
},
|
|
7559
|
+
"funding": {
|
|
7560
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
7561
|
+
}
|
|
7562
|
+
},
|
|
7613
7563
|
"node_modules/lint-staged/node_modules/yaml": {
|
|
7614
|
-
"version": "2.
|
|
7615
|
-
"integrity": "sha512-
|
|
7564
|
+
"version": "2.9.0",
|
|
7565
|
+
"integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
|
|
7616
7566
|
"license": "ISC",
|
|
7617
7567
|
"bin": {
|
|
7618
7568
|
"yaml": "bin.mjs"
|
|
@@ -7656,13 +7606,13 @@
|
|
|
7656
7606
|
}
|
|
7657
7607
|
},
|
|
7658
7608
|
"node_modules/lodash": {
|
|
7659
|
-
"version": "4.
|
|
7660
|
-
"integrity": "sha512-
|
|
7609
|
+
"version": "4.18.1",
|
|
7610
|
+
"integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
|
|
7661
7611
|
"license": "MIT"
|
|
7662
7612
|
},
|
|
7663
7613
|
"node_modules/lodash-es": {
|
|
7664
|
-
"version": "4.
|
|
7665
|
-
"integrity": "sha512-
|
|
7614
|
+
"version": "4.18.1",
|
|
7615
|
+
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
|
7666
7616
|
"license": "MIT"
|
|
7667
7617
|
},
|
|
7668
7618
|
"node_modules/lodash.debounce": {
|
|
@@ -7695,6 +7645,32 @@
|
|
|
7695
7645
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
7696
7646
|
}
|
|
7697
7647
|
},
|
|
7648
|
+
"node_modules/log-update/node_modules/ansi-styles": {
|
|
7649
|
+
"version": "6.2.3",
|
|
7650
|
+
"integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
|
|
7651
|
+
"license": "MIT",
|
|
7652
|
+
"engines": {
|
|
7653
|
+
"node": ">=12"
|
|
7654
|
+
},
|
|
7655
|
+
"funding": {
|
|
7656
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
7657
|
+
}
|
|
7658
|
+
},
|
|
7659
|
+
"node_modules/log-update/node_modules/slice-ansi": {
|
|
7660
|
+
"version": "7.1.2",
|
|
7661
|
+
"integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==",
|
|
7662
|
+
"license": "MIT",
|
|
7663
|
+
"dependencies": {
|
|
7664
|
+
"ansi-styles": "^6.2.1",
|
|
7665
|
+
"is-fullwidth-code-point": "^5.0.0"
|
|
7666
|
+
},
|
|
7667
|
+
"engines": {
|
|
7668
|
+
"node": ">=18"
|
|
7669
|
+
},
|
|
7670
|
+
"funding": {
|
|
7671
|
+
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
|
|
7672
|
+
}
|
|
7673
|
+
},
|
|
7698
7674
|
"node_modules/loose-envify": {
|
|
7699
7675
|
"version": "1.4.0",
|
|
7700
7676
|
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
@@ -7762,6 +7738,7 @@
|
|
|
7762
7738
|
"node_modules/micromatch": {
|
|
7763
7739
|
"version": "4.0.8",
|
|
7764
7740
|
"integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
7741
|
+
"dev": true,
|
|
7765
7742
|
"license": "MIT",
|
|
7766
7743
|
"dependencies": {
|
|
7767
7744
|
"braces": "^3.0.3",
|
|
@@ -7802,8 +7779,8 @@
|
|
|
7802
7779
|
}
|
|
7803
7780
|
},
|
|
7804
7781
|
"node_modules/minimatch": {
|
|
7805
|
-
"version": "3.1.
|
|
7806
|
-
"integrity": "sha512-
|
|
7782
|
+
"version": "3.1.5",
|
|
7783
|
+
"integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
|
|
7807
7784
|
"dev": true,
|
|
7808
7785
|
"license": "ISC",
|
|
7809
7786
|
"dependencies": {
|
|
@@ -7840,8 +7817,8 @@
|
|
|
7840
7817
|
}
|
|
7841
7818
|
},
|
|
7842
7819
|
"node_modules/moment-timezone": {
|
|
7843
|
-
"version": "0.6.
|
|
7844
|
-
"integrity": "sha512-
|
|
7820
|
+
"version": "0.6.2",
|
|
7821
|
+
"integrity": "sha512-lDsQv8FoGdBUdf0+TjGsq2orxKuXdwFlQ6Zw6TX3xIcTwTfEpCLyKqvEauvCHJ8iu3KBV8+uPhlv70YsNGdUBQ==",
|
|
7845
7822
|
"license": "MIT",
|
|
7846
7823
|
"dependencies": {
|
|
7847
7824
|
"moment": "^2.29.4"
|
|
@@ -7855,20 +7832,9 @@
|
|
|
7855
7832
|
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
7856
7833
|
"license": "MIT"
|
|
7857
7834
|
},
|
|
7858
|
-
"node_modules/nano-spawn": {
|
|
7859
|
-
"version": "2.0.0",
|
|
7860
|
-
"integrity": "sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==",
|
|
7861
|
-
"license": "MIT",
|
|
7862
|
-
"engines": {
|
|
7863
|
-
"node": ">=20.17"
|
|
7864
|
-
},
|
|
7865
|
-
"funding": {
|
|
7866
|
-
"url": "https://github.com/sindresorhus/nano-spawn?sponsor=1"
|
|
7867
|
-
}
|
|
7868
|
-
},
|
|
7869
7835
|
"node_modules/nanoid": {
|
|
7870
|
-
"version": "3.3.
|
|
7871
|
-
"integrity": "sha512-
|
|
7836
|
+
"version": "3.3.12",
|
|
7837
|
+
"integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==",
|
|
7872
7838
|
"funding": [
|
|
7873
7839
|
{
|
|
7874
7840
|
"type": "github",
|
|
@@ -7966,11 +7932,32 @@
|
|
|
7966
7932
|
"tslib": "^2.8.0"
|
|
7967
7933
|
}
|
|
7968
7934
|
},
|
|
7935
|
+
"node_modules/node-exports-info": {
|
|
7936
|
+
"version": "1.6.0",
|
|
7937
|
+
"integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==",
|
|
7938
|
+
"dev": true,
|
|
7939
|
+
"license": "MIT",
|
|
7940
|
+
"dependencies": {
|
|
7941
|
+
"array.prototype.flatmap": "^1.3.3",
|
|
7942
|
+
"es-errors": "^1.3.0",
|
|
7943
|
+
"object.entries": "^1.1.9",
|
|
7944
|
+
"semver": "^6.3.1"
|
|
7945
|
+
},
|
|
7946
|
+
"engines": {
|
|
7947
|
+
"node": ">= 0.4"
|
|
7948
|
+
},
|
|
7949
|
+
"funding": {
|
|
7950
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
7951
|
+
}
|
|
7952
|
+
},
|
|
7969
7953
|
"node_modules/node-releases": {
|
|
7970
|
-
"version": "2.0.
|
|
7971
|
-
"integrity": "sha512-
|
|
7954
|
+
"version": "2.0.46",
|
|
7955
|
+
"integrity": "sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==",
|
|
7972
7956
|
"dev": true,
|
|
7973
|
-
"license": "MIT"
|
|
7957
|
+
"license": "MIT",
|
|
7958
|
+
"engines": {
|
|
7959
|
+
"node": ">=18"
|
|
7960
|
+
}
|
|
7974
7961
|
},
|
|
7975
7962
|
"node_modules/normalize-path": {
|
|
7976
7963
|
"version": "3.0.0",
|
|
@@ -8311,10 +8298,10 @@
|
|
|
8311
8298
|
"license": "ISC"
|
|
8312
8299
|
},
|
|
8313
8300
|
"node_modules/path-scurry/node_modules/minipass": {
|
|
8314
|
-
"version": "7.1.
|
|
8315
|
-
"integrity": "sha512-
|
|
8301
|
+
"version": "7.1.3",
|
|
8302
|
+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
|
|
8316
8303
|
"dev": true,
|
|
8317
|
-
"license": "
|
|
8304
|
+
"license": "BlueOak-1.0.0",
|
|
8318
8305
|
"engines": {
|
|
8319
8306
|
"node": ">=16 || 14 >=14.17"
|
|
8320
8307
|
}
|
|
@@ -8333,8 +8320,9 @@
|
|
|
8333
8320
|
"license": "ISC"
|
|
8334
8321
|
},
|
|
8335
8322
|
"node_modules/picomatch": {
|
|
8336
|
-
"version": "2.3.
|
|
8337
|
-
"integrity": "sha512-
|
|
8323
|
+
"version": "2.3.2",
|
|
8324
|
+
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
8325
|
+
"dev": true,
|
|
8338
8326
|
"license": "MIT",
|
|
8339
8327
|
"engines": {
|
|
8340
8328
|
"node": ">=8.6"
|
|
@@ -8343,17 +8331,6 @@
|
|
|
8343
8331
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
8344
8332
|
}
|
|
8345
8333
|
},
|
|
8346
|
-
"node_modules/pidtree": {
|
|
8347
|
-
"version": "0.6.0",
|
|
8348
|
-
"integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==",
|
|
8349
|
-
"license": "MIT",
|
|
8350
|
-
"bin": {
|
|
8351
|
-
"pidtree": "bin/pidtree.js"
|
|
8352
|
-
},
|
|
8353
|
-
"engines": {
|
|
8354
|
-
"node": ">=0.10"
|
|
8355
|
-
}
|
|
8356
|
-
},
|
|
8357
8334
|
"node_modules/pify": {
|
|
8358
8335
|
"version": "4.0.1",
|
|
8359
8336
|
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
|
@@ -8491,8 +8468,8 @@
|
|
|
8491
8468
|
}
|
|
8492
8469
|
},
|
|
8493
8470
|
"node_modules/prettier": {
|
|
8494
|
-
"version": "3.8.
|
|
8495
|
-
"integrity": "sha512-
|
|
8471
|
+
"version": "3.8.3",
|
|
8472
|
+
"integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
|
|
8496
8473
|
"dev": true,
|
|
8497
8474
|
"license": "MIT",
|
|
8498
8475
|
"bin": {
|
|
@@ -8535,9 +8512,12 @@
|
|
|
8535
8512
|
"license": "MIT"
|
|
8536
8513
|
},
|
|
8537
8514
|
"node_modules/proxy-from-env": {
|
|
8538
|
-
"version": "
|
|
8539
|
-
"integrity": "sha512-
|
|
8540
|
-
"license": "MIT"
|
|
8515
|
+
"version": "2.1.0",
|
|
8516
|
+
"integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
|
|
8517
|
+
"license": "MIT",
|
|
8518
|
+
"engines": {
|
|
8519
|
+
"node": ">=10"
|
|
8520
|
+
}
|
|
8541
8521
|
},
|
|
8542
8522
|
"node_modules/punycode": {
|
|
8543
8523
|
"version": "2.3.1",
|
|
@@ -8574,13 +8554,33 @@
|
|
|
8574
8554
|
"license": "MIT"
|
|
8575
8555
|
},
|
|
8576
8556
|
"node_modules/react": {
|
|
8577
|
-
"version": "19.2.
|
|
8578
|
-
"integrity": "sha512-
|
|
8557
|
+
"version": "19.2.6",
|
|
8558
|
+
"integrity": "sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==",
|
|
8579
8559
|
"license": "MIT",
|
|
8580
8560
|
"engines": {
|
|
8581
8561
|
"node": ">=0.10.0"
|
|
8582
8562
|
}
|
|
8583
8563
|
},
|
|
8564
|
+
"node_modules/react-aria": {
|
|
8565
|
+
"version": "3.48.0",
|
|
8566
|
+
"integrity": "sha512-jQjd4rBEIMqecBaAKYJbVGK6EqIHLa5znVQ7jwFyK5vCyljoj6KhgtiahmcIPsG5vG5vEDLw+ba+bEWn6A2P4w==",
|
|
8567
|
+
"license": "Apache-2.0",
|
|
8568
|
+
"dependencies": {
|
|
8569
|
+
"@internationalized/date": "^3.12.1",
|
|
8570
|
+
"@internationalized/number": "^3.6.6",
|
|
8571
|
+
"@internationalized/string": "^3.2.8",
|
|
8572
|
+
"@react-types/shared": "^3.34.0",
|
|
8573
|
+
"@swc/helpers": "^0.5.0",
|
|
8574
|
+
"aria-hidden": "^1.2.3",
|
|
8575
|
+
"clsx": "^2.0.0",
|
|
8576
|
+
"react-stately": "3.46.0",
|
|
8577
|
+
"use-sync-external-store": "^1.6.0"
|
|
8578
|
+
},
|
|
8579
|
+
"peerDependencies": {
|
|
8580
|
+
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
|
|
8581
|
+
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
8582
|
+
}
|
|
8583
|
+
},
|
|
8584
8584
|
"node_modules/react-color": {
|
|
8585
8585
|
"version": "2.19.3",
|
|
8586
8586
|
"integrity": "sha512-LEeGE/ZzNLIsFWa1TMe8y5VYqr7bibneWmvJwm1pCn/eNmrabWDh659JSPn9BuaMpEfU83WTOJfnCcjDZwNQTA==",
|
|
@@ -8599,19 +8599,19 @@
|
|
|
8599
8599
|
}
|
|
8600
8600
|
},
|
|
8601
8601
|
"node_modules/react-dom": {
|
|
8602
|
-
"version": "19.2.
|
|
8603
|
-
"integrity": "sha512-
|
|
8602
|
+
"version": "19.2.6",
|
|
8603
|
+
"integrity": "sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==",
|
|
8604
8604
|
"license": "MIT",
|
|
8605
8605
|
"dependencies": {
|
|
8606
8606
|
"scheduler": "^0.27.0"
|
|
8607
8607
|
},
|
|
8608
8608
|
"peerDependencies": {
|
|
8609
|
-
"react": "^19.2.
|
|
8609
|
+
"react": "^19.2.6"
|
|
8610
8610
|
}
|
|
8611
8611
|
},
|
|
8612
8612
|
"node_modules/react-hook-form": {
|
|
8613
|
-
"version": "7.
|
|
8614
|
-
"integrity": "sha512-
|
|
8613
|
+
"version": "7.76.0",
|
|
8614
|
+
"integrity": "sha512-eKtLGgFeSgkHqQD8J59AMZ9a4uD1D83iSIzt4YlTGD7liDen5rrjcUO1rVIGd9yC1gofryjtHbv+4ny4hkLWlw==",
|
|
8615
8615
|
"license": "MIT",
|
|
8616
8616
|
"engines": {
|
|
8617
8617
|
"node": ">=18.0.0"
|
|
@@ -8625,13 +8625,13 @@
|
|
|
8625
8625
|
}
|
|
8626
8626
|
},
|
|
8627
8627
|
"node_modules/react-is": {
|
|
8628
|
-
"version": "19.2.
|
|
8629
|
-
"integrity": "sha512-
|
|
8628
|
+
"version": "19.2.6",
|
|
8629
|
+
"integrity": "sha512-XjBR15BhXuylgWGuslhDKqlSayuqvqBX91BP8pauG8kd1zY8kotkNWbXksTCNRarse4kuGbe2kIY05ARtwNIvw==",
|
|
8630
8630
|
"license": "MIT"
|
|
8631
8631
|
},
|
|
8632
8632
|
"node_modules/react-redux": {
|
|
8633
|
-
"version": "9.
|
|
8634
|
-
"integrity": "sha512-
|
|
8633
|
+
"version": "9.3.0",
|
|
8634
|
+
"integrity": "sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==",
|
|
8635
8635
|
"license": "MIT",
|
|
8636
8636
|
"dependencies": {
|
|
8637
8637
|
"@types/use-sync-external-store": "^0.0.6",
|
|
@@ -8651,6 +8651,22 @@
|
|
|
8651
8651
|
}
|
|
8652
8652
|
}
|
|
8653
8653
|
},
|
|
8654
|
+
"node_modules/react-stately": {
|
|
8655
|
+
"version": "3.46.0",
|
|
8656
|
+
"integrity": "sha512-OdxhWvHgs2L4OJGIs7hnuTr5WjjMM6enhNEAMRqiekhF8+ITvA2LRwNftOZwcogaoCslGYq5S2VQTQwnm0GbCA==",
|
|
8657
|
+
"license": "Apache-2.0",
|
|
8658
|
+
"dependencies": {
|
|
8659
|
+
"@internationalized/date": "^3.12.1",
|
|
8660
|
+
"@internationalized/number": "^3.6.6",
|
|
8661
|
+
"@internationalized/string": "^3.2.8",
|
|
8662
|
+
"@react-types/shared": "^3.34.0",
|
|
8663
|
+
"@swc/helpers": "^0.5.0",
|
|
8664
|
+
"use-sync-external-store": "^1.6.0"
|
|
8665
|
+
},
|
|
8666
|
+
"peerDependencies": {
|
|
8667
|
+
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
8668
|
+
}
|
|
8669
|
+
},
|
|
8654
8670
|
"node_modules/react-transition-group": {
|
|
8655
8671
|
"version": "4.4.5",
|
|
8656
8672
|
"integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
|
|
@@ -8688,14 +8704,14 @@
|
|
|
8688
8704
|
}
|
|
8689
8705
|
},
|
|
8690
8706
|
"node_modules/recharts": {
|
|
8691
|
-
"version": "3.
|
|
8692
|
-
"integrity": "sha512-
|
|
8707
|
+
"version": "3.8.1",
|
|
8708
|
+
"integrity": "sha512-mwzmO1s9sFL0TduUpwndxCUNoXsBw3u3E/0+A+cLcrSfQitSG62L32N69GhqUrrT5qKcAE3pCGVINC6pqkBBQg==",
|
|
8693
8709
|
"license": "MIT",
|
|
8694
8710
|
"workspaces": [
|
|
8695
8711
|
"www"
|
|
8696
8712
|
],
|
|
8697
8713
|
"dependencies": {
|
|
8698
|
-
"@reduxjs/toolkit": "1.
|
|
8714
|
+
"@reduxjs/toolkit": "^1.9.0 || 2.x.x",
|
|
8699
8715
|
"clsx": "^2.1.1",
|
|
8700
8716
|
"decimal.js-light": "^2.5.1",
|
|
8701
8717
|
"es-toolkit": "^1.39.3",
|
|
@@ -8716,6 +8732,20 @@
|
|
|
8716
8732
|
"react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
8717
8733
|
}
|
|
8718
8734
|
},
|
|
8735
|
+
"node_modules/recharts/node_modules/immer": {
|
|
8736
|
+
"version": "10.2.0",
|
|
8737
|
+
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
8738
|
+
"license": "MIT",
|
|
8739
|
+
"funding": {
|
|
8740
|
+
"type": "opencollective",
|
|
8741
|
+
"url": "https://opencollective.com/immer"
|
|
8742
|
+
}
|
|
8743
|
+
},
|
|
8744
|
+
"node_modules/recharts/node_modules/reselect": {
|
|
8745
|
+
"version": "5.1.1",
|
|
8746
|
+
"integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==",
|
|
8747
|
+
"license": "MIT"
|
|
8748
|
+
},
|
|
8719
8749
|
"node_modules/redux": {
|
|
8720
8750
|
"version": "5.0.1",
|
|
8721
8751
|
"integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
|
|
@@ -8813,8 +8843,8 @@
|
|
|
8813
8843
|
"license": "MIT"
|
|
8814
8844
|
},
|
|
8815
8845
|
"node_modules/regjsparser": {
|
|
8816
|
-
"version": "0.13.
|
|
8817
|
-
"integrity": "sha512-
|
|
8846
|
+
"version": "0.13.1",
|
|
8847
|
+
"integrity": "sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==",
|
|
8818
8848
|
"dev": true,
|
|
8819
8849
|
"license": "BSD-2-Clause",
|
|
8820
8850
|
"dependencies": {
|
|
@@ -8825,15 +8855,16 @@
|
|
|
8825
8855
|
}
|
|
8826
8856
|
},
|
|
8827
8857
|
"node_modules/reselect": {
|
|
8828
|
-
"version": "5.
|
|
8829
|
-
"integrity": "sha512-
|
|
8858
|
+
"version": "5.2.0",
|
|
8859
|
+
"integrity": "sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==",
|
|
8830
8860
|
"license": "MIT"
|
|
8831
8861
|
},
|
|
8832
8862
|
"node_modules/resolve": {
|
|
8833
|
-
"version": "1.22.
|
|
8834
|
-
"integrity": "sha512-
|
|
8863
|
+
"version": "1.22.12",
|
|
8864
|
+
"integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==",
|
|
8835
8865
|
"license": "MIT",
|
|
8836
8866
|
"dependencies": {
|
|
8867
|
+
"es-errors": "^1.3.0",
|
|
8837
8868
|
"is-core-module": "^2.16.1",
|
|
8838
8869
|
"path-parse": "^1.0.7",
|
|
8839
8870
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
@@ -8919,14 +8950,14 @@
|
|
|
8919
8950
|
}
|
|
8920
8951
|
},
|
|
8921
8952
|
"node_modules/safe-array-concat": {
|
|
8922
|
-
"version": "1.1.
|
|
8923
|
-
"integrity": "sha512-
|
|
8953
|
+
"version": "1.1.4",
|
|
8954
|
+
"integrity": "sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==",
|
|
8924
8955
|
"dev": true,
|
|
8925
8956
|
"license": "MIT",
|
|
8926
8957
|
"dependencies": {
|
|
8927
|
-
"call-bind": "^1.0.
|
|
8928
|
-
"call-bound": "^1.0.
|
|
8929
|
-
"get-intrinsic": "^1.
|
|
8958
|
+
"call-bind": "^1.0.9",
|
|
8959
|
+
"call-bound": "^1.0.4",
|
|
8960
|
+
"get-intrinsic": "^1.3.0",
|
|
8930
8961
|
"has-symbols": "^1.1.0",
|
|
8931
8962
|
"isarray": "^2.0.5"
|
|
8932
8963
|
},
|
|
@@ -9070,8 +9101,8 @@
|
|
|
9070
9101
|
}
|
|
9071
9102
|
},
|
|
9072
9103
|
"node_modules/sharp/node_modules/semver": {
|
|
9073
|
-
"version": "7.
|
|
9074
|
-
"integrity": "sha512-
|
|
9104
|
+
"version": "7.8.1",
|
|
9105
|
+
"integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==",
|
|
9075
9106
|
"license": "ISC",
|
|
9076
9107
|
"optional": true,
|
|
9077
9108
|
"bin": {
|
|
@@ -9120,13 +9151,13 @@
|
|
|
9120
9151
|
}
|
|
9121
9152
|
},
|
|
9122
9153
|
"node_modules/side-channel-list": {
|
|
9123
|
-
"version": "1.0.
|
|
9124
|
-
"integrity": "sha512-
|
|
9154
|
+
"version": "1.0.1",
|
|
9155
|
+
"integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
|
|
9125
9156
|
"dev": true,
|
|
9126
9157
|
"license": "MIT",
|
|
9127
9158
|
"dependencies": {
|
|
9128
9159
|
"es-errors": "^1.3.0",
|
|
9129
|
-
"object-inspect": "^1.13.
|
|
9160
|
+
"object-inspect": "^1.13.4"
|
|
9130
9161
|
},
|
|
9131
9162
|
"engines": {
|
|
9132
9163
|
"node": ">= 0.4"
|
|
@@ -9208,15 +9239,15 @@
|
|
|
9208
9239
|
}
|
|
9209
9240
|
},
|
|
9210
9241
|
"node_modules/slice-ansi": {
|
|
9211
|
-
"version": "
|
|
9212
|
-
"integrity": "sha512-
|
|
9242
|
+
"version": "8.0.0",
|
|
9243
|
+
"integrity": "sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==",
|
|
9213
9244
|
"license": "MIT",
|
|
9214
9245
|
"dependencies": {
|
|
9215
|
-
"ansi-styles": "^6.2.
|
|
9216
|
-
"is-fullwidth-code-point": "^5.
|
|
9246
|
+
"ansi-styles": "^6.2.3",
|
|
9247
|
+
"is-fullwidth-code-point": "^5.1.0"
|
|
9217
9248
|
},
|
|
9218
9249
|
"engines": {
|
|
9219
|
-
"node": ">=
|
|
9250
|
+
"node": ">=20"
|
|
9220
9251
|
},
|
|
9221
9252
|
"funding": {
|
|
9222
9253
|
"url": "https://github.com/chalk/slice-ansi?sponsor=1"
|
|
@@ -9284,12 +9315,12 @@
|
|
|
9284
9315
|
}
|
|
9285
9316
|
},
|
|
9286
9317
|
"node_modules/string-width": {
|
|
9287
|
-
"version": "8.
|
|
9288
|
-
"integrity": "sha512-
|
|
9318
|
+
"version": "8.2.1",
|
|
9319
|
+
"integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==",
|
|
9289
9320
|
"license": "MIT",
|
|
9290
9321
|
"dependencies": {
|
|
9291
|
-
"get-east-asian-width": "^1.
|
|
9292
|
-
"strip-ansi": "^7.1.
|
|
9322
|
+
"get-east-asian-width": "^1.5.0",
|
|
9323
|
+
"strip-ansi": "^7.1.2"
|
|
9293
9324
|
},
|
|
9294
9325
|
"engines": {
|
|
9295
9326
|
"node": ">=20"
|
|
@@ -9406,11 +9437,11 @@
|
|
|
9406
9437
|
}
|
|
9407
9438
|
},
|
|
9408
9439
|
"node_modules/strip-ansi": {
|
|
9409
|
-
"version": "7.
|
|
9410
|
-
"integrity": "sha512-
|
|
9440
|
+
"version": "7.2.0",
|
|
9441
|
+
"integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==",
|
|
9411
9442
|
"license": "MIT",
|
|
9412
9443
|
"dependencies": {
|
|
9413
|
-
"ansi-regex": "^6.
|
|
9444
|
+
"ansi-regex": "^6.2.2"
|
|
9414
9445
|
},
|
|
9415
9446
|
"engines": {
|
|
9416
9447
|
"node": ">=12"
|
|
@@ -9516,14 +9547,22 @@
|
|
|
9516
9547
|
"integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==",
|
|
9517
9548
|
"license": "MIT"
|
|
9518
9549
|
},
|
|
9550
|
+
"node_modules/tinyexec": {
|
|
9551
|
+
"version": "1.1.2",
|
|
9552
|
+
"integrity": "sha512-dAqSqE/RabpBKI8+h26GfLq6Vb3JVXs30XYQjdMjaj/c2tS8IYYMbIzP599KtRj7c57/wYApb3QjgRgXmrCukA==",
|
|
9553
|
+
"license": "MIT",
|
|
9554
|
+
"engines": {
|
|
9555
|
+
"node": ">=18"
|
|
9556
|
+
}
|
|
9557
|
+
},
|
|
9519
9558
|
"node_modules/tinyglobby": {
|
|
9520
|
-
"version": "0.2.
|
|
9521
|
-
"integrity": "sha512-
|
|
9559
|
+
"version": "0.2.16",
|
|
9560
|
+
"integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==",
|
|
9522
9561
|
"dev": true,
|
|
9523
9562
|
"license": "MIT",
|
|
9524
9563
|
"dependencies": {
|
|
9525
9564
|
"fdir": "^6.5.0",
|
|
9526
|
-
"picomatch": "^4.0.
|
|
9565
|
+
"picomatch": "^4.0.4"
|
|
9527
9566
|
},
|
|
9528
9567
|
"engines": {
|
|
9529
9568
|
"node": ">=12.0.0"
|
|
@@ -9550,8 +9589,8 @@
|
|
|
9550
9589
|
}
|
|
9551
9590
|
},
|
|
9552
9591
|
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
9553
|
-
"version": "4.0.
|
|
9554
|
-
"integrity": "sha512-
|
|
9592
|
+
"version": "4.0.4",
|
|
9593
|
+
"integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==",
|
|
9555
9594
|
"dev": true,
|
|
9556
9595
|
"license": "MIT",
|
|
9557
9596
|
"engines": {
|
|
@@ -9564,6 +9603,7 @@
|
|
|
9564
9603
|
"node_modules/to-regex-range": {
|
|
9565
9604
|
"version": "5.0.1",
|
|
9566
9605
|
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
9606
|
+
"dev": true,
|
|
9567
9607
|
"license": "MIT",
|
|
9568
9608
|
"dependencies": {
|
|
9569
9609
|
"is-number": "^7.0.0"
|
|
@@ -9573,8 +9613,8 @@
|
|
|
9573
9613
|
}
|
|
9574
9614
|
},
|
|
9575
9615
|
"node_modules/ts-api-utils": {
|
|
9576
|
-
"version": "2.
|
|
9577
|
-
"integrity": "sha512-
|
|
9616
|
+
"version": "2.5.0",
|
|
9617
|
+
"integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==",
|
|
9578
9618
|
"dev": true,
|
|
9579
9619
|
"license": "MIT",
|
|
9580
9620
|
"engines": {
|
|
@@ -9797,37 +9837,40 @@
|
|
|
9797
9837
|
}
|
|
9798
9838
|
},
|
|
9799
9839
|
"node_modules/unrs-resolver": {
|
|
9800
|
-
"version": "1.
|
|
9801
|
-
"integrity": "sha512-
|
|
9840
|
+
"version": "1.12.2",
|
|
9841
|
+
"integrity": "sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==",
|
|
9802
9842
|
"dev": true,
|
|
9803
9843
|
"hasInstallScript": true,
|
|
9804
9844
|
"license": "MIT",
|
|
9805
9845
|
"dependencies": {
|
|
9806
|
-
"napi-postinstall": "^0.3.
|
|
9846
|
+
"napi-postinstall": "^0.3.4"
|
|
9807
9847
|
},
|
|
9808
9848
|
"funding": {
|
|
9809
9849
|
"url": "https://opencollective.com/unrs-resolver"
|
|
9810
9850
|
},
|
|
9811
9851
|
"optionalDependencies": {
|
|
9812
|
-
"@unrs/resolver-binding-android-arm-eabi": "1.
|
|
9813
|
-
"@unrs/resolver-binding-android-arm64": "1.
|
|
9814
|
-
"@unrs/resolver-binding-darwin-arm64": "1.
|
|
9815
|
-
"@unrs/resolver-binding-darwin-x64": "1.
|
|
9816
|
-
"@unrs/resolver-binding-freebsd-x64": "1.
|
|
9817
|
-
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.
|
|
9818
|
-
"@unrs/resolver-binding-linux-arm-musleabihf": "1.
|
|
9819
|
-
"@unrs/resolver-binding-linux-arm64-gnu": "1.
|
|
9820
|
-
"@unrs/resolver-binding-linux-arm64-musl": "1.
|
|
9821
|
-
"@unrs/resolver-binding-linux-
|
|
9822
|
-
"@unrs/resolver-binding-linux-
|
|
9823
|
-
"@unrs/resolver-binding-linux-
|
|
9824
|
-
"@unrs/resolver-binding-linux-
|
|
9825
|
-
"@unrs/resolver-binding-linux-
|
|
9826
|
-
"@unrs/resolver-binding-linux-
|
|
9827
|
-
"@unrs/resolver-binding-
|
|
9828
|
-
"@unrs/resolver-binding-
|
|
9829
|
-
"@unrs/resolver-binding-
|
|
9830
|
-
"@unrs/resolver-binding-
|
|
9852
|
+
"@unrs/resolver-binding-android-arm-eabi": "1.12.2",
|
|
9853
|
+
"@unrs/resolver-binding-android-arm64": "1.12.2",
|
|
9854
|
+
"@unrs/resolver-binding-darwin-arm64": "1.12.2",
|
|
9855
|
+
"@unrs/resolver-binding-darwin-x64": "1.12.2",
|
|
9856
|
+
"@unrs/resolver-binding-freebsd-x64": "1.12.2",
|
|
9857
|
+
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.12.2",
|
|
9858
|
+
"@unrs/resolver-binding-linux-arm-musleabihf": "1.12.2",
|
|
9859
|
+
"@unrs/resolver-binding-linux-arm64-gnu": "1.12.2",
|
|
9860
|
+
"@unrs/resolver-binding-linux-arm64-musl": "1.12.2",
|
|
9861
|
+
"@unrs/resolver-binding-linux-loong64-gnu": "1.12.2",
|
|
9862
|
+
"@unrs/resolver-binding-linux-loong64-musl": "1.12.2",
|
|
9863
|
+
"@unrs/resolver-binding-linux-ppc64-gnu": "1.12.2",
|
|
9864
|
+
"@unrs/resolver-binding-linux-riscv64-gnu": "1.12.2",
|
|
9865
|
+
"@unrs/resolver-binding-linux-riscv64-musl": "1.12.2",
|
|
9866
|
+
"@unrs/resolver-binding-linux-s390x-gnu": "1.12.2",
|
|
9867
|
+
"@unrs/resolver-binding-linux-x64-gnu": "1.12.2",
|
|
9868
|
+
"@unrs/resolver-binding-linux-x64-musl": "1.12.2",
|
|
9869
|
+
"@unrs/resolver-binding-openharmony-arm64": "1.12.2",
|
|
9870
|
+
"@unrs/resolver-binding-wasm32-wasi": "1.12.2",
|
|
9871
|
+
"@unrs/resolver-binding-win32-arm64-msvc": "1.12.2",
|
|
9872
|
+
"@unrs/resolver-binding-win32-ia32-msvc": "1.12.2",
|
|
9873
|
+
"@unrs/resolver-binding-win32-x64-msvc": "1.12.2"
|
|
9831
9874
|
}
|
|
9832
9875
|
},
|
|
9833
9876
|
"node_modules/update-browserslist-db": {
|
|
@@ -10085,8 +10128,8 @@
|
|
|
10085
10128
|
"license": "ISC"
|
|
10086
10129
|
},
|
|
10087
10130
|
"node_modules/yaml": {
|
|
10088
|
-
"version": "1.10.
|
|
10089
|
-
"integrity": "sha512-
|
|
10131
|
+
"version": "1.10.3",
|
|
10132
|
+
"integrity": "sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA==",
|
|
10090
10133
|
"license": "ISC",
|
|
10091
10134
|
"engines": {
|
|
10092
10135
|
"node": ">= 6"
|