@salesforce/templates 66.11.0 → 66.11.1
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/lib/templates/project/reactexternalapp/_p_/_m_/_w_/_a_/package-lock.json +361 -332
- package/lib/templates/project/reactinternalapp/_p_/_m_/_w_/_a_/package-lock.json +354 -325
- package/lib/templates/uiBundles/angularbasic/angular.json +11 -7
- package/lib/templates/uiBundles/angularbasic/eslint.config.js +4 -0
- package/lib/templates/uiBundles/angularbasic/package-lock.json +292 -239
- package/lib/templates/uiBundles/angularbasic/package.json +4 -0
- package/lib/templates/uiBundles/angularbasic/src/app/api/{graphql-client.service.spec.ts → data-client.service.spec.ts} +36 -6
- package/lib/templates/uiBundles/angularbasic/src/app/api/data-client.service.ts +74 -0
- package/lib/templates/uiBundles/angularbasic/src/app/app.config.ts +15 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.routes.ts +6 -1
- package/lib/templates/uiBundles/angularbasic/src/app/app.ts +7 -2
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.html +2 -1
- package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.ts +9 -3
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/_field-size.scss +42 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.html +31 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/alert/alert.component.ts +53 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.html +18 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.scss +112 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/button/button.component.ts +57 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.scss +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/card/card.component.ts +110 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/collapsible/collapsible.component.ts +26 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.html +25 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.scss +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-picker/date-picker.component.ts +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.html +34 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.scss +33 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/date-range-picker/date-range-picker.component.ts +66 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.html +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/dialog/dialog.component.ts +55 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.html +21 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field/field.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/field-size.ts +8 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.html +19 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/input/input.component.ts +36 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.html +3 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/label/label.component.ts +17 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.html +10 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/paginator/paginator.component.ts +37 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.html +41 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/popover/popover.component.ts +40 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.html +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.scss +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/select/select.component.ts +72 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.scss +23 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/separator/separator.component.ts +56 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.scss +28 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/skeleton/skeleton.component.ts +24 -0
- package/lib/templates/uiBundles/angularbasic/src/app/components/ui/spinner/spinner.component.ts +35 -0
- package/lib/templates/uiBundles/angularbasic/src/app/pages/home/home.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/pages/not-found/not-found.component.ts +7 -1
- package/lib/templates/uiBundles/angularbasic/src/app/utils/async-data.ts +99 -0
- package/lib/templates/uiBundles/angularbasic/src/index.html +1 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.scss +170 -0
- package/lib/templates/uiBundles/angularbasic/src/theme.scss +39 -0
- package/lib/templates/uiBundles/reactbasic/package-lock.json +354 -325
- package/package.json +3 -3
- package/lib/templates/uiBundles/angularbasic/src/app/api/graphql-client.service.ts +0 -48
- package/lib/templates/uiBundles/angularbasic/src/app/app.css +0 -0
- package/lib/templates/uiBundles/angularbasic/src/styles.css +0 -12
- /package/lib/templates/uiBundles/angularbasic/src/app/{layout → components/layout/app-layout}/app-layout.component.spec.ts +0 -0
|
@@ -92,14 +92,14 @@
|
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
"node_modules/@ardatan/relay-compiler": {
|
|
95
|
-
"version": "13.0.
|
|
96
|
-
"resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-13.0.
|
|
97
|
-
"integrity": "sha512-
|
|
95
|
+
"version": "13.0.2",
|
|
96
|
+
"resolved": "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-13.0.2.tgz",
|
|
97
|
+
"integrity": "sha512-VFpv9UP820SiwDUPYtq7PmD3jifzZlevkQ26bhbSzFeruSTys0eHzQCZyKg+IhgmZzwPI9AFjPe26ABNjGeIKg==",
|
|
98
98
|
"dev": true,
|
|
99
99
|
"license": "MIT",
|
|
100
100
|
"dependencies": {
|
|
101
|
-
"@babel/runtime": "^
|
|
102
|
-
"immutable": "^5.1.
|
|
101
|
+
"@babel/runtime": "^8.0.0",
|
|
102
|
+
"immutable": "^5.1.9",
|
|
103
103
|
"invariant": "^2.2.4"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
@@ -536,14 +536,11 @@
|
|
|
536
536
|
}
|
|
537
537
|
},
|
|
538
538
|
"node_modules/@babel/runtime": {
|
|
539
|
-
"version": "
|
|
540
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-
|
|
541
|
-
"integrity": "sha512-
|
|
539
|
+
"version": "8.0.0",
|
|
540
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-8.0.0.tgz",
|
|
541
|
+
"integrity": "sha512-sL6cvO2IfkSu/iU+zs2S/w01B7A8V7suXSIKEN4hPFFdZoiPGxrj5pAG0lCaqLWiEIrjKzdznIWuaLcxPR53qw==",
|
|
542
542
|
"dev": true,
|
|
543
|
-
"license": "MIT"
|
|
544
|
-
"engines": {
|
|
545
|
-
"node": ">=6.9.0"
|
|
546
|
-
}
|
|
543
|
+
"license": "MIT"
|
|
547
544
|
},
|
|
548
545
|
"node_modules/@babel/template": {
|
|
549
546
|
"version": "7.29.7",
|
|
@@ -1667,9 +1664,9 @@
|
|
|
1667
1664
|
}
|
|
1668
1665
|
},
|
|
1669
1666
|
"node_modules/@eslint/eslintrc": {
|
|
1670
|
-
"version": "3.3.
|
|
1671
|
-
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.
|
|
1672
|
-
"integrity": "sha512-
|
|
1667
|
+
"version": "3.3.6",
|
|
1668
|
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz",
|
|
1669
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
1673
1670
|
"dev": true,
|
|
1674
1671
|
"license": "MIT",
|
|
1675
1672
|
"dependencies": {
|
|
@@ -1679,7 +1676,7 @@
|
|
|
1679
1676
|
"globals": "^14.0.0",
|
|
1680
1677
|
"ignore": "^5.2.0",
|
|
1681
1678
|
"import-fresh": "^3.2.1",
|
|
1682
|
-
"js-yaml": "^4.
|
|
1679
|
+
"js-yaml": "^4.3.0",
|
|
1683
1680
|
"minimatch": "^3.1.5",
|
|
1684
1681
|
"strip-json-comments": "^3.1.1"
|
|
1685
1682
|
},
|
|
@@ -1728,9 +1725,9 @@
|
|
|
1728
1725
|
"license": "MIT"
|
|
1729
1726
|
},
|
|
1730
1727
|
"node_modules/@eslint/js": {
|
|
1731
|
-
"version": "9.39.
|
|
1732
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
1733
|
-
"integrity": "sha512-
|
|
1728
|
+
"version": "9.39.5",
|
|
1729
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz",
|
|
1730
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
1734
1731
|
"dev": true,
|
|
1735
1732
|
"license": "MIT",
|
|
1736
1733
|
"engines": {
|
|
@@ -1772,31 +1769,31 @@
|
|
|
1772
1769
|
"license": "MIT"
|
|
1773
1770
|
},
|
|
1774
1771
|
"node_modules/@floating-ui/core": {
|
|
1775
|
-
"version": "1.
|
|
1776
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.
|
|
1777
|
-
"integrity": "sha512-
|
|
1772
|
+
"version": "1.8.0",
|
|
1773
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.8.0.tgz",
|
|
1774
|
+
"integrity": "sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==",
|
|
1778
1775
|
"license": "MIT",
|
|
1779
1776
|
"dependencies": {
|
|
1780
|
-
"@floating-ui/utils": "^0.2.
|
|
1777
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1781
1778
|
}
|
|
1782
1779
|
},
|
|
1783
1780
|
"node_modules/@floating-ui/dom": {
|
|
1784
|
-
"version": "1.
|
|
1785
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.
|
|
1786
|
-
"integrity": "sha512-
|
|
1781
|
+
"version": "1.8.0",
|
|
1782
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.8.0.tgz",
|
|
1783
|
+
"integrity": "sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==",
|
|
1787
1784
|
"license": "MIT",
|
|
1788
1785
|
"dependencies": {
|
|
1789
|
-
"@floating-ui/core": "^1.
|
|
1790
|
-
"@floating-ui/utils": "^0.2.
|
|
1786
|
+
"@floating-ui/core": "^1.8.0",
|
|
1787
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1791
1788
|
}
|
|
1792
1789
|
},
|
|
1793
1790
|
"node_modules/@floating-ui/react-dom": {
|
|
1794
|
-
"version": "2.1.
|
|
1795
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.
|
|
1796
|
-
"integrity": "sha512-
|
|
1791
|
+
"version": "2.1.9",
|
|
1792
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.9.tgz",
|
|
1793
|
+
"integrity": "sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==",
|
|
1797
1794
|
"license": "MIT",
|
|
1798
1795
|
"dependencies": {
|
|
1799
|
-
"@floating-ui/dom": "^1.
|
|
1796
|
+
"@floating-ui/dom": "^1.8.0"
|
|
1800
1797
|
},
|
|
1801
1798
|
"peerDependencies": {
|
|
1802
1799
|
"react": ">=16.8.0",
|
|
@@ -1804,9 +1801,9 @@
|
|
|
1804
1801
|
}
|
|
1805
1802
|
},
|
|
1806
1803
|
"node_modules/@floating-ui/utils": {
|
|
1807
|
-
"version": "0.2.
|
|
1808
|
-
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.
|
|
1809
|
-
"integrity": "sha512-
|
|
1804
|
+
"version": "0.2.12",
|
|
1805
|
+
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.12.tgz",
|
|
1806
|
+
"integrity": "sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==",
|
|
1810
1807
|
"license": "MIT"
|
|
1811
1808
|
},
|
|
1812
1809
|
"node_modules/@graphql-codegen/add": {
|
|
@@ -2154,13 +2151,13 @@
|
|
|
2154
2151
|
}
|
|
2155
2152
|
},
|
|
2156
2153
|
"node_modules/@graphql-tools/apollo-engine-loader": {
|
|
2157
|
-
"version": "8.0.
|
|
2158
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.
|
|
2159
|
-
"integrity": "sha512-
|
|
2154
|
+
"version": "8.0.34",
|
|
2155
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.34.tgz",
|
|
2156
|
+
"integrity": "sha512-pxmrIbUtpiH2/Dx0093EQ0x7dXWdlfAZ97uSY280CkUxIB8EYZeNeV2pvk6HksZzBtHrprLRysrjnegLOmQBRA==",
|
|
2160
2157
|
"dev": true,
|
|
2161
2158
|
"license": "MIT",
|
|
2162
2159
|
"dependencies": {
|
|
2163
|
-
"@graphql-tools/utils": "^11.2.
|
|
2160
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2164
2161
|
"@whatwg-node/fetch": "^0.10.13",
|
|
2165
2162
|
"sync-fetch": "0.6.0",
|
|
2166
2163
|
"tslib": "^2.4.0"
|
|
@@ -2192,14 +2189,14 @@
|
|
|
2192
2189
|
}
|
|
2193
2190
|
},
|
|
2194
2191
|
"node_modules/@graphql-tools/code-file-loader": {
|
|
2195
|
-
"version": "8.1.
|
|
2196
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.
|
|
2197
|
-
"integrity": "sha512-
|
|
2192
|
+
"version": "8.1.36",
|
|
2193
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.36.tgz",
|
|
2194
|
+
"integrity": "sha512-EAIogV/vUmcrNa4icqnx5Xr5z3uLNSZ6867DEJyizuUfOCnD5JzCBQNsBjOBl3R5rzUiV3+GGSzzo15/jLN4oQ==",
|
|
2198
2195
|
"dev": true,
|
|
2199
2196
|
"license": "MIT",
|
|
2200
2197
|
"dependencies": {
|
|
2201
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
2202
|
-
"@graphql-tools/utils": "^11.2.
|
|
2198
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.35",
|
|
2199
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2203
2200
|
"globby": "^11.0.3",
|
|
2204
2201
|
"tslib": "^2.4.0",
|
|
2205
2202
|
"unixify": "^1.0.0"
|
|
@@ -2212,9 +2209,9 @@
|
|
|
2212
2209
|
}
|
|
2213
2210
|
},
|
|
2214
2211
|
"node_modules/@graphql-tools/delegate": {
|
|
2215
|
-
"version": "12.0.
|
|
2216
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.
|
|
2217
|
-
"integrity": "sha512-
|
|
2212
|
+
"version": "12.0.20",
|
|
2213
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-12.0.20.tgz",
|
|
2214
|
+
"integrity": "sha512-87XNqi0Um62ecXCi/k0clvdIPCBvbIrAddZXY9rKWe1jMpHN8BgkEnHUOEI4S6LSOvyT/9y/22clVk0OOSTi9g==",
|
|
2218
2215
|
"dev": true,
|
|
2219
2216
|
"license": "MIT",
|
|
2220
2217
|
"dependencies": {
|
|
@@ -2252,15 +2249,15 @@
|
|
|
2252
2249
|
}
|
|
2253
2250
|
},
|
|
2254
2251
|
"node_modules/@graphql-tools/executor": {
|
|
2255
|
-
"version": "1.5.
|
|
2256
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.
|
|
2257
|
-
"integrity": "sha512-
|
|
2252
|
+
"version": "1.5.7",
|
|
2253
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.7.tgz",
|
|
2254
|
+
"integrity": "sha512-UcXVClkBml+qyGEsQxfEaAkboqySVGFUd9ivn7pDc9jZSckgF6zL21cNxuRH5ZA2exneV3PTtcc0I0rDOdE0Tg==",
|
|
2258
2255
|
"dev": true,
|
|
2259
2256
|
"license": "MIT",
|
|
2260
2257
|
"dependencies": {
|
|
2261
|
-
"@graphql-tools/utils": "^11.2.
|
|
2258
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2262
2259
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
2263
|
-
"@repeaterjs/repeater": "^3.0
|
|
2260
|
+
"@repeaterjs/repeater": "^3.1.0",
|
|
2264
2261
|
"@whatwg-node/disposablestack": "^0.0.6",
|
|
2265
2262
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
2266
2263
|
"tslib": "^2.4.0"
|
|
@@ -2336,17 +2333,17 @@
|
|
|
2336
2333
|
}
|
|
2337
2334
|
},
|
|
2338
2335
|
"node_modules/@graphql-tools/executor-legacy-ws": {
|
|
2339
|
-
"version": "1.1.
|
|
2340
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.
|
|
2341
|
-
"integrity": "sha512-
|
|
2336
|
+
"version": "1.1.32",
|
|
2337
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.32.tgz",
|
|
2338
|
+
"integrity": "sha512-rmSp846dAgEGtwdQ7ntdgpLJzzRvw5rE8sR7ASPci2QoIn3McxVYwjq52SMNntoH4VaBeI/BrpyQIN5L68zAfA==",
|
|
2342
2339
|
"dev": true,
|
|
2343
2340
|
"license": "MIT",
|
|
2344
2341
|
"dependencies": {
|
|
2345
|
-
"@graphql-tools/utils": "^11.2.
|
|
2342
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2346
2343
|
"@types/ws": "^8.0.0",
|
|
2347
2344
|
"isomorphic-ws": "^5.0.0",
|
|
2348
2345
|
"tslib": "^2.4.0",
|
|
2349
|
-
"ws": "^8.21.
|
|
2346
|
+
"ws": "^8.21.1"
|
|
2350
2347
|
},
|
|
2351
2348
|
"engines": {
|
|
2352
2349
|
"node": ">=16.0.0"
|
|
@@ -2356,14 +2353,14 @@
|
|
|
2356
2353
|
}
|
|
2357
2354
|
},
|
|
2358
2355
|
"node_modules/@graphql-tools/git-loader": {
|
|
2359
|
-
"version": "8.0.
|
|
2360
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.
|
|
2361
|
-
"integrity": "sha512-
|
|
2356
|
+
"version": "8.0.40",
|
|
2357
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.40.tgz",
|
|
2358
|
+
"integrity": "sha512-aQkcTTymjeQBREoH8/x5JZWt/banq9D7fs8Gqqd2HGirh8JBYGoEbKm45bSdUqCLnqsOJ2oal5A73rsC7ASASw==",
|
|
2362
2359
|
"dev": true,
|
|
2363
2360
|
"license": "MIT",
|
|
2364
2361
|
"dependencies": {
|
|
2365
|
-
"@graphql-tools/graphql-tag-pluck": "8.3.
|
|
2366
|
-
"@graphql-tools/utils": "^11.2.
|
|
2362
|
+
"@graphql-tools/graphql-tag-pluck": "8.3.35",
|
|
2363
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2367
2364
|
"is-glob": "4.0.3",
|
|
2368
2365
|
"micromatch": "^4.0.8",
|
|
2369
2366
|
"tslib": "^2.4.0",
|
|
@@ -2377,15 +2374,15 @@
|
|
|
2377
2374
|
}
|
|
2378
2375
|
},
|
|
2379
2376
|
"node_modules/@graphql-tools/github-loader": {
|
|
2380
|
-
"version": "9.1.
|
|
2381
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.
|
|
2382
|
-
"integrity": "sha512
|
|
2377
|
+
"version": "9.1.6",
|
|
2378
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.6.tgz",
|
|
2379
|
+
"integrity": "sha512-hWsCcTZJ5NLKDUYynZjK7kVh/xmc/MpnLkBII+WQHCLOOXimaESZRnUuoo/nMqOwBKghBC0iF1nHiG9PqD9t3w==",
|
|
2383
2380
|
"dev": true,
|
|
2384
2381
|
"license": "MIT",
|
|
2385
2382
|
"dependencies": {
|
|
2386
2383
|
"@graphql-tools/executor-http": "^3.3.0",
|
|
2387
|
-
"@graphql-tools/graphql-tag-pluck": "^8.3.
|
|
2388
|
-
"@graphql-tools/utils": "^11.2.
|
|
2384
|
+
"@graphql-tools/graphql-tag-pluck": "^8.3.35",
|
|
2385
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2389
2386
|
"@whatwg-node/fetch": "^0.10.13",
|
|
2390
2387
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
2391
2388
|
"sync-fetch": "0.6.0",
|
|
@@ -2399,14 +2396,14 @@
|
|
|
2399
2396
|
}
|
|
2400
2397
|
},
|
|
2401
2398
|
"node_modules/@graphql-tools/graphql-file-loader": {
|
|
2402
|
-
"version": "8.1.
|
|
2403
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.
|
|
2404
|
-
"integrity": "sha512-
|
|
2399
|
+
"version": "8.1.18",
|
|
2400
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.18.tgz",
|
|
2401
|
+
"integrity": "sha512-MBbAPFfGZN+jaRQQkqfY1Ztj4ftFgk9m7zh0h1jQC83xsVJ8zvMk2TGwg7g3lEGqa0cLOOEp/a1/78MSdhj2Zg==",
|
|
2405
2402
|
"dev": true,
|
|
2406
2403
|
"license": "MIT",
|
|
2407
2404
|
"dependencies": {
|
|
2408
|
-
"@graphql-tools/import": "^7.1.
|
|
2409
|
-
"@graphql-tools/utils": "^11.2.
|
|
2405
|
+
"@graphql-tools/import": "^7.1.18",
|
|
2406
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2410
2407
|
"globby": "^11.0.3",
|
|
2411
2408
|
"tslib": "^2.4.0",
|
|
2412
2409
|
"unixify": "^1.0.0"
|
|
@@ -2419,9 +2416,9 @@
|
|
|
2419
2416
|
}
|
|
2420
2417
|
},
|
|
2421
2418
|
"node_modules/@graphql-tools/graphql-tag-pluck": {
|
|
2422
|
-
"version": "8.3.
|
|
2423
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.
|
|
2424
|
-
"integrity": "sha512-
|
|
2419
|
+
"version": "8.3.35",
|
|
2420
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.35.tgz",
|
|
2421
|
+
"integrity": "sha512-k6udGhRFzf/FnfV/pl+2dxVURHtqdOj8evG3xFJahMS9bSMLkmTRCqTaR8e+ErYZEUODE2zCSPth3JLQEfAEqQ==",
|
|
2425
2422
|
"dev": true,
|
|
2426
2423
|
"license": "MIT",
|
|
2427
2424
|
"dependencies": {
|
|
@@ -2430,7 +2427,7 @@
|
|
|
2430
2427
|
"@babel/plugin-syntax-import-assertions": "^7.26.0",
|
|
2431
2428
|
"@babel/traverse": "^7.26.10",
|
|
2432
2429
|
"@babel/types": "^7.26.10",
|
|
2433
|
-
"@graphql-tools/utils": "^11.2.
|
|
2430
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2434
2431
|
"tslib": "^2.4.0"
|
|
2435
2432
|
},
|
|
2436
2433
|
"engines": {
|
|
@@ -2441,13 +2438,13 @@
|
|
|
2441
2438
|
}
|
|
2442
2439
|
},
|
|
2443
2440
|
"node_modules/@graphql-tools/import": {
|
|
2444
|
-
"version": "7.1.
|
|
2445
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.
|
|
2446
|
-
"integrity": "sha512
|
|
2441
|
+
"version": "7.1.18",
|
|
2442
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.18.tgz",
|
|
2443
|
+
"integrity": "sha512-/lCEk28rbUiypbX8jl5x0RBiHDsXk3YJ5jAU1nlqXEdxNiNI6p5ts+vt0N7UximIuolwV7BeRxLn5RUejyKZYQ==",
|
|
2447
2444
|
"dev": true,
|
|
2448
2445
|
"license": "MIT",
|
|
2449
2446
|
"dependencies": {
|
|
2450
|
-
"@graphql-tools/utils": "^11.2.
|
|
2447
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2451
2448
|
"resolve-from": "5.0.0",
|
|
2452
2449
|
"tslib": "^2.4.0"
|
|
2453
2450
|
},
|
|
@@ -2459,13 +2456,13 @@
|
|
|
2459
2456
|
}
|
|
2460
2457
|
},
|
|
2461
2458
|
"node_modules/@graphql-tools/json-file-loader": {
|
|
2462
|
-
"version": "8.0.
|
|
2463
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.
|
|
2464
|
-
"integrity": "sha512-
|
|
2459
|
+
"version": "8.0.32",
|
|
2460
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.32.tgz",
|
|
2461
|
+
"integrity": "sha512-PJ06nGC836vWWLCAPignLKAnIF+CKNkXlCIe9zkkb02jFPNdG5nA0PUxa1rqt/lqZd/x/ravZQ4yM47pxtLajg==",
|
|
2465
2462
|
"dev": true,
|
|
2466
2463
|
"license": "MIT",
|
|
2467
2464
|
"dependencies": {
|
|
2468
|
-
"@graphql-tools/utils": "^11.2.
|
|
2465
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2469
2466
|
"globby": "^11.0.3",
|
|
2470
2467
|
"tslib": "^2.4.0",
|
|
2471
2468
|
"unixify": "^1.0.0"
|
|
@@ -2478,14 +2475,14 @@
|
|
|
2478
2475
|
}
|
|
2479
2476
|
},
|
|
2480
2477
|
"node_modules/@graphql-tools/load": {
|
|
2481
|
-
"version": "8.1.
|
|
2482
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.
|
|
2483
|
-
"integrity": "sha512-
|
|
2478
|
+
"version": "8.1.15",
|
|
2479
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.15.tgz",
|
|
2480
|
+
"integrity": "sha512-QpCve0kf1IxNOWAk99VjS4CEZinQjKAfsgDDRWGUg9+9TqBbvCdsLAQshykHcfueEUPetVRVqqqOIRKo9eJ2xQ==",
|
|
2484
2481
|
"dev": true,
|
|
2485
2482
|
"license": "MIT",
|
|
2486
2483
|
"dependencies": {
|
|
2487
|
-
"@graphql-tools/schema": "^10.0.
|
|
2488
|
-
"@graphql-tools/utils": "^11.2.
|
|
2484
|
+
"@graphql-tools/schema": "^10.0.38",
|
|
2485
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2489
2486
|
"p-limit": "3.1.0",
|
|
2490
2487
|
"tslib": "^2.4.0"
|
|
2491
2488
|
},
|
|
@@ -2497,13 +2494,13 @@
|
|
|
2497
2494
|
}
|
|
2498
2495
|
},
|
|
2499
2496
|
"node_modules/@graphql-tools/merge": {
|
|
2500
|
-
"version": "9.2.
|
|
2501
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.2.
|
|
2502
|
-
"integrity": "sha512-
|
|
2497
|
+
"version": "9.2.2",
|
|
2498
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.2.2.tgz",
|
|
2499
|
+
"integrity": "sha512-DSLLAztOIQId7QE3m8Ehk5lV+0pjxNSSRDHPzlYQ9E4KJ9AoUMBprC4C+eX3v4srh05S2ujm5/veqAr5yEWFSQ==",
|
|
2503
2500
|
"dev": true,
|
|
2504
2501
|
"license": "MIT",
|
|
2505
2502
|
"dependencies": {
|
|
2506
|
-
"@graphql-tools/utils": "^11.2.
|
|
2503
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2507
2504
|
"tslib": "^2.4.0"
|
|
2508
2505
|
},
|
|
2509
2506
|
"engines": {
|
|
@@ -2530,14 +2527,14 @@
|
|
|
2530
2527
|
}
|
|
2531
2528
|
},
|
|
2532
2529
|
"node_modules/@graphql-tools/relay-operation-optimizer": {
|
|
2533
|
-
"version": "7.1.
|
|
2534
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.
|
|
2535
|
-
"integrity": "sha512-
|
|
2530
|
+
"version": "7.1.8",
|
|
2531
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.8.tgz",
|
|
2532
|
+
"integrity": "sha512-s16NYT+66VSLCITBURoGNTwh+YvZRSlW3MtFJC2gsvrHZHf6KpCvIR3Qju4yh0FtCoN7Wg7yOI/JT/UzaMEOwQ==",
|
|
2536
2533
|
"dev": true,
|
|
2537
2534
|
"license": "MIT",
|
|
2538
2535
|
"dependencies": {
|
|
2539
|
-
"@ardatan/relay-compiler": "^13.0.
|
|
2540
|
-
"@graphql-tools/utils": "^11.2.
|
|
2536
|
+
"@ardatan/relay-compiler": "^13.0.2",
|
|
2537
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2541
2538
|
"tslib": "^2.4.0"
|
|
2542
2539
|
},
|
|
2543
2540
|
"engines": {
|
|
@@ -2548,14 +2545,14 @@
|
|
|
2548
2545
|
}
|
|
2549
2546
|
},
|
|
2550
2547
|
"node_modules/@graphql-tools/schema": {
|
|
2551
|
-
"version": "10.0.
|
|
2552
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.
|
|
2553
|
-
"integrity": "sha512-
|
|
2548
|
+
"version": "10.0.38",
|
|
2549
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.38.tgz",
|
|
2550
|
+
"integrity": "sha512-Kckk2/vm+rELJ7ijvFaAn9ouWSVUTD0D4SJIvYF4rKeuQHAfCzE/jzMFonZVpTXleqJjPXLZjVbuaMorw7A5Og==",
|
|
2554
2551
|
"dev": true,
|
|
2555
2552
|
"license": "MIT",
|
|
2556
2553
|
"dependencies": {
|
|
2557
|
-
"@graphql-tools/merge": "^9.2.
|
|
2558
|
-
"@graphql-tools/utils": "^11.2.
|
|
2554
|
+
"@graphql-tools/merge": "^9.2.2",
|
|
2555
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2559
2556
|
"tslib": "^2.4.0"
|
|
2560
2557
|
},
|
|
2561
2558
|
"engines": {
|
|
@@ -2566,16 +2563,16 @@
|
|
|
2566
2563
|
}
|
|
2567
2564
|
},
|
|
2568
2565
|
"node_modules/@graphql-tools/url-loader": {
|
|
2569
|
-
"version": "9.1.
|
|
2570
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.
|
|
2571
|
-
"integrity": "sha512-
|
|
2566
|
+
"version": "9.1.6",
|
|
2567
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.6.tgz",
|
|
2568
|
+
"integrity": "sha512-BUFafQJv1OVZ/pZvzqXx4oLi2SKeqiWUAIDgz9HGRF/UpJuLY98tYMFzxhYurXg7lAuJMrDjUfl2nFSCX743Nw==",
|
|
2572
2569
|
"dev": true,
|
|
2573
2570
|
"license": "MIT",
|
|
2574
2571
|
"dependencies": {
|
|
2575
2572
|
"@graphql-tools/executor-graphql-ws": "^3.1.4",
|
|
2576
2573
|
"@graphql-tools/executor-http": "^3.3.0",
|
|
2577
|
-
"@graphql-tools/executor-legacy-ws": "^1.1.
|
|
2578
|
-
"@graphql-tools/utils": "^11.2.
|
|
2574
|
+
"@graphql-tools/executor-legacy-ws": "^1.1.32",
|
|
2575
|
+
"@graphql-tools/utils": "^11.2.2",
|
|
2579
2576
|
"@graphql-tools/wrap": "^11.1.1",
|
|
2580
2577
|
"@types/ws": "^8.0.0",
|
|
2581
2578
|
"@whatwg-node/fetch": "^0.10.13",
|
|
@@ -2583,7 +2580,7 @@
|
|
|
2583
2580
|
"isomorphic-ws": "^5.0.0",
|
|
2584
2581
|
"sync-fetch": "0.6.0",
|
|
2585
2582
|
"tslib": "^2.4.0",
|
|
2586
|
-
"ws": "^8.21.
|
|
2583
|
+
"ws": "^8.21.1"
|
|
2587
2584
|
},
|
|
2588
2585
|
"engines": {
|
|
2589
2586
|
"node": ">=20.0.0"
|
|
@@ -2593,9 +2590,9 @@
|
|
|
2593
2590
|
}
|
|
2594
2591
|
},
|
|
2595
2592
|
"node_modules/@graphql-tools/utils": {
|
|
2596
|
-
"version": "11.2.
|
|
2597
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.2.
|
|
2598
|
-
"integrity": "sha512-
|
|
2593
|
+
"version": "11.2.2",
|
|
2594
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.2.2.tgz",
|
|
2595
|
+
"integrity": "sha512-Do2A/t6ayqOma8m7PvpYMsCBswL+NB35BQSng4GWSBqafL2/BnfAZy/NSENPwV721Rm2fG0BHETFC0+FJJZmLw==",
|
|
2599
2596
|
"dev": true,
|
|
2600
2597
|
"license": "MIT",
|
|
2601
2598
|
"dependencies": {
|
|
@@ -2612,13 +2609,13 @@
|
|
|
2612
2609
|
}
|
|
2613
2610
|
},
|
|
2614
2611
|
"node_modules/@graphql-tools/wrap": {
|
|
2615
|
-
"version": "11.1.
|
|
2616
|
-
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.
|
|
2617
|
-
"integrity": "sha512-
|
|
2612
|
+
"version": "11.1.19",
|
|
2613
|
+
"resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-11.1.19.tgz",
|
|
2614
|
+
"integrity": "sha512-d7ZplubDSkPeFqH4hYYYSK0UjTA2s+2HoLMPIRG0vP7dsjxm3z+J5C7zFboE+bXiWA9cNEoP9puOR4ep4EMjiQ==",
|
|
2618
2615
|
"dev": true,
|
|
2619
2616
|
"license": "MIT",
|
|
2620
2617
|
"dependencies": {
|
|
2621
|
-
"@graphql-tools/delegate": "^12.0.
|
|
2618
|
+
"@graphql-tools/delegate": "^12.0.20",
|
|
2622
2619
|
"@graphql-tools/schema": "^10.0.29",
|
|
2623
2620
|
"@graphql-tools/utils": "^11.0.0",
|
|
2624
2621
|
"@whatwg-node/promise-helpers": "^1.3.2",
|
|
@@ -10328,9 +10325,9 @@
|
|
|
10328
10325
|
]
|
|
10329
10326
|
},
|
|
10330
10327
|
"node_modules/@salesforce/core": {
|
|
10331
|
-
"version": "8.32.
|
|
10332
|
-
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.
|
|
10333
|
-
"integrity": "sha512-
|
|
10328
|
+
"version": "8.32.4",
|
|
10329
|
+
"resolved": "https://registry.npmjs.org/@salesforce/core/-/core-8.32.4.tgz",
|
|
10330
|
+
"integrity": "sha512-0p/nQ24nfPGD0ERp/NHAccgo+66+rDx6c9M88wItDYAMu9+CHcW+FHOLNDAAUsYwinHHVsqVSL8Eyag7gvitqA==",
|
|
10334
10331
|
"license": "BSD-3-Clause",
|
|
10335
10332
|
"dependencies": {
|
|
10336
10333
|
"@jsforce/jsforce-node": "^3.10.17",
|
|
@@ -10572,47 +10569,47 @@
|
|
|
10572
10569
|
}
|
|
10573
10570
|
},
|
|
10574
10571
|
"node_modules/@tailwindcss/node": {
|
|
10575
|
-
"version": "4.3.
|
|
10576
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.
|
|
10577
|
-
"integrity": "sha512
|
|
10572
|
+
"version": "4.3.3",
|
|
10573
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.3.tgz",
|
|
10574
|
+
"integrity": "sha512-/T8IKEsf9VTU6tLjgC7+sv2mOPtQxzE2jMw7u4Tt40Tx+QSZxpzh95/H6cMKoja9XuW7iMdLJYBB0o9G1CaAgg==",
|
|
10578
10575
|
"license": "MIT",
|
|
10579
10576
|
"dependencies": {
|
|
10580
10577
|
"@jridgewell/remapping": "^2.3.5",
|
|
10581
|
-
"enhanced-resolve": "5.
|
|
10578
|
+
"enhanced-resolve": "^5.24.1",
|
|
10582
10579
|
"jiti": "^2.7.0",
|
|
10583
10580
|
"lightningcss": "1.32.0",
|
|
10584
10581
|
"magic-string": "^0.30.21",
|
|
10585
10582
|
"source-map-js": "^1.2.1",
|
|
10586
|
-
"tailwindcss": "4.3.
|
|
10583
|
+
"tailwindcss": "4.3.3"
|
|
10587
10584
|
}
|
|
10588
10585
|
},
|
|
10589
10586
|
"node_modules/@tailwindcss/oxide": {
|
|
10590
|
-
"version": "4.3.
|
|
10591
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.
|
|
10592
|
-
"integrity": "sha512-
|
|
10587
|
+
"version": "4.3.3",
|
|
10588
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.3.tgz",
|
|
10589
|
+
"integrity": "sha512-krXjAikiaFSPaK/FkAQT5UTx3VormQaiZ5hBFlJZ9UFQGB/rwg1MZIhHAG9smMQRTdyJxP6Qt5MwMtdyU5FWrA==",
|
|
10593
10590
|
"license": "MIT",
|
|
10594
10591
|
"engines": {
|
|
10595
10592
|
"node": ">= 20"
|
|
10596
10593
|
},
|
|
10597
10594
|
"optionalDependencies": {
|
|
10598
|
-
"@tailwindcss/oxide-android-arm64": "4.3.
|
|
10599
|
-
"@tailwindcss/oxide-darwin-arm64": "4.3.
|
|
10600
|
-
"@tailwindcss/oxide-darwin-x64": "4.3.
|
|
10601
|
-
"@tailwindcss/oxide-freebsd-x64": "4.3.
|
|
10602
|
-
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.
|
|
10603
|
-
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.
|
|
10604
|
-
"@tailwindcss/oxide-linux-arm64-musl": "4.3.
|
|
10605
|
-
"@tailwindcss/oxide-linux-x64-gnu": "4.3.
|
|
10606
|
-
"@tailwindcss/oxide-linux-x64-musl": "4.3.
|
|
10607
|
-
"@tailwindcss/oxide-wasm32-wasi": "4.3.
|
|
10608
|
-
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.
|
|
10609
|
-
"@tailwindcss/oxide-win32-x64-msvc": "4.3.
|
|
10595
|
+
"@tailwindcss/oxide-android-arm64": "4.3.3",
|
|
10596
|
+
"@tailwindcss/oxide-darwin-arm64": "4.3.3",
|
|
10597
|
+
"@tailwindcss/oxide-darwin-x64": "4.3.3",
|
|
10598
|
+
"@tailwindcss/oxide-freebsd-x64": "4.3.3",
|
|
10599
|
+
"@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.3",
|
|
10600
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.3.3",
|
|
10601
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.3.3",
|
|
10602
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.3.3",
|
|
10603
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.3.3",
|
|
10604
|
+
"@tailwindcss/oxide-wasm32-wasi": "4.3.3",
|
|
10605
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.3.3",
|
|
10606
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.3.3"
|
|
10610
10607
|
}
|
|
10611
10608
|
},
|
|
10612
10609
|
"node_modules/@tailwindcss/oxide-android-arm64": {
|
|
10613
|
-
"version": "4.3.
|
|
10614
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.
|
|
10615
|
-
"integrity": "sha512-
|
|
10610
|
+
"version": "4.3.3",
|
|
10611
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.3.tgz",
|
|
10612
|
+
"integrity": "sha512-Y85A2gmPSkl5Ve5qR86GL4HT509cFqQh1aes9p3sSkyTPwt0Pppf3GkwGe4JPACcRYjgJIEhQgM6dBClnr0NYw==",
|
|
10616
10613
|
"cpu": [
|
|
10617
10614
|
"arm64"
|
|
10618
10615
|
],
|
|
@@ -10626,9 +10623,9 @@
|
|
|
10626
10623
|
}
|
|
10627
10624
|
},
|
|
10628
10625
|
"node_modules/@tailwindcss/oxide-darwin-arm64": {
|
|
10629
|
-
"version": "4.3.
|
|
10630
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.
|
|
10631
|
-
"integrity": "sha512-
|
|
10626
|
+
"version": "4.3.3",
|
|
10627
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.3.tgz",
|
|
10628
|
+
"integrity": "sha512-BiaWatpBcERQFDlOjRDpIVXuFK5PJez5SA4JMg6VYZdBYU+qKfV/vqjcIs+IYmtitf1xYQZTwXvU/8y4lfZUGw==",
|
|
10632
10629
|
"cpu": [
|
|
10633
10630
|
"arm64"
|
|
10634
10631
|
],
|
|
@@ -10642,9 +10639,9 @@
|
|
|
10642
10639
|
}
|
|
10643
10640
|
},
|
|
10644
10641
|
"node_modules/@tailwindcss/oxide-darwin-x64": {
|
|
10645
|
-
"version": "4.3.
|
|
10646
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.
|
|
10647
|
-
"integrity": "sha512-
|
|
10642
|
+
"version": "4.3.3",
|
|
10643
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.3.tgz",
|
|
10644
|
+
"integrity": "sha512-fAeUqfV5ndhxRwai8cXGzdLvul9utWOmeTkv69unv4ZXixjn61Z+p9lCWdwOwA3TYboG3BwdVuN/RDjhBRl0mw==",
|
|
10648
10645
|
"cpu": [
|
|
10649
10646
|
"x64"
|
|
10650
10647
|
],
|
|
@@ -10658,9 +10655,9 @@
|
|
|
10658
10655
|
}
|
|
10659
10656
|
},
|
|
10660
10657
|
"node_modules/@tailwindcss/oxide-freebsd-x64": {
|
|
10661
|
-
"version": "4.3.
|
|
10662
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.
|
|
10663
|
-
"integrity": "sha512-
|
|
10658
|
+
"version": "4.3.3",
|
|
10659
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.3.tgz",
|
|
10660
|
+
"integrity": "sha512-iyf5bV6+wnAlflVeEy7R25dupxTNECZN5QMI0qNT6eT+EgaGdZcKhGkr5SdoaWiLJ3spLqIY9VCeSGrwmtg4kw==",
|
|
10664
10661
|
"cpu": [
|
|
10665
10662
|
"x64"
|
|
10666
10663
|
],
|
|
@@ -10674,9 +10671,9 @@
|
|
|
10674
10671
|
}
|
|
10675
10672
|
},
|
|
10676
10673
|
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
|
|
10677
|
-
"version": "4.3.
|
|
10678
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.
|
|
10679
|
-
"integrity": "sha512-
|
|
10674
|
+
"version": "4.3.3",
|
|
10675
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.3.tgz",
|
|
10676
|
+
"integrity": "sha512-aAYUprJAJQWWbRrPvtjdroZ56Md+JM8pMiopS6xGEwDfLhqj+2ver2p4nU4Mb3CRqcMmNBjo8KkUgcxhkzVQGQ==",
|
|
10680
10677
|
"cpu": [
|
|
10681
10678
|
"arm"
|
|
10682
10679
|
],
|
|
@@ -10690,9 +10687,9 @@
|
|
|
10690
10687
|
}
|
|
10691
10688
|
},
|
|
10692
10689
|
"node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
|
|
10693
|
-
"version": "4.3.
|
|
10694
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.
|
|
10695
|
-
"integrity": "sha512-
|
|
10690
|
+
"version": "4.3.3",
|
|
10691
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.3.tgz",
|
|
10692
|
+
"integrity": "sha512-nDxldcEENOxZRzC2uu9jrutZdAAQtb+8WWDCSnWL1zvBk1+FN+x6MtDViPB5AJMfttVCUhehGWus3XBPgatM/w==",
|
|
10696
10693
|
"cpu": [
|
|
10697
10694
|
"arm64"
|
|
10698
10695
|
],
|
|
@@ -10709,9 +10706,9 @@
|
|
|
10709
10706
|
}
|
|
10710
10707
|
},
|
|
10711
10708
|
"node_modules/@tailwindcss/oxide-linux-arm64-musl": {
|
|
10712
|
-
"version": "4.3.
|
|
10713
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.
|
|
10714
|
-
"integrity": "sha512-
|
|
10709
|
+
"version": "4.3.3",
|
|
10710
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.3.tgz",
|
|
10711
|
+
"integrity": "sha512-Md44bD6veX/PC5iyF8cDVnw4HBIANZepRZZ7a8DQOvkfo5WUBwcp6iAuCUz23u+4SUkhJlD3eL7hNdW8ezd/kA==",
|
|
10715
10712
|
"cpu": [
|
|
10716
10713
|
"arm64"
|
|
10717
10714
|
],
|
|
@@ -10728,9 +10725,9 @@
|
|
|
10728
10725
|
}
|
|
10729
10726
|
},
|
|
10730
10727
|
"node_modules/@tailwindcss/oxide-linux-x64-gnu": {
|
|
10731
|
-
"version": "4.3.
|
|
10732
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.
|
|
10733
|
-
"integrity": "sha512-
|
|
10728
|
+
"version": "4.3.3",
|
|
10729
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.3.tgz",
|
|
10730
|
+
"integrity": "sha512-tx7us1muwOKAKWao2v/GaafFeQboE6aj88vC6ziN2NCGcRm8gWUhwjzg+YdVB1e4boAtdtma4L43onunI6NS4w==",
|
|
10734
10731
|
"cpu": [
|
|
10735
10732
|
"x64"
|
|
10736
10733
|
],
|
|
@@ -10747,9 +10744,9 @@
|
|
|
10747
10744
|
}
|
|
10748
10745
|
},
|
|
10749
10746
|
"node_modules/@tailwindcss/oxide-linux-x64-musl": {
|
|
10750
|
-
"version": "4.3.
|
|
10751
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.
|
|
10752
|
-
"integrity": "sha512-
|
|
10747
|
+
"version": "4.3.3",
|
|
10748
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.3.tgz",
|
|
10749
|
+
"integrity": "sha512-SJxX60smvHgasZoBy11dX6YRjXJFovwWBoedhbQPOBzgFWBHGB+TVPWB9BxzR7TTxU8FQZAI2AyiNCMzFm8Img==",
|
|
10753
10750
|
"cpu": [
|
|
10754
10751
|
"x64"
|
|
10755
10752
|
],
|
|
@@ -10766,9 +10763,9 @@
|
|
|
10766
10763
|
}
|
|
10767
10764
|
},
|
|
10768
10765
|
"node_modules/@tailwindcss/oxide-wasm32-wasi": {
|
|
10769
|
-
"version": "4.3.
|
|
10770
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.
|
|
10771
|
-
"integrity": "sha512-
|
|
10766
|
+
"version": "4.3.3",
|
|
10767
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.3.tgz",
|
|
10768
|
+
"integrity": "sha512-jx1+rPhY/5Ympkktd656HBWEBLxP7dH06losBLjjf5vgCODXvi9KhtftWcMIwTFIDqBr7cRnQkdLnAG+IOlGvQ==",
|
|
10772
10769
|
"bundleDependencies": [
|
|
10773
10770
|
"@napi-rs/wasm-runtime",
|
|
10774
10771
|
"@emnapi/core",
|
|
@@ -10855,9 +10852,9 @@
|
|
|
10855
10852
|
"optional": true
|
|
10856
10853
|
},
|
|
10857
10854
|
"node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
|
|
10858
|
-
"version": "4.3.
|
|
10859
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.
|
|
10860
|
-
"integrity": "sha512-
|
|
10855
|
+
"version": "4.3.3",
|
|
10856
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.3.tgz",
|
|
10857
|
+
"integrity": "sha512-3rc292Ca2ceK6Ulcc/bAVnTs/3nDtoPhyEKlgPv+yQJQi/JS/AMJlqzxvlDacL1nekbrcf6bTqp/jV4qgnPxNQ==",
|
|
10861
10858
|
"cpu": [
|
|
10862
10859
|
"arm64"
|
|
10863
10860
|
],
|
|
@@ -10871,9 +10868,9 @@
|
|
|
10871
10868
|
}
|
|
10872
10869
|
},
|
|
10873
10870
|
"node_modules/@tailwindcss/oxide-win32-x64-msvc": {
|
|
10874
|
-
"version": "4.3.
|
|
10875
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.
|
|
10876
|
-
"integrity": "sha512-
|
|
10871
|
+
"version": "4.3.3",
|
|
10872
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.3.tgz",
|
|
10873
|
+
"integrity": "sha512-yJ0pwIVc/nYeGoV02WtsN8KYyLQv7kyI2wDnkezyJlGGjkd4QLwDGAwl47YpPJeuI0M0ObaXGSPjvWDPeTPggw==",
|
|
10877
10874
|
"cpu": [
|
|
10878
10875
|
"x64"
|
|
10879
10876
|
],
|
|
@@ -10887,14 +10884,14 @@
|
|
|
10887
10884
|
}
|
|
10888
10885
|
},
|
|
10889
10886
|
"node_modules/@tailwindcss/vite": {
|
|
10890
|
-
"version": "4.3.
|
|
10891
|
-
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.
|
|
10892
|
-
"integrity": "sha512-
|
|
10887
|
+
"version": "4.3.3",
|
|
10888
|
+
"resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.3.tgz",
|
|
10889
|
+
"integrity": "sha512-yYU8cogLeSh/ms2jh8Fj7jaba/EWa7Ja6GoUqYZaraEuCI5YS6ms6ObZgjjedm+jm6XZjdNRWBpPP6Z86oOxcw==",
|
|
10893
10890
|
"license": "MIT",
|
|
10894
10891
|
"dependencies": {
|
|
10895
|
-
"@tailwindcss/node": "4.3.
|
|
10896
|
-
"@tailwindcss/oxide": "4.3.
|
|
10897
|
-
"tailwindcss": "4.3.
|
|
10892
|
+
"@tailwindcss/node": "4.3.3",
|
|
10893
|
+
"@tailwindcss/oxide": "4.3.3",
|
|
10894
|
+
"tailwindcss": "4.3.3"
|
|
10898
10895
|
},
|
|
10899
10896
|
"peerDependencies": {
|
|
10900
10897
|
"vite": "^5.2.0 || ^6 || ^7 || ^8"
|
|
@@ -10921,6 +10918,17 @@
|
|
|
10921
10918
|
"node": ">=18"
|
|
10922
10919
|
}
|
|
10923
10920
|
},
|
|
10921
|
+
"node_modules/@testing-library/dom/node_modules/@babel/runtime": {
|
|
10922
|
+
"version": "7.29.7",
|
|
10923
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
10924
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
10925
|
+
"dev": true,
|
|
10926
|
+
"license": "MIT",
|
|
10927
|
+
"peer": true,
|
|
10928
|
+
"engines": {
|
|
10929
|
+
"node": ">=6.9.0"
|
|
10930
|
+
}
|
|
10931
|
+
},
|
|
10924
10932
|
"node_modules/@testing-library/jest-dom": {
|
|
10925
10933
|
"version": "6.9.1",
|
|
10926
10934
|
"resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz",
|
|
@@ -10976,6 +10984,16 @@
|
|
|
10976
10984
|
}
|
|
10977
10985
|
}
|
|
10978
10986
|
},
|
|
10987
|
+
"node_modules/@testing-library/react/node_modules/@babel/runtime": {
|
|
10988
|
+
"version": "7.29.7",
|
|
10989
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
10990
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
10991
|
+
"dev": true,
|
|
10992
|
+
"license": "MIT",
|
|
10993
|
+
"engines": {
|
|
10994
|
+
"node": ">=6.9.0"
|
|
10995
|
+
}
|
|
10996
|
+
},
|
|
10979
10997
|
"node_modules/@testing-library/user-event": {
|
|
10980
10998
|
"version": "14.6.1",
|
|
10981
10999
|
"resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz",
|
|
@@ -11182,17 +11200,17 @@
|
|
|
11182
11200
|
}
|
|
11183
11201
|
},
|
|
11184
11202
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
11185
|
-
"version": "8.
|
|
11186
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.
|
|
11187
|
-
"integrity": "sha512-
|
|
11203
|
+
"version": "8.64.0",
|
|
11204
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.64.0.tgz",
|
|
11205
|
+
"integrity": "sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==",
|
|
11188
11206
|
"dev": true,
|
|
11189
11207
|
"license": "MIT",
|
|
11190
11208
|
"dependencies": {
|
|
11191
11209
|
"@eslint-community/regexpp": "^4.12.2",
|
|
11192
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11193
|
-
"@typescript-eslint/type-utils": "8.
|
|
11194
|
-
"@typescript-eslint/utils": "8.
|
|
11195
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11210
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11211
|
+
"@typescript-eslint/type-utils": "8.64.0",
|
|
11212
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
11213
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11196
11214
|
"ignore": "^7.0.5",
|
|
11197
11215
|
"natural-compare": "^1.4.0",
|
|
11198
11216
|
"ts-api-utils": "^2.5.0"
|
|
@@ -11205,15 +11223,15 @@
|
|
|
11205
11223
|
"url": "https://opencollective.com/typescript-eslint"
|
|
11206
11224
|
},
|
|
11207
11225
|
"peerDependencies": {
|
|
11208
|
-
"@typescript-eslint/parser": "^8.
|
|
11226
|
+
"@typescript-eslint/parser": "^8.64.0",
|
|
11209
11227
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
11210
11228
|
"typescript": ">=4.8.4 <6.1.0"
|
|
11211
11229
|
}
|
|
11212
11230
|
},
|
|
11213
11231
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
11214
|
-
"version": "7.0.
|
|
11215
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.
|
|
11216
|
-
"integrity": "sha512-
|
|
11232
|
+
"version": "7.0.6",
|
|
11233
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.6.tgz",
|
|
11234
|
+
"integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
|
|
11217
11235
|
"dev": true,
|
|
11218
11236
|
"license": "MIT",
|
|
11219
11237
|
"engines": {
|
|
@@ -11221,16 +11239,16 @@
|
|
|
11221
11239
|
}
|
|
11222
11240
|
},
|
|
11223
11241
|
"node_modules/@typescript-eslint/parser": {
|
|
11224
|
-
"version": "8.
|
|
11225
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.
|
|
11226
|
-
"integrity": "sha512-
|
|
11242
|
+
"version": "8.64.0",
|
|
11243
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.64.0.tgz",
|
|
11244
|
+
"integrity": "sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==",
|
|
11227
11245
|
"dev": true,
|
|
11228
11246
|
"license": "MIT",
|
|
11229
11247
|
"dependencies": {
|
|
11230
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11231
|
-
"@typescript-eslint/types": "8.
|
|
11232
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11233
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11248
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11249
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11250
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
11251
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11234
11252
|
"debug": "^4.4.3"
|
|
11235
11253
|
},
|
|
11236
11254
|
"engines": {
|
|
@@ -11246,14 +11264,14 @@
|
|
|
11246
11264
|
}
|
|
11247
11265
|
},
|
|
11248
11266
|
"node_modules/@typescript-eslint/project-service": {
|
|
11249
|
-
"version": "8.
|
|
11250
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.
|
|
11251
|
-
"integrity": "sha512-
|
|
11267
|
+
"version": "8.64.0",
|
|
11268
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.64.0.tgz",
|
|
11269
|
+
"integrity": "sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==",
|
|
11252
11270
|
"dev": true,
|
|
11253
11271
|
"license": "MIT",
|
|
11254
11272
|
"dependencies": {
|
|
11255
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
11256
|
-
"@typescript-eslint/types": "^8.
|
|
11273
|
+
"@typescript-eslint/tsconfig-utils": "^8.64.0",
|
|
11274
|
+
"@typescript-eslint/types": "^8.64.0",
|
|
11257
11275
|
"debug": "^4.4.3"
|
|
11258
11276
|
},
|
|
11259
11277
|
"engines": {
|
|
@@ -11268,14 +11286,14 @@
|
|
|
11268
11286
|
}
|
|
11269
11287
|
},
|
|
11270
11288
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
11271
|
-
"version": "8.
|
|
11272
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.
|
|
11273
|
-
"integrity": "sha512-
|
|
11289
|
+
"version": "8.64.0",
|
|
11290
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.64.0.tgz",
|
|
11291
|
+
"integrity": "sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==",
|
|
11274
11292
|
"dev": true,
|
|
11275
11293
|
"license": "MIT",
|
|
11276
11294
|
"dependencies": {
|
|
11277
|
-
"@typescript-eslint/types": "8.
|
|
11278
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11295
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11296
|
+
"@typescript-eslint/visitor-keys": "8.64.0"
|
|
11279
11297
|
},
|
|
11280
11298
|
"engines": {
|
|
11281
11299
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11286,9 +11304,9 @@
|
|
|
11286
11304
|
}
|
|
11287
11305
|
},
|
|
11288
11306
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
11289
|
-
"version": "8.
|
|
11290
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.
|
|
11291
|
-
"integrity": "sha512-
|
|
11307
|
+
"version": "8.64.0",
|
|
11308
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.64.0.tgz",
|
|
11309
|
+
"integrity": "sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==",
|
|
11292
11310
|
"dev": true,
|
|
11293
11311
|
"license": "MIT",
|
|
11294
11312
|
"engines": {
|
|
@@ -11303,15 +11321,15 @@
|
|
|
11303
11321
|
}
|
|
11304
11322
|
},
|
|
11305
11323
|
"node_modules/@typescript-eslint/type-utils": {
|
|
11306
|
-
"version": "8.
|
|
11307
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.
|
|
11308
|
-
"integrity": "sha512-
|
|
11324
|
+
"version": "8.64.0",
|
|
11325
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.64.0.tgz",
|
|
11326
|
+
"integrity": "sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==",
|
|
11309
11327
|
"dev": true,
|
|
11310
11328
|
"license": "MIT",
|
|
11311
11329
|
"dependencies": {
|
|
11312
|
-
"@typescript-eslint/types": "8.
|
|
11313
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11314
|
-
"@typescript-eslint/utils": "8.
|
|
11330
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11331
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
11332
|
+
"@typescript-eslint/utils": "8.64.0",
|
|
11315
11333
|
"debug": "^4.4.3",
|
|
11316
11334
|
"ts-api-utils": "^2.5.0"
|
|
11317
11335
|
},
|
|
@@ -11328,9 +11346,9 @@
|
|
|
11328
11346
|
}
|
|
11329
11347
|
},
|
|
11330
11348
|
"node_modules/@typescript-eslint/types": {
|
|
11331
|
-
"version": "8.
|
|
11332
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.
|
|
11333
|
-
"integrity": "sha512-
|
|
11349
|
+
"version": "8.64.0",
|
|
11350
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.64.0.tgz",
|
|
11351
|
+
"integrity": "sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==",
|
|
11334
11352
|
"dev": true,
|
|
11335
11353
|
"license": "MIT",
|
|
11336
11354
|
"engines": {
|
|
@@ -11342,16 +11360,16 @@
|
|
|
11342
11360
|
}
|
|
11343
11361
|
},
|
|
11344
11362
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
11345
|
-
"version": "8.
|
|
11346
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.
|
|
11347
|
-
"integrity": "sha512-
|
|
11363
|
+
"version": "8.64.0",
|
|
11364
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.64.0.tgz",
|
|
11365
|
+
"integrity": "sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==",
|
|
11348
11366
|
"dev": true,
|
|
11349
11367
|
"license": "MIT",
|
|
11350
11368
|
"dependencies": {
|
|
11351
|
-
"@typescript-eslint/project-service": "8.
|
|
11352
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
11353
|
-
"@typescript-eslint/types": "8.
|
|
11354
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
11369
|
+
"@typescript-eslint/project-service": "8.64.0",
|
|
11370
|
+
"@typescript-eslint/tsconfig-utils": "8.64.0",
|
|
11371
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11372
|
+
"@typescript-eslint/visitor-keys": "8.64.0",
|
|
11355
11373
|
"debug": "^4.4.3",
|
|
11356
11374
|
"minimatch": "^10.2.2",
|
|
11357
11375
|
"semver": "^7.7.3",
|
|
@@ -11422,16 +11440,16 @@
|
|
|
11422
11440
|
}
|
|
11423
11441
|
},
|
|
11424
11442
|
"node_modules/@typescript-eslint/utils": {
|
|
11425
|
-
"version": "8.
|
|
11426
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.
|
|
11427
|
-
"integrity": "sha512-
|
|
11443
|
+
"version": "8.64.0",
|
|
11444
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.64.0.tgz",
|
|
11445
|
+
"integrity": "sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==",
|
|
11428
11446
|
"dev": true,
|
|
11429
11447
|
"license": "MIT",
|
|
11430
11448
|
"dependencies": {
|
|
11431
11449
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
11432
|
-
"@typescript-eslint/scope-manager": "8.
|
|
11433
|
-
"@typescript-eslint/types": "8.
|
|
11434
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
11450
|
+
"@typescript-eslint/scope-manager": "8.64.0",
|
|
11451
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11452
|
+
"@typescript-eslint/typescript-estree": "8.64.0"
|
|
11435
11453
|
},
|
|
11436
11454
|
"engines": {
|
|
11437
11455
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -11446,13 +11464,13 @@
|
|
|
11446
11464
|
}
|
|
11447
11465
|
},
|
|
11448
11466
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
11449
|
-
"version": "8.
|
|
11450
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.
|
|
11451
|
-
"integrity": "sha512-
|
|
11467
|
+
"version": "8.64.0",
|
|
11468
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.64.0.tgz",
|
|
11469
|
+
"integrity": "sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==",
|
|
11452
11470
|
"dev": true,
|
|
11453
11471
|
"license": "MIT",
|
|
11454
11472
|
"dependencies": {
|
|
11455
|
-
"@typescript-eslint/types": "8.
|
|
11473
|
+
"@typescript-eslint/types": "8.64.0",
|
|
11456
11474
|
"eslint-visitor-keys": "^5.0.0"
|
|
11457
11475
|
},
|
|
11458
11476
|
"engines": {
|
|
@@ -12234,9 +12252,9 @@
|
|
|
12234
12252
|
}
|
|
12235
12253
|
},
|
|
12236
12254
|
"node_modules/baseline-browser-mapping": {
|
|
12237
|
-
"version": "2.10.
|
|
12238
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
12239
|
-
"integrity": "sha512-
|
|
12255
|
+
"version": "2.10.43",
|
|
12256
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz",
|
|
12257
|
+
"integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==",
|
|
12240
12258
|
"license": "Apache-2.0",
|
|
12241
12259
|
"bin": {
|
|
12242
12260
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -12398,9 +12416,9 @@
|
|
|
12398
12416
|
}
|
|
12399
12417
|
},
|
|
12400
12418
|
"node_modules/browserslist": {
|
|
12401
|
-
"version": "4.28.
|
|
12402
|
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.
|
|
12403
|
-
"integrity": "sha512-
|
|
12419
|
+
"version": "4.28.6",
|
|
12420
|
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz",
|
|
12421
|
+
"integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==",
|
|
12404
12422
|
"funding": [
|
|
12405
12423
|
{
|
|
12406
12424
|
"type": "opencollective",
|
|
@@ -12418,9 +12436,9 @@
|
|
|
12418
12436
|
"license": "MIT",
|
|
12419
12437
|
"dependencies": {
|
|
12420
12438
|
"baseline-browser-mapping": "^2.10.42",
|
|
12421
|
-
"caniuse-lite": "^1.0.
|
|
12422
|
-
"electron-to-chromium": "^1.5.
|
|
12423
|
-
"node-releases": "^2.0.
|
|
12439
|
+
"caniuse-lite": "^1.0.30001803",
|
|
12440
|
+
"electron-to-chromium": "^1.5.389",
|
|
12441
|
+
"node-releases": "^2.0.51",
|
|
12424
12442
|
"update-browserslist-db": "^1.2.3"
|
|
12425
12443
|
},
|
|
12426
12444
|
"bin": {
|
|
@@ -12565,9 +12583,9 @@
|
|
|
12565
12583
|
}
|
|
12566
12584
|
},
|
|
12567
12585
|
"node_modules/caniuse-lite": {
|
|
12568
|
-
"version": "1.0.
|
|
12569
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
12570
|
-
"integrity": "sha512-
|
|
12586
|
+
"version": "1.0.30001806",
|
|
12587
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
|
|
12588
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
12571
12589
|
"funding": [
|
|
12572
12590
|
{
|
|
12573
12591
|
"type": "opencollective",
|
|
@@ -13724,6 +13742,16 @@
|
|
|
13724
13742
|
"react": ">=16.12.0"
|
|
13725
13743
|
}
|
|
13726
13744
|
},
|
|
13745
|
+
"node_modules/downshift/node_modules/@babel/runtime": {
|
|
13746
|
+
"version": "7.29.7",
|
|
13747
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
13748
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
13749
|
+
"dev": true,
|
|
13750
|
+
"license": "MIT",
|
|
13751
|
+
"engines": {
|
|
13752
|
+
"node": ">=6.9.0"
|
|
13753
|
+
}
|
|
13754
|
+
},
|
|
13727
13755
|
"node_modules/dunder-proto": {
|
|
13728
13756
|
"version": "1.0.1",
|
|
13729
13757
|
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
@@ -13761,9 +13789,9 @@
|
|
|
13761
13789
|
"license": "MIT"
|
|
13762
13790
|
},
|
|
13763
13791
|
"node_modules/electron-to-chromium": {
|
|
13764
|
-
"version": "1.5.
|
|
13765
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
13766
|
-
"integrity": "sha512-
|
|
13792
|
+
"version": "1.5.393",
|
|
13793
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.393.tgz",
|
|
13794
|
+
"integrity": "sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==",
|
|
13767
13795
|
"license": "ISC"
|
|
13768
13796
|
},
|
|
13769
13797
|
"node_modules/emoji-regex": {
|
|
@@ -13791,9 +13819,9 @@
|
|
|
13791
13819
|
}
|
|
13792
13820
|
},
|
|
13793
13821
|
"node_modules/enhanced-resolve": {
|
|
13794
|
-
"version": "5.
|
|
13795
|
-
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.
|
|
13796
|
-
"integrity": "sha512-
|
|
13822
|
+
"version": "5.24.2",
|
|
13823
|
+
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.2.tgz",
|
|
13824
|
+
"integrity": "sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==",
|
|
13797
13825
|
"license": "MIT",
|
|
13798
13826
|
"dependencies": {
|
|
13799
13827
|
"graceful-fs": "^4.2.4",
|
|
@@ -13979,9 +14007,9 @@
|
|
|
13979
14007
|
}
|
|
13980
14008
|
},
|
|
13981
14009
|
"node_modules/es-iterator-helpers": {
|
|
13982
|
-
"version": "1.
|
|
13983
|
-
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.
|
|
13984
|
-
"integrity": "sha512-
|
|
14010
|
+
"version": "1.4.0",
|
|
14011
|
+
"resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.4.0.tgz",
|
|
14012
|
+
"integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
|
|
13985
14013
|
"dev": true,
|
|
13986
14014
|
"license": "MIT",
|
|
13987
14015
|
"dependencies": {
|
|
@@ -14007,9 +14035,9 @@
|
|
|
14007
14035
|
}
|
|
14008
14036
|
},
|
|
14009
14037
|
"node_modules/es-module-lexer": {
|
|
14010
|
-
"version": "2.3.
|
|
14011
|
-
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.
|
|
14012
|
-
"integrity": "sha512-
|
|
14038
|
+
"version": "2.3.1",
|
|
14039
|
+
"resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz",
|
|
14040
|
+
"integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==",
|
|
14013
14041
|
"dev": true,
|
|
14014
14042
|
"license": "MIT"
|
|
14015
14043
|
},
|
|
@@ -14144,9 +14172,9 @@
|
|
|
14144
14172
|
}
|
|
14145
14173
|
},
|
|
14146
14174
|
"node_modules/eslint": {
|
|
14147
|
-
"version": "9.39.
|
|
14148
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
14149
|
-
"integrity": "sha512-
|
|
14175
|
+
"version": "9.39.5",
|
|
14176
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz",
|
|
14177
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
14150
14178
|
"dev": true,
|
|
14151
14179
|
"license": "MIT",
|
|
14152
14180
|
"dependencies": {
|
|
@@ -14155,8 +14183,8 @@
|
|
|
14155
14183
|
"@eslint/config-array": "^0.21.2",
|
|
14156
14184
|
"@eslint/config-helpers": "^0.4.2",
|
|
14157
14185
|
"@eslint/core": "^0.17.0",
|
|
14158
|
-
"@eslint/eslintrc": "^3.3.
|
|
14159
|
-
"@eslint/js": "9.39.
|
|
14186
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
14187
|
+
"@eslint/js": "9.39.5",
|
|
14160
14188
|
"@eslint/plugin-kit": "^0.4.1",
|
|
14161
14189
|
"@humanfs/node": "^0.16.6",
|
|
14162
14190
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -14569,11 +14597,12 @@
|
|
|
14569
14597
|
}
|
|
14570
14598
|
},
|
|
14571
14599
|
"node_modules/express-rate-limit": {
|
|
14572
|
-
"version": "8.
|
|
14573
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
14574
|
-
"integrity": "sha512-
|
|
14600
|
+
"version": "8.6.0",
|
|
14601
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz",
|
|
14602
|
+
"integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==",
|
|
14575
14603
|
"license": "MIT",
|
|
14576
14604
|
"dependencies": {
|
|
14605
|
+
"debug": "^4.4.3",
|
|
14577
14606
|
"ip-address": "^10.2.0"
|
|
14578
14607
|
},
|
|
14579
14608
|
"engines": {
|
|
@@ -15542,9 +15571,9 @@
|
|
|
15542
15571
|
}
|
|
15543
15572
|
},
|
|
15544
15573
|
"node_modules/graphql-ws": {
|
|
15545
|
-
"version": "6.0
|
|
15546
|
-
"resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-6.0.
|
|
15547
|
-
"integrity": "sha512-
|
|
15574
|
+
"version": "6.1.0",
|
|
15575
|
+
"resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-6.1.0.tgz",
|
|
15576
|
+
"integrity": "sha512-7ft6KWkuaLnLABwzEIimjUMeF0iByo2ThD6q0MICgsvp6nDuT5ppubKzEHniu8Kmlp5GNsLgr5dil8JMrIwUEQ==",
|
|
15548
15577
|
"dev": true,
|
|
15549
15578
|
"license": "MIT",
|
|
15550
15579
|
"engines": {
|
|
@@ -15553,7 +15582,7 @@
|
|
|
15553
15582
|
"peerDependencies": {
|
|
15554
15583
|
"@fastify/websocket": "^10 || ^11",
|
|
15555
15584
|
"crossws": "~0.3",
|
|
15556
|
-
"graphql": "^15.10.1 || ^16",
|
|
15585
|
+
"graphql": "^15.10.1 || ^16 || ^17",
|
|
15557
15586
|
"ws": "^8"
|
|
15558
15587
|
},
|
|
15559
15588
|
"peerDependenciesMeta": {
|
|
@@ -15680,9 +15709,9 @@
|
|
|
15680
15709
|
}
|
|
15681
15710
|
},
|
|
15682
15711
|
"node_modules/headers-polyfill/node_modules/set-cookie-parser": {
|
|
15683
|
-
"version": "3.1.
|
|
15684
|
-
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.
|
|
15685
|
-
"integrity": "sha512-
|
|
15712
|
+
"version": "3.1.2",
|
|
15713
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-3.1.2.tgz",
|
|
15714
|
+
"integrity": "sha512-5/r/lTwbJ3zQ+qwdUFZYeRNqda7P5HD8zQKqlSjdGt1/S0cjLAphHusj4Y58ahDtWn/g32xrIS58/ikOvwl0Lw==",
|
|
15686
15715
|
"license": "MIT"
|
|
15687
15716
|
},
|
|
15688
15717
|
"node_modules/help-me": {
|
|
@@ -15709,9 +15738,9 @@
|
|
|
15709
15738
|
}
|
|
15710
15739
|
},
|
|
15711
15740
|
"node_modules/hono": {
|
|
15712
|
-
"version": "4.12.
|
|
15713
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
15714
|
-
"integrity": "sha512-
|
|
15741
|
+
"version": "4.12.31",
|
|
15742
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz",
|
|
15743
|
+
"integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==",
|
|
15715
15744
|
"license": "MIT",
|
|
15716
15745
|
"engines": {
|
|
15717
15746
|
"node": ">=16.9.0"
|
|
@@ -18069,9 +18098,9 @@
|
|
|
18069
18098
|
}
|
|
18070
18099
|
},
|
|
18071
18100
|
"node_modules/nanoid": {
|
|
18072
|
-
"version": "3.3.
|
|
18073
|
-
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.
|
|
18074
|
-
"integrity": "sha512-
|
|
18101
|
+
"version": "3.3.16",
|
|
18102
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
|
|
18103
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
18075
18104
|
"funding": [
|
|
18076
18105
|
{
|
|
18077
18106
|
"type": "github",
|
|
@@ -18223,9 +18252,9 @@
|
|
|
18223
18252
|
}
|
|
18224
18253
|
},
|
|
18225
18254
|
"node_modules/o11y_schema": {
|
|
18226
|
-
"version": "264.
|
|
18227
|
-
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.
|
|
18228
|
-
"integrity": "sha512-
|
|
18255
|
+
"version": "264.97.0",
|
|
18256
|
+
"resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.97.0.tgz",
|
|
18257
|
+
"integrity": "sha512-UMDNXEJy3ABnSXMFRVp0dPiXKuldkfQvt1EMWh/M7wWObJH8hDYK2dmn8oAAqVowD/OdtSiXmHLmSuUFSWlsVw==",
|
|
18229
18258
|
"license": "BSD-3-Clause",
|
|
18230
18259
|
"peer": true
|
|
18231
18260
|
},
|
|
@@ -18352,9 +18381,9 @@
|
|
|
18352
18381
|
}
|
|
18353
18382
|
},
|
|
18354
18383
|
"node_modules/obug": {
|
|
18355
|
-
"version": "2.1.
|
|
18356
|
-
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.
|
|
18357
|
-
"integrity": "sha512-
|
|
18384
|
+
"version": "2.1.4",
|
|
18385
|
+
"resolved": "https://registry.npmjs.org/obug/-/obug-2.1.4.tgz",
|
|
18386
|
+
"integrity": "sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==",
|
|
18358
18387
|
"dev": true,
|
|
18359
18388
|
"funding": [
|
|
18360
18389
|
"https://github.com/sponsors/sxzz",
|
|
@@ -19112,9 +19141,9 @@
|
|
|
19112
19141
|
}
|
|
19113
19142
|
},
|
|
19114
19143
|
"node_modules/postcss": {
|
|
19115
|
-
"version": "8.5.
|
|
19116
|
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.
|
|
19117
|
-
"integrity": "sha512-
|
|
19144
|
+
"version": "8.5.19",
|
|
19145
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
|
|
19146
|
+
"integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
|
|
19118
19147
|
"funding": [
|
|
19119
19148
|
{
|
|
19120
19149
|
"type": "opencollective",
|
|
@@ -19175,9 +19204,9 @@
|
|
|
19175
19204
|
}
|
|
19176
19205
|
},
|
|
19177
19206
|
"node_modules/prettier": {
|
|
19178
|
-
"version": "3.9.
|
|
19179
|
-
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.
|
|
19180
|
-
"integrity": "sha512
|
|
19207
|
+
"version": "3.9.5",
|
|
19208
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.5.tgz",
|
|
19209
|
+
"integrity": "sha512-/FVl766LpUfB5vXgCYOYa0MeV/441Ia99AeICQIQFTY/Nw0roZwULcXpku5i1/m5kt/baz+s4Zogspd839HSMg==",
|
|
19181
19210
|
"dev": true,
|
|
19182
19211
|
"license": "MIT",
|
|
19183
19212
|
"peer": true,
|
|
@@ -21066,9 +21095,9 @@
|
|
|
21066
21095
|
}
|
|
21067
21096
|
},
|
|
21068
21097
|
"node_modules/shell-quote": {
|
|
21069
|
-
"version": "1.
|
|
21070
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.
|
|
21071
|
-
"integrity": "sha512-
|
|
21098
|
+
"version": "1.10.0",
|
|
21099
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz",
|
|
21100
|
+
"integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==",
|
|
21072
21101
|
"dev": true,
|
|
21073
21102
|
"license": "MIT",
|
|
21074
21103
|
"engines": {
|
|
@@ -21647,9 +21676,9 @@
|
|
|
21647
21676
|
}
|
|
21648
21677
|
},
|
|
21649
21678
|
"node_modules/systeminformation": {
|
|
21650
|
-
"version": "5.
|
|
21651
|
-
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.
|
|
21652
|
-
"integrity": "sha512-
|
|
21679
|
+
"version": "5.32.0",
|
|
21680
|
+
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.32.0.tgz",
|
|
21681
|
+
"integrity": "sha512-7gfXs43T91miPxxTTtrYitotR/8MPsI2gy3XgUMs6kmOE/JCVqZp6nJpx4XkSutoSqDh6+Y2ovvb2A3RQCR+8w==",
|
|
21653
21682
|
"license": "MIT",
|
|
21654
21683
|
"os": [
|
|
21655
21684
|
"darwin",
|
|
@@ -21665,7 +21694,7 @@
|
|
|
21665
21694
|
"systeminformation": "lib/cli.js"
|
|
21666
21695
|
},
|
|
21667
21696
|
"engines": {
|
|
21668
|
-
"node": ">=
|
|
21697
|
+
"node": ">=10.0.0"
|
|
21669
21698
|
},
|
|
21670
21699
|
"funding": {
|
|
21671
21700
|
"type": "Buy me a coffee",
|
|
@@ -21695,9 +21724,9 @@
|
|
|
21695
21724
|
}
|
|
21696
21725
|
},
|
|
21697
21726
|
"node_modules/tailwindcss": {
|
|
21698
|
-
"version": "4.3.
|
|
21699
|
-
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.
|
|
21700
|
-
"integrity": "sha512-
|
|
21727
|
+
"version": "4.3.3",
|
|
21728
|
+
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
|
|
21729
|
+
"integrity": "sha512-gOhV3P7ufE62QDGg1zVaTgCR+EtPv92k2nIhVcVKcLmxT1sUBsQGhnZj175j+MqRt4zLF7ic+sCYjfhxMxj7YQ==",
|
|
21701
21730
|
"license": "MIT"
|
|
21702
21731
|
},
|
|
21703
21732
|
"node_modules/tapable": {
|
|
@@ -21836,21 +21865,21 @@
|
|
|
21836
21865
|
}
|
|
21837
21866
|
},
|
|
21838
21867
|
"node_modules/tldts": {
|
|
21839
|
-
"version": "7.4.
|
|
21840
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
21841
|
-
"integrity": "sha512-
|
|
21868
|
+
"version": "7.4.9",
|
|
21869
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.9.tgz",
|
|
21870
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
21842
21871
|
"license": "MIT",
|
|
21843
21872
|
"dependencies": {
|
|
21844
|
-
"tldts-core": "^7.4.
|
|
21873
|
+
"tldts-core": "^7.4.9"
|
|
21845
21874
|
},
|
|
21846
21875
|
"bin": {
|
|
21847
21876
|
"tldts": "bin/cli.js"
|
|
21848
21877
|
}
|
|
21849
21878
|
},
|
|
21850
21879
|
"node_modules/tldts-core": {
|
|
21851
|
-
"version": "7.4.
|
|
21852
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
21853
|
-
"integrity": "sha512-
|
|
21880
|
+
"version": "7.4.9",
|
|
21881
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.9.tgz",
|
|
21882
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
21854
21883
|
"license": "MIT"
|
|
21855
21884
|
},
|
|
21856
21885
|
"node_modules/to-regex-range": {
|
|
@@ -22155,16 +22184,16 @@
|
|
|
22155
22184
|
}
|
|
22156
22185
|
},
|
|
22157
22186
|
"node_modules/typescript-eslint": {
|
|
22158
|
-
"version": "8.
|
|
22159
|
-
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.
|
|
22160
|
-
"integrity": "sha512-
|
|
22187
|
+
"version": "8.64.0",
|
|
22188
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.64.0.tgz",
|
|
22189
|
+
"integrity": "sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==",
|
|
22161
22190
|
"dev": true,
|
|
22162
22191
|
"license": "MIT",
|
|
22163
22192
|
"dependencies": {
|
|
22164
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
22165
|
-
"@typescript-eslint/parser": "8.
|
|
22166
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
22167
|
-
"@typescript-eslint/utils": "8.
|
|
22193
|
+
"@typescript-eslint/eslint-plugin": "8.64.0",
|
|
22194
|
+
"@typescript-eslint/parser": "8.64.0",
|
|
22195
|
+
"@typescript-eslint/typescript-estree": "8.64.0",
|
|
22196
|
+
"@typescript-eslint/utils": "8.64.0"
|
|
22168
22197
|
},
|
|
22169
22198
|
"engines": {
|
|
22170
22199
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -23014,9 +23043,9 @@
|
|
|
23014
23043
|
"license": "ISC"
|
|
23015
23044
|
},
|
|
23016
23045
|
"node_modules/ws": {
|
|
23017
|
-
"version": "8.21.
|
|
23018
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.
|
|
23019
|
-
"integrity": "sha512
|
|
23046
|
+
"version": "8.21.1",
|
|
23047
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.1.tgz",
|
|
23048
|
+
"integrity": "sha512-+0NTnW77fFN/DjQi6k/Sq/Yvk4Sgajw7urW8V+asjXnRgDs9gyGkdb7EzgfhA4goXsRIZKE28fzIXBHEzhuiWw==",
|
|
23020
23049
|
"dev": true,
|
|
23021
23050
|
"license": "MIT",
|
|
23022
23051
|
"engines": {
|
|
@@ -23218,9 +23247,9 @@
|
|
|
23218
23247
|
}
|
|
23219
23248
|
},
|
|
23220
23249
|
"node_modules/yocto-spinner": {
|
|
23221
|
-
"version": "1.2.
|
|
23222
|
-
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-1.2.
|
|
23223
|
-
"integrity": "sha512-
|
|
23250
|
+
"version": "1.2.2",
|
|
23251
|
+
"resolved": "https://registry.npmjs.org/yocto-spinner/-/yocto-spinner-1.2.2.tgz",
|
|
23252
|
+
"integrity": "sha512-DODGl1wJjA/s5pnJFKau9lIYHT81lnhob1i3e1TjxZRxEhWRKl74nTbWE6H5KlkViQQTo/Z29YFdxzTZAMY3ng==",
|
|
23224
23253
|
"license": "MIT",
|
|
23225
23254
|
"dependencies": {
|
|
23226
23255
|
"yoctocolors": "^2.1.1"
|