@gv-tech/design-system 2.3.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agent/skills/dogfood-components/SKILL.md +6 -6
- package/.agent/skills/maintain-component/SKILL.md +59 -24
- package/.agent/workflows/native-playground.md +93 -0
- package/.github/workflows/ci.yml +19 -1
- package/.github/workflows/release-please.yml +32 -6
- package/.release-please-manifest.json +7 -1
- package/.tool-versions +1 -1
- package/CHANGELOG.md +15 -0
- package/apps/.gitkeep +0 -0
- package/apps/native-playground/CHANGELOG.md +8 -0
- package/apps/native-playground/app.json +37 -0
- package/apps/native-playground/assets/fonts/.gitkeep +0 -0
- package/apps/native-playground/assets/images/adaptive-icon.png +0 -0
- package/apps/native-playground/assets/images/favicon.png +0 -0
- package/apps/native-playground/assets/images/icon.png +0 -0
- package/apps/native-playground/assets/images/splash-icon.png +0 -0
- package/apps/native-playground/babel.config.js +6 -0
- package/apps/native-playground/eas.json +25 -0
- package/apps/native-playground/index.js +8 -0
- package/apps/native-playground/metro.config.js +26 -0
- package/apps/native-playground/nativewind-env.d.ts +1 -0
- package/apps/native-playground/package.json +23 -0
- package/apps/native-playground/project.json +15 -0
- package/apps/native-playground/src/app/App.tsx +842 -0
- package/apps/native-playground/src/global.css +49 -0
- package/apps/native-playground/tailwind.config.js +49 -0
- package/apps/native-playground/tsconfig.app.json +24 -0
- package/apps/native-playground/tsconfig.json +23 -0
- package/apps/native-playground/tsconfig.spec.json +24 -0
- package/apps/playground-web/CHANGELOG.md +8 -0
- package/apps/playground-web/package.json +31 -0
- package/apps/playground-web/src/App.tsx +179 -0
- package/apps/playground-web/src/components/docs/CodeBlock.tsx +34 -0
- package/apps/playground-web/src/components/docs/CombinedDocsLayout.tsx +103 -0
- package/apps/playground-web/src/components/docs/ComponentShowcase.tsx +96 -0
- package/apps/playground-web/src/components/docs/ErrorBoundary.tsx +55 -0
- package/apps/playground-web/src/components/docs/Footer.tsx +146 -0
- package/apps/playground-web/src/components/docs/PropsTable.tsx +43 -0
- package/apps/playground-web/src/components/docs/Search.tsx +75 -0
- package/apps/playground-web/src/components/docs/Sidebar.tsx +77 -0
- package/apps/playground-web/src/components/docs/ThemeToggle.tsx +19 -0
- package/apps/playground-web/src/components/docs/index.ts +9 -0
- package/apps/playground-web/src/config/docs.ts +293 -0
- package/apps/playground-web/src/globals.css +148 -0
- package/apps/playground-web/src/hooks/useDocMetadata.ts +34 -0
- package/apps/playground-web/src/hooks/usePackageManager.tsx +42 -0
- package/apps/playground-web/src/lib/react-native-shim.js +34 -0
- package/apps/playground-web/src/main.tsx +11 -0
- package/apps/playground-web/src/pages/index.ts +4 -0
- package/apps/playground-web/src/pages/native/AccordionDocs.tsx +85 -0
- package/apps/playground-web/src/pages/native/AlertDialogDocs.tsx +128 -0
- package/apps/playground-web/src/pages/native/AlertDocs.tsx +89 -0
- package/apps/playground-web/src/pages/native/AspectRatioDocs.tsx +52 -0
- package/apps/playground-web/src/pages/native/AvatarDocs.tsx +92 -0
- package/apps/playground-web/src/pages/native/BadgeDocs.tsx +63 -0
- package/apps/playground-web/src/pages/native/BreadcrumbDocs.tsx +71 -0
- package/apps/playground-web/src/pages/native/ButtonDocs.tsx +103 -0
- package/apps/playground-web/src/pages/native/CalendarDocs.tsx +74 -0
- package/apps/playground-web/src/pages/native/CardDocs.tsx +75 -0
- package/apps/playground-web/src/pages/native/CarouselDocs.tsx +113 -0
- package/apps/playground-web/src/pages/native/ChartDocs.tsx +115 -0
- package/apps/playground-web/src/pages/native/CheckboxDocs.tsx +38 -0
- package/apps/playground-web/src/pages/native/CollapsibleDocs.tsx +89 -0
- package/apps/playground-web/src/pages/native/CommandDocs.tsx +170 -0
- package/apps/playground-web/src/pages/native/ContextMenuDocs.tsx +121 -0
- package/apps/playground-web/src/pages/native/DialogDocs.tsx +132 -0
- package/apps/playground-web/src/pages/native/DrawerDocs.tsx +158 -0
- package/apps/playground-web/src/pages/native/DropdownMenuDocs.tsx +168 -0
- package/apps/playground-web/src/pages/native/HoverCardDocs.tsx +119 -0
- package/apps/playground-web/src/pages/native/InputDocs.tsx +86 -0
- package/apps/playground-web/src/pages/native/LabelDocs.tsx +55 -0
- package/apps/playground-web/src/pages/native/MenubarDocs.tsx +197 -0
- package/apps/playground-web/src/pages/native/NavigationMenuDocs.tsx +190 -0
- package/apps/playground-web/src/pages/native/PaginationDocs.tsx +70 -0
- package/apps/playground-web/src/pages/native/PopoverDocs.tsx +156 -0
- package/apps/playground-web/src/pages/native/ProgressDocs.tsx +61 -0
- package/apps/playground-web/src/pages/native/RadioGroupDocs.tsx +125 -0
- package/apps/playground-web/src/pages/native/ResizableDocs.tsx +118 -0
- package/apps/playground-web/src/pages/native/ScrollAreaDocs.tsx +92 -0
- package/apps/playground-web/src/pages/native/SearchDocs.tsx +150 -0
- package/apps/playground-web/src/pages/native/SelectDocs.tsx +141 -0
- package/apps/playground-web/src/pages/native/SeparatorDocs.tsx +72 -0
- package/apps/playground-web/src/pages/native/SheetDocs.tsx +140 -0
- package/apps/playground-web/src/pages/native/SkeletonDocs.tsx +44 -0
- package/apps/playground-web/src/pages/native/SliderDocs.tsx +118 -0
- package/apps/playground-web/src/pages/native/SonnerDocs.tsx +111 -0
- package/apps/playground-web/src/pages/native/SwitchDocs.tsx +87 -0
- package/apps/playground-web/src/pages/native/TableDocs.tsx +67 -0
- package/apps/playground-web/src/pages/native/TabsDocs.tsx +175 -0
- package/apps/playground-web/src/pages/native/TextareaDocs.tsx +61 -0
- package/apps/playground-web/src/pages/native/ThemeToggleDocs.tsx +288 -0
- package/apps/playground-web/src/pages/native/ToastDocs.tsx +124 -0
- package/apps/playground-web/src/pages/native/ToggleDocs.tsx +81 -0
- package/apps/playground-web/src/pages/native/ToggleGroupDocs.tsx +128 -0
- package/apps/playground-web/src/pages/native/TooltipDocs.tsx +140 -0
- package/apps/playground-web/src/pages/native/index.ts +47 -0
- package/apps/playground-web/src/pages/shared/ColorTokensDocs.tsx +234 -0
- package/apps/playground-web/src/pages/shared/GettingStarted.tsx +413 -0
- package/apps/playground-web/src/pages/web/AccordionDocs.tsx +194 -0
- package/apps/playground-web/src/pages/web/AlertDialogDocs.tsx +157 -0
- package/apps/playground-web/src/pages/web/AlertDocs.tsx +110 -0
- package/apps/playground-web/src/pages/web/AspectRatioDocs.tsx +94 -0
- package/apps/playground-web/src/pages/web/AvatarDocs.tsx +81 -0
- package/apps/playground-web/src/pages/web/BadgeDocs.tsx +66 -0
- package/apps/playground-web/src/pages/web/BreadcrumbDocs.tsx +93 -0
- package/apps/playground-web/src/pages/web/ButtonDocs.tsx +129 -0
- package/apps/playground-web/src/pages/web/CalendarDocs.tsx +78 -0
- package/apps/playground-web/src/pages/web/CardDocs.tsx +115 -0
- package/apps/playground-web/src/pages/web/CarouselDocs.tsx +176 -0
- package/apps/playground-web/src/pages/web/ChartDocs.tsx +151 -0
- package/apps/playground-web/src/pages/web/CheckboxDocs.tsx +95 -0
- package/apps/playground-web/src/pages/web/CollapsibleDocs.tsx +111 -0
- package/apps/playground-web/src/pages/web/CommandDocs.tsx +219 -0
- package/apps/playground-web/src/pages/web/ContextMenuDocs.tsx +164 -0
- package/apps/playground-web/src/pages/web/DialogDocs.tsx +175 -0
- package/apps/playground-web/src/pages/web/DrawerDocs.tsx +283 -0
- package/apps/playground-web/src/pages/web/DropdownMenuDocs.tsx +319 -0
- package/apps/playground-web/src/pages/web/FormDocs.tsx +175 -0
- package/apps/playground-web/src/pages/web/HoverCardDocs.tsx +151 -0
- package/apps/playground-web/src/pages/web/InputDocs.tsx +118 -0
- package/apps/playground-web/src/pages/web/LabelDocs.tsx +59 -0
- package/apps/playground-web/src/pages/web/MenubarDocs.tsx +296 -0
- package/apps/playground-web/src/pages/web/NavigationMenuDocs.tsx +263 -0
- package/apps/playground-web/src/pages/web/PaginationDocs.tsx +102 -0
- package/apps/playground-web/src/pages/web/PopoverDocs.tsx +189 -0
- package/apps/playground-web/src/pages/web/ProgressDocs.tsx +70 -0
- package/apps/playground-web/src/pages/web/RadioGroupDocs.tsx +137 -0
- package/apps/playground-web/src/pages/web/ResizableDocs.tsx +143 -0
- package/apps/playground-web/src/pages/web/ScrollAreaDocs.tsx +107 -0
- package/apps/playground-web/src/pages/web/SearchDocs.tsx +203 -0
- package/apps/playground-web/src/pages/web/SelectDocs.tsx +164 -0
- package/apps/playground-web/src/pages/web/SeparatorDocs.tsx +88 -0
- package/apps/playground-web/src/pages/web/SheetDocs.tsx +186 -0
- package/apps/playground-web/src/pages/web/SkeletonDocs.tsx +53 -0
- package/apps/playground-web/src/pages/web/SliderDocs.tsx +119 -0
- package/apps/playground-web/src/pages/web/SonnerDocs.tsx +126 -0
- package/apps/playground-web/src/pages/web/SwitchDocs.tsx +91 -0
- package/apps/playground-web/src/pages/web/TableDocs.tsx +148 -0
- package/apps/playground-web/src/pages/web/TabsDocs.tsx +241 -0
- package/apps/playground-web/src/pages/web/TextareaDocs.tsx +65 -0
- package/apps/playground-web/src/pages/web/ThemeToggleDocs.tsx +303 -0
- package/apps/playground-web/src/pages/web/ToastDocs.tsx +149 -0
- package/apps/playground-web/src/pages/web/ToggleDocs.tsx +85 -0
- package/apps/playground-web/src/pages/web/ToggleGroupDocs.tsx +140 -0
- package/apps/playground-web/src/pages/web/TooltipDocs.tsx +150 -0
- package/apps/playground-web/src/pages/web/index.ts +47 -0
- package/apps/playground-web/src/routes/doc-routes.tsx +363 -0
- package/apps/playground-web/tailwind.config.js +47 -0
- package/apps/playground-web/tsconfig.app.json +16 -0
- package/apps/playground-web/tsconfig.json +4 -0
- package/apps/playground-web/tsconfig.node.json +13 -0
- package/apps/playground-web/vite.config.ts +41 -0
- package/dist/accordion.cjs.js +2 -0
- package/dist/accordion.cjs.js.map +1 -0
- package/dist/accordion.es.js +38 -0
- package/dist/accordion.es.js.map +1 -0
- package/dist/alert-dialog.cjs.js +2 -0
- package/dist/alert-dialog.cjs.js.map +1 -0
- package/dist/alert-dialog.es.js +70 -0
- package/dist/alert-dialog.es.js.map +1 -0
- package/dist/alert.cjs.js +2 -0
- package/dist/alert.cjs.js.map +1 -0
- package/dist/alert.es.js +32 -0
- package/dist/alert.es.js.map +1 -0
- package/dist/aspect-ratio.cjs.js +2 -0
- package/dist/aspect-ratio.cjs.js.map +1 -0
- package/dist/aspect-ratio.es.js +6 -0
- package/dist/aspect-ratio.es.js.map +1 -0
- package/dist/avatar.cjs.js +2 -0
- package/dist/avatar.cjs.js.map +1 -0
- package/dist/avatar.es.js +29 -0
- package/dist/avatar.es.js.map +1 -0
- package/dist/badge.cjs.js +2 -0
- package/dist/badge.cjs.js.map +1 -0
- package/dist/badge.es.js +26 -0
- package/dist/badge.es.js.map +1 -0
- package/dist/breadcrumb.cjs.js +2 -0
- package/dist/breadcrumb.cjs.js.map +1 -0
- package/dist/breadcrumb.es.js +68 -0
- package/dist/breadcrumb.es.js.map +1 -0
- package/dist/button.cjs.js +2 -0
- package/dist/button.cjs.js.map +1 -0
- package/dist/button.es.js +39 -0
- package/dist/button.es.js.map +1 -0
- package/dist/calendar.cjs.js +2 -0
- package/dist/calendar.cjs.js.map +1 -0
- package/dist/calendar.es.js +132 -0
- package/dist/calendar.es.js.map +1 -0
- package/dist/card.cjs.js +2 -0
- package/dist/card.cjs.js.map +1 -0
- package/dist/card.es.js +34 -0
- package/dist/card.es.js.map +1 -0
- package/dist/carousel.cjs.js +2 -0
- package/dist/carousel.cjs.js.map +1 -0
- package/dist/carousel.es.js +154 -0
- package/dist/carousel.es.js.map +1 -0
- package/dist/chart.cjs.js +8 -0
- package/dist/chart.cjs.js.map +1 -0
- package/dist/chart.es.js +187 -0
- package/dist/chart.es.js.map +1 -0
- package/dist/checkbox.cjs.js +2 -0
- package/dist/checkbox.cjs.js.map +1 -0
- package/dist/checkbox.es.js +22 -0
- package/dist/checkbox.es.js.map +1 -0
- package/dist/collapsible.cjs.js +2 -0
- package/dist/collapsible.cjs.js.map +1 -0
- package/dist/collapsible.es.js +8 -0
- package/dist/collapsible.es.js.map +1 -0
- package/dist/command.cjs.js +2 -0
- package/dist/command.cjs.js.map +1 -0
- package/dist/command.es.js +86 -0
- package/dist/command.es.js.map +1 -0
- package/dist/context-menu.cjs.js +2 -0
- package/dist/context-menu.cjs.js.map +1 -0
- package/dist/context-menu.es.js +124 -0
- package/dist/context-menu.es.js.map +1 -0
- package/dist/design-system.css +1 -1
- package/dist/dialog.cjs.js +2 -0
- package/dist/dialog.cjs.js.map +1 -0
- package/dist/dialog.es.js +65 -0
- package/dist/dialog.es.js.map +1 -0
- package/dist/drawer.cjs.js +2 -0
- package/dist/drawer.cjs.js.map +1 -0
- package/dist/drawer.es.js +54 -0
- package/dist/drawer.es.js.map +1 -0
- package/dist/dropdown-menu.cjs.js +2 -0
- package/dist/dropdown-menu.cjs.js.map +1 -0
- package/dist/dropdown-menu.es.js +126 -0
- package/dist/dropdown-menu.es.js.map +1 -0
- package/dist/form.cjs.js +2 -0
- package/dist/form.cjs.js.map +1 -0
- package/dist/form.es.js +70 -0
- package/dist/form.es.js.map +1 -0
- package/dist/hover-card.cjs.js +2 -0
- package/dist/hover-card.cjs.js.map +1 -0
- package/dist/hover-card.es.js +23 -0
- package/dist/hover-card.es.js.map +1 -0
- package/dist/index.cjs.js +1 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +418 -2449
- package/dist/index.es.js.map +1 -1
- package/dist/input.cjs.js +2 -0
- package/dist/input.cjs.js.map +1 -0
- package/dist/input.es.js +20 -0
- package/dist/input.es.js.map +1 -0
- package/dist/label.cjs.js +2 -0
- package/dist/label.cjs.js.map +1 -0
- package/dist/label.es.js +9 -0
- package/dist/label.es.js.map +1 -0
- package/dist/menubar.cjs.js +2 -0
- package/dist/menubar.cjs.js.map +1 -0
- package/dist/menubar.es.js +161 -0
- package/dist/menubar.es.js.map +1 -0
- package/dist/navigation-menu.cjs.js +2 -0
- package/dist/navigation-menu.cjs.js.map +1 -0
- package/dist/navigation-menu.es.js +96 -0
- package/dist/navigation-menu.es.js.map +1 -0
- package/dist/packages/design-tokens/src/index.d.ts +91 -0
- package/dist/packages/design-tokens/src/index.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/index.js +21 -0
- package/dist/packages/design-tokens/src/palette.d.ts +32 -0
- package/dist/packages/design-tokens/src/palette.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/palette.js +33 -0
- package/dist/packages/design-tokens/src/radii.d.ts +21 -0
- package/dist/packages/design-tokens/src/radii.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/radii.js +21 -0
- package/dist/packages/design-tokens/src/shadows.d.ts +12 -0
- package/dist/packages/design-tokens/src/shadows.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/shadows.js +13 -0
- package/dist/packages/design-tokens/src/spacing.d.ts +30 -0
- package/dist/packages/design-tokens/src/spacing.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/spacing.js +30 -0
- package/dist/packages/design-tokens/src/theme.d.ts +48 -0
- package/dist/packages/design-tokens/src/theme.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/theme.js +50 -0
- package/dist/packages/design-tokens/src/typography.d.ts +33 -0
- package/dist/packages/design-tokens/src/typography.d.ts.map +1 -0
- package/dist/packages/design-tokens/src/typography.js +33 -0
- package/dist/packages/ui-core/src/contracts/accordion.d.ts +20 -0
- package/dist/packages/ui-core/src/contracts/accordion.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/accordion.js +1 -0
- package/dist/packages/ui-core/src/contracts/alert-dialog.d.ts +40 -0
- package/dist/packages/ui-core/src/contracts/alert-dialog.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/alert-dialog.js +1 -0
- package/dist/packages/ui-core/src/contracts/alert.d.ts +15 -0
- package/dist/packages/ui-core/src/contracts/alert.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/alert.js +1 -0
- package/dist/packages/ui-core/src/contracts/aspect-ratio.d.ts +7 -0
- package/dist/packages/ui-core/src/contracts/aspect-ratio.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/aspect-ratio.js +1 -0
- package/dist/packages/ui-core/src/contracts/avatar.d.ts +15 -0
- package/dist/packages/ui-core/src/contracts/avatar.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/avatar.js +1 -0
- package/dist/packages/ui-core/src/contracts/badge.d.ts +7 -0
- package/dist/packages/ui-core/src/contracts/badge.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/badge.js +1 -0
- package/dist/packages/ui-core/src/contracts/breadcrumb.d.ts +31 -0
- package/dist/packages/ui-core/src/contracts/breadcrumb.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/breadcrumb.js +1 -0
- package/dist/packages/ui-core/src/contracts/button.d.ts +10 -0
- package/dist/packages/ui-core/src/contracts/button.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/button.js +4 -0
- package/dist/packages/ui-core/src/contracts/calendar.d.ts +5 -0
- package/dist/packages/ui-core/src/contracts/calendar.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/calendar.js +1 -0
- package/dist/packages/ui-core/src/contracts/card.d.ts +6 -0
- package/dist/packages/ui-core/src/contracts/card.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/card.js +3 -0
- package/dist/packages/ui-core/src/contracts/carousel.d.ts +25 -0
- package/dist/packages/ui-core/src/contracts/carousel.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/carousel.js +1 -0
- package/dist/packages/ui-core/src/contracts/chart.d.ts +34 -0
- package/dist/packages/ui-core/src/contracts/chart.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/chart.js +1 -0
- package/dist/packages/ui-core/src/contracts/checkbox.d.ts +8 -0
- package/dist/packages/ui-core/src/contracts/checkbox.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/checkbox.js +3 -0
- package/dist/packages/ui-core/src/contracts/collapsible.d.ts +19 -0
- package/dist/packages/ui-core/src/contracts/collapsible.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/collapsible.js +1 -0
- package/dist/packages/ui-core/src/contracts/command.d.ts +36 -0
- package/dist/packages/ui-core/src/contracts/command.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/command.js +1 -0
- package/dist/packages/ui-core/src/contracts/context-menu.d.ts +65 -0
- package/dist/packages/ui-core/src/contracts/context-menu.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/context-menu.js +1 -0
- package/dist/packages/ui-core/src/contracts/dialog.d.ts +14 -0
- package/dist/packages/ui-core/src/contracts/dialog.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/dialog.js +3 -0
- package/dist/packages/ui-core/src/contracts/drawer.d.ts +32 -0
- package/dist/packages/ui-core/src/contracts/drawer.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/drawer.js +1 -0
- package/dist/packages/ui-core/src/contracts/dropdown-menu.d.ts +74 -0
- package/dist/packages/ui-core/src/contracts/dropdown-menu.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/dropdown-menu.js +1 -0
- package/dist/packages/ui-core/src/contracts/form.d.ts +24 -0
- package/dist/packages/ui-core/src/contracts/form.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/form.js +1 -0
- package/dist/packages/ui-core/src/contracts/hover-card.d.ts +19 -0
- package/dist/packages/ui-core/src/contracts/hover-card.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/hover-card.js +1 -0
- package/dist/packages/ui-core/src/contracts/input.d.ts +6 -0
- package/dist/packages/ui-core/src/contracts/input.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/input.js +3 -0
- package/dist/packages/ui-core/src/contracts/label.d.ts +7 -0
- package/dist/packages/ui-core/src/contracts/label.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/label.js +1 -0
- package/dist/packages/ui-core/src/contracts/menubar.d.ts +74 -0
- package/dist/packages/ui-core/src/contracts/menubar.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/menubar.js +1 -0
- package/dist/packages/ui-core/src/contracts/navigation-menu.d.ts +48 -0
- package/dist/packages/ui-core/src/contracts/navigation-menu.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/navigation-menu.js +1 -0
- package/dist/packages/ui-core/src/contracts/pagination.d.ts +32 -0
- package/dist/packages/ui-core/src/contracts/pagination.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/pagination.js +1 -0
- package/dist/packages/ui-core/src/contracts/popover.d.ts +25 -0
- package/dist/packages/ui-core/src/contracts/popover.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/popover.js +1 -0
- package/dist/packages/ui-core/src/contracts/progress.d.ts +5 -0
- package/dist/packages/ui-core/src/contracts/progress.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/progress.js +1 -0
- package/dist/packages/ui-core/src/contracts/radio.d.ts +10 -0
- package/dist/packages/ui-core/src/contracts/radio.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/radio.js +3 -0
- package/dist/packages/ui-core/src/contracts/resizable.d.ts +39 -0
- package/dist/packages/ui-core/src/contracts/resizable.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/resizable.js +1 -0
- package/dist/packages/ui-core/src/contracts/scroll-area.d.ts +14 -0
- package/dist/packages/ui-core/src/contracts/scroll-area.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/scroll-area.js +1 -0
- package/dist/packages/ui-core/src/contracts/search.d.ts +12 -0
- package/dist/packages/ui-core/src/contracts/search.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/search.js +1 -0
- package/dist/packages/ui-core/src/contracts/select.d.ts +55 -0
- package/dist/packages/ui-core/src/contracts/select.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/select.js +1 -0
- package/dist/packages/ui-core/src/contracts/separator.d.ts +6 -0
- package/dist/packages/ui-core/src/contracts/separator.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/separator.js +1 -0
- package/dist/packages/ui-core/src/contracts/sheet.d.ts +49 -0
- package/dist/packages/ui-core/src/contracts/sheet.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/sheet.js +1 -0
- package/dist/packages/ui-core/src/contracts/skeleton.d.ts +6 -0
- package/dist/packages/ui-core/src/contracts/skeleton.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/skeleton.js +1 -0
- package/dist/packages/ui-core/src/contracts/slider.d.ts +16 -0
- package/dist/packages/ui-core/src/contracts/slider.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/slider.js +1 -0
- package/dist/packages/ui-core/src/contracts/sonner.d.ts +16 -0
- package/dist/packages/ui-core/src/contracts/sonner.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/sonner.js +1 -0
- package/dist/packages/ui-core/src/contracts/switch.d.ts +12 -0
- package/dist/packages/ui-core/src/contracts/switch.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/switch.js +1 -0
- package/dist/packages/ui-core/src/contracts/table.d.ts +34 -0
- package/dist/packages/ui-core/src/contracts/table.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/table.js +1 -0
- package/dist/packages/ui-core/src/contracts/tabs.d.ts +28 -0
- package/dist/packages/ui-core/src/contracts/tabs.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/tabs.js +1 -0
- package/dist/packages/ui-core/src/contracts/text.d.ts +7 -0
- package/dist/packages/ui-core/src/contracts/text.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/text.js +3 -0
- package/dist/packages/ui-core/src/contracts/textarea.d.ts +8 -0
- package/dist/packages/ui-core/src/contracts/textarea.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/textarea.js +1 -0
- package/dist/packages/ui-core/src/contracts/theme-provider.d.ts +14 -0
- package/dist/packages/ui-core/src/contracts/theme-provider.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/theme-provider.js +1 -0
- package/dist/packages/ui-core/src/contracts/theme-toggle.d.ts +16 -0
- package/dist/packages/ui-core/src/contracts/theme-toggle.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/theme-toggle.js +1 -0
- package/dist/packages/ui-core/src/contracts/toast.d.ts +11 -0
- package/dist/packages/ui-core/src/contracts/toast.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/toast.js +3 -0
- package/dist/packages/ui-core/src/contracts/toaster.d.ts +4 -0
- package/dist/packages/ui-core/src/contracts/toaster.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/toaster.js +1 -0
- package/dist/packages/ui-core/src/contracts/toggle-group.d.ts +22 -0
- package/dist/packages/ui-core/src/contracts/toggle-group.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/toggle-group.js +1 -0
- package/dist/packages/ui-core/src/contracts/toggle.d.ts +29 -0
- package/dist/packages/ui-core/src/contracts/toggle.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/toggle.js +29 -0
- package/dist/packages/ui-core/src/contracts/tooltip.d.ts +25 -0
- package/dist/packages/ui-core/src/contracts/tooltip.d.ts.map +1 -0
- package/dist/packages/ui-core/src/contracts/tooltip.js +1 -0
- package/dist/packages/ui-core/src/index.d.ts +55 -0
- package/dist/packages/ui-core/src/index.d.ts.map +1 -0
- package/dist/packages/ui-core/src/index.js +12 -0
- package/dist/packages/ui-native/src/accordion.d.ts +46 -0
- package/dist/packages/ui-native/src/accordion.d.ts.map +1 -0
- package/dist/packages/ui-native/src/accordion.js +34 -0
- package/dist/packages/ui-native/src/alert-dialog.d.ts +59 -0
- package/dist/packages/ui-native/src/alert-dialog.d.ts.map +1 -0
- package/dist/packages/ui-native/src/alert-dialog.js +31 -0
- package/dist/packages/ui-native/src/alert.d.ts +10 -0
- package/dist/packages/ui-native/src/alert.d.ts.map +1 -0
- package/dist/packages/ui-native/src/alert.js +26 -0
- package/dist/packages/ui-native/src/aspect-ratio.d.ts +2 -0
- package/dist/packages/ui-native/src/aspect-ratio.d.ts.map +1 -0
- package/dist/packages/ui-native/src/aspect-ratio.js +5 -0
- package/dist/packages/ui-native/src/avatar.d.ts +15 -0
- package/dist/packages/ui-native/src/avatar.d.ts.map +1 -0
- package/dist/packages/ui-native/src/avatar.js +11 -0
- package/dist/packages/ui-native/src/badge.d.ts +12 -0
- package/dist/packages/ui-native/src/badge.d.ts.map +1 -0
- package/dist/packages/ui-native/src/badge.js +37 -0
- package/dist/packages/ui-native/src/breadcrumb.d.ts +2 -0
- package/dist/packages/ui-native/src/breadcrumb.d.ts.map +1 -0
- package/dist/packages/ui-native/src/breadcrumb.js +5 -0
- package/dist/packages/ui-native/src/button.d.ts +14 -0
- package/dist/packages/ui-native/src/button.d.ts.map +1 -0
- package/dist/packages/ui-native/src/button.js +50 -0
- package/dist/packages/ui-native/src/calendar.d.ts +2 -0
- package/dist/packages/ui-native/src/calendar.d.ts.map +1 -0
- package/dist/packages/ui-native/src/calendar.js +5 -0
- package/dist/packages/ui-native/src/card.d.ts +13 -0
- package/dist/packages/ui-native/src/card.d.ts.map +1 -0
- package/dist/packages/ui-native/src/card.js +18 -0
- package/dist/packages/ui-native/src/carousel.d.ts +2 -0
- package/dist/packages/ui-native/src/carousel.d.ts.map +1 -0
- package/dist/packages/ui-native/src/carousel.js +5 -0
- package/dist/packages/ui-native/src/chart.d.ts +2 -0
- package/dist/packages/ui-native/src/chart.d.ts.map +1 -0
- package/dist/packages/ui-native/src/chart.js +5 -0
- package/dist/packages/ui-native/src/checkbox.d.ts +15 -0
- package/dist/packages/ui-native/src/checkbox.d.ts.map +1 -0
- package/dist/packages/ui-native/src/checkbox.js +11 -0
- package/dist/packages/ui-native/src/collapsible.d.ts +21 -0
- package/dist/packages/ui-native/src/collapsible.d.ts.map +1 -0
- package/dist/packages/ui-native/src/collapsible.js +5 -0
- package/dist/packages/ui-native/src/command.d.ts +2 -0
- package/dist/packages/ui-native/src/command.d.ts.map +1 -0
- package/dist/packages/ui-native/src/command.js +5 -0
- package/dist/packages/ui-native/src/context-menu.d.ts +2 -0
- package/dist/packages/ui-native/src/context-menu.d.ts.map +1 -0
- package/dist/packages/ui-native/src/context-menu.js +5 -0
- package/dist/packages/ui-native/src/dialog.d.ts +56 -0
- package/dist/packages/ui-native/src/dialog.d.ts.map +1 -0
- package/dist/packages/ui-native/src/dialog.js +28 -0
- package/dist/packages/ui-native/src/drawer.d.ts +2 -0
- package/dist/packages/ui-native/src/drawer.d.ts.map +1 -0
- package/dist/packages/ui-native/src/drawer.js +5 -0
- package/dist/packages/ui-native/src/dropdown-menu.d.ts +2 -0
- package/dist/packages/ui-native/src/dropdown-menu.d.ts.map +1 -0
- package/dist/packages/ui-native/src/dropdown-menu.js +5 -0
- package/dist/packages/ui-native/src/form.d.ts +2 -0
- package/dist/packages/ui-native/src/form.d.ts.map +1 -0
- package/dist/packages/ui-native/src/form.js +5 -0
- package/dist/packages/ui-native/src/hover-card.d.ts +2 -0
- package/dist/packages/ui-native/src/hover-card.d.ts.map +1 -0
- package/dist/packages/ui-native/src/hover-card.js +5 -0
- package/dist/packages/ui-native/src/index.d.ts +61 -0
- package/dist/packages/ui-native/src/index.d.ts.map +1 -0
- package/dist/packages/ui-native/src/index.js +107 -0
- package/dist/packages/ui-native/src/input.d.ts +8 -0
- package/dist/packages/ui-native/src/input.d.ts.map +1 -0
- package/dist/packages/ui-native/src/input.js +9 -0
- package/dist/packages/ui-native/src/label.d.ts +9 -0
- package/dist/packages/ui-native/src/label.d.ts.map +1 -0
- package/dist/packages/ui-native/src/label.js +7 -0
- package/dist/packages/ui-native/src/lib/render-native.d.ts +4 -0
- package/dist/packages/ui-native/src/lib/render-native.d.ts.map +1 -0
- package/dist/packages/ui-native/src/lib/render-native.js +13 -0
- package/dist/packages/ui-native/src/lib/utils.d.ts.map +1 -0
- package/dist/packages/ui-native/src/lib/utils.js +5 -0
- package/dist/packages/ui-native/src/menubar.d.ts +2 -0
- package/dist/packages/ui-native/src/menubar.d.ts.map +1 -0
- package/dist/packages/ui-native/src/menubar.js +5 -0
- package/dist/packages/ui-native/src/navigation-menu.d.ts +2 -0
- package/dist/packages/ui-native/src/navigation-menu.d.ts.map +1 -0
- package/dist/packages/ui-native/src/navigation-menu.js +5 -0
- package/dist/packages/ui-native/src/pagination.d.ts +2 -0
- package/dist/packages/ui-native/src/pagination.d.ts.map +1 -0
- package/dist/packages/ui-native/src/pagination.js +5 -0
- package/dist/packages/ui-native/src/popover.d.ts +2 -0
- package/dist/packages/ui-native/src/popover.d.ts.map +1 -0
- package/dist/packages/ui-native/src/popover.js +5 -0
- package/dist/packages/ui-native/src/progress.d.ts +2 -0
- package/dist/packages/ui-native/src/progress.d.ts.map +1 -0
- package/dist/packages/ui-native/src/progress.js +5 -0
- package/dist/packages/ui-native/src/radio-group.d.ts +11 -0
- package/dist/packages/ui-native/src/radio-group.d.ts.map +1 -0
- package/dist/packages/ui-native/src/radio-group.js +14 -0
- package/dist/packages/ui-native/src/resizable.d.ts +4 -0
- package/dist/packages/ui-native/src/resizable.d.ts.map +1 -0
- package/dist/packages/ui-native/src/resizable.js +11 -0
- package/dist/packages/ui-native/src/scroll-area.d.ts +2 -0
- package/dist/packages/ui-native/src/scroll-area.d.ts.map +1 -0
- package/dist/packages/ui-native/src/scroll-area.js +5 -0
- package/dist/packages/ui-native/src/search.d.ts +3 -0
- package/dist/packages/ui-native/src/search.d.ts.map +1 -0
- package/dist/packages/ui-native/src/search.js +8 -0
- package/dist/packages/ui-native/src/select.d.ts +57 -0
- package/dist/packages/ui-native/src/select.d.ts.map +1 -0
- package/dist/packages/ui-native/src/select.js +45 -0
- package/dist/packages/ui-native/src/separator.d.ts +9 -0
- package/dist/packages/ui-native/src/separator.d.ts.map +1 -0
- package/dist/packages/ui-native/src/separator.js +7 -0
- package/dist/packages/ui-native/src/sheet.d.ts +53 -0
- package/dist/packages/ui-native/src/sheet.d.ts.map +1 -0
- package/dist/packages/ui-native/src/sheet.js +37 -0
- package/dist/packages/ui-native/src/skeleton.d.ts +5 -0
- package/dist/packages/ui-native/src/skeleton.d.ts.map +1 -0
- package/dist/packages/ui-native/src/skeleton.js +15 -0
- package/dist/packages/ui-native/src/slider.d.ts +2 -0
- package/dist/packages/ui-native/src/slider.d.ts.map +1 -0
- package/dist/packages/ui-native/src/slider.js +5 -0
- package/dist/packages/ui-native/src/sonner.d.ts +2 -0
- package/dist/packages/ui-native/src/sonner.d.ts.map +1 -0
- package/dist/packages/ui-native/src/sonner.js +5 -0
- package/dist/packages/ui-native/src/switch.d.ts +8 -0
- package/dist/packages/ui-native/src/switch.d.ts.map +1 -0
- package/dist/packages/ui-native/src/switch.js +7 -0
- package/dist/packages/ui-native/src/table.d.ts +12 -0
- package/dist/packages/ui-native/src/table.d.ts.map +1 -0
- package/dist/packages/ui-native/src/table.js +22 -0
- package/dist/packages/ui-native/src/tabs.d.ts +25 -0
- package/dist/packages/ui-native/src/tabs.d.ts.map +1 -0
- package/dist/packages/ui-native/src/tabs.js +16 -0
- package/dist/packages/ui-native/src/text.d.ts +13 -0
- package/dist/packages/ui-native/src/text.d.ts.map +1 -0
- package/dist/packages/ui-native/src/text.js +29 -0
- package/dist/packages/ui-native/src/textarea.d.ts +6 -0
- package/dist/packages/ui-native/src/textarea.d.ts.map +1 -0
- package/dist/packages/ui-native/src/textarea.js +9 -0
- package/dist/packages/ui-native/src/theme-provider.d.ts +5 -0
- package/dist/packages/ui-native/src/theme-provider.d.ts.map +1 -0
- package/dist/packages/ui-native/src/theme-provider.js +5 -0
- package/dist/packages/ui-native/src/theme-toggle.d.ts +2 -0
- package/dist/packages/ui-native/src/theme-toggle.d.ts.map +1 -0
- package/dist/packages/ui-native/src/theme-toggle.js +5 -0
- package/dist/packages/ui-native/src/toast.d.ts +35 -0
- package/dist/packages/ui-native/src/toast.d.ts.map +1 -0
- package/dist/packages/ui-native/src/toast.js +23 -0
- package/dist/packages/ui-native/src/toaster.d.ts.map +1 -0
- package/dist/packages/ui-native/src/toaster.js +5 -0
- package/dist/packages/ui-native/src/toggle-group.d.ts +11 -0
- package/dist/packages/ui-native/src/toggle-group.d.ts.map +1 -0
- package/dist/packages/ui-native/src/toggle-group.js +25 -0
- package/dist/packages/ui-native/src/toggle.d.ts +8 -0
- package/dist/packages/ui-native/src/toggle.d.ts.map +1 -0
- package/dist/packages/ui-native/src/toggle.js +9 -0
- package/dist/packages/ui-native/src/tooltip.d.ts +27 -0
- package/dist/packages/ui-native/src/tooltip.d.ts.map +1 -0
- package/dist/packages/ui-native/src/tooltip.js +15 -0
- package/dist/packages/ui-web/src/accordion.d.ts +10 -0
- package/dist/packages/ui-web/src/accordion.d.ts.map +1 -0
- package/dist/packages/ui-web/src/accordion.js +13 -0
- package/dist/packages/ui-web/src/alert-dialog.d.ts +23 -0
- package/dist/packages/ui-web/src/alert-dialog.d.ts.map +1 -0
- package/dist/packages/ui-web/src/alert-dialog.js +25 -0
- package/dist/packages/ui-web/src/alert.d.ts +11 -0
- package/dist/packages/ui-web/src/alert.d.ts.map +1 -0
- package/dist/packages/ui-web/src/alert.js +24 -0
- package/dist/packages/ui-web/src/aspect-ratio.d.ts +6 -0
- package/dist/packages/ui-web/src/aspect-ratio.d.ts.map +1 -0
- package/dist/packages/ui-web/src/aspect-ratio.js +3 -0
- package/dist/packages/ui-web/src/avatar.d.ts +9 -0
- package/dist/packages/ui-web/src/avatar.d.ts.map +1 -0
- package/dist/packages/ui-web/src/avatar.js +11 -0
- package/dist/packages/ui-web/src/badge.d.ts +11 -0
- package/dist/packages/ui-web/src/badge.d.ts.map +1 -0
- package/dist/packages/ui-web/src/badge.js +20 -0
- package/dist/packages/ui-web/src/breadcrumb.d.ts +20 -0
- package/dist/packages/ui-web/src/breadcrumb.d.ts.map +1 -0
- package/dist/packages/ui-web/src/breadcrumb.js +23 -0
- package/dist/packages/ui-web/src/button.d.ts +13 -0
- package/dist/packages/ui-web/src/button.d.ts.map +1 -0
- package/dist/packages/ui-web/src/button.js +33 -0
- package/dist/packages/ui-web/src/calendar.d.ts +11 -0
- package/dist/packages/ui-web/src/calendar.d.ts.map +1 -0
- package/dist/packages/ui-web/src/calendar.js +70 -0
- package/dist/packages/ui-web/src/card.d.ts +12 -0
- package/dist/packages/ui-web/src/card.d.ts.map +1 -0
- package/dist/packages/ui-web/src/card.js +16 -0
- package/dist/packages/ui-web/src/carousel.d.ts +24 -0
- package/dist/packages/ui-web/src/carousel.d.ts.map +1 -0
- package/dist/packages/ui-web/src/carousel.js +98 -0
- package/dist/packages/ui-web/src/chart.d.ts +39 -0
- package/dist/packages/ui-web/src/chart.d.ts.map +1 -0
- package/dist/packages/ui-web/src/chart.js +120 -0
- package/dist/packages/ui-web/src/checkbox.d.ts +8 -0
- package/dist/packages/ui-web/src/checkbox.d.ts.map +1 -0
- package/dist/packages/ui-web/src/checkbox.js +8 -0
- package/dist/packages/ui-web/src/collapsible.d.ts +8 -0
- package/dist/packages/ui-web/src/collapsible.d.ts.map +1 -0
- package/dist/packages/ui-web/src/collapsible.js +5 -0
- package/dist/packages/ui-web/src/command.d.ts +83 -0
- package/dist/packages/ui-web/src/command.d.ts.map +1 -0
- package/dist/packages/ui-web/src/command.js +29 -0
- package/dist/packages/ui-web/src/context-menu.d.ts +24 -0
- package/dist/packages/ui-web/src/context-menu.d.ts.map +1 -0
- package/dist/packages/ui-web/src/context-menu.js +32 -0
- package/dist/packages/ui-web/src/dialog.d.ts.map +1 -0
- package/dist/packages/ui-web/src/dialog.js +22 -0
- package/dist/packages/ui-web/src/drawer.d.ts +25 -0
- package/dist/packages/ui-web/src/drawer.d.ts.map +1 -0
- package/dist/packages/ui-web/src/drawer.js +23 -0
- package/dist/packages/ui-web/src/dropdown-menu.d.ts +24 -0
- package/dist/packages/ui-web/src/dropdown-menu.d.ts.map +1 -0
- package/dist/packages/ui-web/src/dropdown-menu.js +33 -0
- package/dist/packages/ui-web/src/form.d.ts +26 -0
- package/dist/packages/ui-web/src/form.d.ts.map +1 -0
- package/dist/packages/ui-web/src/form.js +64 -0
- package/dist/packages/ui-web/src/hooks/use-theme.d.ts.map +1 -0
- package/dist/packages/ui-web/src/hooks/use-theme.js +12 -0
- package/dist/packages/ui-web/src/hooks/use-toast.d.ts +45 -0
- package/dist/packages/ui-web/src/hooks/use-toast.d.ts.map +1 -0
- package/dist/packages/ui-web/src/hooks/use-toast.js +128 -0
- package/dist/packages/ui-web/src/hover-card.d.ts +9 -0
- package/dist/packages/ui-web/src/hover-card.d.ts.map +1 -0
- package/dist/packages/ui-web/src/hover-card.js +10 -0
- package/dist/packages/ui-web/src/index.d.ts +101 -0
- package/dist/packages/ui-web/src/index.d.ts.map +1 -0
- package/dist/packages/ui-web/src/index.js +106 -0
- package/dist/packages/ui-web/src/input.d.ts +7 -0
- package/dist/packages/ui-web/src/input.d.ts.map +1 -0
- package/dist/packages/ui-web/src/input.js +8 -0
- package/dist/packages/ui-web/src/label.d.ts +8 -0
- package/dist/packages/ui-web/src/label.d.ts.map +1 -0
- package/dist/packages/ui-web/src/label.js +10 -0
- package/dist/packages/ui-web/src/lib/utils.d.ts +3 -0
- package/dist/packages/ui-web/src/lib/utils.d.ts.map +1 -0
- package/dist/packages/ui-web/src/lib/utils.js +5 -0
- package/dist/packages/ui-web/src/menubar.d.ts +25 -0
- package/dist/packages/ui-web/src/menubar.d.ts.map +1 -0
- package/dist/packages/ui-web/src/menubar.js +46 -0
- package/dist/packages/ui-web/src/navigation-menu.d.ts +15 -0
- package/dist/packages/ui-web/src/navigation-menu.d.ts.map +1 -0
- package/dist/packages/ui-web/src/navigation-menu.js +23 -0
- package/dist/packages/ui-web/src/pagination.d.ts +31 -0
- package/dist/packages/ui-web/src/pagination.d.ts.map +1 -0
- package/dist/packages/ui-web/src/pagination.js +23 -0
- package/dist/packages/ui-web/src/popover.d.ts +10 -0
- package/dist/packages/ui-web/src/popover.d.ts.map +1 -0
- package/dist/packages/ui-web/src/popover.js +11 -0
- package/dist/packages/ui-web/src/progress.d.ts +7 -0
- package/dist/packages/ui-web/src/progress.d.ts.map +1 -0
- package/dist/packages/ui-web/src/progress.js +8 -0
- package/dist/packages/ui-web/src/radio-group.d.ts +11 -0
- package/dist/packages/ui-web/src/radio-group.d.ts.map +1 -0
- package/dist/packages/ui-web/src/radio-group.js +14 -0
- package/dist/packages/ui-web/src/resizable.d.ts +9 -0
- package/dist/packages/ui-web/src/resizable.d.ts.map +1 -0
- package/dist/packages/ui-web/src/resizable.js +17 -0
- package/dist/packages/ui-web/src/scroll-area.d.ts +8 -0
- package/dist/packages/ui-web/src/scroll-area.d.ts.map +1 -0
- package/dist/packages/ui-web/src/scroll-area.js +10 -0
- package/dist/packages/ui-web/src/search.d.ts +8 -0
- package/dist/packages/ui-web/src/search.d.ts.map +1 -0
- package/dist/packages/ui-web/src/search.js +48 -0
- package/dist/packages/ui-web/src/select.d.ts +16 -0
- package/dist/packages/ui-web/src/select.d.ts.map +1 -0
- package/dist/packages/ui-web/src/select.js +26 -0
- package/dist/packages/ui-web/src/separator.d.ts +7 -0
- package/dist/packages/ui-web/src/separator.d.ts.map +1 -0
- package/dist/packages/ui-web/src/separator.js +8 -0
- package/dist/packages/ui-web/src/sheet.d.ts +28 -0
- package/dist/packages/ui-web/src/sheet.d.ts.map +1 -0
- package/dist/packages/ui-web/src/sheet.js +37 -0
- package/dist/packages/ui-web/src/skeleton.d.ts +6 -0
- package/dist/packages/ui-web/src/skeleton.d.ts.map +1 -0
- package/dist/packages/ui-web/src/skeleton.js +6 -0
- package/dist/packages/ui-web/src/slider.d.ts +7 -0
- package/dist/packages/ui-web/src/slider.d.ts.map +1 -0
- package/dist/packages/ui-web/src/slider.js +8 -0
- package/dist/packages/ui-web/src/sonner.d.ts +8 -0
- package/dist/packages/ui-web/src/sonner.d.ts.map +1 -0
- package/dist/packages/ui-web/src/sonner.js +16 -0
- package/dist/packages/ui-web/src/switch.d.ts +7 -0
- package/dist/packages/ui-web/src/switch.d.ts.map +1 -0
- package/dist/packages/ui-web/src/switch.js +8 -0
- package/dist/packages/ui-web/src/table.d.ts +13 -0
- package/dist/packages/ui-web/src/table.d.ts.map +1 -0
- package/dist/packages/ui-web/src/table.js +21 -0
- package/dist/packages/ui-web/src/tabs.d.ts +10 -0
- package/dist/packages/ui-web/src/tabs.d.ts.map +1 -0
- package/dist/packages/ui-web/src/tabs.js +13 -0
- package/dist/packages/ui-web/src/text.d.ts +12 -0
- package/dist/packages/ui-web/src/text.d.ts.map +1 -0
- package/dist/packages/ui-web/src/text.js +40 -0
- package/dist/packages/ui-web/src/textarea.d.ts +7 -0
- package/dist/packages/ui-web/src/textarea.d.ts.map +1 -0
- package/dist/packages/ui-web/src/textarea.js +9 -0
- package/dist/packages/ui-web/src/theme-provider.d.ts +5 -0
- package/dist/packages/ui-web/src/theme-provider.d.ts.map +1 -0
- package/dist/packages/ui-web/src/theme-provider.js +6 -0
- package/dist/packages/ui-web/src/theme-toggle.d.ts +4 -0
- package/dist/packages/ui-web/src/theme-toggle.d.ts.map +1 -0
- package/dist/packages/ui-web/src/theme-toggle.js +29 -0
- package/dist/packages/ui-web/src/toast.d.ts.map +1 -0
- package/dist/packages/ui-web/src/toast.js +33 -0
- package/dist/packages/ui-web/src/toaster.d.ts +3 -0
- package/dist/packages/ui-web/src/toaster.d.ts.map +1 -0
- package/dist/packages/ui-web/src/toaster.js +10 -0
- package/dist/packages/ui-web/src/toggle-group.d.ts +13 -0
- package/dist/packages/ui-web/src/toggle-group.d.ts.map +1 -0
- package/dist/packages/ui-web/src/toggle-group.js +21 -0
- package/dist/packages/ui-web/src/toggle.d.ts +9 -0
- package/dist/packages/ui-web/src/toggle.d.ts.map +1 -0
- package/dist/packages/ui-web/src/toggle.js +9 -0
- package/dist/packages/ui-web/src/tooltip.d.ts +13 -0
- package/dist/packages/ui-web/src/tooltip.d.ts.map +1 -0
- package/dist/packages/ui-web/src/tooltip.js +12 -0
- package/dist/pagination.cjs.js +2 -0
- package/dist/pagination.cjs.js.map +1 -0
- package/dist/pagination.es.js +68 -0
- package/dist/pagination.es.js.map +1 -0
- package/dist/popover.cjs.js +2 -0
- package/dist/popover.cjs.js.map +1 -0
- package/dist/popover.es.js +24 -0
- package/dist/popover.es.js.map +1 -0
- package/dist/progress.cjs.js +2 -0
- package/dist/progress.cjs.js.map +1 -0
- package/dist/progress.es.js +24 -0
- package/dist/progress.es.js.map +1 -0
- package/dist/radio-group.cjs.js +2 -0
- package/dist/radio-group.cjs.js.map +1 -0
- package/dist/radio-group.es.js +27 -0
- package/dist/radio-group.es.js.map +1 -0
- package/dist/resizable.cjs.js +2 -0
- package/dist/resizable.cjs.js.map +1 -0
- package/dist/resizable.es.js +34 -0
- package/dist/resizable.es.js.map +1 -0
- package/dist/scroll-area.cjs.js +2 -0
- package/dist/scroll-area.cjs.js.map +1 -0
- package/dist/scroll-area.es.js +30 -0
- package/dist/scroll-area.es.js.map +1 -0
- package/dist/search.cjs.js +2 -0
- package/dist/search.cjs.js.map +1 -0
- package/dist/search.es.js +51 -0
- package/dist/search.es.js.map +1 -0
- package/dist/select.cjs.js +2 -0
- package/dist/select.cjs.js.map +1 -0
- package/dist/select.es.js +100 -0
- package/dist/select.es.js.map +1 -0
- package/dist/separator.cjs.js +2 -0
- package/dist/separator.cjs.js.map +1 -0
- package/dist/separator.es.js +18 -0
- package/dist/separator.es.js.map +1 -0
- package/dist/sheet.cjs.js +2 -0
- package/dist/sheet.cjs.js.map +1 -0
- package/dist/sheet.es.js +64 -0
- package/dist/sheet.es.js.map +1 -0
- package/dist/skeleton.cjs.js +2 -0
- package/dist/skeleton.cjs.js.map +1 -0
- package/dist/skeleton.es.js +9 -0
- package/dist/skeleton.es.js.map +1 -0
- package/dist/slider.cjs.js +2 -0
- package/dist/slider.cjs.js.map +1 -0
- package/dist/slider.es.js +20 -0
- package/dist/slider.es.js.map +1 -0
- package/dist/sonner.cjs.js +2 -0
- package/dist/sonner.cjs.js.map +1 -0
- package/dist/sonner.es.js +25 -0
- package/dist/sonner.es.js.map +1 -0
- package/dist/src/index.d.ts +4 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +3 -0
- package/dist/switch.cjs.js +2 -0
- package/dist/switch.cjs.js.map +1 -0
- package/dist/switch.es.js +27 -0
- package/dist/switch.es.js.map +1 -0
- package/dist/table.cjs.js +2 -0
- package/dist/table.cjs.js.map +1 -0
- package/dist/table.es.js +58 -0
- package/dist/table.es.js.map +1 -0
- package/dist/tabs.cjs.js +2 -0
- package/dist/tabs.cjs.js.map +1 -0
- package/dist/tabs.es.js +46 -0
- package/dist/tabs.es.js.map +1 -0
- package/dist/text.cjs.js +2 -0
- package/dist/text.cjs.js.map +1 -0
- package/dist/text.es.js +42 -0
- package/dist/text.es.js.map +1 -0
- package/dist/textarea.cjs.js +2 -0
- package/dist/textarea.cjs.js.map +1 -0
- package/dist/textarea.es.js +19 -0
- package/dist/textarea.es.js.map +1 -0
- package/dist/theme-provider.cjs.js +2 -0
- package/dist/theme-provider.cjs.js.map +1 -0
- package/dist/theme-provider.es.js +9 -0
- package/dist/theme-provider.es.js.map +1 -0
- package/dist/theme-toggle-BTT5z37-.js +2 -0
- package/dist/theme-toggle-BTT5z37-.js.map +1 -0
- package/dist/theme-toggle-Dhc53hqa.mjs +176 -0
- package/dist/theme-toggle-Dhc53hqa.mjs.map +1 -0
- package/dist/theme-toggle.cjs.js +2 -0
- package/dist/theme-toggle.cjs.js.map +1 -0
- package/dist/theme-toggle.es.js +9 -0
- package/dist/theme-toggle.es.js.map +1 -0
- package/dist/toast.cjs.js +2 -0
- package/dist/toast.cjs.js.map +1 -0
- package/dist/toast.es.js +70 -0
- package/dist/toast.es.js.map +1 -0
- package/dist/toaster-BOqCGbZ6.js +2 -0
- package/dist/toaster-BOqCGbZ6.js.map +1 -0
- package/dist/toaster-CmNmQ6jI.mjs +119 -0
- package/dist/toaster-CmNmQ6jI.mjs.map +1 -0
- package/dist/toaster.cjs.js +2 -0
- package/dist/toaster.cjs.js.map +1 -0
- package/dist/toaster.es.js +7 -0
- package/dist/toaster.es.js.map +1 -0
- package/dist/toggle-CYawMoye.mjs +25 -0
- package/dist/toggle-CYawMoye.mjs.map +1 -0
- package/dist/toggle-Dmzk_m4r.js +2 -0
- package/dist/toggle-Dmzk_m4r.js.map +1 -0
- package/dist/toggle-group.cjs.js +2 -0
- package/dist/toggle-group.cjs.js.map +1 -0
- package/dist/toggle-group.es.js +37 -0
- package/dist/toggle-group.es.js.map +1 -0
- package/dist/toggle.cjs.js +2 -0
- package/dist/toggle.cjs.js.map +1 -0
- package/dist/toggle.es.js +13 -0
- package/dist/toggle.es.js.map +1 -0
- package/dist/tooltip.cjs.js +2 -0
- package/dist/tooltip.cjs.js.map +1 -0
- package/dist/tooltip.es.js +29 -0
- package/dist/tooltip.es.js.map +1 -0
- package/dist/utils-5NfNUIaP.js +2 -0
- package/dist/utils-5NfNUIaP.js.map +1 -0
- package/dist/utils-BfGqxkzX.mjs +8 -0
- package/dist/utils-BfGqxkzX.mjs.map +1 -0
- package/dist/vendor-B8N-rYkV.mjs +25431 -0
- package/dist/vendor-B8N-rYkV.mjs.map +1 -0
- package/dist/vendor-D51Wvbw-.js +68 -0
- package/dist/vendor-D51Wvbw-.js.map +1 -0
- package/docs/architecture-pivot.md +165 -0
- package/docs/native-setup-decision.md +57 -0
- package/docs/phase-1-tracker.md +144 -0
- package/docs/release-tooling-evaluation.md +67 -0
- package/docs/universal-implementation.md +195 -0
- package/docs/update-plan.md +268 -0
- package/eslint.config.mjs +1 -1
- package/nx.json +50 -0
- package/package.json +68 -60
- package/packages/.gitkeep +0 -0
- package/packages/design-tokens/CHANGELOG.md +8 -0
- package/packages/design-tokens/package.json +20 -0
- package/packages/design-tokens/src/index.ts +35 -0
- package/packages/design-tokens/src/palette.ts +36 -0
- package/packages/design-tokens/src/radii.ts +26 -0
- package/packages/design-tokens/src/shadows.ts +16 -0
- package/packages/design-tokens/src/spacing.ts +33 -0
- package/packages/design-tokens/src/theme.ts +54 -0
- package/packages/design-tokens/src/typography.ts +36 -0
- package/packages/design-tokens/tsconfig.json +17 -0
- package/packages/ui-core/CHANGELOG.md +8 -0
- package/packages/ui-core/package.json +40 -0
- package/packages/ui-core/src/contracts/accordion.ts +23 -0
- package/packages/ui-core/src/contracts/alert-dialog.ts +48 -0
- package/packages/ui-core/src/contracts/alert.ts +17 -0
- package/packages/ui-core/src/contracts/aspect-ratio.ts +7 -0
- package/packages/ui-core/src/contracts/avatar.ts +17 -0
- package/packages/ui-core/src/contracts/badge.ts +7 -0
- package/packages/ui-core/src/contracts/breadcrumb.ts +37 -0
- package/packages/ui-core/src/contracts/button.ts +17 -0
- package/packages/ui-core/src/contracts/calendar.ts +4 -0
- package/packages/ui-core/src/contracts/card.ts +11 -0
- package/packages/ui-core/src/contracts/carousel.ts +29 -0
- package/packages/ui-core/src/contracts/chart.ts +31 -0
- package/packages/ui-core/src/contracts/checkbox.ts +11 -0
- package/packages/ui-core/src/contracts/collapsible.ts +21 -0
- package/packages/ui-core/src/contracts/command.ts +43 -0
- package/packages/ui-core/src/contracts/context-menu.ts +78 -0
- package/packages/ui-core/src/contracts/dialog.ts +29 -0
- package/packages/ui-core/src/contracts/drawer.ts +39 -0
- package/packages/ui-core/src/contracts/dropdown-menu.ts +87 -0
- package/packages/ui-core/src/contracts/form.ts +29 -0
- package/packages/ui-core/src/contracts/hover-card.ts +21 -0
- package/packages/ui-core/src/contracts/input.ts +11 -0
- package/packages/ui-core/src/contracts/label.ts +7 -0
- package/packages/ui-core/src/contracts/menubar.ts +86 -0
- package/packages/ui-core/src/contracts/navigation-menu.ts +55 -0
- package/packages/ui-core/src/contracts/pagination.ts +38 -0
- package/packages/ui-core/src/contracts/popover.ts +28 -0
- package/packages/ui-core/src/contracts/progress.ts +4 -0
- package/packages/ui-core/src/contracts/radio.ts +16 -0
- package/packages/ui-core/src/contracts/resizable.ts +36 -0
- package/packages/ui-core/src/contracts/scroll-area.ts +15 -0
- package/packages/ui-core/src/contracts/search.ts +13 -0
- package/packages/ui-core/src/contracts/select.ts +64 -0
- package/packages/ui-core/src/contracts/separator.ts +5 -0
- package/packages/ui-core/src/contracts/sheet.ts +58 -0
- package/packages/ui-core/src/contracts/skeleton.ts +6 -0
- package/packages/ui-core/src/contracts/slider.ts +15 -0
- package/packages/ui-core/src/contracts/sonner.ts +15 -0
- package/packages/ui-core/src/contracts/switch.ts +11 -0
- package/packages/ui-core/src/contracts/table.ts +41 -0
- package/packages/ui-core/src/contracts/tabs.ts +31 -0
- package/packages/ui-core/src/contracts/text.ts +12 -0
- package/packages/ui-core/src/contracts/textarea.ts +7 -0
- package/packages/ui-core/src/contracts/theme-provider.ts +14 -0
- package/packages/ui-core/src/contracts/theme-toggle.ts +15 -0
- package/packages/ui-core/src/contracts/toast.ts +15 -0
- package/packages/ui-core/src/contracts/toaster.ts +3 -0
- package/packages/ui-core/src/contracts/toggle-group.ts +23 -0
- package/packages/ui-core/src/contracts/toggle.ts +49 -0
- package/packages/ui-core/src/contracts/tooltip.ts +28 -0
- package/packages/ui-core/src/index.ts +327 -0
- package/packages/ui-core/tsconfig.json +18 -0
- package/packages/ui-native/CHANGELOG.md +8 -0
- package/packages/ui-native/package.json +76 -0
- package/packages/ui-native/src/accordion.tsx +93 -0
- package/packages/ui-native/src/alert-dialog.tsx +123 -0
- package/packages/ui-native/src/alert.tsx +50 -0
- package/packages/ui-native/src/aspect-ratio.tsx +9 -0
- package/packages/ui-native/src/avatar.tsx +38 -0
- package/packages/ui-native/src/badge.tsx +51 -0
- package/packages/ui-native/src/breadcrumb.tsx +9 -0
- package/packages/ui-native/src/button.test.tsx +27 -0
- package/packages/ui-native/src/button.tsx +75 -0
- package/packages/ui-native/src/calendar.tsx +9 -0
- package/packages/ui-native/src/card.test.tsx +33 -0
- package/packages/ui-native/src/card.tsx +56 -0
- package/packages/ui-native/src/carousel.tsx +9 -0
- package/packages/ui-native/src/chart.tsx +9 -0
- package/packages/ui-native/src/checkbox.test.tsx +58 -0
- package/packages/ui-native/src/checkbox.tsx +31 -0
- package/packages/ui-native/src/collapsible.test.tsx +50 -0
- package/packages/ui-native/src/collapsible.tsx +15 -0
- package/packages/ui-native/src/command.tsx +9 -0
- package/packages/ui-native/src/context-menu.tsx +9 -0
- package/packages/ui-native/src/dialog.test.tsx +91 -0
- package/packages/ui-native/src/dialog.tsx +121 -0
- package/packages/ui-native/src/drawer.tsx +9 -0
- package/packages/ui-native/src/dropdown-menu.tsx +9 -0
- package/packages/ui-native/src/form.tsx +9 -0
- package/packages/ui-native/src/hover-card.tsx +9 -0
- package/packages/ui-native/src/index.ts +209 -0
- package/packages/ui-native/src/input.test.tsx +27 -0
- package/packages/ui-native/src/input.tsx +27 -0
- package/packages/ui-native/src/label.tsx +29 -0
- package/packages/ui-native/src/lib/render-native.tsx +17 -0
- package/packages/ui-native/src/menubar.tsx +9 -0
- package/packages/ui-native/src/nativewind-env.d.ts +1 -0
- package/packages/ui-native/src/navigation-menu.tsx +9 -0
- package/packages/ui-native/src/pagination.tsx +9 -0
- package/packages/ui-native/src/popover.tsx +9 -0
- package/packages/ui-native/src/progress.tsx +9 -0
- package/packages/ui-native/src/radio-group.test.tsx +77 -0
- package/packages/ui-native/src/radio-group.tsx +42 -0
- package/packages/ui-native/src/resizable.tsx +25 -0
- package/packages/ui-native/src/scroll-area.tsx +9 -0
- package/packages/ui-native/src/search.tsx +17 -0
- package/packages/ui-native/src/select.tsx +229 -0
- package/packages/ui-native/src/separator.tsx +20 -0
- package/packages/ui-native/src/sheet.test.tsx +93 -0
- package/packages/ui-native/src/sheet.tsx +127 -0
- package/packages/ui-native/src/skeleton.test.tsx +29 -0
- package/packages/ui-native/src/skeleton.tsx +31 -0
- package/packages/ui-native/src/slider.tsx +9 -0
- package/packages/ui-native/src/sonner.tsx +9 -0
- package/packages/ui-native/src/switch.tsx +34 -0
- package/packages/ui-native/src/table.tsx +73 -0
- package/packages/ui-native/src/tabs.tsx +74 -0
- package/packages/ui-native/src/text.test.tsx +24 -0
- package/packages/ui-native/src/text.tsx +43 -0
- package/packages/ui-native/src/textarea.test.tsx +27 -0
- package/packages/ui-native/src/textarea.tsx +29 -0
- package/packages/ui-native/src/theme-provider.tsx +6 -0
- package/packages/ui-native/src/theme-toggle.tsx +11 -0
- package/packages/ui-native/src/toast.test.tsx +61 -0
- package/packages/ui-native/src/toast.tsx +88 -0
- package/packages/ui-native/src/toaster.tsx +9 -0
- package/packages/ui-native/src/toggle-group.tsx +78 -0
- package/packages/ui-native/src/toggle.tsx +35 -0
- package/packages/ui-native/src/tooltip.tsx +44 -0
- package/packages/ui-native/tsconfig.json +23 -0
- package/packages/ui-native/vite.config.ts +17 -0
- package/packages/ui-web/CHANGELOG.md +8 -0
- package/packages/ui-web/package.json +84 -0
- package/packages/ui-web/src/accordion.tsx +58 -0
- package/packages/ui-web/src/alert-dialog.test.tsx +91 -0
- package/packages/ui-web/src/alert-dialog.tsx +121 -0
- package/packages/ui-web/src/alert.test.tsx +47 -0
- package/packages/ui-web/src/alert.tsx +49 -0
- package/packages/ui-web/src/aspect-ratio.test.tsx +34 -0
- package/packages/ui-web/src/aspect-ratio.tsx +7 -0
- package/packages/ui-web/src/avatar.tsx +40 -0
- package/packages/ui-web/src/badge.tsx +34 -0
- package/packages/ui-web/src/breadcrumb.tsx +105 -0
- package/packages/ui-web/src/button.test.tsx +62 -0
- package/packages/ui-web/src/button.tsx +47 -0
- package/packages/ui-web/src/calendar.test.tsx +23 -0
- package/packages/ui-web/src/calendar.tsx +163 -0
- package/packages/ui-web/src/card.test.tsx +35 -0
- package/packages/ui-web/src/card.tsx +46 -0
- package/packages/ui-web/src/carousel.test.tsx +37 -0
- package/packages/ui-web/src/carousel.tsx +234 -0
- package/packages/ui-web/src/chart.test.tsx +62 -0
- package/packages/ui-web/src/chart.tsx +296 -0
- package/packages/ui-web/src/checkbox.test.tsx +30 -0
- package/packages/ui-web/src/checkbox.tsx +31 -0
- package/packages/ui-web/src/collapsible.test.tsx +51 -0
- package/packages/ui-web/src/collapsible.tsx +15 -0
- package/packages/ui-web/src/command.test.tsx +79 -0
- package/packages/ui-web/src/command.tsx +154 -0
- package/packages/ui-web/src/context-menu.test.tsx +37 -0
- package/packages/ui-web/src/context-menu.tsx +208 -0
- package/packages/ui-web/src/dialog.test.tsx +66 -0
- package/packages/ui-web/src/dialog.tsx +95 -0
- package/packages/ui-web/src/drawer.test.tsx +68 -0
- package/packages/ui-web/src/drawer.tsx +110 -0
- package/packages/ui-web/src/dropdown-menu.test.tsx +93 -0
- package/packages/ui-web/src/dropdown-menu.tsx +212 -0
- package/packages/ui-web/src/form.test.tsx +84 -0
- package/packages/ui-web/src/form.tsx +160 -0
- package/packages/ui-web/src/hooks/use-theme.ts +15 -0
- package/packages/ui-web/src/hooks/use-toast.ts +189 -0
- package/packages/ui-web/src/hover-card.test.tsx +48 -0
- package/packages/ui-web/src/hover-card.tsx +35 -0
- package/packages/ui-web/src/index.ts +474 -0
- package/packages/ui-web/src/input.test.tsx +33 -0
- package/packages/ui-web/src/input.tsx +23 -0
- package/packages/ui-web/src/label.tsx +21 -0
- package/packages/ui-web/src/lib/utils.ts +6 -0
- package/packages/ui-web/src/menubar.test.tsx +92 -0
- package/packages/ui-web/src/menubar.tsx +244 -0
- package/packages/ui-web/src/navigation-menu.test.tsx +53 -0
- package/packages/ui-web/src/navigation-menu.tsx +143 -0
- package/packages/ui-web/src/pagination.test.tsx +57 -0
- package/packages/ui-web/src/pagination.tsx +107 -0
- package/packages/ui-web/src/popover.test.tsx +31 -0
- package/packages/ui-web/src/popover.tsx +45 -0
- package/packages/ui-web/src/progress.test.tsx +18 -0
- package/packages/ui-web/src/progress.tsx +28 -0
- package/packages/ui-web/src/radio-group.test.tsx +39 -0
- package/packages/ui-web/src/radio-group.tsx +41 -0
- package/packages/ui-web/src/resizable.test.tsx +23 -0
- package/packages/ui-web/src/resizable.tsx +59 -0
- package/packages/ui-web/src/scroll-area.test.tsx +15 -0
- package/packages/ui-web/src/scroll-area.tsx +42 -0
- package/packages/ui-web/src/search.test.tsx +81 -0
- package/packages/ui-web/src/search.tsx +87 -0
- package/packages/ui-web/src/select.test.tsx +42 -0
- package/packages/ui-web/src/select.tsx +169 -0
- package/packages/ui-web/src/separator.test.tsx +16 -0
- package/packages/ui-web/src/separator.tsx +24 -0
- package/packages/ui-web/src/setupTests.ts +114 -0
- package/packages/ui-web/src/sheet.test.tsx +48 -0
- package/packages/ui-web/src/sheet.tsx +136 -0
- package/packages/ui-web/src/skeleton.test.tsx +13 -0
- package/packages/ui-web/src/skeleton.tsx +10 -0
- package/packages/ui-web/src/slider.test.tsx +18 -0
- package/packages/ui-web/src/slider.tsx +27 -0
- package/packages/ui-web/src/sonner.test.tsx +13 -0
- package/packages/ui-web/src/sonner.tsx +32 -0
- package/packages/ui-web/src/switch.test.tsx +22 -0
- package/packages/ui-web/src/switch.tsx +31 -0
- package/packages/ui-web/src/table.test.tsx +29 -0
- package/packages/ui-web/src/table.tsx +104 -0
- package/packages/ui-web/src/tabs.test.tsx +43 -0
- package/packages/ui-web/src/tabs.tsx +62 -0
- package/packages/ui-web/src/text.test.tsx +34 -0
- package/packages/ui-web/src/text.tsx +55 -0
- package/packages/ui-web/src/textarea.test.tsx +21 -0
- package/packages/ui-web/src/textarea.tsx +25 -0
- package/packages/ui-web/src/theme-provider.tsx +15 -0
- package/packages/ui-web/src/theme-toggle.test.tsx +49 -0
- package/packages/ui-web/src/theme-toggle.tsx +92 -0
- package/packages/ui-web/src/toast.test.tsx +42 -0
- package/packages/ui-web/src/toast.tsx +111 -0
- package/packages/ui-web/src/toaster.tsx +27 -0
- package/packages/ui-web/src/toggle-group.test.tsx +40 -0
- package/packages/ui-web/src/toggle-group.tsx +55 -0
- package/packages/ui-web/src/toggle.test.tsx +21 -0
- package/packages/ui-web/src/toggle.tsx +24 -0
- package/packages/ui-web/src/tooltip.tsx +51 -0
- package/packages/ui-web/tsconfig.json +24 -0
- package/packages/ui-web/vite.config.ts +21 -0
- package/release-please-config.json +25 -1
- package/scripts/build-registry.ts +60 -27
- package/scripts/sync-tokens.ts +86 -0
- package/scripts/validate.ts +74 -0
- package/src/globals.css +22 -0
- package/src/index.ts +2 -56
- package/src/types/nativewind.d.ts +19 -0
- package/tailwind.config.js +48 -0
- package/tsconfig.build.json +13 -3
- package/tsconfig.json +8 -2
- package/vite.config.ts +61 -5
- package/vitest.config.ts +7 -1
- package/wrangler.toml +1 -1
- package/.yarn/releases/yarn-4.12.0.cjs +0 -942
- package/dist/App.d.ts +0 -3
- package/dist/App.d.ts.map +0 -1
- package/dist/components/docs/CodeBlock.d.ts +0 -8
- package/dist/components/docs/CodeBlock.d.ts.map +0 -1
- package/dist/components/docs/ComponentShowcase.d.ts +0 -17
- package/dist/components/docs/ComponentShowcase.d.ts.map +0 -1
- package/dist/components/docs/Footer.d.ts +0 -2
- package/dist/components/docs/Footer.d.ts.map +0 -1
- package/dist/components/docs/PropsTable.d.ts +0 -13
- package/dist/components/docs/PropsTable.d.ts.map +0 -1
- package/dist/components/docs/Sidebar.d.ts +0 -14
- package/dist/components/docs/Sidebar.d.ts.map +0 -1
- package/dist/components/docs/ThemeToggle.d.ts +0 -2
- package/dist/components/docs/ThemeToggle.d.ts.map +0 -1
- package/dist/components/docs/index.d.ts +0 -7
- package/dist/components/docs/index.d.ts.map +0 -1
- package/dist/components/ui/accordion.d.ts +0 -8
- package/dist/components/ui/accordion.d.ts.map +0 -1
- package/dist/components/ui/accordion.test.d.ts +0 -2
- package/dist/components/ui/accordion.test.d.ts.map +0 -1
- package/dist/components/ui/alert-dialog.d.ts +0 -21
- package/dist/components/ui/alert-dialog.d.ts.map +0 -1
- package/dist/components/ui/alert-dialog.test.d.ts +0 -2
- package/dist/components/ui/alert-dialog.test.d.ts.map +0 -1
- package/dist/components/ui/alert.d.ts +0 -9
- package/dist/components/ui/alert.d.ts.map +0 -1
- package/dist/components/ui/alert.test.d.ts +0 -2
- package/dist/components/ui/alert.test.d.ts.map +0 -1
- package/dist/components/ui/aspect-ratio.d.ts +0 -4
- package/dist/components/ui/aspect-ratio.d.ts.map +0 -1
- package/dist/components/ui/aspect-ratio.test.d.ts +0 -2
- package/dist/components/ui/aspect-ratio.test.d.ts.map +0 -1
- package/dist/components/ui/avatar.d.ts +0 -7
- package/dist/components/ui/avatar.d.ts.map +0 -1
- package/dist/components/ui/avatar.test.d.ts +0 -2
- package/dist/components/ui/avatar.test.d.ts.map +0 -1
- package/dist/components/ui/badge.d.ts +0 -10
- package/dist/components/ui/badge.d.ts.map +0 -1
- package/dist/components/ui/badge.test.d.ts +0 -2
- package/dist/components/ui/badge.test.d.ts.map +0 -1
- package/dist/components/ui/breadcrumb.d.ts +0 -20
- package/dist/components/ui/breadcrumb.d.ts.map +0 -1
- package/dist/components/ui/breadcrumb.test.d.ts +0 -2
- package/dist/components/ui/breadcrumb.test.d.ts.map +0 -1
- package/dist/components/ui/button.d.ts +0 -12
- package/dist/components/ui/button.d.ts.map +0 -1
- package/dist/components/ui/button.test.d.ts +0 -2
- package/dist/components/ui/button.test.d.ts.map +0 -1
- package/dist/components/ui/calendar.d.ts +0 -9
- package/dist/components/ui/calendar.d.ts.map +0 -1
- package/dist/components/ui/calendar.test.d.ts +0 -2
- package/dist/components/ui/calendar.test.d.ts.map +0 -1
- package/dist/components/ui/card.d.ts +0 -9
- package/dist/components/ui/card.d.ts.map +0 -1
- package/dist/components/ui/card.test.d.ts +0 -2
- package/dist/components/ui/card.test.d.ts.map +0 -1
- package/dist/components/ui/carousel.d.ts +0 -19
- package/dist/components/ui/carousel.d.ts.map +0 -1
- package/dist/components/ui/carousel.test.d.ts +0 -2
- package/dist/components/ui/carousel.test.d.ts.map +0 -1
- package/dist/components/ui/chart.d.ts +0 -63
- package/dist/components/ui/chart.d.ts.map +0 -1
- package/dist/components/ui/chart.test.d.ts +0 -2
- package/dist/components/ui/chart.test.d.ts.map +0 -1
- package/dist/components/ui/checkbox.d.ts +0 -5
- package/dist/components/ui/checkbox.d.ts.map +0 -1
- package/dist/components/ui/checkbox.test.d.ts +0 -2
- package/dist/components/ui/checkbox.test.d.ts.map +0 -1
- package/dist/components/ui/collapsible.d.ts +0 -6
- package/dist/components/ui/collapsible.d.ts.map +0 -1
- package/dist/components/ui/collapsible.test.d.ts +0 -2
- package/dist/components/ui/collapsible.test.d.ts.map +0 -1
- package/dist/components/ui/command.d.ts +0 -81
- package/dist/components/ui/command.d.ts.map +0 -1
- package/dist/components/ui/command.test.d.ts +0 -2
- package/dist/components/ui/command.test.d.ts.map +0 -1
- package/dist/components/ui/context-menu.d.ts +0 -28
- package/dist/components/ui/context-menu.d.ts.map +0 -1
- package/dist/components/ui/context-menu.test.d.ts +0 -2
- package/dist/components/ui/context-menu.test.d.ts.map +0 -1
- package/dist/components/ui/dialog.d.ts.map +0 -1
- package/dist/components/ui/dialog.test.d.ts +0 -2
- package/dist/components/ui/dialog.test.d.ts.map +0 -1
- package/dist/components/ui/drawer.d.ts +0 -23
- package/dist/components/ui/drawer.d.ts.map +0 -1
- package/dist/components/ui/drawer.test.d.ts +0 -2
- package/dist/components/ui/drawer.test.d.ts.map +0 -1
- package/dist/components/ui/dropdown-menu.d.ts +0 -28
- package/dist/components/ui/dropdown-menu.d.ts.map +0 -1
- package/dist/components/ui/dropdown-menu.test.d.ts +0 -2
- package/dist/components/ui/dropdown-menu.test.d.ts.map +0 -1
- package/dist/components/ui/form.d.ts +0 -24
- package/dist/components/ui/form.d.ts.map +0 -1
- package/dist/components/ui/form.test.d.ts +0 -2
- package/dist/components/ui/form.test.d.ts.map +0 -1
- package/dist/components/ui/hover-card.d.ts +0 -7
- package/dist/components/ui/hover-card.d.ts.map +0 -1
- package/dist/components/ui/hover-card.test.d.ts +0 -2
- package/dist/components/ui/hover-card.test.d.ts.map +0 -1
- package/dist/components/ui/input.d.ts +0 -4
- package/dist/components/ui/input.d.ts.map +0 -1
- package/dist/components/ui/input.test.d.ts +0 -2
- package/dist/components/ui/input.test.d.ts.map +0 -1
- package/dist/components/ui/label.d.ts +0 -6
- package/dist/components/ui/label.d.ts.map +0 -1
- package/dist/components/ui/label.test.d.ts +0 -2
- package/dist/components/ui/label.test.d.ts.map +0 -1
- package/dist/components/ui/menubar.d.ts +0 -29
- package/dist/components/ui/menubar.d.ts.map +0 -1
- package/dist/components/ui/menubar.test.d.ts +0 -2
- package/dist/components/ui/menubar.test.d.ts.map +0 -1
- package/dist/components/ui/navigation-menu.d.ts +0 -13
- package/dist/components/ui/navigation-menu.d.ts.map +0 -1
- package/dist/components/ui/navigation-menu.test.d.ts +0 -2
- package/dist/components/ui/navigation-menu.test.d.ts.map +0 -1
- package/dist/components/ui/pagination.d.ts +0 -29
- package/dist/components/ui/pagination.d.ts.map +0 -1
- package/dist/components/ui/pagination.test.d.ts +0 -2
- package/dist/components/ui/pagination.test.d.ts.map +0 -1
- package/dist/components/ui/popover.d.ts +0 -8
- package/dist/components/ui/popover.d.ts.map +0 -1
- package/dist/components/ui/popover.test.d.ts +0 -2
- package/dist/components/ui/popover.test.d.ts.map +0 -1
- package/dist/components/ui/progress.d.ts +0 -5
- package/dist/components/ui/progress.d.ts.map +0 -1
- package/dist/components/ui/progress.test.d.ts +0 -2
- package/dist/components/ui/progress.test.d.ts.map +0 -1
- package/dist/components/ui/radio-group.d.ts +0 -6
- package/dist/components/ui/radio-group.d.ts.map +0 -1
- package/dist/components/ui/radio-group.test.d.ts +0 -2
- package/dist/components/ui/radio-group.test.d.ts.map +0 -1
- package/dist/components/ui/resizable.d.ts +0 -11
- package/dist/components/ui/resizable.d.ts.map +0 -1
- package/dist/components/ui/resizable.test.d.ts +0 -2
- package/dist/components/ui/resizable.test.d.ts.map +0 -1
- package/dist/components/ui/scroll-area.d.ts +0 -6
- package/dist/components/ui/scroll-area.d.ts.map +0 -1
- package/dist/components/ui/scroll-area.test.d.ts +0 -2
- package/dist/components/ui/scroll-area.test.d.ts.map +0 -1
- package/dist/components/ui/search.d.ts +0 -16
- package/dist/components/ui/search.d.ts.map +0 -1
- package/dist/components/ui/search.test.d.ts +0 -2
- package/dist/components/ui/search.test.d.ts.map +0 -1
- package/dist/components/ui/select.d.ts +0 -14
- package/dist/components/ui/select.d.ts.map +0 -1
- package/dist/components/ui/select.test.d.ts +0 -2
- package/dist/components/ui/select.test.d.ts.map +0 -1
- package/dist/components/ui/separator.d.ts +0 -5
- package/dist/components/ui/separator.d.ts.map +0 -1
- package/dist/components/ui/separator.test.d.ts +0 -2
- package/dist/components/ui/separator.test.d.ts.map +0 -1
- package/dist/components/ui/sheet.d.ts +0 -26
- package/dist/components/ui/sheet.d.ts.map +0 -1
- package/dist/components/ui/sheet.test.d.ts +0 -2
- package/dist/components/ui/sheet.test.d.ts.map +0 -1
- package/dist/components/ui/skeleton.d.ts +0 -4
- package/dist/components/ui/skeleton.d.ts.map +0 -1
- package/dist/components/ui/skeleton.test.d.ts +0 -2
- package/dist/components/ui/skeleton.test.d.ts.map +0 -1
- package/dist/components/ui/slider.d.ts +0 -5
- package/dist/components/ui/slider.d.ts.map +0 -1
- package/dist/components/ui/slider.test.d.ts +0 -2
- package/dist/components/ui/slider.test.d.ts.map +0 -1
- package/dist/components/ui/sonner.d.ts +0 -6
- package/dist/components/ui/sonner.d.ts.map +0 -1
- package/dist/components/ui/sonner.test.d.ts +0 -2
- package/dist/components/ui/sonner.test.d.ts.map +0 -1
- package/dist/components/ui/switch.d.ts +0 -5
- package/dist/components/ui/switch.d.ts.map +0 -1
- package/dist/components/ui/switch.test.d.ts +0 -2
- package/dist/components/ui/switch.test.d.ts.map +0 -1
- package/dist/components/ui/table.d.ts +0 -11
- package/dist/components/ui/table.d.ts.map +0 -1
- package/dist/components/ui/table.test.d.ts +0 -2
- package/dist/components/ui/table.test.d.ts.map +0 -1
- package/dist/components/ui/tabs.d.ts +0 -8
- package/dist/components/ui/tabs.d.ts.map +0 -1
- package/dist/components/ui/tabs.test.d.ts +0 -2
- package/dist/components/ui/tabs.test.d.ts.map +0 -1
- package/dist/components/ui/textarea.d.ts +0 -4
- package/dist/components/ui/textarea.d.ts.map +0 -1
- package/dist/components/ui/textarea.test.d.ts +0 -2
- package/dist/components/ui/textarea.test.d.ts.map +0 -1
- package/dist/components/ui/theme-provider.d.ts +0 -4
- package/dist/components/ui/theme-provider.d.ts.map +0 -1
- package/dist/components/ui/theme-provider.test.d.ts +0 -2
- package/dist/components/ui/theme-provider.test.d.ts.map +0 -1
- package/dist/components/ui/theme-toggle.d.ts +0 -17
- package/dist/components/ui/theme-toggle.d.ts.map +0 -1
- package/dist/components/ui/theme-toggle.test.d.ts +0 -2
- package/dist/components/ui/theme-toggle.test.d.ts.map +0 -1
- package/dist/components/ui/toast.d.ts.map +0 -1
- package/dist/components/ui/toast.test.d.ts +0 -2
- package/dist/components/ui/toast.test.d.ts.map +0 -1
- package/dist/components/ui/toaster.d.ts.map +0 -1
- package/dist/components/ui/toggle-group.d.ts +0 -13
- package/dist/components/ui/toggle-group.d.ts.map +0 -1
- package/dist/components/ui/toggle-group.test.d.ts +0 -2
- package/dist/components/ui/toggle-group.test.d.ts.map +0 -1
- package/dist/components/ui/toggle.d.ts +0 -13
- package/dist/components/ui/toggle.d.ts.map +0 -1
- package/dist/components/ui/toggle.test.d.ts +0 -2
- package/dist/components/ui/toggle.test.d.ts.map +0 -1
- package/dist/components/ui/tooltip.d.ts +0 -8
- package/dist/components/ui/tooltip.d.ts.map +0 -1
- package/dist/components/ui/tooltip.test.d.ts +0 -2
- package/dist/components/ui/tooltip.test.d.ts.map +0 -1
- package/dist/hooks/use-theme.d.ts.map +0 -1
- package/dist/hooks/use-theme.test.d.ts +0 -2
- package/dist/hooks/use-theme.test.d.ts.map +0 -1
- package/dist/hooks/use-toast.d.ts +0 -45
- package/dist/hooks/use-toast.d.ts.map +0 -1
- package/dist/index.d.ts +0 -54
- package/dist/index.d.ts.map +0 -1
- package/dist/lib/utils.d.ts.map +0 -1
- package/dist/main.d.ts +0 -2
- package/dist/main.d.ts.map +0 -1
- package/dist/pages/ColorTokensDocs.d.ts +0 -2
- package/dist/pages/ColorTokensDocs.d.ts.map +0 -1
- package/dist/pages/GettingStarted.d.ts +0 -3
- package/dist/pages/GettingStarted.d.ts.map +0 -1
- package/dist/pages/components/AccordionDocs.d.ts +0 -2
- package/dist/pages/components/AccordionDocs.d.ts.map +0 -1
- package/dist/pages/components/AlertDialogDocs.d.ts +0 -2
- package/dist/pages/components/AlertDialogDocs.d.ts.map +0 -1
- package/dist/pages/components/AlertDocs.d.ts +0 -2
- package/dist/pages/components/AlertDocs.d.ts.map +0 -1
- package/dist/pages/components/AspectRatioDocs.d.ts +0 -2
- package/dist/pages/components/AspectRatioDocs.d.ts.map +0 -1
- package/dist/pages/components/AvatarDocs.d.ts +0 -2
- package/dist/pages/components/AvatarDocs.d.ts.map +0 -1
- package/dist/pages/components/BadgeDocs.d.ts +0 -2
- package/dist/pages/components/BadgeDocs.d.ts.map +0 -1
- package/dist/pages/components/BreadcrumbDocs.d.ts +0 -2
- package/dist/pages/components/BreadcrumbDocs.d.ts.map +0 -1
- package/dist/pages/components/ButtonDocs.d.ts +0 -2
- package/dist/pages/components/ButtonDocs.d.ts.map +0 -1
- package/dist/pages/components/CalendarDocs.d.ts +0 -2
- package/dist/pages/components/CalendarDocs.d.ts.map +0 -1
- package/dist/pages/components/CardDocs.d.ts +0 -2
- package/dist/pages/components/CardDocs.d.ts.map +0 -1
- package/dist/pages/components/CarouselDocs.d.ts +0 -2
- package/dist/pages/components/CarouselDocs.d.ts.map +0 -1
- package/dist/pages/components/ChartDocs.d.ts +0 -2
- package/dist/pages/components/ChartDocs.d.ts.map +0 -1
- package/dist/pages/components/CheckboxDocs.d.ts +0 -2
- package/dist/pages/components/CheckboxDocs.d.ts.map +0 -1
- package/dist/pages/components/CollapsibleDocs.d.ts +0 -2
- package/dist/pages/components/CollapsibleDocs.d.ts.map +0 -1
- package/dist/pages/components/CommandDocs.d.ts +0 -2
- package/dist/pages/components/CommandDocs.d.ts.map +0 -1
- package/dist/pages/components/ContextMenuDocs.d.ts +0 -2
- package/dist/pages/components/ContextMenuDocs.d.ts.map +0 -1
- package/dist/pages/components/DialogDocs.d.ts +0 -2
- package/dist/pages/components/DialogDocs.d.ts.map +0 -1
- package/dist/pages/components/DrawerDocs.d.ts +0 -2
- package/dist/pages/components/DrawerDocs.d.ts.map +0 -1
- package/dist/pages/components/DropdownMenuDocs.d.ts +0 -2
- package/dist/pages/components/DropdownMenuDocs.d.ts.map +0 -1
- package/dist/pages/components/FormDocs.d.ts +0 -2
- package/dist/pages/components/FormDocs.d.ts.map +0 -1
- package/dist/pages/components/HoverCardDocs.d.ts +0 -2
- package/dist/pages/components/HoverCardDocs.d.ts.map +0 -1
- package/dist/pages/components/InputDocs.d.ts +0 -2
- package/dist/pages/components/InputDocs.d.ts.map +0 -1
- package/dist/pages/components/LabelDocs.d.ts +0 -2
- package/dist/pages/components/LabelDocs.d.ts.map +0 -1
- package/dist/pages/components/MenubarDocs.d.ts +0 -2
- package/dist/pages/components/MenubarDocs.d.ts.map +0 -1
- package/dist/pages/components/NavigationMenuDocs.d.ts +0 -2
- package/dist/pages/components/NavigationMenuDocs.d.ts.map +0 -1
- package/dist/pages/components/PaginationDocs.d.ts +0 -2
- package/dist/pages/components/PaginationDocs.d.ts.map +0 -1
- package/dist/pages/components/PopoverDocs.d.ts +0 -2
- package/dist/pages/components/PopoverDocs.d.ts.map +0 -1
- package/dist/pages/components/ProgressDocs.d.ts +0 -2
- package/dist/pages/components/ProgressDocs.d.ts.map +0 -1
- package/dist/pages/components/RadioGroupDocs.d.ts +0 -2
- package/dist/pages/components/RadioGroupDocs.d.ts.map +0 -1
- package/dist/pages/components/ResizableDocs.d.ts +0 -2
- package/dist/pages/components/ResizableDocs.d.ts.map +0 -1
- package/dist/pages/components/ScrollAreaDocs.d.ts +0 -2
- package/dist/pages/components/ScrollAreaDocs.d.ts.map +0 -1
- package/dist/pages/components/SearchDocs.d.ts +0 -2
- package/dist/pages/components/SearchDocs.d.ts.map +0 -1
- package/dist/pages/components/SelectDocs.d.ts +0 -2
- package/dist/pages/components/SelectDocs.d.ts.map +0 -1
- package/dist/pages/components/SeparatorDocs.d.ts +0 -2
- package/dist/pages/components/SeparatorDocs.d.ts.map +0 -1
- package/dist/pages/components/SheetDocs.d.ts +0 -2
- package/dist/pages/components/SheetDocs.d.ts.map +0 -1
- package/dist/pages/components/SkeletonDocs.d.ts +0 -2
- package/dist/pages/components/SkeletonDocs.d.ts.map +0 -1
- package/dist/pages/components/SliderDocs.d.ts +0 -2
- package/dist/pages/components/SliderDocs.d.ts.map +0 -1
- package/dist/pages/components/SonnerDocs.d.ts +0 -2
- package/dist/pages/components/SonnerDocs.d.ts.map +0 -1
- package/dist/pages/components/SwitchDocs.d.ts +0 -2
- package/dist/pages/components/SwitchDocs.d.ts.map +0 -1
- package/dist/pages/components/TableDocs.d.ts +0 -2
- package/dist/pages/components/TableDocs.d.ts.map +0 -1
- package/dist/pages/components/TabsDocs.d.ts +0 -2
- package/dist/pages/components/TabsDocs.d.ts.map +0 -1
- package/dist/pages/components/TextareaDocs.d.ts +0 -2
- package/dist/pages/components/TextareaDocs.d.ts.map +0 -1
- package/dist/pages/components/ThemeToggleDocs.d.ts +0 -2
- package/dist/pages/components/ThemeToggleDocs.d.ts.map +0 -1
- package/dist/pages/components/ToastDocs.d.ts +0 -2
- package/dist/pages/components/ToastDocs.d.ts.map +0 -1
- package/dist/pages/components/ToggleDocs.d.ts +0 -2
- package/dist/pages/components/ToggleDocs.d.ts.map +0 -1
- package/dist/pages/components/ToggleGroupDocs.d.ts +0 -2
- package/dist/pages/components/ToggleGroupDocs.d.ts.map +0 -1
- package/dist/pages/components/TooltipDocs.d.ts +0 -2
- package/dist/pages/components/TooltipDocs.d.ts.map +0 -1
- package/dist/pages/index.d.ts +0 -50
- package/dist/pages/index.d.ts.map +0 -1
- package/dist/registry/accordion.json +0 -13
- package/dist/registry/accordion.test.json +0 -13
- package/dist/registry/alert-dialog.json +0 -13
- package/dist/registry/alert-dialog.test.json +0 -13
- package/dist/registry/alert.json +0 -13
- package/dist/registry/alert.test.json +0 -13
- package/dist/registry/aspect-ratio.json +0 -13
- package/dist/registry/aspect-ratio.test.json +0 -13
- package/dist/registry/avatar.json +0 -13
- package/dist/registry/avatar.test.json +0 -13
- package/dist/registry/badge.json +0 -13
- package/dist/registry/badge.test.json +0 -13
- package/dist/registry/breadcrumb.json +0 -13
- package/dist/registry/breadcrumb.test.json +0 -13
- package/dist/registry/button.json +0 -13
- package/dist/registry/button.test.json +0 -13
- package/dist/registry/calendar.json +0 -13
- package/dist/registry/calendar.test.json +0 -13
- package/dist/registry/card.json +0 -13
- package/dist/registry/card.test.json +0 -13
- package/dist/registry/carousel.json +0 -13
- package/dist/registry/carousel.test.json +0 -13
- package/dist/registry/chart.json +0 -13
- package/dist/registry/chart.test.json +0 -13
- package/dist/registry/checkbox.json +0 -13
- package/dist/registry/checkbox.test.json +0 -13
- package/dist/registry/collapsible.json +0 -13
- package/dist/registry/collapsible.test.json +0 -13
- package/dist/registry/command.json +0 -13
- package/dist/registry/command.test.json +0 -13
- package/dist/registry/context-menu.json +0 -13
- package/dist/registry/context-menu.test.json +0 -13
- package/dist/registry/dialog.json +0 -13
- package/dist/registry/dialog.test.json +0 -13
- package/dist/registry/drawer.json +0 -13
- package/dist/registry/drawer.test.json +0 -13
- package/dist/registry/dropdown-menu.json +0 -13
- package/dist/registry/dropdown-menu.test.json +0 -13
- package/dist/registry/form.json +0 -13
- package/dist/registry/form.test.json +0 -13
- package/dist/registry/hover-card.json +0 -13
- package/dist/registry/hover-card.test.json +0 -13
- package/dist/registry/index.json +0 -681
- package/dist/registry/input.json +0 -13
- package/dist/registry/input.test.json +0 -13
- package/dist/registry/label.json +0 -13
- package/dist/registry/label.test.json +0 -13
- package/dist/registry/menubar.json +0 -13
- package/dist/registry/menubar.test.json +0 -13
- package/dist/registry/navigation-menu.json +0 -13
- package/dist/registry/navigation-menu.test.json +0 -13
- package/dist/registry/pagination.json +0 -13
- package/dist/registry/pagination.test.json +0 -13
- package/dist/registry/popover.json +0 -13
- package/dist/registry/popover.test.json +0 -13
- package/dist/registry/progress.json +0 -13
- package/dist/registry/progress.test.json +0 -13
- package/dist/registry/radio-group.json +0 -13
- package/dist/registry/radio-group.test.json +0 -13
- package/dist/registry/resizable.json +0 -13
- package/dist/registry/resizable.test.json +0 -13
- package/dist/registry/scroll-area.json +0 -13
- package/dist/registry/scroll-area.test.json +0 -13
- package/dist/registry/search.json +0 -13
- package/dist/registry/search.test.json +0 -13
- package/dist/registry/select.json +0 -13
- package/dist/registry/select.test.json +0 -13
- package/dist/registry/separator.json +0 -13
- package/dist/registry/separator.test.json +0 -13
- package/dist/registry/sheet.json +0 -13
- package/dist/registry/sheet.test.json +0 -13
- package/dist/registry/skeleton.json +0 -13
- package/dist/registry/skeleton.test.json +0 -13
- package/dist/registry/slider.json +0 -13
- package/dist/registry/slider.test.json +0 -13
- package/dist/registry/sonner.json +0 -13
- package/dist/registry/sonner.test.json +0 -13
- package/dist/registry/switch.json +0 -13
- package/dist/registry/switch.test.json +0 -13
- package/dist/registry/table.json +0 -13
- package/dist/registry/table.test.json +0 -13
- package/dist/registry/tabs.json +0 -13
- package/dist/registry/tabs.test.json +0 -13
- package/dist/registry/textarea.json +0 -13
- package/dist/registry/textarea.test.json +0 -13
- package/dist/registry/theme-provider.json +0 -13
- package/dist/registry/theme-provider.test.json +0 -13
- package/dist/registry/theme-toggle.json +0 -13
- package/dist/registry/theme-toggle.test.json +0 -13
- package/dist/registry/toast.json +0 -13
- package/dist/registry/toast.test.json +0 -13
- package/dist/registry/toaster.json +0 -13
- package/dist/registry/toggle-group.json +0 -13
- package/dist/registry/toggle-group.test.json +0 -13
- package/dist/registry/toggle.json +0 -13
- package/dist/registry/toggle.test.json +0 -13
- package/dist/registry/tooltip.json +0 -13
- package/dist/registry/tooltip.test.json +0 -13
- package/dist/setupTests.d.ts +0 -2
- package/dist/setupTests.d.ts.map +0 -1
- package/dist/theme/tokens.d.ts +0 -115
- package/dist/theme/tokens.d.ts.map +0 -1
- package/dist/vendor-Bcg_ARLM.mjs +0 -25810
- package/dist/vendor-Bcg_ARLM.mjs.map +0 -1
- package/dist/vendor-BrqPND3G.js +0 -73
- package/dist/vendor-BrqPND3G.js.map +0 -1
- package/docs/MIGRATE_TO_GVTECH_SCOPE.md +0 -74
- package/public/favicon.png +0 -0
- package/public/index.demo.html +0 -40
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +0 -25
- package/public/robots.txt +0 -2
- package/scripts/import-all-shadcn.ts +0 -68
- package/scripts/validate.js +0 -55
- package/src/App.tsx +0 -274
- package/src/components/docs/CodeBlock.tsx +0 -34
- package/src/components/docs/ComponentShowcase.tsx +0 -68
- package/src/components/docs/Footer.tsx +0 -138
- package/src/components/docs/PropsTable.tsx +0 -43
- package/src/components/docs/Sidebar.tsx +0 -175
- package/src/components/docs/ThemeToggle.tsx +0 -19
- package/src/components/docs/index.ts +0 -6
- package/src/components/ui/accordion.tsx +0 -51
- package/src/components/ui/alert-dialog.test.tsx +0 -91
- package/src/components/ui/alert-dialog.tsx +0 -104
- package/src/components/ui/alert.test.tsx +0 -33
- package/src/components/ui/alert.tsx +0 -43
- package/src/components/ui/aspect-ratio.test.tsx +0 -34
- package/src/components/ui/aspect-ratio.tsx +0 -5
- package/src/components/ui/avatar.tsx +0 -38
- package/src/components/ui/badge.tsx +0 -29
- package/src/components/ui/breadcrumb.test.tsx +0 -55
- package/src/components/ui/breadcrumb.tsx +0 -90
- package/src/components/ui/button.test.tsx +0 -62
- package/src/components/ui/button.tsx +0 -46
- package/src/components/ui/calendar.test.tsx +0 -23
- package/src/components/ui/calendar.tsx +0 -160
- package/src/components/ui/card.test.tsx +0 -35
- package/src/components/ui/card.tsx +0 -43
- package/src/components/ui/carousel.test.tsx +0 -37
- package/src/components/ui/carousel.tsx +0 -224
- package/src/components/ui/chart.test.tsx +0 -62
- package/src/components/ui/chart.tsx +0 -307
- package/src/components/ui/checkbox.test.tsx +0 -30
- package/src/components/ui/checkbox.tsx +0 -26
- package/src/components/ui/collapsible.test.tsx +0 -51
- package/src/components/ui/collapsible.tsx +0 -9
- package/src/components/ui/command.test.tsx +0 -79
- package/src/components/ui/command.tsx +0 -132
- package/src/components/ui/context-menu.test.tsx +0 -37
- package/src/components/ui/context-menu.tsx +0 -178
- package/src/components/ui/dialog.test.tsx +0 -66
- package/src/components/ui/dialog.tsx +0 -95
- package/src/components/ui/drawer.test.tsx +0 -68
- package/src/components/ui/drawer.tsx +0 -87
- package/src/components/ui/dropdown-menu.test.tsx +0 -93
- package/src/components/ui/dropdown-menu.tsx +0 -180
- package/src/components/ui/form.test.tsx +0 -85
- package/src/components/ui/form.tsx +0 -149
- package/src/components/ui/hover-card.test.tsx +0 -48
- package/src/components/ui/hover-card.tsx +0 -27
- package/src/components/ui/input.test.tsx +0 -33
- package/src/components/ui/input.tsx +0 -22
- package/src/components/ui/label.tsx +0 -17
- package/src/components/ui/menubar.test.tsx +0 -92
- package/src/components/ui/menubar.tsx +0 -217
- package/src/components/ui/navigation-menu.test.tsx +0 -53
- package/src/components/ui/navigation-menu.tsx +0 -120
- package/src/components/ui/pagination.test.tsx +0 -57
- package/src/components/ui/pagination.tsx +0 -81
- package/src/components/ui/popover.test.tsx +0 -31
- package/src/components/ui/popover.tsx +0 -31
- package/src/components/ui/progress.test.tsx +0 -18
- package/src/components/ui/progress.tsx +0 -24
- package/src/components/ui/radio-group.test.tsx +0 -39
- package/src/components/ui/radio-group.tsx +0 -36
- package/src/components/ui/resizable.test.tsx +0 -23
- package/src/components/ui/resizable.tsx +0 -45
- package/src/components/ui/scroll-area.test.tsx +0 -15
- package/src/components/ui/scroll-area.tsx +0 -38
- package/src/components/ui/search.test.tsx +0 -75
- package/src/components/ui/search.tsx +0 -93
- package/src/components/ui/select.test.tsx +0 -42
- package/src/components/ui/select.tsx +0 -142
- package/src/components/ui/separator.test.tsx +0 -16
- package/src/components/ui/separator.tsx +0 -20
- package/src/components/ui/sheet.test.tsx +0 -48
- package/src/components/ui/sheet.tsx +0 -106
- package/src/components/ui/skeleton.test.tsx +0 -13
- package/src/components/ui/skeleton.tsx +0 -8
- package/src/components/ui/slider.test.tsx +0 -18
- package/src/components/ui/slider.tsx +0 -23
- package/src/components/ui/sonner.test.tsx +0 -13
- package/src/components/ui/sonner.tsx +0 -28
- package/src/components/ui/switch.test.tsx +0 -22
- package/src/components/ui/switch.tsx +0 -27
- package/src/components/ui/table.test.tsx +0 -29
- package/src/components/ui/table.tsx +0 -76
- package/src/components/ui/tabs.test.tsx +0 -43
- package/src/components/ui/tabs.tsx +0 -53
- package/src/components/ui/textarea.test.tsx +0 -21
- package/src/components/ui/textarea.tsx +0 -21
- package/src/components/ui/theme-provider.test.tsx +0 -47
- package/src/components/ui/theme-provider.tsx +0 -12
- package/src/components/ui/theme-toggle.test.tsx +0 -49
- package/src/components/ui/theme-toggle.tsx +0 -108
- package/src/components/ui/toast.test.tsx +0 -42
- package/src/components/ui/toast.tsx +0 -111
- package/src/components/ui/toaster.tsx +0 -24
- package/src/components/ui/toggle-group.test.tsx +0 -40
- package/src/components/ui/toggle-group.tsx +0 -51
- package/src/components/ui/toggle.test.tsx +0 -21
- package/src/components/ui/toggle.tsx +0 -37
- package/src/components/ui/tooltip.test.tsx +0 -25
- package/src/components/ui/tooltip.tsx +0 -30
- package/src/hooks/use-theme.test.tsx +0 -27
- package/src/hooks/use-theme.ts +0 -15
- package/src/hooks/use-toast.ts +0 -189
- package/src/main.tsx +0 -10
- package/src/pages/ColorTokensDocs.tsx +0 -218
- package/src/pages/GettingStarted.tsx +0 -302
- package/src/pages/components/AccordionDocs.tsx +0 -164
- package/src/pages/components/AlertDialogDocs.tsx +0 -151
- package/src/pages/components/AlertDocs.tsx +0 -65
- package/src/pages/components/AspectRatioDocs.tsx +0 -85
- package/src/pages/components/AvatarDocs.tsx +0 -82
- package/src/pages/components/BadgeDocs.tsx +0 -56
- package/src/pages/components/BreadcrumbDocs.tsx +0 -87
- package/src/pages/components/ButtonDocs.tsx +0 -120
- package/src/pages/components/CalendarDocs.tsx +0 -72
- package/src/pages/components/CardDocs.tsx +0 -101
- package/src/pages/components/CarouselDocs.tsx +0 -163
- package/src/pages/components/ChartDocs.tsx +0 -145
- package/src/pages/components/CheckboxDocs.tsx +0 -107
- package/src/pages/components/CollapsibleDocs.tsx +0 -103
- package/src/pages/components/CommandDocs.tsx +0 -209
- package/src/pages/components/ContextMenuDocs.tsx +0 -158
- package/src/pages/components/DialogDocs.tsx +0 -167
- package/src/pages/components/DrawerDocs.tsx +0 -274
- package/src/pages/components/DropdownMenuDocs.tsx +0 -313
- package/src/pages/components/FormDocs.tsx +0 -163
- package/src/pages/components/HoverCardDocs.tsx +0 -136
- package/src/pages/components/InputDocs.tsx +0 -99
- package/src/pages/components/LabelDocs.tsx +0 -54
- package/src/pages/components/MenubarDocs.tsx +0 -290
- package/src/pages/components/NavigationMenuDocs.tsx +0 -254
- package/src/pages/components/PaginationDocs.tsx +0 -93
- package/src/pages/components/PopoverDocs.tsx +0 -183
- package/src/pages/components/ProgressDocs.tsx +0 -64
- package/src/pages/components/RadioGroupDocs.tsx +0 -132
- package/src/pages/components/ResizableDocs.tsx +0 -137
- package/src/pages/components/ScrollAreaDocs.tsx +0 -102
- package/src/pages/components/SearchDocs.tsx +0 -194
- package/src/pages/components/SelectDocs.tsx +0 -158
- package/src/pages/components/SeparatorDocs.tsx +0 -79
- package/src/pages/components/SheetDocs.tsx +0 -178
- package/src/pages/components/SkeletonDocs.tsx +0 -44
- package/src/pages/components/SliderDocs.tsx +0 -110
- package/src/pages/components/SonnerDocs.tsx +0 -117
- package/src/pages/components/SwitchDocs.tsx +0 -86
- package/src/pages/components/TableDocs.tsx +0 -139
- package/src/pages/components/TabsDocs.tsx +0 -223
- package/src/pages/components/TextareaDocs.tsx +0 -60
- package/src/pages/components/ThemeToggleDocs.tsx +0 -296
- package/src/pages/components/ToastDocs.tsx +0 -141
- package/src/pages/components/ToggleDocs.tsx +0 -76
- package/src/pages/components/ToggleGroupDocs.tsx +0 -131
- package/src/pages/components/TooltipDocs.tsx +0 -147
- package/src/pages/index.ts +0 -52
- package/src/theme/tokens.ts +0 -68
- /package/{index.html → apps/playground-web/index.html} +0 -0
- /package/{dist → apps/playground-web/public}/favicon.png +0 -0
- /package/{dist → apps/playground-web/public}/index.demo.html +0 -0
- /package/{dist → apps/playground-web/public}/logo192.png +0 -0
- /package/{dist → apps/playground-web/public}/logo512.png +0 -0
- /package/{dist → apps/playground-web/public}/manifest.json +0 -0
- /package/{dist → apps/playground-web/public}/robots.txt +0 -0
- /package/dist/{lib → packages/ui-native/src/lib}/utils.d.ts +0 -0
- /package/dist/{components/ui → packages/ui-native/src}/toaster.d.ts +0 -0
- /package/dist/{components/ui → packages/ui-web/src}/dialog.d.ts +0 -0
- /package/dist/{hooks → packages/ui-web/src/hooks}/use-theme.d.ts +0 -0
- /package/dist/{components/ui → packages/ui-web/src}/toast.d.ts +0 -0
- /package/{src → packages/ui-native/src}/lib/utils.ts +0 -0
- /package/{src/components/ui → packages/ui-web/src}/accordion.test.tsx +0 -0
- /package/{src/components/ui → packages/ui-web/src}/avatar.test.tsx +0 -0
- /package/{src/components/ui → packages/ui-web/src}/badge.test.tsx +0 -0
- /package/{src/components/ui → packages/ui-web/src}/label.test.tsx +0 -0
package/dist/index.es.js
CHANGED
|
@@ -1,2454 +1,423 @@
|
|
|
1
|
-
import { t as
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
1
|
+
import { t as e, p as r } from "./theme-toggle-Dhc53hqa.mjs";
|
|
2
|
+
import { T as u } from "./theme-toggle-Dhc53hqa.mjs";
|
|
3
|
+
import { c as s } from "./utils-BfGqxkzX.mjs";
|
|
4
|
+
import { Accordion as C, AccordionContent as b, AccordionItem as c, AccordionTrigger as T } from "./accordion.es.js";
|
|
5
|
+
import { Alert as f, AlertDescription as D, AlertTitle as S } from "./alert.es.js";
|
|
6
|
+
import { AlertDialog as v, AlertDialogAction as w, AlertDialogCancel as A, AlertDialogContent as P, AlertDialogDescription as I, AlertDialogFooter as F, AlertDialogHeader as L, AlertDialogOverlay as y, AlertDialogPortal as B, AlertDialogTitle as R, AlertDialogTrigger as G } from "./alert-dialog.es.js";
|
|
7
|
+
import { AspectRatio as N } from "./aspect-ratio.es.js";
|
|
8
|
+
import { Avatar as V, AvatarFallback as z, AvatarImage as O } from "./avatar.es.js";
|
|
9
|
+
import { Badge as U, badgeVariants as W } from "./badge.es.js";
|
|
10
|
+
import { Breadcrumb as q, BreadcrumbEllipsis as J, BreadcrumbItem as K, BreadcrumbLink as Q, BreadcrumbList as X, BreadcrumbPage as Y, BreadcrumbSeparator as Z } from "./breadcrumb.es.js";
|
|
11
|
+
import { Button as $, buttonVariants as ee } from "./button.es.js";
|
|
12
|
+
import { Calendar as oe, CalendarDayButton as te } from "./calendar.es.js";
|
|
13
|
+
import { Card as ne, CardContent as ie, CardDescription as le, CardFooter as pe, CardHeader as me, CardTitle as xe } from "./card.es.js";
|
|
14
|
+
import { Carousel as ge, CarouselContent as se, CarouselItem as de, CarouselNext as Ce, CarouselPrevious as be } from "./carousel.es.js";
|
|
15
|
+
import { ChartContainer as Te, ChartLegend as Me, ChartLegendContent as fe, ChartStyle as De, ChartTooltip as Se, ChartTooltipContent as he } from "./chart.es.js";
|
|
16
|
+
import { Checkbox as we } from "./checkbox.es.js";
|
|
17
|
+
import { Collapsible as Pe, CollapsibleContent as Ie, CollapsibleTrigger as Fe } from "./collapsible.es.js";
|
|
18
|
+
import { Command as ye, CommandDialog as Be, CommandEmpty as Re, CommandGroup as Ge, CommandInput as He, CommandItem as Ne, CommandList as ke, CommandSeparator as Ve, CommandShortcut as ze } from "./command.es.js";
|
|
19
|
+
import { ContextMenu as Ee, ContextMenuCheckboxItem as Ue, ContextMenuContent as We, ContextMenuGroup as je, ContextMenuItem as qe, ContextMenuLabel as Je, ContextMenuPortal as Ke, ContextMenuRadioGroup as Qe, ContextMenuRadioItem as Xe, ContextMenuSeparator as Ye, ContextMenuShortcut as Ze, ContextMenuSub as _e, ContextMenuSubContent as $e, ContextMenuSubTrigger as er, ContextMenuTrigger as rr } from "./context-menu.es.js";
|
|
20
|
+
import { Dialog as tr, DialogClose as ar, DialogContent as nr, DialogDescription as ir, DialogFooter as lr, DialogHeader as pr, DialogOverlay as mr, DialogPortal as xr, DialogTitle as ur, DialogTrigger as gr } from "./dialog.es.js";
|
|
21
|
+
import { Drawer as dr, DrawerClose as Cr, DrawerContent as br, DrawerDescription as cr, DrawerFooter as Tr, DrawerHeader as Mr, DrawerOverlay as fr, DrawerPortal as Dr, DrawerTitle as Sr, DrawerTrigger as hr } from "./drawer.es.js";
|
|
22
|
+
import { DropdownMenu as wr, DropdownMenuCheckboxItem as Ar, DropdownMenuContent as Pr, DropdownMenuGroup as Ir, DropdownMenuItem as Fr, DropdownMenuLabel as Lr, DropdownMenuPortal as yr, DropdownMenuRadioGroup as Br, DropdownMenuRadioItem as Rr, DropdownMenuSeparator as Gr, DropdownMenuShortcut as Hr, DropdownMenuSub as Nr, DropdownMenuSubContent as kr, DropdownMenuSubTrigger as Vr, DropdownMenuTrigger as zr } from "./dropdown-menu.es.js";
|
|
23
|
+
import { Form as Er, FormControl as Ur, FormDescription as Wr, FormField as jr, FormItem as qr, FormLabel as Jr, FormMessage as Kr, useFormField as Qr } from "./form.es.js";
|
|
24
|
+
import { HoverCard as Yr, HoverCardContent as Zr, HoverCardTrigger as _r } from "./hover-card.es.js";
|
|
25
|
+
import { Input as eo } from "./input.es.js";
|
|
26
|
+
import { Label as oo } from "./label.es.js";
|
|
27
|
+
import { Menubar as ao, MenubarCheckboxItem as no, MenubarContent as io, MenubarGroup as lo, MenubarItem as po, MenubarLabel as mo, MenubarMenu as xo, MenubarPortal as uo, MenubarRadioGroup as go, MenubarRadioItem as so, MenubarSeparator as Co, MenubarShortcut as bo, MenubarSub as co, MenubarSubContent as To, MenubarSubTrigger as Mo, MenubarTrigger as fo } from "./menubar.es.js";
|
|
28
|
+
import { NavigationMenu as So, NavigationMenuContent as ho, NavigationMenuIndicator as vo, NavigationMenuItem as wo, NavigationMenuLink as Ao, NavigationMenuList as Po, NavigationMenuTrigger as Io, NavigationMenuViewport as Fo, navigationMenuTriggerStyle as Lo } from "./navigation-menu.es.js";
|
|
29
|
+
import { Pagination as Bo, PaginationContent as Ro, PaginationEllipsis as Go, PaginationItem as Ho, PaginationLink as No, PaginationNext as ko, PaginationPrevious as Vo } from "./pagination.es.js";
|
|
30
|
+
import { Popover as Oo, PopoverAnchor as Eo, PopoverContent as Uo, PopoverTrigger as Wo } from "./popover.es.js";
|
|
31
|
+
import { Progress as qo } from "./progress.es.js";
|
|
32
|
+
import { RadioGroup as Ko, RadioGroupItem as Qo } from "./radio-group.es.js";
|
|
33
|
+
import { ResizableHandle as Yo, ResizablePanel as Zo, ResizablePanelGroup as _o } from "./resizable.es.js";
|
|
34
|
+
import { ScrollArea as et, ScrollBar as rt } from "./scroll-area.es.js";
|
|
35
|
+
import { Search as tt, SearchTrigger as at } from "./search.es.js";
|
|
36
|
+
import { Select as it, SelectContent as lt, SelectGroup as pt, SelectItem as mt, SelectLabel as xt, SelectScrollDownButton as ut, SelectScrollUpButton as gt, SelectSeparator as st, SelectTrigger as dt, SelectValue as Ct } from "./select.es.js";
|
|
37
|
+
import { Separator as ct } from "./separator.es.js";
|
|
38
|
+
import { Sheet as Mt, SheetClose as ft, SheetContent as Dt, SheetDescription as St, SheetFooter as ht, SheetHeader as vt, SheetOverlay as wt, SheetPortal as At, SheetTitle as Pt, SheetTrigger as It } from "./sheet.es.js";
|
|
39
|
+
import { Skeleton as Lt } from "./skeleton.es.js";
|
|
40
|
+
import { Slider as Bt } from "./slider.es.js";
|
|
41
|
+
import { Toaster as Gt } from "./sonner.es.js";
|
|
42
|
+
import { Switch as Nt } from "./switch.es.js";
|
|
43
|
+
import { Table as Vt, TableBody as zt, TableCaption as Ot, TableCell as Et, TableFooter as Ut, TableHead as Wt, TableHeader as jt, TableRow as qt } from "./table.es.js";
|
|
44
|
+
import { Tabs as Kt, TabsContent as Qt, TabsList as Xt, TabsTrigger as Yt } from "./tabs.es.js";
|
|
45
|
+
import { Text as _t, textVariants as $t } from "./text.es.js";
|
|
46
|
+
import { Textarea as ra } from "./textarea.es.js";
|
|
47
|
+
import { Toggle as ta } from "./toggle.es.js";
|
|
48
|
+
import { ToggleGroup as na, ToggleGroupItem as ia } from "./toggle-group.es.js";
|
|
49
|
+
import { Tooltip as pa, TooltipContent as ma, TooltipProvider as xa, TooltipTrigger as ua } from "./tooltip.es.js";
|
|
50
|
+
import { Toast as sa, ToastAction as da, ToastClose as Ca, ToastDescription as ba, ToastProvider as ca, ToastTitle as Ta, ToastViewport as Ma } from "./toast.es.js";
|
|
51
|
+
import { ThemeProvider as Da } from "./theme-provider.es.js";
|
|
52
|
+
import { T as ha, t as va, u as wa } from "./toaster-CmNmQ6jI.mjs";
|
|
53
|
+
import { t as Pa } from "./toggle-CYawMoye.mjs";
|
|
54
|
+
const t = {
|
|
55
|
+
px: "1px",
|
|
56
|
+
0: "0",
|
|
57
|
+
0.5: "0.125rem",
|
|
58
|
+
// 2px
|
|
59
|
+
1: "0.25rem",
|
|
60
|
+
// 4px
|
|
61
|
+
1.5: "0.375rem",
|
|
62
|
+
// 6px
|
|
63
|
+
2: "0.5rem",
|
|
64
|
+
// 8px
|
|
65
|
+
2.5: "0.625rem",
|
|
66
|
+
// 10px
|
|
67
|
+
3: "0.75rem",
|
|
68
|
+
// 12px
|
|
69
|
+
3.5: "0.875rem",
|
|
70
|
+
// 14px
|
|
71
|
+
4: "1rem",
|
|
72
|
+
// 16px
|
|
73
|
+
5: "1.25rem",
|
|
74
|
+
// 20px
|
|
75
|
+
6: "1.5rem",
|
|
76
|
+
// 24px
|
|
77
|
+
7: "1.75rem",
|
|
78
|
+
// 28px
|
|
79
|
+
8: "2rem",
|
|
80
|
+
// 32px
|
|
81
|
+
9: "2.25rem",
|
|
82
|
+
// 36px
|
|
83
|
+
10: "2.5rem",
|
|
84
|
+
// 40px
|
|
85
|
+
12: "3rem",
|
|
86
|
+
// 48px
|
|
87
|
+
14: "3.5rem",
|
|
88
|
+
// 56px
|
|
89
|
+
16: "4rem",
|
|
90
|
+
// 64px
|
|
91
|
+
20: "5rem",
|
|
92
|
+
// 80px
|
|
93
|
+
24: "6rem",
|
|
94
|
+
// 96px
|
|
95
|
+
32: "8rem",
|
|
96
|
+
// 128px
|
|
97
|
+
40: "10rem",
|
|
98
|
+
// 160px
|
|
99
|
+
48: "12rem",
|
|
100
|
+
// 192px
|
|
101
|
+
56: "14rem",
|
|
102
|
+
// 224px
|
|
103
|
+
64: "16rem"
|
|
104
|
+
// 256px
|
|
105
|
+
}, a = {
|
|
106
|
+
none: "0",
|
|
107
|
+
sm: "calc(var(--radius) - 4px)",
|
|
108
|
+
md: "calc(var(--radius) - 2px)",
|
|
109
|
+
lg: "var(--radius)",
|
|
110
|
+
xl: "calc(var(--radius) + 4px)",
|
|
111
|
+
"2xl": "calc(var(--radius) + 8px)",
|
|
112
|
+
full: "9999px"
|
|
113
|
+
}, n = {
|
|
114
|
+
none: 0,
|
|
115
|
+
sm: 4,
|
|
116
|
+
// 8 - 4
|
|
117
|
+
md: 6,
|
|
118
|
+
// 8 - 2
|
|
119
|
+
lg: 8,
|
|
120
|
+
// base
|
|
121
|
+
xl: 12,
|
|
122
|
+
// 8 + 4
|
|
123
|
+
"2xl": 16,
|
|
124
|
+
// 8 + 8
|
|
125
|
+
full: 9999
|
|
126
|
+
}, i = {
|
|
127
|
+
fontFamily: {
|
|
128
|
+
sans: 'Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif',
|
|
129
|
+
mono: 'ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace'
|
|
58
130
|
},
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
//
|
|
62
|
-
|
|
63
|
-
//
|
|
64
|
-
|
|
65
|
-
//
|
|
66
|
-
|
|
67
|
-
//
|
|
68
|
-
|
|
69
|
-
//
|
|
70
|
-
|
|
71
|
-
//
|
|
72
|
-
|
|
73
|
-
//
|
|
74
|
-
|
|
75
|
-
//
|
|
76
|
-
|
|
77
|
-
//
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
const Ds = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsx(ma, { className: "flex", children: /* @__PURE__ */ s.jsxs(
|
|
106
|
-
se,
|
|
107
|
-
{
|
|
108
|
-
ref: n,
|
|
109
|
-
className: o(
|
|
110
|
-
"flex flex-1 items-center justify-between py-4 text-sm font-medium transition-all hover:underline text-left [&[data-state=open]>svg]:rotate-180",
|
|
111
|
-
e
|
|
112
|
-
),
|
|
113
|
-
...a,
|
|
114
|
-
children: [
|
|
115
|
-
t,
|
|
116
|
-
/* @__PURE__ */ s.jsx($, { className: "h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" })
|
|
117
|
-
]
|
|
118
|
-
}
|
|
119
|
-
) }));
|
|
120
|
-
Ds.displayName = se.displayName;
|
|
121
|
-
const Is = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
122
|
-
oe,
|
|
123
|
-
{
|
|
124
|
-
ref: n,
|
|
125
|
-
className: "overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
|
|
126
|
-
...a,
|
|
127
|
-
children: /* @__PURE__ */ s.jsx("div", { className: o("pb-4 pt-0", e), children: t })
|
|
128
|
-
}
|
|
129
|
-
));
|
|
130
|
-
Is.displayName = oe.displayName;
|
|
131
|
-
const zs = w(
|
|
132
|
-
"relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7",
|
|
133
|
-
{
|
|
134
|
-
variants: {
|
|
135
|
-
variant: {
|
|
136
|
-
default: "bg-background text-foreground",
|
|
137
|
-
destructive: "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive"
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
defaultVariants: {
|
|
141
|
-
variant: "default"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
), Ms = r.forwardRef(({ className: e, variant: t, ...a }, n) => /* @__PURE__ */ s.jsx("div", { ref: n, role: "alert", className: o(zs({ variant: t }), e), ...a }));
|
|
145
|
-
Ms.displayName = "Alert";
|
|
146
|
-
const Ps = r.forwardRef(
|
|
147
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("h5", { ref: a, className: o("mb-1 font-medium leading-none tracking-tight", e), ...t })
|
|
148
|
-
);
|
|
149
|
-
Ps.displayName = "AlertTitle";
|
|
150
|
-
const As = r.forwardRef(
|
|
151
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("text-sm [&_p]:leading-relaxed", e), ...t })
|
|
152
|
-
);
|
|
153
|
-
As.displayName = "AlertDescription";
|
|
154
|
-
const T = w(
|
|
155
|
-
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
156
|
-
{
|
|
157
|
-
variants: {
|
|
158
|
-
variant: {
|
|
159
|
-
default: "bg-primary text-primary-foreground shadow hover:bg-primary/90",
|
|
160
|
-
destructive: "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
|
|
161
|
-
outline: "border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
|
|
162
|
-
secondary: "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
|
|
163
|
-
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
164
|
-
link: "text-primary underline-offset-4 hover:underline"
|
|
165
|
-
},
|
|
166
|
-
size: {
|
|
167
|
-
default: "h-9 px-4 py-2",
|
|
168
|
-
sm: "h-8 rounded-md px-3 text-xs",
|
|
169
|
-
lg: "h-10 rounded-md px-8",
|
|
170
|
-
icon: "h-9 w-9"
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
defaultVariants: {
|
|
174
|
-
variant: "default",
|
|
175
|
-
size: "default"
|
|
176
|
-
}
|
|
177
|
-
}
|
|
178
|
-
), k = r.forwardRef(
|
|
179
|
-
({ className: e, variant: t, size: a, asChild: n = !1, ...d }, i) => {
|
|
180
|
-
const m = n ? X : "button";
|
|
181
|
-
return /* @__PURE__ */ s.jsx(m, { className: o(T({ variant: t, size: a, className: e })), ref: i, ...d });
|
|
182
|
-
}
|
|
183
|
-
);
|
|
184
|
-
k.displayName = "Button";
|
|
185
|
-
const zn = pa, Mn = xa, Fs = fa, Lt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
186
|
-
re,
|
|
187
|
-
{
|
|
188
|
-
className: o(
|
|
189
|
-
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
190
|
-
e
|
|
191
|
-
),
|
|
192
|
-
...t,
|
|
193
|
-
ref: a
|
|
194
|
-
}
|
|
195
|
-
));
|
|
196
|
-
Lt.displayName = re.displayName;
|
|
197
|
-
const Ls = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsxs(Fs, { children: [
|
|
198
|
-
/* @__PURE__ */ s.jsx(Lt, {}),
|
|
199
|
-
/* @__PURE__ */ s.jsx(
|
|
200
|
-
ne,
|
|
201
|
-
{
|
|
202
|
-
ref: a,
|
|
203
|
-
className: o(
|
|
204
|
-
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
205
|
-
e
|
|
206
|
-
),
|
|
207
|
-
...t
|
|
208
|
-
}
|
|
209
|
-
)
|
|
210
|
-
] }));
|
|
211
|
-
Ls.displayName = ne.displayName;
|
|
212
|
-
const Es = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col space-y-2 text-center sm:text-left", e), ...t });
|
|
213
|
-
Es.displayName = "AlertDialogHeader";
|
|
214
|
-
const Os = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", e), ...t });
|
|
215
|
-
Os.displayName = "AlertDialogFooter";
|
|
216
|
-
const Bs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(de, { ref: a, className: o("text-lg font-semibold", e), ...t }));
|
|
217
|
-
Bs.displayName = de.displayName;
|
|
218
|
-
const Gs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(ie, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
|
|
219
|
-
Gs.displayName = ie.displayName;
|
|
220
|
-
const Vs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(le, { ref: a, className: o(T(), e), ...t }));
|
|
221
|
-
Vs.displayName = le.displayName;
|
|
222
|
-
const Hs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
223
|
-
ce,
|
|
224
|
-
{
|
|
225
|
-
ref: a,
|
|
226
|
-
className: o(T({ variant: "outline" }), "mt-2 sm:mt-0", e),
|
|
227
|
-
...t
|
|
228
|
-
}
|
|
229
|
-
));
|
|
230
|
-
Hs.displayName = ce.displayName;
|
|
231
|
-
const Pn = ga, Us = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
232
|
-
me,
|
|
233
|
-
{
|
|
234
|
-
ref: a,
|
|
235
|
-
className: o("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full", e),
|
|
236
|
-
...t
|
|
237
|
-
}
|
|
238
|
-
));
|
|
239
|
-
Us.displayName = me.displayName;
|
|
240
|
-
const qs = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(ue, { ref: a, className: o("aspect-square h-full w-full", e), ...t }));
|
|
241
|
-
qs.displayName = ue.displayName;
|
|
242
|
-
const Ks = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
243
|
-
fe,
|
|
244
|
-
{
|
|
245
|
-
ref: a,
|
|
246
|
-
className: o("flex h-full w-full items-center justify-center rounded-full bg-muted", e),
|
|
247
|
-
...t
|
|
248
|
-
}
|
|
249
|
-
));
|
|
250
|
-
Ks.displayName = fe.displayName;
|
|
251
|
-
const Ws = w(
|
|
252
|
-
"inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
|
253
|
-
{
|
|
254
|
-
variants: {
|
|
255
|
-
variant: {
|
|
256
|
-
default: "border-transparent bg-primary text-primary-foreground shadow hover:bg-primary/80",
|
|
257
|
-
secondary: "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
|
258
|
-
destructive: "border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80",
|
|
259
|
-
outline: "text-foreground"
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
defaultVariants: {
|
|
263
|
-
variant: "default"
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
);
|
|
267
|
-
function An({ className: e, variant: t, ...a }) {
|
|
268
|
-
return /* @__PURE__ */ s.jsx("div", { className: o(Ws({ variant: t }), e), ...a });
|
|
269
|
-
}
|
|
270
|
-
const Xs = r.forwardRef(({ ...e }, t) => /* @__PURE__ */ s.jsx("nav", { ref: t, "aria-label": "breadcrumb", ...e }));
|
|
271
|
-
Xs.displayName = "Breadcrumb";
|
|
272
|
-
const Qs = r.forwardRef(
|
|
273
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
274
|
-
"ol",
|
|
275
|
-
{
|
|
276
|
-
ref: a,
|
|
277
|
-
className: o(
|
|
278
|
-
"flex flex-wrap items-center gap-1.5 break-words text-sm text-muted-foreground sm:gap-2.5",
|
|
279
|
-
e
|
|
280
|
-
),
|
|
281
|
-
...t
|
|
282
|
-
}
|
|
283
|
-
)
|
|
284
|
-
);
|
|
285
|
-
Qs.displayName = "BreadcrumbList";
|
|
286
|
-
const Ys = r.forwardRef(
|
|
287
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("li", { ref: a, className: o("inline-flex items-center gap-1.5", e), ...t })
|
|
288
|
-
);
|
|
289
|
-
Ys.displayName = "BreadcrumbItem";
|
|
290
|
-
const Js = r.forwardRef(({ asChild: e, className: t, ...a }, n) => {
|
|
291
|
-
const d = e ? X : "a";
|
|
292
|
-
return /* @__PURE__ */ s.jsx(d, { ref: n, className: o("transition-colors hover:text-foreground", t), ...a });
|
|
293
|
-
});
|
|
294
|
-
Js.displayName = "BreadcrumbLink";
|
|
295
|
-
const Zs = r.forwardRef(
|
|
296
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
297
|
-
"span",
|
|
298
|
-
{
|
|
299
|
-
ref: a,
|
|
300
|
-
role: "link",
|
|
301
|
-
"aria-disabled": "true",
|
|
302
|
-
"aria-current": "page",
|
|
303
|
-
className: o("font-normal text-foreground", e),
|
|
304
|
-
...t
|
|
305
|
-
}
|
|
306
|
-
)
|
|
307
|
-
);
|
|
308
|
-
Zs.displayName = "BreadcrumbPage";
|
|
309
|
-
const eo = ({ children: e, className: t, ...a }) => /* @__PURE__ */ s.jsx("li", { role: "presentation", "aria-hidden": "true", className: o("[&>svg]:w-3.5 [&>svg]:h-3.5", t), ...a, children: e ?? /* @__PURE__ */ s.jsx(S, {}) });
|
|
310
|
-
eo.displayName = "BreadcrumbSeparator";
|
|
311
|
-
const to = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs(
|
|
312
|
-
"span",
|
|
313
|
-
{
|
|
314
|
-
role: "presentation",
|
|
315
|
-
"aria-hidden": "true",
|
|
316
|
-
className: o("flex h-9 w-9 items-center justify-center", e),
|
|
317
|
-
...t,
|
|
318
|
-
children: [
|
|
319
|
-
/* @__PURE__ */ s.jsx(pe, { className: "h-4 w-4" }),
|
|
320
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "More" })
|
|
321
|
-
]
|
|
322
|
-
}
|
|
323
|
-
);
|
|
324
|
-
to.displayName = "BreadcrumbElipssis";
|
|
325
|
-
function Fn({
|
|
326
|
-
className: e,
|
|
327
|
-
classNames: t,
|
|
328
|
-
showOutsideDays: a = !0,
|
|
329
|
-
captionLayout: n = "label",
|
|
330
|
-
buttonVariant: d = "ghost",
|
|
331
|
-
formatters: i,
|
|
332
|
-
components: m,
|
|
333
|
-
...u
|
|
334
|
-
}) {
|
|
335
|
-
const c = xe();
|
|
336
|
-
return /* @__PURE__ */ s.jsx(
|
|
337
|
-
ba,
|
|
338
|
-
{
|
|
339
|
-
showOutsideDays: a,
|
|
340
|
-
className: o(
|
|
341
|
-
"bg-background group/calendar p-3 [--cell-size:2.5rem] [[data-slot=card-content]_&]:bg-transparent [[data-slot=popover-content]_&]:bg-transparent",
|
|
342
|
-
String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`,
|
|
343
|
-
String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
|
|
344
|
-
"relative",
|
|
345
|
-
e
|
|
346
|
-
),
|
|
347
|
-
captionLayout: n,
|
|
348
|
-
formatters: {
|
|
349
|
-
formatMonthDropdown: (l) => l.toLocaleString("default", { month: "short" }),
|
|
350
|
-
...i
|
|
351
|
-
},
|
|
352
|
-
classNames: {
|
|
353
|
-
root: o("w-fit", c.root),
|
|
354
|
-
months: o("relative flex flex-col gap-4 md:flex-row", c.months),
|
|
355
|
-
month: o("flex w-full flex-col gap-4", c.month),
|
|
356
|
-
nav: o(
|
|
357
|
-
"absolute inset-x-0 top-2 flex items-center justify-between pointer-events-none px-2",
|
|
358
|
-
c.nav
|
|
359
|
-
),
|
|
360
|
-
button_previous: o(
|
|
361
|
-
T({ variant: d }),
|
|
362
|
-
"h-7 w-7 select-none p-0 aria-disabled:opacity-50 pointer-events-auto",
|
|
363
|
-
c.button_previous
|
|
364
|
-
),
|
|
365
|
-
button_next: o(
|
|
366
|
-
T({ variant: d }),
|
|
367
|
-
"h-7 w-7 select-none p-0 aria-disabled:opacity-50 pointer-events-auto",
|
|
368
|
-
c.button_next
|
|
369
|
-
),
|
|
370
|
-
month_caption: o(
|
|
371
|
-
"flex h-[--cell-size] w-full items-center justify-center text-sm font-medium",
|
|
372
|
-
c.month_caption
|
|
373
|
-
),
|
|
374
|
-
dropdowns: o(
|
|
375
|
-
"flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm font-medium",
|
|
376
|
-
c.dropdowns
|
|
377
|
-
),
|
|
378
|
-
dropdown_root: o(
|
|
379
|
-
"has-focus:border-ring border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] relative rounded-md border",
|
|
380
|
-
c.dropdown_root
|
|
381
|
-
),
|
|
382
|
-
dropdown: o("bg-popover absolute inset-0 opacity-0", c.dropdown),
|
|
383
|
-
caption_label: o(
|
|
384
|
-
"select-none font-medium",
|
|
385
|
-
n === "label" ? "text-sm" : "[&>svg]:text-muted-foreground flex h-8 items-center gap-1 rounded-md pl-2 pr-1 text-sm [&>svg]:size-3.5",
|
|
386
|
-
c.caption_label
|
|
387
|
-
),
|
|
388
|
-
table: "w-full border-collapse grow",
|
|
389
|
-
weekdays: o("flex", c.weekdays),
|
|
390
|
-
weekday: o(
|
|
391
|
-
"text-muted-foreground pt-1 flex-1 select-none rounded-md text-[0.8rem] font-normal uppercase",
|
|
392
|
-
c.weekday
|
|
393
|
-
),
|
|
394
|
-
week: o("flex w-full mt-2", c.week),
|
|
395
|
-
week_number_header: o("w-[--cell-size] select-none", c.week_number_header),
|
|
396
|
-
week_number: o("text-muted-foreground select-none text-[0.8rem]", c.week_number),
|
|
397
|
-
day: o(
|
|
398
|
-
"group/day relative flex aspect-square h-10 w-10 select-none items-center justify-center p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md",
|
|
399
|
-
c.day
|
|
400
|
-
),
|
|
401
|
-
range_start: o("bg-accent rounded-l-md", c.range_start),
|
|
402
|
-
range_middle: o("rounded-none", c.range_middle),
|
|
403
|
-
range_end: o("bg-accent rounded-r-md", c.range_end),
|
|
404
|
-
today: o(
|
|
405
|
-
"bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none",
|
|
406
|
-
c.today
|
|
407
|
-
),
|
|
408
|
-
outside: o("text-muted-foreground aria-selected:text-muted-foreground", c.outside),
|
|
409
|
-
disabled: o("text-muted-foreground opacity-50", c.disabled),
|
|
410
|
-
hidden: o("invisible", c.hidden),
|
|
411
|
-
...t
|
|
412
|
-
},
|
|
413
|
-
components: {
|
|
414
|
-
Root: ({ className: l, rootRef: p, ...x }) => /* @__PURE__ */ s.jsx("div", { "data-slot": "calendar", ref: p, className: o(l), ...x }),
|
|
415
|
-
Chevron: ({ className: l, orientation: p, ...x }) => p === "left" ? /* @__PURE__ */ s.jsx(ge, { className: o("size-4", l), ...x }) : p === "right" ? /* @__PURE__ */ s.jsx(S, { className: o("size-4", l), ...x }) : /* @__PURE__ */ s.jsx($, { className: o("size-4", l), ...x }),
|
|
416
|
-
DayButton: ao,
|
|
417
|
-
WeekNumber: ({ children: l, ...p }) => /* @__PURE__ */ s.jsx("td", { ...p, children: /* @__PURE__ */ s.jsx("div", { className: "flex size-[--cell-size] items-center justify-center text-center", children: l }) }),
|
|
418
|
-
...m
|
|
419
|
-
},
|
|
420
|
-
...u
|
|
421
|
-
}
|
|
422
|
-
);
|
|
423
|
-
}
|
|
424
|
-
function ao({ className: e, day: t, modifiers: a, ...n }) {
|
|
425
|
-
const d = xe(), i = r.useRef(null);
|
|
426
|
-
return r.useEffect(() => {
|
|
427
|
-
a.focused && i.current?.focus();
|
|
428
|
-
}, [a.focused]), /* @__PURE__ */ s.jsx(
|
|
429
|
-
k,
|
|
430
|
-
{
|
|
431
|
-
ref: i,
|
|
432
|
-
variant: "ghost",
|
|
433
|
-
size: "icon",
|
|
434
|
-
"data-day": t.date.toLocaleDateString(),
|
|
435
|
-
"data-selected-single": a.selected && !a.range_start && !a.range_end && !a.range_middle,
|
|
436
|
-
"data-range-start": a.range_start,
|
|
437
|
-
"data-range-end": a.range_end,
|
|
438
|
-
"data-range-middle": a.range_middle,
|
|
439
|
-
className: o(
|
|
440
|
-
"data-[selected-single=true]:bg-primary data-[selected-single=true]:text-primary-foreground data-[range-middle=true]:bg-accent data-[range-middle=true]:text-accent-foreground data-[range-start=true]:bg-primary data-[range-start=true]:text-primary-foreground data-[range-end=true]:bg-primary data-[range-end=true]:text-primary-foreground group-data-[focused=true]/day:border-ring group-data-[focused=true]/day:ring-ring/50 flex aspect-square h-full w-full min-w-[--cell-size] items-center justify-center font-normal leading-none data-[range-end=true]:rounded-md data-[range-middle=true]:rounded-none data-[range-start=true]:rounded-md group-data-[focused=true]/day:relative group-data-[focused=true]/day:z-10 group-data-[focused=true]/day:ring-[3px] [&>span]:text-xs [&>span]:opacity-70",
|
|
441
|
-
d.day,
|
|
442
|
-
e
|
|
443
|
-
),
|
|
444
|
-
...n
|
|
445
|
-
}
|
|
446
|
-
);
|
|
447
|
-
}
|
|
448
|
-
const so = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("rounded-xl border bg-card text-card-foreground shadow", e), ...t }));
|
|
449
|
-
so.displayName = "Card";
|
|
450
|
-
const oo = r.forwardRef(
|
|
451
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("flex flex-col space-y-1.5 p-6", e), ...t })
|
|
452
|
-
);
|
|
453
|
-
oo.displayName = "CardHeader";
|
|
454
|
-
const ro = r.forwardRef(
|
|
455
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("font-semibold leading-none tracking-tight", e), ...t })
|
|
456
|
-
);
|
|
457
|
-
ro.displayName = "CardTitle";
|
|
458
|
-
const no = r.forwardRef(
|
|
459
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("text-sm text-muted-foreground", e), ...t })
|
|
460
|
-
);
|
|
461
|
-
no.displayName = "CardDescription";
|
|
462
|
-
const io = r.forwardRef(
|
|
463
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("p-6 pt-0", e), ...t })
|
|
464
|
-
);
|
|
465
|
-
io.displayName = "CardContent";
|
|
466
|
-
const lo = r.forwardRef(
|
|
467
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { ref: a, className: o("flex items-center p-6 pt-0", e), ...t })
|
|
468
|
-
);
|
|
469
|
-
lo.displayName = "CardFooter";
|
|
470
|
-
const Et = r.createContext(null);
|
|
471
|
-
function G() {
|
|
472
|
-
const e = r.useContext(Et);
|
|
473
|
-
if (!e)
|
|
474
|
-
throw new Error("useCarousel must be used within a <Carousel />");
|
|
475
|
-
return e;
|
|
476
|
-
}
|
|
477
|
-
const co = r.forwardRef(
|
|
478
|
-
({ orientation: e = "horizontal", opts: t, setApi: a, plugins: n, className: d, children: i, ...m }, u) => {
|
|
479
|
-
const [c, l] = ha(
|
|
480
|
-
{
|
|
481
|
-
...t,
|
|
482
|
-
axis: e === "horizontal" ? "x" : "y"
|
|
483
|
-
},
|
|
484
|
-
n
|
|
485
|
-
), [p, x] = r.useState(!1), [y, C] = r.useState(!1), N = r.useCallback((b) => {
|
|
486
|
-
b && (x(b.canScrollPrev()), C(b.canScrollNext()));
|
|
487
|
-
}, []), R = r.useCallback(() => {
|
|
488
|
-
l?.scrollPrev();
|
|
489
|
-
}, [l]), v = r.useCallback(() => {
|
|
490
|
-
l?.scrollNext();
|
|
491
|
-
}, [l]), f = r.useCallback(
|
|
492
|
-
(b) => {
|
|
493
|
-
b.key === "ArrowLeft" ? (b.preventDefault(), R()) : b.key === "ArrowRight" && (b.preventDefault(), v());
|
|
494
|
-
},
|
|
495
|
-
[R, v]
|
|
496
|
-
);
|
|
497
|
-
return r.useEffect(() => {
|
|
498
|
-
!l || !a || a(l);
|
|
499
|
-
}, [l, a]), r.useEffect(() => {
|
|
500
|
-
if (l)
|
|
501
|
-
return N(l), l.on("reInit", N), l.on("select", N), () => {
|
|
502
|
-
l?.off("select", N);
|
|
503
|
-
};
|
|
504
|
-
}, [l, N]), /* @__PURE__ */ s.jsx(
|
|
505
|
-
Et.Provider,
|
|
506
|
-
{
|
|
507
|
-
value: {
|
|
508
|
-
carouselRef: c,
|
|
509
|
-
api: l,
|
|
510
|
-
opts: t,
|
|
511
|
-
orientation: e || (t?.axis === "y" ? "vertical" : "horizontal"),
|
|
512
|
-
scrollPrev: R,
|
|
513
|
-
scrollNext: v,
|
|
514
|
-
canScrollPrev: p,
|
|
515
|
-
canScrollNext: y
|
|
516
|
-
},
|
|
517
|
-
children: /* @__PURE__ */ s.jsx(
|
|
518
|
-
"div",
|
|
519
|
-
{
|
|
520
|
-
ref: u,
|
|
521
|
-
onKeyDownCapture: f,
|
|
522
|
-
className: o("relative", d),
|
|
523
|
-
role: "region",
|
|
524
|
-
"aria-roledescription": "carousel",
|
|
525
|
-
...m,
|
|
526
|
-
children: i
|
|
527
|
-
}
|
|
528
|
-
)
|
|
529
|
-
}
|
|
530
|
-
);
|
|
531
|
-
}
|
|
532
|
-
);
|
|
533
|
-
co.displayName = "Carousel";
|
|
534
|
-
const mo = r.forwardRef(
|
|
535
|
-
({ className: e, ...t }, a) => {
|
|
536
|
-
const { carouselRef: n, orientation: d } = G();
|
|
537
|
-
return /* @__PURE__ */ s.jsx("div", { ref: n, className: "overflow-hidden", children: /* @__PURE__ */ s.jsx(
|
|
538
|
-
"div",
|
|
539
|
-
{
|
|
540
|
-
ref: a,
|
|
541
|
-
className: o("flex", d === "horizontal" ? "-ml-4" : "-mt-4 flex-col", e),
|
|
542
|
-
...t
|
|
543
|
-
}
|
|
544
|
-
) });
|
|
545
|
-
}
|
|
546
|
-
);
|
|
547
|
-
mo.displayName = "CarouselContent";
|
|
548
|
-
const uo = r.forwardRef(
|
|
549
|
-
({ className: e, ...t }, a) => {
|
|
550
|
-
const { orientation: n } = G();
|
|
551
|
-
return /* @__PURE__ */ s.jsx(
|
|
552
|
-
"div",
|
|
553
|
-
{
|
|
554
|
-
ref: a,
|
|
555
|
-
role: "group",
|
|
556
|
-
"aria-roledescription": "slide",
|
|
557
|
-
className: o("min-w-0 shrink-0 grow-0 basis-full", n === "horizontal" ? "pl-4" : "pt-4", e),
|
|
558
|
-
...t
|
|
559
|
-
}
|
|
560
|
-
);
|
|
561
|
-
}
|
|
562
|
-
);
|
|
563
|
-
uo.displayName = "CarouselItem";
|
|
564
|
-
const fo = r.forwardRef(
|
|
565
|
-
({ className: e, variant: t = "outline", size: a = "icon", ...n }, d) => {
|
|
566
|
-
const { orientation: i, scrollPrev: m, canScrollPrev: u } = G();
|
|
567
|
-
return /* @__PURE__ */ s.jsxs(
|
|
568
|
-
k,
|
|
569
|
-
{
|
|
570
|
-
ref: d,
|
|
571
|
-
variant: t,
|
|
572
|
-
size: a,
|
|
573
|
-
className: o(
|
|
574
|
-
"absolute h-8 w-8 rounded-full",
|
|
575
|
-
i === "horizontal" ? "-left-12 top-1/2 -translate-y-1/2" : "-top-12 left-1/2 -translate-x-1/2 rotate-90",
|
|
576
|
-
e
|
|
577
|
-
),
|
|
578
|
-
disabled: !u,
|
|
579
|
-
onClick: m,
|
|
580
|
-
...n,
|
|
581
|
-
children: [
|
|
582
|
-
/* @__PURE__ */ s.jsx(Na, { className: "h-4 w-4" }),
|
|
583
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Previous slide" })
|
|
584
|
-
]
|
|
585
|
-
}
|
|
586
|
-
);
|
|
587
|
-
}
|
|
588
|
-
);
|
|
589
|
-
fo.displayName = "CarouselPrevious";
|
|
590
|
-
const po = r.forwardRef(
|
|
591
|
-
({ className: e, variant: t = "outline", size: a = "icon", ...n }, d) => {
|
|
592
|
-
const { orientation: i, scrollNext: m, canScrollNext: u } = G();
|
|
593
|
-
return /* @__PURE__ */ s.jsxs(
|
|
594
|
-
k,
|
|
595
|
-
{
|
|
596
|
-
ref: d,
|
|
597
|
-
variant: t,
|
|
598
|
-
size: a,
|
|
599
|
-
className: o(
|
|
600
|
-
"absolute h-8 w-8 rounded-full",
|
|
601
|
-
i === "horizontal" ? "-right-12 top-1/2 -translate-y-1/2" : "-bottom-12 left-1/2 -translate-x-1/2 rotate-90",
|
|
602
|
-
e
|
|
603
|
-
),
|
|
604
|
-
disabled: !u,
|
|
605
|
-
onClick: m,
|
|
606
|
-
...n,
|
|
607
|
-
children: [
|
|
608
|
-
/* @__PURE__ */ s.jsx(ya, { className: "h-4 w-4" }),
|
|
609
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Next slide" })
|
|
610
|
-
]
|
|
611
|
-
}
|
|
612
|
-
);
|
|
613
|
-
}
|
|
614
|
-
);
|
|
615
|
-
po.displayName = "CarouselNext";
|
|
616
|
-
const xo = { light: "", dark: ".dark" }, Ot = r.createContext(null);
|
|
617
|
-
function Bt() {
|
|
618
|
-
const e = r.useContext(Ot);
|
|
619
|
-
if (!e)
|
|
620
|
-
throw new Error("useChart must be used within a <ChartContainer />");
|
|
621
|
-
return e;
|
|
622
|
-
}
|
|
623
|
-
const go = r.forwardRef(({ id: e, className: t, children: a, config: n, ...d }, i) => {
|
|
624
|
-
const m = r.useId(), u = `chart-${e || m.replace(/:/g, "")}`;
|
|
625
|
-
return /* @__PURE__ */ s.jsx(Ot.Provider, { value: { config: n }, children: /* @__PURE__ */ s.jsxs(
|
|
626
|
-
"div",
|
|
627
|
-
{
|
|
628
|
-
"data-chart": u,
|
|
629
|
-
ref: i,
|
|
630
|
-
className: o(
|
|
631
|
-
"flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",
|
|
632
|
-
t
|
|
633
|
-
),
|
|
634
|
-
...d,
|
|
635
|
-
children: [
|
|
636
|
-
/* @__PURE__ */ s.jsx(bo, { id: u, config: n }),
|
|
637
|
-
/* @__PURE__ */ s.jsx(va, { children: a })
|
|
638
|
-
]
|
|
639
|
-
}
|
|
640
|
-
) });
|
|
641
|
-
});
|
|
642
|
-
go.displayName = "Chart";
|
|
643
|
-
const bo = ({ id: e, config: t }) => {
|
|
644
|
-
const a = Object.entries(t).filter(([, n]) => n.theme || n.color);
|
|
645
|
-
return a.length ? /* @__PURE__ */ s.jsx(
|
|
646
|
-
"style",
|
|
647
|
-
{
|
|
648
|
-
dangerouslySetInnerHTML: {
|
|
649
|
-
__html: Object.entries(xo).map(
|
|
650
|
-
([n, d]) => `
|
|
651
|
-
${d} [data-chart=${e}] {
|
|
652
|
-
${a.map(([i, m]) => {
|
|
653
|
-
const u = m.theme?.[n] || m.color;
|
|
654
|
-
return u ? ` --color-${i}: ${u};` : null;
|
|
655
|
-
}).join(`
|
|
656
|
-
`)}
|
|
657
|
-
}
|
|
658
|
-
`
|
|
659
|
-
).join(`
|
|
660
|
-
`)
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
) : null;
|
|
664
|
-
}, Ln = ja, ho = r.forwardRef(
|
|
665
|
-
({
|
|
666
|
-
active: e,
|
|
667
|
-
payload: t,
|
|
668
|
-
className: a,
|
|
669
|
-
indicator: n = "dot",
|
|
670
|
-
hideLabel: d = !1,
|
|
671
|
-
hideIndicator: i = !1,
|
|
672
|
-
label: m,
|
|
673
|
-
labelFormatter: u,
|
|
674
|
-
labelClassName: c,
|
|
675
|
-
formatter: l,
|
|
676
|
-
color: p,
|
|
677
|
-
nameKey: x,
|
|
678
|
-
labelKey: y
|
|
679
|
-
}, C) => {
|
|
680
|
-
const { config: N } = Bt(), R = r.useMemo(() => {
|
|
681
|
-
if (d || !t?.length)
|
|
682
|
-
return null;
|
|
683
|
-
const [f] = t, b = `${y || f?.dataKey || f?.name || "value"}`, H = W(N, f, b), j = !y && typeof m == "string" ? N[m]?.label || m : H?.label;
|
|
684
|
-
return u ? /* @__PURE__ */ s.jsx("div", { className: o("font-medium", c), children: u(j, t) }) : j ? /* @__PURE__ */ s.jsx("div", { className: o("font-medium", c), children: j }) : null;
|
|
685
|
-
}, [m, u, t, d, c, N, y]);
|
|
686
|
-
if (!e || !t?.length)
|
|
687
|
-
return null;
|
|
688
|
-
const v = t.length === 1 && n !== "dot";
|
|
689
|
-
return /* @__PURE__ */ s.jsxs(
|
|
690
|
-
"div",
|
|
691
|
-
{
|
|
692
|
-
ref: C,
|
|
693
|
-
className: o(
|
|
694
|
-
"grid min-w-[8rem] items-start gap-1.5 rounded-lg border border-border/50 bg-background px-2.5 py-1.5 text-xs shadow-xl",
|
|
695
|
-
a
|
|
696
|
-
),
|
|
697
|
-
children: [
|
|
698
|
-
v ? null : R,
|
|
699
|
-
/* @__PURE__ */ s.jsx("div", { className: "grid gap-1.5", children: t.filter((f) => f.type !== "none").map((f, b) => {
|
|
700
|
-
const H = `${x || f.name || f.dataKey || "value"}`, j = W(N, f, H), J = p || f.payload.fill || f.color;
|
|
701
|
-
return /* @__PURE__ */ s.jsx(
|
|
702
|
-
"div",
|
|
703
|
-
{
|
|
704
|
-
className: o(
|
|
705
|
-
"flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground",
|
|
706
|
-
n === "dot" && "items-center"
|
|
707
|
-
),
|
|
708
|
-
children: l && f?.value !== void 0 && f.name ? l(f.value, f.name, f, b, f.payload) : /* @__PURE__ */ s.jsxs(s.Fragment, { children: [
|
|
709
|
-
j?.icon ? /* @__PURE__ */ s.jsx(j.icon, {}) : !i && /* @__PURE__ */ s.jsx(
|
|
710
|
-
"div",
|
|
711
|
-
{
|
|
712
|
-
className: o("shrink-0 rounded-[2px] border-[--color-border] bg-[--color-bg]", {
|
|
713
|
-
"h-2.5 w-2.5": n === "dot",
|
|
714
|
-
"w-1": n === "line",
|
|
715
|
-
"w-0 border-[1.5px] border-dashed bg-transparent": n === "dashed",
|
|
716
|
-
"my-0.5": v && n === "dashed"
|
|
717
|
-
}),
|
|
718
|
-
style: {
|
|
719
|
-
"--color-bg": J,
|
|
720
|
-
"--color-border": J
|
|
721
|
-
}
|
|
722
|
-
}
|
|
723
|
-
),
|
|
724
|
-
/* @__PURE__ */ s.jsxs(
|
|
725
|
-
"div",
|
|
726
|
-
{
|
|
727
|
-
className: o(
|
|
728
|
-
"flex flex-1 justify-between leading-none",
|
|
729
|
-
v ? "items-end" : "items-center"
|
|
730
|
-
),
|
|
731
|
-
children: [
|
|
732
|
-
/* @__PURE__ */ s.jsxs("div", { className: "grid gap-1.5", children: [
|
|
733
|
-
v ? R : null,
|
|
734
|
-
/* @__PURE__ */ s.jsx("span", { className: "text-muted-foreground", children: j?.label || f.name })
|
|
735
|
-
] }),
|
|
736
|
-
f.value && /* @__PURE__ */ s.jsx("span", { className: "font-mono font-medium tabular-nums text-foreground", children: f.value.toLocaleString() })
|
|
737
|
-
]
|
|
738
|
-
}
|
|
739
|
-
)
|
|
740
|
-
] })
|
|
741
|
-
},
|
|
742
|
-
f.dataKey
|
|
743
|
-
);
|
|
744
|
-
}) })
|
|
745
|
-
]
|
|
746
|
-
}
|
|
747
|
-
);
|
|
748
|
-
}
|
|
749
|
-
);
|
|
750
|
-
ho.displayName = "ChartTooltip";
|
|
751
|
-
const En = wa, No = r.forwardRef(({ className: e, hideIcon: t = !1, payload: a, verticalAlign: n = "bottom", nameKey: d }, i) => {
|
|
752
|
-
const { config: m } = Bt();
|
|
753
|
-
return a?.length ? /* @__PURE__ */ s.jsx(
|
|
754
|
-
"div",
|
|
755
|
-
{
|
|
756
|
-
ref: i,
|
|
757
|
-
className: o("flex items-center justify-center gap-4", n === "top" ? "pb-3" : "pt-3", e),
|
|
758
|
-
children: a.filter((u) => u.type !== "none").map((u) => {
|
|
759
|
-
const c = `${d || u.dataKey || "value"}`, l = W(m, u, c);
|
|
760
|
-
return /* @__PURE__ */ s.jsxs(
|
|
761
|
-
"div",
|
|
762
|
-
{
|
|
763
|
-
className: o("flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"),
|
|
764
|
-
children: [
|
|
765
|
-
l?.icon && !t ? /* @__PURE__ */ s.jsx(l.icon, {}) : /* @__PURE__ */ s.jsx(
|
|
766
|
-
"div",
|
|
767
|
-
{
|
|
768
|
-
className: "h-2 w-2 shrink-0 rounded-[2px]",
|
|
769
|
-
style: {
|
|
770
|
-
backgroundColor: u.color
|
|
771
|
-
}
|
|
772
|
-
}
|
|
773
|
-
),
|
|
774
|
-
l?.label
|
|
775
|
-
]
|
|
776
|
-
},
|
|
777
|
-
u.value
|
|
778
|
-
);
|
|
779
|
-
})
|
|
780
|
-
}
|
|
781
|
-
) : null;
|
|
782
|
-
});
|
|
783
|
-
No.displayName = "ChartLegend";
|
|
784
|
-
function W(e, t, a) {
|
|
785
|
-
if (typeof t != "object" || t === null)
|
|
786
|
-
return;
|
|
787
|
-
const n = "payload" in t && typeof t.payload == "object" && t.payload !== null ? t.payload : void 0;
|
|
788
|
-
let d = a;
|
|
789
|
-
return a in t && typeof t[a] == "string" ? d = t[a] : n && a in n && typeof n[a] == "string" && (d = n[a]), d in e ? e[d] : e[a];
|
|
790
|
-
}
|
|
791
|
-
const yo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
792
|
-
be,
|
|
793
|
-
{
|
|
794
|
-
ref: a,
|
|
795
|
-
className: o(
|
|
796
|
-
"grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-primary shadow focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
|
|
797
|
-
e
|
|
798
|
-
),
|
|
799
|
-
...t,
|
|
800
|
-
children: /* @__PURE__ */ s.jsx(Ca, { className: o("grid place-content-center text-current"), children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) })
|
|
801
|
-
}
|
|
802
|
-
));
|
|
803
|
-
yo.displayName = be.displayName;
|
|
804
|
-
const On = Ra, Bn = ka, Gn = Ta, vo = Ne, Vn = ye, wo = he, Hn = L, Gt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
805
|
-
A,
|
|
806
|
-
{
|
|
807
|
-
ref: a,
|
|
808
|
-
className: o(
|
|
809
|
-
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
810
|
-
e
|
|
811
|
-
),
|
|
812
|
-
...t
|
|
813
|
-
}
|
|
814
|
-
));
|
|
815
|
-
Gt.displayName = A.displayName;
|
|
816
|
-
const Vt = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(wo, { children: [
|
|
817
|
-
/* @__PURE__ */ s.jsx(Gt, {}),
|
|
818
|
-
/* @__PURE__ */ s.jsxs(
|
|
819
|
-
F,
|
|
820
|
-
{
|
|
821
|
-
ref: n,
|
|
822
|
-
className: o(
|
|
823
|
-
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
824
|
-
e
|
|
825
|
-
),
|
|
826
|
-
...a,
|
|
827
|
-
children: [
|
|
828
|
-
t,
|
|
829
|
-
/* @__PURE__ */ s.jsxs(L, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground", children: [
|
|
830
|
-
/* @__PURE__ */ s.jsx(Q, { className: "h-4 w-4" }),
|
|
831
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Close" })
|
|
832
|
-
] })
|
|
833
|
-
]
|
|
834
|
-
}
|
|
835
|
-
)
|
|
836
|
-
] }));
|
|
837
|
-
Vt.displayName = F.displayName;
|
|
838
|
-
const jo = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col space-y-1.5 text-center sm:text-left", e), ...t });
|
|
839
|
-
jo.displayName = "DialogHeader";
|
|
840
|
-
const Co = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", e), ...t });
|
|
841
|
-
Co.displayName = "DialogFooter";
|
|
842
|
-
const Ro = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
843
|
-
E,
|
|
844
|
-
{
|
|
845
|
-
ref: a,
|
|
846
|
-
className: o("text-lg font-semibold leading-none tracking-tight", e),
|
|
847
|
-
...t
|
|
848
|
-
}
|
|
849
|
-
));
|
|
850
|
-
Ro.displayName = E.displayName;
|
|
851
|
-
const To = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(O, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
|
|
852
|
-
To.displayName = O.displayName;
|
|
853
|
-
const Ht = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
854
|
-
g,
|
|
855
|
-
{
|
|
856
|
-
ref: a,
|
|
857
|
-
className: o(
|
|
858
|
-
"flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",
|
|
859
|
-
e
|
|
860
|
-
),
|
|
861
|
-
...t
|
|
862
|
-
}
|
|
863
|
-
));
|
|
864
|
-
Ht.displayName = g.displayName;
|
|
865
|
-
const Un = ({ children: e, ...t }) => /* @__PURE__ */ s.jsx(vo, { ...t, children: /* @__PURE__ */ s.jsx(Vt, { className: "overflow-hidden p-0", children: /* @__PURE__ */ s.jsx(Ht, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children: e }) }) }), ko = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsxs("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
|
|
866
|
-
/* @__PURE__ */ s.jsx(Sa, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
|
|
867
|
-
/* @__PURE__ */ s.jsx(
|
|
868
|
-
g.Input,
|
|
869
|
-
{
|
|
870
|
-
ref: a,
|
|
871
|
-
className: o(
|
|
872
|
-
"flex h-10 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50",
|
|
873
|
-
e
|
|
874
|
-
),
|
|
875
|
-
...t
|
|
876
|
-
}
|
|
877
|
-
)
|
|
878
|
-
] }));
|
|
879
|
-
ko.displayName = g.Input.displayName;
|
|
880
|
-
const So = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
881
|
-
g.List,
|
|
882
|
-
{
|
|
883
|
-
ref: a,
|
|
884
|
-
className: o("max-h-[300px] overflow-y-auto overflow-x-hidden", e),
|
|
885
|
-
...t
|
|
886
|
-
}
|
|
887
|
-
));
|
|
888
|
-
So.displayName = g.List.displayName;
|
|
889
|
-
const _o = r.forwardRef((e, t) => /* @__PURE__ */ s.jsx(g.Empty, { ref: t, className: "py-6 text-center text-sm", ...e }));
|
|
890
|
-
_o.displayName = g.Empty.displayName;
|
|
891
|
-
const $o = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
892
|
-
g.Group,
|
|
893
|
-
{
|
|
894
|
-
ref: a,
|
|
895
|
-
className: o(
|
|
896
|
-
"overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
|
|
897
|
-
e
|
|
898
|
-
),
|
|
899
|
-
...t
|
|
900
|
-
}
|
|
901
|
-
));
|
|
902
|
-
$o.displayName = g.Group.displayName;
|
|
903
|
-
const Do = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(g.Separator, { ref: a, className: o("-mx-1 h-px bg-border", e), ...t }));
|
|
904
|
-
Do.displayName = g.Separator.displayName;
|
|
905
|
-
const Io = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
906
|
-
g.Item,
|
|
907
|
-
{
|
|
908
|
-
ref: a,
|
|
909
|
-
className: o(
|
|
910
|
-
"relative flex cursor-default gap-2 select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
911
|
-
e
|
|
912
|
-
),
|
|
913
|
-
...t
|
|
914
|
-
}
|
|
915
|
-
));
|
|
916
|
-
Io.displayName = g.Item.displayName;
|
|
917
|
-
const zo = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest text-muted-foreground", e), ...t });
|
|
918
|
-
zo.displayName = "CommandShortcut";
|
|
919
|
-
const qn = _a, Kn = za, Wn = $a, Xn = je, Qn = Ia, Yn = Da, Mo = r.forwardRef(({ className: e, inset: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
|
|
920
|
-
ve,
|
|
921
|
-
{
|
|
922
|
-
ref: d,
|
|
923
|
-
className: o(
|
|
924
|
-
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
|
|
925
|
-
t && "pl-8",
|
|
926
|
-
e
|
|
927
|
-
),
|
|
928
|
-
...n,
|
|
929
|
-
children: [
|
|
930
|
-
a,
|
|
931
|
-
/* @__PURE__ */ s.jsx(S, { className: "ml-auto h-4 w-4" })
|
|
932
|
-
]
|
|
933
|
-
}
|
|
934
|
-
));
|
|
935
|
-
Mo.displayName = ve.displayName;
|
|
936
|
-
const Po = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
937
|
-
we,
|
|
938
|
-
{
|
|
939
|
-
ref: a,
|
|
940
|
-
className: o(
|
|
941
|
-
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",
|
|
942
|
-
e
|
|
943
|
-
),
|
|
944
|
-
...t
|
|
945
|
-
}
|
|
946
|
-
));
|
|
947
|
-
Po.displayName = we.displayName;
|
|
948
|
-
const Ao = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(je, { children: /* @__PURE__ */ s.jsx(
|
|
949
|
-
Ce,
|
|
950
|
-
{
|
|
951
|
-
ref: a,
|
|
952
|
-
className: o(
|
|
953
|
-
"z-50 max-h-[--radix-context-menu-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-context-menu-content-transform-origin]",
|
|
954
|
-
e
|
|
955
|
-
),
|
|
956
|
-
...t
|
|
957
|
-
}
|
|
958
|
-
) }));
|
|
959
|
-
Ao.displayName = Ce.displayName;
|
|
960
|
-
const Fo = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
961
|
-
Re,
|
|
962
|
-
{
|
|
963
|
-
ref: n,
|
|
964
|
-
className: o(
|
|
965
|
-
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
966
|
-
t && "pl-8",
|
|
967
|
-
e
|
|
968
|
-
),
|
|
969
|
-
...a
|
|
970
|
-
}
|
|
971
|
-
));
|
|
972
|
-
Fo.displayName = Re.displayName;
|
|
973
|
-
const Lo = r.forwardRef(({ className: e, children: t, checked: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
|
|
974
|
-
Te,
|
|
975
|
-
{
|
|
976
|
-
ref: d,
|
|
977
|
-
className: o(
|
|
978
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
979
|
-
e
|
|
980
|
-
),
|
|
981
|
-
checked: a,
|
|
982
|
-
...n,
|
|
983
|
-
children: [
|
|
984
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(ke, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
|
|
985
|
-
t
|
|
986
|
-
]
|
|
987
|
-
}
|
|
988
|
-
));
|
|
989
|
-
Lo.displayName = Te.displayName;
|
|
990
|
-
const Eo = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
991
|
-
Se,
|
|
992
|
-
{
|
|
993
|
-
ref: n,
|
|
994
|
-
className: o(
|
|
995
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
996
|
-
e
|
|
997
|
-
),
|
|
998
|
-
...a,
|
|
999
|
-
children: [
|
|
1000
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(ke, { children: /* @__PURE__ */ s.jsx(B, { className: "h-4 w-4 fill-current" }) }) }),
|
|
1001
|
-
t
|
|
1002
|
-
]
|
|
1003
|
-
}
|
|
1004
|
-
));
|
|
1005
|
-
Eo.displayName = Se.displayName;
|
|
1006
|
-
const Oo = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1007
|
-
_e,
|
|
1008
|
-
{
|
|
1009
|
-
ref: n,
|
|
1010
|
-
className: o("px-2 py-1.5 text-sm font-semibold text-foreground", t && "pl-8", e),
|
|
1011
|
-
...a
|
|
1012
|
-
}
|
|
1013
|
-
));
|
|
1014
|
-
Oo.displayName = _e.displayName;
|
|
1015
|
-
const Bo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx($e, { ref: a, className: o("-mx-1 my-1 h-px bg-border", e), ...t }));
|
|
1016
|
-
Bo.displayName = $e.displayName;
|
|
1017
|
-
const Go = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest text-muted-foreground", e), ...t });
|
|
1018
|
-
Go.displayName = "ContextMenuShortcut";
|
|
1019
|
-
const Vo = ({ shouldScaleBackground: e = !0, ...t }) => /* @__PURE__ */ s.jsx(h.Root, { shouldScaleBackground: e, ...t });
|
|
1020
|
-
Vo.displayName = "Drawer";
|
|
1021
|
-
const Jn = h.Trigger, Ho = h.Portal, Zn = h.Close, Ut = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(h.Overlay, { ref: a, className: o("fixed inset-0 z-50 bg-black/80", e), ...t }));
|
|
1022
|
-
Ut.displayName = h.Overlay.displayName;
|
|
1023
|
-
const Uo = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(Ho, { children: [
|
|
1024
|
-
/* @__PURE__ */ s.jsx(Ut, {}),
|
|
1025
|
-
/* @__PURE__ */ s.jsxs(
|
|
1026
|
-
h.Content,
|
|
1027
|
-
{
|
|
1028
|
-
ref: n,
|
|
1029
|
-
className: o(
|
|
1030
|
-
"fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",
|
|
1031
|
-
e
|
|
1032
|
-
),
|
|
1033
|
-
...a,
|
|
1034
|
-
children: [
|
|
1035
|
-
/* @__PURE__ */ s.jsx("div", { className: "mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" }),
|
|
1036
|
-
t
|
|
1037
|
-
]
|
|
1038
|
-
}
|
|
1039
|
-
)
|
|
1040
|
-
] }));
|
|
1041
|
-
Uo.displayName = "DrawerContent";
|
|
1042
|
-
const qo = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("grid gap-1.5 p-4 text-center sm:text-left", e), ...t });
|
|
1043
|
-
qo.displayName = "DrawerHeader";
|
|
1044
|
-
const Ko = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("mt-auto flex flex-col gap-2 p-4", e), ...t });
|
|
1045
|
-
Ko.displayName = "DrawerFooter";
|
|
1046
|
-
const Wo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1047
|
-
h.Title,
|
|
1048
|
-
{
|
|
1049
|
-
ref: a,
|
|
1050
|
-
className: o("text-lg font-semibold leading-none tracking-tight", e),
|
|
1051
|
-
...t
|
|
1052
|
-
}
|
|
1053
|
-
));
|
|
1054
|
-
Wo.displayName = h.Title.displayName;
|
|
1055
|
-
const Xo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(h.Description, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
|
|
1056
|
-
Xo.displayName = h.Description.displayName;
|
|
1057
|
-
const Qo = Ma, Yo = La, ed = Pa, td = ze, ad = Fa, sd = Aa, Jo = r.forwardRef(({ className: e, inset: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
|
|
1058
|
-
De,
|
|
1059
|
-
{
|
|
1060
|
-
ref: d,
|
|
1061
|
-
className: o(
|
|
1062
|
-
"flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
1063
|
-
t && "pl-8",
|
|
1064
|
-
e
|
|
1065
|
-
),
|
|
1066
|
-
...n,
|
|
1067
|
-
children: [
|
|
1068
|
-
a,
|
|
1069
|
-
/* @__PURE__ */ s.jsx(S, { className: "ml-auto" })
|
|
1070
|
-
]
|
|
1071
|
-
}
|
|
1072
|
-
));
|
|
1073
|
-
Jo.displayName = De.displayName;
|
|
1074
|
-
const Zo = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1075
|
-
Ie,
|
|
1076
|
-
{
|
|
1077
|
-
ref: a,
|
|
1078
|
-
className: o(
|
|
1079
|
-
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
|
|
1080
|
-
e
|
|
1081
|
-
),
|
|
1082
|
-
...t
|
|
1083
|
-
}
|
|
1084
|
-
));
|
|
1085
|
-
Zo.displayName = Ie.displayName;
|
|
1086
|
-
const qt = r.forwardRef(({ className: e, sideOffset: t = 4, ...a }, n) => /* @__PURE__ */ s.jsx(ze, { children: /* @__PURE__ */ s.jsx(
|
|
1087
|
-
Me,
|
|
1088
|
-
{
|
|
1089
|
-
ref: n,
|
|
1090
|
-
sideOffset: t,
|
|
1091
|
-
className: o(
|
|
1092
|
-
"z-50 max-h-[var(--radix-dropdown-menu-content-available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md",
|
|
1093
|
-
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin]",
|
|
1094
|
-
e
|
|
1095
|
-
),
|
|
1096
|
-
...a
|
|
1097
|
-
}
|
|
1098
|
-
) }));
|
|
1099
|
-
qt.displayName = Me.displayName;
|
|
1100
|
-
const z = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1101
|
-
Pe,
|
|
1102
|
-
{
|
|
1103
|
-
ref: n,
|
|
1104
|
-
className: o(
|
|
1105
|
-
"relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
|
|
1106
|
-
t && "pl-8",
|
|
1107
|
-
e
|
|
1108
|
-
),
|
|
1109
|
-
...a
|
|
1110
|
-
}
|
|
1111
|
-
));
|
|
1112
|
-
z.displayName = Pe.displayName;
|
|
1113
|
-
const er = r.forwardRef(({ className: e, children: t, checked: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
|
|
1114
|
-
Ae,
|
|
1115
|
-
{
|
|
1116
|
-
ref: d,
|
|
1117
|
-
className: o(
|
|
1118
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
1119
|
-
e
|
|
1120
|
-
),
|
|
1121
|
-
checked: a,
|
|
1122
|
-
...n,
|
|
1123
|
-
children: [
|
|
1124
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Fe, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
|
|
1125
|
-
t
|
|
1126
|
-
]
|
|
1127
|
-
}
|
|
1128
|
-
));
|
|
1129
|
-
er.displayName = Ae.displayName;
|
|
1130
|
-
const tr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
1131
|
-
Le,
|
|
1132
|
-
{
|
|
1133
|
-
ref: n,
|
|
1134
|
-
className: o(
|
|
1135
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
1136
|
-
e
|
|
1137
|
-
),
|
|
1138
|
-
...a,
|
|
1139
|
-
children: [
|
|
1140
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Fe, { children: /* @__PURE__ */ s.jsx(B, { className: "h-2 w-2 fill-current" }) }) }),
|
|
1141
|
-
t
|
|
1142
|
-
]
|
|
1143
|
-
}
|
|
1144
|
-
));
|
|
1145
|
-
tr.displayName = Le.displayName;
|
|
1146
|
-
const ar = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1147
|
-
Ee,
|
|
1148
|
-
{
|
|
1149
|
-
ref: n,
|
|
1150
|
-
className: o("px-2 py-1.5 text-sm font-semibold", t && "pl-8", e),
|
|
1151
|
-
...a
|
|
1152
|
-
}
|
|
1153
|
-
));
|
|
1154
|
-
ar.displayName = Ee.displayName;
|
|
1155
|
-
const sr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Oe, { ref: a, className: o("-mx-1 my-1 h-px bg-muted", e), ...t }));
|
|
1156
|
-
sr.displayName = Oe.displayName;
|
|
1157
|
-
const or = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest opacity-60", e), ...t });
|
|
1158
|
-
or.displayName = "DropdownMenuShortcut";
|
|
1159
|
-
const rr = w("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"), Kt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Be, { ref: a, className: o(rr(), e), ...t }));
|
|
1160
|
-
Kt.displayName = Be.displayName;
|
|
1161
|
-
const od = Oa, Wt = r.createContext(null), rd = ({
|
|
1162
|
-
...e
|
|
1163
|
-
}) => /* @__PURE__ */ s.jsx(Wt.Provider, { value: { name: e.name }, children: /* @__PURE__ */ s.jsx(Ba, { ...e }) }), V = () => {
|
|
1164
|
-
const e = r.useContext(Wt), t = r.useContext(Xt), { getFieldState: a, formState: n } = Ea();
|
|
1165
|
-
if (!e)
|
|
1166
|
-
throw new Error("useFormField should be used within <FormField>");
|
|
1167
|
-
if (!t)
|
|
1168
|
-
throw new Error("useFormField should be used within <FormItem>");
|
|
1169
|
-
const d = a(e.name, n), { id: i } = t;
|
|
1170
|
-
return {
|
|
1171
|
-
id: i,
|
|
1172
|
-
name: e.name,
|
|
1173
|
-
formItemId: `${i}-form-item`,
|
|
1174
|
-
formDescriptionId: `${i}-form-item-description`,
|
|
1175
|
-
formMessageId: `${i}-form-item-message`,
|
|
1176
|
-
...d
|
|
1177
|
-
};
|
|
1178
|
-
}, Xt = r.createContext(null), nr = r.forwardRef(
|
|
1179
|
-
({ className: e, ...t }, a) => {
|
|
1180
|
-
const n = r.useId();
|
|
1181
|
-
return /* @__PURE__ */ s.jsx(Xt.Provider, { value: { id: n }, children: /* @__PURE__ */ s.jsx("div", { ref: a, className: o("space-y-2", e), ...t }) });
|
|
1182
|
-
}
|
|
1183
|
-
);
|
|
1184
|
-
nr.displayName = "FormItem";
|
|
1185
|
-
const dr = r.forwardRef(({ className: e, ...t }, a) => {
|
|
1186
|
-
const { error: n, formItemId: d } = V();
|
|
1187
|
-
return /* @__PURE__ */ s.jsx(Kt, { ref: a, className: o(n && "text-destructive", e), htmlFor: d, ...t });
|
|
1188
|
-
});
|
|
1189
|
-
dr.displayName = "FormLabel";
|
|
1190
|
-
const ir = r.forwardRef(
|
|
1191
|
-
({ ...e }, t) => {
|
|
1192
|
-
const { error: a, formItemId: n, formDescriptionId: d, formMessageId: i } = V();
|
|
1193
|
-
return /* @__PURE__ */ s.jsx(
|
|
1194
|
-
X,
|
|
1195
|
-
{
|
|
1196
|
-
ref: t,
|
|
1197
|
-
id: n,
|
|
1198
|
-
"aria-describedby": a ? `${d} ${i}` : `${d}`,
|
|
1199
|
-
"aria-invalid": !!a,
|
|
1200
|
-
...e
|
|
1201
|
-
}
|
|
1202
|
-
);
|
|
1203
|
-
}
|
|
1204
|
-
);
|
|
1205
|
-
ir.displayName = "FormControl";
|
|
1206
|
-
const lr = r.forwardRef(
|
|
1207
|
-
({ className: e, ...t }, a) => {
|
|
1208
|
-
const { formDescriptionId: n } = V();
|
|
1209
|
-
return /* @__PURE__ */ s.jsx("p", { ref: a, id: n, className: o("text-[0.8rem] text-muted-foreground", e), ...t });
|
|
1210
|
-
}
|
|
1211
|
-
);
|
|
1212
|
-
lr.displayName = "FormDescription";
|
|
1213
|
-
const cr = r.forwardRef(
|
|
1214
|
-
({ className: e, children: t, ...a }, n) => {
|
|
1215
|
-
const { error: d, formMessageId: i } = V(), m = d ? String(d?.message ?? "") : t;
|
|
1216
|
-
return m ? /* @__PURE__ */ s.jsx(
|
|
1217
|
-
"p",
|
|
1218
|
-
{
|
|
1219
|
-
ref: n,
|
|
1220
|
-
id: i,
|
|
1221
|
-
className: o("text-[0.8rem] font-medium text-destructive", e),
|
|
1222
|
-
...a,
|
|
1223
|
-
children: m
|
|
1224
|
-
}
|
|
1225
|
-
) : null;
|
|
1226
|
-
}
|
|
1227
|
-
);
|
|
1228
|
-
cr.displayName = "FormMessage";
|
|
1229
|
-
const nd = Ga, dd = Va, mr = r.forwardRef(({ className: e, align: t = "center", sideOffset: a = 4, ...n }, d) => /* @__PURE__ */ s.jsx(
|
|
1230
|
-
Ge,
|
|
1231
|
-
{
|
|
1232
|
-
ref: d,
|
|
1233
|
-
align: t,
|
|
1234
|
-
sideOffset: a,
|
|
1235
|
-
className: o(
|
|
1236
|
-
"z-50 w-64 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-hover-card-content-transform-origin]",
|
|
1237
|
-
e
|
|
1238
|
-
),
|
|
1239
|
-
...n
|
|
1240
|
-
}
|
|
1241
|
-
));
|
|
1242
|
-
mr.displayName = Ge.displayName;
|
|
1243
|
-
const ur = r.forwardRef(
|
|
1244
|
-
({ className: e, type: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1245
|
-
"input",
|
|
1246
|
-
{
|
|
1247
|
-
type: t,
|
|
1248
|
-
className: o(
|
|
1249
|
-
"flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
|
1250
|
-
e
|
|
1251
|
-
),
|
|
1252
|
-
ref: n,
|
|
1253
|
-
...a
|
|
1254
|
-
}
|
|
1255
|
-
)
|
|
1256
|
-
);
|
|
1257
|
-
ur.displayName = "Input";
|
|
1258
|
-
function id({ ...e }) {
|
|
1259
|
-
return /* @__PURE__ */ s.jsx(Ua, { ...e });
|
|
1260
|
-
}
|
|
1261
|
-
function ld({ ...e }) {
|
|
1262
|
-
return /* @__PURE__ */ s.jsx(Ha, { ...e });
|
|
1263
|
-
}
|
|
1264
|
-
function cd({ ...e }) {
|
|
1265
|
-
return /* @__PURE__ */ s.jsx(Ke, { ...e });
|
|
1266
|
-
}
|
|
1267
|
-
function md({ ...e }) {
|
|
1268
|
-
return /* @__PURE__ */ s.jsx(qa, { ...e });
|
|
1269
|
-
}
|
|
1270
|
-
function ud({ ...e }) {
|
|
1271
|
-
return /* @__PURE__ */ s.jsx(Ka, { "data-slot": "menubar-sub", ...e });
|
|
1272
|
-
}
|
|
1273
|
-
const fr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1274
|
-
Ve,
|
|
1275
|
-
{
|
|
1276
|
-
ref: a,
|
|
1277
|
-
className: o("flex h-9 items-center space-x-1 rounded-md border bg-background p-1 shadow-sm", e),
|
|
1278
|
-
...t
|
|
1279
|
-
}
|
|
1280
|
-
));
|
|
1281
|
-
fr.displayName = Ve.displayName;
|
|
1282
|
-
const pr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1283
|
-
He,
|
|
1284
|
-
{
|
|
1285
|
-
ref: a,
|
|
1286
|
-
className: o(
|
|
1287
|
-
"flex cursor-default select-none items-center rounded-sm px-3 py-1 text-sm font-medium outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
|
|
1288
|
-
e
|
|
1289
|
-
),
|
|
1290
|
-
...t
|
|
1291
|
-
}
|
|
1292
|
-
));
|
|
1293
|
-
pr.displayName = He.displayName;
|
|
1294
|
-
const xr = r.forwardRef(({ className: e, inset: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
|
|
1295
|
-
Ue,
|
|
1296
|
-
{
|
|
1297
|
-
ref: d,
|
|
1298
|
-
className: o(
|
|
1299
|
-
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
|
|
1300
|
-
t && "pl-8",
|
|
1301
|
-
e
|
|
1302
|
-
),
|
|
1303
|
-
...n,
|
|
1304
|
-
children: [
|
|
1305
|
-
a,
|
|
1306
|
-
/* @__PURE__ */ s.jsx(S, { className: "ml-auto h-4 w-4" })
|
|
1307
|
-
]
|
|
1308
|
-
}
|
|
1309
|
-
));
|
|
1310
|
-
xr.displayName = Ue.displayName;
|
|
1311
|
-
const gr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1312
|
-
qe,
|
|
1313
|
-
{
|
|
1314
|
-
ref: a,
|
|
1315
|
-
className: o(
|
|
1316
|
-
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",
|
|
1317
|
-
e
|
|
1318
|
-
),
|
|
1319
|
-
...t
|
|
1320
|
-
}
|
|
1321
|
-
));
|
|
1322
|
-
gr.displayName = qe.displayName;
|
|
1323
|
-
const br = r.forwardRef(({ className: e, align: t = "start", alignOffset: a = -4, sideOffset: n = 8, ...d }, i) => /* @__PURE__ */ s.jsx(Ke, { children: /* @__PURE__ */ s.jsx(
|
|
1324
|
-
We,
|
|
1325
|
-
{
|
|
1326
|
-
ref: i,
|
|
1327
|
-
align: t,
|
|
1328
|
-
alignOffset: a,
|
|
1329
|
-
sideOffset: n,
|
|
1330
|
-
className: o(
|
|
1331
|
-
"z-50 min-w-[12rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-menubar-content-transform-origin]",
|
|
1332
|
-
e
|
|
1333
|
-
),
|
|
1334
|
-
...d
|
|
1335
|
-
}
|
|
1336
|
-
) }));
|
|
1337
|
-
br.displayName = We.displayName;
|
|
1338
|
-
const hr = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1339
|
-
Xe,
|
|
1340
|
-
{
|
|
1341
|
-
ref: n,
|
|
1342
|
-
className: o(
|
|
1343
|
-
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
1344
|
-
t && "pl-8",
|
|
1345
|
-
e
|
|
1346
|
-
),
|
|
1347
|
-
...a
|
|
1348
|
-
}
|
|
1349
|
-
));
|
|
1350
|
-
hr.displayName = Xe.displayName;
|
|
1351
|
-
const Nr = r.forwardRef(({ className: e, children: t, checked: a, ...n }, d) => /* @__PURE__ */ s.jsxs(
|
|
1352
|
-
Qe,
|
|
1353
|
-
{
|
|
1354
|
-
ref: d,
|
|
1355
|
-
className: o(
|
|
1356
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
1357
|
-
e
|
|
1358
|
-
),
|
|
1359
|
-
checked: a,
|
|
1360
|
-
...n,
|
|
1361
|
-
children: [
|
|
1362
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Ye, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
|
|
1363
|
-
t
|
|
1364
|
-
]
|
|
1365
|
-
}
|
|
1366
|
-
));
|
|
1367
|
-
Nr.displayName = Qe.displayName;
|
|
1368
|
-
const yr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
1369
|
-
Je,
|
|
1370
|
-
{
|
|
1371
|
-
ref: n,
|
|
1372
|
-
className: o(
|
|
1373
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
1374
|
-
e
|
|
1375
|
-
),
|
|
1376
|
-
...a,
|
|
1377
|
-
children: [
|
|
1378
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(Ye, { children: /* @__PURE__ */ s.jsx(B, { className: "h-4 w-4 fill-current" }) }) }),
|
|
1379
|
-
t
|
|
1380
|
-
]
|
|
1381
|
-
}
|
|
1382
|
-
));
|
|
1383
|
-
yr.displayName = Je.displayName;
|
|
1384
|
-
const vr = r.forwardRef(({ className: e, inset: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1385
|
-
Ze,
|
|
1386
|
-
{
|
|
1387
|
-
ref: n,
|
|
1388
|
-
className: o("px-2 py-1.5 text-sm font-semibold", t && "pl-8", e),
|
|
1389
|
-
...a
|
|
1390
|
-
}
|
|
1391
|
-
));
|
|
1392
|
-
vr.displayName = Ze.displayName;
|
|
1393
|
-
const wr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(et, { ref: a, className: o("-mx-1 my-1 h-px bg-muted", e), ...t }));
|
|
1394
|
-
wr.displayName = et.displayName;
|
|
1395
|
-
const jr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("span", { className: o("ml-auto text-xs tracking-widest text-muted-foreground", e), ...t });
|
|
1396
|
-
jr.displayname = "MenubarShortcut";
|
|
1397
|
-
const Cr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
1398
|
-
tt,
|
|
1399
|
-
{
|
|
1400
|
-
ref: n,
|
|
1401
|
-
className: o("relative z-10 flex max-w-max flex-1 items-center justify-center", e),
|
|
1402
|
-
...a,
|
|
1403
|
-
children: [
|
|
1404
|
-
t,
|
|
1405
|
-
/* @__PURE__ */ s.jsx(Qt, {})
|
|
1406
|
-
]
|
|
1407
|
-
}
|
|
1408
|
-
));
|
|
1409
|
-
Cr.displayName = tt.displayName;
|
|
1410
|
-
const Rr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1411
|
-
at,
|
|
1412
|
-
{
|
|
1413
|
-
ref: a,
|
|
1414
|
-
className: o("group flex flex-1 list-none items-center justify-center space-x-1", e),
|
|
1415
|
-
...t
|
|
1416
|
-
}
|
|
1417
|
-
));
|
|
1418
|
-
Rr.displayName = at.displayName;
|
|
1419
|
-
const fd = Wa, Tr = w(
|
|
1420
|
-
"group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
|
|
1421
|
-
), kr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
1422
|
-
st,
|
|
1423
|
-
{
|
|
1424
|
-
ref: n,
|
|
1425
|
-
className: o(Tr(), "group", e),
|
|
1426
|
-
...a,
|
|
1427
|
-
children: [
|
|
1428
|
-
t,
|
|
1429
|
-
" ",
|
|
1430
|
-
/* @__PURE__ */ s.jsx(
|
|
1431
|
-
$,
|
|
1432
|
-
{
|
|
1433
|
-
className: "relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180",
|
|
1434
|
-
"aria-hidden": "true"
|
|
1435
|
-
}
|
|
1436
|
-
)
|
|
1437
|
-
]
|
|
1438
|
-
}
|
|
1439
|
-
));
|
|
1440
|
-
kr.displayName = st.displayName;
|
|
1441
|
-
const Sr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1442
|
-
ot,
|
|
1443
|
-
{
|
|
1444
|
-
ref: a,
|
|
1445
|
-
className: o(
|
|
1446
|
-
"left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ",
|
|
1447
|
-
e
|
|
1448
|
-
),
|
|
1449
|
-
...t
|
|
1450
|
-
}
|
|
1451
|
-
));
|
|
1452
|
-
Sr.displayName = ot.displayName;
|
|
1453
|
-
const pd = Xa, Qt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { className: o("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ s.jsx(
|
|
1454
|
-
rt,
|
|
1455
|
-
{
|
|
1456
|
-
className: o(
|
|
1457
|
-
"origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",
|
|
1458
|
-
e
|
|
1459
|
-
),
|
|
1460
|
-
ref: a,
|
|
1461
|
-
...t
|
|
1462
|
-
}
|
|
1463
|
-
) }));
|
|
1464
|
-
Qt.displayName = rt.displayName;
|
|
1465
|
-
const _r = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1466
|
-
nt,
|
|
1467
|
-
{
|
|
1468
|
-
ref: a,
|
|
1469
|
-
className: o(
|
|
1470
|
-
"top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",
|
|
1471
|
-
e
|
|
1472
|
-
),
|
|
1473
|
-
...t,
|
|
1474
|
-
children: /* @__PURE__ */ s.jsx("div", { className: "relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" })
|
|
1475
|
-
}
|
|
1476
|
-
));
|
|
1477
|
-
_r.displayName = nt.displayName;
|
|
1478
|
-
const $r = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx(
|
|
1479
|
-
"nav",
|
|
1480
|
-
{
|
|
1481
|
-
role: "navigation",
|
|
1482
|
-
"aria-label": "pagination",
|
|
1483
|
-
className: o("mx-auto flex w-full justify-center", e),
|
|
1484
|
-
...t
|
|
1485
|
-
}
|
|
1486
|
-
);
|
|
1487
|
-
$r.displayName = "Pagination";
|
|
1488
|
-
const Dr = r.forwardRef(
|
|
1489
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("ul", { ref: a, className: o("flex flex-row items-center gap-1", e), ...t })
|
|
1490
|
-
);
|
|
1491
|
-
Dr.displayName = "PaginationContent";
|
|
1492
|
-
const Ir = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("li", { ref: a, className: o("", e), ...t }));
|
|
1493
|
-
Ir.displayName = "PaginationItem";
|
|
1494
|
-
const Y = ({ className: e, isActive: t, size: a = "icon", ...n }) => /* @__PURE__ */ s.jsx(
|
|
1495
|
-
"a",
|
|
1496
|
-
{
|
|
1497
|
-
"aria-current": t ? "page" : void 0,
|
|
1498
|
-
className: o(
|
|
1499
|
-
T({
|
|
1500
|
-
variant: t ? "outline" : "ghost",
|
|
1501
|
-
size: a
|
|
1502
|
-
}),
|
|
1503
|
-
e
|
|
1504
|
-
),
|
|
1505
|
-
...n
|
|
1506
|
-
}
|
|
1507
|
-
);
|
|
1508
|
-
Y.displayName = "PaginationLink";
|
|
1509
|
-
const zr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs(Y, { "aria-label": "Go to previous page", size: "default", className: o("gap-1 pl-2.5", e), ...t, children: [
|
|
1510
|
-
/* @__PURE__ */ s.jsx(ge, { className: "h-4 w-4" }),
|
|
1511
|
-
/* @__PURE__ */ s.jsx("span", { children: "Previous" })
|
|
1512
|
-
] });
|
|
1513
|
-
zr.displayName = "PaginationPrevious";
|
|
1514
|
-
const Mr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs(Y, { "aria-label": "Go to next page", size: "default", className: o("gap-1 pr-2.5", e), ...t, children: [
|
|
1515
|
-
/* @__PURE__ */ s.jsx("span", { children: "Next" }),
|
|
1516
|
-
/* @__PURE__ */ s.jsx(S, { className: "h-4 w-4" })
|
|
1517
|
-
] });
|
|
1518
|
-
Mr.displayName = "PaginationNext";
|
|
1519
|
-
const Pr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsxs("span", { "aria-hidden": !0, className: o("flex h-9 w-9 items-center justify-center", e), ...t, children: [
|
|
1520
|
-
/* @__PURE__ */ s.jsx(pe, { className: "h-4 w-4" }),
|
|
1521
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "More pages" })
|
|
1522
|
-
] });
|
|
1523
|
-
Pr.displayName = "PaginationEllipsis";
|
|
1524
|
-
const xd = Ya, gd = Za, bd = Ja, Ar = r.forwardRef(({ className: e, align: t = "center", sideOffset: a = 4, ...n }, d) => /* @__PURE__ */ s.jsx(Qa, { children: /* @__PURE__ */ s.jsx(
|
|
1525
|
-
dt,
|
|
1526
|
-
{
|
|
1527
|
-
ref: d,
|
|
1528
|
-
align: t,
|
|
1529
|
-
sideOffset: a,
|
|
1530
|
-
className: o(
|
|
1531
|
-
"z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-popover-content-transform-origin]",
|
|
1532
|
-
e
|
|
1533
|
-
),
|
|
1534
|
-
...n
|
|
1535
|
-
}
|
|
1536
|
-
) }));
|
|
1537
|
-
Ar.displayName = dt.displayName;
|
|
1538
|
-
const Fr = r.forwardRef(({ className: e, value: t, ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1539
|
-
it,
|
|
1540
|
-
{
|
|
1541
|
-
ref: n,
|
|
1542
|
-
className: o("relative h-2 w-full overflow-hidden rounded-full bg-primary/20", e),
|
|
1543
|
-
value: t,
|
|
1544
|
-
...a,
|
|
1545
|
-
children: /* @__PURE__ */ s.jsx(
|
|
1546
|
-
es,
|
|
1547
|
-
{
|
|
1548
|
-
className: "h-full w-full flex-1 bg-primary transition-all",
|
|
1549
|
-
style: { transform: `translateX(-${100 - (t || 0)}%)` }
|
|
1550
|
-
}
|
|
1551
|
-
)
|
|
1552
|
-
}
|
|
1553
|
-
));
|
|
1554
|
-
Fr.displayName = it.displayName;
|
|
1555
|
-
const Lr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(lt, { className: o("grid gap-2", e), ...t, ref: a }));
|
|
1556
|
-
Lr.displayName = lt.displayName;
|
|
1557
|
-
const Er = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1558
|
-
ct,
|
|
1559
|
-
{
|
|
1560
|
-
ref: a,
|
|
1561
|
-
className: o(
|
|
1562
|
-
"aspect-square h-4 w-4 rounded-full border border-primary text-primary shadow focus:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
|
1563
|
-
e
|
|
1564
|
-
),
|
|
1565
|
-
...t,
|
|
1566
|
-
children: /* @__PURE__ */ s.jsx(ts, { className: "flex items-center justify-center", children: /* @__PURE__ */ s.jsx(B, { className: "h-3.5 w-3.5 fill-primary" }) })
|
|
1567
|
-
}
|
|
1568
|
-
));
|
|
1569
|
-
Er.displayName = ct.displayName;
|
|
1570
|
-
const hd = ({
|
|
1571
|
-
className: e,
|
|
1572
|
-
direction: t,
|
|
1573
|
-
...a
|
|
1574
|
-
}) => /* @__PURE__ */ s.jsx(
|
|
1575
|
-
rs,
|
|
1576
|
-
{
|
|
1577
|
-
orientation: t,
|
|
1578
|
-
className: o("flex h-full w-full data-[panel-group-direction=vertical]:flex-col", e),
|
|
1579
|
-
...a
|
|
1580
|
-
}
|
|
1581
|
-
), Nd = as, yd = ({
|
|
1582
|
-
withHandle: e,
|
|
1583
|
-
className: t,
|
|
1584
|
-
...a
|
|
1585
|
-
}) => /* @__PURE__ */ s.jsx(
|
|
1586
|
-
ss,
|
|
1587
|
-
{
|
|
1588
|
-
className: o(
|
|
1589
|
-
"relative flex w-px items-center justify-center bg-border after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-1 data-[panel-group-direction=vertical]:h-px data-[panel-group-direction=vertical]:w-full data-[panel-group-direction=vertical]:after:left-0 data-[panel-group-direction=vertical]:after:h-1 data-[panel-group-direction=vertical]:after:w-full data-[panel-group-direction=vertical]:after:-translate-y-1/2 data-[panel-group-direction=vertical]:after:translate-x-0 [&[data-panel-group-direction=vertical]>div]:rotate-90",
|
|
1590
|
-
t
|
|
1591
|
-
),
|
|
1592
|
-
...a,
|
|
1593
|
-
children: e && /* @__PURE__ */ s.jsx("div", { className: "z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border", children: /* @__PURE__ */ s.jsx(os, { className: "h-2.5 w-2.5" }) })
|
|
1594
|
-
}
|
|
1595
|
-
), Or = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(mt, { ref: n, className: o("relative overflow-hidden", e), ...a, children: [
|
|
1596
|
-
/* @__PURE__ */ s.jsx(ns, { className: "h-full w-full rounded-[inherit]", children: t }),
|
|
1597
|
-
/* @__PURE__ */ s.jsx(Yt, {}),
|
|
1598
|
-
/* @__PURE__ */ s.jsx(ds, {})
|
|
1599
|
-
] }));
|
|
1600
|
-
Or.displayName = mt.displayName;
|
|
1601
|
-
const Yt = r.forwardRef(({ className: e, orientation: t = "vertical", ...a }, n) => /* @__PURE__ */ s.jsx(
|
|
1602
|
-
ut,
|
|
1603
|
-
{
|
|
1604
|
-
ref: n,
|
|
1605
|
-
orientation: t,
|
|
1606
|
-
className: o(
|
|
1607
|
-
"flex touch-none select-none transition-colors",
|
|
1608
|
-
t === "vertical" && "h-full w-2.5 border-l border-l-transparent p-[1px]",
|
|
1609
|
-
t === "horizontal" && "h-2.5 flex-col border-t border-t-transparent p-[1px]",
|
|
1610
|
-
e
|
|
1611
|
-
),
|
|
1612
|
-
...a,
|
|
1613
|
-
children: /* @__PURE__ */ s.jsx(is, { className: "relative flex-1 rounded-full bg-border" })
|
|
1614
|
-
}
|
|
1615
|
-
));
|
|
1616
|
-
Yt.displayName = ut.displayName;
|
|
1617
|
-
const vd = xs, wd = gs, jd = bs, Br = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
1618
|
-
ft,
|
|
1619
|
-
{
|
|
1620
|
-
ref: n,
|
|
1621
|
-
className: o(
|
|
1622
|
-
"flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background data-[placeholder]:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
|
|
1623
|
-
e
|
|
1624
|
-
),
|
|
1625
|
-
...a,
|
|
1626
|
-
children: [
|
|
1627
|
-
t,
|
|
1628
|
-
/* @__PURE__ */ s.jsx(ls, { asChild: !0, children: /* @__PURE__ */ s.jsx($, { className: "h-4 w-4 opacity-50" }) })
|
|
1629
|
-
]
|
|
1630
|
-
}
|
|
1631
|
-
));
|
|
1632
|
-
Br.displayName = ft.displayName;
|
|
1633
|
-
const Jt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1634
|
-
pt,
|
|
1635
|
-
{
|
|
1636
|
-
ref: a,
|
|
1637
|
-
className: o("flex cursor-default items-center justify-center py-1", e),
|
|
1638
|
-
...t,
|
|
1639
|
-
children: /* @__PURE__ */ s.jsx(cs, { className: "h-4 w-4" })
|
|
1640
|
-
}
|
|
1641
|
-
));
|
|
1642
|
-
Jt.displayName = pt.displayName;
|
|
1643
|
-
const Zt = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1644
|
-
xt,
|
|
1645
|
-
{
|
|
1646
|
-
ref: a,
|
|
1647
|
-
className: o("flex cursor-default items-center justify-center py-1", e),
|
|
1648
|
-
...t,
|
|
1649
|
-
children: /* @__PURE__ */ s.jsx($, { className: "h-4 w-4" })
|
|
1650
|
-
}
|
|
1651
|
-
));
|
|
1652
|
-
Zt.displayName = xt.displayName;
|
|
1653
|
-
const Gr = r.forwardRef(({ className: e, children: t, position: a = "popper", ...n }, d) => /* @__PURE__ */ s.jsx(ms, { children: /* @__PURE__ */ s.jsxs(
|
|
1654
|
-
gt,
|
|
1655
|
-
{
|
|
1656
|
-
ref: d,
|
|
1657
|
-
className: o(
|
|
1658
|
-
"relative z-50 max-h-[--radix-select-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-select-content-transform-origin]",
|
|
1659
|
-
a === "popper" && "data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
|
1660
|
-
e
|
|
1661
|
-
),
|
|
1662
|
-
position: a,
|
|
1663
|
-
...n,
|
|
1664
|
-
children: [
|
|
1665
|
-
/* @__PURE__ */ s.jsx(Jt, {}),
|
|
1666
|
-
/* @__PURE__ */ s.jsx(
|
|
1667
|
-
us,
|
|
1668
|
-
{
|
|
1669
|
-
className: o(
|
|
1670
|
-
"p-1",
|
|
1671
|
-
a === "popper" && "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
|
|
1672
|
-
),
|
|
1673
|
-
children: t
|
|
1674
|
-
}
|
|
1675
|
-
),
|
|
1676
|
-
/* @__PURE__ */ s.jsx(Zt, {})
|
|
1677
|
-
]
|
|
1678
|
-
}
|
|
1679
|
-
) }));
|
|
1680
|
-
Gr.displayName = gt.displayName;
|
|
1681
|
-
const Vr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(bt, { ref: a, className: o("px-2 py-1.5 text-sm font-semibold", e), ...t }));
|
|
1682
|
-
Vr.displayName = bt.displayName;
|
|
1683
|
-
const Hr = r.forwardRef(({ className: e, children: t, ...a }, n) => /* @__PURE__ */ s.jsxs(
|
|
1684
|
-
ht,
|
|
1685
|
-
{
|
|
1686
|
-
ref: n,
|
|
1687
|
-
className: o(
|
|
1688
|
-
"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
1689
|
-
e
|
|
1690
|
-
),
|
|
1691
|
-
...a,
|
|
1692
|
-
children: [
|
|
1693
|
-
/* @__PURE__ */ s.jsx("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ s.jsx(fs, { children: /* @__PURE__ */ s.jsx(D, { className: "h-4 w-4" }) }) }),
|
|
1694
|
-
/* @__PURE__ */ s.jsx(ps, { children: t })
|
|
1695
|
-
]
|
|
1696
|
-
}
|
|
1697
|
-
));
|
|
1698
|
-
Hr.displayName = ht.displayName;
|
|
1699
|
-
const Ur = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Nt, { ref: a, className: o("-mx-1 my-1 h-px bg-muted", e), ...t }));
|
|
1700
|
-
Ur.displayName = Nt.displayName;
|
|
1701
|
-
const qr = r.forwardRef(({ className: e, orientation: t = "horizontal", decorative: a = !0, ...n }, d) => /* @__PURE__ */ s.jsx(
|
|
1702
|
-
yt,
|
|
1703
|
-
{
|
|
1704
|
-
ref: d,
|
|
1705
|
-
decorative: a,
|
|
1706
|
-
orientation: t,
|
|
1707
|
-
className: o("shrink-0 bg-border", t === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]", e),
|
|
1708
|
-
...n
|
|
1709
|
-
}
|
|
1710
|
-
));
|
|
1711
|
-
qr.displayName = yt.displayName;
|
|
1712
|
-
const Cd = Ne, Rd = ye, Td = L, Kr = he, ea = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1713
|
-
A,
|
|
1714
|
-
{
|
|
1715
|
-
className: o(
|
|
1716
|
-
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
1717
|
-
e
|
|
1718
|
-
),
|
|
1719
|
-
...t,
|
|
1720
|
-
ref: a
|
|
1721
|
-
}
|
|
1722
|
-
));
|
|
1723
|
-
ea.displayName = A.displayName;
|
|
1724
|
-
const Wr = w(
|
|
1725
|
-
"fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out",
|
|
1726
|
-
{
|
|
1727
|
-
variants: {
|
|
1728
|
-
side: {
|
|
1729
|
-
top: "inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
|
|
1730
|
-
bottom: "inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
|
|
1731
|
-
left: "inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
|
|
1732
|
-
right: "inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
|
|
1733
|
-
}
|
|
1734
|
-
},
|
|
1735
|
-
defaultVariants: {
|
|
1736
|
-
side: "right"
|
|
1737
|
-
}
|
|
1738
|
-
}
|
|
1739
|
-
), Xr = r.forwardRef(
|
|
1740
|
-
({ side: e = "right", className: t, children: a, ...n }, d) => /* @__PURE__ */ s.jsxs(Kr, { children: [
|
|
1741
|
-
/* @__PURE__ */ s.jsx(ea, {}),
|
|
1742
|
-
/* @__PURE__ */ s.jsxs(F, { ref: d, className: o(Wr({ side: e }), t), ...n, children: [
|
|
1743
|
-
/* @__PURE__ */ s.jsxs(L, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary", children: [
|
|
1744
|
-
/* @__PURE__ */ s.jsx(Q, { className: "h-4 w-4" }),
|
|
1745
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Close" })
|
|
1746
|
-
] }),
|
|
1747
|
-
a
|
|
1748
|
-
] })
|
|
1749
|
-
] })
|
|
1750
|
-
);
|
|
1751
|
-
Xr.displayName = F.displayName;
|
|
1752
|
-
const Qr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col space-y-2 text-center sm:text-left", e), ...t });
|
|
1753
|
-
Qr.displayName = "SheetHeader";
|
|
1754
|
-
const Yr = ({ className: e, ...t }) => /* @__PURE__ */ s.jsx("div", { className: o("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", e), ...t });
|
|
1755
|
-
Yr.displayName = "SheetFooter";
|
|
1756
|
-
const Jr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(E, { ref: a, className: o("text-lg font-semibold text-foreground", e), ...t }));
|
|
1757
|
-
Jr.displayName = E.displayName;
|
|
1758
|
-
const Zr = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(O, { ref: a, className: o("text-sm text-muted-foreground", e), ...t }));
|
|
1759
|
-
Zr.displayName = O.displayName;
|
|
1760
|
-
function kd({ className: e, ...t }) {
|
|
1761
|
-
return /* @__PURE__ */ s.jsx("div", { className: o("animate-pulse rounded-md bg-primary/10", e), ...t });
|
|
1762
|
-
}
|
|
1763
|
-
const en = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsxs(
|
|
1764
|
-
vt,
|
|
1765
|
-
{
|
|
1766
|
-
ref: a,
|
|
1767
|
-
className: o("relative flex w-full touch-none select-none items-center", e),
|
|
1768
|
-
...t,
|
|
1769
|
-
children: [
|
|
1770
|
-
/* @__PURE__ */ s.jsx(hs, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ s.jsx(Ns, { className: "absolute h-full bg-primary" }) }),
|
|
1771
|
-
/* @__PURE__ */ s.jsx(ys, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" })
|
|
1772
|
-
]
|
|
1773
|
-
}
|
|
1774
|
-
));
|
|
1775
|
-
en.displayName = vt.displayName;
|
|
1776
|
-
const Sd = ({ ...e }) => {
|
|
1777
|
-
const { theme: t = "system" } = At();
|
|
1778
|
-
return /* @__PURE__ */ s.jsx(
|
|
1779
|
-
vs,
|
|
1780
|
-
{
|
|
1781
|
-
theme: t,
|
|
1782
|
-
className: "toaster group",
|
|
1783
|
-
toastOptions: {
|
|
1784
|
-
classNames: {
|
|
1785
|
-
toast: "group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
|
|
1786
|
-
description: "group-[.toast]:text-muted-foreground",
|
|
1787
|
-
actionButton: "group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",
|
|
1788
|
-
cancelButton: "group-[.toast]:bg-muted group-[.toast]:text-muted-foreground"
|
|
1789
|
-
}
|
|
1790
|
-
},
|
|
1791
|
-
...e
|
|
1792
|
-
}
|
|
1793
|
-
);
|
|
1794
|
-
}, tn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1795
|
-
wt,
|
|
1796
|
-
{
|
|
1797
|
-
className: o(
|
|
1798
|
-
"peer inline-flex h-5 w-9 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent shadow-sm transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",
|
|
1799
|
-
e
|
|
1800
|
-
),
|
|
1801
|
-
...t,
|
|
1802
|
-
ref: a,
|
|
1803
|
-
children: /* @__PURE__ */ s.jsx(
|
|
1804
|
-
ws,
|
|
1805
|
-
{
|
|
1806
|
-
className: o(
|
|
1807
|
-
"pointer-events-none block h-4 w-4 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-4 data-[state=unchecked]:translate-x-0"
|
|
1808
|
-
)
|
|
1809
|
-
}
|
|
1810
|
-
)
|
|
1811
|
-
}
|
|
1812
|
-
));
|
|
1813
|
-
tn.displayName = wt.displayName;
|
|
1814
|
-
const an = r.forwardRef(
|
|
1815
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ s.jsx("table", { ref: a, className: o("w-full caption-bottom text-sm", e), ...t }) })
|
|
1816
|
-
);
|
|
1817
|
-
an.displayName = "Table";
|
|
1818
|
-
const sn = r.forwardRef(
|
|
1819
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("thead", { ref: a, className: o("[&_tr]:border-b", e), ...t })
|
|
1820
|
-
);
|
|
1821
|
-
sn.displayName = "TableHeader";
|
|
1822
|
-
const on = r.forwardRef(
|
|
1823
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("tbody", { ref: a, className: o("[&_tr:last-child]:border-0", e), ...t })
|
|
1824
|
-
);
|
|
1825
|
-
on.displayName = "TableBody";
|
|
1826
|
-
const rn = r.forwardRef(
|
|
1827
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("tfoot", { ref: a, className: o("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0", e), ...t })
|
|
1828
|
-
);
|
|
1829
|
-
rn.displayName = "TableFooter";
|
|
1830
|
-
const nn = r.forwardRef(
|
|
1831
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1832
|
-
"tr",
|
|
1833
|
-
{
|
|
1834
|
-
ref: a,
|
|
1835
|
-
className: o("border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted", e),
|
|
1836
|
-
...t
|
|
1837
|
-
}
|
|
1838
|
-
)
|
|
1839
|
-
);
|
|
1840
|
-
nn.displayName = "TableRow";
|
|
1841
|
-
const dn = r.forwardRef(
|
|
1842
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1843
|
-
"th",
|
|
1844
|
-
{
|
|
1845
|
-
ref: a,
|
|
1846
|
-
className: o(
|
|
1847
|
-
"h-10 px-2 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
1848
|
-
e
|
|
1849
|
-
),
|
|
1850
|
-
...t
|
|
1851
|
-
}
|
|
1852
|
-
)
|
|
1853
|
-
);
|
|
1854
|
-
dn.displayName = "TableHead";
|
|
1855
|
-
const ln = r.forwardRef(
|
|
1856
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1857
|
-
"td",
|
|
1858
|
-
{
|
|
1859
|
-
ref: a,
|
|
1860
|
-
className: o("p-2 align-middle [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]", e),
|
|
1861
|
-
...t
|
|
1862
|
-
}
|
|
1863
|
-
)
|
|
1864
|
-
);
|
|
1865
|
-
ln.displayName = "TableCell";
|
|
1866
|
-
const cn = r.forwardRef(
|
|
1867
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx("caption", { ref: a, className: o("mt-4 text-sm text-muted-foreground", e), ...t })
|
|
1868
|
-
);
|
|
1869
|
-
cn.displayName = "TableCaption";
|
|
1870
|
-
const _d = js, mn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1871
|
-
jt,
|
|
1872
|
-
{
|
|
1873
|
-
ref: a,
|
|
1874
|
-
className: o(
|
|
1875
|
-
"inline-flex h-9 items-center justify-center rounded-lg bg-muted p-1 text-muted-foreground",
|
|
1876
|
-
e
|
|
1877
|
-
),
|
|
1878
|
-
...t
|
|
1879
|
-
}
|
|
1880
|
-
));
|
|
1881
|
-
mn.displayName = jt.displayName;
|
|
1882
|
-
const un = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1883
|
-
Ct,
|
|
1884
|
-
{
|
|
1885
|
-
ref: a,
|
|
1886
|
-
className: o(
|
|
1887
|
-
"inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow",
|
|
1888
|
-
e
|
|
1889
|
-
),
|
|
1890
|
-
...t
|
|
1891
|
-
}
|
|
1892
|
-
));
|
|
1893
|
-
un.displayName = Ct.displayName;
|
|
1894
|
-
const fn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1895
|
-
Rt,
|
|
1896
|
-
{
|
|
1897
|
-
ref: a,
|
|
1898
|
-
className: o(
|
|
1899
|
-
"mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
|
|
1900
|
-
e
|
|
1901
|
-
),
|
|
1902
|
-
...t
|
|
1903
|
-
}
|
|
1904
|
-
));
|
|
1905
|
-
fn.displayName = Rt.displayName;
|
|
1906
|
-
const pn = r.forwardRef(
|
|
1907
|
-
({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1908
|
-
"textarea",
|
|
1909
|
-
{
|
|
1910
|
-
className: o(
|
|
1911
|
-
"flex min-h-[60px] w-full rounded-md border border-input bg-transparent px-3 py-2 text-base shadow-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
|
1912
|
-
e
|
|
1913
|
-
),
|
|
1914
|
-
ref: a,
|
|
1915
|
-
...t
|
|
1916
|
-
}
|
|
1917
|
-
)
|
|
1918
|
-
);
|
|
1919
|
-
pn.displayName = "Textarea";
|
|
1920
|
-
function $d({ children: e, ...t }) {
|
|
1921
|
-
return /* @__PURE__ */ s.jsx(_s, { attribute: "class", defaultTheme: "system", enableSystem: !0, ...t, children: e });
|
|
1922
|
-
}
|
|
1923
|
-
function xn() {
|
|
1924
|
-
const e = At(), { resolvedTheme: t } = e, a = t === "dark" ? K.dark : K.light;
|
|
1925
|
-
return {
|
|
1926
|
-
...e,
|
|
1927
|
-
tokens: a
|
|
1928
|
-
};
|
|
1929
|
-
}
|
|
1930
|
-
function Dd({ variant: e = "binary", onThemeChange: t, customTheme: a, className: n }) {
|
|
1931
|
-
const { theme: d, setTheme: i, resolvedTheme: m } = xn(), u = a ?? d, l = (a || m) === "dark", p = u === "system", x = (C) => {
|
|
1932
|
-
t ? t(C) : i(C);
|
|
1933
|
-
}, y = () => /* @__PURE__ */ s.jsxs(s.Fragment, { children: [
|
|
1934
|
-
/* @__PURE__ */ s.jsx(
|
|
1935
|
-
Z,
|
|
1936
|
-
{
|
|
1937
|
-
className: o(
|
|
1938
|
-
"h-[1.2rem] w-[1.2rem] transition-all",
|
|
1939
|
-
!p && !l ? "rotate-0 scale-100" : "-rotate-90 scale-0"
|
|
1940
|
-
)
|
|
1941
|
-
}
|
|
1942
|
-
),
|
|
1943
|
-
/* @__PURE__ */ s.jsx(
|
|
1944
|
-
ee,
|
|
1945
|
-
{
|
|
1946
|
-
className: o(
|
|
1947
|
-
"absolute h-[1.2rem] w-[1.2rem] transition-all",
|
|
1948
|
-
!p && l ? "rotate-0 scale-100" : "rotate-90 scale-0"
|
|
1949
|
-
)
|
|
1950
|
-
}
|
|
1951
|
-
),
|
|
1952
|
-
/* @__PURE__ */ s.jsx(
|
|
1953
|
-
te,
|
|
1954
|
-
{
|
|
1955
|
-
className: o(
|
|
1956
|
-
"absolute h-[1.2rem] w-[1.2rem] transition-all",
|
|
1957
|
-
p ? "rotate-0 scale-100" : "rotate-90 scale-0"
|
|
1958
|
-
)
|
|
1959
|
-
}
|
|
1960
|
-
),
|
|
1961
|
-
/* @__PURE__ */ s.jsx("span", { className: "sr-only", children: "Toggle theme" })
|
|
1962
|
-
] });
|
|
1963
|
-
return e === "ternary" ? /* @__PURE__ */ s.jsxs(Qo, { children: [
|
|
1964
|
-
/* @__PURE__ */ s.jsx(Yo, { asChild: !0, children: /* @__PURE__ */ s.jsx(k, { variant: "ghost", size: "icon", className: o("relative h-9 w-9", n), children: /* @__PURE__ */ s.jsx(y, {}) }) }),
|
|
1965
|
-
/* @__PURE__ */ s.jsxs(qt, { align: "end", children: [
|
|
1966
|
-
/* @__PURE__ */ s.jsxs(z, { onClick: () => x("light"), children: [
|
|
1967
|
-
/* @__PURE__ */ s.jsx(Z, { className: "mr-2 h-4 w-4" }),
|
|
1968
|
-
/* @__PURE__ */ s.jsx("span", { children: "Light" })
|
|
1969
|
-
] }),
|
|
1970
|
-
/* @__PURE__ */ s.jsxs(z, { onClick: () => x("dark"), children: [
|
|
1971
|
-
/* @__PURE__ */ s.jsx(ee, { className: "mr-2 h-4 w-4" }),
|
|
1972
|
-
/* @__PURE__ */ s.jsx("span", { children: "Dark" })
|
|
1973
|
-
] }),
|
|
1974
|
-
/* @__PURE__ */ s.jsxs(z, { onClick: () => x("system"), children: [
|
|
1975
|
-
/* @__PURE__ */ s.jsx(te, { className: "mr-2 h-4 w-4" }),
|
|
1976
|
-
/* @__PURE__ */ s.jsx("span", { children: "System" })
|
|
1977
|
-
] })
|
|
1978
|
-
] })
|
|
1979
|
-
] }) : /* @__PURE__ */ s.jsx(
|
|
1980
|
-
k,
|
|
1981
|
-
{
|
|
1982
|
-
variant: "ghost",
|
|
1983
|
-
size: "icon",
|
|
1984
|
-
className: o("relative h-9 w-9", n),
|
|
1985
|
-
onClick: () => x(u === "dark" ? "light" : "dark"),
|
|
1986
|
-
"aria-label": "Toggle theme",
|
|
1987
|
-
children: /* @__PURE__ */ s.jsx(y, {})
|
|
1988
|
-
}
|
|
1989
|
-
);
|
|
1990
|
-
}
|
|
1991
|
-
const gn = Cs, ta = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
1992
|
-
Tt,
|
|
1993
|
-
{
|
|
1994
|
-
ref: a,
|
|
1995
|
-
className: o(
|
|
1996
|
-
"fixed top-0 z-[100] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",
|
|
1997
|
-
e
|
|
1998
|
-
),
|
|
1999
|
-
...t
|
|
2000
|
-
}
|
|
2001
|
-
));
|
|
2002
|
-
ta.displayName = Tt.displayName;
|
|
2003
|
-
const bn = w(
|
|
2004
|
-
"group pointer-events-auto relative flex w-full items-center justify-between space-x-2 overflow-hidden rounded-md border p-4 pr-6 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
|
|
2005
|
-
{
|
|
2006
|
-
variants: {
|
|
2007
|
-
variant: {
|
|
2008
|
-
default: "border bg-background text-foreground",
|
|
2009
|
-
destructive: "destructive group border-destructive bg-destructive text-destructive-foreground"
|
|
2010
|
-
}
|
|
2011
|
-
},
|
|
2012
|
-
defaultVariants: {
|
|
2013
|
-
variant: "default"
|
|
2014
|
-
}
|
|
2015
|
-
}
|
|
2016
|
-
), aa = r.forwardRef(({ className: e, variant: t, ...a }, n) => /* @__PURE__ */ s.jsx(kt, { ref: n, className: o(bn({ variant: t }), e), ...a }));
|
|
2017
|
-
aa.displayName = kt.displayName;
|
|
2018
|
-
const hn = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
2019
|
-
St,
|
|
2020
|
-
{
|
|
2021
|
-
ref: a,
|
|
2022
|
-
className: o(
|
|
2023
|
-
"inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium transition-colors hover:bg-secondary focus:outline-none focus:ring-1 focus:ring-ring disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",
|
|
2024
|
-
e
|
|
2025
|
-
),
|
|
2026
|
-
...t
|
|
2027
|
-
}
|
|
2028
|
-
));
|
|
2029
|
-
hn.displayName = St.displayName;
|
|
2030
|
-
const sa = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(
|
|
2031
|
-
_t,
|
|
2032
|
-
{
|
|
2033
|
-
ref: a,
|
|
2034
|
-
className: o(
|
|
2035
|
-
"absolute right-1 top-1 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-1 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",
|
|
2036
|
-
e
|
|
2037
|
-
),
|
|
2038
|
-
"toast-close": "",
|
|
2039
|
-
...t,
|
|
2040
|
-
children: /* @__PURE__ */ s.jsx(Q, { className: "h-4 w-4" })
|
|
2041
|
-
}
|
|
2042
|
-
));
|
|
2043
|
-
sa.displayName = _t.displayName;
|
|
2044
|
-
const oa = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx($t, { ref: a, className: o("text-sm font-semibold [&+div]:text-xs", e), ...t }));
|
|
2045
|
-
oa.displayName = $t.displayName;
|
|
2046
|
-
const ra = r.forwardRef(({ className: e, ...t }, a) => /* @__PURE__ */ s.jsx(Dt, { ref: a, className: o("text-sm opacity-90", e), ...t }));
|
|
2047
|
-
ra.displayName = Dt.displayName;
|
|
2048
|
-
const Nn = 1, yn = 1e6, I = {
|
|
2049
|
-
ADD_TOAST: "ADD_TOAST",
|
|
2050
|
-
UPDATE_TOAST: "UPDATE_TOAST",
|
|
2051
|
-
DISMISS_TOAST: "DISMISS_TOAST",
|
|
2052
|
-
REMOVE_TOAST: "REMOVE_TOAST"
|
|
131
|
+
fontSize: {
|
|
132
|
+
xs: "0.75rem",
|
|
133
|
+
// 12px
|
|
134
|
+
sm: "0.875rem",
|
|
135
|
+
// 14px
|
|
136
|
+
base: "1rem",
|
|
137
|
+
// 16px
|
|
138
|
+
lg: "1.125rem",
|
|
139
|
+
// 18px
|
|
140
|
+
xl: "1.25rem",
|
|
141
|
+
// 20px
|
|
142
|
+
"2xl": "1.5rem",
|
|
143
|
+
// 24px
|
|
144
|
+
"3xl": "1.875rem",
|
|
145
|
+
// 30px
|
|
146
|
+
"4xl": "2.25rem",
|
|
147
|
+
// 36px
|
|
148
|
+
"5xl": "3rem"
|
|
149
|
+
// 48px
|
|
150
|
+
},
|
|
151
|
+
fontWeight: {
|
|
152
|
+
normal: "400",
|
|
153
|
+
medium: "500",
|
|
154
|
+
semibold: "600",
|
|
155
|
+
bold: "700"
|
|
156
|
+
},
|
|
157
|
+
lineHeight: {
|
|
158
|
+
none: "1",
|
|
159
|
+
tight: "1.25",
|
|
160
|
+
snug: "1.375",
|
|
161
|
+
normal: "1.5",
|
|
162
|
+
relaxed: "1.625",
|
|
163
|
+
loose: "2"
|
|
164
|
+
}
|
|
165
|
+
}, l = {
|
|
166
|
+
none: "none",
|
|
167
|
+
sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
|
|
168
|
+
default: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
169
|
+
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
170
|
+
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
|
171
|
+
xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
|
|
172
|
+
"2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
|
|
173
|
+
inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)"
|
|
174
|
+
}, p = {
|
|
175
|
+
palette: r,
|
|
176
|
+
theme: e
|
|
2053
177
|
};
|
|
2054
|
-
let U = 0;
|
|
2055
|
-
function vn() {
|
|
2056
|
-
return U = (U + 1) % Number.MAX_SAFE_INTEGER, U.toString();
|
|
2057
|
-
}
|
|
2058
|
-
const q = /* @__PURE__ */ new Map(), ae = (e) => {
|
|
2059
|
-
if (q.has(e))
|
|
2060
|
-
return;
|
|
2061
|
-
const t = setTimeout(() => {
|
|
2062
|
-
q.delete(e), _({
|
|
2063
|
-
type: "REMOVE_TOAST",
|
|
2064
|
-
toastId: e
|
|
2065
|
-
});
|
|
2066
|
-
}, yn);
|
|
2067
|
-
q.set(e, t);
|
|
2068
|
-
}, wn = (e, t) => {
|
|
2069
|
-
switch (t.type) {
|
|
2070
|
-
case I.ADD_TOAST:
|
|
2071
|
-
return {
|
|
2072
|
-
...e,
|
|
2073
|
-
toasts: [t.toast, ...e.toasts].slice(0, Nn)
|
|
2074
|
-
};
|
|
2075
|
-
case I.UPDATE_TOAST:
|
|
2076
|
-
return {
|
|
2077
|
-
...e,
|
|
2078
|
-
toasts: e.toasts.map((a) => a.id === t.toast.id ? { ...a, ...t.toast } : a)
|
|
2079
|
-
};
|
|
2080
|
-
case I.DISMISS_TOAST: {
|
|
2081
|
-
const { toastId: a } = t;
|
|
2082
|
-
return a ? ae(a) : e.toasts.forEach((n) => {
|
|
2083
|
-
ae(n.id);
|
|
2084
|
-
}), {
|
|
2085
|
-
...e,
|
|
2086
|
-
toasts: e.toasts.map(
|
|
2087
|
-
(n) => n.id === a || a === void 0 ? {
|
|
2088
|
-
...n,
|
|
2089
|
-
open: !1
|
|
2090
|
-
} : n
|
|
2091
|
-
)
|
|
2092
|
-
};
|
|
2093
|
-
}
|
|
2094
|
-
case I.REMOVE_TOAST:
|
|
2095
|
-
return t.toastId === void 0 ? {
|
|
2096
|
-
...e,
|
|
2097
|
-
toasts: []
|
|
2098
|
-
} : {
|
|
2099
|
-
...e,
|
|
2100
|
-
toasts: e.toasts.filter((a) => a.id !== t.toastId)
|
|
2101
|
-
};
|
|
2102
|
-
}
|
|
2103
|
-
}, M = [];
|
|
2104
|
-
let P = { toasts: [] };
|
|
2105
|
-
function _(e) {
|
|
2106
|
-
P = wn(P, e), M.forEach((t) => {
|
|
2107
|
-
t(P);
|
|
2108
|
-
});
|
|
2109
|
-
}
|
|
2110
|
-
function jn({ ...e }) {
|
|
2111
|
-
const t = vn(), a = (d) => _({
|
|
2112
|
-
type: "UPDATE_TOAST",
|
|
2113
|
-
toast: { ...d, id: t }
|
|
2114
|
-
}), n = () => _({ type: "DISMISS_TOAST", toastId: t });
|
|
2115
|
-
return _({
|
|
2116
|
-
type: "ADD_TOAST",
|
|
2117
|
-
toast: {
|
|
2118
|
-
...e,
|
|
2119
|
-
id: t,
|
|
2120
|
-
open: !0,
|
|
2121
|
-
onOpenChange: (d) => {
|
|
2122
|
-
d || n();
|
|
2123
|
-
}
|
|
2124
|
-
}
|
|
2125
|
-
}), {
|
|
2126
|
-
id: t,
|
|
2127
|
-
dismiss: n,
|
|
2128
|
-
update: a
|
|
2129
|
-
};
|
|
2130
|
-
}
|
|
2131
|
-
function Cn() {
|
|
2132
|
-
const [e, t] = r.useState(P);
|
|
2133
|
-
return r.useEffect(() => (M.push(t), () => {
|
|
2134
|
-
const a = M.indexOf(t);
|
|
2135
|
-
a > -1 && M.splice(a, 1);
|
|
2136
|
-
}), [e]), {
|
|
2137
|
-
...e,
|
|
2138
|
-
toast: jn,
|
|
2139
|
-
dismiss: (a) => _({ type: "DISMISS_TOAST", toastId: a })
|
|
2140
|
-
};
|
|
2141
|
-
}
|
|
2142
|
-
function Id() {
|
|
2143
|
-
const { toasts: e } = Cn();
|
|
2144
|
-
return /* @__PURE__ */ s.jsxs(gn, { children: [
|
|
2145
|
-
e.map(function({ id: t, title: a, description: n, action: d, ...i }) {
|
|
2146
|
-
return /* @__PURE__ */ s.jsxs(aa, { ...i, children: [
|
|
2147
|
-
/* @__PURE__ */ s.jsxs("div", { className: "grid gap-1", children: [
|
|
2148
|
-
a && /* @__PURE__ */ s.jsx(oa, { children: a }),
|
|
2149
|
-
n && /* @__PURE__ */ s.jsx(ra, { children: n })
|
|
2150
|
-
] }),
|
|
2151
|
-
d,
|
|
2152
|
-
/* @__PURE__ */ s.jsx(sa, {})
|
|
2153
|
-
] }, t);
|
|
2154
|
-
}),
|
|
2155
|
-
/* @__PURE__ */ s.jsx(ta, {})
|
|
2156
|
-
] });
|
|
2157
|
-
}
|
|
2158
|
-
const na = w(
|
|
2159
|
-
"inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
2160
|
-
{
|
|
2161
|
-
variants: {
|
|
2162
|
-
variant: {
|
|
2163
|
-
default: "bg-transparent",
|
|
2164
|
-
outline: "border border-input bg-transparent shadow-sm hover:bg-accent hover:text-accent-foreground"
|
|
2165
|
-
},
|
|
2166
|
-
size: {
|
|
2167
|
-
default: "h-9 px-2 min-w-9",
|
|
2168
|
-
sm: "h-8 px-1.5 min-w-8",
|
|
2169
|
-
lg: "h-10 px-2.5 min-w-10"
|
|
2170
|
-
}
|
|
2171
|
-
},
|
|
2172
|
-
defaultVariants: {
|
|
2173
|
-
variant: "default",
|
|
2174
|
-
size: "default"
|
|
2175
|
-
}
|
|
2176
|
-
}
|
|
2177
|
-
), Rn = r.forwardRef(({ className: e, variant: t, size: a, ...n }, d) => /* @__PURE__ */ s.jsx(It, { ref: d, className: o(na({ variant: t, size: a, className: e })), ...n }));
|
|
2178
|
-
Rn.displayName = It.displayName;
|
|
2179
|
-
const da = r.createContext({
|
|
2180
|
-
size: "default",
|
|
2181
|
-
variant: "default"
|
|
2182
|
-
}), Tn = r.forwardRef(({ className: e, variant: t, size: a, children: n, ...d }, i) => /* @__PURE__ */ s.jsx(zt, { ref: i, className: o("flex items-center justify-center gap-1", e), ...d, children: /* @__PURE__ */ s.jsx(da.Provider, { value: { variant: t, size: a }, children: n }) }));
|
|
2183
|
-
Tn.displayName = zt.displayName;
|
|
2184
|
-
const kn = r.forwardRef(({ className: e, children: t, variant: a, size: n, ...d }, i) => {
|
|
2185
|
-
const m = r.useContext(da);
|
|
2186
|
-
return /* @__PURE__ */ s.jsx(
|
|
2187
|
-
Mt,
|
|
2188
|
-
{
|
|
2189
|
-
ref: i,
|
|
2190
|
-
className: o(
|
|
2191
|
-
na({
|
|
2192
|
-
variant: m.variant || a,
|
|
2193
|
-
size: m.size || n
|
|
2194
|
-
}),
|
|
2195
|
-
e
|
|
2196
|
-
),
|
|
2197
|
-
...d,
|
|
2198
|
-
children: t
|
|
2199
|
-
}
|
|
2200
|
-
);
|
|
2201
|
-
});
|
|
2202
|
-
kn.displayName = Mt.displayName;
|
|
2203
|
-
const zd = ks, Md = Ts, Pd = Ss, Sn = r.forwardRef(({ className: e, sideOffset: t = 4, ...a }, n) => /* @__PURE__ */ s.jsx(Rs, { children: /* @__PURE__ */ s.jsx(
|
|
2204
|
-
Pt,
|
|
2205
|
-
{
|
|
2206
|
-
ref: n,
|
|
2207
|
-
sideOffset: t,
|
|
2208
|
-
className: o(
|
|
2209
|
-
"z-50 overflow-hidden rounded-md bg-primary px-3 py-1.5 text-xs text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]",
|
|
2210
|
-
e
|
|
2211
|
-
),
|
|
2212
|
-
...a
|
|
2213
|
-
}
|
|
2214
|
-
) }));
|
|
2215
|
-
Sn.displayName = Pt.displayName;
|
|
2216
178
|
export {
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
179
|
+
C as Accordion,
|
|
180
|
+
b as AccordionContent,
|
|
181
|
+
c as AccordionItem,
|
|
182
|
+
T as AccordionTrigger,
|
|
183
|
+
f as Alert,
|
|
184
|
+
D as AlertDescription,
|
|
185
|
+
v as AlertDialog,
|
|
186
|
+
w as AlertDialogAction,
|
|
187
|
+
A as AlertDialogCancel,
|
|
188
|
+
P as AlertDialogContent,
|
|
189
|
+
I as AlertDialogDescription,
|
|
190
|
+
F as AlertDialogFooter,
|
|
191
|
+
L as AlertDialogHeader,
|
|
192
|
+
y as AlertDialogOverlay,
|
|
193
|
+
B as AlertDialogPortal,
|
|
194
|
+
R as AlertDialogTitle,
|
|
195
|
+
G as AlertDialogTrigger,
|
|
196
|
+
S as AlertTitle,
|
|
197
|
+
N as AspectRatio,
|
|
198
|
+
V as Avatar,
|
|
199
|
+
z as AvatarFallback,
|
|
200
|
+
O as AvatarImage,
|
|
201
|
+
U as Badge,
|
|
202
|
+
q as Breadcrumb,
|
|
203
|
+
J as BreadcrumbEllipsis,
|
|
204
|
+
K as BreadcrumbItem,
|
|
205
|
+
Q as BreadcrumbLink,
|
|
206
|
+
X as BreadcrumbList,
|
|
207
|
+
Y as BreadcrumbPage,
|
|
208
|
+
Z as BreadcrumbSeparator,
|
|
209
|
+
$ as Button,
|
|
210
|
+
oe as Calendar,
|
|
211
|
+
te as CalendarDayButton,
|
|
212
|
+
ne as Card,
|
|
213
|
+
ie as CardContent,
|
|
214
|
+
le as CardDescription,
|
|
215
|
+
pe as CardFooter,
|
|
216
|
+
me as CardHeader,
|
|
217
|
+
xe as CardTitle,
|
|
218
|
+
ge as Carousel,
|
|
219
|
+
se as CarouselContent,
|
|
220
|
+
de as CarouselItem,
|
|
221
|
+
Ce as CarouselNext,
|
|
222
|
+
be as CarouselPrevious,
|
|
223
|
+
Te as ChartContainer,
|
|
224
|
+
Me as ChartLegend,
|
|
225
|
+
fe as ChartLegendContent,
|
|
226
|
+
De as ChartStyle,
|
|
227
|
+
Se as ChartTooltip,
|
|
228
|
+
he as ChartTooltipContent,
|
|
229
|
+
we as Checkbox,
|
|
230
|
+
Pe as Collapsible,
|
|
231
|
+
Ie as CollapsibleContent,
|
|
232
|
+
Fe as CollapsibleTrigger,
|
|
233
|
+
ye as Command,
|
|
234
|
+
Be as CommandDialog,
|
|
235
|
+
Re as CommandEmpty,
|
|
236
|
+
Ge as CommandGroup,
|
|
237
|
+
He as CommandInput,
|
|
238
|
+
Ne as CommandItem,
|
|
239
|
+
ke as CommandList,
|
|
240
|
+
Ve as CommandSeparator,
|
|
241
|
+
ze as CommandShortcut,
|
|
242
|
+
Ee as ContextMenu,
|
|
243
|
+
Ue as ContextMenuCheckboxItem,
|
|
244
|
+
We as ContextMenuContent,
|
|
245
|
+
je as ContextMenuGroup,
|
|
246
|
+
qe as ContextMenuItem,
|
|
247
|
+
Je as ContextMenuLabel,
|
|
248
|
+
Ke as ContextMenuPortal,
|
|
249
|
+
Qe as ContextMenuRadioGroup,
|
|
250
|
+
Xe as ContextMenuRadioItem,
|
|
251
|
+
Ye as ContextMenuSeparator,
|
|
252
|
+
Ze as ContextMenuShortcut,
|
|
253
|
+
_e as ContextMenuSub,
|
|
254
|
+
$e as ContextMenuSubContent,
|
|
255
|
+
er as ContextMenuSubTrigger,
|
|
256
|
+
rr as ContextMenuTrigger,
|
|
257
|
+
tr as Dialog,
|
|
258
|
+
ar as DialogClose,
|
|
259
|
+
nr as DialogContent,
|
|
260
|
+
ir as DialogDescription,
|
|
261
|
+
lr as DialogFooter,
|
|
262
|
+
pr as DialogHeader,
|
|
263
|
+
mr as DialogOverlay,
|
|
264
|
+
xr as DialogPortal,
|
|
265
|
+
ur as DialogTitle,
|
|
266
|
+
gr as DialogTrigger,
|
|
267
|
+
dr as Drawer,
|
|
268
|
+
Cr as DrawerClose,
|
|
269
|
+
br as DrawerContent,
|
|
270
|
+
cr as DrawerDescription,
|
|
271
|
+
Tr as DrawerFooter,
|
|
272
|
+
Mr as DrawerHeader,
|
|
273
|
+
fr as DrawerOverlay,
|
|
274
|
+
Dr as DrawerPortal,
|
|
275
|
+
Sr as DrawerTitle,
|
|
276
|
+
hr as DrawerTrigger,
|
|
277
|
+
wr as DropdownMenu,
|
|
278
|
+
Ar as DropdownMenuCheckboxItem,
|
|
279
|
+
Pr as DropdownMenuContent,
|
|
280
|
+
Ir as DropdownMenuGroup,
|
|
281
|
+
Fr as DropdownMenuItem,
|
|
282
|
+
Lr as DropdownMenuLabel,
|
|
283
|
+
yr as DropdownMenuPortal,
|
|
284
|
+
Br as DropdownMenuRadioGroup,
|
|
285
|
+
Rr as DropdownMenuRadioItem,
|
|
286
|
+
Gr as DropdownMenuSeparator,
|
|
287
|
+
Hr as DropdownMenuShortcut,
|
|
288
|
+
Nr as DropdownMenuSub,
|
|
289
|
+
kr as DropdownMenuSubContent,
|
|
290
|
+
Vr as DropdownMenuSubTrigger,
|
|
291
|
+
zr as DropdownMenuTrigger,
|
|
292
|
+
Er as Form,
|
|
293
|
+
Ur as FormControl,
|
|
294
|
+
Wr as FormDescription,
|
|
295
|
+
jr as FormField,
|
|
296
|
+
qr as FormItem,
|
|
297
|
+
Jr as FormLabel,
|
|
298
|
+
Kr as FormMessage,
|
|
299
|
+
Yr as HoverCard,
|
|
300
|
+
Zr as HoverCardContent,
|
|
301
|
+
_r as HoverCardTrigger,
|
|
302
|
+
eo as Input,
|
|
303
|
+
oo as Label,
|
|
304
|
+
ao as Menubar,
|
|
305
|
+
no as MenubarCheckboxItem,
|
|
306
|
+
io as MenubarContent,
|
|
307
|
+
lo as MenubarGroup,
|
|
308
|
+
po as MenubarItem,
|
|
309
|
+
mo as MenubarLabel,
|
|
310
|
+
xo as MenubarMenu,
|
|
311
|
+
uo as MenubarPortal,
|
|
312
|
+
go as MenubarRadioGroup,
|
|
313
|
+
so as MenubarRadioItem,
|
|
314
|
+
Co as MenubarSeparator,
|
|
315
|
+
bo as MenubarShortcut,
|
|
316
|
+
co as MenubarSub,
|
|
317
|
+
To as MenubarSubContent,
|
|
318
|
+
Mo as MenubarSubTrigger,
|
|
319
|
+
fo as MenubarTrigger,
|
|
320
|
+
So as NavigationMenu,
|
|
321
|
+
ho as NavigationMenuContent,
|
|
322
|
+
vo as NavigationMenuIndicator,
|
|
323
|
+
wo as NavigationMenuItem,
|
|
324
|
+
Ao as NavigationMenuLink,
|
|
325
|
+
Po as NavigationMenuList,
|
|
326
|
+
Io as NavigationMenuTrigger,
|
|
327
|
+
Fo as NavigationMenuViewport,
|
|
328
|
+
Bo as Pagination,
|
|
329
|
+
Ro as PaginationContent,
|
|
330
|
+
Go as PaginationEllipsis,
|
|
331
|
+
Ho as PaginationItem,
|
|
332
|
+
No as PaginationLink,
|
|
333
|
+
ko as PaginationNext,
|
|
334
|
+
Vo as PaginationPrevious,
|
|
335
|
+
Oo as Popover,
|
|
336
|
+
Eo as PopoverAnchor,
|
|
337
|
+
Uo as PopoverContent,
|
|
338
|
+
Wo as PopoverTrigger,
|
|
339
|
+
qo as Progress,
|
|
340
|
+
Ko as RadioGroup,
|
|
341
|
+
Qo as RadioGroupItem,
|
|
342
|
+
Yo as ResizableHandle,
|
|
343
|
+
Zo as ResizablePanel,
|
|
344
|
+
_o as ResizablePanelGroup,
|
|
345
|
+
et as ScrollArea,
|
|
346
|
+
rt as ScrollBar,
|
|
347
|
+
tt as Search,
|
|
348
|
+
at as SearchTrigger,
|
|
349
|
+
it as Select,
|
|
350
|
+
lt as SelectContent,
|
|
351
|
+
pt as SelectGroup,
|
|
352
|
+
mt as SelectItem,
|
|
353
|
+
xt as SelectLabel,
|
|
354
|
+
ut as SelectScrollDownButton,
|
|
355
|
+
gt as SelectScrollUpButton,
|
|
356
|
+
st as SelectSeparator,
|
|
357
|
+
dt as SelectTrigger,
|
|
358
|
+
Ct as SelectValue,
|
|
359
|
+
ct as Separator,
|
|
360
|
+
Mt as Sheet,
|
|
361
|
+
ft as SheetClose,
|
|
362
|
+
Dt as SheetContent,
|
|
363
|
+
St as SheetDescription,
|
|
364
|
+
ht as SheetFooter,
|
|
365
|
+
vt as SheetHeader,
|
|
366
|
+
wt as SheetOverlay,
|
|
367
|
+
At as SheetPortal,
|
|
368
|
+
Pt as SheetTitle,
|
|
369
|
+
It as SheetTrigger,
|
|
370
|
+
Lt as Skeleton,
|
|
371
|
+
Bt as Slider,
|
|
372
|
+
Gt as SonnerToaster,
|
|
373
|
+
Nt as Switch,
|
|
374
|
+
Vt as Table,
|
|
375
|
+
zt as TableBody,
|
|
376
|
+
Ot as TableCaption,
|
|
377
|
+
Et as TableCell,
|
|
378
|
+
Ut as TableFooter,
|
|
379
|
+
Wt as TableHead,
|
|
380
|
+
jt as TableHeader,
|
|
381
|
+
qt as TableRow,
|
|
382
|
+
Kt as Tabs,
|
|
383
|
+
Qt as TabsContent,
|
|
384
|
+
Xt as TabsList,
|
|
385
|
+
Yt as TabsTrigger,
|
|
386
|
+
_t as Text,
|
|
387
|
+
ra as Textarea,
|
|
388
|
+
Da as ThemeProvider,
|
|
389
|
+
u as ThemeToggle,
|
|
390
|
+
sa as Toast,
|
|
391
|
+
da as ToastAction,
|
|
392
|
+
Ca as ToastClose,
|
|
393
|
+
ba as ToastDescription,
|
|
394
|
+
ca as ToastProvider,
|
|
395
|
+
Ta as ToastTitle,
|
|
396
|
+
Ma as ToastViewport,
|
|
397
|
+
ha as Toaster,
|
|
398
|
+
ta as Toggle,
|
|
399
|
+
na as ToggleGroup,
|
|
400
|
+
ia as ToggleGroupItem,
|
|
401
|
+
pa as Tooltip,
|
|
402
|
+
ma as TooltipContent,
|
|
403
|
+
xa as TooltipProvider,
|
|
404
|
+
ua as TooltipTrigger,
|
|
405
|
+
W as badgeVariants,
|
|
406
|
+
ee as buttonVariants,
|
|
407
|
+
s as cn,
|
|
408
|
+
Lo as navigationMenuTriggerStyle,
|
|
409
|
+
r as palette,
|
|
410
|
+
a as radii,
|
|
411
|
+
n as radiiNumeric,
|
|
412
|
+
l as shadows,
|
|
413
|
+
t as spacing,
|
|
414
|
+
$t as textVariants,
|
|
415
|
+
e as theme,
|
|
416
|
+
va as toast,
|
|
417
|
+
Pa as toggleVariants,
|
|
418
|
+
p as tokens,
|
|
419
|
+
i as typography,
|
|
420
|
+
Qr as useFormField,
|
|
421
|
+
wa as useToast
|
|
2453
422
|
};
|
|
2454
423
|
//# sourceMappingURL=index.es.js.map
|