create-tauri-ui 0.1.2 → 0.1.4
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/index.mjs +19 -19
- package/package.json +1 -1
- package/templates/next/README.md +8 -8
- package/templates/next/package.json +32 -32
- package/templates/next/pnpm-lock.yaml +1034 -596
- package/templates/sveltekit/.prettierignore +13 -0
- package/templates/sveltekit/.prettierrc +8 -0
- package/templates/sveltekit/README.md +1 -0
- package/templates/sveltekit/app-icon.png +0 -0
- package/templates/sveltekit/package.json +84 -0
- package/templates/sveltekit/pnpm-lock.yaml +5314 -0
- package/templates/sveltekit/postcss.config.cjs +13 -0
- package/templates/sveltekit/src/app.d.ts +18 -0
- package/templates/sveltekit/src/app.html +16 -0
- package/templates/sveltekit/src/assets/Inter.var.woff2 +0 -0
- package/templates/sveltekit/src/content/cli.md +63 -0
- package/templates/sveltekit/src/content/components/accordion.md +59 -0
- package/templates/sveltekit/src/content/components/alert-dialog.md +75 -0
- package/templates/sveltekit/src/content/components/alert.md +67 -0
- package/templates/sveltekit/src/content/components/aspect-ratio.md +51 -0
- package/templates/sveltekit/src/content/components/avatar.md +52 -0
- package/templates/sveltekit/src/content/components/badge.md +104 -0
- package/templates/sveltekit/src/content/components/button.md +165 -0
- package/templates/sveltekit/src/content/components/card.md +82 -0
- package/templates/sveltekit/src/content/components/checkbox.md +71 -0
- package/templates/sveltekit/src/content/components/collapsible.md +55 -0
- package/templates/sveltekit/src/content/components/dialog.md +72 -0
- package/templates/sveltekit/src/content/components/hover-card.md +52 -0
- package/templates/sveltekit/src/content/components/input.md +114 -0
- package/templates/sveltekit/src/content/components/label.md +49 -0
- package/templates/sveltekit/src/content/components/progress.md +49 -0
- package/templates/sveltekit/src/content/components/radio-group.md +59 -0
- package/templates/sveltekit/src/content/components/separator.md +49 -0
- package/templates/sveltekit/src/content/components/sheet.md +95 -0
- package/templates/sveltekit/src/content/components/skeleton.md +42 -0
- package/templates/sveltekit/src/content/components/slider.md +49 -0
- package/templates/sveltekit/src/content/components/switch.md +49 -0
- package/templates/sveltekit/src/content/components/table.md +78 -0
- package/templates/sveltekit/src/content/components/tabs.md +56 -0
- package/templates/sveltekit/src/content/components/textarea.md +102 -0
- package/templates/sveltekit/src/content/components/toggle.md +121 -0
- package/templates/sveltekit/src/content/components/tooltip.md +56 -0
- package/templates/sveltekit/src/content/figma.md +22 -0
- package/templates/sveltekit/src/content/forms/superforms.md +4 -0
- package/templates/sveltekit/src/content/index.md +84 -0
- package/templates/sveltekit/src/content/installation.md +327 -0
- package/templates/sveltekit/src/content/theming.md +189 -0
- package/templates/sveltekit/src/content/typography.md +150 -0
- package/templates/sveltekit/src/index.test.ts +7 -0
- package/templates/sveltekit/src/lib/components/docs/Callout.svelte +17 -0
- package/templates/sveltekit/src/lib/components/docs/CodeBlockWrapper.svelte +30 -0
- package/templates/sveltekit/src/lib/components/docs/ComponentExample.svelte +55 -0
- package/templates/sveltekit/src/lib/components/docs/ComponentSource.svelte +14 -0
- package/templates/sveltekit/src/lib/components/docs/CopyButton.svelte +39 -0
- package/templates/sveltekit/src/lib/components/docs/DocsPager.svelte +51 -0
- package/templates/sveltekit/src/lib/components/docs/HexToChannels.svelte +38 -0
- package/templates/sveltekit/src/lib/components/docs/ManualInstall.svelte +17 -0
- package/templates/sveltekit/src/lib/components/docs/Metadata.svelte +34 -0
- package/templates/sveltekit/src/lib/components/docs/SiteFooter.svelte +42 -0
- package/templates/sveltekit/src/lib/components/docs/SiteHeader.svelte +51 -0
- package/templates/sveltekit/src/lib/components/docs/Steps.svelte +3 -0
- package/templates/sveltekit/src/lib/components/docs/TableOfContents.svelte +55 -0
- package/templates/sveltekit/src/lib/components/docs/TailwindIndicator.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/Tree.svelte +31 -0
- package/templates/sveltekit/src/lib/components/docs/charts/Bar.svelte +152 -0
- package/templates/sveltekit/src/lib/components/docs/dashboard/DashboardPage.svelte +124 -0
- package/templates/sveltekit/src/lib/components/docs/dashboard/MainNav.svelte +31 -0
- package/templates/sveltekit/src/lib/components/docs/dashboard/Overview.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/dashboard/RecentSales.svelte +61 -0
- package/templates/sveltekit/src/lib/components/docs/dashboard/Search.svelte +7 -0
- package/templates/sveltekit/src/lib/components/docs/dashboard/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/accordion/AccordionDemo.svelte +27 -0
- package/templates/sveltekit/src/lib/components/docs/examples/accordion/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/alert/AlertDemo.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/examples/alert/AlertDemoDestructive.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/examples/alert/index.ts +2 -0
- package/templates/sveltekit/src/lib/components/docs/examples/alert-dialog/AlertDialogDemo.svelte +33 -0
- package/templates/sveltekit/src/lib/components/docs/examples/alert-dialog/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/aspect-ratio/AspectRatioDemo.svelte +11 -0
- package/templates/sveltekit/src/lib/components/docs/examples/aspect-ratio/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/avatar/AvatarDemo.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/avatar/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/badge/BadgeDemo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/badge/BadgeDemoDestructive.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/badge/BadgeDemoOutline.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/badge/BadgeDemoSecondary.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/badge/index.ts +4 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoDestructive.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoGhost.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoIcon.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoLink.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoLoading.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoOutline.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/ButtonDemoSecondary.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/button/index.ts +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/card/CardDemo.svelte +65 -0
- package/templates/sveltekit/src/lib/components/docs/examples/card/CardDemoForm.svelte +0 -0
- package/templates/sveltekit/src/lib/components/docs/examples/card/index.ts +2 -0
- package/templates/sveltekit/src/lib/components/docs/examples/checkbox/CheckboxDemo.svelte +13 -0
- package/templates/sveltekit/src/lib/components/docs/examples/checkbox/CheckboxDemoDisabled.svelte +13 -0
- package/templates/sveltekit/src/lib/components/docs/examples/checkbox/CheckboxDemoText.svelte +18 -0
- package/templates/sveltekit/src/lib/components/docs/examples/checkbox/index.ts +3 -0
- package/templates/sveltekit/src/lib/components/docs/examples/collapsible/CollapsibleDemo.svelte +24 -0
- package/templates/sveltekit/src/lib/components/docs/examples/collapsible/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/dialog/DialogDemo.svelte +41 -0
- package/templates/sveltekit/src/lib/components/docs/examples/dialog/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/hover-card/HoverCardDemo.svelte +28 -0
- package/templates/sveltekit/src/lib/components/docs/examples/hover-card/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/index.ts +27 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/InputDemo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/InputDemoButton.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/InputDemoDisabled.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/InputDemoFile.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/InputDemoLabel.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/InputDemoText.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/examples/input/index.ts +6 -0
- package/templates/sveltekit/src/lib/components/docs/examples/label/LabelDemo.svelte +11 -0
- package/templates/sveltekit/src/lib/components/docs/examples/label/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/progress/ProgressDemo.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/examples/progress/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/radio-group/RadioGroupDemo.svelte +19 -0
- package/templates/sveltekit/src/lib/components/docs/examples/radio-group/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/separator/SeparatorDemo.svelte +18 -0
- package/templates/sveltekit/src/lib/components/docs/examples/separator/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/sheet/SheetDemo.svelte +44 -0
- package/templates/sveltekit/src/lib/components/docs/examples/sheet/SheetPositionDemo.svelte +62 -0
- package/templates/sveltekit/src/lib/components/docs/examples/sheet/SheetSizeDemo.svelte +62 -0
- package/templates/sveltekit/src/lib/components/docs/examples/sheet/index.ts +3 -0
- package/templates/sveltekit/src/lib/components/docs/examples/skeleton/SkeletonDemo.svelte +11 -0
- package/templates/sveltekit/src/lib/components/docs/examples/skeleton/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/slider/SliderDemo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/slider/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/switch/SwitchDemo.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/switch/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/table/TableDemo.svelte +78 -0
- package/templates/sveltekit/src/lib/components/docs/examples/table/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/tabs/TabsDemo.svelte +67 -0
- package/templates/sveltekit/src/lib/components/docs/examples/tabs/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/textarea/TextareaDemo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/textarea/TextareaDemoButton.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/textarea/TextareaDemoDisabled.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/textarea/TextareaDemoLabel.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/textarea/TextareaDemoText.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/examples/textarea/index.ts +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/ToggleDemo.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/ToggleDemoDisabled.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/ToggleDemoLg.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/ToggleDemoOutline.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/ToggleDemoSm.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/ToggleDemoText.svelte +9 -0
- package/templates/sveltekit/src/lib/components/docs/examples/toggle/index.ts +6 -0
- package/templates/sveltekit/src/lib/components/docs/examples/tooltip/TooltipDemo.svelte +19 -0
- package/templates/sveltekit/src/lib/components/docs/examples/tooltip/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/BlockquoteDemo.svelte +4 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/H1Demo.svelte +3 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/H2Demo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/H3Demo.svelte +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/H4Demo.svelte +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/InlineCodeDemo.svelte +3 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/LargeDemo.svelte +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/LeadDemo.svelte +3 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/ListDemo.svelte +5 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/MutedDemo.svelte +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/PDemo.svelte +4 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/SmallDemo.svelte +1 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/TableDemo.svelte +56 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/TypographyDemo.svelte +117 -0
- package/templates/sveltekit/src/lib/components/docs/examples/typography/index.ts +14 -0
- package/templates/sveltekit/src/lib/components/docs/examples-nav/ExampleCodeLink.svelte +19 -0
- package/templates/sveltekit/src/lib/components/docs/examples-nav/ExamplesNav.svelte +27 -0
- package/templates/sveltekit/src/lib/components/docs/examples-nav/index.ts +2 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Apple.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Aria.svelte +11 -0
- package/templates/sveltekit/src/lib/components/docs/icons/GitHub.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Google.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Logo.svelte +17 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Minimize.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Npm.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/PayPal.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Pnpm.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Radix.svelte +14 -0
- package/templates/sveltekit/src/lib/components/docs/icons/RadixSvelte.svelte +14 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Tailwind.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/Yarn.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/icons/index.ts +78 -0
- package/templates/sveltekit/src/lib/components/docs/index.ts +23 -0
- package/templates/sveltekit/src/lib/components/docs/light-switch/LightSwitch.svelte +75 -0
- package/templates/sveltekit/src/lib/components/docs/light-switch/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/docs/light-switch/light-switch.ts +87 -0
- package/templates/sveltekit/src/lib/components/docs/light-switch/local-storage-store.ts +81 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/a.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/blockquote.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/h1.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/h2.svelte +16 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/h3.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/h4.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/h5.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/h6.svelte +13 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/hr.svelte +8 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/img.svelte +11 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/index.ts +19 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/li.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/mdsvex.svelte +37 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/ol.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/p.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/pre.svelte +24 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/table.svelte +12 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/td.svelte +16 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/th.svelte +16 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/tr.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/mdsvex/ul.svelte +10 -0
- package/templates/sveltekit/src/lib/components/docs/nav/DocsSidebarNav.svelte +24 -0
- package/templates/sveltekit/src/lib/components/docs/nav/DocsSidebarNavItems.svelte +43 -0
- package/templates/sveltekit/src/lib/components/docs/nav/MainNav.svelte +31 -0
- package/templates/sveltekit/src/lib/components/docs/nav/MobileLink.svelte +19 -0
- package/templates/sveltekit/src/lib/components/docs/nav/MobileNav.svelte +56 -0
- package/templates/sveltekit/src/lib/components/docs/nav/index.ts +4 -0
- package/templates/sveltekit/src/lib/components/docs/page-header/PageHeader.svelte +13 -0
- package/templates/sveltekit/src/lib/components/docs/page-header/PageHeaderDescription.svelte +13 -0
- package/templates/sveltekit/src/lib/components/docs/page-header/PageHeaderHeading.svelte +16 -0
- package/templates/sveltekit/src/lib/components/docs/page-header/index.ts +3 -0
- package/templates/sveltekit/src/lib/components/ui/accordion/Accordion.svelte +11 -0
- package/templates/sveltekit/src/lib/components/ui/accordion/AccordionContent.svelte +19 -0
- package/templates/sveltekit/src/lib/components/ui/accordion/AccordionItem.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/accordion/AccordionTrigger.svelte +21 -0
- package/templates/sveltekit/src/lib/components/ui/accordion/index.ts +4 -0
- package/templates/sveltekit/src/lib/components/ui/alert/Alert.svelte +29 -0
- package/templates/sveltekit/src/lib/components/ui/alert/AlertDescription.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/alert/AlertTitle.svelte +15 -0
- package/templates/sveltekit/src/lib/components/ui/alert/index.ts +3 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogAction.svelte +12 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogCancel.svelte +15 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogContent.svelte +22 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogDescription.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogFooter.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogHeader.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogOverlay.svelte +15 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogPortal.svelte +9 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/AlertDialogTitle.svelte +11 -0
- package/templates/sveltekit/src/lib/components/ui/alert-dialog/index.ts +12 -0
- package/templates/sveltekit/src/lib/components/ui/aspect-ratio/AspectRatio.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/aspect-ratio/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/avatar/Avatar.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/avatar/AvatarFallback.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/avatar/AvatarImage.svelte +17 -0
- package/templates/sveltekit/src/lib/components/ui/avatar/index.ts +3 -0
- package/templates/sveltekit/src/lib/components/ui/badge/Badge.svelte +39 -0
- package/templates/sveltekit/src/lib/components/ui/badge/index.ts +21 -0
- package/templates/sveltekit/src/lib/components/ui/button/Button.svelte +47 -0
- package/templates/sveltekit/src/lib/components/ui/button/index.ts +28 -0
- package/templates/sveltekit/src/lib/components/ui/card/Card.svelte +18 -0
- package/templates/sveltekit/src/lib/components/ui/card/CardContent.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/card/CardDescription.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/card/CardFooter.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/card/CardHeader.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/card/CardTitle.svelte +16 -0
- package/templates/sveltekit/src/lib/components/ui/card/index.ts +6 -0
- package/templates/sveltekit/src/lib/components/ui/checkbox/Checkbox.svelte +23 -0
- package/templates/sveltekit/src/lib/components/ui/checkbox/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/collapsible/index.ts +7 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogContent.svelte +29 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogDescription.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogFooter.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogHeader.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogOverlay.svelte +15 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogPortal.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/DialogTitle.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/dialog/index.ts +12 -0
- package/templates/sveltekit/src/lib/components/ui/hover-card/HoverCardContent.svelte +24 -0
- package/templates/sveltekit/src/lib/components/ui/hover-card/index.ts +6 -0
- package/templates/sveltekit/src/lib/components/ui/input/Input.svelte +30 -0
- package/templates/sveltekit/src/lib/components/ui/input/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/label/Label.svelte +16 -0
- package/templates/sveltekit/src/lib/components/ui/label/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/progress/Progress.svelte +22 -0
- package/templates/sveltekit/src/lib/components/ui/progress/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/radio-group/RadioGroup.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/radio-group/RadioGroupItem.svelte +23 -0
- package/templates/sveltekit/src/lib/components/ui/radio-group/index.ts +2 -0
- package/templates/sveltekit/src/lib/components/ui/select/SelectContent.svelte +26 -0
- package/templates/sveltekit/src/lib/components/ui/select/SelectItem.svelte +29 -0
- package/templates/sveltekit/src/lib/components/ui/select/SelectLabel.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/select/SelectSeparator.svelte +9 -0
- package/templates/sveltekit/src/lib/components/ui/select/SelectTrigger.svelte +21 -0
- package/templates/sveltekit/src/lib/components/ui/select/index.ts +10 -0
- package/templates/sveltekit/src/lib/components/ui/separator/Separator.svelte +22 -0
- package/templates/sveltekit/src/lib/components/ui/separator/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetContent.svelte +27 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetDescription.svelte +11 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetFooter.svelte +13 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetHeader.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetOverlay.svelte +15 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetPortal.svelte +28 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/SheetTitle.svelte +14 -0
- package/templates/sveltekit/src/lib/components/ui/sheet/index.ts +102 -0
- package/templates/sveltekit/src/lib/components/ui/skeleton/Skeleton.svelte +8 -0
- package/templates/sveltekit/src/lib/components/ui/skeleton/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/slider/Slider.svelte +22 -0
- package/templates/sveltekit/src/lib/components/ui/slider/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/switch/Switch.svelte +32 -0
- package/templates/sveltekit/src/lib/components/ui/switch/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/table/Table.svelte +12 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableBody.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableCaption.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableCell.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableFooter.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableHead.svelte +16 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableHeader.svelte +10 -0
- package/templates/sveltekit/src/lib/components/ui/table/TableRow.svelte +16 -0
- package/templates/sveltekit/src/lib/components/ui/table/index.ts +8 -0
- package/templates/sveltekit/src/lib/components/ui/tabs/TabsContent.svelte +20 -0
- package/templates/sveltekit/src/lib/components/ui/tabs/TabsList.svelte +17 -0
- package/templates/sveltekit/src/lib/components/ui/tabs/TabsTrigger.svelte +20 -0
- package/templates/sveltekit/src/lib/components/ui/tabs/index.ts +7 -0
- package/templates/sveltekit/src/lib/components/ui/textarea/Textarea.svelte +30 -0
- package/templates/sveltekit/src/lib/components/ui/textarea/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/toggle/Toggle.svelte +44 -0
- package/templates/sveltekit/src/lib/components/ui/toggle/index.ts +1 -0
- package/templates/sveltekit/src/lib/components/ui/tooltip/TooltipContent.svelte +22 -0
- package/templates/sveltekit/src/lib/components/ui/tooltip/index.ts +6 -0
- package/templates/sveltekit/src/lib/config/components.ts +306 -0
- package/templates/sveltekit/src/lib/config/docs.ts +356 -0
- package/templates/sveltekit/src/lib/config/site.ts +15 -0
- package/templates/sveltekit/src/lib/types/docs.ts +50 -0
- package/templates/sveltekit/src/lib/types/nav.ts +18 -0
- package/templates/sveltekit/src/lib/utils.ts +75 -0
- package/templates/sveltekit/src/routes/+layout.svelte +99 -0
- package/templates/sveltekit/src/routes/+layout.ts +4 -0
- package/templates/sveltekit/src/routes/+page.svelte +0 -0
- package/templates/sveltekit/src/routes/+page.ts +6 -0
- package/templates/sveltekit/src/routes/authentication/+page.svelte +73 -0
- package/templates/sveltekit/src/routes/authentication/+page.ts +7 -0
- package/templates/sveltekit/src/routes/authentication/UserAuthForm.svelte +61 -0
- package/templates/sveltekit/src/routes/cards/+page.svelte +44 -0
- package/templates/sveltekit/src/routes/cards/+page.ts +7 -0
- package/templates/sveltekit/src/routes/cards/CookieSettings.svelte +52 -0
- package/templates/sveltekit/src/routes/cards/CreateAccount.svelte +52 -0
- package/templates/sveltekit/src/routes/cards/DemoContainer.svelte +10 -0
- package/templates/sveltekit/src/routes/cards/Notifications.svelte +38 -0
- package/templates/sveltekit/src/routes/cards/PaymentMethod.svelte +110 -0
- package/templates/sveltekit/src/routes/cards/ReportAnIssue.svelte +71 -0
- package/templates/sveltekit/src/routes/cards/ShareDocument.svelte +91 -0
- package/templates/sveltekit/src/routes/dashboard/+page.svelte +5 -0
- package/templates/sveltekit/src/routes/dashboard/+page.ts +7 -0
- package/templates/sveltekit/src/routes/forms/+page.svelte +0 -0
- package/templates/sveltekit/src/routes/music/+page.svelte +0 -0
- package/templates/sveltekit/src/routes/music/albums.ts +61 -0
- package/templates/sveltekit/src/routes/music/playlists.ts +16 -0
- package/templates/sveltekit/src/routes/playground/+page.svelte +0 -0
- package/templates/sveltekit/src/routes/tasks/+page.svelte +0 -0
- package/templates/sveltekit/src/styles/globals.css +125 -0
- package/templates/sveltekit/src/styles/mdsvex.css +80 -0
- package/templates/sveltekit/src-tauri/Cargo.lock +3639 -0
- package/templates/sveltekit/src-tauri/Cargo.toml +34 -0
- package/templates/sveltekit/src-tauri/build.rs +3 -0
- package/templates/sveltekit/src-tauri/icons/128x128.png +0 -0
- package/templates/sveltekit/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/32x32.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/sveltekit/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/sveltekit/src-tauri/icons/icon.icns +0 -0
- package/templates/sveltekit/src-tauri/icons/icon.ico +0 -0
- package/templates/sveltekit/src-tauri/icons/icon.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/sveltekit/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/sveltekit/src-tauri/src/main.rs +16 -0
- package/templates/sveltekit/src-tauri/tauri.conf.json +62 -0
- package/templates/sveltekit/static/avatars/01.png +0 -0
- package/templates/sveltekit/static/avatars/02.png +0 -0
- package/templates/sveltekit/static/avatars/03.png +0 -0
- package/templates/sveltekit/static/avatars/04.png +0 -0
- package/templates/sveltekit/static/avatars/05.png +0 -0
- package/templates/sveltekit/static/favicon.ico +0 -0
- package/templates/sveltekit/svelte.config.js +22 -0
- package/templates/sveltekit/tailwind.config.js +64 -0
- package/templates/sveltekit/tsconfig.json +13 -0
- package/templates/sveltekit/vite.config.js +6 -0
- package/templates/vite/package.json +31 -31
- package/templates/vite/pnpm-lock.yaml +931 -493
- package/templates/vite/src-tauri/Cargo.lock +24 -24
|
@@ -6,91 +6,91 @@ dependencies:
|
|
|
6
6
|
version: 8.0.1
|
|
7
7
|
'@hookform/resolvers':
|
|
8
8
|
specifier: ^3.1.0
|
|
9
|
-
version: 3.1.0(react-hook-form@7.
|
|
9
|
+
version: 3.1.0(react-hook-form@7.44.1)
|
|
10
10
|
'@radix-ui/react-accessible-icon':
|
|
11
|
-
specifier: ^1.0.
|
|
12
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
11
|
+
specifier: ^1.0.3
|
|
12
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
13
13
|
'@radix-ui/react-accordion':
|
|
14
|
-
specifier: ^1.1.
|
|
15
|
-
version: 1.1.
|
|
14
|
+
specifier: ^1.1.2
|
|
15
|
+
version: 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
16
16
|
'@radix-ui/react-alert-dialog':
|
|
17
|
-
specifier: ^1.0.
|
|
18
|
-
version: 1.0.
|
|
17
|
+
specifier: ^1.0.4
|
|
18
|
+
version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
19
19
|
'@radix-ui/react-aspect-ratio':
|
|
20
|
-
specifier: ^1.0.
|
|
21
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
20
|
+
specifier: ^1.0.3
|
|
21
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
22
22
|
'@radix-ui/react-avatar':
|
|
23
|
-
specifier: ^1.0.2
|
|
24
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
25
|
-
'@radix-ui/react-checkbox':
|
|
26
23
|
specifier: ^1.0.3
|
|
27
|
-
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
24
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
25
|
+
'@radix-ui/react-checkbox':
|
|
26
|
+
specifier: ^1.0.4
|
|
27
|
+
version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
28
28
|
'@radix-ui/react-collapsible':
|
|
29
|
-
specifier: ^1.0.
|
|
30
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
29
|
+
specifier: ^1.0.3
|
|
30
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
31
31
|
'@radix-ui/react-context-menu':
|
|
32
|
-
specifier: ^2.1.
|
|
33
|
-
version: 2.1.
|
|
32
|
+
specifier: ^2.1.4
|
|
33
|
+
version: 2.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
34
34
|
'@radix-ui/react-dialog':
|
|
35
|
-
specifier: ^1.0.
|
|
36
|
-
version: 1.0.
|
|
35
|
+
specifier: ^1.0.4
|
|
36
|
+
version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
37
37
|
'@radix-ui/react-dropdown-menu':
|
|
38
|
-
specifier: ^2.0.
|
|
39
|
-
version: 2.0.4(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
38
|
+
specifier: ^2.0.5
|
|
39
|
+
version: 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
40
40
|
'@radix-ui/react-hover-card':
|
|
41
|
-
specifier: ^1.0.
|
|
42
|
-
version: 1.0.
|
|
41
|
+
specifier: ^1.0.6
|
|
42
|
+
version: 1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
43
43
|
'@radix-ui/react-label':
|
|
44
|
-
specifier: ^2.0.
|
|
45
|
-
version: 2.0.
|
|
44
|
+
specifier: ^2.0.2
|
|
45
|
+
version: 2.0.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
46
46
|
'@radix-ui/react-menubar':
|
|
47
|
-
specifier: ^1.0.
|
|
48
|
-
version: 1.0.2(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
47
|
+
specifier: ^1.0.3
|
|
48
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
49
49
|
'@radix-ui/react-navigation-menu':
|
|
50
|
-
specifier: ^1.1.
|
|
51
|
-
version: 1.1.2(react-dom@18.2.0)(react@18.2.0)
|
|
50
|
+
specifier: ^1.1.3
|
|
51
|
+
version: 1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
52
52
|
'@radix-ui/react-popover':
|
|
53
|
-
specifier: ^1.0.
|
|
54
|
-
version: 1.0.
|
|
53
|
+
specifier: ^1.0.6
|
|
54
|
+
version: 1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
55
55
|
'@radix-ui/react-progress':
|
|
56
|
-
specifier: ^1.0.
|
|
57
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
56
|
+
specifier: ^1.0.3
|
|
57
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
58
58
|
'@radix-ui/react-radio-group':
|
|
59
|
-
specifier: ^1.1.
|
|
60
|
-
version: 1.1.2(react-dom@18.2.0)(react@18.2.0)
|
|
59
|
+
specifier: ^1.1.3
|
|
60
|
+
version: 1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
61
61
|
'@radix-ui/react-scroll-area':
|
|
62
|
-
specifier: ^1.0.
|
|
63
|
-
version: 1.0.
|
|
62
|
+
specifier: ^1.0.4
|
|
63
|
+
version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
64
64
|
'@radix-ui/react-select':
|
|
65
|
-
specifier: ^1.2.
|
|
66
|
-
version: 1.2.
|
|
65
|
+
specifier: ^1.2.2
|
|
66
|
+
version: 1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
67
67
|
'@radix-ui/react-separator':
|
|
68
|
-
specifier: ^1.0.
|
|
69
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
68
|
+
specifier: ^1.0.3
|
|
69
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
70
70
|
'@radix-ui/react-slider':
|
|
71
|
-
specifier: ^1.1.
|
|
72
|
-
version: 1.1.
|
|
71
|
+
specifier: ^1.1.2
|
|
72
|
+
version: 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
73
73
|
'@radix-ui/react-slot':
|
|
74
|
-
specifier: ^1.0.1
|
|
75
|
-
version: 1.0.1(react@18.2.0)
|
|
76
|
-
'@radix-ui/react-switch':
|
|
77
74
|
specifier: ^1.0.2
|
|
78
|
-
version: 1.0.2(react
|
|
79
|
-
'@radix-ui/react-
|
|
75
|
+
version: 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
76
|
+
'@radix-ui/react-switch':
|
|
80
77
|
specifier: ^1.0.3
|
|
81
|
-
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
78
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
79
|
+
'@radix-ui/react-tabs':
|
|
80
|
+
specifier: ^1.0.4
|
|
81
|
+
version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
82
82
|
'@radix-ui/react-toast':
|
|
83
|
-
specifier: ^1.1.
|
|
84
|
-
version: 1.1.
|
|
83
|
+
specifier: ^1.1.4
|
|
84
|
+
version: 1.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
85
85
|
'@radix-ui/react-toggle':
|
|
86
|
-
specifier: ^1.0.2
|
|
87
|
-
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
88
|
-
'@radix-ui/react-toggle-group':
|
|
89
86
|
specifier: ^1.0.3
|
|
90
|
-
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
87
|
+
version: 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
88
|
+
'@radix-ui/react-toggle-group':
|
|
89
|
+
specifier: ^1.0.4
|
|
90
|
+
version: 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
91
91
|
'@radix-ui/react-tooltip':
|
|
92
|
-
specifier: ^1.0.
|
|
93
|
-
version: 1.0.
|
|
92
|
+
specifier: ^1.0.6
|
|
93
|
+
version: 1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
94
94
|
'@tailwindcss/line-clamp':
|
|
95
95
|
specifier: ^0.4.4
|
|
96
96
|
version: 0.4.4(tailwindcss@3.3.2)
|
|
@@ -122,11 +122,11 @@ dependencies:
|
|
|
122
122
|
specifier: ^4.0.2
|
|
123
123
|
version: 4.0.2
|
|
124
124
|
next:
|
|
125
|
-
specifier: ^13.4.4
|
|
126
|
-
version: 13.4.4
|
|
125
|
+
specifier: ^13.4.4
|
|
126
|
+
version: 13.4.4(@babel/core@7.22.1)(react-dom@18.2.0)(react@18.2.0)
|
|
127
127
|
next-themes:
|
|
128
128
|
specifier: ^0.2.1
|
|
129
|
-
version: 0.2.1(next@13.4.4
|
|
129
|
+
version: 0.2.1(next@13.4.4)(react-dom@18.2.0)(react@18.2.0)
|
|
130
130
|
react:
|
|
131
131
|
specifier: ^18.2.0
|
|
132
132
|
version: 18.2.0
|
|
@@ -137,8 +137,8 @@ dependencies:
|
|
|
137
137
|
specifier: ^18.2.0
|
|
138
138
|
version: 18.2.0(react@18.2.0)
|
|
139
139
|
react-hook-form:
|
|
140
|
-
specifier: ^7.
|
|
141
|
-
version: 7.
|
|
140
|
+
specifier: ^7.44.1
|
|
141
|
+
version: 7.44.1(react@18.2.0)
|
|
142
142
|
react-wrap-balancer:
|
|
143
143
|
specifier: ^0.5.0
|
|
144
144
|
version: 0.5.0(react@18.2.0)
|
|
@@ -157,14 +157,14 @@ dependencies:
|
|
|
157
157
|
|
|
158
158
|
devDependencies:
|
|
159
159
|
'@ianvs/prettier-plugin-sort-imports':
|
|
160
|
-
specifier: ^
|
|
161
|
-
version:
|
|
160
|
+
specifier: ^4.0.0
|
|
161
|
+
version: 4.0.0(prettier@2.8.8)
|
|
162
162
|
'@tauri-apps/cli':
|
|
163
163
|
specifier: 2.0.0-alpha.9
|
|
164
164
|
version: 2.0.0-alpha.9
|
|
165
165
|
'@types/node':
|
|
166
|
-
specifier: ^20.2.
|
|
167
|
-
version: 20.2.
|
|
166
|
+
specifier: ^20.2.5
|
|
167
|
+
version: 20.2.5
|
|
168
168
|
'@types/react':
|
|
169
169
|
specifier: ^18.2.7
|
|
170
170
|
version: 18.2.7
|
|
@@ -182,7 +182,7 @@ devDependencies:
|
|
|
182
182
|
version: 2.8.8
|
|
183
183
|
prettier-plugin-tailwindcss:
|
|
184
184
|
specifier: ^0.3.0
|
|
185
|
-
version: 0.3.0(@ianvs/prettier-plugin-sort-imports@
|
|
185
|
+
version: 0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.0)(prettier@2.8.8)
|
|
186
186
|
tailwind-scrollbar:
|
|
187
187
|
specifier: ^3.0.4
|
|
188
188
|
version: 3.0.4(tailwindcss@3.3.2)
|
|
@@ -224,24 +224,24 @@ packages:
|
|
|
224
224
|
dependencies:
|
|
225
225
|
'@babel/highlight': 7.18.6
|
|
226
226
|
|
|
227
|
-
/@babel/compat-data@7.
|
|
228
|
-
resolution: {integrity: sha512
|
|
227
|
+
/@babel/compat-data@7.22.0:
|
|
228
|
+
resolution: {integrity: sha512-OgCMbbNCD/iA8cjMt+Zhp+nIC7XKaEaTG8zjvZPjGbhkppq1NIMWiZn7EaZRxUDHn4Ul265scRqg94N2WiFaGw==}
|
|
229
229
|
engines: {node: '>=6.9.0'}
|
|
230
230
|
|
|
231
|
-
/@babel/core@7.
|
|
232
|
-
resolution: {integrity: sha512-
|
|
231
|
+
/@babel/core@7.22.1:
|
|
232
|
+
resolution: {integrity: sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==}
|
|
233
233
|
engines: {node: '>=6.9.0'}
|
|
234
234
|
dependencies:
|
|
235
235
|
'@ampproject/remapping': 2.2.1
|
|
236
236
|
'@babel/code-frame': 7.21.4
|
|
237
|
-
'@babel/generator': 7.
|
|
238
|
-
'@babel/helper-compilation-targets': 7.
|
|
239
|
-
'@babel/helper-module-transforms': 7.
|
|
240
|
-
'@babel/helpers': 7.
|
|
241
|
-
'@babel/parser': 7.
|
|
242
|
-
'@babel/template': 7.
|
|
243
|
-
'@babel/traverse': 7.
|
|
244
|
-
'@babel/types': 7.
|
|
237
|
+
'@babel/generator': 7.22.0
|
|
238
|
+
'@babel/helper-compilation-targets': 7.22.1(@babel/core@7.22.1)
|
|
239
|
+
'@babel/helper-module-transforms': 7.22.1
|
|
240
|
+
'@babel/helpers': 7.22.0
|
|
241
|
+
'@babel/parser': 7.22.0
|
|
242
|
+
'@babel/template': 7.21.9
|
|
243
|
+
'@babel/traverse': 7.22.1
|
|
244
|
+
'@babel/types': 7.22.0
|
|
245
245
|
convert-source-map: 1.9.0
|
|
246
246
|
debug: 4.3.4
|
|
247
247
|
gensync: 1.0.0-beta.2
|
|
@@ -250,80 +250,80 @@ packages:
|
|
|
250
250
|
transitivePeerDependencies:
|
|
251
251
|
- supports-color
|
|
252
252
|
|
|
253
|
-
/@babel/generator@7.
|
|
254
|
-
resolution: {integrity: sha512-
|
|
253
|
+
/@babel/generator@7.22.0:
|
|
254
|
+
resolution: {integrity: sha512-tyzR0OsH88AelgukhL2rbEUCLKBGmy2G9Th/5vpyOt0zf44Be61kvIQXjCwTSX8t+qJ/vMwZfhK6mPdrMLZXRg==}
|
|
255
255
|
engines: {node: '>=6.9.0'}
|
|
256
256
|
dependencies:
|
|
257
|
-
'@babel/types': 7.
|
|
257
|
+
'@babel/types': 7.22.0
|
|
258
258
|
'@jridgewell/gen-mapping': 0.3.3
|
|
259
259
|
'@jridgewell/trace-mapping': 0.3.18
|
|
260
260
|
jsesc: 2.5.2
|
|
261
261
|
|
|
262
|
-
/@babel/helper-compilation-targets@7.
|
|
263
|
-
resolution: {integrity: sha512-
|
|
262
|
+
/@babel/helper-compilation-targets@7.22.1(@babel/core@7.22.1):
|
|
263
|
+
resolution: {integrity: sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==}
|
|
264
264
|
engines: {node: '>=6.9.0'}
|
|
265
265
|
peerDependencies:
|
|
266
266
|
'@babel/core': ^7.0.0
|
|
267
267
|
dependencies:
|
|
268
|
-
'@babel/compat-data': 7.
|
|
269
|
-
'@babel/core': 7.
|
|
268
|
+
'@babel/compat-data': 7.22.0
|
|
269
|
+
'@babel/core': 7.22.1
|
|
270
270
|
'@babel/helper-validator-option': 7.21.0
|
|
271
271
|
browserslist: 4.21.5
|
|
272
272
|
lru-cache: 5.1.1
|
|
273
273
|
semver: 6.3.0
|
|
274
274
|
|
|
275
|
-
/@babel/helper-environment-visitor@7.
|
|
276
|
-
resolution: {integrity: sha512-
|
|
275
|
+
/@babel/helper-environment-visitor@7.22.1:
|
|
276
|
+
resolution: {integrity: sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==}
|
|
277
277
|
engines: {node: '>=6.9.0'}
|
|
278
278
|
|
|
279
279
|
/@babel/helper-function-name@7.21.0:
|
|
280
280
|
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
|
|
281
281
|
engines: {node: '>=6.9.0'}
|
|
282
282
|
dependencies:
|
|
283
|
-
'@babel/template': 7.
|
|
284
|
-
'@babel/types': 7.
|
|
283
|
+
'@babel/template': 7.21.9
|
|
284
|
+
'@babel/types': 7.22.0
|
|
285
285
|
|
|
286
286
|
/@babel/helper-hoist-variables@7.18.6:
|
|
287
287
|
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
|
|
288
288
|
engines: {node: '>=6.9.0'}
|
|
289
289
|
dependencies:
|
|
290
|
-
'@babel/types': 7.
|
|
290
|
+
'@babel/types': 7.22.0
|
|
291
291
|
|
|
292
292
|
/@babel/helper-module-imports@7.21.4:
|
|
293
293
|
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
|
|
294
294
|
engines: {node: '>=6.9.0'}
|
|
295
295
|
dependencies:
|
|
296
|
-
'@babel/types': 7.
|
|
296
|
+
'@babel/types': 7.22.0
|
|
297
297
|
|
|
298
|
-
/@babel/helper-module-transforms@7.
|
|
299
|
-
resolution: {integrity: sha512-
|
|
298
|
+
/@babel/helper-module-transforms@7.22.1:
|
|
299
|
+
resolution: {integrity: sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==}
|
|
300
300
|
engines: {node: '>=6.9.0'}
|
|
301
301
|
dependencies:
|
|
302
|
-
'@babel/helper-environment-visitor': 7.
|
|
302
|
+
'@babel/helper-environment-visitor': 7.22.1
|
|
303
303
|
'@babel/helper-module-imports': 7.21.4
|
|
304
|
-
'@babel/helper-simple-access': 7.
|
|
304
|
+
'@babel/helper-simple-access': 7.21.5
|
|
305
305
|
'@babel/helper-split-export-declaration': 7.18.6
|
|
306
306
|
'@babel/helper-validator-identifier': 7.19.1
|
|
307
|
-
'@babel/template': 7.
|
|
308
|
-
'@babel/traverse': 7.
|
|
309
|
-
'@babel/types': 7.
|
|
307
|
+
'@babel/template': 7.21.9
|
|
308
|
+
'@babel/traverse': 7.22.1
|
|
309
|
+
'@babel/types': 7.22.0
|
|
310
310
|
transitivePeerDependencies:
|
|
311
311
|
- supports-color
|
|
312
312
|
|
|
313
|
-
/@babel/helper-simple-access@7.
|
|
314
|
-
resolution: {integrity: sha512
|
|
313
|
+
/@babel/helper-simple-access@7.21.5:
|
|
314
|
+
resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==}
|
|
315
315
|
engines: {node: '>=6.9.0'}
|
|
316
316
|
dependencies:
|
|
317
|
-
'@babel/types': 7.
|
|
317
|
+
'@babel/types': 7.22.0
|
|
318
318
|
|
|
319
319
|
/@babel/helper-split-export-declaration@7.18.6:
|
|
320
320
|
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
|
|
321
321
|
engines: {node: '>=6.9.0'}
|
|
322
322
|
dependencies:
|
|
323
|
-
'@babel/types': 7.
|
|
323
|
+
'@babel/types': 7.22.0
|
|
324
324
|
|
|
325
|
-
/@babel/helper-string-parser@7.
|
|
326
|
-
resolution: {integrity: sha512-
|
|
325
|
+
/@babel/helper-string-parser@7.21.5:
|
|
326
|
+
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
|
|
327
327
|
engines: {node: '>=6.9.0'}
|
|
328
328
|
|
|
329
329
|
/@babel/helper-validator-identifier@7.19.1:
|
|
@@ -334,13 +334,13 @@ packages:
|
|
|
334
334
|
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
|
|
335
335
|
engines: {node: '>=6.9.0'}
|
|
336
336
|
|
|
337
|
-
/@babel/helpers@7.
|
|
338
|
-
resolution: {integrity: sha512-
|
|
337
|
+
/@babel/helpers@7.22.0:
|
|
338
|
+
resolution: {integrity: sha512-I/hZCYErxdjuUnJpJxHmCESB3AdcOAFjj+K6+of9JyWBeAhggR9NQoUHI481pRNH87cx77mbpx0cygzXlvGayA==}
|
|
339
339
|
engines: {node: '>=6.9.0'}
|
|
340
340
|
dependencies:
|
|
341
|
-
'@babel/template': 7.
|
|
342
|
-
'@babel/traverse': 7.
|
|
343
|
-
'@babel/types': 7.
|
|
341
|
+
'@babel/template': 7.21.9
|
|
342
|
+
'@babel/traverse': 7.22.1
|
|
343
|
+
'@babel/types': 7.22.0
|
|
344
344
|
transitivePeerDependencies:
|
|
345
345
|
- supports-color
|
|
346
346
|
|
|
@@ -352,12 +352,12 @@ packages:
|
|
|
352
352
|
chalk: 2.4.2
|
|
353
353
|
js-tokens: 4.0.0
|
|
354
354
|
|
|
355
|
-
/@babel/parser@7.
|
|
356
|
-
resolution: {integrity: sha512-
|
|
355
|
+
/@babel/parser@7.22.0:
|
|
356
|
+
resolution: {integrity: sha512-DA65VCJRetcFmJnt9/hEmRvXNCwk0V86dxG6p6N13hzDazaLRjGdTGPGgjxZOtLuFgWzOSRX4grybmRXwQ9bSg==}
|
|
357
357
|
engines: {node: '>=6.0.0'}
|
|
358
358
|
hasBin: true
|
|
359
359
|
dependencies:
|
|
360
|
-
'@babel/types': 7.
|
|
360
|
+
'@babel/types': 7.22.0
|
|
361
361
|
|
|
362
362
|
/@babel/runtime@7.21.0:
|
|
363
363
|
resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
|
|
@@ -366,36 +366,36 @@ packages:
|
|
|
366
366
|
regenerator-runtime: 0.13.11
|
|
367
367
|
dev: false
|
|
368
368
|
|
|
369
|
-
/@babel/template@7.
|
|
370
|
-
resolution: {integrity: sha512-
|
|
369
|
+
/@babel/template@7.21.9:
|
|
370
|
+
resolution: {integrity: sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==}
|
|
371
371
|
engines: {node: '>=6.9.0'}
|
|
372
372
|
dependencies:
|
|
373
373
|
'@babel/code-frame': 7.21.4
|
|
374
|
-
'@babel/parser': 7.
|
|
375
|
-
'@babel/types': 7.
|
|
374
|
+
'@babel/parser': 7.22.0
|
|
375
|
+
'@babel/types': 7.22.0
|
|
376
376
|
|
|
377
|
-
/@babel/traverse@7.
|
|
378
|
-
resolution: {integrity: sha512-
|
|
377
|
+
/@babel/traverse@7.22.1:
|
|
378
|
+
resolution: {integrity: sha512-lAWkdCoUFnmwLBhIRLciFntGYsIIoC6vIbN8zrLPqBnJmPu7Z6nzqnKd7FsxQUNAvZfVZ0x6KdNvNp8zWIOHSQ==}
|
|
379
379
|
engines: {node: '>=6.9.0'}
|
|
380
380
|
dependencies:
|
|
381
381
|
'@babel/code-frame': 7.21.4
|
|
382
|
-
'@babel/generator': 7.
|
|
383
|
-
'@babel/helper-environment-visitor': 7.
|
|
382
|
+
'@babel/generator': 7.22.0
|
|
383
|
+
'@babel/helper-environment-visitor': 7.22.1
|
|
384
384
|
'@babel/helper-function-name': 7.21.0
|
|
385
385
|
'@babel/helper-hoist-variables': 7.18.6
|
|
386
386
|
'@babel/helper-split-export-declaration': 7.18.6
|
|
387
|
-
'@babel/parser': 7.
|
|
388
|
-
'@babel/types': 7.
|
|
387
|
+
'@babel/parser': 7.22.0
|
|
388
|
+
'@babel/types': 7.22.0
|
|
389
389
|
debug: 4.3.4
|
|
390
390
|
globals: 11.12.0
|
|
391
391
|
transitivePeerDependencies:
|
|
392
392
|
- supports-color
|
|
393
393
|
|
|
394
|
-
/@babel/types@7.
|
|
395
|
-
resolution: {integrity: sha512-
|
|
394
|
+
/@babel/types@7.22.0:
|
|
395
|
+
resolution: {integrity: sha512-NtXlm3f6cNWIv003cETdlz9sss0VMNtplyatFohxWPz90AbwuhCbHbQopkGis6bG1vOunDLN0FF/4Uv5i8LFZQ==}
|
|
396
396
|
engines: {node: '>=6.9.0'}
|
|
397
397
|
dependencies:
|
|
398
|
-
'@babel/helper-string-parser': 7.
|
|
398
|
+
'@babel/helper-string-parser': 7.21.5
|
|
399
399
|
'@babel/helper-validator-identifier': 7.19.1
|
|
400
400
|
to-fast-properties: 2.0.0
|
|
401
401
|
|
|
@@ -404,44 +404,41 @@ packages:
|
|
|
404
404
|
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'}
|
|
405
405
|
dev: false
|
|
406
406
|
|
|
407
|
-
/@floating-ui/core@
|
|
408
|
-
resolution: {integrity: sha512-
|
|
407
|
+
/@floating-ui/core@1.2.6:
|
|
408
|
+
resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==}
|
|
409
409
|
dev: false
|
|
410
410
|
|
|
411
|
-
/@floating-ui/dom@
|
|
412
|
-
resolution: {integrity: sha512-
|
|
411
|
+
/@floating-ui/dom@1.2.8:
|
|
412
|
+
resolution: {integrity: sha512-XLwhYV90MxiHDq6S0rzFZj00fnDM+A1R9jhSioZoMsa7G0Q0i+Q4x40ajR8FHSdYDE1bgjG45mIWe6jtv9UPmg==}
|
|
413
413
|
dependencies:
|
|
414
|
-
'@floating-ui/core':
|
|
414
|
+
'@floating-ui/core': 1.2.6
|
|
415
415
|
dev: false
|
|
416
416
|
|
|
417
|
-
/@floating-ui/react-dom@
|
|
418
|
-
resolution: {integrity: sha512-
|
|
417
|
+
/@floating-ui/react-dom@2.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
418
|
+
resolution: {integrity: sha512-Ke0oU3SeuABC2C4OFu2mSAwHIP5WUiV98O9YWoHV4Q5aT6E9k06DV0Khi5uYspR8xmmBk08t8ZDcz3TR3ARkEg==}
|
|
419
419
|
peerDependencies:
|
|
420
420
|
react: '>=16.8.0'
|
|
421
421
|
react-dom: '>=16.8.0'
|
|
422
422
|
dependencies:
|
|
423
|
-
'@floating-ui/dom':
|
|
423
|
+
'@floating-ui/dom': 1.2.8
|
|
424
424
|
react: 18.2.0
|
|
425
425
|
react-dom: 18.2.0(react@18.2.0)
|
|
426
|
-
use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.7)(react@18.2.0)
|
|
427
|
-
transitivePeerDependencies:
|
|
428
|
-
- '@types/react'
|
|
429
426
|
dev: false
|
|
430
427
|
|
|
431
428
|
/@gar/promisify@1.1.3:
|
|
432
429
|
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
|
433
430
|
dev: true
|
|
434
431
|
|
|
435
|
-
/@hookform/resolvers@3.1.0(react-hook-form@7.
|
|
432
|
+
/@hookform/resolvers@3.1.0(react-hook-form@7.44.1):
|
|
436
433
|
resolution: {integrity: sha512-z0A8K+Nxq+f83Whm/ajlwE6VtQlp/yPHZnXw7XWVPIGm1Vx0QV8KThU3BpbBRfAZ7/dYqCKKBNnQh85BkmBKkA==}
|
|
437
434
|
peerDependencies:
|
|
438
435
|
react-hook-form: ^7.0.0
|
|
439
436
|
dependencies:
|
|
440
|
-
react-hook-form: 7.
|
|
437
|
+
react-hook-form: 7.44.1(react@18.2.0)
|
|
441
438
|
dev: false
|
|
442
439
|
|
|
443
|
-
/@ianvs/prettier-plugin-sort-imports@
|
|
444
|
-
resolution: {integrity: sha512-
|
|
440
|
+
/@ianvs/prettier-plugin-sort-imports@4.0.0(prettier@2.8.8):
|
|
441
|
+
resolution: {integrity: sha512-56wYZhq/Ezt5o4Lzc+CEUV+sqTPEV2WcTFJSSLBOhe15yfIkrUheGeRvC3lg30VQ8K0J1kvWjXIY5lxeOlW2Tg==}
|
|
445
442
|
peerDependencies:
|
|
446
443
|
'@vue/compiler-sfc': '>=3.0.0'
|
|
447
444
|
prettier: 2.x
|
|
@@ -449,15 +446,13 @@ packages:
|
|
|
449
446
|
'@vue/compiler-sfc':
|
|
450
447
|
optional: true
|
|
451
448
|
dependencies:
|
|
452
|
-
'@babel/core': 7.
|
|
453
|
-
'@babel/generator': 7.
|
|
454
|
-
'@babel/parser': 7.
|
|
455
|
-
'@babel/traverse': 7.
|
|
456
|
-
'@babel/types': 7.
|
|
457
|
-
javascript-natural-sort: 0.7.1
|
|
458
|
-
lodash.clone: 4.5.0
|
|
459
|
-
lodash.isequal: 4.5.0
|
|
449
|
+
'@babel/core': 7.22.1
|
|
450
|
+
'@babel/generator': 7.22.0
|
|
451
|
+
'@babel/parser': 7.22.0
|
|
452
|
+
'@babel/traverse': 7.22.1
|
|
453
|
+
'@babel/types': 7.22.0
|
|
460
454
|
prettier: 2.8.8
|
|
455
|
+
semver: 7.5.0
|
|
461
456
|
transitivePeerDependencies:
|
|
462
457
|
- supports-color
|
|
463
458
|
dev: true
|
|
@@ -502,12 +497,12 @@ packages:
|
|
|
502
497
|
'@jridgewell/resolve-uri': 3.1.0
|
|
503
498
|
'@jridgewell/sourcemap-codec': 1.4.14
|
|
504
499
|
|
|
505
|
-
/@next/env@13.4.4
|
|
506
|
-
resolution: {integrity: sha512-
|
|
500
|
+
/@next/env@13.4.4:
|
|
501
|
+
resolution: {integrity: sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg==}
|
|
507
502
|
dev: false
|
|
508
503
|
|
|
509
|
-
/@next/swc-darwin-arm64@13.4.4
|
|
510
|
-
resolution: {integrity: sha512-
|
|
504
|
+
/@next/swc-darwin-arm64@13.4.4:
|
|
505
|
+
resolution: {integrity: sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==}
|
|
511
506
|
engines: {node: '>= 10'}
|
|
512
507
|
cpu: [arm64]
|
|
513
508
|
os: [darwin]
|
|
@@ -515,8 +510,8 @@ packages:
|
|
|
515
510
|
dev: false
|
|
516
511
|
optional: true
|
|
517
512
|
|
|
518
|
-
/@next/swc-darwin-x64@13.4.4
|
|
519
|
-
resolution: {integrity: sha512-
|
|
513
|
+
/@next/swc-darwin-x64@13.4.4:
|
|
514
|
+
resolution: {integrity: sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==}
|
|
520
515
|
engines: {node: '>= 10'}
|
|
521
516
|
cpu: [x64]
|
|
522
517
|
os: [darwin]
|
|
@@ -524,8 +519,8 @@ packages:
|
|
|
524
519
|
dev: false
|
|
525
520
|
optional: true
|
|
526
521
|
|
|
527
|
-
/@next/swc-linux-arm64-gnu@13.4.4
|
|
528
|
-
resolution: {integrity: sha512
|
|
522
|
+
/@next/swc-linux-arm64-gnu@13.4.4:
|
|
523
|
+
resolution: {integrity: sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==}
|
|
529
524
|
engines: {node: '>= 10'}
|
|
530
525
|
cpu: [arm64]
|
|
531
526
|
os: [linux]
|
|
@@ -533,8 +528,8 @@ packages:
|
|
|
533
528
|
dev: false
|
|
534
529
|
optional: true
|
|
535
530
|
|
|
536
|
-
/@next/swc-linux-arm64-musl@13.4.4
|
|
537
|
-
resolution: {integrity: sha512-
|
|
531
|
+
/@next/swc-linux-arm64-musl@13.4.4:
|
|
532
|
+
resolution: {integrity: sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==}
|
|
538
533
|
engines: {node: '>= 10'}
|
|
539
534
|
cpu: [arm64]
|
|
540
535
|
os: [linux]
|
|
@@ -542,8 +537,8 @@ packages:
|
|
|
542
537
|
dev: false
|
|
543
538
|
optional: true
|
|
544
539
|
|
|
545
|
-
/@next/swc-linux-x64-gnu@13.4.4
|
|
546
|
-
resolution: {integrity: sha512-
|
|
540
|
+
/@next/swc-linux-x64-gnu@13.4.4:
|
|
541
|
+
resolution: {integrity: sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==}
|
|
547
542
|
engines: {node: '>= 10'}
|
|
548
543
|
cpu: [x64]
|
|
549
544
|
os: [linux]
|
|
@@ -551,8 +546,8 @@ packages:
|
|
|
551
546
|
dev: false
|
|
552
547
|
optional: true
|
|
553
548
|
|
|
554
|
-
/@next/swc-linux-x64-musl@13.4.4
|
|
555
|
-
resolution: {integrity: sha512-
|
|
549
|
+
/@next/swc-linux-x64-musl@13.4.4:
|
|
550
|
+
resolution: {integrity: sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==}
|
|
556
551
|
engines: {node: '>= 10'}
|
|
557
552
|
cpu: [x64]
|
|
558
553
|
os: [linux]
|
|
@@ -560,8 +555,8 @@ packages:
|
|
|
560
555
|
dev: false
|
|
561
556
|
optional: true
|
|
562
557
|
|
|
563
|
-
/@next/swc-win32-arm64-msvc@13.4.4
|
|
564
|
-
resolution: {integrity: sha512-
|
|
558
|
+
/@next/swc-win32-arm64-msvc@13.4.4:
|
|
559
|
+
resolution: {integrity: sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==}
|
|
565
560
|
engines: {node: '>= 10'}
|
|
566
561
|
cpu: [arm64]
|
|
567
562
|
os: [win32]
|
|
@@ -569,8 +564,8 @@ packages:
|
|
|
569
564
|
dev: false
|
|
570
565
|
optional: true
|
|
571
566
|
|
|
572
|
-
/@next/swc-win32-ia32-msvc@13.4.4
|
|
573
|
-
resolution: {integrity: sha512-
|
|
567
|
+
/@next/swc-win32-ia32-msvc@13.4.4:
|
|
568
|
+
resolution: {integrity: sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==}
|
|
574
569
|
engines: {node: '>= 10'}
|
|
575
570
|
cpu: [ia32]
|
|
576
571
|
os: [win32]
|
|
@@ -578,8 +573,8 @@ packages:
|
|
|
578
573
|
dev: false
|
|
579
574
|
optional: true
|
|
580
575
|
|
|
581
|
-
/@next/swc-win32-x64-msvc@13.4.4
|
|
582
|
-
resolution: {integrity: sha512-
|
|
576
|
+
/@next/swc-win32-x64-msvc@13.4.4:
|
|
577
|
+
resolution: {integrity: sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==}
|
|
583
578
|
engines: {node: '>= 10'}
|
|
584
579
|
cpu: [x64]
|
|
585
580
|
os: [win32]
|
|
@@ -715,8 +710,8 @@ packages:
|
|
|
715
710
|
dev: true
|
|
716
711
|
optional: true
|
|
717
712
|
|
|
718
|
-
/@radix-ui/number@1.0.
|
|
719
|
-
resolution: {integrity: sha512-
|
|
713
|
+
/@radix-ui/number@1.0.1:
|
|
714
|
+
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
|
|
720
715
|
dependencies:
|
|
721
716
|
'@babel/runtime': 7.21.0
|
|
722
717
|
dev: false
|
|
@@ -727,145 +722,230 @@ packages:
|
|
|
727
722
|
'@babel/runtime': 7.21.0
|
|
728
723
|
dev: false
|
|
729
724
|
|
|
730
|
-
/@radix-ui/
|
|
731
|
-
resolution: {integrity: sha512-
|
|
725
|
+
/@radix-ui/primitive@1.0.1:
|
|
726
|
+
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
|
|
727
|
+
dependencies:
|
|
728
|
+
'@babel/runtime': 7.21.0
|
|
729
|
+
dev: false
|
|
730
|
+
|
|
731
|
+
/@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
732
|
+
resolution: {integrity: sha512-duVGKeWPSUILr/MdlPxV+GeULTc2rS1aihGdQ3N2qCUPMgxYLxvAsHJM3mCVLF8d5eK+ympmB22mb1F3a5biNw==}
|
|
732
733
|
peerDependencies:
|
|
734
|
+
'@types/react': '*'
|
|
735
|
+
'@types/react-dom': '*'
|
|
733
736
|
react: ^16.8 || ^17.0 || ^18.0
|
|
734
737
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
738
|
+
peerDependenciesMeta:
|
|
739
|
+
'@types/react':
|
|
740
|
+
optional: true
|
|
741
|
+
'@types/react-dom':
|
|
742
|
+
optional: true
|
|
735
743
|
dependencies:
|
|
736
744
|
'@babel/runtime': 7.21.0
|
|
737
|
-
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
745
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
746
|
+
'@types/react': 18.2.7
|
|
747
|
+
'@types/react-dom': 18.2.4
|
|
738
748
|
react: 18.2.0
|
|
739
749
|
react-dom: 18.2.0(react@18.2.0)
|
|
740
750
|
dev: false
|
|
741
751
|
|
|
742
|
-
/@radix-ui/react-accordion@1.1.
|
|
743
|
-
resolution: {integrity: sha512-
|
|
752
|
+
/@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
753
|
+
resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
|
|
744
754
|
peerDependencies:
|
|
755
|
+
'@types/react': '*'
|
|
756
|
+
'@types/react-dom': '*'
|
|
745
757
|
react: ^16.8 || ^17.0 || ^18.0
|
|
746
758
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
759
|
+
peerDependenciesMeta:
|
|
760
|
+
'@types/react':
|
|
761
|
+
optional: true
|
|
762
|
+
'@types/react-dom':
|
|
763
|
+
optional: true
|
|
747
764
|
dependencies:
|
|
748
765
|
'@babel/runtime': 7.21.0
|
|
749
|
-
'@radix-ui/primitive': 1.0.
|
|
750
|
-
'@radix-ui/react-collapsible': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
751
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
752
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
753
|
-
'@radix-ui/react-context': 1.0.
|
|
754
|
-
'@radix-ui/react-direction': 1.0.
|
|
755
|
-
'@radix-ui/react-id': 1.0.
|
|
756
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
757
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
766
|
+
'@radix-ui/primitive': 1.0.1
|
|
767
|
+
'@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
768
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
769
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
770
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
771
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
772
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
773
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
774
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
775
|
+
'@types/react': 18.2.7
|
|
776
|
+
'@types/react-dom': 18.2.4
|
|
758
777
|
react: 18.2.0
|
|
759
778
|
react-dom: 18.2.0(react@18.2.0)
|
|
760
779
|
dev: false
|
|
761
780
|
|
|
762
|
-
/@radix-ui/react-alert-dialog@1.0.
|
|
763
|
-
resolution: {integrity: sha512-
|
|
781
|
+
/@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
782
|
+
resolution: {integrity: sha512-jbfBCRlKYlhbitueOAv7z74PXYeIQmWpKwm3jllsdkw7fGWNkxqP3v0nY9WmOzcPqpQuoorNtvViBgL46n5gVg==}
|
|
764
783
|
peerDependencies:
|
|
784
|
+
'@types/react': '*'
|
|
785
|
+
'@types/react-dom': '*'
|
|
765
786
|
react: ^16.8 || ^17.0 || ^18.0
|
|
766
787
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
788
|
+
peerDependenciesMeta:
|
|
789
|
+
'@types/react':
|
|
790
|
+
optional: true
|
|
791
|
+
'@types/react-dom':
|
|
792
|
+
optional: true
|
|
767
793
|
dependencies:
|
|
768
794
|
'@babel/runtime': 7.21.0
|
|
769
|
-
'@radix-ui/primitive': 1.0.
|
|
770
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
771
|
-
'@radix-ui/react-context': 1.0.
|
|
772
|
-
'@radix-ui/react-dialog': 1.0.
|
|
773
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
774
|
-
'@radix-ui/react-slot': 1.0.
|
|
795
|
+
'@radix-ui/primitive': 1.0.1
|
|
796
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
797
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
798
|
+
'@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
799
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
800
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
801
|
+
'@types/react': 18.2.7
|
|
802
|
+
'@types/react-dom': 18.2.4
|
|
775
803
|
react: 18.2.0
|
|
776
804
|
react-dom: 18.2.0(react@18.2.0)
|
|
777
|
-
transitivePeerDependencies:
|
|
778
|
-
- '@types/react'
|
|
779
805
|
dev: false
|
|
780
806
|
|
|
781
|
-
/@radix-ui/react-arrow@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
782
|
-
resolution: {integrity: sha512-
|
|
807
|
+
/@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
808
|
+
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
|
|
783
809
|
peerDependencies:
|
|
810
|
+
'@types/react': '*'
|
|
811
|
+
'@types/react-dom': '*'
|
|
784
812
|
react: ^16.8 || ^17.0 || ^18.0
|
|
785
813
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
814
|
+
peerDependenciesMeta:
|
|
815
|
+
'@types/react':
|
|
816
|
+
optional: true
|
|
817
|
+
'@types/react-dom':
|
|
818
|
+
optional: true
|
|
786
819
|
dependencies:
|
|
787
820
|
'@babel/runtime': 7.21.0
|
|
788
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
821
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
822
|
+
'@types/react': 18.2.7
|
|
823
|
+
'@types/react-dom': 18.2.4
|
|
789
824
|
react: 18.2.0
|
|
790
825
|
react-dom: 18.2.0(react@18.2.0)
|
|
791
826
|
dev: false
|
|
792
827
|
|
|
793
|
-
/@radix-ui/react-aspect-ratio@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
794
|
-
resolution: {integrity: sha512-
|
|
828
|
+
/@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
829
|
+
resolution: {integrity: sha512-fXR5kbMan9oQqMuacfzlGG/SQMcmMlZ4wrvpckv8SgUulD0MMpspxJrxg/Gp/ISV3JfV1AeSWTYK9GvxA4ySwA==}
|
|
795
830
|
peerDependencies:
|
|
831
|
+
'@types/react': '*'
|
|
832
|
+
'@types/react-dom': '*'
|
|
796
833
|
react: ^16.8 || ^17.0 || ^18.0
|
|
797
834
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
835
|
+
peerDependenciesMeta:
|
|
836
|
+
'@types/react':
|
|
837
|
+
optional: true
|
|
838
|
+
'@types/react-dom':
|
|
839
|
+
optional: true
|
|
798
840
|
dependencies:
|
|
799
841
|
'@babel/runtime': 7.21.0
|
|
800
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
842
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
843
|
+
'@types/react': 18.2.7
|
|
844
|
+
'@types/react-dom': 18.2.4
|
|
801
845
|
react: 18.2.0
|
|
802
846
|
react-dom: 18.2.0(react@18.2.0)
|
|
803
847
|
dev: false
|
|
804
848
|
|
|
805
|
-
/@radix-ui/react-avatar@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
806
|
-
resolution: {integrity: sha512-
|
|
849
|
+
/@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
850
|
+
resolution: {integrity: sha512-9ToF7YNex3Ste45LrAeTlKtONI9yVRt/zOS158iilIkW5K/Apeyb/TUQlcEFTEFvWr8Kzdi2ZYrm1/suiXPajQ==}
|
|
807
851
|
peerDependencies:
|
|
852
|
+
'@types/react': '*'
|
|
853
|
+
'@types/react-dom': '*'
|
|
808
854
|
react: ^16.8 || ^17.0 || ^18.0
|
|
809
855
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
856
|
+
peerDependenciesMeta:
|
|
857
|
+
'@types/react':
|
|
858
|
+
optional: true
|
|
859
|
+
'@types/react-dom':
|
|
860
|
+
optional: true
|
|
810
861
|
dependencies:
|
|
811
862
|
'@babel/runtime': 7.21.0
|
|
812
|
-
'@radix-ui/react-context': 1.0.
|
|
813
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
814
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
815
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
863
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
864
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
865
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
866
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
867
|
+
'@types/react': 18.2.7
|
|
868
|
+
'@types/react-dom': 18.2.4
|
|
816
869
|
react: 18.2.0
|
|
817
870
|
react-dom: 18.2.0(react@18.2.0)
|
|
818
871
|
dev: false
|
|
819
872
|
|
|
820
|
-
/@radix-ui/react-checkbox@1.0.
|
|
821
|
-
resolution: {integrity: sha512-
|
|
873
|
+
/@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
874
|
+
resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
|
|
822
875
|
peerDependencies:
|
|
876
|
+
'@types/react': '*'
|
|
877
|
+
'@types/react-dom': '*'
|
|
823
878
|
react: ^16.8 || ^17.0 || ^18.0
|
|
824
879
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
880
|
+
peerDependenciesMeta:
|
|
881
|
+
'@types/react':
|
|
882
|
+
optional: true
|
|
883
|
+
'@types/react-dom':
|
|
884
|
+
optional: true
|
|
825
885
|
dependencies:
|
|
826
886
|
'@babel/runtime': 7.21.0
|
|
827
|
-
'@radix-ui/primitive': 1.0.
|
|
828
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
829
|
-
'@radix-ui/react-context': 1.0.
|
|
830
|
-
'@radix-ui/react-presence': 1.0.
|
|
831
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
832
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
833
|
-
'@radix-ui/react-use-previous': 1.0.
|
|
834
|
-
'@radix-ui/react-use-size': 1.0.
|
|
887
|
+
'@radix-ui/primitive': 1.0.1
|
|
888
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
889
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
890
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
891
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
892
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
893
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
894
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
895
|
+
'@types/react': 18.2.7
|
|
896
|
+
'@types/react-dom': 18.2.4
|
|
835
897
|
react: 18.2.0
|
|
836
898
|
react-dom: 18.2.0(react@18.2.0)
|
|
837
899
|
dev: false
|
|
838
900
|
|
|
839
|
-
/@radix-ui/react-collapsible@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
840
|
-
resolution: {integrity: sha512-
|
|
901
|
+
/@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
902
|
+
resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
|
|
841
903
|
peerDependencies:
|
|
904
|
+
'@types/react': '*'
|
|
905
|
+
'@types/react-dom': '*'
|
|
842
906
|
react: ^16.8 || ^17.0 || ^18.0
|
|
843
907
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
908
|
+
peerDependenciesMeta:
|
|
909
|
+
'@types/react':
|
|
910
|
+
optional: true
|
|
911
|
+
'@types/react-dom':
|
|
912
|
+
optional: true
|
|
844
913
|
dependencies:
|
|
845
914
|
'@babel/runtime': 7.21.0
|
|
846
|
-
'@radix-ui/primitive': 1.0.
|
|
847
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
848
|
-
'@radix-ui/react-context': 1.0.
|
|
849
|
-
'@radix-ui/react-id': 1.0.
|
|
850
|
-
'@radix-ui/react-presence': 1.0.
|
|
851
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
852
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
853
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
915
|
+
'@radix-ui/primitive': 1.0.1
|
|
916
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
917
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
918
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
919
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
920
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
921
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
922
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
923
|
+
'@types/react': 18.2.7
|
|
924
|
+
'@types/react-dom': 18.2.4
|
|
854
925
|
react: 18.2.0
|
|
855
926
|
react-dom: 18.2.0(react@18.2.0)
|
|
856
927
|
dev: false
|
|
857
928
|
|
|
858
|
-
/@radix-ui/react-collection@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
859
|
-
resolution: {integrity: sha512-
|
|
929
|
+
/@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
930
|
+
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
|
|
860
931
|
peerDependencies:
|
|
932
|
+
'@types/react': '*'
|
|
933
|
+
'@types/react-dom': '*'
|
|
861
934
|
react: ^16.8 || ^17.0 || ^18.0
|
|
862
935
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
936
|
+
peerDependenciesMeta:
|
|
937
|
+
'@types/react':
|
|
938
|
+
optional: true
|
|
939
|
+
'@types/react-dom':
|
|
940
|
+
optional: true
|
|
863
941
|
dependencies:
|
|
864
942
|
'@babel/runtime': 7.21.0
|
|
865
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
866
|
-
'@radix-ui/react-context': 1.0.
|
|
867
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
868
|
-
'@radix-ui/react-slot': 1.0.
|
|
943
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
944
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
945
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
946
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
947
|
+
'@types/react': 18.2.7
|
|
948
|
+
'@types/react-dom': 18.2.4
|
|
869
949
|
react: 18.2.0
|
|
870
950
|
react-dom: 18.2.0(react@18.2.0)
|
|
871
951
|
dev: false
|
|
@@ -879,23 +959,44 @@ packages:
|
|
|
879
959
|
react: 18.2.0
|
|
880
960
|
dev: false
|
|
881
961
|
|
|
882
|
-
/@radix-ui/react-
|
|
883
|
-
resolution: {integrity: sha512-
|
|
962
|
+
/@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
963
|
+
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
|
|
964
|
+
peerDependencies:
|
|
965
|
+
'@types/react': '*'
|
|
966
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
967
|
+
peerDependenciesMeta:
|
|
968
|
+
'@types/react':
|
|
969
|
+
optional: true
|
|
970
|
+
dependencies:
|
|
971
|
+
'@babel/runtime': 7.21.0
|
|
972
|
+
'@types/react': 18.2.7
|
|
973
|
+
react: 18.2.0
|
|
974
|
+
dev: false
|
|
975
|
+
|
|
976
|
+
/@radix-ui/react-context-menu@2.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
977
|
+
resolution: {integrity: sha512-HVHLUtZOBiR2Fh5l07qQ9y0IgX4dGZF0S9Gwdk4CVA+DL9afSphvFNa4nRiw6RNgb6quwLV4dLPF/gFDvNaOcQ==}
|
|
884
978
|
peerDependencies:
|
|
979
|
+
'@types/react': '*'
|
|
980
|
+
'@types/react-dom': '*'
|
|
885
981
|
react: ^16.8 || ^17.0 || ^18.0
|
|
886
982
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
983
|
+
peerDependenciesMeta:
|
|
984
|
+
'@types/react':
|
|
985
|
+
optional: true
|
|
986
|
+
'@types/react-dom':
|
|
987
|
+
optional: true
|
|
887
988
|
dependencies:
|
|
888
989
|
'@babel/runtime': 7.21.0
|
|
889
|
-
'@radix-ui/primitive': 1.0.
|
|
890
|
-
'@radix-ui/react-context': 1.0.
|
|
891
|
-
'@radix-ui/react-menu': 2.0.4(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
892
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
893
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
894
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
990
|
+
'@radix-ui/primitive': 1.0.1
|
|
991
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
992
|
+
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
993
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
994
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
995
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
996
|
+
'@types/react': 18.2.7
|
|
997
|
+
'@types/react-dom': 18.2.4
|
|
895
998
|
react: 18.2.0
|
|
896
999
|
react-dom: 18.2.0(react@18.2.0)
|
|
897
|
-
transitivePeerDependencies:
|
|
898
|
-
- '@types/react'
|
|
899
1000
|
dev: false
|
|
900
1001
|
|
|
901
1002
|
/@radix-ui/react-context@1.0.0(react@18.2.0):
|
|
@@ -907,6 +1008,20 @@ packages:
|
|
|
907
1008
|
react: 18.2.0
|
|
908
1009
|
dev: false
|
|
909
1010
|
|
|
1011
|
+
/@radix-ui/react-context@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
1012
|
+
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
|
|
1013
|
+
peerDependencies:
|
|
1014
|
+
'@types/react': '*'
|
|
1015
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1016
|
+
peerDependenciesMeta:
|
|
1017
|
+
'@types/react':
|
|
1018
|
+
optional: true
|
|
1019
|
+
dependencies:
|
|
1020
|
+
'@babel/runtime': 7.21.0
|
|
1021
|
+
'@types/react': 18.2.7
|
|
1022
|
+
react: 18.2.0
|
|
1023
|
+
dev: false
|
|
1024
|
+
|
|
910
1025
|
/@radix-ui/react-dialog@1.0.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
911
1026
|
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
|
|
912
1027
|
peerDependencies:
|
|
@@ -934,39 +1049,51 @@ packages:
|
|
|
934
1049
|
- '@types/react'
|
|
935
1050
|
dev: false
|
|
936
1051
|
|
|
937
|
-
/@radix-ui/react-dialog@1.0.
|
|
938
|
-
resolution: {integrity: sha512-
|
|
1052
|
+
/@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1053
|
+
resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
|
|
939
1054
|
peerDependencies:
|
|
1055
|
+
'@types/react': '*'
|
|
1056
|
+
'@types/react-dom': '*'
|
|
940
1057
|
react: ^16.8 || ^17.0 || ^18.0
|
|
941
1058
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1059
|
+
peerDependenciesMeta:
|
|
1060
|
+
'@types/react':
|
|
1061
|
+
optional: true
|
|
1062
|
+
'@types/react-dom':
|
|
1063
|
+
optional: true
|
|
942
1064
|
dependencies:
|
|
943
1065
|
'@babel/runtime': 7.21.0
|
|
944
|
-
'@radix-ui/primitive': 1.0.
|
|
945
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
946
|
-
'@radix-ui/react-context': 1.0.
|
|
947
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
948
|
-
'@radix-ui/react-focus-guards': 1.0.
|
|
949
|
-
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
950
|
-
'@radix-ui/react-id': 1.0.
|
|
951
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
952
|
-
'@radix-ui/react-presence': 1.0.
|
|
953
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
954
|
-
'@radix-ui/react-slot': 1.0.
|
|
955
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1066
|
+
'@radix-ui/primitive': 1.0.1
|
|
1067
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1068
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1069
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1070
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1071
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1072
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1073
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1074
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1075
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1076
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
1077
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1078
|
+
'@types/react': 18.2.7
|
|
1079
|
+
'@types/react-dom': 18.2.4
|
|
956
1080
|
aria-hidden: 1.2.3
|
|
957
1081
|
react: 18.2.0
|
|
958
1082
|
react-dom: 18.2.0(react@18.2.0)
|
|
959
1083
|
react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
|
|
960
|
-
transitivePeerDependencies:
|
|
961
|
-
- '@types/react'
|
|
962
1084
|
dev: false
|
|
963
1085
|
|
|
964
|
-
/@radix-ui/react-direction@1.0.
|
|
965
|
-
resolution: {integrity: sha512-
|
|
1086
|
+
/@radix-ui/react-direction@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
1087
|
+
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
|
|
966
1088
|
peerDependencies:
|
|
1089
|
+
'@types/react': '*'
|
|
967
1090
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1091
|
+
peerDependenciesMeta:
|
|
1092
|
+
'@types/react':
|
|
1093
|
+
optional: true
|
|
968
1094
|
dependencies:
|
|
969
1095
|
'@babel/runtime': 7.21.0
|
|
1096
|
+
'@types/react': 18.2.7
|
|
970
1097
|
react: 18.2.0
|
|
971
1098
|
dev: false
|
|
972
1099
|
|
|
@@ -986,40 +1113,56 @@ packages:
|
|
|
986
1113
|
react-dom: 18.2.0(react@18.2.0)
|
|
987
1114
|
dev: false
|
|
988
1115
|
|
|
989
|
-
/@radix-ui/react-dismissable-layer@1.0.
|
|
990
|
-
resolution: {integrity: sha512-
|
|
1116
|
+
/@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1117
|
+
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
|
|
991
1118
|
peerDependencies:
|
|
1119
|
+
'@types/react': '*'
|
|
1120
|
+
'@types/react-dom': '*'
|
|
992
1121
|
react: ^16.8 || ^17.0 || ^18.0
|
|
993
1122
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1123
|
+
peerDependenciesMeta:
|
|
1124
|
+
'@types/react':
|
|
1125
|
+
optional: true
|
|
1126
|
+
'@types/react-dom':
|
|
1127
|
+
optional: true
|
|
994
1128
|
dependencies:
|
|
995
1129
|
'@babel/runtime': 7.21.0
|
|
996
|
-
'@radix-ui/primitive': 1.0.
|
|
997
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
998
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
999
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1000
|
-
'@radix-ui/react-use-escape-keydown': 1.0.2(react@18.2.0)
|
|
1130
|
+
'@radix-ui/primitive': 1.0.1
|
|
1131
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1132
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1133
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1134
|
+
'@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.7)(react@18.2.0)
|
|
1135
|
+
'@types/react': 18.2.7
|
|
1136
|
+
'@types/react-dom': 18.2.4
|
|
1001
1137
|
react: 18.2.0
|
|
1002
1138
|
react-dom: 18.2.0(react@18.2.0)
|
|
1003
1139
|
dev: false
|
|
1004
1140
|
|
|
1005
|
-
/@radix-ui/react-dropdown-menu@2.0.4(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1006
|
-
resolution: {integrity: sha512-
|
|
1141
|
+
/@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1142
|
+
resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
|
|
1007
1143
|
peerDependencies:
|
|
1144
|
+
'@types/react': '*'
|
|
1145
|
+
'@types/react-dom': '*'
|
|
1008
1146
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1009
1147
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1148
|
+
peerDependenciesMeta:
|
|
1149
|
+
'@types/react':
|
|
1150
|
+
optional: true
|
|
1151
|
+
'@types/react-dom':
|
|
1152
|
+
optional: true
|
|
1010
1153
|
dependencies:
|
|
1011
1154
|
'@babel/runtime': 7.21.0
|
|
1012
|
-
'@radix-ui/primitive': 1.0.
|
|
1013
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1014
|
-
'@radix-ui/react-context': 1.0.
|
|
1015
|
-
'@radix-ui/react-id': 1.0.
|
|
1016
|
-
'@radix-ui/react-menu': 2.0.4(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1017
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1018
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1155
|
+
'@radix-ui/primitive': 1.0.1
|
|
1156
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1157
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1158
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1159
|
+
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1160
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1161
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1162
|
+
'@types/react': 18.2.7
|
|
1163
|
+
'@types/react-dom': 18.2.4
|
|
1019
1164
|
react: 18.2.0
|
|
1020
1165
|
react-dom: 18.2.0(react@18.2.0)
|
|
1021
|
-
transitivePeerDependencies:
|
|
1022
|
-
- '@types/react'
|
|
1023
1166
|
dev: false
|
|
1024
1167
|
|
|
1025
1168
|
/@radix-ui/react-focus-guards@1.0.0(react@18.2.0):
|
|
@@ -1031,6 +1174,20 @@ packages:
|
|
|
1031
1174
|
react: 18.2.0
|
|
1032
1175
|
dev: false
|
|
1033
1176
|
|
|
1177
|
+
/@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
1178
|
+
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
|
|
1179
|
+
peerDependencies:
|
|
1180
|
+
'@types/react': '*'
|
|
1181
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1182
|
+
peerDependenciesMeta:
|
|
1183
|
+
'@types/react':
|
|
1184
|
+
optional: true
|
|
1185
|
+
dependencies:
|
|
1186
|
+
'@babel/runtime': 7.21.0
|
|
1187
|
+
'@types/react': 18.2.7
|
|
1188
|
+
react: 18.2.0
|
|
1189
|
+
dev: false
|
|
1190
|
+
|
|
1034
1191
|
/@radix-ui/react-focus-scope@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
1035
1192
|
resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==}
|
|
1036
1193
|
peerDependencies:
|
|
@@ -1045,40 +1202,56 @@ packages:
|
|
|
1045
1202
|
react-dom: 18.2.0(react@18.2.0)
|
|
1046
1203
|
dev: false
|
|
1047
1204
|
|
|
1048
|
-
/@radix-ui/react-focus-scope@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1049
|
-
resolution: {integrity: sha512-
|
|
1205
|
+
/@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1206
|
+
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
|
|
1050
1207
|
peerDependencies:
|
|
1208
|
+
'@types/react': '*'
|
|
1209
|
+
'@types/react-dom': '*'
|
|
1051
1210
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1052
1211
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1212
|
+
peerDependenciesMeta:
|
|
1213
|
+
'@types/react':
|
|
1214
|
+
optional: true
|
|
1215
|
+
'@types/react-dom':
|
|
1216
|
+
optional: true
|
|
1053
1217
|
dependencies:
|
|
1054
1218
|
'@babel/runtime': 7.21.0
|
|
1055
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1056
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1057
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1219
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1220
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1221
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1222
|
+
'@types/react': 18.2.7
|
|
1223
|
+
'@types/react-dom': 18.2.4
|
|
1058
1224
|
react: 18.2.0
|
|
1059
1225
|
react-dom: 18.2.0(react@18.2.0)
|
|
1060
1226
|
dev: false
|
|
1061
1227
|
|
|
1062
|
-
/@radix-ui/react-hover-card@1.0.
|
|
1063
|
-
resolution: {integrity: sha512-
|
|
1228
|
+
/@radix-ui/react-hover-card@1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1229
|
+
resolution: {integrity: sha512-2K3ToJuMk9wjwBOa+jdg2oPma+AmLdcEyTNsG/iC4BDVG3E0/mGCjbY8PEDSLxJcUi+nJi2QII+ec/4kWd88DA==}
|
|
1064
1230
|
peerDependencies:
|
|
1231
|
+
'@types/react': '*'
|
|
1232
|
+
'@types/react-dom': '*'
|
|
1065
1233
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1066
1234
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1235
|
+
peerDependenciesMeta:
|
|
1236
|
+
'@types/react':
|
|
1237
|
+
optional: true
|
|
1238
|
+
'@types/react-dom':
|
|
1239
|
+
optional: true
|
|
1067
1240
|
dependencies:
|
|
1068
1241
|
'@babel/runtime': 7.21.0
|
|
1069
|
-
'@radix-ui/primitive': 1.0.
|
|
1070
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1071
|
-
'@radix-ui/react-context': 1.0.
|
|
1072
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1073
|
-
'@radix-ui/react-popper': 1.1.
|
|
1074
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1075
|
-
'@radix-ui/react-presence': 1.0.
|
|
1076
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1077
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1242
|
+
'@radix-ui/primitive': 1.0.1
|
|
1243
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1244
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1245
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1246
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1247
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1248
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1249
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1250
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1251
|
+
'@types/react': 18.2.7
|
|
1252
|
+
'@types/react-dom': 18.2.4
|
|
1078
1253
|
react: 18.2.0
|
|
1079
1254
|
react-dom: 18.2.0(react@18.2.0)
|
|
1080
|
-
transitivePeerDependencies:
|
|
1081
|
-
- '@types/react'
|
|
1082
1255
|
dev: false
|
|
1083
1256
|
|
|
1084
1257
|
/@radix-ui/react-id@1.0.0(react@18.2.0):
|
|
@@ -1091,146 +1264,207 @@ packages:
|
|
|
1091
1264
|
react: 18.2.0
|
|
1092
1265
|
dev: false
|
|
1093
1266
|
|
|
1094
|
-
/@radix-ui/react-
|
|
1095
|
-
resolution: {integrity: sha512-
|
|
1267
|
+
/@radix-ui/react-id@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
1268
|
+
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
|
|
1096
1269
|
peerDependencies:
|
|
1270
|
+
'@types/react': '*'
|
|
1271
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1272
|
+
peerDependenciesMeta:
|
|
1273
|
+
'@types/react':
|
|
1274
|
+
optional: true
|
|
1275
|
+
dependencies:
|
|
1276
|
+
'@babel/runtime': 7.21.0
|
|
1277
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1278
|
+
'@types/react': 18.2.7
|
|
1279
|
+
react: 18.2.0
|
|
1280
|
+
dev: false
|
|
1281
|
+
|
|
1282
|
+
/@radix-ui/react-label@2.0.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1283
|
+
resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
|
|
1284
|
+
peerDependencies:
|
|
1285
|
+
'@types/react': '*'
|
|
1286
|
+
'@types/react-dom': '*'
|
|
1097
1287
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1098
1288
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1289
|
+
peerDependenciesMeta:
|
|
1290
|
+
'@types/react':
|
|
1291
|
+
optional: true
|
|
1292
|
+
'@types/react-dom':
|
|
1293
|
+
optional: true
|
|
1099
1294
|
dependencies:
|
|
1100
1295
|
'@babel/runtime': 7.21.0
|
|
1101
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1296
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1297
|
+
'@types/react': 18.2.7
|
|
1298
|
+
'@types/react-dom': 18.2.4
|
|
1102
1299
|
react: 18.2.0
|
|
1103
1300
|
react-dom: 18.2.0(react@18.2.0)
|
|
1104
1301
|
dev: false
|
|
1105
1302
|
|
|
1106
|
-
/@radix-ui/react-menu@2.0.4(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1107
|
-
resolution: {integrity: sha512-
|
|
1303
|
+
/@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1304
|
+
resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
|
|
1108
1305
|
peerDependencies:
|
|
1306
|
+
'@types/react': '*'
|
|
1307
|
+
'@types/react-dom': '*'
|
|
1109
1308
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1110
1309
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1310
|
+
peerDependenciesMeta:
|
|
1311
|
+
'@types/react':
|
|
1312
|
+
optional: true
|
|
1313
|
+
'@types/react-dom':
|
|
1314
|
+
optional: true
|
|
1111
1315
|
dependencies:
|
|
1112
1316
|
'@babel/runtime': 7.21.0
|
|
1113
|
-
'@radix-ui/primitive': 1.0.
|
|
1114
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1115
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1116
|
-
'@radix-ui/react-context': 1.0.
|
|
1117
|
-
'@radix-ui/react-direction': 1.0.
|
|
1118
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1119
|
-
'@radix-ui/react-focus-guards': 1.0.
|
|
1120
|
-
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1121
|
-
'@radix-ui/react-id': 1.0.
|
|
1122
|
-
'@radix-ui/react-popper': 1.1.
|
|
1123
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1124
|
-
'@radix-ui/react-presence': 1.0.
|
|
1125
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1126
|
-
'@radix-ui/react-roving-focus': 1.0.
|
|
1127
|
-
'@radix-ui/react-slot': 1.0.
|
|
1128
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1317
|
+
'@radix-ui/primitive': 1.0.1
|
|
1318
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1319
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1320
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1321
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1322
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1323
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1324
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1325
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1326
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1327
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1328
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1329
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1330
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1331
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
1332
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1333
|
+
'@types/react': 18.2.7
|
|
1334
|
+
'@types/react-dom': 18.2.4
|
|
1129
1335
|
aria-hidden: 1.2.3
|
|
1130
1336
|
react: 18.2.0
|
|
1131
1337
|
react-dom: 18.2.0(react@18.2.0)
|
|
1132
1338
|
react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
|
|
1133
|
-
transitivePeerDependencies:
|
|
1134
|
-
- '@types/react'
|
|
1135
1339
|
dev: false
|
|
1136
1340
|
|
|
1137
|
-
/@radix-ui/react-menubar@1.0.2(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1138
|
-
resolution: {integrity: sha512-
|
|
1341
|
+
/@radix-ui/react-menubar@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1342
|
+
resolution: {integrity: sha512-GqjdxzYCjjKhcgEODDP8SrYfbWNh/Hm3lyuFkP5Q5IbX0QfXklLF1o1AqA3oTV2kulUgN/kOZVS92hIIShEgpA==}
|
|
1139
1343
|
peerDependencies:
|
|
1344
|
+
'@types/react': '*'
|
|
1345
|
+
'@types/react-dom': '*'
|
|
1140
1346
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1141
1347
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1348
|
+
peerDependenciesMeta:
|
|
1349
|
+
'@types/react':
|
|
1350
|
+
optional: true
|
|
1351
|
+
'@types/react-dom':
|
|
1352
|
+
optional: true
|
|
1142
1353
|
dependencies:
|
|
1143
1354
|
'@babel/runtime': 7.21.0
|
|
1144
|
-
'@radix-ui/primitive': 1.0.
|
|
1145
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1146
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1147
|
-
'@radix-ui/react-context': 1.0.
|
|
1148
|
-
'@radix-ui/react-direction': 1.0.
|
|
1149
|
-
'@radix-ui/react-id': 1.0.
|
|
1150
|
-
'@radix-ui/react-menu': 2.0.4(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1151
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1152
|
-
'@radix-ui/react-roving-focus': 1.0.
|
|
1153
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1355
|
+
'@radix-ui/primitive': 1.0.1
|
|
1356
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1357
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1358
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1359
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1360
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1361
|
+
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1362
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1363
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1364
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1365
|
+
'@types/react': 18.2.7
|
|
1366
|
+
'@types/react-dom': 18.2.4
|
|
1154
1367
|
react: 18.2.0
|
|
1155
1368
|
react-dom: 18.2.0(react@18.2.0)
|
|
1156
|
-
transitivePeerDependencies:
|
|
1157
|
-
- '@types/react'
|
|
1158
1369
|
dev: false
|
|
1159
1370
|
|
|
1160
|
-
/@radix-ui/react-navigation-menu@1.1.2(react-dom@18.2.0)(react@18.2.0):
|
|
1161
|
-
resolution: {integrity: sha512-
|
|
1371
|
+
/@radix-ui/react-navigation-menu@1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1372
|
+
resolution: {integrity: sha512-x4Uv0N47ABx3/frJazYXxvMpZeKJe0qmRIgQ2o3lhTqnTVg+CaZfVVO4nQLn3QJcDkTz8icElKffhFng47XIBA==}
|
|
1162
1373
|
peerDependencies:
|
|
1374
|
+
'@types/react': '*'
|
|
1375
|
+
'@types/react-dom': '*'
|
|
1163
1376
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1164
1377
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1378
|
+
peerDependenciesMeta:
|
|
1379
|
+
'@types/react':
|
|
1380
|
+
optional: true
|
|
1381
|
+
'@types/react-dom':
|
|
1382
|
+
optional: true
|
|
1165
1383
|
dependencies:
|
|
1166
1384
|
'@babel/runtime': 7.21.0
|
|
1167
|
-
'@radix-ui/primitive': 1.0.
|
|
1168
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1169
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1170
|
-
'@radix-ui/react-context': 1.0.
|
|
1171
|
-
'@radix-ui/react-direction': 1.0.
|
|
1172
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1173
|
-
'@radix-ui/react-id': 1.0.
|
|
1174
|
-
'@radix-ui/react-presence': 1.0.
|
|
1175
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1176
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1177
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1178
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
1179
|
-
'@radix-ui/react-use-previous': 1.0.
|
|
1180
|
-
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1385
|
+
'@radix-ui/primitive': 1.0.1
|
|
1386
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1387
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1388
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1389
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1390
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1391
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1392
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1393
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1394
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1395
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1396
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1397
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1398
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1399
|
+
'@types/react': 18.2.7
|
|
1400
|
+
'@types/react-dom': 18.2.4
|
|
1181
1401
|
react: 18.2.0
|
|
1182
1402
|
react-dom: 18.2.0(react@18.2.0)
|
|
1183
1403
|
dev: false
|
|
1184
1404
|
|
|
1185
|
-
/@radix-ui/react-popover@1.0.
|
|
1186
|
-
resolution: {integrity: sha512-
|
|
1405
|
+
/@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1406
|
+
resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
|
|
1187
1407
|
peerDependencies:
|
|
1408
|
+
'@types/react': '*'
|
|
1409
|
+
'@types/react-dom': '*'
|
|
1188
1410
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1189
1411
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1412
|
+
peerDependenciesMeta:
|
|
1413
|
+
'@types/react':
|
|
1414
|
+
optional: true
|
|
1415
|
+
'@types/react-dom':
|
|
1416
|
+
optional: true
|
|
1190
1417
|
dependencies:
|
|
1191
1418
|
'@babel/runtime': 7.21.0
|
|
1192
|
-
'@radix-ui/primitive': 1.0.
|
|
1193
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1194
|
-
'@radix-ui/react-context': 1.0.
|
|
1195
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1196
|
-
'@radix-ui/react-focus-guards': 1.0.
|
|
1197
|
-
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1198
|
-
'@radix-ui/react-id': 1.0.
|
|
1199
|
-
'@radix-ui/react-popper': 1.1.
|
|
1200
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1201
|
-
'@radix-ui/react-presence': 1.0.
|
|
1202
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1203
|
-
'@radix-ui/react-slot': 1.0.
|
|
1204
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1419
|
+
'@radix-ui/primitive': 1.0.1
|
|
1420
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1421
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1422
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1423
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1424
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1425
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1426
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1427
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1428
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1429
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1430
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
1431
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1432
|
+
'@types/react': 18.2.7
|
|
1433
|
+
'@types/react-dom': 18.2.4
|
|
1205
1434
|
aria-hidden: 1.2.3
|
|
1206
1435
|
react: 18.2.0
|
|
1207
1436
|
react-dom: 18.2.0(react@18.2.0)
|
|
1208
1437
|
react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
|
|
1209
|
-
transitivePeerDependencies:
|
|
1210
|
-
- '@types/react'
|
|
1211
1438
|
dev: false
|
|
1212
1439
|
|
|
1213
|
-
/@radix-ui/react-popper@1.1.
|
|
1214
|
-
resolution: {integrity: sha512-
|
|
1440
|
+
/@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1441
|
+
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
|
|
1215
1442
|
peerDependencies:
|
|
1443
|
+
'@types/react': '*'
|
|
1444
|
+
'@types/react-dom': '*'
|
|
1216
1445
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1217
1446
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1447
|
+
peerDependenciesMeta:
|
|
1448
|
+
'@types/react':
|
|
1449
|
+
optional: true
|
|
1450
|
+
'@types/react-dom':
|
|
1451
|
+
optional: true
|
|
1218
1452
|
dependencies:
|
|
1219
1453
|
'@babel/runtime': 7.21.0
|
|
1220
|
-
'@floating-ui/react-dom':
|
|
1221
|
-
'@radix-ui/react-arrow': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1222
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1223
|
-
'@radix-ui/react-context': 1.0.
|
|
1224
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1225
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1226
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
1227
|
-
'@radix-ui/react-use-rect': 1.0.
|
|
1228
|
-
'@radix-ui/react-use-size': 1.0.
|
|
1229
|
-
'@radix-ui/rect': 1.0.
|
|
1454
|
+
'@floating-ui/react-dom': 2.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1455
|
+
'@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1456
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1457
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1458
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1459
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1460
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1461
|
+
'@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1462
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1463
|
+
'@radix-ui/rect': 1.0.1
|
|
1464
|
+
'@types/react': 18.2.7
|
|
1465
|
+
'@types/react-dom': 18.2.4
|
|
1230
1466
|
react: 18.2.0
|
|
1231
|
-
react-dom: 18.2.0(react@18.2.0)
|
|
1232
|
-
transitivePeerDependencies:
|
|
1233
|
-
- '@types/react'
|
|
1467
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1234
1468
|
dev: false
|
|
1235
1469
|
|
|
1236
1470
|
/@radix-ui/react-portal@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
@@ -1245,14 +1479,23 @@ packages:
|
|
|
1245
1479
|
react-dom: 18.2.0(react@18.2.0)
|
|
1246
1480
|
dev: false
|
|
1247
1481
|
|
|
1248
|
-
/@radix-ui/react-portal@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1249
|
-
resolution: {integrity: sha512-
|
|
1482
|
+
/@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1483
|
+
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
|
|
1250
1484
|
peerDependencies:
|
|
1485
|
+
'@types/react': '*'
|
|
1486
|
+
'@types/react-dom': '*'
|
|
1251
1487
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1252
1488
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1489
|
+
peerDependenciesMeta:
|
|
1490
|
+
'@types/react':
|
|
1491
|
+
optional: true
|
|
1492
|
+
'@types/react-dom':
|
|
1493
|
+
optional: true
|
|
1253
1494
|
dependencies:
|
|
1254
1495
|
'@babel/runtime': 7.21.0
|
|
1255
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1496
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1497
|
+
'@types/react': 18.2.7
|
|
1498
|
+
'@types/react-dom': 18.2.4
|
|
1256
1499
|
react: 18.2.0
|
|
1257
1500
|
react-dom: 18.2.0(react@18.2.0)
|
|
1258
1501
|
dev: false
|
|
@@ -1270,6 +1513,28 @@ packages:
|
|
|
1270
1513
|
react-dom: 18.2.0(react@18.2.0)
|
|
1271
1514
|
dev: false
|
|
1272
1515
|
|
|
1516
|
+
/@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1517
|
+
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
|
|
1518
|
+
peerDependencies:
|
|
1519
|
+
'@types/react': '*'
|
|
1520
|
+
'@types/react-dom': '*'
|
|
1521
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1522
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1523
|
+
peerDependenciesMeta:
|
|
1524
|
+
'@types/react':
|
|
1525
|
+
optional: true
|
|
1526
|
+
'@types/react-dom':
|
|
1527
|
+
optional: true
|
|
1528
|
+
dependencies:
|
|
1529
|
+
'@babel/runtime': 7.21.0
|
|
1530
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1531
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1532
|
+
'@types/react': 18.2.7
|
|
1533
|
+
'@types/react-dom': 18.2.4
|
|
1534
|
+
react: 18.2.0
|
|
1535
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1536
|
+
dev: false
|
|
1537
|
+
|
|
1273
1538
|
/@radix-ui/react-primitive@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
1274
1539
|
resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==}
|
|
1275
1540
|
peerDependencies:
|
|
@@ -1282,156 +1547,226 @@ packages:
|
|
|
1282
1547
|
react-dom: 18.2.0(react@18.2.0)
|
|
1283
1548
|
dev: false
|
|
1284
1549
|
|
|
1285
|
-
/@radix-ui/react-primitive@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1286
|
-
resolution: {integrity: sha512-
|
|
1550
|
+
/@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1551
|
+
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
|
|
1287
1552
|
peerDependencies:
|
|
1553
|
+
'@types/react': '*'
|
|
1554
|
+
'@types/react-dom': '*'
|
|
1288
1555
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1289
1556
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1557
|
+
peerDependenciesMeta:
|
|
1558
|
+
'@types/react':
|
|
1559
|
+
optional: true
|
|
1560
|
+
'@types/react-dom':
|
|
1561
|
+
optional: true
|
|
1290
1562
|
dependencies:
|
|
1291
1563
|
'@babel/runtime': 7.21.0
|
|
1292
|
-
'@radix-ui/react-slot': 1.0.
|
|
1564
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
1565
|
+
'@types/react': 18.2.7
|
|
1566
|
+
'@types/react-dom': 18.2.4
|
|
1293
1567
|
react: 18.2.0
|
|
1294
1568
|
react-dom: 18.2.0(react@18.2.0)
|
|
1295
1569
|
dev: false
|
|
1296
1570
|
|
|
1297
|
-
/@radix-ui/react-progress@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1298
|
-
resolution: {integrity: sha512-
|
|
1571
|
+
/@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1572
|
+
resolution: {integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==}
|
|
1299
1573
|
peerDependencies:
|
|
1574
|
+
'@types/react': '*'
|
|
1575
|
+
'@types/react-dom': '*'
|
|
1300
1576
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1301
1577
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1578
|
+
peerDependenciesMeta:
|
|
1579
|
+
'@types/react':
|
|
1580
|
+
optional: true
|
|
1581
|
+
'@types/react-dom':
|
|
1582
|
+
optional: true
|
|
1302
1583
|
dependencies:
|
|
1303
1584
|
'@babel/runtime': 7.21.0
|
|
1304
|
-
'@radix-ui/react-context': 1.0.
|
|
1305
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1585
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1586
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1587
|
+
'@types/react': 18.2.7
|
|
1588
|
+
'@types/react-dom': 18.2.4
|
|
1306
1589
|
react: 18.2.0
|
|
1307
1590
|
react-dom: 18.2.0(react@18.2.0)
|
|
1308
1591
|
dev: false
|
|
1309
1592
|
|
|
1310
|
-
/@radix-ui/react-radio-group@1.1.2(react-dom@18.2.0)(react@18.2.0):
|
|
1311
|
-
resolution: {integrity: sha512-
|
|
1593
|
+
/@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1594
|
+
resolution: {integrity: sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==}
|
|
1312
1595
|
peerDependencies:
|
|
1596
|
+
'@types/react': '*'
|
|
1597
|
+
'@types/react-dom': '*'
|
|
1313
1598
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1314
1599
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1600
|
+
peerDependenciesMeta:
|
|
1601
|
+
'@types/react':
|
|
1602
|
+
optional: true
|
|
1603
|
+
'@types/react-dom':
|
|
1604
|
+
optional: true
|
|
1315
1605
|
dependencies:
|
|
1316
1606
|
'@babel/runtime': 7.21.0
|
|
1317
|
-
'@radix-ui/primitive': 1.0.
|
|
1318
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1319
|
-
'@radix-ui/react-context': 1.0.
|
|
1320
|
-
'@radix-ui/react-direction': 1.0.
|
|
1321
|
-
'@radix-ui/react-presence': 1.0.
|
|
1322
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1323
|
-
'@radix-ui/react-roving-focus': 1.0.
|
|
1324
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1325
|
-
'@radix-ui/react-use-previous': 1.0.
|
|
1326
|
-
'@radix-ui/react-use-size': 1.0.
|
|
1607
|
+
'@radix-ui/primitive': 1.0.1
|
|
1608
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1609
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1610
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1611
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1612
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1613
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1614
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1615
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1616
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1617
|
+
'@types/react': 18.2.7
|
|
1618
|
+
'@types/react-dom': 18.2.4
|
|
1327
1619
|
react: 18.2.0
|
|
1328
1620
|
react-dom: 18.2.0(react@18.2.0)
|
|
1329
1621
|
dev: false
|
|
1330
1622
|
|
|
1331
|
-
/@radix-ui/react-roving-focus@1.0.
|
|
1332
|
-
resolution: {integrity: sha512-
|
|
1623
|
+
/@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1624
|
+
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
|
|
1333
1625
|
peerDependencies:
|
|
1626
|
+
'@types/react': '*'
|
|
1627
|
+
'@types/react-dom': '*'
|
|
1334
1628
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1335
1629
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1630
|
+
peerDependenciesMeta:
|
|
1631
|
+
'@types/react':
|
|
1632
|
+
optional: true
|
|
1633
|
+
'@types/react-dom':
|
|
1634
|
+
optional: true
|
|
1336
1635
|
dependencies:
|
|
1337
1636
|
'@babel/runtime': 7.21.0
|
|
1338
|
-
'@radix-ui/primitive': 1.0.
|
|
1339
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1340
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1341
|
-
'@radix-ui/react-context': 1.0.
|
|
1342
|
-
'@radix-ui/react-direction': 1.0.
|
|
1343
|
-
'@radix-ui/react-id': 1.0.
|
|
1344
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1345
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1346
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1637
|
+
'@radix-ui/primitive': 1.0.1
|
|
1638
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1639
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1640
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1641
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1642
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1643
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1644
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1645
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1646
|
+
'@types/react': 18.2.7
|
|
1647
|
+
'@types/react-dom': 18.2.4
|
|
1347
1648
|
react: 18.2.0
|
|
1348
1649
|
react-dom: 18.2.0(react@18.2.0)
|
|
1349
1650
|
dev: false
|
|
1350
1651
|
|
|
1351
|
-
/@radix-ui/react-scroll-area@1.0.
|
|
1352
|
-
resolution: {integrity: sha512-
|
|
1652
|
+
/@radix-ui/react-scroll-area@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1653
|
+
resolution: {integrity: sha512-OIClwBkwPG+FKvC4OMTRaa/3cfD069nkKFFL/TQzRzaO42Ce5ivKU9VMKgT7UU6UIkjcQqKBrDOIzWtPGw6e6w==}
|
|
1353
1654
|
peerDependencies:
|
|
1655
|
+
'@types/react': '*'
|
|
1656
|
+
'@types/react-dom': '*'
|
|
1354
1657
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1355
1658
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1659
|
+
peerDependenciesMeta:
|
|
1660
|
+
'@types/react':
|
|
1661
|
+
optional: true
|
|
1662
|
+
'@types/react-dom':
|
|
1663
|
+
optional: true
|
|
1356
1664
|
dependencies:
|
|
1357
1665
|
'@babel/runtime': 7.21.0
|
|
1358
|
-
'@radix-ui/number': 1.0.
|
|
1359
|
-
'@radix-ui/primitive': 1.0.
|
|
1360
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1361
|
-
'@radix-ui/react-context': 1.0.
|
|
1362
|
-
'@radix-ui/react-direction': 1.0.
|
|
1363
|
-
'@radix-ui/react-presence': 1.0.
|
|
1364
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1365
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1366
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
1666
|
+
'@radix-ui/number': 1.0.1
|
|
1667
|
+
'@radix-ui/primitive': 1.0.1
|
|
1668
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1669
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1670
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1671
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1672
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1673
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1674
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1675
|
+
'@types/react': 18.2.7
|
|
1676
|
+
'@types/react-dom': 18.2.4
|
|
1367
1677
|
react: 18.2.0
|
|
1368
1678
|
react-dom: 18.2.0(react@18.2.0)
|
|
1369
1679
|
dev: false
|
|
1370
1680
|
|
|
1371
|
-
/@radix-ui/react-select@1.2.
|
|
1372
|
-
resolution: {integrity: sha512-
|
|
1681
|
+
/@radix-ui/react-select@1.2.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1682
|
+
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
|
|
1373
1683
|
peerDependencies:
|
|
1684
|
+
'@types/react': '*'
|
|
1685
|
+
'@types/react-dom': '*'
|
|
1374
1686
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1375
1687
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1688
|
+
peerDependenciesMeta:
|
|
1689
|
+
'@types/react':
|
|
1690
|
+
optional: true
|
|
1691
|
+
'@types/react-dom':
|
|
1692
|
+
optional: true
|
|
1376
1693
|
dependencies:
|
|
1377
1694
|
'@babel/runtime': 7.21.0
|
|
1378
|
-
'@radix-ui/number': 1.0.
|
|
1379
|
-
'@radix-ui/primitive': 1.0.
|
|
1380
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1381
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1382
|
-
'@radix-ui/react-context': 1.0.
|
|
1383
|
-
'@radix-ui/react-direction': 1.0.
|
|
1384
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1385
|
-
'@radix-ui/react-focus-guards': 1.0.
|
|
1386
|
-
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1387
|
-
'@radix-ui/react-id': 1.0.
|
|
1388
|
-
'@radix-ui/react-popper': 1.1.
|
|
1389
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1390
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1391
|
-
'@radix-ui/react-slot': 1.0.
|
|
1392
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1393
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1394
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
1395
|
-
'@radix-ui/react-use-previous': 1.0.
|
|
1396
|
-
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1695
|
+
'@radix-ui/number': 1.0.1
|
|
1696
|
+
'@radix-ui/primitive': 1.0.1
|
|
1697
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1698
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1699
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1700
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1701
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1702
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1703
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1704
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1705
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1706
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1707
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1708
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
1709
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1710
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1711
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1712
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1713
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1714
|
+
'@types/react': 18.2.7
|
|
1715
|
+
'@types/react-dom': 18.2.4
|
|
1397
1716
|
aria-hidden: 1.2.3
|
|
1398
1717
|
react: 18.2.0
|
|
1399
1718
|
react-dom: 18.2.0(react@18.2.0)
|
|
1400
1719
|
react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
|
|
1401
|
-
transitivePeerDependencies:
|
|
1402
|
-
- '@types/react'
|
|
1403
1720
|
dev: false
|
|
1404
1721
|
|
|
1405
|
-
/@radix-ui/react-separator@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1406
|
-
resolution: {integrity: sha512-
|
|
1722
|
+
/@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1723
|
+
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
|
|
1407
1724
|
peerDependencies:
|
|
1725
|
+
'@types/react': '*'
|
|
1726
|
+
'@types/react-dom': '*'
|
|
1408
1727
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1409
1728
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1729
|
+
peerDependenciesMeta:
|
|
1730
|
+
'@types/react':
|
|
1731
|
+
optional: true
|
|
1732
|
+
'@types/react-dom':
|
|
1733
|
+
optional: true
|
|
1410
1734
|
dependencies:
|
|
1411
1735
|
'@babel/runtime': 7.21.0
|
|
1412
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1736
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1737
|
+
'@types/react': 18.2.7
|
|
1738
|
+
'@types/react-dom': 18.2.4
|
|
1413
1739
|
react: 18.2.0
|
|
1414
1740
|
react-dom: 18.2.0(react@18.2.0)
|
|
1415
1741
|
dev: false
|
|
1416
1742
|
|
|
1417
|
-
/@radix-ui/react-slider@1.1.
|
|
1418
|
-
resolution: {integrity: sha512-
|
|
1743
|
+
/@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1744
|
+
resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==}
|
|
1419
1745
|
peerDependencies:
|
|
1746
|
+
'@types/react': '*'
|
|
1747
|
+
'@types/react-dom': '*'
|
|
1420
1748
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1421
1749
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1750
|
+
peerDependenciesMeta:
|
|
1751
|
+
'@types/react':
|
|
1752
|
+
optional: true
|
|
1753
|
+
'@types/react-dom':
|
|
1754
|
+
optional: true
|
|
1422
1755
|
dependencies:
|
|
1423
1756
|
'@babel/runtime': 7.21.0
|
|
1424
|
-
'@radix-ui/number': 1.0.
|
|
1425
|
-
'@radix-ui/primitive': 1.0.
|
|
1426
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1427
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1428
|
-
'@radix-ui/react-context': 1.0.
|
|
1429
|
-
'@radix-ui/react-direction': 1.0.
|
|
1430
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1431
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1432
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
1433
|
-
'@radix-ui/react-use-previous': 1.0.
|
|
1434
|
-
'@radix-ui/react-use-size': 1.0.
|
|
1757
|
+
'@radix-ui/number': 1.0.1
|
|
1758
|
+
'@radix-ui/primitive': 1.0.1
|
|
1759
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1760
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1761
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1762
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1763
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1764
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1765
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1766
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1767
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1768
|
+
'@types/react': 18.2.7
|
|
1769
|
+
'@types/react-dom': 18.2.4
|
|
1435
1770
|
react: 18.2.0
|
|
1436
1771
|
react-dom: 18.2.0(react@18.2.0)
|
|
1437
1772
|
dev: false
|
|
@@ -1446,131 +1781,188 @@ packages:
|
|
|
1446
1781
|
react: 18.2.0
|
|
1447
1782
|
dev: false
|
|
1448
1783
|
|
|
1449
|
-
/@radix-ui/react-slot@1.0.
|
|
1450
|
-
resolution: {integrity: sha512-
|
|
1784
|
+
/@radix-ui/react-slot@1.0.2(@types/react@18.2.7)(react@18.2.0):
|
|
1785
|
+
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
|
|
1451
1786
|
peerDependencies:
|
|
1787
|
+
'@types/react': '*'
|
|
1452
1788
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1789
|
+
peerDependenciesMeta:
|
|
1790
|
+
'@types/react':
|
|
1791
|
+
optional: true
|
|
1453
1792
|
dependencies:
|
|
1454
1793
|
'@babel/runtime': 7.21.0
|
|
1455
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1794
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1795
|
+
'@types/react': 18.2.7
|
|
1456
1796
|
react: 18.2.0
|
|
1457
1797
|
dev: false
|
|
1458
1798
|
|
|
1459
|
-
/@radix-ui/react-switch@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1460
|
-
resolution: {integrity: sha512-
|
|
1799
|
+
/@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1800
|
+
resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
|
|
1461
1801
|
peerDependencies:
|
|
1802
|
+
'@types/react': '*'
|
|
1803
|
+
'@types/react-dom': '*'
|
|
1462
1804
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1463
1805
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1806
|
+
peerDependenciesMeta:
|
|
1807
|
+
'@types/react':
|
|
1808
|
+
optional: true
|
|
1809
|
+
'@types/react-dom':
|
|
1810
|
+
optional: true
|
|
1464
1811
|
dependencies:
|
|
1465
1812
|
'@babel/runtime': 7.21.0
|
|
1466
|
-
'@radix-ui/primitive': 1.0.
|
|
1467
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1468
|
-
'@radix-ui/react-context': 1.0.
|
|
1469
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1470
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1471
|
-
'@radix-ui/react-use-previous': 1.0.
|
|
1472
|
-
'@radix-ui/react-use-size': 1.0.
|
|
1813
|
+
'@radix-ui/primitive': 1.0.1
|
|
1814
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1815
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1816
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1817
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1818
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1819
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1820
|
+
'@types/react': 18.2.7
|
|
1821
|
+
'@types/react-dom': 18.2.4
|
|
1473
1822
|
react: 18.2.0
|
|
1474
1823
|
react-dom: 18.2.0(react@18.2.0)
|
|
1475
1824
|
dev: false
|
|
1476
1825
|
|
|
1477
|
-
/@radix-ui/react-tabs@1.0.
|
|
1478
|
-
resolution: {integrity: sha512-
|
|
1826
|
+
/@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1827
|
+
resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
|
|
1479
1828
|
peerDependencies:
|
|
1829
|
+
'@types/react': '*'
|
|
1830
|
+
'@types/react-dom': '*'
|
|
1480
1831
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1481
1832
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1833
|
+
peerDependenciesMeta:
|
|
1834
|
+
'@types/react':
|
|
1835
|
+
optional: true
|
|
1836
|
+
'@types/react-dom':
|
|
1837
|
+
optional: true
|
|
1482
1838
|
dependencies:
|
|
1483
1839
|
'@babel/runtime': 7.21.0
|
|
1484
|
-
'@radix-ui/primitive': 1.0.
|
|
1485
|
-
'@radix-ui/react-context': 1.0.
|
|
1486
|
-
'@radix-ui/react-direction': 1.0.
|
|
1487
|
-
'@radix-ui/react-id': 1.0.
|
|
1488
|
-
'@radix-ui/react-presence': 1.0.
|
|
1489
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1490
|
-
'@radix-ui/react-roving-focus': 1.0.
|
|
1491
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1840
|
+
'@radix-ui/primitive': 1.0.1
|
|
1841
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1842
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1843
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1844
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1845
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1846
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1847
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1848
|
+
'@types/react': 18.2.7
|
|
1849
|
+
'@types/react-dom': 18.2.4
|
|
1492
1850
|
react: 18.2.0
|
|
1493
1851
|
react-dom: 18.2.0(react@18.2.0)
|
|
1494
1852
|
dev: false
|
|
1495
1853
|
|
|
1496
|
-
/@radix-ui/react-toast@1.1.
|
|
1497
|
-
resolution: {integrity: sha512-
|
|
1854
|
+
/@radix-ui/react-toast@1.1.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1855
|
+
resolution: {integrity: sha512-wf+fc8DOywrpRK3jlPlWVe+ELYGHdKDaaARJZNuUTWyWYq7+ANCFLp4rTjZ/mcGkJJQ/vZ949Zis9xxEpfq9OA==}
|
|
1498
1856
|
peerDependencies:
|
|
1857
|
+
'@types/react': '*'
|
|
1858
|
+
'@types/react-dom': '*'
|
|
1499
1859
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1500
1860
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1861
|
+
peerDependenciesMeta:
|
|
1862
|
+
'@types/react':
|
|
1863
|
+
optional: true
|
|
1864
|
+
'@types/react-dom':
|
|
1865
|
+
optional: true
|
|
1501
1866
|
dependencies:
|
|
1502
1867
|
'@babel/runtime': 7.21.0
|
|
1503
|
-
'@radix-ui/primitive': 1.0.
|
|
1504
|
-
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1505
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1506
|
-
'@radix-ui/react-context': 1.0.
|
|
1507
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1508
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1509
|
-
'@radix-ui/react-presence': 1.0.
|
|
1510
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1511
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
1512
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1513
|
-
'@radix-ui/react-use-layout-effect': 1.0.
|
|
1514
|
-
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1868
|
+
'@radix-ui/primitive': 1.0.1
|
|
1869
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1870
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1871
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1872
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1873
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1874
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1875
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1876
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1877
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1878
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1879
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1880
|
+
'@types/react': 18.2.7
|
|
1881
|
+
'@types/react-dom': 18.2.4
|
|
1515
1882
|
react: 18.2.0
|
|
1516
1883
|
react-dom: 18.2.0(react@18.2.0)
|
|
1517
1884
|
dev: false
|
|
1518
1885
|
|
|
1519
|
-
/@radix-ui/react-toggle-group@1.0.
|
|
1520
|
-
resolution: {integrity: sha512-
|
|
1886
|
+
/@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1887
|
+
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
|
|
1521
1888
|
peerDependencies:
|
|
1889
|
+
'@types/react': '*'
|
|
1890
|
+
'@types/react-dom': '*'
|
|
1522
1891
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1523
1892
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1893
|
+
peerDependenciesMeta:
|
|
1894
|
+
'@types/react':
|
|
1895
|
+
optional: true
|
|
1896
|
+
'@types/react-dom':
|
|
1897
|
+
optional: true
|
|
1524
1898
|
dependencies:
|
|
1525
1899
|
'@babel/runtime': 7.21.0
|
|
1526
|
-
'@radix-ui/primitive': 1.0.
|
|
1527
|
-
'@radix-ui/react-context': 1.0.
|
|
1528
|
-
'@radix-ui/react-direction': 1.0.
|
|
1529
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1530
|
-
'@radix-ui/react-roving-focus': 1.0.
|
|
1531
|
-
'@radix-ui/react-toggle': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1532
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1900
|
+
'@radix-ui/primitive': 1.0.1
|
|
1901
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1902
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1903
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1904
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1905
|
+
'@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1906
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1907
|
+
'@types/react': 18.2.7
|
|
1908
|
+
'@types/react-dom': 18.2.4
|
|
1533
1909
|
react: 18.2.0
|
|
1534
1910
|
react-dom: 18.2.0(react@18.2.0)
|
|
1535
1911
|
dev: false
|
|
1536
1912
|
|
|
1537
|
-
/@radix-ui/react-toggle@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1538
|
-
resolution: {integrity: sha512-
|
|
1913
|
+
/@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1914
|
+
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
|
|
1539
1915
|
peerDependencies:
|
|
1916
|
+
'@types/react': '*'
|
|
1917
|
+
'@types/react-dom': '*'
|
|
1540
1918
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1541
1919
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1920
|
+
peerDependenciesMeta:
|
|
1921
|
+
'@types/react':
|
|
1922
|
+
optional: true
|
|
1923
|
+
'@types/react-dom':
|
|
1924
|
+
optional: true
|
|
1542
1925
|
dependencies:
|
|
1543
1926
|
'@babel/runtime': 7.21.0
|
|
1544
|
-
'@radix-ui/primitive': 1.0.
|
|
1545
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1546
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1927
|
+
'@radix-ui/primitive': 1.0.1
|
|
1928
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1929
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1930
|
+
'@types/react': 18.2.7
|
|
1931
|
+
'@types/react-dom': 18.2.4
|
|
1547
1932
|
react: 18.2.0
|
|
1548
1933
|
react-dom: 18.2.0(react@18.2.0)
|
|
1549
1934
|
dev: false
|
|
1550
1935
|
|
|
1551
|
-
/@radix-ui/react-tooltip@1.0.
|
|
1552
|
-
resolution: {integrity: sha512-
|
|
1936
|
+
/@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
1937
|
+
resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
|
|
1553
1938
|
peerDependencies:
|
|
1939
|
+
'@types/react': '*'
|
|
1940
|
+
'@types/react-dom': '*'
|
|
1554
1941
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1555
1942
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1943
|
+
peerDependenciesMeta:
|
|
1944
|
+
'@types/react':
|
|
1945
|
+
optional: true
|
|
1946
|
+
'@types/react-dom':
|
|
1947
|
+
optional: true
|
|
1556
1948
|
dependencies:
|
|
1557
1949
|
'@babel/runtime': 7.21.0
|
|
1558
|
-
'@radix-ui/primitive': 1.0.
|
|
1559
|
-
'@radix-ui/react-compose-refs': 1.0.
|
|
1560
|
-
'@radix-ui/react-context': 1.0.
|
|
1561
|
-
'@radix-ui/react-dismissable-layer': 1.0.
|
|
1562
|
-
'@radix-ui/react-id': 1.0.
|
|
1563
|
-
'@radix-ui/react-popper': 1.1.
|
|
1564
|
-
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1565
|
-
'@radix-ui/react-presence': 1.0.
|
|
1566
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1567
|
-
'@radix-ui/react-slot': 1.0.
|
|
1568
|
-
'@radix-ui/react-use-controllable-state': 1.0.
|
|
1569
|
-
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1950
|
+
'@radix-ui/primitive': 1.0.1
|
|
1951
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1952
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1953
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1954
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1955
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1956
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1957
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1958
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1959
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.7)(react@18.2.0)
|
|
1960
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
1961
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
1962
|
+
'@types/react': 18.2.7
|
|
1963
|
+
'@types/react-dom': 18.2.4
|
|
1570
1964
|
react: 18.2.0
|
|
1571
1965
|
react-dom: 18.2.0(react@18.2.0)
|
|
1572
|
-
transitivePeerDependencies:
|
|
1573
|
-
- '@types/react'
|
|
1574
1966
|
dev: false
|
|
1575
1967
|
|
|
1576
1968
|
/@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0):
|
|
@@ -1582,6 +1974,20 @@ packages:
|
|
|
1582
1974
|
react: 18.2.0
|
|
1583
1975
|
dev: false
|
|
1584
1976
|
|
|
1977
|
+
/@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
1978
|
+
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
|
|
1979
|
+
peerDependencies:
|
|
1980
|
+
'@types/react': '*'
|
|
1981
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1982
|
+
peerDependenciesMeta:
|
|
1983
|
+
'@types/react':
|
|
1984
|
+
optional: true
|
|
1985
|
+
dependencies:
|
|
1986
|
+
'@babel/runtime': 7.21.0
|
|
1987
|
+
'@types/react': 18.2.7
|
|
1988
|
+
react: 18.2.0
|
|
1989
|
+
dev: false
|
|
1990
|
+
|
|
1585
1991
|
/@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0):
|
|
1586
1992
|
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
|
|
1587
1993
|
peerDependencies:
|
|
@@ -1592,6 +1998,21 @@ packages:
|
|
|
1592
1998
|
react: 18.2.0
|
|
1593
1999
|
dev: false
|
|
1594
2000
|
|
|
2001
|
+
/@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
2002
|
+
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
|
|
2003
|
+
peerDependencies:
|
|
2004
|
+
'@types/react': '*'
|
|
2005
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
2006
|
+
peerDependenciesMeta:
|
|
2007
|
+
'@types/react':
|
|
2008
|
+
optional: true
|
|
2009
|
+
dependencies:
|
|
2010
|
+
'@babel/runtime': 7.21.0
|
|
2011
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
2012
|
+
'@types/react': 18.2.7
|
|
2013
|
+
react: 18.2.0
|
|
2014
|
+
dev: false
|
|
2015
|
+
|
|
1595
2016
|
/@radix-ui/react-use-escape-keydown@1.0.0(react@18.2.0):
|
|
1596
2017
|
resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
|
|
1597
2018
|
peerDependencies:
|
|
@@ -1602,13 +2023,18 @@ packages:
|
|
|
1602
2023
|
react: 18.2.0
|
|
1603
2024
|
dev: false
|
|
1604
2025
|
|
|
1605
|
-
/@radix-ui/react-use-escape-keydown@1.0.2(react@18.2.0):
|
|
1606
|
-
resolution: {integrity: sha512-
|
|
2026
|
+
/@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.7)(react@18.2.0):
|
|
2027
|
+
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
|
|
1607
2028
|
peerDependencies:
|
|
2029
|
+
'@types/react': '*'
|
|
1608
2030
|
react: ^16.8 || ^17.0 || ^18.0
|
|
2031
|
+
peerDependenciesMeta:
|
|
2032
|
+
'@types/react':
|
|
2033
|
+
optional: true
|
|
1609
2034
|
dependencies:
|
|
1610
2035
|
'@babel/runtime': 7.21.0
|
|
1611
|
-
'@radix-ui/react-use-callback-ref': 1.0.
|
|
2036
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
2037
|
+
'@types/react': 18.2.7
|
|
1612
2038
|
react: 18.2.0
|
|
1613
2039
|
dev: false
|
|
1614
2040
|
|
|
@@ -1621,49 +2047,87 @@ packages:
|
|
|
1621
2047
|
react: 18.2.0
|
|
1622
2048
|
dev: false
|
|
1623
2049
|
|
|
1624
|
-
/@radix-ui/react-use-
|
|
1625
|
-
resolution: {integrity: sha512-
|
|
2050
|
+
/@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
2051
|
+
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
|
|
1626
2052
|
peerDependencies:
|
|
2053
|
+
'@types/react': '*'
|
|
1627
2054
|
react: ^16.8 || ^17.0 || ^18.0
|
|
2055
|
+
peerDependenciesMeta:
|
|
2056
|
+
'@types/react':
|
|
2057
|
+
optional: true
|
|
1628
2058
|
dependencies:
|
|
1629
2059
|
'@babel/runtime': 7.21.0
|
|
2060
|
+
'@types/react': 18.2.7
|
|
1630
2061
|
react: 18.2.0
|
|
1631
2062
|
dev: false
|
|
1632
2063
|
|
|
1633
|
-
/@radix-ui/react-use-
|
|
1634
|
-
resolution: {integrity: sha512-
|
|
2064
|
+
/@radix-ui/react-use-previous@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
2065
|
+
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
|
|
1635
2066
|
peerDependencies:
|
|
2067
|
+
'@types/react': '*'
|
|
1636
2068
|
react: ^16.8 || ^17.0 || ^18.0
|
|
2069
|
+
peerDependenciesMeta:
|
|
2070
|
+
'@types/react':
|
|
2071
|
+
optional: true
|
|
1637
2072
|
dependencies:
|
|
1638
2073
|
'@babel/runtime': 7.21.0
|
|
1639
|
-
'@
|
|
2074
|
+
'@types/react': 18.2.7
|
|
1640
2075
|
react: 18.2.0
|
|
1641
2076
|
dev: false
|
|
1642
2077
|
|
|
1643
|
-
/@radix-ui/react-use-
|
|
1644
|
-
resolution: {integrity: sha512-
|
|
2078
|
+
/@radix-ui/react-use-rect@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
2079
|
+
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
|
|
1645
2080
|
peerDependencies:
|
|
2081
|
+
'@types/react': '*'
|
|
1646
2082
|
react: ^16.8 || ^17.0 || ^18.0
|
|
2083
|
+
peerDependenciesMeta:
|
|
2084
|
+
'@types/react':
|
|
2085
|
+
optional: true
|
|
1647
2086
|
dependencies:
|
|
1648
2087
|
'@babel/runtime': 7.21.0
|
|
1649
|
-
'@radix-ui/
|
|
2088
|
+
'@radix-ui/rect': 1.0.1
|
|
2089
|
+
'@types/react': 18.2.7
|
|
2090
|
+
react: 18.2.0
|
|
2091
|
+
dev: false
|
|
2092
|
+
|
|
2093
|
+
/@radix-ui/react-use-size@1.0.1(@types/react@18.2.7)(react@18.2.0):
|
|
2094
|
+
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
|
|
2095
|
+
peerDependencies:
|
|
2096
|
+
'@types/react': '*'
|
|
2097
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
2098
|
+
peerDependenciesMeta:
|
|
2099
|
+
'@types/react':
|
|
2100
|
+
optional: true
|
|
2101
|
+
dependencies:
|
|
2102
|
+
'@babel/runtime': 7.21.0
|
|
2103
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.7)(react@18.2.0)
|
|
2104
|
+
'@types/react': 18.2.7
|
|
1650
2105
|
react: 18.2.0
|
|
1651
2106
|
dev: false
|
|
1652
2107
|
|
|
1653
|
-
/@radix-ui/react-visually-hidden@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1654
|
-
resolution: {integrity: sha512-
|
|
2108
|
+
/@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
|
2109
|
+
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
|
|
1655
2110
|
peerDependencies:
|
|
2111
|
+
'@types/react': '*'
|
|
2112
|
+
'@types/react-dom': '*'
|
|
1656
2113
|
react: ^16.8 || ^17.0 || ^18.0
|
|
1657
2114
|
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
2115
|
+
peerDependenciesMeta:
|
|
2116
|
+
'@types/react':
|
|
2117
|
+
optional: true
|
|
2118
|
+
'@types/react-dom':
|
|
2119
|
+
optional: true
|
|
1658
2120
|
dependencies:
|
|
1659
2121
|
'@babel/runtime': 7.21.0
|
|
1660
|
-
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
2122
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
|
2123
|
+
'@types/react': 18.2.7
|
|
2124
|
+
'@types/react-dom': 18.2.4
|
|
1661
2125
|
react: 18.2.0
|
|
1662
2126
|
react-dom: 18.2.0(react@18.2.0)
|
|
1663
2127
|
dev: false
|
|
1664
2128
|
|
|
1665
|
-
/@radix-ui/rect@1.0.
|
|
1666
|
-
resolution: {integrity: sha512-
|
|
2129
|
+
/@radix-ui/rect@1.0.1:
|
|
2130
|
+
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
|
|
1667
2131
|
dependencies:
|
|
1668
2132
|
'@babel/runtime': 7.21.0
|
|
1669
2133
|
dev: false
|
|
@@ -1872,8 +2336,8 @@ packages:
|
|
|
1872
2336
|
resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==}
|
|
1873
2337
|
dev: false
|
|
1874
2338
|
|
|
1875
|
-
/@types/node@20.2.
|
|
1876
|
-
resolution: {integrity: sha512-
|
|
2339
|
+
/@types/node@20.2.5:
|
|
2340
|
+
resolution: {integrity: sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==}
|
|
1877
2341
|
dev: true
|
|
1878
2342
|
|
|
1879
2343
|
/@types/prop-types@15.7.5:
|
|
@@ -1883,7 +2347,6 @@ packages:
|
|
|
1883
2347
|
resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==}
|
|
1884
2348
|
dependencies:
|
|
1885
2349
|
'@types/react': 18.2.7
|
|
1886
|
-
dev: true
|
|
1887
2350
|
|
|
1888
2351
|
/@types/react@18.2.7:
|
|
1889
2352
|
resolution: {integrity: sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==}
|
|
@@ -2744,10 +3207,6 @@ packages:
|
|
|
2744
3207
|
'@pkgjs/parseargs': 0.11.0
|
|
2745
3208
|
dev: true
|
|
2746
3209
|
|
|
2747
|
-
/javascript-natural-sort@0.7.1:
|
|
2748
|
-
resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
|
|
2749
|
-
dev: true
|
|
2750
|
-
|
|
2751
3210
|
/jiti@1.18.2:
|
|
2752
3211
|
resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
|
|
2753
3212
|
hasBin: true
|
|
@@ -2787,14 +3246,6 @@ packages:
|
|
|
2787
3246
|
/lines-and-columns@1.2.4:
|
|
2788
3247
|
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
2789
3248
|
|
|
2790
|
-
/lodash.clone@4.5.0:
|
|
2791
|
-
resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
|
|
2792
|
-
dev: true
|
|
2793
|
-
|
|
2794
|
-
/lodash.isequal@4.5.0:
|
|
2795
|
-
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
|
|
2796
|
-
dev: true
|
|
2797
|
-
|
|
2798
3249
|
/lodash@4.17.21:
|
|
2799
3250
|
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
|
2800
3251
|
dev: false
|
|
@@ -3046,20 +3497,20 @@ packages:
|
|
|
3046
3497
|
engines: {node: '>= 0.6'}
|
|
3047
3498
|
dev: true
|
|
3048
3499
|
|
|
3049
|
-
/next-themes@0.2.1(next@13.4.4
|
|
3500
|
+
/next-themes@0.2.1(next@13.4.4)(react-dom@18.2.0)(react@18.2.0):
|
|
3050
3501
|
resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
|
|
3051
3502
|
peerDependencies:
|
|
3052
3503
|
next: '*'
|
|
3053
3504
|
react: '*'
|
|
3054
3505
|
react-dom: '*'
|
|
3055
3506
|
dependencies:
|
|
3056
|
-
next: 13.4.4
|
|
3507
|
+
next: 13.4.4(@babel/core@7.22.1)(react-dom@18.2.0)(react@18.2.0)
|
|
3057
3508
|
react: 18.2.0
|
|
3058
3509
|
react-dom: 18.2.0(react@18.2.0)
|
|
3059
3510
|
dev: false
|
|
3060
3511
|
|
|
3061
|
-
/next@13.4.4
|
|
3062
|
-
resolution: {integrity: sha512-
|
|
3512
|
+
/next@13.4.4(@babel/core@7.22.1)(react-dom@18.2.0)(react@18.2.0):
|
|
3513
|
+
resolution: {integrity: sha512-C5S0ysM0Ily9McL4Jb48nOQHT1BukOWI59uC3X/xCMlYIh9rJZCv7nzG92J6e1cOBqQbKovlpgvHWFmz4eKKEA==}
|
|
3063
3514
|
engines: {node: '>=16.8.0'}
|
|
3064
3515
|
hasBin: true
|
|
3065
3516
|
peerDependencies:
|
|
@@ -3076,25 +3527,25 @@ packages:
|
|
|
3076
3527
|
sass:
|
|
3077
3528
|
optional: true
|
|
3078
3529
|
dependencies:
|
|
3079
|
-
'@next/env': 13.4.4
|
|
3530
|
+
'@next/env': 13.4.4
|
|
3080
3531
|
'@swc/helpers': 0.5.1
|
|
3081
3532
|
busboy: 1.6.0
|
|
3082
3533
|
caniuse-lite: 1.0.30001480
|
|
3083
3534
|
postcss: 8.4.14
|
|
3084
3535
|
react: 18.2.0
|
|
3085
3536
|
react-dom: 18.2.0(react@18.2.0)
|
|
3086
|
-
styled-jsx: 5.1.1(@babel/core@7.
|
|
3537
|
+
styled-jsx: 5.1.1(@babel/core@7.22.1)(react@18.2.0)
|
|
3087
3538
|
zod: 3.21.4
|
|
3088
3539
|
optionalDependencies:
|
|
3089
|
-
'@next/swc-darwin-arm64': 13.4.4
|
|
3090
|
-
'@next/swc-darwin-x64': 13.4.4
|
|
3091
|
-
'@next/swc-linux-arm64-gnu': 13.4.4
|
|
3092
|
-
'@next/swc-linux-arm64-musl': 13.4.4
|
|
3093
|
-
'@next/swc-linux-x64-gnu': 13.4.4
|
|
3094
|
-
'@next/swc-linux-x64-musl': 13.4.4
|
|
3095
|
-
'@next/swc-win32-arm64-msvc': 13.4.4
|
|
3096
|
-
'@next/swc-win32-ia32-msvc': 13.4.4
|
|
3097
|
-
'@next/swc-win32-x64-msvc': 13.4.4
|
|
3540
|
+
'@next/swc-darwin-arm64': 13.4.4
|
|
3541
|
+
'@next/swc-darwin-x64': 13.4.4
|
|
3542
|
+
'@next/swc-linux-arm64-gnu': 13.4.4
|
|
3543
|
+
'@next/swc-linux-arm64-musl': 13.4.4
|
|
3544
|
+
'@next/swc-linux-x64-gnu': 13.4.4
|
|
3545
|
+
'@next/swc-linux-x64-musl': 13.4.4
|
|
3546
|
+
'@next/swc-win32-arm64-msvc': 13.4.4
|
|
3547
|
+
'@next/swc-win32-ia32-msvc': 13.4.4
|
|
3548
|
+
'@next/swc-win32-x64-msvc': 13.4.4
|
|
3098
3549
|
transitivePeerDependencies:
|
|
3099
3550
|
- '@babel/core'
|
|
3100
3551
|
- babel-plugin-macros
|
|
@@ -3388,7 +3839,7 @@ packages:
|
|
|
3388
3839
|
picocolors: 1.0.0
|
|
3389
3840
|
source-map-js: 1.0.2
|
|
3390
3841
|
|
|
3391
|
-
/prettier-plugin-tailwindcss@0.3.0(@ianvs/prettier-plugin-sort-imports@
|
|
3842
|
+
/prettier-plugin-tailwindcss@0.3.0(@ianvs/prettier-plugin-sort-imports@4.0.0)(prettier@2.8.8):
|
|
3392
3843
|
resolution: {integrity: sha512-009/Xqdy7UmkcTBpwlq7jsViDqXAYSOMLDrHAdTMlVZOrKfM2o9Ci7EMWTMZ7SkKBFTG04UM9F9iM2+4i6boDA==}
|
|
3393
3844
|
engines: {node: '>=12.17.0'}
|
|
3394
3845
|
peerDependencies:
|
|
@@ -3440,7 +3891,7 @@ packages:
|
|
|
3440
3891
|
prettier-plugin-twig-melody:
|
|
3441
3892
|
optional: true
|
|
3442
3893
|
dependencies:
|
|
3443
|
-
'@ianvs/prettier-plugin-sort-imports':
|
|
3894
|
+
'@ianvs/prettier-plugin-sort-imports': 4.0.0(prettier@2.8.8)
|
|
3444
3895
|
prettier: 2.8.8
|
|
3445
3896
|
dev: true
|
|
3446
3897
|
|
|
@@ -3511,8 +3962,8 @@ packages:
|
|
|
3511
3962
|
scheduler: 0.23.0
|
|
3512
3963
|
dev: false
|
|
3513
3964
|
|
|
3514
|
-
/react-hook-form@7.
|
|
3515
|
-
resolution: {integrity: sha512-
|
|
3965
|
+
/react-hook-form@7.44.1(react@18.2.0):
|
|
3966
|
+
resolution: {integrity: sha512-ZVmDuQQCq6agpVE2eoGjH3ZMDgo/aFV4JVobUQGOQ0/tgfcY/WY30mBSVnxmFOpzS+iSqD2ax7hw9Thg5F931A==}
|
|
3516
3967
|
engines: {node: '>=12.22.0'}
|
|
3517
3968
|
peerDependencies:
|
|
3518
3969
|
react: ^16.8.0 || ^17 || ^18
|
|
@@ -3939,7 +4390,7 @@ packages:
|
|
|
3939
4390
|
ansi-regex: 6.0.1
|
|
3940
4391
|
dev: true
|
|
3941
4392
|
|
|
3942
|
-
/styled-jsx@5.1.1(@babel/core@7.
|
|
4393
|
+
/styled-jsx@5.1.1(@babel/core@7.22.1)(react@18.2.0):
|
|
3943
4394
|
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
|
|
3944
4395
|
engines: {node: '>= 12.0.0'}
|
|
3945
4396
|
peerDependencies:
|
|
@@ -3952,7 +4403,7 @@ packages:
|
|
|
3952
4403
|
babel-plugin-macros:
|
|
3953
4404
|
optional: true
|
|
3954
4405
|
dependencies:
|
|
3955
|
-
'@babel/core': 7.
|
|
4406
|
+
'@babel/core': 7.22.1
|
|
3956
4407
|
client-only: 0.0.1
|
|
3957
4408
|
react: 18.2.0
|
|
3958
4409
|
dev: false
|
|
@@ -4165,19 +4616,6 @@ packages:
|
|
|
4165
4616
|
tslib: 2.5.0
|
|
4166
4617
|
dev: false
|
|
4167
4618
|
|
|
4168
|
-
/use-isomorphic-layout-effect@1.1.2(@types/react@18.2.7)(react@18.2.0):
|
|
4169
|
-
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
|
|
4170
|
-
peerDependencies:
|
|
4171
|
-
'@types/react': '*'
|
|
4172
|
-
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
4173
|
-
peerDependenciesMeta:
|
|
4174
|
-
'@types/react':
|
|
4175
|
-
optional: true
|
|
4176
|
-
dependencies:
|
|
4177
|
-
'@types/react': 18.2.7
|
|
4178
|
-
react: 18.2.0
|
|
4179
|
-
dev: false
|
|
4180
|
-
|
|
4181
4619
|
/use-sidecar@1.1.2(@types/react@18.2.7)(react@18.2.0):
|
|
4182
4620
|
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
|
|
4183
4621
|
engines: {node: '>=10'}
|