ucode-agent 1.5.0 → 1.7.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/README.md +399 -327
- package/package.json +6 -1
- package/skills/ui-ux/SKILL.md +2 -2
- package/src/core/doctor.js +122 -0
- package/src/core/livelog.js +113 -0
- package/src/core/loop.js +2105 -1659
- package/src/core/provider.js +93 -10
- package/src/core/stuck.js +269 -0
- package/src/core/tests.js +86 -0
- package/src/tools/blocks.js +117 -0
- package/src/tools/browser.js +121 -59
- package/src/tools/cache.js +105 -0
- package/src/tools/deploy.js +283 -0
- package/src/tools/files.js +91 -8
- package/src/tools/index.js +634 -495
- package/src/tools/rename.js +157 -0
- package/src/tools/scaffold.js +85 -6
- package/src/tools/shell.js +799 -701
- package/src/tools/symbols.js +218 -0
- package/src/tools/types.js +179 -0
- package/src/ui/activity.js +203 -0
- package/src/ui/plain.js +22 -3
- package/src/ui/screen.js +65 -19
- package/src/ui/theme.js +5 -1
- package/templates/blocks/app-shell.tsx +81 -0
- package/templates/blocks/data-table.tsx +117 -0
- package/templates/blocks/empty-state.tsx +41 -0
- package/templates/blocks/page-header.tsx +27 -0
- package/templates/blocks/stat-cards.tsx +46 -0
- package/templates/next-shadcn/TEMPLATE.md +53 -9
- package/templates/next-shadcn/_package-lock.json +1335 -148
- package/templates/next-shadcn/components.json +1 -1
- package/templates/next-shadcn/next.config.ts +2 -1
- package/templates/next-shadcn/package.json +4 -2
- package/templates/next-shadcn/presets/citrus.json +77 -0
- package/templates/next-shadcn/presets/graphite.json +77 -0
- package/templates/next-shadcn/presets/grove.json +77 -0
- package/templates/next-shadcn/presets/ocean.json +78 -0
- package/templates/next-shadcn/presets/sunset.json +77 -0
- package/templates/next-shadcn/presets/violet.json +77 -0
- package/templates/next-shadcn/src/components/ui/accordion.tsx +80 -0
- package/templates/next-shadcn/src/components/ui/alert-dialog.tsx +34 -22
- package/templates/next-shadcn/src/components/ui/avatar.tsx +7 -4
- package/templates/next-shadcn/src/components/ui/badge.tsx +15 -18
- package/templates/next-shadcn/src/components/ui/button.tsx +12 -3
- package/templates/next-shadcn/src/components/ui/calendar.tsx +1 -0
- package/templates/next-shadcn/src/components/ui/checkbox.tsx +6 -2
- package/templates/next-shadcn/src/components/ui/collapsible.tsx +33 -0
- package/templates/next-shadcn/src/components/ui/command.tsx +1 -2
- package/templates/next-shadcn/src/components/ui/dialog.tsx +34 -26
- package/templates/next-shadcn/src/components/ui/dropdown-menu.tsx +115 -114
- package/templates/next-shadcn/src/components/ui/hover-card.tsx +43 -0
- package/templates/next-shadcn/src/components/ui/input-group.tsx +2 -4
- package/templates/next-shadcn/src/components/ui/input.tsx +1 -2
- package/templates/next-shadcn/src/components/ui/label.tsx +6 -2
- package/templates/next-shadcn/src/components/ui/popover.tsx +27 -28
- package/templates/next-shadcn/src/components/ui/progress.tsx +11 -63
- package/templates/next-shadcn/src/components/ui/radio-group.tsx +43 -0
- package/templates/next-shadcn/src/components/ui/scroll-area.tsx +6 -6
- package/templates/next-shadcn/src/components/ui/select.tsx +55 -64
- package/templates/next-shadcn/src/components/ui/separator.tsx +6 -3
- package/templates/next-shadcn/src/components/ui/sheet.tsx +35 -26
- package/templates/next-shadcn/src/components/ui/slider.tsx +58 -0
- package/templates/next-shadcn/src/components/ui/switch.tsx +3 -2
- package/templates/next-shadcn/src/components/ui/table.tsx +115 -0
- package/templates/next-shadcn/src/components/ui/tabs.tsx +16 -8
- package/templates/next-shadcn/src/components/ui/toggle-group.tsx +89 -0
- package/templates/next-shadcn/src/components/ui/toggle.tsx +46 -0
- package/templates/next-shadcn/src/components/ui/tooltip.tsx +24 -33
- package/templates/next-shadcn/src/lib/utils.ts +6 -1
- package/ucode.js +8 -1
|
@@ -8,19 +8,21 @@
|
|
|
8
8
|
"name": "__APP_SLUG__",
|
|
9
9
|
"version": "0.1.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@base-ui/react": "^1.8.0",
|
|
12
11
|
"class-variance-authority": "^0.7.1",
|
|
12
|
+
"clsx": "^2.1.1",
|
|
13
13
|
"cmdk": "^1.1.1",
|
|
14
14
|
"cn": "^0.2.6",
|
|
15
15
|
"date-fns": "^4.4.0",
|
|
16
|
-
"lucide-react": "^1.
|
|
16
|
+
"lucide-react": "^1.45.0",
|
|
17
17
|
"next": "16.3.4",
|
|
18
18
|
"next-themes": "^0.4.6",
|
|
19
|
+
"radix-ui": "^1.6.7",
|
|
19
20
|
"react": "19.2.8",
|
|
20
21
|
"react-day-picker": "^10.0.1",
|
|
21
22
|
"react-dom": "19.2.8",
|
|
22
23
|
"shadcn": "^4.21.0",
|
|
23
24
|
"sonner": "^2.0.8",
|
|
25
|
+
"tailwind-merge": "^3.6.0",
|
|
24
26
|
"tw-animate-css": "^1.4.0"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
@@ -407,15 +409,6 @@
|
|
|
407
409
|
"@babel/core": "^7.0.0-0"
|
|
408
410
|
}
|
|
409
411
|
},
|
|
410
|
-
"node_modules/@babel/runtime": {
|
|
411
|
-
"version": "7.29.7",
|
|
412
|
-
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
413
|
-
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
414
|
-
"license": "MIT",
|
|
415
|
-
"engines": {
|
|
416
|
-
"node": ">=6.9.0"
|
|
417
|
-
}
|
|
418
|
-
},
|
|
419
412
|
"node_modules/@babel/template": {
|
|
420
413
|
"version": "7.29.7",
|
|
421
414
|
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
|
|
@@ -461,66 +454,6 @@
|
|
|
461
454
|
"node": ">=6.9.0"
|
|
462
455
|
}
|
|
463
456
|
},
|
|
464
|
-
"node_modules/@base-ui/react": {
|
|
465
|
-
"version": "1.8.0",
|
|
466
|
-
"resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.8.0.tgz",
|
|
467
|
-
"integrity": "sha512-P0/1sxo6SBVZOklKMIedvTWqw2s2IQzi9x5bIVsXu980cuSOD4NeuRSs+/L7LZQfDkZP/uRZyGPyfFl/B1oH+Q==",
|
|
468
|
-
"license": "MIT",
|
|
469
|
-
"dependencies": {
|
|
470
|
-
"@babel/runtime": "^7.29.7",
|
|
471
|
-
"@base-ui/utils": "0.4.0",
|
|
472
|
-
"@floating-ui/react-dom": "^2.1.9",
|
|
473
|
-
"@floating-ui/utils": "^0.2.12",
|
|
474
|
-
"use-sync-external-store": "^1.6.0"
|
|
475
|
-
},
|
|
476
|
-
"engines": {
|
|
477
|
-
"node": ">=14.0.0"
|
|
478
|
-
},
|
|
479
|
-
"funding": {
|
|
480
|
-
"type": "opencollective",
|
|
481
|
-
"url": "https://opencollective.com/mui-org"
|
|
482
|
-
},
|
|
483
|
-
"peerDependencies": {
|
|
484
|
-
"@date-fns/tz": "^1.2.0",
|
|
485
|
-
"@types/react": "^17 || ^18 || ^19",
|
|
486
|
-
"date-fns": "^4.0.0",
|
|
487
|
-
"react": "^17 || ^18 || ^19",
|
|
488
|
-
"react-dom": "^17 || ^18 || ^19"
|
|
489
|
-
},
|
|
490
|
-
"peerDependenciesMeta": {
|
|
491
|
-
"@date-fns/tz": {
|
|
492
|
-
"optional": true
|
|
493
|
-
},
|
|
494
|
-
"@types/react": {
|
|
495
|
-
"optional": true
|
|
496
|
-
},
|
|
497
|
-
"date-fns": {
|
|
498
|
-
"optional": true
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
},
|
|
502
|
-
"node_modules/@base-ui/utils": {
|
|
503
|
-
"version": "0.4.0",
|
|
504
|
-
"resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.4.0.tgz",
|
|
505
|
-
"integrity": "sha512-bO9fz25kKtPf+aZVyfQrC0PDmJdmVni31W2hCS5/Owb+inwdIL3XU26pCPRPlt4LSxZrBgLwubXQXQlKaFEZzw==",
|
|
506
|
-
"license": "MIT",
|
|
507
|
-
"dependencies": {
|
|
508
|
-
"@babel/runtime": "^7.29.7",
|
|
509
|
-
"@floating-ui/utils": "^0.2.12",
|
|
510
|
-
"reselect": "^5.2.0",
|
|
511
|
-
"use-sync-external-store": "^1.6.0"
|
|
512
|
-
},
|
|
513
|
-
"peerDependencies": {
|
|
514
|
-
"@types/react": "^17 || ^18 || ^19",
|
|
515
|
-
"react": "^17 || ^18 || ^19",
|
|
516
|
-
"react-dom": "^17 || ^18 || ^19"
|
|
517
|
-
},
|
|
518
|
-
"peerDependenciesMeta": {
|
|
519
|
-
"@types/react": {
|
|
520
|
-
"optional": true
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
},
|
|
524
457
|
"node_modules/@date-fns/tz": {
|
|
525
458
|
"version": "1.5.0",
|
|
526
459
|
"resolved": "https://registry.npmjs.org/@date-fns/tz/-/tz-1.5.0.tgz",
|
|
@@ -1906,12 +1839,258 @@
|
|
|
1906
1839
|
"node": ">=12.4.0"
|
|
1907
1840
|
}
|
|
1908
1841
|
},
|
|
1842
|
+
"node_modules/@radix-ui/number": {
|
|
1843
|
+
"version": "1.1.3",
|
|
1844
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.3.tgz",
|
|
1845
|
+
"integrity": "sha512-Road2bidD0uu/1BGDOWNdPI06g0lIRy6IF9GZcIrDK2KGItfor8IQwQa+yM2ERgHM1MmHxaxpTzk0/Jp42lNfA==",
|
|
1846
|
+
"license": "MIT"
|
|
1847
|
+
},
|
|
1909
1848
|
"node_modules/@radix-ui/primitive": {
|
|
1910
1849
|
"version": "1.1.7",
|
|
1911
1850
|
"resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.7.tgz",
|
|
1912
1851
|
"integrity": "sha512-rqWnm76nYT8HoNNqEjpgJ7Pw/DrBj5iBTrmEPo6HTX5+VJyBNOqTdv4g89G63HuR5g0AaENoAcH7Is5fF2kZ8Q==",
|
|
1913
1852
|
"license": "MIT"
|
|
1914
1853
|
},
|
|
1854
|
+
"node_modules/@radix-ui/react-accessible-icon": {
|
|
1855
|
+
"version": "1.1.15",
|
|
1856
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-accessible-icon/-/react-accessible-icon-1.1.15.tgz",
|
|
1857
|
+
"integrity": "sha512-WTQwcAvQf5sOcuUyi90lKPbhwcvQ+j55cjrSmeaN+L2vKU3DooOvlKw2MDeiJ5IkV5N905KW0/fGojKOBhD11A==",
|
|
1858
|
+
"license": "MIT",
|
|
1859
|
+
"dependencies": {
|
|
1860
|
+
"@radix-ui/react-visually-hidden": "1.2.11"
|
|
1861
|
+
},
|
|
1862
|
+
"peerDependencies": {
|
|
1863
|
+
"@types/react": "*",
|
|
1864
|
+
"@types/react-dom": "*",
|
|
1865
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1866
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1867
|
+
},
|
|
1868
|
+
"peerDependenciesMeta": {
|
|
1869
|
+
"@types/react": {
|
|
1870
|
+
"optional": true
|
|
1871
|
+
},
|
|
1872
|
+
"@types/react-dom": {
|
|
1873
|
+
"optional": true
|
|
1874
|
+
}
|
|
1875
|
+
}
|
|
1876
|
+
},
|
|
1877
|
+
"node_modules/@radix-ui/react-accordion": {
|
|
1878
|
+
"version": "1.2.20",
|
|
1879
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.20.tgz",
|
|
1880
|
+
"integrity": "sha512-jDhG9FvAEnlhnjrsINbNXcUa4G+L1KqSkJSunkbKEzFRcAb52jvM0PjPxPRvhe1HNc5F5yc0yzzWeeqlH4yBIg==",
|
|
1881
|
+
"license": "MIT",
|
|
1882
|
+
"dependencies": {
|
|
1883
|
+
"@radix-ui/primitive": "1.1.7",
|
|
1884
|
+
"@radix-ui/react-collapsible": "1.1.20",
|
|
1885
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
1886
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
1887
|
+
"@radix-ui/react-context": "1.2.2",
|
|
1888
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
1889
|
+
"@radix-ui/react-id": "1.1.4",
|
|
1890
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
1891
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
1892
|
+
},
|
|
1893
|
+
"peerDependencies": {
|
|
1894
|
+
"@types/react": "*",
|
|
1895
|
+
"@types/react-dom": "*",
|
|
1896
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1897
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1898
|
+
},
|
|
1899
|
+
"peerDependenciesMeta": {
|
|
1900
|
+
"@types/react": {
|
|
1901
|
+
"optional": true
|
|
1902
|
+
},
|
|
1903
|
+
"@types/react-dom": {
|
|
1904
|
+
"optional": true
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
},
|
|
1908
|
+
"node_modules/@radix-ui/react-alert-dialog": {
|
|
1909
|
+
"version": "1.1.23",
|
|
1910
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.23.tgz",
|
|
1911
|
+
"integrity": "sha512-VAYOiQRqj3GPpYJE0I9J+X8Ip05cyVlNdKOFeiGS2Ou1HHGfpl0BxOyZm6nmVDyU+W+NF3/XLzmjHmVGydhwgA==",
|
|
1912
|
+
"license": "MIT",
|
|
1913
|
+
"dependencies": {
|
|
1914
|
+
"@radix-ui/primitive": "1.1.7",
|
|
1915
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
1916
|
+
"@radix-ui/react-context": "1.2.2",
|
|
1917
|
+
"@radix-ui/react-dialog": "1.1.23",
|
|
1918
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
1919
|
+
},
|
|
1920
|
+
"peerDependencies": {
|
|
1921
|
+
"@types/react": "*",
|
|
1922
|
+
"@types/react-dom": "*",
|
|
1923
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1924
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1925
|
+
},
|
|
1926
|
+
"peerDependenciesMeta": {
|
|
1927
|
+
"@types/react": {
|
|
1928
|
+
"optional": true
|
|
1929
|
+
},
|
|
1930
|
+
"@types/react-dom": {
|
|
1931
|
+
"optional": true
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1934
|
+
},
|
|
1935
|
+
"node_modules/@radix-ui/react-arrow": {
|
|
1936
|
+
"version": "1.1.15",
|
|
1937
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.15.tgz",
|
|
1938
|
+
"integrity": "sha512-v4zggRcjadnI+ClKDuijlQEW4tw3NoaeHc/PwpKnLoLLKNUG4InLegkstooLcRIUWCs+8L22dGURCVuFfOKfnA==",
|
|
1939
|
+
"license": "MIT",
|
|
1940
|
+
"dependencies": {
|
|
1941
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
1942
|
+
},
|
|
1943
|
+
"peerDependencies": {
|
|
1944
|
+
"@types/react": "*",
|
|
1945
|
+
"@types/react-dom": "*",
|
|
1946
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1947
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1948
|
+
},
|
|
1949
|
+
"peerDependenciesMeta": {
|
|
1950
|
+
"@types/react": {
|
|
1951
|
+
"optional": true
|
|
1952
|
+
},
|
|
1953
|
+
"@types/react-dom": {
|
|
1954
|
+
"optional": true
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
"node_modules/@radix-ui/react-aspect-ratio": {
|
|
1959
|
+
"version": "1.1.15",
|
|
1960
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-aspect-ratio/-/react-aspect-ratio-1.1.15.tgz",
|
|
1961
|
+
"integrity": "sha512-fy+dyVR+90nelK8rqIznFlxzx7uPcGbhxH8Nfr2bHb4UfSe+e3hklOC0luK0hDwVwnRX7xTRySpsrQVeW+/oNQ==",
|
|
1962
|
+
"license": "MIT",
|
|
1963
|
+
"dependencies": {
|
|
1964
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
1965
|
+
},
|
|
1966
|
+
"peerDependencies": {
|
|
1967
|
+
"@types/react": "*",
|
|
1968
|
+
"@types/react-dom": "*",
|
|
1969
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1970
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1971
|
+
},
|
|
1972
|
+
"peerDependenciesMeta": {
|
|
1973
|
+
"@types/react": {
|
|
1974
|
+
"optional": true
|
|
1975
|
+
},
|
|
1976
|
+
"@types/react-dom": {
|
|
1977
|
+
"optional": true
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
},
|
|
1981
|
+
"node_modules/@radix-ui/react-avatar": {
|
|
1982
|
+
"version": "1.2.6",
|
|
1983
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.2.6.tgz",
|
|
1984
|
+
"integrity": "sha512-4ULOTJ/mqy2hT9GlWa/MFHxHSvH3nJzHnZM1waNsc5Bonv7i70aNenghXmD97S6OJ81ekXONGGt4nT1r0PfEdA==",
|
|
1985
|
+
"license": "MIT",
|
|
1986
|
+
"dependencies": {
|
|
1987
|
+
"@radix-ui/primitive": "1.1.7",
|
|
1988
|
+
"@radix-ui/react-context": "1.2.2",
|
|
1989
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
1990
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
1991
|
+
"@radix-ui/react-use-is-hydrated": "0.1.3",
|
|
1992
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
1993
|
+
},
|
|
1994
|
+
"peerDependencies": {
|
|
1995
|
+
"@types/react": "*",
|
|
1996
|
+
"@types/react-dom": "*",
|
|
1997
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
1998
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
1999
|
+
},
|
|
2000
|
+
"peerDependenciesMeta": {
|
|
2001
|
+
"@types/react": {
|
|
2002
|
+
"optional": true
|
|
2003
|
+
},
|
|
2004
|
+
"@types/react-dom": {
|
|
2005
|
+
"optional": true
|
|
2006
|
+
}
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
"node_modules/@radix-ui/react-checkbox": {
|
|
2010
|
+
"version": "1.3.11",
|
|
2011
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.3.11.tgz",
|
|
2012
|
+
"integrity": "sha512-Gnptr9pDDQxD3hgq2dtPbtrp/c2qH1mBwIzw3X/ivrMb2e1t0jMTi606fVEqFPaQR1ggXIVQWKj3P2WW9v7zGQ==",
|
|
2013
|
+
"license": "MIT",
|
|
2014
|
+
"dependencies": {
|
|
2015
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2016
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2017
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2018
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2019
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2020
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2021
|
+
"@radix-ui/react-use-size": "1.1.4"
|
|
2022
|
+
},
|
|
2023
|
+
"peerDependencies": {
|
|
2024
|
+
"@types/react": "*",
|
|
2025
|
+
"@types/react-dom": "*",
|
|
2026
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2027
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2028
|
+
},
|
|
2029
|
+
"peerDependenciesMeta": {
|
|
2030
|
+
"@types/react": {
|
|
2031
|
+
"optional": true
|
|
2032
|
+
},
|
|
2033
|
+
"@types/react-dom": {
|
|
2034
|
+
"optional": true
|
|
2035
|
+
}
|
|
2036
|
+
}
|
|
2037
|
+
},
|
|
2038
|
+
"node_modules/@radix-ui/react-collapsible": {
|
|
2039
|
+
"version": "1.1.20",
|
|
2040
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.20.tgz",
|
|
2041
|
+
"integrity": "sha512-mcGesGplBnzN2sbvJETzpCNfSMyPnb29q1GRLU+Ib7bJrpIG2ywmRoh2V5VbA2uNvKikKUlVbAPks7JDjz4A8Q==",
|
|
2042
|
+
"license": "MIT",
|
|
2043
|
+
"dependencies": {
|
|
2044
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2045
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2046
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2047
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2048
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2049
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2050
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2051
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2052
|
+
},
|
|
2053
|
+
"peerDependencies": {
|
|
2054
|
+
"@types/react": "*",
|
|
2055
|
+
"@types/react-dom": "*",
|
|
2056
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2057
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2058
|
+
},
|
|
2059
|
+
"peerDependenciesMeta": {
|
|
2060
|
+
"@types/react": {
|
|
2061
|
+
"optional": true
|
|
2062
|
+
},
|
|
2063
|
+
"@types/react-dom": {
|
|
2064
|
+
"optional": true
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
},
|
|
2068
|
+
"node_modules/@radix-ui/react-collection": {
|
|
2069
|
+
"version": "1.1.15",
|
|
2070
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.15.tgz",
|
|
2071
|
+
"integrity": "sha512-9W+B9NPF0NaaPh/1NJd3+KqsnlLqU9H7T2rvww+fp+T/evVXdNAyYcnfRQZFOjkR1ajQp3yORlqnI8soawLvNA==",
|
|
2072
|
+
"license": "MIT",
|
|
2073
|
+
"dependencies": {
|
|
2074
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2075
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2076
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2077
|
+
"@radix-ui/react-slot": "1.3.3"
|
|
2078
|
+
},
|
|
2079
|
+
"peerDependencies": {
|
|
2080
|
+
"@types/react": "*",
|
|
2081
|
+
"@types/react-dom": "*",
|
|
2082
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2083
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2084
|
+
},
|
|
2085
|
+
"peerDependenciesMeta": {
|
|
2086
|
+
"@types/react": {
|
|
2087
|
+
"optional": true
|
|
2088
|
+
},
|
|
2089
|
+
"@types/react-dom": {
|
|
2090
|
+
"optional": true
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
},
|
|
1915
2094
|
"node_modules/@radix-ui/react-compose-refs": {
|
|
1916
2095
|
"version": "1.1.5",
|
|
1917
2096
|
"resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.5.tgz",
|
|
@@ -1942,25 +2121,737 @@
|
|
|
1942
2121
|
}
|
|
1943
2122
|
}
|
|
1944
2123
|
},
|
|
1945
|
-
"node_modules/@radix-ui/react-
|
|
1946
|
-
"version": "
|
|
1947
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
1948
|
-
"integrity": "sha512-
|
|
2124
|
+
"node_modules/@radix-ui/react-context-menu": {
|
|
2125
|
+
"version": "2.3.7",
|
|
2126
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-context-menu/-/react-context-menu-2.3.7.tgz",
|
|
2127
|
+
"integrity": "sha512-CtXP35dxaB5T3zXSd+E3uHe/QpXcpYnZmxp6OaIbfthtfW4wyb77M23BG+bwIJDtsMwEP/YssdsmNyZu7jhWew==",
|
|
1949
2128
|
"license": "MIT",
|
|
1950
2129
|
"dependencies": {
|
|
1951
2130
|
"@radix-ui/primitive": "1.1.7",
|
|
1952
|
-
"@radix-ui/react-compose-refs": "1.1.5",
|
|
1953
2131
|
"@radix-ui/react-context": "1.2.2",
|
|
1954
|
-
"@radix-ui/react-
|
|
1955
|
-
"@radix-ui/react-focus-guards": "1.1.6",
|
|
1956
|
-
"@radix-ui/react-focus-scope": "1.1.16",
|
|
1957
|
-
"@radix-ui/react-id": "1.1.4",
|
|
1958
|
-
"@radix-ui/react-portal": "1.1.17",
|
|
1959
|
-
"@radix-ui/react-presence": "1.1.10",
|
|
2132
|
+
"@radix-ui/react-menu": "2.1.24",
|
|
1960
2133
|
"@radix-ui/react-primitive": "2.1.10",
|
|
1961
|
-
"@radix-ui/react-
|
|
1962
|
-
|
|
1963
|
-
|
|
2134
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2135
|
+
},
|
|
2136
|
+
"peerDependencies": {
|
|
2137
|
+
"@types/react": "*",
|
|
2138
|
+
"@types/react-dom": "*",
|
|
2139
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2140
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2141
|
+
},
|
|
2142
|
+
"peerDependenciesMeta": {
|
|
2143
|
+
"@types/react": {
|
|
2144
|
+
"optional": true
|
|
2145
|
+
},
|
|
2146
|
+
"@types/react-dom": {
|
|
2147
|
+
"optional": true
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
2151
|
+
"node_modules/@radix-ui/react-dialog": {
|
|
2152
|
+
"version": "1.1.23",
|
|
2153
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.23.tgz",
|
|
2154
|
+
"integrity": "sha512-Ksw4WeROkO4rC9k/onilX/Ao2Cr1ku1unMNH+XSCcP4jSXYu7HDsg9n4ojMjVb22XpYjAQ9qfrFlVbru1vXDUA==",
|
|
2155
|
+
"license": "MIT",
|
|
2156
|
+
"dependencies": {
|
|
2157
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2158
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2159
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2160
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
2161
|
+
"@radix-ui/react-focus-guards": "1.1.6",
|
|
2162
|
+
"@radix-ui/react-focus-scope": "1.1.16",
|
|
2163
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2164
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
2165
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2166
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2167
|
+
"@radix-ui/react-slot": "1.3.3",
|
|
2168
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2169
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
2170
|
+
"aria-hidden": "^1.2.4",
|
|
2171
|
+
"react-remove-scroll": "^2.7.2"
|
|
2172
|
+
},
|
|
2173
|
+
"peerDependencies": {
|
|
2174
|
+
"@types/react": "*",
|
|
2175
|
+
"@types/react-dom": "*",
|
|
2176
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2177
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2178
|
+
},
|
|
2179
|
+
"peerDependenciesMeta": {
|
|
2180
|
+
"@types/react": {
|
|
2181
|
+
"optional": true
|
|
2182
|
+
},
|
|
2183
|
+
"@types/react-dom": {
|
|
2184
|
+
"optional": true
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
},
|
|
2188
|
+
"node_modules/@radix-ui/react-direction": {
|
|
2189
|
+
"version": "1.1.4",
|
|
2190
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.4.tgz",
|
|
2191
|
+
"integrity": "sha512-5pzg4FGQNpExhnhT2zlrP1wZFaYCd1K0nYWoFAdcYoYK868IEigqMX3B3f8yIoRlAhAeDWciLI6ZdCKHF9P4Vg==",
|
|
2192
|
+
"license": "MIT",
|
|
2193
|
+
"peerDependencies": {
|
|
2194
|
+
"@types/react": "*",
|
|
2195
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2196
|
+
},
|
|
2197
|
+
"peerDependenciesMeta": {
|
|
2198
|
+
"@types/react": {
|
|
2199
|
+
"optional": true
|
|
2200
|
+
}
|
|
2201
|
+
}
|
|
2202
|
+
},
|
|
2203
|
+
"node_modules/@radix-ui/react-dismissable-layer": {
|
|
2204
|
+
"version": "1.1.19",
|
|
2205
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.19.tgz",
|
|
2206
|
+
"integrity": "sha512-8g4pfOL9HoKKLWGiypT+dphVqjFfmcXO5GBnhsG6zI+lxAx/8feQpr+1LSN8Re3hiZ+XkLNS4O9ztK11/LzQ6w==",
|
|
2207
|
+
"license": "MIT",
|
|
2208
|
+
"dependencies": {
|
|
2209
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2210
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2211
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2212
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2213
|
+
"@radix-ui/react-use-effect-event": "0.0.5"
|
|
2214
|
+
},
|
|
2215
|
+
"peerDependencies": {
|
|
2216
|
+
"@types/react": "*",
|
|
2217
|
+
"@types/react-dom": "*",
|
|
2218
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2219
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2220
|
+
},
|
|
2221
|
+
"peerDependenciesMeta": {
|
|
2222
|
+
"@types/react": {
|
|
2223
|
+
"optional": true
|
|
2224
|
+
},
|
|
2225
|
+
"@types/react-dom": {
|
|
2226
|
+
"optional": true
|
|
2227
|
+
}
|
|
2228
|
+
}
|
|
2229
|
+
},
|
|
2230
|
+
"node_modules/@radix-ui/react-dropdown-menu": {
|
|
2231
|
+
"version": "2.1.24",
|
|
2232
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.24.tgz",
|
|
2233
|
+
"integrity": "sha512-geq8l2rJkxvkXsT9RMgtUE3P8pITFpTsvYpbySi1IH4fZEABD/Gp85myayFgxk0ktljGMJnCbeFkyTusvSvv7g==",
|
|
2234
|
+
"license": "MIT",
|
|
2235
|
+
"dependencies": {
|
|
2236
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2237
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2238
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2239
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2240
|
+
"@radix-ui/react-menu": "2.1.24",
|
|
2241
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2242
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2243
|
+
},
|
|
2244
|
+
"peerDependencies": {
|
|
2245
|
+
"@types/react": "*",
|
|
2246
|
+
"@types/react-dom": "*",
|
|
2247
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2248
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2249
|
+
},
|
|
2250
|
+
"peerDependenciesMeta": {
|
|
2251
|
+
"@types/react": {
|
|
2252
|
+
"optional": true
|
|
2253
|
+
},
|
|
2254
|
+
"@types/react-dom": {
|
|
2255
|
+
"optional": true
|
|
2256
|
+
}
|
|
2257
|
+
}
|
|
2258
|
+
},
|
|
2259
|
+
"node_modules/@radix-ui/react-focus-guards": {
|
|
2260
|
+
"version": "1.1.6",
|
|
2261
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.6.tgz",
|
|
2262
|
+
"integrity": "sha512-RNOJjfZMTyBM6xYmV3IVGXkPjIhcBAuv48POevAXwrGJhkWZ9p1rFoIS1JFooPuT193AZmRsCPhpoVJxx6OPoQ==",
|
|
2263
|
+
"license": "MIT",
|
|
2264
|
+
"peerDependencies": {
|
|
2265
|
+
"@types/react": "*",
|
|
2266
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2267
|
+
},
|
|
2268
|
+
"peerDependenciesMeta": {
|
|
2269
|
+
"@types/react": {
|
|
2270
|
+
"optional": true
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
},
|
|
2274
|
+
"node_modules/@radix-ui/react-focus-scope": {
|
|
2275
|
+
"version": "1.1.16",
|
|
2276
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.16.tgz",
|
|
2277
|
+
"integrity": "sha512-wmRZ2WWLvmt6KHy2rNPOdPUjwq5xOHY02+m+udwJTn0aNIox/rkskAvJTyTLGhPK6KgrUjlJUJpgmx/+wFiFIQ==",
|
|
2278
|
+
"license": "MIT",
|
|
2279
|
+
"dependencies": {
|
|
2280
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2281
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2282
|
+
"@radix-ui/react-use-callback-ref": "1.1.4"
|
|
2283
|
+
},
|
|
2284
|
+
"peerDependencies": {
|
|
2285
|
+
"@types/react": "*",
|
|
2286
|
+
"@types/react-dom": "*",
|
|
2287
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2288
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2289
|
+
},
|
|
2290
|
+
"peerDependenciesMeta": {
|
|
2291
|
+
"@types/react": {
|
|
2292
|
+
"optional": true
|
|
2293
|
+
},
|
|
2294
|
+
"@types/react-dom": {
|
|
2295
|
+
"optional": true
|
|
2296
|
+
}
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2299
|
+
"node_modules/@radix-ui/react-form": {
|
|
2300
|
+
"version": "0.1.16",
|
|
2301
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-form/-/react-form-0.1.16.tgz",
|
|
2302
|
+
"integrity": "sha512-Q4TLEn2A7TAypxwmd6R9EwrlXDvkfYSDMrq9/887AXAGh+G1rH+kYJKSTv+Si9Y0JPKTwKYv6PviAJosysNimA==",
|
|
2303
|
+
"license": "MIT",
|
|
2304
|
+
"dependencies": {
|
|
2305
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2306
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2307
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2308
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2309
|
+
"@radix-ui/react-label": "2.1.15",
|
|
2310
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
2311
|
+
},
|
|
2312
|
+
"peerDependencies": {
|
|
2313
|
+
"@types/react": "*",
|
|
2314
|
+
"@types/react-dom": "*",
|
|
2315
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2316
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2317
|
+
},
|
|
2318
|
+
"peerDependenciesMeta": {
|
|
2319
|
+
"@types/react": {
|
|
2320
|
+
"optional": true
|
|
2321
|
+
},
|
|
2322
|
+
"@types/react-dom": {
|
|
2323
|
+
"optional": true
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
},
|
|
2327
|
+
"node_modules/@radix-ui/react-hover-card": {
|
|
2328
|
+
"version": "1.1.23",
|
|
2329
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-hover-card/-/react-hover-card-1.1.23.tgz",
|
|
2330
|
+
"integrity": "sha512-H8qONfZd3ltrU3+jHCIgITbWo6e1iTKvP9DHdrvYbX48ooRM5FjEDTn16AMwdfuOGkWdZEhpl3PLL/Wk/AnHDQ==",
|
|
2331
|
+
"license": "MIT",
|
|
2332
|
+
"dependencies": {
|
|
2333
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2334
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2335
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2336
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
2337
|
+
"@radix-ui/react-popper": "1.3.7",
|
|
2338
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
2339
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2340
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2341
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2342
|
+
},
|
|
2343
|
+
"peerDependencies": {
|
|
2344
|
+
"@types/react": "*",
|
|
2345
|
+
"@types/react-dom": "*",
|
|
2346
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2347
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2348
|
+
},
|
|
2349
|
+
"peerDependenciesMeta": {
|
|
2350
|
+
"@types/react": {
|
|
2351
|
+
"optional": true
|
|
2352
|
+
},
|
|
2353
|
+
"@types/react-dom": {
|
|
2354
|
+
"optional": true
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2357
|
+
},
|
|
2358
|
+
"node_modules/@radix-ui/react-id": {
|
|
2359
|
+
"version": "1.1.4",
|
|
2360
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.4.tgz",
|
|
2361
|
+
"integrity": "sha512-TMQp2llA+RYn7JcjnrMnz7wN4pcVttPZnRZo52PLQsoLVKzNlVwUeHmfePgTgRluXFvlD3GD5g5MOVVTJCO0qA==",
|
|
2362
|
+
"license": "MIT",
|
|
2363
|
+
"dependencies": {
|
|
2364
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2365
|
+
},
|
|
2366
|
+
"peerDependencies": {
|
|
2367
|
+
"@types/react": "*",
|
|
2368
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2369
|
+
},
|
|
2370
|
+
"peerDependenciesMeta": {
|
|
2371
|
+
"@types/react": {
|
|
2372
|
+
"optional": true
|
|
2373
|
+
}
|
|
2374
|
+
}
|
|
2375
|
+
},
|
|
2376
|
+
"node_modules/@radix-ui/react-label": {
|
|
2377
|
+
"version": "2.1.15",
|
|
2378
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.15.tgz",
|
|
2379
|
+
"integrity": "sha512-o/rdYEwZTTo5tjknnPeyQFU45kUC4i/XyeDPP+HGyi6XqpOP6Zf5Ya5vh/Yfe9Id5JiuWnnAx2XqIeD3UYZt0g==",
|
|
2380
|
+
"license": "MIT",
|
|
2381
|
+
"dependencies": {
|
|
2382
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
2383
|
+
},
|
|
2384
|
+
"peerDependencies": {
|
|
2385
|
+
"@types/react": "*",
|
|
2386
|
+
"@types/react-dom": "*",
|
|
2387
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2388
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2389
|
+
},
|
|
2390
|
+
"peerDependenciesMeta": {
|
|
2391
|
+
"@types/react": {
|
|
2392
|
+
"optional": true
|
|
2393
|
+
},
|
|
2394
|
+
"@types/react-dom": {
|
|
2395
|
+
"optional": true
|
|
2396
|
+
}
|
|
2397
|
+
}
|
|
2398
|
+
},
|
|
2399
|
+
"node_modules/@radix-ui/react-menu": {
|
|
2400
|
+
"version": "2.1.24",
|
|
2401
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.24.tgz",
|
|
2402
|
+
"integrity": "sha512-uW7RVuU6Lp/ZtfeY4b3kL32zccgEWvPv1+cf17ubYzHa9cL8AHokmk36cG/XEiH/smbQvumnieXX9j/e9RqJWA==",
|
|
2403
|
+
"license": "MIT",
|
|
2404
|
+
"dependencies": {
|
|
2405
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2406
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
2407
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2408
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2409
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2410
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
2411
|
+
"@radix-ui/react-focus-guards": "1.1.6",
|
|
2412
|
+
"@radix-ui/react-focus-scope": "1.1.16",
|
|
2413
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2414
|
+
"@radix-ui/react-popper": "1.3.7",
|
|
2415
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
2416
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2417
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2418
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
2419
|
+
"@radix-ui/react-slot": "1.3.3",
|
|
2420
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2421
|
+
"aria-hidden": "^1.2.4",
|
|
2422
|
+
"react-remove-scroll": "^2.7.2"
|
|
2423
|
+
},
|
|
2424
|
+
"peerDependencies": {
|
|
2425
|
+
"@types/react": "*",
|
|
2426
|
+
"@types/react-dom": "*",
|
|
2427
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2428
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2429
|
+
},
|
|
2430
|
+
"peerDependenciesMeta": {
|
|
2431
|
+
"@types/react": {
|
|
2432
|
+
"optional": true
|
|
2433
|
+
},
|
|
2434
|
+
"@types/react-dom": {
|
|
2435
|
+
"optional": true
|
|
2436
|
+
}
|
|
2437
|
+
}
|
|
2438
|
+
},
|
|
2439
|
+
"node_modules/@radix-ui/react-menubar": {
|
|
2440
|
+
"version": "1.1.24",
|
|
2441
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-menubar/-/react-menubar-1.1.24.tgz",
|
|
2442
|
+
"integrity": "sha512-eeVs0vf7cuqXaM0qLQCPcufImiJNVBXdJDLu7ZGYl2732UH23Qat/foNGrr6vYV3/DdTsBqASoggUFgH14OcZA==",
|
|
2443
|
+
"license": "MIT",
|
|
2444
|
+
"dependencies": {
|
|
2445
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2446
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
2447
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2448
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2449
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2450
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2451
|
+
"@radix-ui/react-menu": "2.1.24",
|
|
2452
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2453
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
2454
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2455
|
+
},
|
|
2456
|
+
"peerDependencies": {
|
|
2457
|
+
"@types/react": "*",
|
|
2458
|
+
"@types/react-dom": "*",
|
|
2459
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2460
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2461
|
+
},
|
|
2462
|
+
"peerDependenciesMeta": {
|
|
2463
|
+
"@types/react": {
|
|
2464
|
+
"optional": true
|
|
2465
|
+
},
|
|
2466
|
+
"@types/react-dom": {
|
|
2467
|
+
"optional": true
|
|
2468
|
+
}
|
|
2469
|
+
}
|
|
2470
|
+
},
|
|
2471
|
+
"node_modules/@radix-ui/react-navigation-menu": {
|
|
2472
|
+
"version": "1.2.22",
|
|
2473
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.22.tgz",
|
|
2474
|
+
"integrity": "sha512-ou7iLEJ+yrhQndkkA4U21XIdS/CS45F4iXIkTZcb6/Ne9EMsOuDudVmCwmDnfFZZ+y1FZqXRNSIgBy+YMvZVZg==",
|
|
2475
|
+
"license": "MIT",
|
|
2476
|
+
"dependencies": {
|
|
2477
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2478
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
2479
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2480
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2481
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2482
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
2483
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2484
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2485
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2486
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2487
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2488
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
2489
|
+
"@radix-ui/react-use-previous": "1.1.4",
|
|
2490
|
+
"@radix-ui/react-visually-hidden": "1.2.11"
|
|
2491
|
+
},
|
|
2492
|
+
"peerDependencies": {
|
|
2493
|
+
"@types/react": "*",
|
|
2494
|
+
"@types/react-dom": "*",
|
|
2495
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2496
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2497
|
+
},
|
|
2498
|
+
"peerDependenciesMeta": {
|
|
2499
|
+
"@types/react": {
|
|
2500
|
+
"optional": true
|
|
2501
|
+
},
|
|
2502
|
+
"@types/react-dom": {
|
|
2503
|
+
"optional": true
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
},
|
|
2507
|
+
"node_modules/@radix-ui/react-one-time-password-field": {
|
|
2508
|
+
"version": "0.1.16",
|
|
2509
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-one-time-password-field/-/react-one-time-password-field-0.1.16.tgz",
|
|
2510
|
+
"integrity": "sha512-Tj9P6ntAJEw52oq/F0AGknXR4XncxEt7XU47O3xJQOiWfLzEy3d9gtgKfvjSzGxzHkfL+VzvxGu2KTFsloJqXw==",
|
|
2511
|
+
"license": "MIT",
|
|
2512
|
+
"dependencies": {
|
|
2513
|
+
"@radix-ui/number": "1.1.3",
|
|
2514
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2515
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
2516
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2517
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2518
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2519
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2520
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
2521
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2522
|
+
"@radix-ui/react-use-effect-event": "0.0.5",
|
|
2523
|
+
"@radix-ui/react-use-is-hydrated": "0.1.3",
|
|
2524
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2525
|
+
},
|
|
2526
|
+
"peerDependencies": {
|
|
2527
|
+
"@types/react": "*",
|
|
2528
|
+
"@types/react-dom": "*",
|
|
2529
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2530
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2531
|
+
},
|
|
2532
|
+
"peerDependenciesMeta": {
|
|
2533
|
+
"@types/react": {
|
|
2534
|
+
"optional": true
|
|
2535
|
+
},
|
|
2536
|
+
"@types/react-dom": {
|
|
2537
|
+
"optional": true
|
|
2538
|
+
}
|
|
2539
|
+
}
|
|
2540
|
+
},
|
|
2541
|
+
"node_modules/@radix-ui/react-password-toggle-field": {
|
|
2542
|
+
"version": "0.1.11",
|
|
2543
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-password-toggle-field/-/react-password-toggle-field-0.1.11.tgz",
|
|
2544
|
+
"integrity": "sha512-4gvFnmDXu3dgj21CqsufzIameRvlRd4SBqaWhcrlrNhRo0Y5i/49AmRJYe1fdAM3G2VNBbmin4b0D6cdQocwgw==",
|
|
2545
|
+
"license": "MIT",
|
|
2546
|
+
"dependencies": {
|
|
2547
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2548
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2549
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2550
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2551
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2552
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2553
|
+
"@radix-ui/react-use-effect-event": "0.0.5",
|
|
2554
|
+
"@radix-ui/react-use-is-hydrated": "0.1.3"
|
|
2555
|
+
},
|
|
2556
|
+
"peerDependencies": {
|
|
2557
|
+
"@types/react": "*",
|
|
2558
|
+
"@types/react-dom": "*",
|
|
2559
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2560
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2561
|
+
},
|
|
2562
|
+
"peerDependenciesMeta": {
|
|
2563
|
+
"@types/react": {
|
|
2564
|
+
"optional": true
|
|
2565
|
+
},
|
|
2566
|
+
"@types/react-dom": {
|
|
2567
|
+
"optional": true
|
|
2568
|
+
}
|
|
2569
|
+
}
|
|
2570
|
+
},
|
|
2571
|
+
"node_modules/@radix-ui/react-popover": {
|
|
2572
|
+
"version": "1.1.23",
|
|
2573
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.23.tgz",
|
|
2574
|
+
"integrity": "sha512-mw58MrBlyHWFisTOYignD0vf/3gdcgAR+9of1s9G/38CbFiUwH1nCDkc0AUM9IrXFgN5Ue8n45j9WCgyM1sbiQ==",
|
|
2575
|
+
"license": "MIT",
|
|
2576
|
+
"dependencies": {
|
|
2577
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2578
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2579
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2580
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
2581
|
+
"@radix-ui/react-focus-guards": "1.1.6",
|
|
2582
|
+
"@radix-ui/react-focus-scope": "1.1.16",
|
|
2583
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2584
|
+
"@radix-ui/react-popper": "1.3.7",
|
|
2585
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
2586
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2587
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2588
|
+
"@radix-ui/react-slot": "1.3.3",
|
|
2589
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2590
|
+
"aria-hidden": "^1.2.4",
|
|
2591
|
+
"react-remove-scroll": "^2.7.2"
|
|
2592
|
+
},
|
|
2593
|
+
"peerDependencies": {
|
|
2594
|
+
"@types/react": "*",
|
|
2595
|
+
"@types/react-dom": "*",
|
|
2596
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2597
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2598
|
+
},
|
|
2599
|
+
"peerDependenciesMeta": {
|
|
2600
|
+
"@types/react": {
|
|
2601
|
+
"optional": true
|
|
2602
|
+
},
|
|
2603
|
+
"@types/react-dom": {
|
|
2604
|
+
"optional": true
|
|
2605
|
+
}
|
|
2606
|
+
}
|
|
2607
|
+
},
|
|
2608
|
+
"node_modules/@radix-ui/react-popper": {
|
|
2609
|
+
"version": "1.3.7",
|
|
2610
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.3.7.tgz",
|
|
2611
|
+
"integrity": "sha512-UsJrrd7w4wuKKTdvd/DNERVlwSlUcyXzjhyDwBk+3aPOsCjOY6ZSbxuw8E6lZTjjfP8Cpd0J8VVkrYUWyGYXyg==",
|
|
2612
|
+
"license": "MIT",
|
|
2613
|
+
"dependencies": {
|
|
2614
|
+
"@floating-ui/react-dom": "^2.0.0",
|
|
2615
|
+
"@radix-ui/react-arrow": "1.1.15",
|
|
2616
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2617
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2618
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2619
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2620
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
2621
|
+
"@radix-ui/react-use-rect": "1.1.4",
|
|
2622
|
+
"@radix-ui/react-use-size": "1.1.4",
|
|
2623
|
+
"@radix-ui/rect": "1.1.3"
|
|
2624
|
+
},
|
|
2625
|
+
"peerDependencies": {
|
|
2626
|
+
"@types/react": "*",
|
|
2627
|
+
"@types/react-dom": "*",
|
|
2628
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2629
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2630
|
+
},
|
|
2631
|
+
"peerDependenciesMeta": {
|
|
2632
|
+
"@types/react": {
|
|
2633
|
+
"optional": true
|
|
2634
|
+
},
|
|
2635
|
+
"@types/react-dom": {
|
|
2636
|
+
"optional": true
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2640
|
+
"node_modules/@radix-ui/react-portal": {
|
|
2641
|
+
"version": "1.1.17",
|
|
2642
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.17.tgz",
|
|
2643
|
+
"integrity": "sha512-vKQLcWypUnwZVvfV7UkGahH2g6ySe8M8R+zYBwPrv5byZ9QAW6cQVvNKo7GgmD+p8aYb6D9JBuvy8/WhOno2wQ==",
|
|
2644
|
+
"license": "MIT",
|
|
2645
|
+
"dependencies": {
|
|
2646
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2647
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2648
|
+
},
|
|
2649
|
+
"peerDependencies": {
|
|
2650
|
+
"@types/react": "*",
|
|
2651
|
+
"@types/react-dom": "*",
|
|
2652
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2653
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2654
|
+
},
|
|
2655
|
+
"peerDependenciesMeta": {
|
|
2656
|
+
"@types/react": {
|
|
2657
|
+
"optional": true
|
|
2658
|
+
},
|
|
2659
|
+
"@types/react-dom": {
|
|
2660
|
+
"optional": true
|
|
2661
|
+
}
|
|
2662
|
+
}
|
|
2663
|
+
},
|
|
2664
|
+
"node_modules/@radix-ui/react-presence": {
|
|
2665
|
+
"version": "1.1.10",
|
|
2666
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.10.tgz",
|
|
2667
|
+
"integrity": "sha512-3wyzCQ6+ubRA+D4uv9m95JYLXxmOHp05qjrkjeA7uKHHtjpPggQzc6DAb0URl7j67oR0K2foO4ip27TiX037Bw==",
|
|
2668
|
+
"license": "MIT",
|
|
2669
|
+
"dependencies": {
|
|
2670
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2671
|
+
},
|
|
2672
|
+
"peerDependencies": {
|
|
2673
|
+
"@types/react": "*",
|
|
2674
|
+
"@types/react-dom": "*",
|
|
2675
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2676
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2677
|
+
},
|
|
2678
|
+
"peerDependenciesMeta": {
|
|
2679
|
+
"@types/react": {
|
|
2680
|
+
"optional": true
|
|
2681
|
+
},
|
|
2682
|
+
"@types/react-dom": {
|
|
2683
|
+
"optional": true
|
|
2684
|
+
}
|
|
2685
|
+
}
|
|
2686
|
+
},
|
|
2687
|
+
"node_modules/@radix-ui/react-primitive": {
|
|
2688
|
+
"version": "2.1.10",
|
|
2689
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.10.tgz",
|
|
2690
|
+
"integrity": "sha512-MucOnzh6hR5mid6VpkbglRAMYMjKLqRnGBbjXkzjK52fuQDd1qbkx78a5P40mkcnVXJdEVxm26E9OPAiUq7nBg==",
|
|
2691
|
+
"license": "MIT",
|
|
2692
|
+
"dependencies": {
|
|
2693
|
+
"@radix-ui/react-slot": "1.3.3"
|
|
2694
|
+
},
|
|
2695
|
+
"peerDependencies": {
|
|
2696
|
+
"@types/react": "*",
|
|
2697
|
+
"@types/react-dom": "*",
|
|
2698
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2699
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2700
|
+
},
|
|
2701
|
+
"peerDependenciesMeta": {
|
|
2702
|
+
"@types/react": {
|
|
2703
|
+
"optional": true
|
|
2704
|
+
},
|
|
2705
|
+
"@types/react-dom": {
|
|
2706
|
+
"optional": true
|
|
2707
|
+
}
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2710
|
+
"node_modules/@radix-ui/react-progress": {
|
|
2711
|
+
"version": "1.1.16",
|
|
2712
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.16.tgz",
|
|
2713
|
+
"integrity": "sha512-5XnomAsoZZCY+KNTxbIghpGqPruZvKFNlvcAljVAOdDRDsH4/OZQxhtwo5wdtoDM5R6MhJBb2sPnDuRFep3lzg==",
|
|
2714
|
+
"license": "MIT",
|
|
2715
|
+
"dependencies": {
|
|
2716
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2717
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
2718
|
+
},
|
|
2719
|
+
"peerDependencies": {
|
|
2720
|
+
"@types/react": "*",
|
|
2721
|
+
"@types/react-dom": "*",
|
|
2722
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2723
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2724
|
+
},
|
|
2725
|
+
"peerDependenciesMeta": {
|
|
2726
|
+
"@types/react": {
|
|
2727
|
+
"optional": true
|
|
2728
|
+
},
|
|
2729
|
+
"@types/react-dom": {
|
|
2730
|
+
"optional": true
|
|
2731
|
+
}
|
|
2732
|
+
}
|
|
2733
|
+
},
|
|
2734
|
+
"node_modules/@radix-ui/react-radio-group": {
|
|
2735
|
+
"version": "1.4.7",
|
|
2736
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.4.7.tgz",
|
|
2737
|
+
"integrity": "sha512-cgYFEkntCxppHZgtSZ+7vh0wbZQ+IC7PPMw8DSnRG27B6kDd32/Zw0OJt7dGDigCoprMuWHjg2PvUn3PYvPFoQ==",
|
|
2738
|
+
"license": "MIT",
|
|
2739
|
+
"dependencies": {
|
|
2740
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2741
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2742
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2743
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2744
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2745
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2746
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
2747
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2748
|
+
"@radix-ui/react-use-size": "1.1.4"
|
|
2749
|
+
},
|
|
2750
|
+
"peerDependencies": {
|
|
2751
|
+
"@types/react": "*",
|
|
2752
|
+
"@types/react-dom": "*",
|
|
2753
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2754
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2755
|
+
},
|
|
2756
|
+
"peerDependenciesMeta": {
|
|
2757
|
+
"@types/react": {
|
|
2758
|
+
"optional": true
|
|
2759
|
+
},
|
|
2760
|
+
"@types/react-dom": {
|
|
2761
|
+
"optional": true
|
|
2762
|
+
}
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"node_modules/@radix-ui/react-roving-focus": {
|
|
2766
|
+
"version": "1.1.19",
|
|
2767
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.19.tgz",
|
|
2768
|
+
"integrity": "sha512-V9jI6hDjT7l3jsCQD9bLNvDLM3tH/gdbOTp7Tefp3hbbgCGQoK7tUvrWiRlcoBHIZ809ElXwNQwVo0B98LuTXQ==",
|
|
2769
|
+
"license": "MIT",
|
|
2770
|
+
"dependencies": {
|
|
2771
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2772
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
2773
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2774
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2775
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2776
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2777
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2778
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2779
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2780
|
+
"@radix-ui/react-use-is-hydrated": "0.1.3",
|
|
2781
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2782
|
+
},
|
|
2783
|
+
"peerDependencies": {
|
|
2784
|
+
"@types/react": "*",
|
|
2785
|
+
"@types/react-dom": "*",
|
|
2786
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2787
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2788
|
+
},
|
|
2789
|
+
"peerDependenciesMeta": {
|
|
2790
|
+
"@types/react": {
|
|
2791
|
+
"optional": true
|
|
2792
|
+
},
|
|
2793
|
+
"@types/react-dom": {
|
|
2794
|
+
"optional": true
|
|
2795
|
+
}
|
|
2796
|
+
}
|
|
2797
|
+
},
|
|
2798
|
+
"node_modules/@radix-ui/react-scroll-area": {
|
|
2799
|
+
"version": "1.2.18",
|
|
2800
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.18.tgz",
|
|
2801
|
+
"integrity": "sha512-Zn5Cd171wxsO3Dfg8HaW6RifTb9CYTKQJHs/G4+LN1GfmJpaQMZQyQxMprVPHpaz7QY4l9BxK2JwQuzHsXC8nA==",
|
|
2802
|
+
"license": "MIT",
|
|
2803
|
+
"dependencies": {
|
|
2804
|
+
"@radix-ui/number": "1.1.3",
|
|
2805
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2806
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2807
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2808
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2809
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2810
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2811
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2812
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
2813
|
+
},
|
|
2814
|
+
"peerDependencies": {
|
|
2815
|
+
"@types/react": "*",
|
|
2816
|
+
"@types/react-dom": "*",
|
|
2817
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2818
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2819
|
+
},
|
|
2820
|
+
"peerDependenciesMeta": {
|
|
2821
|
+
"@types/react": {
|
|
2822
|
+
"optional": true
|
|
2823
|
+
},
|
|
2824
|
+
"@types/react-dom": {
|
|
2825
|
+
"optional": true
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2829
|
+
"node_modules/@radix-ui/react-select": {
|
|
2830
|
+
"version": "2.3.7",
|
|
2831
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.3.7.tgz",
|
|
2832
|
+
"integrity": "sha512-WFGImkmbzcfxeIwq/+4HvRN0pizBwbwQUED4I13ezQsDdfl38ZntN6TmR8XaSzPBqoCToe8rF75j6NPNDSzhbg==",
|
|
2833
|
+
"license": "MIT",
|
|
2834
|
+
"dependencies": {
|
|
2835
|
+
"@radix-ui/number": "1.1.3",
|
|
2836
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2837
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
2838
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2839
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2840
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2841
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
2842
|
+
"@radix-ui/react-focus-guards": "1.1.6",
|
|
2843
|
+
"@radix-ui/react-focus-scope": "1.1.16",
|
|
2844
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2845
|
+
"@radix-ui/react-popper": "1.3.7",
|
|
2846
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
2847
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2848
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2849
|
+
"@radix-ui/react-slot": "1.3.3",
|
|
2850
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
2851
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2852
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
2853
|
+
"@radix-ui/react-use-previous": "1.1.4",
|
|
2854
|
+
"@radix-ui/react-visually-hidden": "1.2.11",
|
|
1964
2855
|
"aria-hidden": "^1.2.4",
|
|
1965
2856
|
"react-remove-scroll": "^2.7.2"
|
|
1966
2857
|
},
|
|
@@ -1979,17 +2870,46 @@
|
|
|
1979
2870
|
}
|
|
1980
2871
|
}
|
|
1981
2872
|
},
|
|
1982
|
-
"node_modules/@radix-ui/react-
|
|
1983
|
-
"version": "1.1.
|
|
1984
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
1985
|
-
"integrity": "sha512-
|
|
2873
|
+
"node_modules/@radix-ui/react-separator": {
|
|
2874
|
+
"version": "1.1.15",
|
|
2875
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.15.tgz",
|
|
2876
|
+
"integrity": "sha512-jOLO4lssEzWpoDu7G+Ze4VjwMRUBt291pnZD0gmalREZipnTX3wadQo7Fy48GCTfe14/YRN6rw/rOJqrE85Wxw==",
|
|
2877
|
+
"license": "MIT",
|
|
2878
|
+
"dependencies": {
|
|
2879
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
2880
|
+
},
|
|
2881
|
+
"peerDependencies": {
|
|
2882
|
+
"@types/react": "*",
|
|
2883
|
+
"@types/react-dom": "*",
|
|
2884
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2885
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2886
|
+
},
|
|
2887
|
+
"peerDependenciesMeta": {
|
|
2888
|
+
"@types/react": {
|
|
2889
|
+
"optional": true
|
|
2890
|
+
},
|
|
2891
|
+
"@types/react-dom": {
|
|
2892
|
+
"optional": true
|
|
2893
|
+
}
|
|
2894
|
+
}
|
|
2895
|
+
},
|
|
2896
|
+
"node_modules/@radix-ui/react-slider": {
|
|
2897
|
+
"version": "1.4.7",
|
|
2898
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.4.7.tgz",
|
|
2899
|
+
"integrity": "sha512-mTSLf1GC/C0moWjTbvCM6Qn/gBjvlFt1azuWF2v7MN5C3Zq2U2J2lN3ZEYkpujuOU5Ro7A28wkviSxaKnG0BYg==",
|
|
1986
2900
|
"license": "MIT",
|
|
1987
2901
|
"dependencies": {
|
|
2902
|
+
"@radix-ui/number": "1.1.3",
|
|
1988
2903
|
"@radix-ui/primitive": "1.1.7",
|
|
2904
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
1989
2905
|
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2906
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2907
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
1990
2908
|
"@radix-ui/react-primitive": "2.1.10",
|
|
1991
|
-
"@radix-ui/react-use-
|
|
1992
|
-
"@radix-ui/react-use-effect
|
|
2909
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2910
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
2911
|
+
"@radix-ui/react-use-previous": "1.1.4",
|
|
2912
|
+
"@radix-ui/react-use-size": "1.1.4"
|
|
1993
2913
|
},
|
|
1994
2914
|
"peerDependencies": {
|
|
1995
2915
|
"@types/react": "*",
|
|
@@ -2006,11 +2926,14 @@
|
|
|
2006
2926
|
}
|
|
2007
2927
|
}
|
|
2008
2928
|
},
|
|
2009
|
-
"node_modules/@radix-ui/react-
|
|
2010
|
-
"version": "1.
|
|
2011
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2012
|
-
"integrity": "sha512-
|
|
2929
|
+
"node_modules/@radix-ui/react-slot": {
|
|
2930
|
+
"version": "1.3.3",
|
|
2931
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.3.3.tgz",
|
|
2932
|
+
"integrity": "sha512-qx7oqnYbxnK9kYI9m317qmFmEgo6ywqWvbTogdj7cL9p3/yx4M48p7Rnw5z3H890cL/ow/EeWJsuTykeZVXP5Q==",
|
|
2013
2933
|
"license": "MIT",
|
|
2934
|
+
"dependencies": {
|
|
2935
|
+
"@radix-ui/react-compose-refs": "1.1.5"
|
|
2936
|
+
},
|
|
2014
2937
|
"peerDependencies": {
|
|
2015
2938
|
"@types/react": "*",
|
|
2016
2939
|
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
@@ -2021,15 +2944,18 @@
|
|
|
2021
2944
|
}
|
|
2022
2945
|
}
|
|
2023
2946
|
},
|
|
2024
|
-
"node_modules/@radix-ui/react-
|
|
2025
|
-
"version": "1.
|
|
2026
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2027
|
-
"integrity": "sha512-
|
|
2947
|
+
"node_modules/@radix-ui/react-switch": {
|
|
2948
|
+
"version": "1.3.7",
|
|
2949
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.3.7.tgz",
|
|
2950
|
+
"integrity": "sha512-48tB/4dn2UVLBCYhTu9AuR63IHl73l/qLbLgxd86noTUor4/K4LFDAcYjK+isP5313qxaFpjPVogE7+Y0/V3Kw==",
|
|
2028
2951
|
"license": "MIT",
|
|
2029
2952
|
"dependencies": {
|
|
2953
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2030
2954
|
"@radix-ui/react-compose-refs": "1.1.5",
|
|
2955
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2031
2956
|
"@radix-ui/react-primitive": "2.1.10",
|
|
2032
|
-
"@radix-ui/react-use-
|
|
2957
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
2958
|
+
"@radix-ui/react-use-size": "1.1.4"
|
|
2033
2959
|
},
|
|
2034
2960
|
"peerDependencies": {
|
|
2035
2961
|
"@types/react": "*",
|
|
@@ -2046,32 +2972,54 @@
|
|
|
2046
2972
|
}
|
|
2047
2973
|
}
|
|
2048
2974
|
},
|
|
2049
|
-
"node_modules/@radix-ui/react-
|
|
2050
|
-
"version": "1.1.
|
|
2051
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2052
|
-
"integrity": "sha512-
|
|
2975
|
+
"node_modules/@radix-ui/react-tabs": {
|
|
2976
|
+
"version": "1.1.21",
|
|
2977
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.21.tgz",
|
|
2978
|
+
"integrity": "sha512-UKxJlZid7FVtsk/WTxj4i4uSEgj2Au+KBbS7SQyTlzMhhn+86Cz3tISZdTa87bfEfcuvZezf2ZsxD4xuEKtkog==",
|
|
2053
2979
|
"license": "MIT",
|
|
2054
2980
|
"dependencies": {
|
|
2055
|
-
"@radix-ui/
|
|
2981
|
+
"@radix-ui/primitive": "1.1.7",
|
|
2982
|
+
"@radix-ui/react-context": "1.2.2",
|
|
2983
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
2984
|
+
"@radix-ui/react-id": "1.1.4",
|
|
2985
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2986
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
2987
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
2988
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2056
2989
|
},
|
|
2057
2990
|
"peerDependencies": {
|
|
2058
2991
|
"@types/react": "*",
|
|
2059
|
-
"react": "
|
|
2992
|
+
"@types/react-dom": "*",
|
|
2993
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
2994
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2060
2995
|
},
|
|
2061
2996
|
"peerDependenciesMeta": {
|
|
2062
2997
|
"@types/react": {
|
|
2063
2998
|
"optional": true
|
|
2999
|
+
},
|
|
3000
|
+
"@types/react-dom": {
|
|
3001
|
+
"optional": true
|
|
2064
3002
|
}
|
|
2065
3003
|
}
|
|
2066
3004
|
},
|
|
2067
|
-
"node_modules/@radix-ui/react-
|
|
2068
|
-
"version": "1.
|
|
2069
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2070
|
-
"integrity": "sha512-
|
|
3005
|
+
"node_modules/@radix-ui/react-toast": {
|
|
3006
|
+
"version": "1.2.23",
|
|
3007
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.23.tgz",
|
|
3008
|
+
"integrity": "sha512-ofhyAsYaocRGOs/n0XWdUOSVzEAG6BfrMVM8z0c0kLEWY38w/0WuMFPTJP/HVaZPYkMvHZoKIIhNcjbTCBILPg==",
|
|
2071
3009
|
"license": "MIT",
|
|
2072
3010
|
"dependencies": {
|
|
3011
|
+
"@radix-ui/primitive": "1.1.7",
|
|
3012
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
3013
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
3014
|
+
"@radix-ui/react-context": "1.2.2",
|
|
3015
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
3016
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
3017
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
2073
3018
|
"@radix-ui/react-primitive": "2.1.10",
|
|
2074
|
-
"@radix-ui/react-use-
|
|
3019
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
3020
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
3021
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
3022
|
+
"@radix-ui/react-visually-hidden": "1.2.11"
|
|
2075
3023
|
},
|
|
2076
3024
|
"peerDependencies": {
|
|
2077
3025
|
"@types/react": "*",
|
|
@@ -2088,13 +3036,15 @@
|
|
|
2088
3036
|
}
|
|
2089
3037
|
}
|
|
2090
3038
|
},
|
|
2091
|
-
"node_modules/@radix-ui/react-
|
|
2092
|
-
"version": "1.1.
|
|
2093
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2094
|
-
"integrity": "sha512-
|
|
3039
|
+
"node_modules/@radix-ui/react-toggle": {
|
|
3040
|
+
"version": "1.1.18",
|
|
3041
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.18.tgz",
|
|
3042
|
+
"integrity": "sha512-7lonPlKfSacd20GlOBx2ltuVKz9oqWYZz+oMQyOltw6t1y2nyftj2ZmwwUHYn49kqfDWcp8dNZm5NgV+5Z+mug==",
|
|
2095
3043
|
"license": "MIT",
|
|
2096
3044
|
"dependencies": {
|
|
2097
|
-
"@radix-ui/
|
|
3045
|
+
"@radix-ui/primitive": "1.1.7",
|
|
3046
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
3047
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2098
3048
|
},
|
|
2099
3049
|
"peerDependencies": {
|
|
2100
3050
|
"@types/react": "*",
|
|
@@ -2111,13 +3061,19 @@
|
|
|
2111
3061
|
}
|
|
2112
3062
|
}
|
|
2113
3063
|
},
|
|
2114
|
-
"node_modules/@radix-ui/react-
|
|
2115
|
-
"version": "
|
|
2116
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2117
|
-
"integrity": "sha512-
|
|
3064
|
+
"node_modules/@radix-ui/react-toggle-group": {
|
|
3065
|
+
"version": "1.1.19",
|
|
3066
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.19.tgz",
|
|
3067
|
+
"integrity": "sha512-OtnwuSVjd1Ofi+AdnvhsjQdyuhCDwYs1w9RyB5BN/OavXOVQo42SYqQjwUnbPnaiPFBpQ9aX70dWeee+v2oBLA==",
|
|
2118
3068
|
"license": "MIT",
|
|
2119
3069
|
"dependencies": {
|
|
2120
|
-
"@radix-ui/
|
|
3070
|
+
"@radix-ui/primitive": "1.1.7",
|
|
3071
|
+
"@radix-ui/react-context": "1.2.2",
|
|
3072
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
3073
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
3074
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
3075
|
+
"@radix-ui/react-toggle": "1.1.18",
|
|
3076
|
+
"@radix-ui/react-use-controllable-state": "1.2.6"
|
|
2121
3077
|
},
|
|
2122
3078
|
"peerDependencies": {
|
|
2123
3079
|
"@types/react": "*",
|
|
@@ -2134,21 +3090,67 @@
|
|
|
2134
3090
|
}
|
|
2135
3091
|
}
|
|
2136
3092
|
},
|
|
2137
|
-
"node_modules/@radix-ui/react-
|
|
2138
|
-
"version": "1.
|
|
2139
|
-
"resolved": "https://registry.npmjs.org/@radix-ui/react-
|
|
2140
|
-
"integrity": "sha512-
|
|
3093
|
+
"node_modules/@radix-ui/react-toolbar": {
|
|
3094
|
+
"version": "1.1.19",
|
|
3095
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.1.19.tgz",
|
|
3096
|
+
"integrity": "sha512-Ph0IvtYw4VB12ZnZg+YtrGs8yJQsnizwo/zu0R4Y/nWugtJzA7Pg1eWeuDR9+LSqn+xjamss+UOSOJJJ4gx8jw==",
|
|
2141
3097
|
"license": "MIT",
|
|
2142
3098
|
"dependencies": {
|
|
2143
|
-
"@radix-ui/
|
|
3099
|
+
"@radix-ui/primitive": "1.1.7",
|
|
3100
|
+
"@radix-ui/react-context": "1.2.2",
|
|
3101
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
3102
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
3103
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
3104
|
+
"@radix-ui/react-separator": "1.1.15",
|
|
3105
|
+
"@radix-ui/react-toggle-group": "1.1.19"
|
|
2144
3106
|
},
|
|
2145
3107
|
"peerDependencies": {
|
|
2146
3108
|
"@types/react": "*",
|
|
2147
|
-
"react": "
|
|
3109
|
+
"@types/react-dom": "*",
|
|
3110
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
3111
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3112
|
+
},
|
|
3113
|
+
"peerDependenciesMeta": {
|
|
3114
|
+
"@types/react": {
|
|
3115
|
+
"optional": true
|
|
3116
|
+
},
|
|
3117
|
+
"@types/react-dom": {
|
|
3118
|
+
"optional": true
|
|
3119
|
+
}
|
|
3120
|
+
}
|
|
3121
|
+
},
|
|
3122
|
+
"node_modules/@radix-ui/react-tooltip": {
|
|
3123
|
+
"version": "1.2.16",
|
|
3124
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.16.tgz",
|
|
3125
|
+
"integrity": "sha512-6EamKFRRnlpdadndbZ6LMwycfwkwPte1B42hs6QA0gYhjaOKqW4PZ4pjaW9UrlDX5eVt/OjncE7BFTPL5nmZhg==",
|
|
3126
|
+
"license": "MIT",
|
|
3127
|
+
"dependencies": {
|
|
3128
|
+
"@radix-ui/primitive": "1.1.7",
|
|
3129
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
3130
|
+
"@radix-ui/react-context": "1.2.2",
|
|
3131
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
3132
|
+
"@radix-ui/react-id": "1.1.4",
|
|
3133
|
+
"@radix-ui/react-popper": "1.3.7",
|
|
3134
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
3135
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
3136
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
3137
|
+
"@radix-ui/react-slot": "1.3.3",
|
|
3138
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
3139
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
3140
|
+
"@radix-ui/react-visually-hidden": "1.2.11"
|
|
3141
|
+
},
|
|
3142
|
+
"peerDependencies": {
|
|
3143
|
+
"@types/react": "*",
|
|
3144
|
+
"@types/react-dom": "*",
|
|
3145
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
3146
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
2148
3147
|
},
|
|
2149
3148
|
"peerDependenciesMeta": {
|
|
2150
3149
|
"@types/react": {
|
|
2151
3150
|
"optional": true
|
|
3151
|
+
},
|
|
3152
|
+
"@types/react-dom": {
|
|
3153
|
+
"optional": true
|
|
2152
3154
|
}
|
|
2153
3155
|
}
|
|
2154
3156
|
},
|
|
@@ -2205,6 +3207,39 @@
|
|
|
2205
3207
|
}
|
|
2206
3208
|
}
|
|
2207
3209
|
},
|
|
3210
|
+
"node_modules/@radix-ui/react-use-escape-keydown": {
|
|
3211
|
+
"version": "1.1.5",
|
|
3212
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.5.tgz",
|
|
3213
|
+
"integrity": "sha512-ge3ipobwSXTj4JyVtswQ7qZj0ZHdtbGuOno/LrgAAeSxtsJ6Vs4Gz5IkPH2bmqpjcLUFoqGhA/mueuIf63UXlA==",
|
|
3214
|
+
"license": "MIT",
|
|
3215
|
+
"dependencies": {
|
|
3216
|
+
"@radix-ui/react-use-callback-ref": "1.1.4"
|
|
3217
|
+
},
|
|
3218
|
+
"peerDependencies": {
|
|
3219
|
+
"@types/react": "*",
|
|
3220
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3221
|
+
},
|
|
3222
|
+
"peerDependenciesMeta": {
|
|
3223
|
+
"@types/react": {
|
|
3224
|
+
"optional": true
|
|
3225
|
+
}
|
|
3226
|
+
}
|
|
3227
|
+
},
|
|
3228
|
+
"node_modules/@radix-ui/react-use-is-hydrated": {
|
|
3229
|
+
"version": "0.1.3",
|
|
3230
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-is-hydrated/-/react-use-is-hydrated-0.1.3.tgz",
|
|
3231
|
+
"integrity": "sha512-umO/aJ+82CpOnhDZUTbILCQf7kU/g0iv+oGs/Q8jw7IkhWBzaEP4sA268PhFAJTFetbwp3ICc6ktpI4TqtxcIw==",
|
|
3232
|
+
"license": "MIT",
|
|
3233
|
+
"peerDependencies": {
|
|
3234
|
+
"@types/react": "*",
|
|
3235
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3236
|
+
},
|
|
3237
|
+
"peerDependenciesMeta": {
|
|
3238
|
+
"@types/react": {
|
|
3239
|
+
"optional": true
|
|
3240
|
+
}
|
|
3241
|
+
}
|
|
3242
|
+
},
|
|
2208
3243
|
"node_modules/@radix-ui/react-use-layout-effect": {
|
|
2209
3244
|
"version": "1.1.4",
|
|
2210
3245
|
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.4.tgz",
|
|
@@ -2220,6 +3255,86 @@
|
|
|
2220
3255
|
}
|
|
2221
3256
|
}
|
|
2222
3257
|
},
|
|
3258
|
+
"node_modules/@radix-ui/react-use-previous": {
|
|
3259
|
+
"version": "1.1.4",
|
|
3260
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.4.tgz",
|
|
3261
|
+
"integrity": "sha512-XoSLhbRbqxFtgJoi2fNHA3C6pDlY34x508vUpUGoFZfvePfHXHbE1lC4FYFMnJWgiCRroSTw6fOsXQoVS9RwZg==",
|
|
3262
|
+
"license": "MIT",
|
|
3263
|
+
"peerDependencies": {
|
|
3264
|
+
"@types/react": "*",
|
|
3265
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3266
|
+
},
|
|
3267
|
+
"peerDependenciesMeta": {
|
|
3268
|
+
"@types/react": {
|
|
3269
|
+
"optional": true
|
|
3270
|
+
}
|
|
3271
|
+
}
|
|
3272
|
+
},
|
|
3273
|
+
"node_modules/@radix-ui/react-use-rect": {
|
|
3274
|
+
"version": "1.1.4",
|
|
3275
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.4.tgz",
|
|
3276
|
+
"integrity": "sha512-cSOCh6JlkmfjLyNcLiu2nB4v+nm+dkZ+Q5KHWk/soo4U7ZLiEQFKHK9/YmtBHjfCEaU43IBKQOc4/uJmCaiCTQ==",
|
|
3277
|
+
"license": "MIT",
|
|
3278
|
+
"dependencies": {
|
|
3279
|
+
"@radix-ui/rect": "1.1.3"
|
|
3280
|
+
},
|
|
3281
|
+
"peerDependencies": {
|
|
3282
|
+
"@types/react": "*",
|
|
3283
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3284
|
+
},
|
|
3285
|
+
"peerDependenciesMeta": {
|
|
3286
|
+
"@types/react": {
|
|
3287
|
+
"optional": true
|
|
3288
|
+
}
|
|
3289
|
+
}
|
|
3290
|
+
},
|
|
3291
|
+
"node_modules/@radix-ui/react-use-size": {
|
|
3292
|
+
"version": "1.1.4",
|
|
3293
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.4.tgz",
|
|
3294
|
+
"integrity": "sha512-D3anSY15EJoxrihpsXI6SMrmmonnQtR2ni7arO+Lfdg3O95b9hNXxONk8jA5C8ANdF/h5HMAxejgs8PWJ6rlhw==",
|
|
3295
|
+
"license": "MIT",
|
|
3296
|
+
"dependencies": {
|
|
3297
|
+
"@radix-ui/react-use-layout-effect": "1.1.4"
|
|
3298
|
+
},
|
|
3299
|
+
"peerDependencies": {
|
|
3300
|
+
"@types/react": "*",
|
|
3301
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3302
|
+
},
|
|
3303
|
+
"peerDependenciesMeta": {
|
|
3304
|
+
"@types/react": {
|
|
3305
|
+
"optional": true
|
|
3306
|
+
}
|
|
3307
|
+
}
|
|
3308
|
+
},
|
|
3309
|
+
"node_modules/@radix-ui/react-visually-hidden": {
|
|
3310
|
+
"version": "1.2.11",
|
|
3311
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.11.tgz",
|
|
3312
|
+
"integrity": "sha512-NFS86RYYZb4/exihaESBGOpMJFz8MGLAfu3mOBSGByVnVPC9JPASfYubxd/8KbkQK0sYAv8lVQDEQukDX/qXvQ==",
|
|
3313
|
+
"license": "MIT",
|
|
3314
|
+
"dependencies": {
|
|
3315
|
+
"@radix-ui/react-primitive": "2.1.10"
|
|
3316
|
+
},
|
|
3317
|
+
"peerDependencies": {
|
|
3318
|
+
"@types/react": "*",
|
|
3319
|
+
"@types/react-dom": "*",
|
|
3320
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
3321
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
3322
|
+
},
|
|
3323
|
+
"peerDependenciesMeta": {
|
|
3324
|
+
"@types/react": {
|
|
3325
|
+
"optional": true
|
|
3326
|
+
},
|
|
3327
|
+
"@types/react-dom": {
|
|
3328
|
+
"optional": true
|
|
3329
|
+
}
|
|
3330
|
+
}
|
|
3331
|
+
},
|
|
3332
|
+
"node_modules/@radix-ui/rect": {
|
|
3333
|
+
"version": "1.1.3",
|
|
3334
|
+
"resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.3.tgz",
|
|
3335
|
+
"integrity": "sha512-JtyZR+mqgBibTo8xea3B6ZRmzZiM/YeVBtUkas6zMuXjAlfIFIW2FgqeM9eLyvEaYX66vr6DJMK+4U6LV0KhNw==",
|
|
3336
|
+
"license": "MIT"
|
|
3337
|
+
},
|
|
2223
3338
|
"node_modules/@rtsao/scc": {
|
|
2224
3339
|
"version": "1.1.0",
|
|
2225
3340
|
"resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
|
|
@@ -7207,9 +8322,9 @@
|
|
|
7207
8322
|
}
|
|
7208
8323
|
},
|
|
7209
8324
|
"node_modules/lucide-react": {
|
|
7210
|
-
"version": "1.
|
|
7211
|
-
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.
|
|
7212
|
-
"integrity": "sha512-
|
|
8325
|
+
"version": "1.45.0",
|
|
8326
|
+
"resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.45.0.tgz",
|
|
8327
|
+
"integrity": "sha512-yH1ubCAduho9UR7oJhRXIQXogksRILBiTuZC4/bQIGeB9JOkxMlSuEHyyZpo1Z3S0yWJO2KTSUZbjiNvVxeOUw==",
|
|
7213
8328
|
"license": "ISC",
|
|
7214
8329
|
"peerDependencies": {
|
|
7215
8330
|
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
@@ -7754,9 +8869,9 @@
|
|
|
7754
8869
|
}
|
|
7755
8870
|
},
|
|
7756
8871
|
"node_modules/open": {
|
|
7757
|
-
"version": "11.0.
|
|
7758
|
-
"resolved": "https://registry.npmjs.org/open/-/open-11.0.
|
|
7759
|
-
"integrity": "sha512-
|
|
8872
|
+
"version": "11.0.3",
|
|
8873
|
+
"resolved": "https://registry.npmjs.org/open/-/open-11.0.3.tgz",
|
|
8874
|
+
"integrity": "sha512-b3souUgU0VaAvMmzA4+9cRgrOgMdE0vc9H9VhQ0FYnjjcyZ8R/f9DiwMU9V8rl+vjf05On9UJhbgb06fsTs87Q==",
|
|
7760
8875
|
"license": "MIT",
|
|
7761
8876
|
"dependencies": {
|
|
7762
8877
|
"default-browser": "^5.5.1",
|
|
@@ -8287,6 +9402,83 @@
|
|
|
8287
9402
|
],
|
|
8288
9403
|
"license": "MIT"
|
|
8289
9404
|
},
|
|
9405
|
+
"node_modules/radix-ui": {
|
|
9406
|
+
"version": "1.6.7",
|
|
9407
|
+
"resolved": "https://registry.npmjs.org/radix-ui/-/radix-ui-1.6.7.tgz",
|
|
9408
|
+
"integrity": "sha512-QBdhh1arIEUvPC0dQ5+nwWAxt7+N+oP/9jPwjJkGFoSk/sqxg32gJtSXGtFh8frAIcS6oC9cx2Q+7KYCQLOAeA==",
|
|
9409
|
+
"license": "MIT",
|
|
9410
|
+
"dependencies": {
|
|
9411
|
+
"@radix-ui/primitive": "1.1.7",
|
|
9412
|
+
"@radix-ui/react-accessible-icon": "1.1.15",
|
|
9413
|
+
"@radix-ui/react-accordion": "1.2.20",
|
|
9414
|
+
"@radix-ui/react-alert-dialog": "1.1.23",
|
|
9415
|
+
"@radix-ui/react-arrow": "1.1.15",
|
|
9416
|
+
"@radix-ui/react-aspect-ratio": "1.1.15",
|
|
9417
|
+
"@radix-ui/react-avatar": "1.2.6",
|
|
9418
|
+
"@radix-ui/react-checkbox": "1.3.11",
|
|
9419
|
+
"@radix-ui/react-collapsible": "1.1.20",
|
|
9420
|
+
"@radix-ui/react-collection": "1.1.15",
|
|
9421
|
+
"@radix-ui/react-compose-refs": "1.1.5",
|
|
9422
|
+
"@radix-ui/react-context": "1.2.2",
|
|
9423
|
+
"@radix-ui/react-context-menu": "2.3.7",
|
|
9424
|
+
"@radix-ui/react-dialog": "1.1.23",
|
|
9425
|
+
"@radix-ui/react-direction": "1.1.4",
|
|
9426
|
+
"@radix-ui/react-dismissable-layer": "1.1.19",
|
|
9427
|
+
"@radix-ui/react-dropdown-menu": "2.1.24",
|
|
9428
|
+
"@radix-ui/react-focus-guards": "1.1.6",
|
|
9429
|
+
"@radix-ui/react-focus-scope": "1.1.16",
|
|
9430
|
+
"@radix-ui/react-form": "0.1.16",
|
|
9431
|
+
"@radix-ui/react-hover-card": "1.1.23",
|
|
9432
|
+
"@radix-ui/react-label": "2.1.15",
|
|
9433
|
+
"@radix-ui/react-menu": "2.1.24",
|
|
9434
|
+
"@radix-ui/react-menubar": "1.1.24",
|
|
9435
|
+
"@radix-ui/react-navigation-menu": "1.2.22",
|
|
9436
|
+
"@radix-ui/react-one-time-password-field": "0.1.16",
|
|
9437
|
+
"@radix-ui/react-password-toggle-field": "0.1.11",
|
|
9438
|
+
"@radix-ui/react-popover": "1.1.23",
|
|
9439
|
+
"@radix-ui/react-popper": "1.3.7",
|
|
9440
|
+
"@radix-ui/react-portal": "1.1.17",
|
|
9441
|
+
"@radix-ui/react-presence": "1.1.10",
|
|
9442
|
+
"@radix-ui/react-primitive": "2.1.10",
|
|
9443
|
+
"@radix-ui/react-progress": "1.1.16",
|
|
9444
|
+
"@radix-ui/react-radio-group": "1.4.7",
|
|
9445
|
+
"@radix-ui/react-roving-focus": "1.1.19",
|
|
9446
|
+
"@radix-ui/react-scroll-area": "1.2.18",
|
|
9447
|
+
"@radix-ui/react-select": "2.3.7",
|
|
9448
|
+
"@radix-ui/react-separator": "1.1.15",
|
|
9449
|
+
"@radix-ui/react-slider": "1.4.7",
|
|
9450
|
+
"@radix-ui/react-slot": "1.3.3",
|
|
9451
|
+
"@radix-ui/react-switch": "1.3.7",
|
|
9452
|
+
"@radix-ui/react-tabs": "1.1.21",
|
|
9453
|
+
"@radix-ui/react-toast": "1.2.23",
|
|
9454
|
+
"@radix-ui/react-toggle": "1.1.18",
|
|
9455
|
+
"@radix-ui/react-toggle-group": "1.1.19",
|
|
9456
|
+
"@radix-ui/react-toolbar": "1.1.19",
|
|
9457
|
+
"@radix-ui/react-tooltip": "1.2.16",
|
|
9458
|
+
"@radix-ui/react-use-callback-ref": "1.1.4",
|
|
9459
|
+
"@radix-ui/react-use-controllable-state": "1.2.6",
|
|
9460
|
+
"@radix-ui/react-use-effect-event": "0.0.5",
|
|
9461
|
+
"@radix-ui/react-use-escape-keydown": "1.1.5",
|
|
9462
|
+
"@radix-ui/react-use-is-hydrated": "0.1.3",
|
|
9463
|
+
"@radix-ui/react-use-layout-effect": "1.1.4",
|
|
9464
|
+
"@radix-ui/react-use-size": "1.1.4",
|
|
9465
|
+
"@radix-ui/react-visually-hidden": "1.2.11"
|
|
9466
|
+
},
|
|
9467
|
+
"peerDependencies": {
|
|
9468
|
+
"@types/react": "*",
|
|
9469
|
+
"@types/react-dom": "*",
|
|
9470
|
+
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
|
|
9471
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
|
|
9472
|
+
},
|
|
9473
|
+
"peerDependenciesMeta": {
|
|
9474
|
+
"@types/react": {
|
|
9475
|
+
"optional": true
|
|
9476
|
+
},
|
|
9477
|
+
"@types/react-dom": {
|
|
9478
|
+
"optional": true
|
|
9479
|
+
}
|
|
9480
|
+
}
|
|
9481
|
+
},
|
|
8290
9482
|
"node_modules/range-parser": {
|
|
8291
9483
|
"version": "1.3.0",
|
|
8292
9484
|
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz",
|
|
@@ -8507,12 +9699,6 @@
|
|
|
8507
9699
|
"node": ">=0.10.0"
|
|
8508
9700
|
}
|
|
8509
9701
|
},
|
|
8510
|
-
"node_modules/reselect": {
|
|
8511
|
-
"version": "5.3.0",
|
|
8512
|
-
"resolved": "https://registry.npmjs.org/reselect/-/reselect-5.3.0.tgz",
|
|
8513
|
-
"integrity": "sha512-XGoLeRAVzUTcJ1qkxPQhDJyIZ5d6zzZD9nT7AEZOaaU9UbWclhycElmhO+VD5bFeLuzhPBaOV2oXC8uG35ZSpg==",
|
|
8514
|
-
"license": "MIT"
|
|
8515
|
-
},
|
|
8516
9702
|
"node_modules/resolve": {
|
|
8517
9703
|
"version": "2.0.0-next.7",
|
|
8518
9704
|
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz",
|
|
@@ -9510,6 +10696,16 @@
|
|
|
9510
10696
|
"url": "https://www.buymeacoffee.com/systeminfo"
|
|
9511
10697
|
}
|
|
9512
10698
|
},
|
|
10699
|
+
"node_modules/tailwind-merge": {
|
|
10700
|
+
"version": "3.6.0",
|
|
10701
|
+
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.6.0.tgz",
|
|
10702
|
+
"integrity": "sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==",
|
|
10703
|
+
"license": "MIT",
|
|
10704
|
+
"funding": {
|
|
10705
|
+
"type": "github",
|
|
10706
|
+
"url": "https://github.com/sponsors/dcastil"
|
|
10707
|
+
}
|
|
10708
|
+
},
|
|
9513
10709
|
"node_modules/tailwindcss": {
|
|
9514
10710
|
"version": "4.3.3",
|
|
9515
10711
|
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.3.tgz",
|
|
@@ -10016,15 +11212,6 @@
|
|
|
10016
11212
|
}
|
|
10017
11213
|
}
|
|
10018
11214
|
},
|
|
10019
|
-
"node_modules/use-sync-external-store": {
|
|
10020
|
-
"version": "1.7.0",
|
|
10021
|
-
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.7.0.tgz",
|
|
10022
|
-
"integrity": "sha512-6L+EeigHMQhdaIPNIFUKwfWJSwWFQ8gJbJ2DLOs5sDIegTwR9fRxvnM3uciHKjIZhFz+KAv2emhWMRvDmMcY8A==",
|
|
10023
|
-
"license": "MIT",
|
|
10024
|
-
"peerDependencies": {
|
|
10025
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
10026
|
-
}
|
|
10027
|
-
},
|
|
10028
11215
|
"node_modules/util-deprecate": {
|
|
10029
11216
|
"version": "1.0.2",
|
|
10030
11217
|
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|