@salesforce/webapp-template-app-react-template-vibe-experimental 1.43.1 → 1.45.0
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/dist/CHANGELOG.md +16 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/package-lock.json +1310 -538
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/package.json +2 -4
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/app.tsx +2 -5
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/auth/authHelpers.ts +73 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/{utils → components/auth}/authenticationConfig.ts +9 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/auth/{authentication-route.tsx → authenticationRouteLayout.tsx} +1 -1
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/auth/{private-route.tsx → privateRouteLayout.tsx} +1 -1
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/auth/sessionTimeout/SessionTimeoutValidator.tsx +616 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/auth/sessionTimeout/sessionTimeService.ts +161 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/auth/sessionTimeout/sessionTimeoutConfig.ts +77 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/alert.tsx +17 -13
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/button.tsx +35 -22
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/card.tsx +27 -12
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/dialog.tsx +143 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/field.tsx +157 -46
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/index.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/input.tsx +3 -3
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/label.tsx +2 -2
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/pagination.tsx +87 -74
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/select.tsx +156 -124
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/separator.tsx +26 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/skeleton.tsx +1 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/spinner.tsx +5 -16
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/table.tsx +68 -95
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/components/ui/tabs.tsx +47 -84
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/context/AuthContext.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/hooks/form.tsx +1 -1
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/hooks/useCountdownTimer.ts +266 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/hooks/useRetryWithBackoff.ts +109 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/layouts/AuthAppLayout.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/pages/ChangePassword.tsx +3 -2
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/pages/ForgotPassword.tsx +1 -1
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/pages/Login.tsx +3 -3
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/pages/Profile.tsx +3 -2
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/pages/Register.tsx +4 -5
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/pages/ResetPassword.tsx +3 -2
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/routes.tsx +4 -4
- package/dist/force-app/main/default/webapplications/appreacttemplatevibe/src/utils/helpers.ts +0 -74
- package/dist/package.json +1 -1
- package/package.json +2 -2
|
@@ -8,10 +8,7 @@
|
|
|
8
8
|
"name": "base-react-app",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@
|
|
12
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
13
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
14
|
-
"@salesforce/agentforce-conversation-client": "^1.43.0",
|
|
11
|
+
"@salesforce/agentforce-conversation-client": "^1.44.0",
|
|
15
12
|
"@salesforce/sdk-data": "^1.11.2",
|
|
16
13
|
"@salesforce/webapp-experimental": "*",
|
|
17
14
|
"@tailwindcss/vite": "^4.1.17",
|
|
@@ -19,6 +16,7 @@
|
|
|
19
16
|
"class-variance-authority": "^0.7.1",
|
|
20
17
|
"clsx": "^2.1.1",
|
|
21
18
|
"lucide-react": "^0.562.0",
|
|
19
|
+
"radix-ui": "^1.4.3",
|
|
22
20
|
"react": "^19.2.0",
|
|
23
21
|
"react-dom": "^19.2.0",
|
|
24
22
|
"react-router": "^7.10.1",
|
|
@@ -1760,9 +1758,9 @@
|
|
|
1760
1758
|
"license": "MIT"
|
|
1761
1759
|
},
|
|
1762
1760
|
"node_modules/@eslint/js": {
|
|
1763
|
-
"version": "9.39.
|
|
1764
|
-
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.
|
|
1765
|
-
"integrity": "sha512-
|
|
1761
|
+
"version": "9.39.3",
|
|
1762
|
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.3.tgz",
|
|
1763
|
+
"integrity": "sha512-1B1VkCq6FuUNlQvlBYb+1jDu/gV297TIs/OeiaSR9l1H27SVW55ONE1e1Vp16NqP683+xEGzxYtv4XCiDPaQiw==",
|
|
1766
1764
|
"dev": true,
|
|
1767
1765
|
"license": "MIT",
|
|
1768
1766
|
"engines": {
|
|
@@ -1858,6 +1856,13 @@
|
|
|
1858
1856
|
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
1859
1857
|
}
|
|
1860
1858
|
},
|
|
1859
|
+
"node_modules/@graphql-codegen/add/node_modules/tslib": {
|
|
1860
|
+
"version": "2.6.3",
|
|
1861
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
1862
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
1863
|
+
"dev": true,
|
|
1864
|
+
"license": "0BSD"
|
|
1865
|
+
},
|
|
1861
1866
|
"node_modules/@graphql-codegen/cli": {
|
|
1862
1867
|
"version": "6.1.1",
|
|
1863
1868
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-6.1.1.tgz",
|
|
@@ -1991,6 +1996,13 @@
|
|
|
1991
1996
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
1992
1997
|
}
|
|
1993
1998
|
},
|
|
1999
|
+
"node_modules/@graphql-codegen/client-preset/node_modules/tslib": {
|
|
2000
|
+
"version": "2.6.3",
|
|
2001
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2002
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2003
|
+
"dev": true,
|
|
2004
|
+
"license": "0BSD"
|
|
2005
|
+
},
|
|
1994
2006
|
"node_modules/@graphql-codegen/core": {
|
|
1995
2007
|
"version": "5.0.0",
|
|
1996
2008
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-5.0.0.tgz",
|
|
@@ -2029,6 +2041,13 @@
|
|
|
2029
2041
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2030
2042
|
}
|
|
2031
2043
|
},
|
|
2044
|
+
"node_modules/@graphql-codegen/core/node_modules/tslib": {
|
|
2045
|
+
"version": "2.6.3",
|
|
2046
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2047
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2048
|
+
"dev": true,
|
|
2049
|
+
"license": "0BSD"
|
|
2050
|
+
},
|
|
2032
2051
|
"node_modules/@graphql-codegen/gql-tag-operations": {
|
|
2033
2052
|
"version": "5.1.3",
|
|
2034
2053
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-5.1.3.tgz",
|
|
@@ -2068,6 +2087,13 @@
|
|
|
2068
2087
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2069
2088
|
}
|
|
2070
2089
|
},
|
|
2090
|
+
"node_modules/@graphql-codegen/gql-tag-operations/node_modules/tslib": {
|
|
2091
|
+
"version": "2.6.3",
|
|
2092
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2093
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2094
|
+
"dev": true,
|
|
2095
|
+
"license": "0BSD"
|
|
2096
|
+
},
|
|
2071
2097
|
"node_modules/@graphql-codegen/plugin-helpers": {
|
|
2072
2098
|
"version": "6.1.0",
|
|
2073
2099
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-6.1.0.tgz",
|
|
@@ -2108,6 +2134,13 @@
|
|
|
2108
2134
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2109
2135
|
}
|
|
2110
2136
|
},
|
|
2137
|
+
"node_modules/@graphql-codegen/plugin-helpers/node_modules/tslib": {
|
|
2138
|
+
"version": "2.6.3",
|
|
2139
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2140
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2141
|
+
"dev": true,
|
|
2142
|
+
"license": "0BSD"
|
|
2143
|
+
},
|
|
2111
2144
|
"node_modules/@graphql-codegen/schema-ast": {
|
|
2112
2145
|
"version": "5.0.0",
|
|
2113
2146
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-5.0.0.tgz",
|
|
@@ -2145,6 +2178,13 @@
|
|
|
2145
2178
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2146
2179
|
}
|
|
2147
2180
|
},
|
|
2181
|
+
"node_modules/@graphql-codegen/schema-ast/node_modules/tslib": {
|
|
2182
|
+
"version": "2.6.3",
|
|
2183
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2184
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2185
|
+
"dev": true,
|
|
2186
|
+
"license": "0BSD"
|
|
2187
|
+
},
|
|
2148
2188
|
"node_modules/@graphql-codegen/typed-document-node": {
|
|
2149
2189
|
"version": "6.1.6",
|
|
2150
2190
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-6.1.6.tgz",
|
|
@@ -2165,6 +2205,13 @@
|
|
|
2165
2205
|
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
2166
2206
|
}
|
|
2167
2207
|
},
|
|
2208
|
+
"node_modules/@graphql-codegen/typed-document-node/node_modules/tslib": {
|
|
2209
|
+
"version": "2.6.3",
|
|
2210
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2211
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2212
|
+
"dev": true,
|
|
2213
|
+
"license": "0BSD"
|
|
2214
|
+
},
|
|
2168
2215
|
"node_modules/@graphql-codegen/typescript": {
|
|
2169
2216
|
"version": "5.0.8",
|
|
2170
2217
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-5.0.8.tgz",
|
|
@@ -2211,6 +2258,20 @@
|
|
|
2211
2258
|
}
|
|
2212
2259
|
}
|
|
2213
2260
|
},
|
|
2261
|
+
"node_modules/@graphql-codegen/typescript-operations/node_modules/tslib": {
|
|
2262
|
+
"version": "2.6.3",
|
|
2263
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2264
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2265
|
+
"dev": true,
|
|
2266
|
+
"license": "0BSD"
|
|
2267
|
+
},
|
|
2268
|
+
"node_modules/@graphql-codegen/typescript/node_modules/tslib": {
|
|
2269
|
+
"version": "2.6.3",
|
|
2270
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2271
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2272
|
+
"dev": true,
|
|
2273
|
+
"license": "0BSD"
|
|
2274
|
+
},
|
|
2214
2275
|
"node_modules/@graphql-codegen/visitor-plugin-common": {
|
|
2215
2276
|
"version": "6.2.3",
|
|
2216
2277
|
"resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-6.2.3.tgz",
|
|
@@ -2255,6 +2316,13 @@
|
|
|
2255
2316
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2256
2317
|
}
|
|
2257
2318
|
},
|
|
2319
|
+
"node_modules/@graphql-codegen/visitor-plugin-common/node_modules/tslib": {
|
|
2320
|
+
"version": "2.6.3",
|
|
2321
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
2322
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
2323
|
+
"dev": true,
|
|
2324
|
+
"license": "0BSD"
|
|
2325
|
+
},
|
|
2258
2326
|
"node_modules/@graphql-eslint/eslint-plugin": {
|
|
2259
2327
|
"version": "4.4.0",
|
|
2260
2328
|
"resolved": "https://registry.npmjs.org/@graphql-eslint/eslint-plugin/-/eslint-plugin-4.4.0.tgz",
|
|
@@ -2356,13 +2424,6 @@
|
|
|
2356
2424
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2357
2425
|
}
|
|
2358
2426
|
},
|
|
2359
|
-
"node_modules/@graphql-tools/batch-execute/node_modules/tslib": {
|
|
2360
|
-
"version": "2.8.1",
|
|
2361
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2362
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2363
|
-
"dev": true,
|
|
2364
|
-
"license": "0BSD"
|
|
2365
|
-
},
|
|
2366
2427
|
"node_modules/@graphql-tools/code-file-loader": {
|
|
2367
2428
|
"version": "8.1.28",
|
|
2368
2429
|
"resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.28.tgz",
|
|
@@ -2406,13 +2467,6 @@
|
|
|
2406
2467
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2407
2468
|
}
|
|
2408
2469
|
},
|
|
2409
|
-
"node_modules/@graphql-tools/delegate/node_modules/tslib": {
|
|
2410
|
-
"version": "2.8.1",
|
|
2411
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2412
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2413
|
-
"dev": true,
|
|
2414
|
-
"license": "0BSD"
|
|
2415
|
-
},
|
|
2416
2470
|
"node_modules/@graphql-tools/documents": {
|
|
2417
2471
|
"version": "1.0.1",
|
|
2418
2472
|
"resolved": "https://registry.npmjs.org/@graphql-tools/documents/-/documents-1.0.1.tgz",
|
|
@@ -2490,13 +2544,6 @@
|
|
|
2490
2544
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2491
2545
|
}
|
|
2492
2546
|
},
|
|
2493
|
-
"node_modules/@graphql-tools/executor-graphql-ws/node_modules/tslib": {
|
|
2494
|
-
"version": "2.8.1",
|
|
2495
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2496
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2497
|
-
"dev": true,
|
|
2498
|
-
"license": "0BSD"
|
|
2499
|
-
},
|
|
2500
2547
|
"node_modules/@graphql-tools/executor-http": {
|
|
2501
2548
|
"version": "3.1.0",
|
|
2502
2549
|
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-3.1.0.tgz",
|
|
@@ -2521,13 +2568,6 @@
|
|
|
2521
2568
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2522
2569
|
}
|
|
2523
2570
|
},
|
|
2524
|
-
"node_modules/@graphql-tools/executor-http/node_modules/tslib": {
|
|
2525
|
-
"version": "2.8.1",
|
|
2526
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2527
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2528
|
-
"dev": true,
|
|
2529
|
-
"license": "0BSD"
|
|
2530
|
-
},
|
|
2531
2571
|
"node_modules/@graphql-tools/executor-legacy-ws": {
|
|
2532
2572
|
"version": "1.1.25",
|
|
2533
2573
|
"resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.25.tgz",
|
|
@@ -2825,13 +2865,6 @@
|
|
|
2825
2865
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
2826
2866
|
}
|
|
2827
2867
|
},
|
|
2828
|
-
"node_modules/@graphql-tools/wrap/node_modules/tslib": {
|
|
2829
|
-
"version": "2.8.1",
|
|
2830
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2831
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2832
|
-
"dev": true,
|
|
2833
|
-
"license": "0BSD"
|
|
2834
|
-
},
|
|
2835
2868
|
"node_modules/@graphql-typed-document-node/core": {
|
|
2836
2869
|
"version": "3.2.0",
|
|
2837
2870
|
"resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz",
|
|
@@ -3804,13 +3837,13 @@
|
|
|
3804
3837
|
"integrity": "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==",
|
|
3805
3838
|
"license": "MIT"
|
|
3806
3839
|
},
|
|
3807
|
-
"node_modules/@radix-ui/react-
|
|
3840
|
+
"node_modules/@radix-ui/react-accessible-icon": {
|
|
3808
3841
|
"version": "1.1.7",
|
|
3809
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3810
|
-
"integrity": "sha512-
|
|
3842
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-accessible-icon/-/react-accessible-icon-1.1.7.tgz",
|
|
3843
|
+
"integrity": "sha512-XM+E4WXl0OqUJFovy6GjmxxFyx9opfCAIUku4dlKRd5YEPqt4kALOkQOp0Of6reHuUkJuiPBEc5k0o4z4lTC8A==",
|
|
3811
3844
|
"license": "MIT",
|
|
3812
3845
|
"dependencies": {
|
|
3813
|
-
"@radix-ui/react-
|
|
3846
|
+
"@radix-ui/react-visually-hidden": "1.2.3"
|
|
3814
3847
|
},
|
|
3815
3848
|
"peerDependencies": {
|
|
3816
3849
|
"@types/react": "*",
|
|
@@ -3827,13 +3860,21 @@
|
|
|
3827
3860
|
}
|
|
3828
3861
|
}
|
|
3829
3862
|
},
|
|
3830
|
-
"node_modules/@radix-ui/react-
|
|
3831
|
-
"version": "2.
|
|
3832
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3833
|
-
"integrity": "sha512-
|
|
3863
|
+
"node_modules/@radix-ui/react-accordion": {
|
|
3864
|
+
"version": "1.2.12",
|
|
3865
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.12.tgz",
|
|
3866
|
+
"integrity": "sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==",
|
|
3834
3867
|
"license": "MIT",
|
|
3835
3868
|
"dependencies": {
|
|
3836
|
-
"@radix-ui/
|
|
3869
|
+
"@radix-ui/primitive": "1.1.3",
|
|
3870
|
+
"@radix-ui/react-collapsible": "1.1.12",
|
|
3871
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
3872
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
3873
|
+
"@radix-ui/react-context": "1.1.2",
|
|
3874
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
3875
|
+
"@radix-ui/react-id": "1.1.1",
|
|
3876
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
3877
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
3837
3878
|
},
|
|
3838
3879
|
"peerDependencies": {
|
|
3839
3880
|
"@types/react": "*",
|
|
@@ -3850,32 +3891,16 @@
|
|
|
3850
3891
|
}
|
|
3851
3892
|
}
|
|
3852
3893
|
},
|
|
3853
|
-
"node_modules/@radix-ui/react-
|
|
3854
|
-
"version": "1.
|
|
3855
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3856
|
-
"integrity": "sha512-
|
|
3857
|
-
"license": "MIT",
|
|
3858
|
-
"dependencies": {
|
|
3859
|
-
"@radix-ui/react-compose-refs": "1.1.2"
|
|
3860
|
-
},
|
|
3861
|
-
"peerDependencies": {
|
|
3862
|
-
"@types/react": "*",
|
|
3863
|
-
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3864
|
-
},
|
|
3865
|
-
"peerDependenciesMeta": {
|
|
3866
|
-
"@types/react": {
|
|
3867
|
-
"optional": true
|
|
3868
|
-
}
|
|
3869
|
-
}
|
|
3870
|
-
},
|
|
3871
|
-
"node_modules/@radix-ui/react-collection": {
|
|
3872
|
-
"version": "1.1.7",
|
|
3873
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz",
|
|
3874
|
-
"integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
|
|
3894
|
+
"node_modules/@radix-ui/react-alert-dialog": {
|
|
3895
|
+
"version": "1.1.15",
|
|
3896
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.15.tgz",
|
|
3897
|
+
"integrity": "sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==",
|
|
3875
3898
|
"license": "MIT",
|
|
3876
3899
|
"dependencies": {
|
|
3900
|
+
"@radix-ui/primitive": "1.1.3",
|
|
3877
3901
|
"@radix-ui/react-compose-refs": "1.1.2",
|
|
3878
3902
|
"@radix-ui/react-context": "1.1.2",
|
|
3903
|
+
"@radix-ui/react-dialog": "1.1.15",
|
|
3879
3904
|
"@radix-ui/react-primitive": "2.1.3",
|
|
3880
3905
|
"@radix-ui/react-slot": "1.2.3"
|
|
3881
3906
|
},
|
|
@@ -3894,13 +3919,13 @@
|
|
|
3894
3919
|
}
|
|
3895
3920
|
}
|
|
3896
3921
|
},
|
|
3897
|
-
"node_modules/@radix-ui/react-
|
|
3898
|
-
"version": "
|
|
3899
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3900
|
-
"integrity": "sha512-
|
|
3922
|
+
"node_modules/@radix-ui/react-arrow": {
|
|
3923
|
+
"version": "1.1.7",
|
|
3924
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz",
|
|
3925
|
+
"integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==",
|
|
3901
3926
|
"license": "MIT",
|
|
3902
3927
|
"dependencies": {
|
|
3903
|
-
"@radix-ui/react-
|
|
3928
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
3904
3929
|
},
|
|
3905
3930
|
"peerDependencies": {
|
|
3906
3931
|
"@types/react": "*",
|
|
@@ -3917,80 +3942,100 @@
|
|
|
3917
3942
|
}
|
|
3918
3943
|
}
|
|
3919
3944
|
},
|
|
3920
|
-
"node_modules/@radix-ui/react-
|
|
3921
|
-
"version": "1.
|
|
3922
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3923
|
-
"integrity": "sha512-
|
|
3945
|
+
"node_modules/@radix-ui/react-aspect-ratio": {
|
|
3946
|
+
"version": "1.1.7",
|
|
3947
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-aspect-ratio/-/react-aspect-ratio-1.1.7.tgz",
|
|
3948
|
+
"integrity": "sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==",
|
|
3924
3949
|
"license": "MIT",
|
|
3925
3950
|
"dependencies": {
|
|
3926
|
-
"@radix-ui/react-
|
|
3951
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
3927
3952
|
},
|
|
3928
3953
|
"peerDependencies": {
|
|
3929
3954
|
"@types/react": "*",
|
|
3930
|
-
"react": "
|
|
3955
|
+
"@types/react-dom": "*",
|
|
3956
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
3957
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3931
3958
|
},
|
|
3932
3959
|
"peerDependenciesMeta": {
|
|
3933
3960
|
"@types/react": {
|
|
3934
3961
|
"optional": true
|
|
3935
|
-
}
|
|
3936
|
-
|
|
3937
|
-
},
|
|
3938
|
-
"node_modules/@radix-ui/react-compose-refs": {
|
|
3939
|
-
"version": "1.1.2",
|
|
3940
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
|
|
3941
|
-
"integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
|
|
3942
|
-
"license": "MIT",
|
|
3943
|
-
"peerDependencies": {
|
|
3944
|
-
"@types/react": "*",
|
|
3945
|
-
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3946
|
-
},
|
|
3947
|
-
"peerDependenciesMeta": {
|
|
3948
|
-
"@types/react": {
|
|
3962
|
+
},
|
|
3963
|
+
"@types/react-dom": {
|
|
3949
3964
|
"optional": true
|
|
3950
3965
|
}
|
|
3951
3966
|
}
|
|
3952
3967
|
},
|
|
3953
|
-
"node_modules/@radix-ui/react-
|
|
3954
|
-
"version": "1.1.
|
|
3955
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3956
|
-
"integrity": "sha512-
|
|
3968
|
+
"node_modules/@radix-ui/react-avatar": {
|
|
3969
|
+
"version": "1.1.10",
|
|
3970
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.1.10.tgz",
|
|
3971
|
+
"integrity": "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==",
|
|
3957
3972
|
"license": "MIT",
|
|
3973
|
+
"dependencies": {
|
|
3974
|
+
"@radix-ui/react-context": "1.1.2",
|
|
3975
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
3976
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
3977
|
+
"@radix-ui/react-use-is-hydrated": "0.1.0",
|
|
3978
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
3979
|
+
},
|
|
3958
3980
|
"peerDependencies": {
|
|
3959
3981
|
"@types/react": "*",
|
|
3960
|
-
"react": "
|
|
3982
|
+
"@types/react-dom": "*",
|
|
3983
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
3984
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3961
3985
|
},
|
|
3962
3986
|
"peerDependenciesMeta": {
|
|
3963
3987
|
"@types/react": {
|
|
3964
3988
|
"optional": true
|
|
3989
|
+
},
|
|
3990
|
+
"@types/react-dom": {
|
|
3991
|
+
"optional": true
|
|
3965
3992
|
}
|
|
3966
3993
|
}
|
|
3967
3994
|
},
|
|
3968
|
-
"node_modules/@radix-ui/react-
|
|
3969
|
-
"version": "1.
|
|
3970
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3971
|
-
"integrity": "sha512-
|
|
3995
|
+
"node_modules/@radix-ui/react-checkbox": {
|
|
3996
|
+
"version": "1.3.3",
|
|
3997
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.3.3.tgz",
|
|
3998
|
+
"integrity": "sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==",
|
|
3972
3999
|
"license": "MIT",
|
|
4000
|
+
"dependencies": {
|
|
4001
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4002
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4003
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4004
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4005
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4006
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4007
|
+
"@radix-ui/react-use-previous": "1.1.1",
|
|
4008
|
+
"@radix-ui/react-use-size": "1.1.1"
|
|
4009
|
+
},
|
|
3973
4010
|
"peerDependencies": {
|
|
3974
4011
|
"@types/react": "*",
|
|
3975
|
-
"react": "
|
|
4012
|
+
"@types/react-dom": "*",
|
|
4013
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4014
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3976
4015
|
},
|
|
3977
4016
|
"peerDependenciesMeta": {
|
|
3978
4017
|
"@types/react": {
|
|
3979
4018
|
"optional": true
|
|
4019
|
+
},
|
|
4020
|
+
"@types/react-dom": {
|
|
4021
|
+
"optional": true
|
|
3980
4022
|
}
|
|
3981
4023
|
}
|
|
3982
4024
|
},
|
|
3983
|
-
"node_modules/@radix-ui/react-
|
|
3984
|
-
"version": "1.1.
|
|
3985
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
3986
|
-
"integrity": "sha512-
|
|
4025
|
+
"node_modules/@radix-ui/react-collapsible": {
|
|
4026
|
+
"version": "1.1.12",
|
|
4027
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.12.tgz",
|
|
4028
|
+
"integrity": "sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==",
|
|
3987
4029
|
"license": "MIT",
|
|
3988
4030
|
"dependencies": {
|
|
3989
4031
|
"@radix-ui/primitive": "1.1.3",
|
|
3990
4032
|
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4033
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4034
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4035
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
3991
4036
|
"@radix-ui/react-primitive": "2.1.3",
|
|
3992
|
-
"@radix-ui/react-use-
|
|
3993
|
-
"@radix-ui/react-use-
|
|
4037
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4038
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
3994
4039
|
},
|
|
3995
4040
|
"peerDependencies": {
|
|
3996
4041
|
"@types/react": "*",
|
|
@@ -4007,12 +4052,15 @@
|
|
|
4007
4052
|
}
|
|
4008
4053
|
}
|
|
4009
4054
|
},
|
|
4010
|
-
"node_modules/@radix-ui/react-
|
|
4011
|
-
"version": "
|
|
4012
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4013
|
-
"integrity": "sha512-
|
|
4055
|
+
"node_modules/@radix-ui/react-collection": {
|
|
4056
|
+
"version": "1.1.7",
|
|
4057
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz",
|
|
4058
|
+
"integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
|
|
4014
4059
|
"license": "MIT",
|
|
4015
4060
|
"dependencies": {
|
|
4061
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4062
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4063
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4016
4064
|
"@radix-ui/react-slot": "1.2.3"
|
|
4017
4065
|
},
|
|
4018
4066
|
"peerDependencies": {
|
|
@@ -4030,14 +4078,11 @@
|
|
|
4030
4078
|
}
|
|
4031
4079
|
}
|
|
4032
4080
|
},
|
|
4033
|
-
"node_modules/@radix-ui/react-
|
|
4034
|
-
"version": "1.2
|
|
4035
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4036
|
-
"integrity": "sha512-
|
|
4081
|
+
"node_modules/@radix-ui/react-compose-refs": {
|
|
4082
|
+
"version": "1.1.2",
|
|
4083
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
|
|
4084
|
+
"integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
|
|
4037
4085
|
"license": "MIT",
|
|
4038
|
-
"dependencies": {
|
|
4039
|
-
"@radix-ui/react-compose-refs": "1.1.2"
|
|
4040
|
-
},
|
|
4041
4086
|
"peerDependencies": {
|
|
4042
4087
|
"@types/react": "*",
|
|
4043
4088
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
@@ -4048,10 +4093,10 @@
|
|
|
4048
4093
|
}
|
|
4049
4094
|
}
|
|
4050
4095
|
},
|
|
4051
|
-
"node_modules/@radix-ui/react-
|
|
4052
|
-
"version": "1.1.
|
|
4053
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4054
|
-
"integrity": "sha512-
|
|
4096
|
+
"node_modules/@radix-ui/react-context": {
|
|
4097
|
+
"version": "1.1.2",
|
|
4098
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
|
|
4099
|
+
"integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
|
|
4055
4100
|
"license": "MIT",
|
|
4056
4101
|
"peerDependencies": {
|
|
4057
4102
|
"@types/react": "*",
|
|
@@ -4063,15 +4108,18 @@
|
|
|
4063
4108
|
}
|
|
4064
4109
|
}
|
|
4065
4110
|
},
|
|
4066
|
-
"node_modules/@radix-ui/react-
|
|
4067
|
-
"version": "
|
|
4068
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4069
|
-
"integrity": "sha512-
|
|
4111
|
+
"node_modules/@radix-ui/react-context-menu": {
|
|
4112
|
+
"version": "2.2.16",
|
|
4113
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-context-menu/-/react-context-menu-2.2.16.tgz",
|
|
4114
|
+
"integrity": "sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==",
|
|
4070
4115
|
"license": "MIT",
|
|
4071
4116
|
"dependencies": {
|
|
4072
|
-
"@radix-ui/
|
|
4117
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4118
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4119
|
+
"@radix-ui/react-menu": "2.1.16",
|
|
4073
4120
|
"@radix-ui/react-primitive": "2.1.3",
|
|
4074
|
-
"@radix-ui/react-use-callback-ref": "1.1.1"
|
|
4121
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4122
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4075
4123
|
},
|
|
4076
4124
|
"peerDependencies": {
|
|
4077
4125
|
"@types/react": "*",
|
|
@@ -4088,16 +4136,348 @@
|
|
|
4088
4136
|
}
|
|
4089
4137
|
}
|
|
4090
4138
|
},
|
|
4091
|
-
"node_modules/@radix-ui/react-
|
|
4092
|
-
"version": "
|
|
4093
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4094
|
-
"integrity": "sha512-
|
|
4139
|
+
"node_modules/@radix-ui/react-dialog": {
|
|
4140
|
+
"version": "1.1.15",
|
|
4141
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz",
|
|
4142
|
+
"integrity": "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==",
|
|
4095
4143
|
"license": "MIT",
|
|
4096
4144
|
"dependencies": {
|
|
4097
|
-
"@radix-ui/
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
"@
|
|
4145
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4146
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4147
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4148
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4149
|
+
"@radix-ui/react-focus-guards": "1.1.3",
|
|
4150
|
+
"@radix-ui/react-focus-scope": "1.1.7",
|
|
4151
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4152
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
4153
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4154
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4155
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
4156
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4157
|
+
"aria-hidden": "^1.2.4",
|
|
4158
|
+
"react-remove-scroll": "^2.6.3"
|
|
4159
|
+
},
|
|
4160
|
+
"peerDependencies": {
|
|
4161
|
+
"@types/react": "*",
|
|
4162
|
+
"@types/react-dom": "*",
|
|
4163
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4164
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4165
|
+
},
|
|
4166
|
+
"peerDependenciesMeta": {
|
|
4167
|
+
"@types/react": {
|
|
4168
|
+
"optional": true
|
|
4169
|
+
},
|
|
4170
|
+
"@types/react-dom": {
|
|
4171
|
+
"optional": true
|
|
4172
|
+
}
|
|
4173
|
+
}
|
|
4174
|
+
},
|
|
4175
|
+
"node_modules/@radix-ui/react-direction": {
|
|
4176
|
+
"version": "1.1.1",
|
|
4177
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz",
|
|
4178
|
+
"integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==",
|
|
4179
|
+
"license": "MIT",
|
|
4180
|
+
"peerDependencies": {
|
|
4181
|
+
"@types/react": "*",
|
|
4182
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4183
|
+
},
|
|
4184
|
+
"peerDependenciesMeta": {
|
|
4185
|
+
"@types/react": {
|
|
4186
|
+
"optional": true
|
|
4187
|
+
}
|
|
4188
|
+
}
|
|
4189
|
+
},
|
|
4190
|
+
"node_modules/@radix-ui/react-dismissable-layer": {
|
|
4191
|
+
"version": "1.1.11",
|
|
4192
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz",
|
|
4193
|
+
"integrity": "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==",
|
|
4194
|
+
"license": "MIT",
|
|
4195
|
+
"dependencies": {
|
|
4196
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4197
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4198
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4199
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4200
|
+
"@radix-ui/react-use-escape-keydown": "1.1.1"
|
|
4201
|
+
},
|
|
4202
|
+
"peerDependencies": {
|
|
4203
|
+
"@types/react": "*",
|
|
4204
|
+
"@types/react-dom": "*",
|
|
4205
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4206
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4207
|
+
},
|
|
4208
|
+
"peerDependenciesMeta": {
|
|
4209
|
+
"@types/react": {
|
|
4210
|
+
"optional": true
|
|
4211
|
+
},
|
|
4212
|
+
"@types/react-dom": {
|
|
4213
|
+
"optional": true
|
|
4214
|
+
}
|
|
4215
|
+
}
|
|
4216
|
+
},
|
|
4217
|
+
"node_modules/@radix-ui/react-dropdown-menu": {
|
|
4218
|
+
"version": "2.1.16",
|
|
4219
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.16.tgz",
|
|
4220
|
+
"integrity": "sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==",
|
|
4221
|
+
"license": "MIT",
|
|
4222
|
+
"dependencies": {
|
|
4223
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4224
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4225
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4226
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4227
|
+
"@radix-ui/react-menu": "2.1.16",
|
|
4228
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4229
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4230
|
+
},
|
|
4231
|
+
"peerDependencies": {
|
|
4232
|
+
"@types/react": "*",
|
|
4233
|
+
"@types/react-dom": "*",
|
|
4234
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4235
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4236
|
+
},
|
|
4237
|
+
"peerDependenciesMeta": {
|
|
4238
|
+
"@types/react": {
|
|
4239
|
+
"optional": true
|
|
4240
|
+
},
|
|
4241
|
+
"@types/react-dom": {
|
|
4242
|
+
"optional": true
|
|
4243
|
+
}
|
|
4244
|
+
}
|
|
4245
|
+
},
|
|
4246
|
+
"node_modules/@radix-ui/react-focus-guards": {
|
|
4247
|
+
"version": "1.1.3",
|
|
4248
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz",
|
|
4249
|
+
"integrity": "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==",
|
|
4250
|
+
"license": "MIT",
|
|
4251
|
+
"peerDependencies": {
|
|
4252
|
+
"@types/react": "*",
|
|
4253
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4254
|
+
},
|
|
4255
|
+
"peerDependenciesMeta": {
|
|
4256
|
+
"@types/react": {
|
|
4257
|
+
"optional": true
|
|
4258
|
+
}
|
|
4259
|
+
}
|
|
4260
|
+
},
|
|
4261
|
+
"node_modules/@radix-ui/react-focus-scope": {
|
|
4262
|
+
"version": "1.1.7",
|
|
4263
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz",
|
|
4264
|
+
"integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
|
|
4265
|
+
"license": "MIT",
|
|
4266
|
+
"dependencies": {
|
|
4267
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4268
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4269
|
+
"@radix-ui/react-use-callback-ref": "1.1.1"
|
|
4270
|
+
},
|
|
4271
|
+
"peerDependencies": {
|
|
4272
|
+
"@types/react": "*",
|
|
4273
|
+
"@types/react-dom": "*",
|
|
4274
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4275
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4276
|
+
},
|
|
4277
|
+
"peerDependenciesMeta": {
|
|
4278
|
+
"@types/react": {
|
|
4279
|
+
"optional": true
|
|
4280
|
+
},
|
|
4281
|
+
"@types/react-dom": {
|
|
4282
|
+
"optional": true
|
|
4283
|
+
}
|
|
4284
|
+
}
|
|
4285
|
+
},
|
|
4286
|
+
"node_modules/@radix-ui/react-form": {
|
|
4287
|
+
"version": "0.1.8",
|
|
4288
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-form/-/react-form-0.1.8.tgz",
|
|
4289
|
+
"integrity": "sha512-QM70k4Zwjttifr5a4sZFts9fn8FzHYvQ5PiB19O2HsYibaHSVt9fH9rzB0XZo/YcM+b7t/p7lYCT/F5eOeF5yQ==",
|
|
4290
|
+
"license": "MIT",
|
|
4291
|
+
"dependencies": {
|
|
4292
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4293
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4294
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4295
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4296
|
+
"@radix-ui/react-label": "2.1.7",
|
|
4297
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
4298
|
+
},
|
|
4299
|
+
"peerDependencies": {
|
|
4300
|
+
"@types/react": "*",
|
|
4301
|
+
"@types/react-dom": "*",
|
|
4302
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4303
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4304
|
+
},
|
|
4305
|
+
"peerDependenciesMeta": {
|
|
4306
|
+
"@types/react": {
|
|
4307
|
+
"optional": true
|
|
4308
|
+
},
|
|
4309
|
+
"@types/react-dom": {
|
|
4310
|
+
"optional": true
|
|
4311
|
+
}
|
|
4312
|
+
}
|
|
4313
|
+
},
|
|
4314
|
+
"node_modules/@radix-ui/react-hover-card": {
|
|
4315
|
+
"version": "1.1.15",
|
|
4316
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-hover-card/-/react-hover-card-1.1.15.tgz",
|
|
4317
|
+
"integrity": "sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==",
|
|
4318
|
+
"license": "MIT",
|
|
4319
|
+
"dependencies": {
|
|
4320
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4321
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4322
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4323
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4324
|
+
"@radix-ui/react-popper": "1.2.8",
|
|
4325
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
4326
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4327
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4328
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4329
|
+
},
|
|
4330
|
+
"peerDependencies": {
|
|
4331
|
+
"@types/react": "*",
|
|
4332
|
+
"@types/react-dom": "*",
|
|
4333
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4334
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4335
|
+
},
|
|
4336
|
+
"peerDependenciesMeta": {
|
|
4337
|
+
"@types/react": {
|
|
4338
|
+
"optional": true
|
|
4339
|
+
},
|
|
4340
|
+
"@types/react-dom": {
|
|
4341
|
+
"optional": true
|
|
4342
|
+
}
|
|
4343
|
+
}
|
|
4344
|
+
},
|
|
4345
|
+
"node_modules/@radix-ui/react-id": {
|
|
4346
|
+
"version": "1.1.1",
|
|
4347
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
|
|
4348
|
+
"integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
|
|
4349
|
+
"license": "MIT",
|
|
4350
|
+
"dependencies": {
|
|
4351
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4352
|
+
},
|
|
4353
|
+
"peerDependencies": {
|
|
4354
|
+
"@types/react": "*",
|
|
4355
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4356
|
+
},
|
|
4357
|
+
"peerDependenciesMeta": {
|
|
4358
|
+
"@types/react": {
|
|
4359
|
+
"optional": true
|
|
4360
|
+
}
|
|
4361
|
+
}
|
|
4362
|
+
},
|
|
4363
|
+
"node_modules/@radix-ui/react-label": {
|
|
4364
|
+
"version": "2.1.7",
|
|
4365
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.7.tgz",
|
|
4366
|
+
"integrity": "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==",
|
|
4367
|
+
"license": "MIT",
|
|
4368
|
+
"dependencies": {
|
|
4369
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
4370
|
+
},
|
|
4371
|
+
"peerDependencies": {
|
|
4372
|
+
"@types/react": "*",
|
|
4373
|
+
"@types/react-dom": "*",
|
|
4374
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4375
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4376
|
+
},
|
|
4377
|
+
"peerDependenciesMeta": {
|
|
4378
|
+
"@types/react": {
|
|
4379
|
+
"optional": true
|
|
4380
|
+
},
|
|
4381
|
+
"@types/react-dom": {
|
|
4382
|
+
"optional": true
|
|
4383
|
+
}
|
|
4384
|
+
}
|
|
4385
|
+
},
|
|
4386
|
+
"node_modules/@radix-ui/react-menu": {
|
|
4387
|
+
"version": "2.1.16",
|
|
4388
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.16.tgz",
|
|
4389
|
+
"integrity": "sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==",
|
|
4390
|
+
"license": "MIT",
|
|
4391
|
+
"dependencies": {
|
|
4392
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4393
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4394
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4395
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4396
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4397
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4398
|
+
"@radix-ui/react-focus-guards": "1.1.3",
|
|
4399
|
+
"@radix-ui/react-focus-scope": "1.1.7",
|
|
4400
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4401
|
+
"@radix-ui/react-popper": "1.2.8",
|
|
4402
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
4403
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4404
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4405
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
4406
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
4407
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4408
|
+
"aria-hidden": "^1.2.4",
|
|
4409
|
+
"react-remove-scroll": "^2.6.3"
|
|
4410
|
+
},
|
|
4411
|
+
"peerDependencies": {
|
|
4412
|
+
"@types/react": "*",
|
|
4413
|
+
"@types/react-dom": "*",
|
|
4414
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4415
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4416
|
+
},
|
|
4417
|
+
"peerDependenciesMeta": {
|
|
4418
|
+
"@types/react": {
|
|
4419
|
+
"optional": true
|
|
4420
|
+
},
|
|
4421
|
+
"@types/react-dom": {
|
|
4422
|
+
"optional": true
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
},
|
|
4426
|
+
"node_modules/@radix-ui/react-menubar": {
|
|
4427
|
+
"version": "1.1.16",
|
|
4428
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-menubar/-/react-menubar-1.1.16.tgz",
|
|
4429
|
+
"integrity": "sha512-EB1FktTz5xRRi2Er974AUQZWg2yVBb1yjip38/lgwtCVRd3a+maUoGHN/xs9Yv8SY8QwbSEb+YrxGadVWbEutA==",
|
|
4430
|
+
"license": "MIT",
|
|
4431
|
+
"dependencies": {
|
|
4432
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4433
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4434
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4435
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4436
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4437
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4438
|
+
"@radix-ui/react-menu": "2.1.16",
|
|
4439
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4440
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
4441
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4442
|
+
},
|
|
4443
|
+
"peerDependencies": {
|
|
4444
|
+
"@types/react": "*",
|
|
4445
|
+
"@types/react-dom": "*",
|
|
4446
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4447
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4448
|
+
},
|
|
4449
|
+
"peerDependenciesMeta": {
|
|
4450
|
+
"@types/react": {
|
|
4451
|
+
"optional": true
|
|
4452
|
+
},
|
|
4453
|
+
"@types/react-dom": {
|
|
4454
|
+
"optional": true
|
|
4455
|
+
}
|
|
4456
|
+
}
|
|
4457
|
+
},
|
|
4458
|
+
"node_modules/@radix-ui/react-navigation-menu": {
|
|
4459
|
+
"version": "1.2.14",
|
|
4460
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.14.tgz",
|
|
4461
|
+
"integrity": "sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==",
|
|
4462
|
+
"license": "MIT",
|
|
4463
|
+
"dependencies": {
|
|
4464
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4465
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4466
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4467
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4468
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4469
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4470
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4471
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4472
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4473
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4474
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4475
|
+
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
4476
|
+
"@radix-ui/react-use-previous": "1.1.1",
|
|
4477
|
+
"@radix-ui/react-visually-hidden": "1.2.3"
|
|
4478
|
+
},
|
|
4479
|
+
"peerDependencies": {
|
|
4480
|
+
"@types/react": "*",
|
|
4101
4481
|
"@types/react-dom": "*",
|
|
4102
4482
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4103
4483
|
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
@@ -4111,49 +4491,355 @@
|
|
|
4111
4491
|
}
|
|
4112
4492
|
}
|
|
4113
4493
|
},
|
|
4114
|
-
"node_modules/@radix-ui/react-
|
|
4115
|
-
"version": "1.
|
|
4116
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4117
|
-
"integrity": "sha512-
|
|
4494
|
+
"node_modules/@radix-ui/react-one-time-password-field": {
|
|
4495
|
+
"version": "0.1.8",
|
|
4496
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-one-time-password-field/-/react-one-time-password-field-0.1.8.tgz",
|
|
4497
|
+
"integrity": "sha512-ycS4rbwURavDPVjCb5iS3aG4lURFDILi6sKI/WITUMZ13gMmn/xGjpLoqBAalhJaDk8I3UbCM5GzKHrnzwHbvg==",
|
|
4118
4498
|
"license": "MIT",
|
|
4119
4499
|
"dependencies": {
|
|
4120
|
-
"@radix-ui/
|
|
4500
|
+
"@radix-ui/number": "1.1.1",
|
|
4501
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4502
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4503
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4504
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4505
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4506
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4507
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
4508
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4509
|
+
"@radix-ui/react-use-effect-event": "0.0.2",
|
|
4510
|
+
"@radix-ui/react-use-is-hydrated": "0.1.0",
|
|
4511
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4512
|
+
},
|
|
4513
|
+
"peerDependencies": {
|
|
4514
|
+
"@types/react": "*",
|
|
4515
|
+
"@types/react-dom": "*",
|
|
4516
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4517
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4518
|
+
},
|
|
4519
|
+
"peerDependenciesMeta": {
|
|
4520
|
+
"@types/react": {
|
|
4521
|
+
"optional": true
|
|
4522
|
+
},
|
|
4523
|
+
"@types/react-dom": {
|
|
4524
|
+
"optional": true
|
|
4525
|
+
}
|
|
4526
|
+
}
|
|
4527
|
+
},
|
|
4528
|
+
"node_modules/@radix-ui/react-password-toggle-field": {
|
|
4529
|
+
"version": "0.1.3",
|
|
4530
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-password-toggle-field/-/react-password-toggle-field-0.1.3.tgz",
|
|
4531
|
+
"integrity": "sha512-/UuCrDBWravcaMix4TdT+qlNdVwOM1Nck9kWx/vafXsdfj1ChfhOdfi3cy9SGBpWgTXwYCuboT/oYpJy3clqfw==",
|
|
4532
|
+
"license": "MIT",
|
|
4533
|
+
"dependencies": {
|
|
4534
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4535
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4536
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4537
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4538
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4539
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4540
|
+
"@radix-ui/react-use-effect-event": "0.0.2",
|
|
4541
|
+
"@radix-ui/react-use-is-hydrated": "0.1.0"
|
|
4542
|
+
},
|
|
4543
|
+
"peerDependencies": {
|
|
4544
|
+
"@types/react": "*",
|
|
4545
|
+
"@types/react-dom": "*",
|
|
4546
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4547
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4548
|
+
},
|
|
4549
|
+
"peerDependenciesMeta": {
|
|
4550
|
+
"@types/react": {
|
|
4551
|
+
"optional": true
|
|
4552
|
+
},
|
|
4553
|
+
"@types/react-dom": {
|
|
4554
|
+
"optional": true
|
|
4555
|
+
}
|
|
4556
|
+
}
|
|
4557
|
+
},
|
|
4558
|
+
"node_modules/@radix-ui/react-popover": {
|
|
4559
|
+
"version": "1.1.15",
|
|
4560
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.15.tgz",
|
|
4561
|
+
"integrity": "sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==",
|
|
4562
|
+
"license": "MIT",
|
|
4563
|
+
"dependencies": {
|
|
4564
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4565
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4566
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4567
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4568
|
+
"@radix-ui/react-focus-guards": "1.1.3",
|
|
4569
|
+
"@radix-ui/react-focus-scope": "1.1.7",
|
|
4570
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4571
|
+
"@radix-ui/react-popper": "1.2.8",
|
|
4572
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
4573
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4574
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4575
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
4576
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4577
|
+
"aria-hidden": "^1.2.4",
|
|
4578
|
+
"react-remove-scroll": "^2.6.3"
|
|
4579
|
+
},
|
|
4580
|
+
"peerDependencies": {
|
|
4581
|
+
"@types/react": "*",
|
|
4582
|
+
"@types/react-dom": "*",
|
|
4583
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4584
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4585
|
+
},
|
|
4586
|
+
"peerDependenciesMeta": {
|
|
4587
|
+
"@types/react": {
|
|
4588
|
+
"optional": true
|
|
4589
|
+
},
|
|
4590
|
+
"@types/react-dom": {
|
|
4591
|
+
"optional": true
|
|
4592
|
+
}
|
|
4593
|
+
}
|
|
4594
|
+
},
|
|
4595
|
+
"node_modules/@radix-ui/react-popper": {
|
|
4596
|
+
"version": "1.2.8",
|
|
4597
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.8.tgz",
|
|
4598
|
+
"integrity": "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==",
|
|
4599
|
+
"license": "MIT",
|
|
4600
|
+
"dependencies": {
|
|
4601
|
+
"@floating-ui/react-dom": "^2.0.0",
|
|
4602
|
+
"@radix-ui/react-arrow": "1.1.7",
|
|
4603
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4604
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4605
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4606
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4607
|
+
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
4608
|
+
"@radix-ui/react-use-rect": "1.1.1",
|
|
4609
|
+
"@radix-ui/react-use-size": "1.1.1",
|
|
4610
|
+
"@radix-ui/rect": "1.1.1"
|
|
4611
|
+
},
|
|
4612
|
+
"peerDependencies": {
|
|
4613
|
+
"@types/react": "*",
|
|
4614
|
+
"@types/react-dom": "*",
|
|
4615
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4616
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4617
|
+
},
|
|
4618
|
+
"peerDependenciesMeta": {
|
|
4619
|
+
"@types/react": {
|
|
4620
|
+
"optional": true
|
|
4621
|
+
},
|
|
4622
|
+
"@types/react-dom": {
|
|
4623
|
+
"optional": true
|
|
4624
|
+
}
|
|
4625
|
+
}
|
|
4626
|
+
},
|
|
4627
|
+
"node_modules/@radix-ui/react-portal": {
|
|
4628
|
+
"version": "1.1.9",
|
|
4629
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz",
|
|
4630
|
+
"integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
|
|
4631
|
+
"license": "MIT",
|
|
4632
|
+
"dependencies": {
|
|
4633
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4634
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4635
|
+
},
|
|
4636
|
+
"peerDependencies": {
|
|
4637
|
+
"@types/react": "*",
|
|
4638
|
+
"@types/react-dom": "*",
|
|
4639
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4640
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4641
|
+
},
|
|
4642
|
+
"peerDependenciesMeta": {
|
|
4643
|
+
"@types/react": {
|
|
4644
|
+
"optional": true
|
|
4645
|
+
},
|
|
4646
|
+
"@types/react-dom": {
|
|
4647
|
+
"optional": true
|
|
4648
|
+
}
|
|
4649
|
+
}
|
|
4650
|
+
},
|
|
4651
|
+
"node_modules/@radix-ui/react-presence": {
|
|
4652
|
+
"version": "1.1.5",
|
|
4653
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz",
|
|
4654
|
+
"integrity": "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==",
|
|
4655
|
+
"license": "MIT",
|
|
4656
|
+
"dependencies": {
|
|
4657
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4658
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4659
|
+
},
|
|
4660
|
+
"peerDependencies": {
|
|
4661
|
+
"@types/react": "*",
|
|
4662
|
+
"@types/react-dom": "*",
|
|
4663
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4664
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4665
|
+
},
|
|
4666
|
+
"peerDependenciesMeta": {
|
|
4667
|
+
"@types/react": {
|
|
4668
|
+
"optional": true
|
|
4669
|
+
},
|
|
4670
|
+
"@types/react-dom": {
|
|
4671
|
+
"optional": true
|
|
4672
|
+
}
|
|
4673
|
+
}
|
|
4674
|
+
},
|
|
4675
|
+
"node_modules/@radix-ui/react-primitive": {
|
|
4676
|
+
"version": "2.1.3",
|
|
4677
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
|
|
4678
|
+
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
|
|
4679
|
+
"license": "MIT",
|
|
4680
|
+
"dependencies": {
|
|
4681
|
+
"@radix-ui/react-slot": "1.2.3"
|
|
4682
|
+
},
|
|
4683
|
+
"peerDependencies": {
|
|
4684
|
+
"@types/react": "*",
|
|
4685
|
+
"@types/react-dom": "*",
|
|
4686
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4687
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4688
|
+
},
|
|
4689
|
+
"peerDependenciesMeta": {
|
|
4690
|
+
"@types/react": {
|
|
4691
|
+
"optional": true
|
|
4692
|
+
},
|
|
4693
|
+
"@types/react-dom": {
|
|
4694
|
+
"optional": true
|
|
4695
|
+
}
|
|
4696
|
+
}
|
|
4697
|
+
},
|
|
4698
|
+
"node_modules/@radix-ui/react-progress": {
|
|
4699
|
+
"version": "1.1.7",
|
|
4700
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.7.tgz",
|
|
4701
|
+
"integrity": "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==",
|
|
4702
|
+
"license": "MIT",
|
|
4703
|
+
"dependencies": {
|
|
4704
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4705
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
4706
|
+
},
|
|
4707
|
+
"peerDependencies": {
|
|
4708
|
+
"@types/react": "*",
|
|
4709
|
+
"@types/react-dom": "*",
|
|
4710
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4711
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4712
|
+
},
|
|
4713
|
+
"peerDependenciesMeta": {
|
|
4714
|
+
"@types/react": {
|
|
4715
|
+
"optional": true
|
|
4716
|
+
},
|
|
4717
|
+
"@types/react-dom": {
|
|
4718
|
+
"optional": true
|
|
4719
|
+
}
|
|
4720
|
+
}
|
|
4721
|
+
},
|
|
4722
|
+
"node_modules/@radix-ui/react-radio-group": {
|
|
4723
|
+
"version": "1.3.8",
|
|
4724
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.3.8.tgz",
|
|
4725
|
+
"integrity": "sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ==",
|
|
4726
|
+
"license": "MIT",
|
|
4727
|
+
"dependencies": {
|
|
4728
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4729
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4730
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4731
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4732
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4733
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4734
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
4735
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4736
|
+
"@radix-ui/react-use-previous": "1.1.1",
|
|
4737
|
+
"@radix-ui/react-use-size": "1.1.1"
|
|
4738
|
+
},
|
|
4739
|
+
"peerDependencies": {
|
|
4740
|
+
"@types/react": "*",
|
|
4741
|
+
"@types/react-dom": "*",
|
|
4742
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4743
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4744
|
+
},
|
|
4745
|
+
"peerDependenciesMeta": {
|
|
4746
|
+
"@types/react": {
|
|
4747
|
+
"optional": true
|
|
4748
|
+
},
|
|
4749
|
+
"@types/react-dom": {
|
|
4750
|
+
"optional": true
|
|
4751
|
+
}
|
|
4752
|
+
}
|
|
4753
|
+
},
|
|
4754
|
+
"node_modules/@radix-ui/react-roving-focus": {
|
|
4755
|
+
"version": "1.1.11",
|
|
4756
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.11.tgz",
|
|
4757
|
+
"integrity": "sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==",
|
|
4758
|
+
"license": "MIT",
|
|
4759
|
+
"dependencies": {
|
|
4760
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4761
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4762
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4763
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4764
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4765
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4766
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4767
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4768
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4121
4769
|
},
|
|
4122
4770
|
"peerDependencies": {
|
|
4123
4771
|
"@types/react": "*",
|
|
4124
|
-
"react": "
|
|
4772
|
+
"@types/react-dom": "*",
|
|
4773
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4774
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4125
4775
|
},
|
|
4126
4776
|
"peerDependenciesMeta": {
|
|
4127
4777
|
"@types/react": {
|
|
4128
4778
|
"optional": true
|
|
4779
|
+
},
|
|
4780
|
+
"@types/react-dom": {
|
|
4781
|
+
"optional": true
|
|
4129
4782
|
}
|
|
4130
4783
|
}
|
|
4131
4784
|
},
|
|
4132
|
-
"node_modules/@radix-ui/react-
|
|
4133
|
-
"version": "1.
|
|
4134
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4135
|
-
"integrity": "sha512-
|
|
4785
|
+
"node_modules/@radix-ui/react-scroll-area": {
|
|
4786
|
+
"version": "1.2.10",
|
|
4787
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.10.tgz",
|
|
4788
|
+
"integrity": "sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==",
|
|
4136
4789
|
"license": "MIT",
|
|
4137
4790
|
"dependencies": {
|
|
4791
|
+
"@radix-ui/number": "1.1.1",
|
|
4792
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4793
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4794
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4795
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4796
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4797
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4798
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4138
4799
|
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4139
4800
|
},
|
|
4140
4801
|
"peerDependencies": {
|
|
4141
4802
|
"@types/react": "*",
|
|
4142
|
-
"react": "
|
|
4803
|
+
"@types/react-dom": "*",
|
|
4804
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4805
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4143
4806
|
},
|
|
4144
4807
|
"peerDependenciesMeta": {
|
|
4145
4808
|
"@types/react": {
|
|
4146
4809
|
"optional": true
|
|
4810
|
+
},
|
|
4811
|
+
"@types/react-dom": {
|
|
4812
|
+
"optional": true
|
|
4147
4813
|
}
|
|
4148
4814
|
}
|
|
4149
4815
|
},
|
|
4150
|
-
"node_modules/@radix-ui/react-
|
|
4151
|
-
"version": "2.
|
|
4152
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4153
|
-
"integrity": "sha512-
|
|
4816
|
+
"node_modules/@radix-ui/react-select": {
|
|
4817
|
+
"version": "2.2.6",
|
|
4818
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.2.6.tgz",
|
|
4819
|
+
"integrity": "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==",
|
|
4154
4820
|
"license": "MIT",
|
|
4155
4821
|
"dependencies": {
|
|
4156
|
-
"@radix-ui/
|
|
4822
|
+
"@radix-ui/number": "1.1.1",
|
|
4823
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4824
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4825
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4826
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4827
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4828
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4829
|
+
"@radix-ui/react-focus-guards": "1.1.3",
|
|
4830
|
+
"@radix-ui/react-focus-scope": "1.1.7",
|
|
4831
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4832
|
+
"@radix-ui/react-popper": "1.2.8",
|
|
4833
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
4834
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4835
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
4836
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4837
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4838
|
+
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
4839
|
+
"@radix-ui/react-use-previous": "1.1.1",
|
|
4840
|
+
"@radix-ui/react-visually-hidden": "1.2.3",
|
|
4841
|
+
"aria-hidden": "^1.2.4",
|
|
4842
|
+
"react-remove-scroll": "^2.6.3"
|
|
4157
4843
|
},
|
|
4158
4844
|
"peerDependencies": {
|
|
4159
4845
|
"@types/react": "*",
|
|
@@ -4170,22 +4856,13 @@
|
|
|
4170
4856
|
}
|
|
4171
4857
|
}
|
|
4172
4858
|
},
|
|
4173
|
-
"node_modules/@radix-ui/react-
|
|
4174
|
-
"version": "1.
|
|
4175
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4176
|
-
"integrity": "sha512-
|
|
4859
|
+
"node_modules/@radix-ui/react-separator": {
|
|
4860
|
+
"version": "1.1.7",
|
|
4861
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.7.tgz",
|
|
4862
|
+
"integrity": "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==",
|
|
4177
4863
|
"license": "MIT",
|
|
4178
4864
|
"dependencies": {
|
|
4179
|
-
"@
|
|
4180
|
-
"@radix-ui/react-arrow": "1.1.7",
|
|
4181
|
-
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4182
|
-
"@radix-ui/react-context": "1.1.2",
|
|
4183
|
-
"@radix-ui/react-primitive": "2.1.3",
|
|
4184
|
-
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
4185
|
-
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
4186
|
-
"@radix-ui/react-use-rect": "1.1.1",
|
|
4187
|
-
"@radix-ui/react-use-size": "1.1.1",
|
|
4188
|
-
"@radix-ui/rect": "1.1.1"
|
|
4865
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
4189
4866
|
},
|
|
4190
4867
|
"peerDependencies": {
|
|
4191
4868
|
"@types/react": "*",
|
|
@@ -4202,13 +4879,23 @@
|
|
|
4202
4879
|
}
|
|
4203
4880
|
}
|
|
4204
4881
|
},
|
|
4205
|
-
"node_modules/@radix-ui/react-
|
|
4206
|
-
"version": "
|
|
4207
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4208
|
-
"integrity": "sha512-
|
|
4882
|
+
"node_modules/@radix-ui/react-slider": {
|
|
4883
|
+
"version": "1.3.6",
|
|
4884
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.3.6.tgz",
|
|
4885
|
+
"integrity": "sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==",
|
|
4209
4886
|
"license": "MIT",
|
|
4210
4887
|
"dependencies": {
|
|
4211
|
-
"@radix-ui/
|
|
4888
|
+
"@radix-ui/number": "1.1.1",
|
|
4889
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4890
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
4891
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4892
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4893
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4894
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4895
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4896
|
+
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
4897
|
+
"@radix-ui/react-use-previous": "1.1.1",
|
|
4898
|
+
"@radix-ui/react-use-size": "1.1.1"
|
|
4212
4899
|
},
|
|
4213
4900
|
"peerDependencies": {
|
|
4214
4901
|
"@types/react": "*",
|
|
@@ -4225,7 +4912,7 @@
|
|
|
4225
4912
|
}
|
|
4226
4913
|
}
|
|
4227
4914
|
},
|
|
4228
|
-
"node_modules/@radix-ui/react-
|
|
4915
|
+
"node_modules/@radix-ui/react-slot": {
|
|
4229
4916
|
"version": "1.2.3",
|
|
4230
4917
|
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
|
|
4231
4918
|
"integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
|
|
@@ -4243,14 +4930,19 @@
|
|
|
4243
4930
|
}
|
|
4244
4931
|
}
|
|
4245
4932
|
},
|
|
4246
|
-
"node_modules/@radix-ui/react-
|
|
4247
|
-
"version": "1.
|
|
4248
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4249
|
-
"integrity": "sha512-
|
|
4933
|
+
"node_modules/@radix-ui/react-switch": {
|
|
4934
|
+
"version": "1.2.6",
|
|
4935
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.2.6.tgz",
|
|
4936
|
+
"integrity": "sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==",
|
|
4250
4937
|
"license": "MIT",
|
|
4251
4938
|
"dependencies": {
|
|
4939
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4940
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4941
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4252
4942
|
"@radix-ui/react-primitive": "2.1.3",
|
|
4253
|
-
"@radix-ui/react-use-
|
|
4943
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
4944
|
+
"@radix-ui/react-use-previous": "1.1.1",
|
|
4945
|
+
"@radix-ui/react-use-size": "1.1.1"
|
|
4254
4946
|
},
|
|
4255
4947
|
"peerDependencies": {
|
|
4256
4948
|
"@types/react": "*",
|
|
@@ -4267,13 +4959,20 @@
|
|
|
4267
4959
|
}
|
|
4268
4960
|
}
|
|
4269
4961
|
},
|
|
4270
|
-
"node_modules/@radix-ui/react-
|
|
4271
|
-
"version": "
|
|
4272
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4273
|
-
"integrity": "sha512-
|
|
4962
|
+
"node_modules/@radix-ui/react-tabs": {
|
|
4963
|
+
"version": "1.1.13",
|
|
4964
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.13.tgz",
|
|
4965
|
+
"integrity": "sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==",
|
|
4274
4966
|
"license": "MIT",
|
|
4275
4967
|
"dependencies": {
|
|
4276
|
-
"@radix-ui/
|
|
4968
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4969
|
+
"@radix-ui/react-context": "1.1.2",
|
|
4970
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
4971
|
+
"@radix-ui/react-id": "1.1.1",
|
|
4972
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
4973
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
4974
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
4975
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4277
4976
|
},
|
|
4278
4977
|
"peerDependencies": {
|
|
4279
4978
|
"@types/react": "*",
|
|
@@ -4290,31 +4989,49 @@
|
|
|
4290
4989
|
}
|
|
4291
4990
|
}
|
|
4292
4991
|
},
|
|
4293
|
-
"node_modules/@radix-ui/react-
|
|
4294
|
-
"version": "1.2.
|
|
4295
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4296
|
-
"integrity": "sha512-
|
|
4992
|
+
"node_modules/@radix-ui/react-toast": {
|
|
4993
|
+
"version": "1.2.15",
|
|
4994
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.15.tgz",
|
|
4995
|
+
"integrity": "sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==",
|
|
4297
4996
|
"license": "MIT",
|
|
4298
4997
|
"dependencies": {
|
|
4299
|
-
"@radix-ui/
|
|
4998
|
+
"@radix-ui/primitive": "1.1.3",
|
|
4999
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
5000
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
5001
|
+
"@radix-ui/react-context": "1.1.2",
|
|
5002
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
5003
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
5004
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
5005
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
5006
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
5007
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
5008
|
+
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
5009
|
+
"@radix-ui/react-visually-hidden": "1.2.3"
|
|
4300
5010
|
},
|
|
4301
5011
|
"peerDependencies": {
|
|
4302
5012
|
"@types/react": "*",
|
|
4303
|
-
"react": "
|
|
5013
|
+
"@types/react-dom": "*",
|
|
5014
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
5015
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4304
5016
|
},
|
|
4305
5017
|
"peerDependenciesMeta": {
|
|
4306
5018
|
"@types/react": {
|
|
4307
5019
|
"optional": true
|
|
5020
|
+
},
|
|
5021
|
+
"@types/react-dom": {
|
|
5022
|
+
"optional": true
|
|
4308
5023
|
}
|
|
4309
5024
|
}
|
|
4310
5025
|
},
|
|
4311
|
-
"node_modules/@radix-ui/react-
|
|
4312
|
-
"version": "
|
|
4313
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4314
|
-
"integrity": "sha512-
|
|
5026
|
+
"node_modules/@radix-ui/react-toggle": {
|
|
5027
|
+
"version": "1.1.10",
|
|
5028
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.10.tgz",
|
|
5029
|
+
"integrity": "sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==",
|
|
4315
5030
|
"license": "MIT",
|
|
4316
5031
|
"dependencies": {
|
|
4317
|
-
"@radix-ui/
|
|
5032
|
+
"@radix-ui/primitive": "1.1.3",
|
|
5033
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
5034
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4318
5035
|
},
|
|
4319
5036
|
"peerDependencies": {
|
|
4320
5037
|
"@types/react": "*",
|
|
@@ -4331,33 +5048,19 @@
|
|
|
4331
5048
|
}
|
|
4332
5049
|
}
|
|
4333
5050
|
},
|
|
4334
|
-
"node_modules/@radix-ui/react-
|
|
4335
|
-
"version": "
|
|
4336
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4337
|
-
"integrity": "sha512-
|
|
5051
|
+
"node_modules/@radix-ui/react-toggle-group": {
|
|
5052
|
+
"version": "1.1.11",
|
|
5053
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.11.tgz",
|
|
5054
|
+
"integrity": "sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==",
|
|
4338
5055
|
"license": "MIT",
|
|
4339
5056
|
"dependencies": {
|
|
4340
|
-
"@radix-ui/number": "1.1.1",
|
|
4341
5057
|
"@radix-ui/primitive": "1.1.3",
|
|
4342
|
-
"@radix-ui/react-collection": "1.1.7",
|
|
4343
|
-
"@radix-ui/react-compose-refs": "1.1.2",
|
|
4344
5058
|
"@radix-ui/react-context": "1.1.2",
|
|
4345
5059
|
"@radix-ui/react-direction": "1.1.1",
|
|
4346
|
-
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
4347
|
-
"@radix-ui/react-focus-guards": "1.1.3",
|
|
4348
|
-
"@radix-ui/react-focus-scope": "1.1.7",
|
|
4349
|
-
"@radix-ui/react-id": "1.1.1",
|
|
4350
|
-
"@radix-ui/react-popper": "1.2.8",
|
|
4351
|
-
"@radix-ui/react-portal": "1.1.9",
|
|
4352
5060
|
"@radix-ui/react-primitive": "2.1.3",
|
|
4353
|
-
"@radix-ui/react-
|
|
4354
|
-
"@radix-ui/react-
|
|
4355
|
-
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4356
|
-
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
4357
|
-
"@radix-ui/react-use-previous": "1.1.1",
|
|
4358
|
-
"@radix-ui/react-visually-hidden": "1.2.3",
|
|
4359
|
-
"aria-hidden": "^1.2.4",
|
|
4360
|
-
"react-remove-scroll": "^2.6.3"
|
|
5061
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
5062
|
+
"@radix-ui/react-toggle": "1.1.10",
|
|
5063
|
+
"@radix-ui/react-use-controllable-state": "1.2.2"
|
|
4361
5064
|
},
|
|
4362
5065
|
"peerDependencies": {
|
|
4363
5066
|
"@types/react": "*",
|
|
@@ -4374,13 +5077,19 @@
|
|
|
4374
5077
|
}
|
|
4375
5078
|
}
|
|
4376
5079
|
},
|
|
4377
|
-
"node_modules/@radix-ui/react-
|
|
4378
|
-
"version": "
|
|
4379
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4380
|
-
"integrity": "sha512-
|
|
5080
|
+
"node_modules/@radix-ui/react-toolbar": {
|
|
5081
|
+
"version": "1.1.11",
|
|
5082
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.1.11.tgz",
|
|
5083
|
+
"integrity": "sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==",
|
|
4381
5084
|
"license": "MIT",
|
|
4382
5085
|
"dependencies": {
|
|
4383
|
-
"@radix-ui/
|
|
5086
|
+
"@radix-ui/primitive": "1.1.3",
|
|
5087
|
+
"@radix-ui/react-context": "1.1.2",
|
|
5088
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
5089
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
5090
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
5091
|
+
"@radix-ui/react-separator": "1.1.7",
|
|
5092
|
+
"@radix-ui/react-toggle-group": "1.1.11"
|
|
4384
5093
|
},
|
|
4385
5094
|
"peerDependencies": {
|
|
4386
5095
|
"@types/react": "*",
|
|
@@ -4397,38 +5106,36 @@
|
|
|
4397
5106
|
}
|
|
4398
5107
|
}
|
|
4399
5108
|
},
|
|
4400
|
-
"node_modules/@radix-ui/react-
|
|
4401
|
-
"version": "1.2.
|
|
4402
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4403
|
-
"integrity": "sha512-
|
|
5109
|
+
"node_modules/@radix-ui/react-tooltip": {
|
|
5110
|
+
"version": "1.2.8",
|
|
5111
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.8.tgz",
|
|
5112
|
+
"integrity": "sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==",
|
|
4404
5113
|
"license": "MIT",
|
|
4405
5114
|
"dependencies": {
|
|
4406
|
-
"@radix-ui/
|
|
5115
|
+
"@radix-ui/primitive": "1.1.3",
|
|
5116
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
5117
|
+
"@radix-ui/react-context": "1.1.2",
|
|
5118
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
5119
|
+
"@radix-ui/react-id": "1.1.1",
|
|
5120
|
+
"@radix-ui/react-popper": "1.2.8",
|
|
5121
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
5122
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
5123
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
5124
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
5125
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
5126
|
+
"@radix-ui/react-visually-hidden": "1.2.3"
|
|
4407
5127
|
},
|
|
4408
5128
|
"peerDependencies": {
|
|
4409
5129
|
"@types/react": "*",
|
|
4410
|
-
"react": "
|
|
5130
|
+
"@types/react-dom": "*",
|
|
5131
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
5132
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4411
5133
|
},
|
|
4412
5134
|
"peerDependenciesMeta": {
|
|
4413
5135
|
"@types/react": {
|
|
4414
5136
|
"optional": true
|
|
4415
|
-
}
|
|
4416
|
-
|
|
4417
|
-
},
|
|
4418
|
-
"node_modules/@radix-ui/react-slot": {
|
|
4419
|
-
"version": "1.2.4",
|
|
4420
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.4.tgz",
|
|
4421
|
-
"integrity": "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==",
|
|
4422
|
-
"license": "MIT",
|
|
4423
|
-
"dependencies": {
|
|
4424
|
-
"@radix-ui/react-compose-refs": "1.1.2"
|
|
4425
|
-
},
|
|
4426
|
-
"peerDependencies": {
|
|
4427
|
-
"@types/react": "*",
|
|
4428
|
-
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4429
|
-
},
|
|
4430
|
-
"peerDependenciesMeta": {
|
|
4431
|
-
"@types/react": {
|
|
5137
|
+
},
|
|
5138
|
+
"@types/react-dom": {
|
|
4432
5139
|
"optional": true
|
|
4433
5140
|
}
|
|
4434
5141
|
}
|
|
@@ -4503,26 +5210,14 @@
|
|
|
4503
5210
|
}
|
|
4504
5211
|
}
|
|
4505
5212
|
},
|
|
4506
|
-
"node_modules/@radix-ui/react-use-
|
|
4507
|
-
"version": "
|
|
4508
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-
|
|
4509
|
-
"integrity": "sha512-
|
|
5213
|
+
"node_modules/@radix-ui/react-use-is-hydrated": {
|
|
5214
|
+
"version": "0.1.0",
|
|
5215
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-is-hydrated/-/react-use-is-hydrated-0.1.0.tgz",
|
|
5216
|
+
"integrity": "sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==",
|
|
4510
5217
|
"license": "MIT",
|
|
4511
|
-
"
|
|
4512
|
-
"
|
|
4513
|
-
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
5218
|
+
"dependencies": {
|
|
5219
|
+
"use-sync-external-store": "^1.5.0"
|
|
4514
5220
|
},
|
|
4515
|
-
"peerDependenciesMeta": {
|
|
4516
|
-
"@types/react": {
|
|
4517
|
-
"optional": true
|
|
4518
|
-
}
|
|
4519
|
-
}
|
|
4520
|
-
},
|
|
4521
|
-
"node_modules/@radix-ui/react-use-previous": {
|
|
4522
|
-
"version": "1.1.1",
|
|
4523
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz",
|
|
4524
|
-
"integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==",
|
|
4525
|
-
"license": "MIT",
|
|
4526
5221
|
"peerDependencies": {
|
|
4527
5222
|
"@types/react": "*",
|
|
4528
5223
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
@@ -4533,14 +5228,11 @@
|
|
|
4533
5228
|
}
|
|
4534
5229
|
}
|
|
4535
5230
|
},
|
|
4536
|
-
"node_modules/@radix-ui/react-use-
|
|
5231
|
+
"node_modules/@radix-ui/react-use-layout-effect": {
|
|
4537
5232
|
"version": "1.1.1",
|
|
4538
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-
|
|
4539
|
-
"integrity": "sha512-
|
|
5233
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
|
|
5234
|
+
"integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
|
|
4540
5235
|
"license": "MIT",
|
|
4541
|
-
"dependencies": {
|
|
4542
|
-
"@radix-ui/rect": "1.1.1"
|
|
4543
|
-
},
|
|
4544
5236
|
"peerDependencies": {
|
|
4545
5237
|
"@types/react": "*",
|
|
4546
5238
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
@@ -4551,14 +5243,11 @@
|
|
|
4551
5243
|
}
|
|
4552
5244
|
}
|
|
4553
5245
|
},
|
|
4554
|
-
"node_modules/@radix-ui/react-use-
|
|
5246
|
+
"node_modules/@radix-ui/react-use-previous": {
|
|
4555
5247
|
"version": "1.1.1",
|
|
4556
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-
|
|
4557
|
-
"integrity": "sha512-
|
|
5248
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz",
|
|
5249
|
+
"integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==",
|
|
4558
5250
|
"license": "MIT",
|
|
4559
|
-
"dependencies": {
|
|
4560
|
-
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4561
|
-
},
|
|
4562
5251
|
"peerDependencies": {
|
|
4563
5252
|
"@types/react": "*",
|
|
4564
5253
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
@@ -4569,67 +5258,62 @@
|
|
|
4569
5258
|
}
|
|
4570
5259
|
}
|
|
4571
5260
|
},
|
|
4572
|
-
"node_modules/@radix-ui/react-
|
|
4573
|
-
"version": "1.
|
|
4574
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4575
|
-
"integrity": "sha512-
|
|
5261
|
+
"node_modules/@radix-ui/react-use-rect": {
|
|
5262
|
+
"version": "1.1.1",
|
|
5263
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz",
|
|
5264
|
+
"integrity": "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==",
|
|
4576
5265
|
"license": "MIT",
|
|
4577
5266
|
"dependencies": {
|
|
4578
|
-
"@radix-ui/
|
|
5267
|
+
"@radix-ui/rect": "1.1.1"
|
|
4579
5268
|
},
|
|
4580
|
-
"peerDependencies": {
|
|
4581
|
-
"@types/react": "*",
|
|
4582
|
-
"
|
|
4583
|
-
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4584
|
-
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
5269
|
+
"peerDependencies": {
|
|
5270
|
+
"@types/react": "*",
|
|
5271
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4585
5272
|
},
|
|
4586
5273
|
"peerDependenciesMeta": {
|
|
4587
5274
|
"@types/react": {
|
|
4588
5275
|
"optional": true
|
|
4589
|
-
},
|
|
4590
|
-
"@types/react-dom": {
|
|
4591
|
-
"optional": true
|
|
4592
5276
|
}
|
|
4593
5277
|
}
|
|
4594
5278
|
},
|
|
4595
|
-
"node_modules/@radix-ui/react-
|
|
4596
|
-
"version": "
|
|
4597
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4598
|
-
"integrity": "sha512-
|
|
5279
|
+
"node_modules/@radix-ui/react-use-size": {
|
|
5280
|
+
"version": "1.1.1",
|
|
5281
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz",
|
|
5282
|
+
"integrity": "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==",
|
|
4599
5283
|
"license": "MIT",
|
|
4600
5284
|
"dependencies": {
|
|
4601
|
-
"@radix-ui/react-
|
|
5285
|
+
"@radix-ui/react-use-layout-effect": "1.1.1"
|
|
4602
5286
|
},
|
|
4603
5287
|
"peerDependencies": {
|
|
4604
5288
|
"@types/react": "*",
|
|
4605
|
-
"
|
|
4606
|
-
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
4607
|
-
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
5289
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4608
5290
|
},
|
|
4609
5291
|
"peerDependenciesMeta": {
|
|
4610
5292
|
"@types/react": {
|
|
4611
5293
|
"optional": true
|
|
4612
|
-
},
|
|
4613
|
-
"@types/react-dom": {
|
|
4614
|
-
"optional": true
|
|
4615
5294
|
}
|
|
4616
5295
|
}
|
|
4617
5296
|
},
|
|
4618
|
-
"node_modules/@radix-ui/react-visually-hidden
|
|
5297
|
+
"node_modules/@radix-ui/react-visually-hidden": {
|
|
4619
5298
|
"version": "1.2.3",
|
|
4620
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
4621
|
-
"integrity": "sha512-
|
|
5299
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz",
|
|
5300
|
+
"integrity": "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==",
|
|
4622
5301
|
"license": "MIT",
|
|
4623
5302
|
"dependencies": {
|
|
4624
|
-
"@radix-ui/react-
|
|
5303
|
+
"@radix-ui/react-primitive": "2.1.3"
|
|
4625
5304
|
},
|
|
4626
5305
|
"peerDependencies": {
|
|
4627
5306
|
"@types/react": "*",
|
|
4628
|
-
"react": "
|
|
5307
|
+
"@types/react-dom": "*",
|
|
5308
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
5309
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
4629
5310
|
},
|
|
4630
5311
|
"peerDependenciesMeta": {
|
|
4631
5312
|
"@types/react": {
|
|
4632
5313
|
"optional": true
|
|
5314
|
+
},
|
|
5315
|
+
"@types/react-dom": {
|
|
5316
|
+
"optional": true
|
|
4633
5317
|
}
|
|
4634
5318
|
}
|
|
4635
5319
|
},
|
|
@@ -4654,9 +5338,9 @@
|
|
|
4654
5338
|
"license": "MIT"
|
|
4655
5339
|
},
|
|
4656
5340
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
4657
|
-
"version": "4.
|
|
4658
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
4659
|
-
"integrity": "sha512-
|
|
5341
|
+
"version": "4.58.0",
|
|
5342
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.58.0.tgz",
|
|
5343
|
+
"integrity": "sha512-mr0tmS/4FoVk1cnaeN244A/wjvGDNItZKR8hRhnmCzygyRXYtKF5jVDSIILR1U97CTzAYmbgIj/Dukg62ggG5w==",
|
|
4660
5344
|
"cpu": [
|
|
4661
5345
|
"arm"
|
|
4662
5346
|
],
|
|
@@ -4667,9 +5351,9 @@
|
|
|
4667
5351
|
]
|
|
4668
5352
|
},
|
|
4669
5353
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
4670
|
-
"version": "4.
|
|
4671
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
4672
|
-
"integrity": "sha512
|
|
5354
|
+
"version": "4.58.0",
|
|
5355
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.58.0.tgz",
|
|
5356
|
+
"integrity": "sha512-+s++dbp+/RTte62mQD9wLSbiMTV+xr/PeRJEc/sFZFSBRlHPNPVaf5FXlzAL77Mr8FtSfQqCN+I598M8U41ccQ==",
|
|
4673
5357
|
"cpu": [
|
|
4674
5358
|
"arm64"
|
|
4675
5359
|
],
|
|
@@ -4680,9 +5364,9 @@
|
|
|
4680
5364
|
]
|
|
4681
5365
|
},
|
|
4682
5366
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
4683
|
-
"version": "4.
|
|
4684
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
4685
|
-
"integrity": "sha512-
|
|
5367
|
+
"version": "4.58.0",
|
|
5368
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.58.0.tgz",
|
|
5369
|
+
"integrity": "sha512-MFWBwTcYs0jZbINQBXHfSrpSQJq3IUOakcKPzfeSznONop14Pxuqa0Kg19GD0rNBMPQI2tFtu3UzapZpH0Uc1Q==",
|
|
4686
5370
|
"cpu": [
|
|
4687
5371
|
"arm64"
|
|
4688
5372
|
],
|
|
@@ -4693,9 +5377,9 @@
|
|
|
4693
5377
|
]
|
|
4694
5378
|
},
|
|
4695
5379
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
4696
|
-
"version": "4.
|
|
4697
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
4698
|
-
"integrity": "sha512-
|
|
5380
|
+
"version": "4.58.0",
|
|
5381
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.58.0.tgz",
|
|
5382
|
+
"integrity": "sha512-yiKJY7pj9c9JwzuKYLFaDZw5gma3fI9bkPEIyofvVfsPqjCWPglSHdpdwXpKGvDeYDms3Qal8qGMEHZ1M/4Udg==",
|
|
4699
5383
|
"cpu": [
|
|
4700
5384
|
"x64"
|
|
4701
5385
|
],
|
|
@@ -4706,9 +5390,9 @@
|
|
|
4706
5390
|
]
|
|
4707
5391
|
},
|
|
4708
5392
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
4709
|
-
"version": "4.
|
|
4710
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
4711
|
-
"integrity": "sha512-
|
|
5393
|
+
"version": "4.58.0",
|
|
5394
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.58.0.tgz",
|
|
5395
|
+
"integrity": "sha512-x97kCoBh5MOevpn/CNK9W1x8BEzO238541BGWBc315uOlN0AD/ifZ1msg+ZQB05Ux+VF6EcYqpiagfLJ8U3LvQ==",
|
|
4712
5396
|
"cpu": [
|
|
4713
5397
|
"arm64"
|
|
4714
5398
|
],
|
|
@@ -4719,9 +5403,9 @@
|
|
|
4719
5403
|
]
|
|
4720
5404
|
},
|
|
4721
5405
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
4722
|
-
"version": "4.
|
|
4723
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
4724
|
-
"integrity": "sha512-
|
|
5406
|
+
"version": "4.58.0",
|
|
5407
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.58.0.tgz",
|
|
5408
|
+
"integrity": "sha512-Aa8jPoZ6IQAG2eIrcXPpjRcMjROMFxCt1UYPZZtCxRV68WkuSigYtQ/7Zwrcr2IvtNJo7T2JfDXyMLxq5L4Jlg==",
|
|
4725
5409
|
"cpu": [
|
|
4726
5410
|
"x64"
|
|
4727
5411
|
],
|
|
@@ -4732,9 +5416,9 @@
|
|
|
4732
5416
|
]
|
|
4733
5417
|
},
|
|
4734
5418
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
4735
|
-
"version": "4.
|
|
4736
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
4737
|
-
"integrity": "sha512-
|
|
5419
|
+
"version": "4.58.0",
|
|
5420
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.58.0.tgz",
|
|
5421
|
+
"integrity": "sha512-Ob8YgT5kD/lSIYW2Rcngs5kNB/44Q2RzBSPz9brf2WEtcGR7/f/E9HeHn1wYaAwKBni+bdXEwgHvUd0x12lQSA==",
|
|
4738
5422
|
"cpu": [
|
|
4739
5423
|
"arm"
|
|
4740
5424
|
],
|
|
@@ -4745,9 +5429,9 @@
|
|
|
4745
5429
|
]
|
|
4746
5430
|
},
|
|
4747
5431
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
4748
|
-
"version": "4.
|
|
4749
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
4750
|
-
"integrity": "sha512-
|
|
5432
|
+
"version": "4.58.0",
|
|
5433
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.58.0.tgz",
|
|
5434
|
+
"integrity": "sha512-K+RI5oP1ceqoadvNt1FecL17Qtw/n9BgRSzxif3rTL2QlIu88ccvY+Y9nnHe/cmT5zbH9+bpiJuG1mGHRVwF4Q==",
|
|
4751
5435
|
"cpu": [
|
|
4752
5436
|
"arm"
|
|
4753
5437
|
],
|
|
@@ -4758,9 +5442,9 @@
|
|
|
4758
5442
|
]
|
|
4759
5443
|
},
|
|
4760
5444
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
4761
|
-
"version": "4.
|
|
4762
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
4763
|
-
"integrity": "sha512-
|
|
5445
|
+
"version": "4.58.0",
|
|
5446
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.58.0.tgz",
|
|
5447
|
+
"integrity": "sha512-T+17JAsCKUjmbopcKepJjHWHXSjeW7O5PL7lEFaeQmiVyw4kkc5/lyYKzrv6ElWRX/MrEWfPiJWqbTvfIvjM1Q==",
|
|
4764
5448
|
"cpu": [
|
|
4765
5449
|
"arm64"
|
|
4766
5450
|
],
|
|
@@ -4771,9 +5455,9 @@
|
|
|
4771
5455
|
]
|
|
4772
5456
|
},
|
|
4773
5457
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
4774
|
-
"version": "4.
|
|
4775
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
4776
|
-
"integrity": "sha512-
|
|
5458
|
+
"version": "4.58.0",
|
|
5459
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.58.0.tgz",
|
|
5460
|
+
"integrity": "sha512-cCePktb9+6R9itIJdeCFF9txPU7pQeEHB5AbHu/MKsfH/k70ZtOeq1k4YAtBv9Z7mmKI5/wOLYjQ+B9QdxR6LA==",
|
|
4777
5461
|
"cpu": [
|
|
4778
5462
|
"arm64"
|
|
4779
5463
|
],
|
|
@@ -4784,9 +5468,9 @@
|
|
|
4784
5468
|
]
|
|
4785
5469
|
},
|
|
4786
5470
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
4787
|
-
"version": "4.
|
|
4788
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
4789
|
-
"integrity": "sha512-
|
|
5471
|
+
"version": "4.58.0",
|
|
5472
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.58.0.tgz",
|
|
5473
|
+
"integrity": "sha512-iekUaLkfliAsDl4/xSdoCJ1gnnIXvoNz85C8U8+ZxknM5pBStfZjeXgB8lXobDQvvPRCN8FPmmuTtH+z95HTmg==",
|
|
4790
5474
|
"cpu": [
|
|
4791
5475
|
"loong64"
|
|
4792
5476
|
],
|
|
@@ -4797,9 +5481,9 @@
|
|
|
4797
5481
|
]
|
|
4798
5482
|
},
|
|
4799
5483
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
4800
|
-
"version": "4.
|
|
4801
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.
|
|
4802
|
-
"integrity": "sha512-
|
|
5484
|
+
"version": "4.58.0",
|
|
5485
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.58.0.tgz",
|
|
5486
|
+
"integrity": "sha512-68ofRgJNl/jYJbxFjCKE7IwhbfxOl1muPN4KbIqAIe32lm22KmU7E8OPvyy68HTNkI2iV/c8y2kSPSm2mW/Q9Q==",
|
|
4803
5487
|
"cpu": [
|
|
4804
5488
|
"loong64"
|
|
4805
5489
|
],
|
|
@@ -4810,9 +5494,9 @@
|
|
|
4810
5494
|
]
|
|
4811
5495
|
},
|
|
4812
5496
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
4813
|
-
"version": "4.
|
|
4814
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
4815
|
-
"integrity": "sha512-
|
|
5497
|
+
"version": "4.58.0",
|
|
5498
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.58.0.tgz",
|
|
5499
|
+
"integrity": "sha512-dpz8vT0i+JqUKuSNPCP5SYyIV2Lh0sNL1+FhM7eLC457d5B9/BC3kDPp5BBftMmTNsBarcPcoz5UGSsnCiw4XQ==",
|
|
4816
5500
|
"cpu": [
|
|
4817
5501
|
"ppc64"
|
|
4818
5502
|
],
|
|
@@ -4823,9 +5507,9 @@
|
|
|
4823
5507
|
]
|
|
4824
5508
|
},
|
|
4825
5509
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
4826
|
-
"version": "4.
|
|
4827
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.
|
|
4828
|
-
"integrity": "sha512-
|
|
5510
|
+
"version": "4.58.0",
|
|
5511
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.58.0.tgz",
|
|
5512
|
+
"integrity": "sha512-4gdkkf9UJ7tafnweBCR/mk4jf3Jfl0cKX9Np80t5i78kjIH0ZdezUv/JDI2VtruE5lunfACqftJ8dIMGN4oHew==",
|
|
4829
5513
|
"cpu": [
|
|
4830
5514
|
"ppc64"
|
|
4831
5515
|
],
|
|
@@ -4836,9 +5520,9 @@
|
|
|
4836
5520
|
]
|
|
4837
5521
|
},
|
|
4838
5522
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
4839
|
-
"version": "4.
|
|
4840
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
4841
|
-
"integrity": "sha512-
|
|
5523
|
+
"version": "4.58.0",
|
|
5524
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.58.0.tgz",
|
|
5525
|
+
"integrity": "sha512-YFS4vPnOkDTD/JriUeeZurFYoJhPf9GQQEF/v4lltp3mVcBmnsAdjEWhr2cjUCZzZNzxCG0HZOvJU44UGHSdzw==",
|
|
4842
5526
|
"cpu": [
|
|
4843
5527
|
"riscv64"
|
|
4844
5528
|
],
|
|
@@ -4849,9 +5533,9 @@
|
|
|
4849
5533
|
]
|
|
4850
5534
|
},
|
|
4851
5535
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
4852
|
-
"version": "4.
|
|
4853
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
4854
|
-
"integrity": "sha512-
|
|
5536
|
+
"version": "4.58.0",
|
|
5537
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.58.0.tgz",
|
|
5538
|
+
"integrity": "sha512-x2xgZlFne+QVNKV8b4wwaCS8pwq3y14zedZ5DqLzjdRITvreBk//4Knbcvm7+lWmms9V9qFp60MtUd0/t/PXPw==",
|
|
4855
5539
|
"cpu": [
|
|
4856
5540
|
"riscv64"
|
|
4857
5541
|
],
|
|
@@ -4862,9 +5546,9 @@
|
|
|
4862
5546
|
]
|
|
4863
5547
|
},
|
|
4864
5548
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
4865
|
-
"version": "4.
|
|
4866
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
4867
|
-
"integrity": "sha512-
|
|
5549
|
+
"version": "4.58.0",
|
|
5550
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.58.0.tgz",
|
|
5551
|
+
"integrity": "sha512-jIhrujyn4UnWF8S+DHSkAkDEO3hLX0cjzxJZPLF80xFyzyUIYgSMRcYQ3+uqEoyDD2beGq7Dj7edi8OnJcS/hg==",
|
|
4868
5552
|
"cpu": [
|
|
4869
5553
|
"s390x"
|
|
4870
5554
|
],
|
|
@@ -4875,9 +5559,9 @@
|
|
|
4875
5559
|
]
|
|
4876
5560
|
},
|
|
4877
5561
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
4878
|
-
"version": "4.
|
|
4879
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
4880
|
-
"integrity": "sha512
|
|
5562
|
+
"version": "4.58.0",
|
|
5563
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.58.0.tgz",
|
|
5564
|
+
"integrity": "sha512-+410Srdoh78MKSJxTQ+hZ/Mx+ajd6RjjPwBPNd0R3J9FtL6ZA0GqiiyNjCO9In0IzZkCNrpGymSfn+kgyPQocg==",
|
|
4881
5565
|
"cpu": [
|
|
4882
5566
|
"x64"
|
|
4883
5567
|
],
|
|
@@ -4888,9 +5572,9 @@
|
|
|
4888
5572
|
]
|
|
4889
5573
|
},
|
|
4890
5574
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
4891
|
-
"version": "4.
|
|
4892
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
4893
|
-
"integrity": "sha512-
|
|
5575
|
+
"version": "4.58.0",
|
|
5576
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.58.0.tgz",
|
|
5577
|
+
"integrity": "sha512-ZjMyby5SICi227y1MTR3VYBpFTdZs823Rs/hpakufleBoufoOIB6jtm9FEoxn/cgO7l6PM2rCEl5Kre5vX0QrQ==",
|
|
4894
5578
|
"cpu": [
|
|
4895
5579
|
"x64"
|
|
4896
5580
|
],
|
|
@@ -4901,9 +5585,9 @@
|
|
|
4901
5585
|
]
|
|
4902
5586
|
},
|
|
4903
5587
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
4904
|
-
"version": "4.
|
|
4905
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.
|
|
4906
|
-
"integrity": "sha512-
|
|
5588
|
+
"version": "4.58.0",
|
|
5589
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.58.0.tgz",
|
|
5590
|
+
"integrity": "sha512-ds4iwfYkSQ0k1nb8LTcyXw//ToHOnNTJtceySpL3fa7tc/AsE+UpUFphW126A6fKBGJD5dhRvg8zw1rvoGFxmw==",
|
|
4907
5591
|
"cpu": [
|
|
4908
5592
|
"x64"
|
|
4909
5593
|
],
|
|
@@ -4914,9 +5598,9 @@
|
|
|
4914
5598
|
]
|
|
4915
5599
|
},
|
|
4916
5600
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
4917
|
-
"version": "4.
|
|
4918
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
4919
|
-
"integrity": "sha512-
|
|
5601
|
+
"version": "4.58.0",
|
|
5602
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.58.0.tgz",
|
|
5603
|
+
"integrity": "sha512-fd/zpJniln4ICdPkjWFhZYeY/bpnaN9pGa6ko+5WD38I0tTqk9lXMgXZg09MNdhpARngmxiCg0B0XUamNw/5BQ==",
|
|
4920
5604
|
"cpu": [
|
|
4921
5605
|
"arm64"
|
|
4922
5606
|
],
|
|
@@ -4927,9 +5611,9 @@
|
|
|
4927
5611
|
]
|
|
4928
5612
|
},
|
|
4929
5613
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
4930
|
-
"version": "4.
|
|
4931
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
4932
|
-
"integrity": "sha512-
|
|
5614
|
+
"version": "4.58.0",
|
|
5615
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.58.0.tgz",
|
|
5616
|
+
"integrity": "sha512-YpG8dUOip7DCz3nr/JUfPbIUo+2d/dy++5bFzgi4ugOGBIox+qMbbqt/JoORwvI/C9Kn2tz6+Bieoqd5+B1CjA==",
|
|
4933
5617
|
"cpu": [
|
|
4934
5618
|
"arm64"
|
|
4935
5619
|
],
|
|
@@ -4940,9 +5624,9 @@
|
|
|
4940
5624
|
]
|
|
4941
5625
|
},
|
|
4942
5626
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
4943
|
-
"version": "4.
|
|
4944
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
4945
|
-
"integrity": "sha512-
|
|
5627
|
+
"version": "4.58.0",
|
|
5628
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.58.0.tgz",
|
|
5629
|
+
"integrity": "sha512-b9DI8jpFQVh4hIXFr0/+N/TzLdpBIoPzjt0Rt4xJbW3mzguV3mduR9cNgiuFcuL/TeORejJhCWiAXe3E/6PxWA==",
|
|
4946
5630
|
"cpu": [
|
|
4947
5631
|
"ia32"
|
|
4948
5632
|
],
|
|
@@ -4953,9 +5637,9 @@
|
|
|
4953
5637
|
]
|
|
4954
5638
|
},
|
|
4955
5639
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
4956
|
-
"version": "4.
|
|
4957
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
4958
|
-
"integrity": "sha512-
|
|
5640
|
+
"version": "4.58.0",
|
|
5641
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.58.0.tgz",
|
|
5642
|
+
"integrity": "sha512-CSrVpmoRJFN06LL9xhkitkwUcTZtIotYAF5p6XOR2zW0Zz5mzb3IPpcoPhB02frzMHFNo1reQ9xSF5fFm3hUsQ==",
|
|
4959
5643
|
"cpu": [
|
|
4960
5644
|
"x64"
|
|
4961
5645
|
],
|
|
@@ -4966,9 +5650,9 @@
|
|
|
4966
5650
|
]
|
|
4967
5651
|
},
|
|
4968
5652
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
4969
|
-
"version": "4.
|
|
4970
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
4971
|
-
"integrity": "sha512-
|
|
5653
|
+
"version": "4.58.0",
|
|
5654
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.58.0.tgz",
|
|
5655
|
+
"integrity": "sha512-QFsBgQNTnh5K0t/sBsjJLq24YVqEIVkGpfN2VHsnN90soZyhaiA9UUHufcctVNL4ypJY0wrwad0wslx2KJQ1/w==",
|
|
4972
5656
|
"cpu": [
|
|
4973
5657
|
"x64"
|
|
4974
5658
|
],
|
|
@@ -4979,9 +5663,9 @@
|
|
|
4979
5663
|
]
|
|
4980
5664
|
},
|
|
4981
5665
|
"node_modules/@salesforce/agentforce-conversation-client": {
|
|
4982
|
-
"version": "1.
|
|
4983
|
-
"resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-1.
|
|
4984
|
-
"integrity": "sha512
|
|
5666
|
+
"version": "1.44.0",
|
|
5667
|
+
"resolved": "https://registry.npmjs.org/@salesforce/agentforce-conversation-client/-/agentforce-conversation-client-1.44.0.tgz",
|
|
5668
|
+
"integrity": "sha512-/LxCENmZt4ujkxb7xrmfPwwgo345tfXx8vVVglqS9K17DluqMoIA80v0Ejo6s8cw/S4LARUxwHNnk/Ll7dBg/A==",
|
|
4985
5669
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
4986
5670
|
"dependencies": {
|
|
4987
5671
|
"@lightning-out/application": "2.1.1-rc.2"
|
|
@@ -5042,19 +5726,19 @@
|
|
|
5042
5726
|
}
|
|
5043
5727
|
},
|
|
5044
5728
|
"node_modules/@salesforce/sdk-core": {
|
|
5045
|
-
"version": "1.43.
|
|
5046
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-core/-/sdk-core-1.43.
|
|
5047
|
-
"integrity": "sha512-
|
|
5729
|
+
"version": "1.43.1",
|
|
5730
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sdk-core/-/sdk-core-1.43.1.tgz",
|
|
5731
|
+
"integrity": "sha512-15g/eyRxg922NSOEyd4VVfkspBn+sGdIRkNiKAuQMYXeimTejbOqdM+b+2ZRwqknl9BwiSYpTCAJsTGvCl2ZUw==",
|
|
5048
5732
|
"license": "SEE LICENSE IN LICENSE.txt"
|
|
5049
5733
|
},
|
|
5050
5734
|
"node_modules/@salesforce/sdk-data": {
|
|
5051
|
-
"version": "1.43.
|
|
5052
|
-
"resolved": "https://registry.npmjs.org/@salesforce/sdk-data/-/sdk-data-1.43.
|
|
5053
|
-
"integrity": "sha512-
|
|
5735
|
+
"version": "1.43.1",
|
|
5736
|
+
"resolved": "https://registry.npmjs.org/@salesforce/sdk-data/-/sdk-data-1.43.1.tgz",
|
|
5737
|
+
"integrity": "sha512-yr6VnWKBA8x1UEwjB2bBUh//xghkJrGYPRad48vgzBqefpZ3ePSwTTlXNHn/hg9em3KYeBPdvXTZNuokp3UYwg==",
|
|
5054
5738
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5055
5739
|
"dependencies": {
|
|
5056
5740
|
"@conduit-client/salesforce-lightning-service-worker": "^3.7.0",
|
|
5057
|
-
"@salesforce/sdk-core": "^1.43.
|
|
5741
|
+
"@salesforce/sdk-core": "^1.43.1"
|
|
5058
5742
|
}
|
|
5059
5743
|
},
|
|
5060
5744
|
"node_modules/@salesforce/ts-types": {
|
|
@@ -5067,13 +5751,13 @@
|
|
|
5067
5751
|
}
|
|
5068
5752
|
},
|
|
5069
5753
|
"node_modules/@salesforce/vite-plugin-webapp-experimental": {
|
|
5070
|
-
"version": "1.43.
|
|
5071
|
-
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-webapp-experimental/-/vite-plugin-webapp-experimental-1.43.
|
|
5072
|
-
"integrity": "sha512-
|
|
5754
|
+
"version": "1.43.1",
|
|
5755
|
+
"resolved": "https://registry.npmjs.org/@salesforce/vite-plugin-webapp-experimental/-/vite-plugin-webapp-experimental-1.43.1.tgz",
|
|
5756
|
+
"integrity": "sha512-hHnfmGVpB11VZ0iVMa/COKsXXFwSnZ75XXGc9gHdZJa5ceFPkr/pbwihDh5I/paRURAyrQqL36MhaW8AhBLxUA==",
|
|
5073
5757
|
"dev": true,
|
|
5074
5758
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5075
5759
|
"dependencies": {
|
|
5076
|
-
"@salesforce/webapp-experimental": "^1.43.
|
|
5760
|
+
"@salesforce/webapp-experimental": "^1.43.1"
|
|
5077
5761
|
},
|
|
5078
5762
|
"engines": {
|
|
5079
5763
|
"node": ">=20.0.0"
|
|
@@ -5083,13 +5767,13 @@
|
|
|
5083
5767
|
}
|
|
5084
5768
|
},
|
|
5085
5769
|
"node_modules/@salesforce/webapp-experimental": {
|
|
5086
|
-
"version": "1.43.
|
|
5087
|
-
"resolved": "https://registry.npmjs.org/@salesforce/webapp-experimental/-/webapp-experimental-1.43.
|
|
5088
|
-
"integrity": "sha512-
|
|
5770
|
+
"version": "1.43.1",
|
|
5771
|
+
"resolved": "https://registry.npmjs.org/@salesforce/webapp-experimental/-/webapp-experimental-1.43.1.tgz",
|
|
5772
|
+
"integrity": "sha512-GHLbqR2jo2dJc5iY4hTyc0g7HXR2ga8fFjWgcGM8JmKZNyqztXd8QamrPBsVgNKyDRle+yyFPU86NVeLMzoicg==",
|
|
5089
5773
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5090
5774
|
"dependencies": {
|
|
5091
5775
|
"@salesforce/core": "^8.23.4",
|
|
5092
|
-
"@salesforce/sdk-data": "^1.43.
|
|
5776
|
+
"@salesforce/sdk-data": "^1.43.1",
|
|
5093
5777
|
"axios": "^1.7.7",
|
|
5094
5778
|
"micromatch": "^4.0.8",
|
|
5095
5779
|
"path-to-regexp": "^8.3.0"
|
|
@@ -5968,9 +6652,9 @@
|
|
|
5968
6652
|
}
|
|
5969
6653
|
},
|
|
5970
6654
|
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
5971
|
-
"version": "5.0.
|
|
5972
|
-
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.
|
|
5973
|
-
"integrity": "sha512-
|
|
6655
|
+
"version": "5.0.1",
|
|
6656
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
|
|
6657
|
+
"integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
|
|
5974
6658
|
"dev": true,
|
|
5975
6659
|
"license": "Apache-2.0",
|
|
5976
6660
|
"engines": {
|
|
@@ -7361,27 +8045,6 @@
|
|
|
7361
8045
|
"dev": true,
|
|
7362
8046
|
"license": "MIT"
|
|
7363
8047
|
},
|
|
7364
|
-
"node_modules/compression/node_modules/safe-buffer": {
|
|
7365
|
-
"version": "5.2.1",
|
|
7366
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
7367
|
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
7368
|
-
"dev": true,
|
|
7369
|
-
"funding": [
|
|
7370
|
-
{
|
|
7371
|
-
"type": "github",
|
|
7372
|
-
"url": "https://github.com/sponsors/feross"
|
|
7373
|
-
},
|
|
7374
|
-
{
|
|
7375
|
-
"type": "patreon",
|
|
7376
|
-
"url": "https://www.patreon.com/feross"
|
|
7377
|
-
},
|
|
7378
|
-
{
|
|
7379
|
-
"type": "consulting",
|
|
7380
|
-
"url": "https://feross.org/support"
|
|
7381
|
-
}
|
|
7382
|
-
],
|
|
7383
|
-
"license": "MIT"
|
|
7384
|
-
},
|
|
7385
8048
|
"node_modules/concat-map": {
|
|
7386
8049
|
"version": "0.0.1",
|
|
7387
8050
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
@@ -7883,9 +8546,9 @@
|
|
|
7883
8546
|
}
|
|
7884
8547
|
},
|
|
7885
8548
|
"node_modules/electron-to-chromium": {
|
|
7886
|
-
"version": "1.5.
|
|
7887
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
7888
|
-
"integrity": "sha512-
|
|
8549
|
+
"version": "1.5.302",
|
|
8550
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.302.tgz",
|
|
8551
|
+
"integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==",
|
|
7889
8552
|
"dev": true,
|
|
7890
8553
|
"license": "ISC"
|
|
7891
8554
|
},
|
|
@@ -8209,9 +8872,9 @@
|
|
|
8209
8872
|
}
|
|
8210
8873
|
},
|
|
8211
8874
|
"node_modules/eslint": {
|
|
8212
|
-
"version": "9.39.
|
|
8213
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.
|
|
8214
|
-
"integrity": "sha512-
|
|
8875
|
+
"version": "9.39.3",
|
|
8876
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.3.tgz",
|
|
8877
|
+
"integrity": "sha512-VmQ+sifHUbI/IcSopBCF/HO3YiHQx/AVd3UVyYL6weuwW+HvON9VYn5l6Zl1WZzPWXPNZrSQpxwkkZ/VuvJZzg==",
|
|
8215
8878
|
"dev": true,
|
|
8216
8879
|
"license": "MIT",
|
|
8217
8880
|
"dependencies": {
|
|
@@ -8221,7 +8884,7 @@
|
|
|
8221
8884
|
"@eslint/config-helpers": "^0.4.2",
|
|
8222
8885
|
"@eslint/core": "^0.17.0",
|
|
8223
8886
|
"@eslint/eslintrc": "^3.3.1",
|
|
8224
|
-
"@eslint/js": "9.39.
|
|
8887
|
+
"@eslint/js": "9.39.3",
|
|
8225
8888
|
"@eslint/plugin-kit": "^0.4.1",
|
|
8226
8889
|
"@humanfs/node": "^0.16.6",
|
|
8227
8890
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -9270,6 +9933,13 @@
|
|
|
9270
9933
|
"node": ">= 0.6.0"
|
|
9271
9934
|
}
|
|
9272
9935
|
},
|
|
9936
|
+
"node_modules/graphql-codegen-typescript-operation-types/node_modules/tslib": {
|
|
9937
|
+
"version": "2.6.3",
|
|
9938
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz",
|
|
9939
|
+
"integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==",
|
|
9940
|
+
"dev": true,
|
|
9941
|
+
"license": "0BSD"
|
|
9942
|
+
},
|
|
9273
9943
|
"node_modules/graphql-config": {
|
|
9274
9944
|
"version": "5.1.5",
|
|
9275
9945
|
"resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-5.1.5.tgz",
|
|
@@ -9588,13 +10258,6 @@
|
|
|
9588
10258
|
"node": ">=18"
|
|
9589
10259
|
}
|
|
9590
10260
|
},
|
|
9591
|
-
"node_modules/graphql-config/node_modules/tslib": {
|
|
9592
|
-
"version": "2.8.1",
|
|
9593
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
9594
|
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
9595
|
-
"dev": true,
|
|
9596
|
-
"license": "0BSD"
|
|
9597
|
-
},
|
|
9598
10261
|
"node_modules/graphql-depth-limit": {
|
|
9599
10262
|
"version": "1.1.0",
|
|
9600
10263
|
"resolved": "https://registry.npmjs.org/graphql-depth-limit/-/graphql-depth-limit-1.1.0.tgz",
|
|
@@ -10742,6 +11405,39 @@
|
|
|
10742
11405
|
"node": ">= 14"
|
|
10743
11406
|
}
|
|
10744
11407
|
},
|
|
11408
|
+
"node_modules/jsdom/node_modules/tldts": {
|
|
11409
|
+
"version": "6.1.86",
|
|
11410
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz",
|
|
11411
|
+
"integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==",
|
|
11412
|
+
"dev": true,
|
|
11413
|
+
"license": "MIT",
|
|
11414
|
+
"dependencies": {
|
|
11415
|
+
"tldts-core": "^6.1.86"
|
|
11416
|
+
},
|
|
11417
|
+
"bin": {
|
|
11418
|
+
"tldts": "bin/cli.js"
|
|
11419
|
+
}
|
|
11420
|
+
},
|
|
11421
|
+
"node_modules/jsdom/node_modules/tldts-core": {
|
|
11422
|
+
"version": "6.1.86",
|
|
11423
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz",
|
|
11424
|
+
"integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==",
|
|
11425
|
+
"dev": true,
|
|
11426
|
+
"license": "MIT"
|
|
11427
|
+
},
|
|
11428
|
+
"node_modules/jsdom/node_modules/tough-cookie": {
|
|
11429
|
+
"version": "5.1.2",
|
|
11430
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz",
|
|
11431
|
+
"integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==",
|
|
11432
|
+
"dev": true,
|
|
11433
|
+
"license": "BSD-3-Clause",
|
|
11434
|
+
"dependencies": {
|
|
11435
|
+
"tldts": "^6.1.32"
|
|
11436
|
+
},
|
|
11437
|
+
"engines": {
|
|
11438
|
+
"node": ">=16"
|
|
11439
|
+
}
|
|
11440
|
+
},
|
|
10745
11441
|
"node_modules/jsesc": {
|
|
10746
11442
|
"version": "3.1.0",
|
|
10747
11443
|
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
@@ -11611,33 +12307,23 @@
|
|
|
11611
12307
|
"version": "1.52.0",
|
|
11612
12308
|
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
11613
12309
|
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
11614
|
-
"dev": true,
|
|
11615
12310
|
"license": "MIT",
|
|
11616
12311
|
"engines": {
|
|
11617
12312
|
"node": ">= 0.6"
|
|
11618
12313
|
}
|
|
11619
12314
|
},
|
|
11620
12315
|
"node_modules/mime-types": {
|
|
11621
|
-
"version": "2.1.
|
|
11622
|
-
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.
|
|
11623
|
-
"integrity": "sha512-
|
|
12316
|
+
"version": "2.1.35",
|
|
12317
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
12318
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
11624
12319
|
"license": "MIT",
|
|
11625
12320
|
"dependencies": {
|
|
11626
|
-
"mime-db": "
|
|
12321
|
+
"mime-db": "1.52.0"
|
|
11627
12322
|
},
|
|
11628
12323
|
"engines": {
|
|
11629
12324
|
"node": ">= 0.6"
|
|
11630
12325
|
}
|
|
11631
12326
|
},
|
|
11632
|
-
"node_modules/mime-types/node_modules/mime-db": {
|
|
11633
|
-
"version": "1.33.0",
|
|
11634
|
-
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
|
|
11635
|
-
"integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==",
|
|
11636
|
-
"license": "MIT",
|
|
11637
|
-
"engines": {
|
|
11638
|
-
"node": ">= 0.6"
|
|
11639
|
-
}
|
|
11640
|
-
},
|
|
11641
12327
|
"node_modules/mimic-fn": {
|
|
11642
12328
|
"version": "2.1.0",
|
|
11643
12329
|
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
|
@@ -12408,26 +13094,6 @@
|
|
|
12408
13094
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
12409
13095
|
}
|
|
12410
13096
|
},
|
|
12411
|
-
"node_modules/pino-abstract-transport/node_modules/safe-buffer": {
|
|
12412
|
-
"version": "5.2.1",
|
|
12413
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
12414
|
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
12415
|
-
"funding": [
|
|
12416
|
-
{
|
|
12417
|
-
"type": "github",
|
|
12418
|
-
"url": "https://github.com/sponsors/feross"
|
|
12419
|
-
},
|
|
12420
|
-
{
|
|
12421
|
-
"type": "patreon",
|
|
12422
|
-
"url": "https://www.patreon.com/feross"
|
|
12423
|
-
},
|
|
12424
|
-
{
|
|
12425
|
-
"type": "consulting",
|
|
12426
|
-
"url": "https://feross.org/support"
|
|
12427
|
-
}
|
|
12428
|
-
],
|
|
12429
|
-
"license": "MIT"
|
|
12430
|
-
},
|
|
12431
13097
|
"node_modules/pino-abstract-transport/node_modules/string_decoder": {
|
|
12432
13098
|
"version": "1.3.0",
|
|
12433
13099
|
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
@@ -12487,26 +13153,6 @@
|
|
|
12487
13153
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
12488
13154
|
}
|
|
12489
13155
|
},
|
|
12490
|
-
"node_modules/pino-pretty/node_modules/safe-buffer": {
|
|
12491
|
-
"version": "5.2.1",
|
|
12492
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
12493
|
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
12494
|
-
"funding": [
|
|
12495
|
-
{
|
|
12496
|
-
"type": "github",
|
|
12497
|
-
"url": "https://github.com/sponsors/feross"
|
|
12498
|
-
},
|
|
12499
|
-
{
|
|
12500
|
-
"type": "patreon",
|
|
12501
|
-
"url": "https://www.patreon.com/feross"
|
|
12502
|
-
},
|
|
12503
|
-
{
|
|
12504
|
-
"type": "consulting",
|
|
12505
|
-
"url": "https://feross.org/support"
|
|
12506
|
-
}
|
|
12507
|
-
],
|
|
12508
|
-
"license": "MIT"
|
|
12509
|
-
},
|
|
12510
13156
|
"node_modules/pino-pretty/node_modules/string_decoder": {
|
|
12511
13157
|
"version": "1.3.0",
|
|
12512
13158
|
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
@@ -12771,6 +13417,83 @@
|
|
|
12771
13417
|
"integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==",
|
|
12772
13418
|
"license": "MIT"
|
|
12773
13419
|
},
|
|
13420
|
+
"node_modules/radix-ui": {
|
|
13421
|
+
"version": "1.4.3",
|
|
13422
|
+
"resolved": "https://registry.npmjs.org/radix-ui/-/radix-ui-1.4.3.tgz",
|
|
13423
|
+
"integrity": "sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==",
|
|
13424
|
+
"license": "MIT",
|
|
13425
|
+
"dependencies": {
|
|
13426
|
+
"@radix-ui/primitive": "1.1.3",
|
|
13427
|
+
"@radix-ui/react-accessible-icon": "1.1.7",
|
|
13428
|
+
"@radix-ui/react-accordion": "1.2.12",
|
|
13429
|
+
"@radix-ui/react-alert-dialog": "1.1.15",
|
|
13430
|
+
"@radix-ui/react-arrow": "1.1.7",
|
|
13431
|
+
"@radix-ui/react-aspect-ratio": "1.1.7",
|
|
13432
|
+
"@radix-ui/react-avatar": "1.1.10",
|
|
13433
|
+
"@radix-ui/react-checkbox": "1.3.3",
|
|
13434
|
+
"@radix-ui/react-collapsible": "1.1.12",
|
|
13435
|
+
"@radix-ui/react-collection": "1.1.7",
|
|
13436
|
+
"@radix-ui/react-compose-refs": "1.1.2",
|
|
13437
|
+
"@radix-ui/react-context": "1.1.2",
|
|
13438
|
+
"@radix-ui/react-context-menu": "2.2.16",
|
|
13439
|
+
"@radix-ui/react-dialog": "1.1.15",
|
|
13440
|
+
"@radix-ui/react-direction": "1.1.1",
|
|
13441
|
+
"@radix-ui/react-dismissable-layer": "1.1.11",
|
|
13442
|
+
"@radix-ui/react-dropdown-menu": "2.1.16",
|
|
13443
|
+
"@radix-ui/react-focus-guards": "1.1.3",
|
|
13444
|
+
"@radix-ui/react-focus-scope": "1.1.7",
|
|
13445
|
+
"@radix-ui/react-form": "0.1.8",
|
|
13446
|
+
"@radix-ui/react-hover-card": "1.1.15",
|
|
13447
|
+
"@radix-ui/react-label": "2.1.7",
|
|
13448
|
+
"@radix-ui/react-menu": "2.1.16",
|
|
13449
|
+
"@radix-ui/react-menubar": "1.1.16",
|
|
13450
|
+
"@radix-ui/react-navigation-menu": "1.2.14",
|
|
13451
|
+
"@radix-ui/react-one-time-password-field": "0.1.8",
|
|
13452
|
+
"@radix-ui/react-password-toggle-field": "0.1.3",
|
|
13453
|
+
"@radix-ui/react-popover": "1.1.15",
|
|
13454
|
+
"@radix-ui/react-popper": "1.2.8",
|
|
13455
|
+
"@radix-ui/react-portal": "1.1.9",
|
|
13456
|
+
"@radix-ui/react-presence": "1.1.5",
|
|
13457
|
+
"@radix-ui/react-primitive": "2.1.3",
|
|
13458
|
+
"@radix-ui/react-progress": "1.1.7",
|
|
13459
|
+
"@radix-ui/react-radio-group": "1.3.8",
|
|
13460
|
+
"@radix-ui/react-roving-focus": "1.1.11",
|
|
13461
|
+
"@radix-ui/react-scroll-area": "1.2.10",
|
|
13462
|
+
"@radix-ui/react-select": "2.2.6",
|
|
13463
|
+
"@radix-ui/react-separator": "1.1.7",
|
|
13464
|
+
"@radix-ui/react-slider": "1.3.6",
|
|
13465
|
+
"@radix-ui/react-slot": "1.2.3",
|
|
13466
|
+
"@radix-ui/react-switch": "1.2.6",
|
|
13467
|
+
"@radix-ui/react-tabs": "1.1.13",
|
|
13468
|
+
"@radix-ui/react-toast": "1.2.15",
|
|
13469
|
+
"@radix-ui/react-toggle": "1.1.10",
|
|
13470
|
+
"@radix-ui/react-toggle-group": "1.1.11",
|
|
13471
|
+
"@radix-ui/react-toolbar": "1.1.11",
|
|
13472
|
+
"@radix-ui/react-tooltip": "1.2.8",
|
|
13473
|
+
"@radix-ui/react-use-callback-ref": "1.1.1",
|
|
13474
|
+
"@radix-ui/react-use-controllable-state": "1.2.2",
|
|
13475
|
+
"@radix-ui/react-use-effect-event": "0.0.2",
|
|
13476
|
+
"@radix-ui/react-use-escape-keydown": "1.1.1",
|
|
13477
|
+
"@radix-ui/react-use-is-hydrated": "0.1.0",
|
|
13478
|
+
"@radix-ui/react-use-layout-effect": "1.1.1",
|
|
13479
|
+
"@radix-ui/react-use-size": "1.1.1",
|
|
13480
|
+
"@radix-ui/react-visually-hidden": "1.2.3"
|
|
13481
|
+
},
|
|
13482
|
+
"peerDependencies": {
|
|
13483
|
+
"@types/react": "*",
|
|
13484
|
+
"@types/react-dom": "*",
|
|
13485
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
13486
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
13487
|
+
},
|
|
13488
|
+
"peerDependenciesMeta": {
|
|
13489
|
+
"@types/react": {
|
|
13490
|
+
"optional": true
|
|
13491
|
+
},
|
|
13492
|
+
"@types/react-dom": {
|
|
13493
|
+
"optional": true
|
|
13494
|
+
}
|
|
13495
|
+
}
|
|
13496
|
+
},
|
|
12774
13497
|
"node_modules/range-parser": {
|
|
12775
13498
|
"version": "1.2.0",
|
|
12776
13499
|
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz",
|
|
@@ -12952,6 +13675,12 @@
|
|
|
12952
13675
|
"util-deprecate": "~1.0.1"
|
|
12953
13676
|
}
|
|
12954
13677
|
},
|
|
13678
|
+
"node_modules/readable-stream/node_modules/safe-buffer": {
|
|
13679
|
+
"version": "5.1.2",
|
|
13680
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
13681
|
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
13682
|
+
"license": "MIT"
|
|
13683
|
+
},
|
|
12955
13684
|
"node_modules/real-require": {
|
|
12956
13685
|
"version": "0.2.0",
|
|
12957
13686
|
"resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz",
|
|
@@ -13177,9 +13906,9 @@
|
|
|
13177
13906
|
"license": "MIT"
|
|
13178
13907
|
},
|
|
13179
13908
|
"node_modules/rollup": {
|
|
13180
|
-
"version": "4.
|
|
13181
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
13182
|
-
"integrity": "sha512-
|
|
13909
|
+
"version": "4.58.0",
|
|
13910
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.58.0.tgz",
|
|
13911
|
+
"integrity": "sha512-wbT0mBmWbIvvq8NeEYWWvevvxnOyhKChir47S66WCxw1SXqhw7ssIYejnQEVt7XYQpsj2y8F9PM+Cr3SNEa0gw==",
|
|
13183
13912
|
"license": "MIT",
|
|
13184
13913
|
"dependencies": {
|
|
13185
13914
|
"@types/estree": "1.0.8"
|
|
@@ -13192,31 +13921,31 @@
|
|
|
13192
13921
|
"npm": ">=8.0.0"
|
|
13193
13922
|
},
|
|
13194
13923
|
"optionalDependencies": {
|
|
13195
|
-
"@rollup/rollup-android-arm-eabi": "4.
|
|
13196
|
-
"@rollup/rollup-android-arm64": "4.
|
|
13197
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
13198
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
13199
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
13200
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
13201
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
13202
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
13203
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
13204
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
13205
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
13206
|
-
"@rollup/rollup-linux-loong64-musl": "4.
|
|
13207
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.
|
|
13208
|
-
"@rollup/rollup-linux-ppc64-musl": "4.
|
|
13209
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.
|
|
13210
|
-
"@rollup/rollup-linux-riscv64-musl": "4.
|
|
13211
|
-
"@rollup/rollup-linux-s390x-gnu": "4.
|
|
13212
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
13213
|
-
"@rollup/rollup-linux-x64-musl": "4.
|
|
13214
|
-
"@rollup/rollup-openbsd-x64": "4.
|
|
13215
|
-
"@rollup/rollup-openharmony-arm64": "4.
|
|
13216
|
-
"@rollup/rollup-win32-arm64-msvc": "4.
|
|
13217
|
-
"@rollup/rollup-win32-ia32-msvc": "4.
|
|
13218
|
-
"@rollup/rollup-win32-x64-gnu": "4.
|
|
13219
|
-
"@rollup/rollup-win32-x64-msvc": "4.
|
|
13924
|
+
"@rollup/rollup-android-arm-eabi": "4.58.0",
|
|
13925
|
+
"@rollup/rollup-android-arm64": "4.58.0",
|
|
13926
|
+
"@rollup/rollup-darwin-arm64": "4.58.0",
|
|
13927
|
+
"@rollup/rollup-darwin-x64": "4.58.0",
|
|
13928
|
+
"@rollup/rollup-freebsd-arm64": "4.58.0",
|
|
13929
|
+
"@rollup/rollup-freebsd-x64": "4.58.0",
|
|
13930
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.58.0",
|
|
13931
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.58.0",
|
|
13932
|
+
"@rollup/rollup-linux-arm64-gnu": "4.58.0",
|
|
13933
|
+
"@rollup/rollup-linux-arm64-musl": "4.58.0",
|
|
13934
|
+
"@rollup/rollup-linux-loong64-gnu": "4.58.0",
|
|
13935
|
+
"@rollup/rollup-linux-loong64-musl": "4.58.0",
|
|
13936
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.58.0",
|
|
13937
|
+
"@rollup/rollup-linux-ppc64-musl": "4.58.0",
|
|
13938
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.58.0",
|
|
13939
|
+
"@rollup/rollup-linux-riscv64-musl": "4.58.0",
|
|
13940
|
+
"@rollup/rollup-linux-s390x-gnu": "4.58.0",
|
|
13941
|
+
"@rollup/rollup-linux-x64-gnu": "4.58.0",
|
|
13942
|
+
"@rollup/rollup-linux-x64-musl": "4.58.0",
|
|
13943
|
+
"@rollup/rollup-openbsd-x64": "4.58.0",
|
|
13944
|
+
"@rollup/rollup-openharmony-arm64": "4.58.0",
|
|
13945
|
+
"@rollup/rollup-win32-arm64-msvc": "4.58.0",
|
|
13946
|
+
"@rollup/rollup-win32-ia32-msvc": "4.58.0",
|
|
13947
|
+
"@rollup/rollup-win32-x64-gnu": "4.58.0",
|
|
13948
|
+
"@rollup/rollup-win32-x64-msvc": "4.58.0",
|
|
13220
13949
|
"fsevents": "~2.3.2"
|
|
13221
13950
|
}
|
|
13222
13951
|
},
|
|
@@ -13279,9 +14008,23 @@
|
|
|
13279
14008
|
"license": "MIT"
|
|
13280
14009
|
},
|
|
13281
14010
|
"node_modules/safe-buffer": {
|
|
13282
|
-
"version": "5.1
|
|
13283
|
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.
|
|
13284
|
-
"integrity": "sha512-
|
|
14011
|
+
"version": "5.2.1",
|
|
14012
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
14013
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
14014
|
+
"funding": [
|
|
14015
|
+
{
|
|
14016
|
+
"type": "github",
|
|
14017
|
+
"url": "https://github.com/sponsors/feross"
|
|
14018
|
+
},
|
|
14019
|
+
{
|
|
14020
|
+
"type": "patreon",
|
|
14021
|
+
"url": "https://www.patreon.com/feross"
|
|
14022
|
+
},
|
|
14023
|
+
{
|
|
14024
|
+
"type": "consulting",
|
|
14025
|
+
"url": "https://feross.org/support"
|
|
14026
|
+
}
|
|
14027
|
+
],
|
|
13285
14028
|
"license": "MIT"
|
|
13286
14029
|
},
|
|
13287
14030
|
"node_modules/safe-push-apply": {
|
|
@@ -13458,6 +14201,29 @@
|
|
|
13458
14201
|
"node": ">= 0.8"
|
|
13459
14202
|
}
|
|
13460
14203
|
},
|
|
14204
|
+
"node_modules/serve-handler/node_modules/mime-db": {
|
|
14205
|
+
"version": "1.33.0",
|
|
14206
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
|
|
14207
|
+
"integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==",
|
|
14208
|
+
"dev": true,
|
|
14209
|
+
"license": "MIT",
|
|
14210
|
+
"engines": {
|
|
14211
|
+
"node": ">= 0.6"
|
|
14212
|
+
}
|
|
14213
|
+
},
|
|
14214
|
+
"node_modules/serve-handler/node_modules/mime-types": {
|
|
14215
|
+
"version": "2.1.18",
|
|
14216
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
|
|
14217
|
+
"integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
|
|
14218
|
+
"dev": true,
|
|
14219
|
+
"license": "MIT",
|
|
14220
|
+
"dependencies": {
|
|
14221
|
+
"mime-db": "~1.33.0"
|
|
14222
|
+
},
|
|
14223
|
+
"engines": {
|
|
14224
|
+
"node": ">= 0.6"
|
|
14225
|
+
}
|
|
14226
|
+
},
|
|
13461
14227
|
"node_modules/serve-handler/node_modules/path-to-regexp": {
|
|
13462
14228
|
"version": "3.3.0",
|
|
13463
14229
|
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-3.3.0.tgz",
|
|
@@ -13834,6 +14600,12 @@
|
|
|
13834
14600
|
"safe-buffer": "~5.1.0"
|
|
13835
14601
|
}
|
|
13836
14602
|
},
|
|
14603
|
+
"node_modules/string_decoder/node_modules/safe-buffer": {
|
|
14604
|
+
"version": "5.1.2",
|
|
14605
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
|
14606
|
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
|
14607
|
+
"license": "MIT"
|
|
14608
|
+
},
|
|
13837
14609
|
"node_modules/string-env-interpolation": {
|
|
13838
14610
|
"version": "1.0.1",
|
|
13839
14611
|
"resolved": "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz",
|
|
@@ -14244,21 +15016,21 @@
|
|
|
14244
15016
|
}
|
|
14245
15017
|
},
|
|
14246
15018
|
"node_modules/tldts": {
|
|
14247
|
-
"version": "
|
|
14248
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-
|
|
14249
|
-
"integrity": "sha512-
|
|
15019
|
+
"version": "7.0.23",
|
|
15020
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.23.tgz",
|
|
15021
|
+
"integrity": "sha512-ASdhgQIBSay0R/eXggAkQ53G4nTJqTXqC2kbaBbdDwM7SkjyZyO0OaaN1/FH7U/yCeqOHDwFO5j8+Os/IS1dXw==",
|
|
14250
15022
|
"license": "MIT",
|
|
14251
15023
|
"dependencies": {
|
|
14252
|
-
"tldts-core": "^
|
|
15024
|
+
"tldts-core": "^7.0.23"
|
|
14253
15025
|
},
|
|
14254
15026
|
"bin": {
|
|
14255
15027
|
"tldts": "bin/cli.js"
|
|
14256
15028
|
}
|
|
14257
15029
|
},
|
|
14258
15030
|
"node_modules/tldts-core": {
|
|
14259
|
-
"version": "
|
|
14260
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-
|
|
14261
|
-
"integrity": "sha512-
|
|
15031
|
+
"version": "7.0.23",
|
|
15032
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.23.tgz",
|
|
15033
|
+
"integrity": "sha512-0g9vrtDQLrNIiCj22HSe9d4mLVG3g5ph5DZ8zCKBr4OtrspmNB6ss7hVyzArAeE88ceZocIEGkyW1Ime7fxPtQ==",
|
|
14262
15034
|
"license": "MIT"
|
|
14263
15035
|
},
|
|
14264
15036
|
"node_modules/to-regex-range": {
|
|
@@ -14284,12 +15056,12 @@
|
|
|
14284
15056
|
}
|
|
14285
15057
|
},
|
|
14286
15058
|
"node_modules/tough-cookie": {
|
|
14287
|
-
"version": "
|
|
14288
|
-
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-
|
|
14289
|
-
"integrity": "sha512-
|
|
15059
|
+
"version": "6.0.0",
|
|
15060
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz",
|
|
15061
|
+
"integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==",
|
|
14290
15062
|
"license": "BSD-3-Clause",
|
|
14291
15063
|
"dependencies": {
|
|
14292
|
-
"tldts": "^
|
|
15064
|
+
"tldts": "^7.0.5"
|
|
14293
15065
|
},
|
|
14294
15066
|
"engines": {
|
|
14295
15067
|
"node": ">=16"
|
|
@@ -14354,9 +15126,9 @@
|
|
|
14354
15126
|
}
|
|
14355
15127
|
},
|
|
14356
15128
|
"node_modules/tslib": {
|
|
14357
|
-
"version": "2.
|
|
14358
|
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.
|
|
14359
|
-
"integrity": "sha512-
|
|
15129
|
+
"version": "2.8.1",
|
|
15130
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
15131
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
14360
15132
|
"license": "0BSD"
|
|
14361
15133
|
},
|
|
14362
15134
|
"node_modules/tunnel-agent": {
|