@tenerife.music/ui 1.0.3 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +407 -123
- package/dist/animation/index.d.ts +0 -1
- package/dist/animation/presets.d.ts +6 -9
- package/dist/animation/tas.d.ts +2 -58
- package/dist/animation/types.d.ts +9 -48
- package/dist/animation/useInView.d.ts +36 -0
- package/dist/animation/utils.d.ts +0 -1
- package/dist/components/SectionBuilder.d.ts +0 -1
- package/dist/components/SectionBuilder.presets.d.ts +0 -1
- package/dist/components/SectionBuilder.types.d.ts +0 -1
- package/dist/components/admin/Dashboard.d.ts +0 -1
- package/dist/components/admin/UserManagement.d.ts +0 -1
- package/dist/components/auth/LoginForm.d.ts +0 -1
- package/dist/components/auth/ProfileCard.d.ts +0 -1
- package/dist/components/auth/RegisterForm.d.ts +0 -1
- package/dist/components/cards/ArtistCard/ArtistCard.d.ts +22 -0
- package/dist/components/cards/ArtistCard/ArtistCard.types.d.ts +46 -0
- package/dist/components/cards/ArtistCard/ArtistCard.variants.d.ts +83 -0
- package/dist/components/cards/ArtistCard/index.d.ts +8 -0
- package/dist/components/cards/CardBase/CardBase.d.ts +45 -0
- package/dist/components/cards/CardBase/CardBase.types.d.ts +70 -0
- package/dist/components/cards/CardBase/CardBase.variants.d.ts +38 -0
- package/dist/components/cards/CardBase/index.d.ts +8 -0
- package/dist/components/cards/CategoryCard/CategoryCard.d.ts +18 -0
- package/dist/components/cards/CategoryCard/CategoryCard.types.d.ts +38 -0
- package/dist/components/cards/CategoryCard/CategoryCard.variants.d.ts +21 -0
- package/dist/components/cards/CategoryCard/index.d.ts +7 -0
- package/dist/components/cards/EventCard/EventCard.d.ts +19 -0
- package/dist/components/cards/{EventCard.d.ts → EventCard/EventCard.types.d.ts} +13 -4
- package/dist/components/cards/EventCard/EventCard.variants.d.ts +70 -0
- package/dist/components/cards/EventCard/index.d.ts +7 -0
- package/dist/components/cards/PromoCard/PromoCard.d.ts +20 -0
- package/dist/components/cards/PromoCard/PromoCard.types.d.ts +42 -0
- package/dist/components/cards/PromoCard/PromoCard.variants.d.ts +35 -0
- package/dist/components/cards/PromoCard/index.d.ts +7 -0
- package/dist/components/cards/TicketCard/TicketCard.d.ts +19 -0
- package/dist/components/cards/TicketCard/TicketCard.types.d.ts +55 -0
- package/dist/components/cards/TicketCard/TicketCard.variants.d.ts +71 -0
- package/dist/components/cards/TicketCard/index.d.ts +7 -0
- package/dist/components/cards/VenueCard/VenueCard.d.ts +21 -0
- package/dist/components/cards/{VenueCard.d.ts → VenueCard/VenueCard.types.d.ts} +15 -7
- package/dist/components/cards/VenueCard/VenueCard.variants.d.ts +60 -0
- package/dist/components/cards/VenueCard/index.d.ts +8 -0
- package/dist/components/cards/index.d.ts +19 -0
- package/dist/components/checkbox/Checkbox.d.ts +22 -0
- package/dist/components/checkbox/Checkbox.types.d.ts +68 -0
- package/dist/components/checkbox/checkbox-variants.d.ts +13 -0
- package/dist/components/checkbox/index.d.ts +3 -0
- package/dist/components/containers/Card.d.ts +75 -0
- package/dist/components/containers/Section.d.ts +31 -0
- package/dist/components/containers/Surface.d.ts +28 -0
- package/dist/components/containers/index.d.ts +9 -0
- package/dist/components/controls/LanguageSelector.d.ts +0 -1
- package/dist/components/data/List.d.ts +0 -1
- package/dist/components/data/Table.d.ts +0 -1
- package/dist/components/data/Timeline.d.ts +0 -1
- package/dist/components/data/data-list/DataList.d.ts +29 -0
- package/dist/components/data/data-list/DataList.types.d.ts +43 -0
- package/dist/components/data/data-list/DataListItem.d.ts +20 -0
- package/dist/components/data/data-list/DataListLabel.d.ts +19 -0
- package/dist/components/data/data-list/DataListValue.d.ts +18 -0
- package/dist/components/data/data-list/index.d.ts +10 -0
- package/dist/components/data/empty-state/EmptyState.d.ts +31 -0
- package/dist/components/data/empty-state/EmptyState.types.d.ts +51 -0
- package/dist/components/data/empty-state/EmptyStateAction.d.ts +17 -0
- package/dist/components/data/empty-state/EmptyStateDescription.d.ts +17 -0
- package/dist/components/data/empty-state/EmptyStateIcon.d.ts +22 -0
- package/dist/components/data/empty-state/EmptyStateTitle.d.ts +17 -0
- package/dist/components/data/empty-state/index.d.ts +10 -0
- package/dist/components/data/index.d.ts +9 -0
- package/dist/components/data/skeleton/Skeleton.d.ts +24 -0
- package/dist/components/data/skeleton/Skeleton.types.d.ts +12 -0
- package/dist/components/data/skeleton/index.d.ts +6 -0
- package/dist/components/data/table/Table.d.ts +33 -0
- package/dist/components/data/table/Table.types.d.ts +264 -0
- package/dist/components/data/table/TableBody.d.ts +13 -0
- package/dist/components/data/table/TableCell.d.ts +13 -0
- package/dist/components/data/table/TableEmpty.d.ts +13 -0
- package/dist/components/data/table/TableExpandableContent.d.ts +14 -0
- package/dist/components/data/table/TableHead.d.ts +13 -0
- package/dist/components/data/table/TableHeader.d.ts +13 -0
- package/dist/components/data/table/TableLoadingState.d.ts +13 -0
- package/dist/components/data/table/TableRow.d.ts +13 -0
- package/dist/components/data/table/TableSortIcon.d.ts +14 -0
- package/dist/components/data/table/index.d.ts +17 -0
- package/dist/components/drawer/Drawer.d.ts +41 -0
- package/dist/components/drawer/Drawer.types.d.ts +75 -0
- package/dist/components/drawer/drawer-variants.d.ts +17 -0
- package/dist/components/drawer/index.d.ts +8 -0
- package/dist/components/dropdown/Dropdown.d.ts +38 -0
- package/dist/components/dropdown/Dropdown.types.d.ts +82 -0
- package/dist/components/dropdown/dropdown-variants.d.ts +33 -0
- package/dist/components/feedback/ConsentBanner.d.ts +0 -1
- package/dist/components/feedback/Progress.d.ts +0 -1
- package/dist/components/feedback/Skeleton.d.ts +0 -1
- package/dist/components/filters/DateRangePicker.d.ts +0 -1
- package/dist/components/filters/FilterBar.d.ts +0 -1
- package/dist/components/filters/FilterSelect.d.ts +0 -1
- package/dist/components/filters/PriceRangeSlider.d.ts +0 -1
- package/dist/components/filters/SearchFilters.d.ts +0 -1
- package/dist/components/filters/SearchInput.d.ts +1 -2
- package/dist/components/filters/types.d.ts +0 -1
- package/dist/components/icon/Icon.d.ts +32 -0
- package/dist/components/icon/Icon.types.d.ts +7 -0
- package/dist/components/icon/index.d.ts +4 -0
- package/dist/components/icons/TrendingIcon.d.ts +0 -1
- package/dist/components/image/Image.d.ts +0 -1
- package/dist/components/input/Input.d.ts +20 -0
- package/dist/components/input/Input.types.d.ts +38 -0
- package/dist/components/input/index.d.ts +3 -0
- package/dist/components/input/input-variants.d.ts +14 -0
- package/dist/components/input/legacy/input.d.ts +11 -0
- package/dist/components/layout/Box.d.ts +40 -11
- package/dist/components/layout/Column.d.ts +6 -0
- package/dist/components/layout/Container.d.ts +1 -2
- package/dist/components/layout/Flex.d.ts +29 -14
- package/dist/components/layout/Footer.d.ts +0 -1
- package/dist/components/layout/Grid.d.ts +34 -26
- package/dist/components/layout/ModeHero.d.ts +0 -1
- package/dist/components/layout/Navbar.d.ts +0 -1
- package/dist/components/layout/Row.d.ts +28 -0
- package/dist/components/layout/Section.d.ts +0 -1
- package/dist/components/layout/Stack.d.ts +24 -15
- package/dist/components/layout/Surface.d.ts +21 -0
- package/dist/components/layout/index.d.ts +10 -5
- package/dist/components/layout/layout.types.d.ts +16 -1
- package/dist/components/menus/DropdownMenu.d.ts +0 -1
- package/dist/components/menus/NavigationMenu.d.ts +0 -1
- package/dist/components/menus/Tabs.d.ts +0 -1
- package/dist/components/menus/context-menu/ContextMenuContent.d.ts +22 -0
- package/dist/components/menus/context-menu/ContextMenuGroup.d.ts +14 -0
- package/dist/components/menus/context-menu/ContextMenuItem.d.ts +14 -0
- package/dist/components/menus/context-menu/ContextMenuLabel.d.ts +14 -0
- package/dist/components/menus/context-menu/ContextMenuRoot.d.ts +47 -0
- package/dist/components/menus/context-menu/ContextMenuSeparator.d.ts +14 -0
- package/dist/components/menus/context-menu/ContextMenuTrigger.d.ts +16 -0
- package/dist/components/menus/context-menu/index.d.ts +12 -0
- package/dist/components/menus/dropdown/DropdownMenuCheckItem.d.ts +18 -0
- package/dist/components/menus/dropdown/DropdownMenuContent.d.ts +15 -0
- package/dist/components/menus/dropdown/DropdownMenuGroup.d.ts +12 -0
- package/dist/components/menus/dropdown/DropdownMenuItem.d.ts +30 -0
- package/dist/components/menus/dropdown/DropdownMenuLabel.d.ts +17 -0
- package/dist/components/menus/dropdown/DropdownMenuRadioGroup.d.ts +24 -0
- package/dist/components/menus/dropdown/DropdownMenuRadioItem.d.ts +18 -0
- package/dist/components/menus/dropdown/DropdownMenuRoot.d.ts +33 -0
- package/dist/components/menus/dropdown/DropdownMenuSeparator.d.ts +13 -0
- package/dist/components/menus/dropdown/DropdownMenuSub.d.ts +10 -0
- package/dist/components/menus/dropdown/DropdownMenuSubContent.d.ts +13 -0
- package/dist/components/menus/dropdown/DropdownMenuSubTrigger.d.ts +13 -0
- package/dist/components/menus/dropdown/DropdownMenuTrigger.d.ts +14 -0
- package/dist/components/menus/dropdown/index.d.ts +18 -0
- package/dist/components/menus/hover-card/HoverCardContent.d.ts +14 -0
- package/dist/components/menus/hover-card/HoverCardRoot.d.ts +20 -0
- package/dist/components/menus/hover-card/HoverCardTrigger.d.ts +13 -0
- package/dist/components/menus/hover-card/index.d.ts +8 -0
- package/dist/components/menus/index.d.ts +9 -0
- package/dist/components/menus/popover/PopoverArrow.d.ts +17 -0
- package/dist/components/menus/popover/PopoverContent.d.ts +24 -0
- package/dist/components/menus/popover/PopoverRoot.d.ts +43 -0
- package/dist/components/menus/popover/PopoverTrigger.d.ts +17 -0
- package/dist/components/menus/popover/index.d.ts +9 -0
- package/dist/components/modal/Modal.d.ts +70 -0
- package/dist/components/modal/modal-variants.d.ts +26 -0
- package/dist/components/modals/ConfirmDialog.d.ts +3 -3
- package/dist/components/modals/CustomDialog.d.ts +0 -1
- package/dist/components/modals/Modal.d.ts +0 -1
- package/dist/components/modals/ModalProvider.d.ts +0 -1
- package/dist/components/modals/SimpleModal.d.ts +0 -1
- package/dist/components/navigation/Breadcrumbs.d.ts +0 -1
- package/dist/components/navigation/Pagination.d.ts +0 -1
- package/dist/components/navigation/breadcrumbs/Breadcrumbs.d.ts +52 -0
- package/dist/components/navigation/breadcrumbs/index.d.ts +5 -0
- package/dist/components/navigation/index.d.ts +10 -0
- package/dist/components/navigation/pagination/Pagination.d.ts +60 -0
- package/dist/components/navigation/pagination/index.d.ts +5 -0
- package/dist/components/navigation/segmented-control/SegmentedControl.d.ts +43 -0
- package/dist/components/navigation/segmented-control/index.d.ts +5 -0
- package/dist/components/navigation/stepper/Stepper.d.ts +129 -0
- package/dist/components/navigation/stepper/index.d.ts +5 -0
- package/dist/components/navigation/tabs/Tabs.d.ts +73 -0
- package/dist/components/navigation/tabs/index.d.ts +5 -0
- package/dist/components/notifications/NotificationCenter.DismissAll.d.ts +21 -0
- package/dist/components/notifications/NotificationCenter.GroupHeader.d.ts +23 -0
- package/dist/components/notifications/NotificationCenter.Item.d.ts +24 -0
- package/dist/components/notifications/NotificationCenter.List.d.ts +22 -0
- package/dist/components/notifications/NotificationCenter.Panel.d.ts +32 -0
- package/dist/components/notifications/NotificationCenter.Provider.d.ts +31 -0
- package/dist/components/notifications/NotificationCenter.Trigger.d.ts +15 -0
- package/dist/components/notifications/NotificationCenter.d.ts +27 -0
- package/dist/components/notifications/NotificationCenter.types.d.ts +89 -0
- package/dist/components/notifications/index.d.ts +23 -0
- package/dist/components/notifications/useNotificationCenter.d.ts +47 -0
- package/dist/components/overlays/Backdrop.d.ts +24 -0
- package/dist/components/overlays/Dialog.d.ts +66 -0
- package/dist/components/overlays/Modal.d.ts +60 -0
- package/dist/components/overlays/OverlayPortal.d.ts +0 -1
- package/dist/components/overlays/Popover.d.ts +2 -3
- package/dist/components/overlays/Portal.d.ts +29 -0
- package/dist/components/overlays/Toast.d.ts +36 -0
- package/dist/components/overlays/ToastProvider.d.ts +58 -0
- package/dist/components/overlays/ToastViewport.d.ts +27 -0
- package/dist/components/overlays/Tooltip.d.ts +2 -3
- package/dist/components/overlays/index.d.ts +13 -0
- package/dist/components/overlays/utils/FocusLock.d.ts +30 -0
- package/dist/components/overlays/utils/ScrollLock.d.ts +11 -0
- package/dist/components/overlays/utils/positioning.d.ts +68 -0
- package/dist/components/primitives/Badge.d.ts +1 -2
- package/dist/components/primitives/Button.d.ts +0 -1
- package/dist/components/primitives/Card.d.ts +0 -1
- package/dist/components/primitives/Divider.d.ts +0 -1
- package/dist/components/primitives/Input.d.ts +2 -3
- package/dist/components/primitives/Label.d.ts +0 -1
- package/dist/components/primitives/Link.d.ts +1 -2
- package/dist/components/primitives/ThemeSwitch.d.ts +3 -3
- package/dist/components/radio/Radio.d.ts +23 -0
- package/dist/components/radio/Radio.types.d.ts +63 -0
- package/dist/components/radio/RadioGroup.d.ts +20 -0
- package/dist/components/radio/RadioGroup.types.d.ts +61 -0
- package/dist/components/radio/index.d.ts +5 -0
- package/dist/components/radio/radio-variants.d.ts +13 -0
- package/dist/components/search/SearchBar.d.ts +0 -1
- package/dist/components/sections/ArticlesSection.d.ts +0 -1
- package/dist/components/sections/CTASection.d.ts +0 -1
- package/dist/components/sections/FeatureSection.d.ts +0 -1
- package/dist/components/sections/HeroSection.d.ts +0 -1
- package/dist/components/sections/TrendingSection.d.ts +0 -1
- package/dist/components/select/Select.d.ts +38 -0
- package/dist/components/select/Select.types.d.ts +107 -0
- package/dist/components/select/index.d.ts +5 -0
- package/dist/components/select/legacy/select.d.ts +11 -0
- package/dist/components/select/select-variants.d.ts +32 -0
- package/dist/components/skeletons/EventCardSkeleton.d.ts +0 -1
- package/dist/components/skeletons/VenueCardSkeleton.d.ts +0 -1
- package/dist/components/switch/Switch.d.ts +24 -0
- package/dist/components/switch/Switch.types.d.ts +53 -0
- package/dist/components/switch/index.d.ts +3 -0
- package/dist/components/switch/switch-variants.d.ts +34 -0
- package/dist/components/textarea/Textarea.d.ts +21 -0
- package/dist/components/textarea/Textarea.types.d.ts +40 -0
- package/dist/components/textarea/index.d.ts +3 -0
- package/dist/components/textarea/legacy/textarea.d.ts +11 -0
- package/dist/components/textarea/textarea-variants.d.ts +14 -0
- package/dist/components/toasts/Toast.d.ts +1 -2
- package/dist/components/toasts/ToastProvider.d.ts +0 -1
- package/dist/components/ui/alert.d.ts +9 -0
- package/dist/components/ui/body.d.ts +12 -0
- package/dist/components/ui/button.d.ts +2 -3
- package/dist/components/ui/caption.d.ts +11 -0
- package/dist/components/ui/card.d.ts +0 -1
- package/dist/components/ui/code.d.ts +11 -0
- package/dist/components/ui/dialog.d.ts +0 -1
- package/dist/components/ui/display.d.ts +12 -0
- package/dist/components/ui/field.d.ts +45 -0
- package/dist/components/ui/heading.d.ts +12 -0
- package/dist/components/ui/label.d.ts +9 -3
- package/dist/components/ui/lead.d.ts +11 -0
- package/dist/components/ui/text.d.ts +18 -0
- package/dist/components/ui/toast.d.ts +0 -1
- package/dist/components/ui/toaster.d.ts +0 -1
- package/dist/components/ui/tooltip.d.ts +0 -1
- package/dist/hooks/use-toast.d.ts +0 -1
- package/dist/hooks/useDebounce.d.ts +0 -1
- package/dist/hooks/useModal.d.ts +0 -1
- package/dist/hooks/useToast.d.ts +0 -1
- package/dist/icons/IconArrowRight.d.ts +6 -0
- package/dist/icons/IconCalendar.d.ts +6 -0
- package/dist/icons/IconCheck.d.ts +6 -0
- package/dist/icons/IconChevronDown.d.ts +6 -0
- package/dist/icons/IconChevronRight.d.ts +6 -0
- package/dist/icons/IconClose.d.ts +6 -0
- package/dist/icons/IconError.d.ts +6 -0
- package/dist/icons/IconInfo.d.ts +6 -0
- package/dist/icons/IconLocation.d.ts +6 -0
- package/dist/icons/IconMenu.d.ts +6 -0
- package/dist/icons/IconSearch.d.ts +6 -0
- package/dist/icons/IconSuccess.d.ts +6 -0
- package/dist/icons/IconWarning.d.ts +6 -0
- package/dist/icons/icon.types.d.ts +25 -0
- package/dist/icons/index.d.ts +34 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +37 -78
- package/dist/index.mjs +7675 -5926
- package/dist/lib/a11y.d.ts +0 -1
- package/dist/lib/responsive-props.d.ts +0 -1
- package/dist/lib/utils.d.ts +0 -1
- package/dist/{motion-CuHacXY1.js → motion-CzQhSEqk.js} +122 -106
- package/dist/motion-DJx1TbXJ.cjs +2 -0
- package/dist/preset.cjs +1 -1
- package/dist/preset.d.ts +0 -1
- package/dist/preset.mjs +172 -53
- package/dist/styles.cjs +2 -0
- package/dist/styles.css +1 -1
- package/dist/styles.d.ts +0 -0
- package/dist/styles.mjs +1 -0
- package/dist/theme/ThemeProvider.d.ts +1 -2
- package/dist/theme/applyMode.d.ts +0 -1
- package/dist/theme/colors.d.ts +6 -71
- package/dist/theme/index.cjs +1 -1
- package/dist/theme/index.d.ts +1 -2
- package/dist/theme/index.mjs +1352 -224
- package/dist/theme/loader.d.ts +0 -1
- package/dist/theme/motion/gestures.d.ts +76 -0
- package/dist/theme/motion/useReducedMotion.d.ts +11 -0
- package/dist/theme/motion.d.ts +0 -1
- package/dist/theme/registry.d.ts +0 -1
- package/dist/theme/schema.d.ts +0 -1
- package/dist/theme/spacing.d.ts +0 -1
- package/dist/theme/typography.d.ts +0 -1
- package/dist/themes/brand.d.ts +0 -1
- package/dist/themes/brand_engine.d.ts +7 -1
- package/dist/themes/dark.d.ts +0 -1
- package/dist/themes/default.d.ts +0 -1
- package/dist/themes/index.d.ts +0 -1
- package/dist/themes/minimal.d.ts +0 -1
- package/dist/themes/neon.d.ts +0 -1
- package/dist/themes/types.d.ts +0 -1
- package/dist/tokens/colors.d.ts +14 -20
- package/dist/tokens/components/alert.d.ts +74 -0
- package/dist/tokens/components/button.d.ts +130 -0
- package/dist/tokens/components/card.d.ts +91 -0
- package/dist/tokens/components/checkbox.d.ts +161 -0
- package/dist/tokens/components/data.d.ts +227 -0
- package/dist/tokens/components/domain.d.ts +379 -0
- package/dist/tokens/components/dropdown.d.ts +146 -0
- package/dist/tokens/components/icon.d.ts +57 -0
- package/dist/tokens/components/index.d.ts +31 -0
- package/dist/tokens/components/input.d.ts +284 -0
- package/dist/tokens/components/menu.d.ts +114 -0
- package/dist/tokens/components/motion.d.ts +103 -0
- package/dist/tokens/components/navigation.d.ts +181 -0
- package/dist/tokens/components/notifications.d.ts +159 -0
- package/dist/tokens/components/overlay.d.ts +227 -0
- package/dist/tokens/components/popover.d.ts +84 -0
- package/dist/tokens/components/radio.d.ts +149 -0
- package/dist/tokens/components/section.d.ts +41 -0
- package/dist/tokens/components/surface.d.ts +94 -0
- package/dist/tokens/components/switch.d.ts +208 -0
- package/dist/tokens/components/text.d.ts +68 -0
- package/dist/tokens/components/toast.d.ts +146 -0
- package/dist/tokens/components/tooltip.d.ts +52 -0
- package/dist/tokens/css-variables.d.ts +0 -20
- package/dist/tokens/index.cjs +3 -3
- package/dist/tokens/index.d.ts +2 -1
- package/dist/tokens/index.mjs +3640 -821
- package/dist/tokens/motion/v2.d.ts +342 -0
- package/dist/tokens/motion.d.ts +55 -5
- package/dist/tokens/opacity.d.ts +22 -0
- package/dist/tokens/radius.d.ts +22 -2
- package/dist/tokens/shadows.d.ts +64 -6
- package/dist/tokens/spacing.d.ts +47 -2
- package/dist/tokens/theme.d.ts +119 -0
- package/dist/tokens/typography.d.ts +141 -24
- package/dist/typography-C-Nb4y0o.cjs +2 -0
- package/dist/typography-DHym9KAP.js +1196 -0
- package/package.json +31 -22
- package/dist/ThemeProvider-CaUX_Jam.cjs +0 -2
- package/dist/ThemeProvider-ltuW-773.js +0 -1227
- package/dist/animation/index.d.ts.map +0 -1
- package/dist/animation/presets.d.ts.map +0 -1
- package/dist/animation/tas.d.ts.map +0 -1
- package/dist/animation/types.d.ts.map +0 -1
- package/dist/animation/utils.d.ts.map +0 -1
- package/dist/components/SectionBuilder.d.ts.map +0 -1
- package/dist/components/SectionBuilder.presets.d.ts.map +0 -1
- package/dist/components/SectionBuilder.types.d.ts.map +0 -1
- package/dist/components/admin/Dashboard.d.ts.map +0 -1
- package/dist/components/admin/UserManagement.d.ts.map +0 -1
- package/dist/components/auth/LoginForm.d.ts.map +0 -1
- package/dist/components/auth/ProfileCard.d.ts.map +0 -1
- package/dist/components/auth/RegisterForm.d.ts.map +0 -1
- package/dist/components/cards/EventCard.d.ts.map +0 -1
- package/dist/components/cards/VenueCard.d.ts.map +0 -1
- package/dist/components/controls/LanguageSelector.d.ts.map +0 -1
- package/dist/components/data/List.d.ts.map +0 -1
- package/dist/components/data/Table.d.ts.map +0 -1
- package/dist/components/data/Timeline.d.ts.map +0 -1
- package/dist/components/feedback/Alert.d.ts +0 -10
- package/dist/components/feedback/Alert.d.ts.map +0 -1
- package/dist/components/feedback/ConsentBanner.d.ts.map +0 -1
- package/dist/components/feedback/Progress.d.ts.map +0 -1
- package/dist/components/feedback/Skeleton.d.ts.map +0 -1
- package/dist/components/filters/DateRangePicker.d.ts.map +0 -1
- package/dist/components/filters/FilterBar.d.ts.map +0 -1
- package/dist/components/filters/FilterSelect.d.ts.map +0 -1
- package/dist/components/filters/PriceRangeSlider.d.ts.map +0 -1
- package/dist/components/filters/SearchFilters.d.ts.map +0 -1
- package/dist/components/filters/SearchInput.d.ts.map +0 -1
- package/dist/components/filters/types.d.ts.map +0 -1
- package/dist/components/forms/FormInput.d.ts +0 -12
- package/dist/components/forms/FormInput.d.ts.map +0 -1
- package/dist/components/forms/FormSelect.d.ts +0 -18
- package/dist/components/forms/FormSelect.d.ts.map +0 -1
- package/dist/components/forms/FormTextarea.d.ts +0 -11
- package/dist/components/forms/FormTextarea.d.ts.map +0 -1
- package/dist/components/icons/TrendingIcon.d.ts.map +0 -1
- package/dist/components/image/Image.d.ts.map +0 -1
- package/dist/components/layout/Box.d.ts.map +0 -1
- package/dist/components/layout/Container.d.ts.map +0 -1
- package/dist/components/layout/Flex.d.ts.map +0 -1
- package/dist/components/layout/Footer.d.ts.map +0 -1
- package/dist/components/layout/Grid.d.ts.map +0 -1
- package/dist/components/layout/ModeHero.d.ts.map +0 -1
- package/dist/components/layout/Navbar.d.ts.map +0 -1
- package/dist/components/layout/Section.d.ts.map +0 -1
- package/dist/components/layout/Stack.d.ts.map +0 -1
- package/dist/components/layout/index.d.ts.map +0 -1
- package/dist/components/layout/layout.types.d.ts.map +0 -1
- package/dist/components/menus/DropdownMenu.d.ts.map +0 -1
- package/dist/components/menus/NavigationMenu.d.ts.map +0 -1
- package/dist/components/menus/Tabs.d.ts.map +0 -1
- package/dist/components/modals/ConfirmDialog.d.ts.map +0 -1
- package/dist/components/modals/CustomDialog.d.ts.map +0 -1
- package/dist/components/modals/Modal.d.ts.map +0 -1
- package/dist/components/modals/ModalProvider.d.ts.map +0 -1
- package/dist/components/modals/SimpleModal.d.ts.map +0 -1
- package/dist/components/navigation/Breadcrumbs.d.ts.map +0 -1
- package/dist/components/navigation/Pagination.d.ts.map +0 -1
- package/dist/components/overlays/OverlayPortal.d.ts.map +0 -1
- package/dist/components/overlays/Popover.d.ts.map +0 -1
- package/dist/components/overlays/Tooltip.d.ts.map +0 -1
- package/dist/components/primitives/Badge.d.ts.map +0 -1
- package/dist/components/primitives/Button.d.ts.map +0 -1
- package/dist/components/primitives/Card.d.ts.map +0 -1
- package/dist/components/primitives/Divider.d.ts.map +0 -1
- package/dist/components/primitives/Input.d.ts.map +0 -1
- package/dist/components/primitives/Label.d.ts.map +0 -1
- package/dist/components/primitives/Link.d.ts.map +0 -1
- package/dist/components/primitives/ThemeSwitch.d.ts.map +0 -1
- package/dist/components/primitives/Typography.d.ts +0 -21
- package/dist/components/primitives/Typography.d.ts.map +0 -1
- package/dist/components/search/SearchBar.d.ts.map +0 -1
- package/dist/components/sections/ArticlesSection.d.ts.map +0 -1
- package/dist/components/sections/CTASection.d.ts.map +0 -1
- package/dist/components/sections/FeatureSection.d.ts.map +0 -1
- package/dist/components/sections/HeroSection.d.ts.map +0 -1
- package/dist/components/sections/TrendingSection.d.ts.map +0 -1
- package/dist/components/skeletons/EventCardSkeleton.d.ts.map +0 -1
- package/dist/components/skeletons/VenueCardSkeleton.d.ts.map +0 -1
- package/dist/components/toasts/Toast.d.ts.map +0 -1
- package/dist/components/toasts/ToastProvider.d.ts.map +0 -1
- package/dist/components/ui/button.d.ts.map +0 -1
- package/dist/components/ui/card.d.ts.map +0 -1
- package/dist/components/ui/dialog.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/label.d.ts.map +0 -1
- package/dist/components/ui/toast.d.ts.map +0 -1
- package/dist/components/ui/toaster.d.ts.map +0 -1
- package/dist/components/ui/tooltip.d.ts.map +0 -1
- package/dist/hooks/use-toast.d.ts.map +0 -1
- package/dist/hooks/useDebounce.d.ts.map +0 -1
- package/dist/hooks/useModal.d.ts.map +0 -1
- package/dist/hooks/useToast.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/lib/a11y.d.ts.map +0 -1
- package/dist/lib/responsive-props.d.ts.map +0 -1
- package/dist/lib/utils.d.ts.map +0 -1
- package/dist/motion-4SRNkZlz.cjs +0 -2
- package/dist/preset.d.ts.map +0 -1
- package/dist/radius-CAu4qr9R.js +0 -185
- package/dist/radius-Cz6tayZG.cjs +0 -2
- package/dist/test/animation-utils.d.ts +0 -60
- package/dist/test/animation-utils.d.ts.map +0 -1
- package/dist/test/setup.d.ts +0 -1
- package/dist/test/setup.d.ts.map +0 -1
- package/dist/theme/ThemeProvider.d.ts.map +0 -1
- package/dist/theme/applyMode.d.ts.map +0 -1
- package/dist/theme/colors.d.ts.map +0 -1
- package/dist/theme/index.d.ts.map +0 -1
- package/dist/theme/loader.d.ts.map +0 -1
- package/dist/theme/motion.d.ts.map +0 -1
- package/dist/theme/registry.d.ts.map +0 -1
- package/dist/theme/schema.d.ts.map +0 -1
- package/dist/theme/spacing.d.ts.map +0 -1
- package/dist/theme/typography.d.ts.map +0 -1
- package/dist/themes/brand.d.ts.map +0 -1
- package/dist/themes/brand_engine.d.ts.map +0 -1
- package/dist/themes/dark.d.ts.map +0 -1
- package/dist/themes/default.d.ts.map +0 -1
- package/dist/themes/index.d.ts.map +0 -1
- package/dist/themes/minimal.d.ts.map +0 -1
- package/dist/themes/neon.d.ts.map +0 -1
- package/dist/themes/types.d.ts.map +0 -1
- package/dist/tokens/colors.d.ts.map +0 -1
- package/dist/tokens/css-variables.d.ts.map +0 -1
- package/dist/tokens/index.d.ts.map +0 -1
- package/dist/tokens/motion.d.ts.map +0 -1
- package/dist/tokens/radius.d.ts.map +0 -1
- package/dist/tokens/shadows.d.ts.map +0 -1
- package/dist/tokens/spacing.d.ts.map +0 -1
- package/dist/tokens/typography.d.ts.map +0 -1
package/dist/tokens/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../motion-4SRNkZlz.cjs"),h=require("../radius-Cz6tayZG.cjs"),l={none:"none",xs:"0 1px 2px 0 rgb(0 0 0 / 0.05)",sm:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)"},p={xs:"0 1px 2px 0 hsl(var(--primary-500) / 0.15)",sm:"0 2px 4px 0 hsl(var(--primary-500) / 0.2)",md:"0 4px 8px 0 hsl(var(--primary-500) / 0.3)",lg:"0 8px 16px 0 hsl(var(--primary-500) / 0.4)",xl:"0 12px 24px 0 hsl(var(--primary-500) / 0.5)","2xl":"0 16px 32px 0 hsl(var(--primary-500) / 0.6)"},g={xs:"0 1px 2px 0 hsl(var(--accent-500) / 0.15)",sm:"0 2px 4px 0 hsl(var(--accent-500) / 0.2)",md:"0 4px 8px 0 hsl(var(--accent-500) / 0.3)",lg:"0 8px 16px 0 hsl(var(--accent-500) / 0.4)",xl:"0 12px 24px 0 hsl(var(--accent-500) / 0.5)","2xl":"0 16px 32px 0 hsl(var(--accent-500) / 0.6)"},c={"glow-primary":"0 0 20px 0 hsl(var(--primary-500) / 0.5), 0 0 40px 0 hsl(var(--primary-500) / 0.3)","glow-primary-subtle":"0 0 8px 0 hsl(var(--primary-500) / 0.3)","glow-primary-medium":"0 0 16px 0 hsl(var(--primary-500) / 0.5)","glow-primary-strong":"0 0 24px 0 hsl(var(--primary-500) / 0.6)","glow-accent":"0 0 20px 0 hsl(var(--accent-500) / 0.5), 0 0 40px 0 hsl(var(--accent-500) / 0.3)","glow-accent-subtle":"0 0 8px 0 hsl(var(--accent-500) / 0.3)","glow-accent-medium":"0 0 16px 0 hsl(var(--accent-500) / 0.5)","glow-accent-strong":"0 0 24px 0 hsl(var(--accent-500) / 0.6)"},x={default:"0 0 0 3px hsl(var(--ring) / 0.5)",primary:"0 0 0 3px hsl(var(--primary-500) / 0.3)",accent:"0 0 0 3px hsl(var(--accent-500) / 0.3)","focus-primary":"0 0 0 3px hsl(var(--primary-500) / 0.3)","focus-accent":"0 0 0 3px hsl(var(--accent-500) / 0.3)"},d={"--shadow-none":l.none,"--shadow-xs":l.xs,"--shadow-sm":l.sm,"--shadow-md":l.md,"--shadow-lg":l.lg,"--shadow-xl":l.xl,"--shadow-2xl":l["2xl"],"--shadow-primary-xs":p.xs,"--shadow-primary-sm":p.sm,"--shadow-primary-md":p.md,"--shadow-primary-lg":p.lg,"--shadow-primary-xl":p.xl,"--shadow-primary-2xl":p["2xl"],"--shadow-accent-xs":g.xs,"--shadow-accent-sm":g.sm,"--shadow-accent-md":g.md,"--shadow-accent-lg":g.lg,"--shadow-accent-xl":g.xl,"--shadow-accent-2xl":g["2xl"],"--glow-primary":c["glow-primary"],"--glow-primary-subtle":c["glow-primary-subtle"],"--glow-primary-medium":c["glow-primary-medium"],"--glow-primary-strong":c["glow-primary-strong"],"--glow-accent":c["glow-accent"],"--glow-accent-subtle":c["glow-accent-subtle"],"--glow-accent-medium":c["glow-accent-medium"],"--glow-accent-strong":c["glow-accent-strong"],"--focus-ring-default":x.default,"--focus-ring-primary":x.primary,"--focus-ring-accent":x.accent,"--focus-primary":x["focus-primary"],"--focus-accent":x["focus-accent"]},v={card:{default:l.sm,hover:l.md,active:l.xs,selected:p.sm},button:{default:l.xs,hover:l.sm,active:l.none,focus:x.primary},"button-accent":{default:g.xs,hover:g.sm,active:l.none,focus:x.accent},modal:{default:l.xl,backdrop:"rgba(0, 0, 0, 0.5)"},dropdown:{default:l.md,hover:l.lg},tooltip:{default:l.sm},toast:{default:l.lg,success:"0 10px 15px -3px hsl(var(--success) / 0.3)",error:"0 10px 15px -3px hsl(var(--error) / 0.3)"}},H={boxShadow:{none:l.none,xs:l.xs,sm:l.sm,md:l.md,lg:l.lg,xl:l.xl,"2xl":l["2xl"],"primary-xs":p.xs,"primary-sm":p.sm,"primary-md":p.md,"primary-lg":p.lg,"primary-xl":p.xl,"primary-2xl":p["2xl"],"accent-xs":g.xs,"accent-sm":g.sm,"accent-md":g.md,"accent-lg":g.lg,"accent-xl":g.xl,"accent-2xl":g["2xl"],"glow-primary":c["glow-primary"],"glow-primary-subtle":c["glow-primary-subtle"],"glow-primary-medium":c["glow-primary-medium"],"glow-primary-strong":c["glow-primary-strong"],"glow-accent":c["glow-accent"],"glow-accent-subtle":c["glow-accent-subtle"],"glow-accent-medium":c["glow-accent-medium"],"glow-accent-strong":c["glow-accent-strong"],"focus-ring":x.default,"focus-primary":x["focus-primary"],"focus-accent":x["focus-accent"]},ringWidth:{DEFAULT:"3px",sm:"2px",md:"3px",lg:"4px"},ringColor:{DEFAULT:"hsl(var(--ring) / 0.5)",primary:"hsl(var(--primary-500) / 0.3)",accent:"hsl(var(--accent-500) / 0.3)","focus-primary":"hsl(var(--primary-500) / 0.3)","focus-accent":"hsl(var(--accent-500) / 0.3)"}},t={0:"0",px:"1px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},m={xs:t[1],sm:t[2],md:t[4],lg:t[6],xl:t[8],"2xl":t[12],"3xl":t[16],"4xl":t[20],"5xl":t[24],none:t[0]},i={section:{xs:t[6],sm:t[8],md:t[12],lg:t[16],xl:t[20],"2xl":t[24]},container:{xs:t[2],sm:t[4],md:t[6],lg:t[8],xl:t[12]},grid:{xs:t[2],sm:t[4],md:t[6],lg:t[8],xl:t[12]},stack:{xs:t[1],sm:t[2],md:t[4],lg:t[6],xl:t[8]},component:{xs:t[1],sm:t[2],md:t[4],lg:t[6],xl:t[8]}},S={"--spacing-0":t[0],"--spacing-px":t.px,"--spacing-0-5":t[.5],"--spacing-1":t[1],"--spacing-1-5":t[1.5],"--spacing-2":t[2],"--spacing-2-5":t[2.5],"--spacing-3":t[3],"--spacing-3-5":t[3.5],"--spacing-4":t[4],"--spacing-5":t[5],"--spacing-6":t[6],"--spacing-7":t[7],"--spacing-8":t[8],"--spacing-9":t[9],"--spacing-10":t[10],"--spacing-11":t[11],"--spacing-12":t[12],"--spacing-14":t[14],"--spacing-16":t[16],"--spacing-20":t[20],"--spacing-24":t[24],"--spacing-xs":m.xs,"--spacing-sm":m.sm,"--spacing-md":m.md,"--spacing-lg":m.lg,"--spacing-xl":m.xl,"--spacing-2xl":m["2xl"],"--spacing-3xl":m["3xl"],"--spacing-4xl":m["4xl"],"--spacing-5xl":m["5xl"],"--spacing-none":m.none,"--layout-section-xs":i.section.xs,"--layout-section-sm":i.section.sm,"--layout-section-md":i.section.md,"--layout-section-lg":i.section.lg,"--layout-section-xl":i.section.xl,"--layout-section-2xl":i.section["2xl"],"--layout-container-xs":i.container.xs,"--layout-container-sm":i.container.sm,"--layout-container-md":i.container.md,"--layout-container-lg":i.container.lg,"--layout-container-xl":i.container.xl,"--layout-grid-xs":i.grid.xs,"--layout-grid-sm":i.grid.sm,"--layout-grid-md":i.grid.md,"--layout-grid-lg":i.grid.lg,"--layout-grid-xl":i.grid.xl,"--layout-stack-xs":i.stack.xs,"--layout-stack-sm":i.stack.sm,"--layout-stack-md":i.stack.md,"--layout-stack-lg":i.stack.lg,"--layout-stack-xl":i.stack.xl,"--layout-component-xs":i.component.xs,"--layout-component-sm":i.component.sm,"--layout-component-md":i.component.md,"--layout-component-lg":i.component.lg,"--layout-component-xl":i.component.xl},j={spacing:{...t,xs:m.xs,sm:m.sm,md:m.md,lg:m.lg,xl:m.xl,"2xl":m["2xl"],"3xl":m["3xl"],"4xl":m["4xl"],"5xl":m["5xl"],none:m.none}},n={sans:["Inter","ui-sans-serif","system-ui","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Helvetica Neue","Arial","Noto Sans","sans-serif","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"],satoshi:["Satoshi","Inter","ui-sans-serif","system-ui","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","sans-serif"],display:["Clash Display","Inter","ui-sans-serif","system-ui","-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","sans-serif"],serif:["ui-serif","Georgia","Cambria","Times New Roman","Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New","monospace"]},e={xs:["clamp(0.75rem, 0.7rem + 0.125vw, 0.875rem)",{lineHeight:"1rem",letterSpacing:"0.05em"}],sm:["clamp(0.875rem, 0.8rem + 0.25vw, 1rem)",{lineHeight:"1.25rem",letterSpacing:"0.025em"}],base:["clamp(1rem, 0.95rem + 0.25vw, 1.125rem)",{lineHeight:"1.5rem",letterSpacing:"0em"}],lg:["clamp(1.125rem, 1rem + 0.5vw, 1.25rem)",{lineHeight:"1.75rem",letterSpacing:"-0.025em"}],xl:["clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem)",{lineHeight:"1.75rem",letterSpacing:"-0.025em"}],"2xl":["clamp(1.5rem, 1.25rem + 1.25vw, 2rem)",{lineHeight:"2rem",letterSpacing:"-0.05em"}],"3xl":["clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem)",{lineHeight:"2.25rem",letterSpacing:"-0.05em"}],"4xl":["clamp(2.25rem, 1.75rem + 2.5vw, 3rem)",{lineHeight:"2.5rem",letterSpacing:"-0.025em"}],"5xl":["clamp(3rem, 2rem + 5vw, 4rem)",{lineHeight:"1",letterSpacing:"-0.025em"}],"6xl":["clamp(3.75rem, 2.5rem + 6.25vw, 5rem)",{lineHeight:"1",letterSpacing:"-0.05em"}],"7xl":["clamp(4.5rem, 3rem + 7.5vw, 6rem)",{lineHeight:"1",letterSpacing:"-0.05em"}],"8xl":["clamp(6rem, 4rem + 10vw, 8rem)",{lineHeight:"1",letterSpacing:"-0.05em"}],"9xl":["clamp(8rem, 5rem + 15vw, 12rem)",{lineHeight:"1",letterSpacing:"-0.05em"}]},a={thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},s={none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2"},r={tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},y={"--font-sans":n.sans.join(", "),"--font-satoshi":n.satoshi.join(", "),"--font-display":n.display.join(", "),"--font-serif":n.serif.join(", "),"--font-mono":n.mono.join(", "),"--font-size-xs":e.xs[0],"--font-size-sm":e.sm[0],"--font-size-base":e.base[0],"--font-size-lg":e.lg[0],"--font-size-xl":e.xl[0],"--font-size-2xl":e["2xl"][0],"--font-size-3xl":e["3xl"][0],"--font-size-4xl":e["4xl"][0],"--font-size-5xl":e["5xl"][0],"--font-size-6xl":e["6xl"][0],"--font-weight-thin":a.thin,"--font-weight-extralight":a.extralight,"--font-weight-light":a.light,"--font-weight-normal":a.normal,"--font-weight-medium":a.medium,"--font-weight-semibold":a.semibold,"--font-weight-bold":a.bold,"--font-weight-extrabold":a.extrabold,"--font-weight-black":a.black,"--line-height-none":s.none,"--line-height-tight":s.tight,"--line-height-snug":s.snug,"--line-height-normal":s.normal,"--line-height-relaxed":s.relaxed,"--line-height-loose":s.loose,"--letter-spacing-tighter":r.tighter,"--letter-spacing-tight":r.tight,"--letter-spacing-normal":r.normal,"--letter-spacing-wide":r.wide,"--letter-spacing-wider":r.wider,"--letter-spacing-widest":r.widest},k={display:{fontFamily:n.display.join(", "),fontSize:e["6xl"][0],fontWeight:a.bold,lineHeight:s.none,letterSpacing:r.tight},h1:{fontFamily:n.display.join(", "),fontSize:e["5xl"][0],fontWeight:a.bold,lineHeight:s.tight,letterSpacing:r.tight},h2:{fontFamily:n.display.join(", "),fontSize:e["4xl"][0],fontWeight:a.bold,lineHeight:s.tight,letterSpacing:r.tight},h3:{fontFamily:n.sans.join(", "),fontSize:e["3xl"][0],fontWeight:a.semibold,lineHeight:s.snug,letterSpacing:r.normal},h4:{fontFamily:n.sans.join(", "),fontSize:e["2xl"][0],fontWeight:a.semibold,lineHeight:s.snug,letterSpacing:r.normal},h5:{fontFamily:n.sans.join(", "),fontSize:e.xl[0],fontWeight:a.medium,lineHeight:s.normal,letterSpacing:r.normal},h6:{fontFamily:n.sans.join(", "),fontSize:e.lg[0],fontWeight:a.medium,lineHeight:s.normal,letterSpacing:r.normal},body:{fontFamily:n.sans.join(", "),fontSize:e.base[0],fontWeight:a.normal,lineHeight:s.relaxed,letterSpacing:r.normal},"body-sm":{fontFamily:n.sans.join(", "),fontSize:e.sm[0],fontWeight:a.normal,lineHeight:s.normal,letterSpacing:r.normal},"body-xs":{fontFamily:n.sans.join(", "),fontSize:e.xs[0],fontWeight:a.normal,lineHeight:s.normal,letterSpacing:r.wide},label:{fontFamily:n.sans.join(", "),fontSize:e.sm[0],fontWeight:a.medium,lineHeight:s.normal,letterSpacing:r.wide},"label-sm":{fontFamily:n.sans.join(", "),fontSize:e.xs[0],fontWeight:a.medium,lineHeight:s.normal,letterSpacing:r.wider},caption:{fontFamily:n.sans.join(", "),fontSize:e.xs[0],fontWeight:a.normal,lineHeight:s.normal,letterSpacing:r.wide}},z={fontFamily:{sans:[...n.sans],satoshi:[...n.satoshi],display:[...n.display],serif:[...n.serif],mono:[...n.mono]},fontSize:{xs:[e.xs[0],{lineHeight:e.xs[1].lineHeight,letterSpacing:e.xs[1].letterSpacing}],sm:[e.sm[0],{lineHeight:e.sm[1].lineHeight,letterSpacing:e.sm[1].letterSpacing}],base:[e.base[0],{lineHeight:e.base[1].lineHeight,letterSpacing:e.base[1].letterSpacing}],lg:[e.lg[0],{lineHeight:e.lg[1].lineHeight,letterSpacing:e.lg[1].letterSpacing}],xl:[e.xl[0],{lineHeight:e.xl[1].lineHeight,letterSpacing:e.xl[1].letterSpacing}],"2xl":[e["2xl"][0],{lineHeight:e["2xl"][1].lineHeight,letterSpacing:e["2xl"][1].letterSpacing}],"3xl":[e["3xl"][0],{lineHeight:e["3xl"][1].lineHeight,letterSpacing:e["3xl"][1].letterSpacing}],"4xl":[e["4xl"][0],{lineHeight:e["4xl"][1].lineHeight,letterSpacing:e["4xl"][1].letterSpacing}],"5xl":[e["5xl"][0],{lineHeight:e["5xl"][1].lineHeight,letterSpacing:e["5xl"][1].letterSpacing}],"6xl":[e["6xl"][0],{lineHeight:e["6xl"][1].lineHeight,letterSpacing:e["6xl"][1].letterSpacing}],"7xl":[e["7xl"][0],{lineHeight:e["7xl"][1].lineHeight,letterSpacing:e["7xl"][1].letterSpacing}],"8xl":[e["8xl"][0],{lineHeight:e["8xl"][1].lineHeight,letterSpacing:e["8xl"][1].letterSpacing}],"9xl":[e["9xl"][0],{lineHeight:e["9xl"][1].lineHeight,letterSpacing:e["9xl"][1].letterSpacing}]},fontWeight:{...a},lineHeight:{...s},letterSpacing:{...r}},f={...o.colorCSSVariables,...y,...S,...d,...h.radiusCSSVariables,...o.motionCSSVariables};function u(w){return`:root {
|
|
3
|
-
${Object.entries(
|
|
2
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("../motion-DJx1TbXJ.cjs"),e=require("../typography-C-Nb4y0o.cjs"),m={padding:"p-md",radius:"rounded-lg",iconSize:"size-4",variant:{default:{padding:"p-md",radius:"rounded-lg"},primary:{padding:"p-md",radius:"rounded-lg"},secondary:{padding:"p-md",radius:"rounded-lg"},accent:{padding:"p-md",radius:"rounded-lg"},destructive:{padding:"p-md",radius:"rounded-lg"},success:{padding:"p-md",radius:"rounded-lg"},warning:{padding:"p-md",radius:"rounded-lg"},danger:{padding:"p-md",radius:"rounded-lg"},info:{padding:"p-md",radius:"rounded-lg"}}},u={height:{sm:"h-8",md:"h-9",lg:"h-10",icon:"h-9"},padding:{horizontal:{sm:"px-sm",md:"px-md",lg:"px-lg"},vertical:{sm:"py-xs",md:"py-sm"}},gap:"gap-sm",radius:"rounded-md",iconSize:"size-4",width:{icon:"w-9"},fontSize:{sm:"text-xs",md:"text-sm",lg:"text-sm"},shadow:{default:"shadow-sm",primary:"shadow"},variant:{primary:{background:"bg-primary",text:"text-primary-foreground",hover:"hover:bg-primary/90"},secondary:{background:"bg-secondary",text:"text-secondary-foreground",hover:"hover:bg-secondary/80"},accent:{background:"bg-accent",text:"text-accent-foreground",hover:"hover:bg-accent/90"},outline:{border:"border border-input",background:"bg-background",hover:{background:"hover:bg-accent",text:"hover:text-accent-foreground"}},ghost:{hover:{background:"hover:bg-accent",text:"hover:text-accent-foreground"}},destructive:{background:"bg-destructive",text:"text-destructive-foreground",hover:"hover:bg-destructive/90"}},transition:{colors:"transition-colors"}},g={padding:{sm:"p-sm",md:"p-lg",lg:"p-xl"},radius:{sm:"rounded-md",md:"rounded-xl",lg:"rounded-2xl"},spacing:{vertical:{xs:"space-y-xs",sm:"space-y-sm",md:"space-y-md"}},shadow:{default:"shadow",sm:"shadow-sm",md:"shadow-md",lg:"shadow-lg"},size:{sm:{padding:"p-sm",radius:"rounded-md",shadow:"shadow-sm",spacing:{vertical:"space-y-xs"}},md:{padding:"p-lg",radius:"rounded-xl",shadow:"shadow",spacing:{vertical:"space-y-xs"}},lg:{padding:"p-xl",radius:"rounded-2xl",shadow:"shadow-md",spacing:{vertical:"space-y-sm"}}}},r={table:{rowHeight:{sm:"h-8",md:"h-10",lg:"h-12"},padding:{cell:{sm:"p-xs",md:"p-sm",lg:"p-md"},header:{sm:"px-xs py-sm",md:"px-sm py-md",lg:"px-md py-lg"}},gap:{sm:"gap-xs",md:"gap-sm"},radius:{default:"rounded-md"},shadow:{none:"shadow-none",subtle:"shadow-sm"},typography:{header:{fontSize:"text-sm",fontWeight:"font-semibold"},cell:{fontSize:"text-sm",fontWeight:"font-normal"}},colors:{border:"border-border",rowHover:"hover:bg-muted/50",rowSelected:"bg-muted"}},skeleton:{height:{text:"h-4",circle:"h-10 w-10",block:"h-20",card:"h-32",inline:"h-4"},radius:{text:"rounded-sm",circle:"rounded-full",block:"rounded-md",card:"rounded-xl",inline:"rounded-sm"},animation:{pulse:"animate-pulse",fade:"animate-pulse"},background:{default:"bg-muted",subtle:"bg-muted/50"},width:{full:"w-full",inline:"inline-block"}},emptyState:{spacing:{gap:"gap-md",padding:"p-lg"},radius:{default:"rounded-xl"},iconSize:{sm:"size-8",md:"size-12",lg:"size-16"},typography:{title:{fontSize:"text-lg",fontWeight:"font-semibold"},description:{fontSize:"text-sm",fontWeight:"font-normal"}}},dataList:{spacing:{gap:"gap-md",padding:"p-md"},labelWidth:{sm:"w-24",md:"w-32",lg:"w-40"},rowPadding:{sm:"py-xs",md:"py-sm",lg:"py-md"}}},o={sizes:{xs:"h-2.5 w-2.5",sm:"h-3 w-3",md:"h-4 w-4",lg:"h-5 w-5",xl:"h-6 w-6","2xl":"h-8 w-8","3xl":"h-10 w-10","4xl":"h-12 w-12"},stroke:{thin:"stroke-[1px]",normal:"stroke-[1.5px]",bold:"stroke-2"},colors:{default:"text-foreground",muted:"text-muted-foreground",success:"text-success",warning:"text-warning",danger:"text-destructive",info:"text-info"}},a={transition:{all:"transition-all",colors:"transition-colors",opacity:"transition-opacity",transform:"transition-transform",shadow:"transition-shadow",none:"transition-none"},duration:{instant:"duration-0",fast:"duration-fast",normal:"duration-normal",slow:"duration-slow",slower:"duration-slower",slowest:"duration-slowest",75:"duration-75",100:"duration-100",200:"duration-200",250:"duration-250",300:"duration-300",400:"duration-400",500:"duration-500",600:"duration-600",700:"duration-700",800:"duration-800",1e3:"duration-1000"},easing:{linear:"ease-linear",in:"ease-in",out:"ease-out","in-out":"ease-in-out",bounce:"ease-bounce",elastic:"ease-elastic"},transitionPreset:{fast:"transition-all duration-fast ease-out",normal:"transition-all duration-normal ease-in-out",slow:"transition-all duration-slow ease-in-out",colors:"transition-colors duration-normal ease-out",transform:"transition-transform duration-normal ease-out",opacity:"transition-opacity duration-fast ease-out"},animation:{none:"animate-none",spin:"animate-spin",pulse:"animate-pulse",bounce:"animate-bounce",ping:"animate-ping",shake:"animate-shake",fadeIn:"animate-fadeIn",fadeOut:"animate-fadeOut",slideInUp:"animate-slideInUp",slideInDown:"animate-slideInDown",slideInLeft:"animate-slideInLeft",slideInRight:"animate-slideInRight",scaleIn:"animate-scaleIn",scaleOut:"animate-scaleOut"}},c={surface:{bg:{default:"bg-card",hover:"hover:bg-card/95"},border:{default:"border border-border",hover:"hover:border-primary/20"},radius:{default:"rounded-xl"},shadow:{default:"shadow-md"},elevation:{hover:"hover:shadow-xl"}},spacing:{section:{titleToSubtitle:"mb-xs",subtitleToMetadata:"mb-sm"},badges:{offsetX:e.semanticSpacing.md,offsetY:e.semanticSpacing.md},image:{bottomMargin:e.semanticSpacing.none},card:{verticalGap:e.semanticSpacing.md},metadata:{itemGap:e.semanticSpacing.xs},footer:{paddingTopDefault:"pt-sm",paddingTopCompact:"pt-xs"},button:{paddingDefault:"px-md py-xs",paddingCompact:"px-sm py-xs",iconMarginLeft:"ml-xs"}},layout:{padding:{default:"p-md",compact:"p-sm"},gap:{default:"gap-md",compact:"gap-xs"}},image:{aspectRatio:"aspect-video",radius:"rounded-t-xl",overlay:{gradient:"bg-gradient-to-t from-black/60 via-transparent to-transparent"}},metadata:{text:{primary:"text-foreground",secondary:"text-muted-foreground"},icon:{default:"text-muted-foreground",sizeSm:o.sizes.md},spacing:{vertical:"gap-xs",horizontal:"gap-sm"}},badges:{size:{sm:"px-xs py-xs",md:"px-sm py-xs"},position:{default:"right-md top-md",compact:"right-sm top-sm"},positionY:{xl:"top-xl","2xl":"top-2xl","3xl":"top-3xl"},surface:{default:"bg-primary",featured:"bg-gradient-to-r from-accent-500 to-primary-600"},text:{color:"text-white"},radius:"rounded-full",shadow:"shadow-lg"},priceCapacity:{text:{primary:"text-foreground",secondary:"text-muted-foreground"},spacing:"gap-sm"},motion:{hover:{transition:a.transitionPreset.normal,scale:"hover:scale-110",elevation:"hover:shadow-xl"}},skeleton:{base:{radius:r.skeleton.radius.text,animation:r.skeleton.animation.pulse,background:r.skeleton.background.default},image:{height:"h-48"},content:{gap:"gap-md",width:{full:r.skeleton.width.full,threeQuarters:"w-3/4",half:"w-1/2"}},badge:{width:"w-20",height:"h-6"}}},h={height:{xs:"h-7",sm:"h-8",md:"h-9",lg:"h-10",xl:"h-11"},padding:{horizontal:{xs:"px-xs",sm:"px-sm",md:"px-sm",lg:"px-md",xl:"px-lg"},vertical:{xs:"py-xs",sm:"py-xs",md:"py-xs",lg:"py-sm",xl:"py-md"}},radius:{xs:"rounded-sm",sm:"rounded-md",md:"rounded-md",lg:"rounded-md",xl:"rounded-lg"},fontSize:{xs:"text-xs",sm:"text-sm",md:"text-base",lg:"text-base",xl:"text-lg"},fontSizeResponsive:{md:"md:text-sm"},shadow:"shadow-sm",file:{text:"text-[hsl(var(--foreground))]"},selectListbox:{border:"border border-[hsl(var(--border))]",background:"bg-[hsl(var(--popover))]",text:"text-[hsl(var(--popover-foreground))]",radius:"rounded-md",shadow:"shadow-md"},selectOption:{focus:{background:"focus:bg-[hsl(var(--accent))]",text:"focus:text-[hsl(var(--accent-foreground))]"},selected:{background:"bg-[hsl(var(--accent))]",text:"text-[hsl(var(--accent-foreground))]"}},variant:{primary:{border:"border-[hsl(var(--tm-primary))]",background:"bg-[hsl(var(--tm-primary))]",text:"text-[hsl(var(--tm-primary-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-primary)]"},secondary:{border:"border-[hsl(var(--tm-secondary))]",background:"bg-[hsl(var(--tm-secondary))]",text:"text-[hsl(var(--tm-secondary-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},outline:{border:"border-[hsl(var(--input))]",background:"bg-transparent",text:"text-[hsl(var(--foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},ghost:{border:"border-transparent",background:"bg-transparent",text:"text-[hsl(var(--foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},destructive:{border:"border-[hsl(var(--destructive))]",background:"bg-[hsl(var(--destructive))]",text:"text-[hsl(var(--destructive-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"}},state:{border:{default:"border-[hsl(var(--input))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]",error:"border-[hsl(var(--destructive))]",success:"border-[hsl(var(--semantic-success))]",disabled:"border-[hsl(var(--input))]"},background:{default:"bg-transparent",disabled:"bg-transparent"},text:{default:"text-[hsl(var(--foreground))]",placeholder:"placeholder:text-[hsl(var(--muted-foreground))]",disabled:"disabled:opacity-50"}},icon:{size:"size-4",gap:"gap-sm",paddingLeft:"pl-lg",paddingRight:"pr-lg",color:"text-[hsl(var(--muted-foreground))]",position:{left:"left-0",right:"right-0",top:"top-0"}},label:{spacing:"space-y-sm",requiredMark:"text-destructive"},width:{full:"w-full"},message:{spacing:"space-y-sm",position:{bottom:"bottom-sm",right:"right-sm"},color:{default:"text-[hsl(var(--muted-foreground))]",error:"text-[hsl(var(--destructive))]",success:"text-[hsl(var(--semantic-success))]"}},size:{xs:{height:"h-7",padding:{horizontal:"px-xs",vertical:"py-xs"},radius:"rounded-sm",fontSize:"text-xs",shadow:"shadow-sm"},sm:{height:"h-8",padding:{horizontal:"px-sm",vertical:"py-xs"},radius:"rounded-md",fontSize:"text-sm",shadow:"shadow-sm"},md:{height:"h-9",padding:{horizontal:"px-sm",vertical:"py-xs"},radius:"rounded-md",fontSize:"text-base",fontSizeResponsive:"md:text-sm",shadow:"shadow-sm"},lg:{height:"h-10",padding:{horizontal:"px-md",vertical:"py-sm"},radius:"rounded-md",fontSize:"text-base",shadow:"shadow-sm"},xl:{height:"h-11",padding:{horizontal:"px-lg",vertical:"py-md"},radius:"rounded-lg",fontSize:"text-lg",shadow:"shadow-sm"}}},p={size:{xs:{width:"w-3.5",height:"h-3.5",radius:"rounded-sm",iconSize:"size-2.5"},sm:{width:"w-4",height:"h-4",radius:"rounded-sm",iconSize:"size-3"},md:{width:"w-4.5",height:"h-4.5",radius:"rounded-md",iconSize:"size-3.5"},lg:{width:"w-5",height:"h-5",radius:"rounded-md",iconSize:"size-4"},xl:{width:"w-6",height:"h-6",radius:"rounded-md",iconSize:"size-5"}},variant:{primary:{border:"border-[hsl(var(--tm-primary))]",background:"bg-[hsl(var(--tm-primary))]",text:"text-[hsl(var(--tm-primary-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-primary)]"},secondary:{border:"border-[hsl(var(--tm-secondary))]",background:"bg-[hsl(var(--tm-secondary))]",text:"text-[hsl(var(--tm-secondary-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},outline:{border:"border-[hsl(var(--input))]",background:"bg-transparent",text:"text-[hsl(var(--foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},ghost:{border:"border-transparent",background:"bg-transparent",text:"text-[hsl(var(--foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},destructive:{border:"border-[hsl(var(--destructive))]",background:"bg-[hsl(var(--destructive))]",text:"text-[hsl(var(--destructive-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"}},state:{border:{default:"border-[hsl(var(--input))]",checked:"border-[hsl(var(--tm-primary))]",indeterminate:"border-[hsl(var(--tm-primary))]",error:"border-[hsl(var(--destructive))]",disabled:"border-[hsl(var(--input))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},background:{default:"bg-transparent",checked:"bg-[hsl(var(--tm-primary))]",indeterminate:"bg-[hsl(var(--tm-primary))]",disabled:"bg-transparent",disabledChecked:"bg-[hsl(var(--muted))]"},text:{default:"text-[hsl(var(--foreground))]",checked:"text-[hsl(var(--tm-primary-foreground))]",indeterminate:"text-[hsl(var(--tm-primary-foreground))]",disabled:"disabled:opacity-50"}},icon:{size:{xs:"size-2.5",sm:"size-3",md:"size-3.5",lg:"size-4",xl:"size-5"},stroke:"stroke-2",color:{default:"text-[hsl(var(--tm-primary-foreground))]",disabled:"text-[hsl(var(--muted-foreground))]"}},indeterminate:{width:"w-2",height:"h-0.5",color:"bg-[hsl(var(--tm-primary-foreground))]"},shadow:"shadow-sm",transition:"transition-all duration-200 ease-in-out"},b={track:{xs:{width:"w-8",height:"h-4",radius:"rounded-full"},sm:{width:"w-9",height:"h-5",radius:"rounded-full"},md:{width:"w-11",height:"h-6",radius:"rounded-full"},lg:{width:"w-14",height:"h-7",radius:"rounded-full"},xl:{width:"w-16",height:"h-8",radius:"rounded-full"}},handle:{xs:{width:"w-3",height:"h-3",radius:"rounded-full",translate:"translate-x-4"},sm:{width:"w-4",height:"h-4",radius:"rounded-full",translate:"translate-x-4"},md:{width:"w-5",height:"h-5",radius:"rounded-full",translate:"translate-x-5"},lg:{width:"w-6",height:"h-6",radius:"rounded-full",translate:"translate-x-7"},xl:{width:"w-7",height:"h-7",radius:"rounded-full",translate:"translate-x-8"},position:{left:"left-xs",top:"top-1/2",center:"-translate-y-1/2"}},variant:{primary:{track:{unchecked:"bg-[hsl(var(--input))]",checked:"bg-[hsl(var(--tm-primary))]"},handle:{unchecked:"bg-[hsl(var(--muted))]",checked:"bg-[hsl(var(--tm-primary-foreground))]"},focus:"focus-visible:shadow-[var(--focus-ring-primary)]"},secondary:{track:{unchecked:"bg-[hsl(var(--input))]",checked:"bg-[hsl(var(--tm-secondary))]"},handle:{unchecked:"bg-[hsl(var(--muted))]",checked:"bg-[hsl(var(--tm-secondary-foreground))]"},focus:"focus-visible:shadow-[var(--focus-ring-default)]"},outline:{track:{unchecked:"bg-[hsl(var(--input))]",checked:"bg-[hsl(var(--tm-primary))]"},handle:{unchecked:"bg-[hsl(var(--muted))]",checked:"bg-[hsl(var(--tm-primary-foreground))]"},focus:"focus-visible:shadow-[var(--focus-ring-default)]"},ghost:{track:{unchecked:"bg-[hsl(var(--muted))]",checked:"bg-[hsl(var(--tm-primary))]"},handle:{unchecked:"bg-[hsl(var(--muted-foreground))]",checked:"bg-[hsl(var(--tm-primary-foreground))]"},focus:"focus-visible:shadow-[var(--focus-ring-default)]"},destructive:{track:{unchecked:"bg-[hsl(var(--input))]",checked:"bg-[hsl(var(--destructive))]"},handle:{unchecked:"bg-[hsl(var(--muted))]",checked:"bg-[hsl(var(--destructive-foreground))]"},focus:"focus-visible:shadow-[var(--focus-ring-default)]"}},state:{track:{default:"bg-[hsl(var(--input))]",checked:"bg-[hsl(var(--tm-primary))]",disabled:"bg-[hsl(var(--muted))]",disabledChecked:"bg-[hsl(var(--muted))]",error:"bg-[hsl(var(--destructive))]"},handle:{default:"bg-[hsl(var(--muted-foreground))]",checked:"bg-[hsl(var(--tm-primary-foreground))]",disabled:"bg-[hsl(var(--muted-foreground))]",disabledChecked:"bg-[hsl(var(--muted-foreground))]",error:"bg-[hsl(var(--destructive-foreground))]"},opacity:{disabled:"opacity-50"}},transition:{handle:"transition-transform duration-300 ease-in-out",track:"transition-colors duration-300 ease-in-out",combined:"transition-all duration-300 ease-in-out"},shadow:"shadow-sm",padding:"p-0.5"},f={size:{xs:{width:"w-3.5",height:"h-3.5",radius:"rounded-full",dotSize:"size-1.5"},sm:{width:"w-4",height:"h-4",radius:"rounded-full",dotSize:"size-2"},md:{width:"w-4.5",height:"h-4.5",radius:"rounded-full",dotSize:"size-2.5"},lg:{width:"w-5",height:"h-5",radius:"rounded-full",dotSize:"size-3"},xl:{width:"w-6",height:"h-6",radius:"rounded-full",dotSize:"size-3.5"}},variant:{primary:{border:"border-[hsl(var(--tm-primary))]",background:"bg-[hsl(var(--tm-primary))]",text:"text-[hsl(var(--tm-primary-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-primary)]"},secondary:{border:"border-[hsl(var(--tm-secondary))]",background:"bg-[hsl(var(--tm-secondary))]",text:"text-[hsl(var(--tm-secondary-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},outline:{border:"border-[hsl(var(--input))]",background:"bg-transparent",text:"text-[hsl(var(--foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},ghost:{border:"border-transparent",background:"bg-transparent",text:"text-[hsl(var(--foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},destructive:{border:"border-[hsl(var(--destructive))]",background:"bg-[hsl(var(--destructive))]",text:"text-[hsl(var(--destructive-foreground))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"}},state:{border:{default:"border-[hsl(var(--input))]",checked:"border-[hsl(var(--tm-primary))]",error:"border-[hsl(var(--destructive))]",disabled:"border-[hsl(var(--input))]",focus:"focus-visible:shadow-[var(--focus-ring-default)]"},background:{default:"bg-transparent",checked:"bg-[hsl(var(--tm-primary))]",disabled:"bg-transparent",disabledChecked:"bg-[hsl(var(--muted))]"},text:{default:"text-[hsl(var(--foreground))]",checked:"text-[hsl(var(--tm-primary-foreground))]",disabled:"disabled:opacity-50"}},dot:{size:{xs:"size-1.5",sm:"size-2",md:"size-2.5",lg:"size-3",xl:"size-3.5"},color:{default:"bg-[hsl(var(--tm-primary-foreground))]",disabled:"bg-[hsl(var(--muted-foreground))]"},radius:"rounded-full"},shadow:"shadow-sm",transition:"transition-all duration-200 ease-in-out"},x={padding:{default:"p-md",sm:"p-sm",md:"p-md",lg:"p-lg"},radius:{default:"rounded-md",sm:"rounded-sm",md:"rounded-md",lg:"rounded-lg"},shadow:{flat:"shadow-none",raised:"shadow-sm",sunken:"shadow-none",outline:"shadow-none",subtle:"shadow-none"},variant:{flat:{padding:"p-md",radius:"rounded-md",shadow:"shadow-none",bg:"bg-background",border:"border border-border"},raised:{padding:"p-md",radius:"rounded-md",shadow:"shadow-sm",bg:"bg-card",border:"border border-border"},sunken:{padding:"p-md",radius:"rounded-md",shadow:"shadow-none",bg:"bg-muted",border:"border border-border"},outline:{padding:"p-md",radius:"rounded-md",shadow:"shadow-none",bg:"bg-transparent",border:"border-2 border-border"},subtle:{padding:"p-md",radius:"rounded-md",shadow:"shadow-none",bg:"bg-muted/50",border:"border border-border/50"}}},w={fontSize:{xs:"text-xs",sm:"text-sm",md:"text-base",lg:"text-lg",xl:"text-xl"},fontWeight:{normal:"font-normal",medium:"font-medium",semibold:"font-semibold",bold:"font-bold"},lineHeight:{none:"leading-none",tight:"leading-tight",normal:"leading-normal",relaxed:"leading-relaxed",loose:"leading-loose"},letterSpacing:{tighter:"tracking-tighter",tight:"tracking-tight",normal:"tracking-normal",wide:"tracking-wide",wider:"tracking-wider",widest:"tracking-widest"}},v={padding:{sm:"py-md",md:"py-xl",lg:"py-2xl",xl:"py-3xl"},spacing:{sm:"gap-sm",md:"gap-md",lg:"gap-lg",xl:"gap-xl"}},y={backdrop:{default:{bg:"bg-black/50",opacity:"opacity-100"},blurred:{bg:"bg-black/50",opacity:"opacity-100",backdropFilter:"backdrop-blur-sm"},transparent:{bg:"bg-transparent",opacity:"opacity-0"}},modal:{radius:{sm:"rounded-md",md:"rounded-lg",lg:"rounded-xl",xl:"rounded-2xl",fullscreen:"rounded-none"},padding:{sm:"p-md",md:"p-lg",lg:"p-xl",xl:"p-xl"},shadow:{sm:"shadow-md",md:"shadow-lg",lg:"shadow-xl",xl:"shadow-xl"},maxWidth:{sm:"max-w-md",md:"max-w-lg",lg:"max-w-2xl",xl:"max-w-4xl",fullscreen:"max-w-full"},surface:{primary:{bg:"bg-background",border:"border border-border"},secondary:{bg:"bg-card",border:"border border-border",shadow:"shadow-sm"},tinted:{bg:"bg-muted/50",border:"border border-border/50"},bare:{bg:"bg-transparent",border:"border-none",shadow:"shadow-none"}},container:{layout:"fixed inset-0 z-40 flex items-center justify-center"},position:{center:"left-[50%] top-[50%] -translate-x-1/2 -translate-y-1/2"},transition:{appear:"tm-motion-fade-scale",disappear:"tm-motion-fade-scale-out"},spacing:{header:{marginBottom:"mb-md",gap:"gap-xs"},body:{layout:"flex-1"},footer:{marginTop:"mt-md",gap:"gap-sm"}}},animation:{enter:{duration:"duration-normal",easing:"ease-out",keyframes:"tm-motion-fade-in",scale:"tm-motion-scale-in",combined:"tm-motion-fade-scale"},exit:{duration:"duration-fast",easing:"ease-in",keyframes:"tm-motion-fade-out",scale:"tm-motion-scale-out",combined:"tm-motion-fade-scale-out"}},drawer:{width:{sm:"w-64",md:"w-80",lg:"w-96"},height:{sm:"h-64",md:"h-80",lg:"h-96"},radius:{left:{sm:"rounded-r-md",md:"rounded-r-lg",lg:"rounded-r-xl"},right:{sm:"rounded-l-md",md:"rounded-l-lg",lg:"rounded-l-xl"},bottom:{sm:"rounded-t-md",md:"rounded-t-lg",lg:"rounded-t-xl"}},padding:{sm:"p-md",md:"p-lg",lg:"p-xl"},shadow:{sm:"shadow-md",md:"shadow-lg",lg:"shadow-xl"},animation:{left:{enter:"tm-motion-slide-right-in",exit:"tm-motion-slide-right-out"},right:{enter:"tm-motion-slide-left-in",exit:"tm-motion-slide-left-out"},bottom:{enter:"tm-motion-slide-up-in",exit:"tm-motion-slide-up-out"}},spacing:{header:{marginBottom:"mb-md",gap:"gap-xs"},footer:{marginTop:"mt-md",gap:"gap-sm"}}}},S={spacing:{gap:"gap-sm",padding:"p-md",paddingHorizontal:"px-md",paddingVertical:"py-md"},width:{full:"w-full"},radius:{default:"rounded-lg"},shadow:{default:"shadow-lg"},surface:{success:"bg-success/10 border-success/20 text-success-foreground",info:"bg-info/10 border-info/20 text-info-foreground",warning:"bg-warning/10 border-warning/20 text-warning-foreground",danger:"bg-destructive/10 border-destructive/20 text-destructive-foreground",default:"bg-background border border-border text-foreground"},animation:{enter:{slideUp:"tm-motion-fade-slide-up",fadeIn:"tm-motion-fade-in",combined:"tm-motion-fade-slide-right"},exit:{slideOutRight:"tm-motion-fade-slide-left-out",fadeOut:"tm-motion-fade-out",combined:"tm-motion-fade-slide-left-out"}},position:{spacing:{top:"top-md",right:"right-md",bottom:"bottom-md",left:"left-md"}},content:{layout:"flex flex-1 items-start",gap:"gap-sm",verticalSpacing:"space-y-xs"},title:{fontSize:"text-sm",fontWeight:"font-semibold"},description:{fontSize:"text-sm",opacity:"opacity-90"},action:{height:"h-8",padding:"px-xs",fontSize:"text-xs"},dismiss:{position:"absolute right-xs top-xs",size:"h-6 w-6",radius:"rounded-md",padding:"p-xs",transition:"transition-opacity",colors:{default:"text-foreground/50",hover:"hover:text-foreground"},states:{default:"opacity-0",groupHover:"group-hover:opacity-100",focus:"focus:opacity-100",focusRing:"focus:outline-none focus:ring-1"}}},k={spacing:{gap:"gap-sm",padding:"p-md",paddingHorizontal:"px-md",paddingVertical:"py-md",itemPadding:"p-sm",panelPadding:"p-lg"},radius:{item:"rounded-md",panel:"rounded-lg",default:"rounded-lg"},shadow:{item:"shadow-sm",panel:"shadow-xl",default:"shadow-lg"},width:{item:"w-full",itemMax:"max-w-md",panel:"w-full",panelSm:"w-sm",panelMd:"w-md",panelLg:"w-lg",panelMaxHeight:"max-h-[calc(100vh-2rem)]"},item:{padding:"p-sm",gap:"gap-sm",iconSize:"h-5 w-5",radius:"rounded-md",minHeight:"min-h-[3rem]"},surface:{success:"bg-success/10 border-success/20 text-success-foreground",info:"bg-info/10 border-info/20 text-info-foreground",warning:"bg-warning/10 border-warning/20 text-warning-foreground",danger:"bg-destructive/10 border-destructive/20 text-destructive-foreground",system:"bg-muted border-border text-foreground",log:"bg-background border-border/50 text-muted-foreground",default:"bg-background border border-border text-foreground"},timeline:{dotSize:"h-2 w-2",lineWidth:"w-0.5",gap:"gap-xs"},animation:{enter:{slideInRight:"tm-motion-fade-slide-right",fadeIn:"tm-motion-fade-in",combined:"tm-motion-fade-slide-right"},exit:{slideOutRight:"tm-motion-fade-slide-right-out",fadeOut:"tm-motion-fade-out",combined:"tm-motion-fade-slide-right-out"},panel:{enter:{slideInRight:"tm-motion-fade-slide-right",fadeIn:"tm-motion-fade-in",combined:"tm-motion-fade-slide-right"},exit:{slideOutRight:"tm-motion-fade-slide-right-out",fadeOut:"tm-motion-fade-out",combined:"tm-motion-fade-slide-right-out"}}},panel:{width:{default:"w-md",sm:"w-sm",md:"w-md",lg:"w-lg"},maxHeight:"max-h-[calc(100vh-2rem)]",spacing:{gap:"gap-md",padding:"p-lg",headerPadding:"px-lg py-md"},radius:{default:"rounded-lg",topLeft:"rounded-tl-lg",topRight:"rounded-tr-lg"},shadow:{default:"shadow-xl"},backdrop:{bg:"bg-black/50",blur:"backdrop-blur-sm"}}},O={sizes:{sm:{height:"h-8",width:"w-8",padding:{horizontal:"px-sm",vertical:"py-xs"},fontSize:"text-xs",gap:"gap-xs"},md:{height:"h-9",padding:{horizontal:"px-md",vertical:"py-sm"},fontSize:"text-sm",gap:"gap-sm"},lg:{height:"h-10",padding:{horizontal:"px-lg",vertical:"py-sm"},fontSize:"text-base",gap:"gap-sm"}},radius:{default:"rounded-md",sm:"rounded-sm",md:"rounded-md",lg:"rounded-lg",full:"rounded-full"},spacing:{itemPadding:{sm:"px-sm py-xs",md:"px-md py-sm",lg:"px-lg py-sm"},listGap:{xs:"gap-xs",sm:"gap-sm",md:"gap-md",lg:"gap-lg"},content:{marginTop:"mt-md"}},typography:{default:"text-sm",sm:"text-xs",md:"text-sm",lg:"text-base",fontWeight:{default:"font-medium",normal:"font-normal",medium:"font-medium",semibold:"font-semibold"}},states:{default:{background:"bg-transparent",text:"text-foreground",border:"border-transparent"},hover:{background:"hover:bg-accent",text:"hover:text-accent-foreground",border:"hover:border-accent"},active:{background:"bg-accent",text:"text-accent-foreground",border:"border-accent"},selected:{background:"bg-primary",text:"text-primary-foreground",border:"border-primary"},disabled:{background:"bg-transparent",text:"text-muted-foreground disabled:opacity-50",border:"border-transparent",cursor:"disabled:cursor-not-allowed"}},indicator:{height:"h-0.5",radius:"rounded-full",transition:"transition-all duration-normal ease-out",background:"bg-primary",position:"absolute bottom-0 left-0 right-0"},shadow:{none:"shadow-none",sm:"shadow-sm",default:"shadow-sm",md:"shadow"},focus:{ring:"focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring focus-visible:ring-offset-2",ringOffset:"focus-visible:ring-offset-2"},container:{background:{muted:"bg-muted"},padding:{xs:"p-xs",sm:"p-sm"}},border:{muted:"border-muted-foreground"}},C={item:{padding:{xs:"px-xs py-xs",sm:"px-sm py-sm",md:"px-md py-sm"},radius:{sm:"rounded-sm",md:"rounded-md"},gap:{xs:"gap-xs",sm:"gap-sm"},height:{sm:"h-8",md:"h-10",lg:"h-12"}},content:{padding:{sm:"p-sm",md:"p-md"},radius:{sm:"rounded-md",md:"rounded-lg"},shadow:{sm:"shadow-md",md:"shadow-lg"},minWidth:{sm:"min-w-32",md:"min-w-48"}},separator:{margin:{sm:"my-xs",md:"my-sm"},height:"h-px",color:"bg-border"},label:{padding:{sm:"px-sm py-xs",md:"px-md py-sm"},textStyle:"text-sm font-semibold"},indicator:{size:{sm:"w-4 h-4",md:"w-5 h-5"},offset:{sm:"left-xs",md:"left-sm"}}},z={content:{border:{default:"border",color:"border-border"},background:{default:"bg-popover"},text:{default:"text-popover-foreground"},padding:{sm:"p-sm",md:"p-md",lg:"p-lg"},radius:{sm:"rounded-md",md:"rounded-lg"},shadow:{sm:"shadow-md",md:"shadow-lg"},width:{xs:"w-40",sm:"w-48",md:"w-72",lg:"w-96",xl:"w-[32rem]"}},arrow:{size:{sm:"w-2 h-2",md:"w-3 h-3"},offset:{sm:"-translate-x-1/2",md:"-translate-x-1/2"}},animation:{enter:"tm-motion-fade-scale",exit:"tm-motion-fade-scale-out"}},T={trigger:{height:{sm:"h-8",md:"h-9",lg:"h-10"},padding:{horizontal:{sm:"px-sm",md:"px-md",lg:"px-lg"},vertical:{sm:"py-xs",md:"py-xs",lg:"py-sm"}},radius:{sm:"rounded-md",md:"rounded-md",lg:"rounded-md"},fontSize:{sm:"text-sm",md:"text-base",lg:"text-base"},shadow:"shadow-sm",icon:{spacing:"ml-sm"}},variant:{neutral:{border:"border border-[hsl(var(--border))]",background:"bg-[hsl(var(--popover))]",text:"text-[hsl(var(--popover-foreground))]",focus:"focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2"},tinted:{border:"border border-[hsl(var(--border))]",background:"bg-[hsl(var(--muted))]",text:"text-[hsl(var(--popover-foreground))]",focus:"focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2"}},menu:{border:{default:"border border-[hsl(var(--border))]"},background:{neutral:"bg-[hsl(var(--popover))]",tinted:"bg-[hsl(var(--muted))]"},text:{default:"text-[hsl(var(--popover-foreground))]"},padding:{sm:"p-sm",md:"p-md",lg:"p-lg"},radius:{sm:"rounded-md",md:"rounded-lg",lg:"rounded-lg"},shadow:{sm:"shadow-md",md:"shadow-lg",lg:"shadow-xl"},minWidth:{sm:"min-w-32",md:"min-w-48",lg:"min-w-64"}},item:{background:{focus:"focus:bg-[hsl(var(--accent))]",selected:"bg-[hsl(var(--accent))]"},text:{focus:"focus:text-[hsl(var(--accent-foreground))]",selected:"text-[hsl(var(--accent-foreground))]"},padding:{sm:"px-sm py-xs",md:"px-md py-xs",lg:"px-lg py-sm"},radius:{sm:"rounded-sm",md:"rounded-md",lg:"rounded-md"},fontSize:{sm:"text-sm",md:"text-sm",lg:"text-base"}}},N={content:{border:{default:"border",color:"border-border"},background:{default:"bg-popover"},text:{default:"text-popover-foreground"},padding:{horizontal:"px-sm",vertical:"py-xs"},radius:{sm:"rounded-sm",md:"rounded-md"},shadow:{sm:"shadow-sm",md:"shadow-md"},fontSize:{sm:"text-sm"}}},d={...t.colorCSSVariables,...e.typographyCSSVariables,...e.spacingCSSVariables,...e.shadowCSSVariables,...e.radiusCSSVariables,...t.motionCSSVariables};function s(i){return`:root {
|
|
3
|
+
${Object.entries(i).map(([n,l])=>` ${n}: ${l};`).join(`
|
|
4
4
|
`)}
|
|
5
|
-
}`}const
|
|
5
|
+
}`}const E=s(d),V={colors:Object.keys(t.colorCSSVariables).length,typography:Object.keys(e.typographyCSSVariables).length,spacing:Object.keys(e.spacingCSSVariables).length,shadows:Object.keys(e.shadowCSSVariables).length,radius:Object.keys(e.radiusCSSVariables).length,motion:Object.keys(t.motionCSSVariables).length,total:Object.keys(d).length},K=t.tailwindThemeColors;exports.accentColors=t.accentColors;exports.animations=t.animations;exports.baseColors=t.baseColors;exports.chartColors=t.chartColors;exports.colorCSSVariables=t.colorCSSVariables;exports.cssVariableColorTokens=t.cssVariableColorTokens;exports.durations=t.durations;exports.easings=t.easings;exports.keyframes=t.keyframes;exports.motionCSSVariables=t.motionCSSVariables;exports.primaryColors=t.primaryColors;exports.reducedMotion=t.reducedMotion;exports.secondaryColors=t.secondaryColors;exports.semanticColors=t.semanticColors;exports.springs=t.springs;exports.surfaceColors=t.surfaceColors;exports.tailwindMotionConfig=t.tailwindMotionConfig;exports.tailwindThemeColors=t.tailwindThemeColors;exports.textColors=t.textColors;exports.transitions=t.transitions;exports.accentColoredShadows=e.accentColoredShadows;exports.borderRadius=e.borderRadius;exports.componentRadius=e.componentRadius;exports.componentShadowMapping=e.componentShadowMapping;exports.elevationShadows=e.elevationShadows;exports.focusRings=e.focusRings;exports.fontFamily=e.fontFamily;exports.fontSize=e.fontSize;exports.fontSizeWithMd=e.fontSizeWithMd;exports.fontWeight=e.fontWeight;exports.glowEffects=e.glowEffects;exports.layoutSpacing=e.layoutSpacing;exports.letterSpacing=e.letterSpacing;exports.lineHeight=e.lineHeight;exports.motionV2CSSVariables=e.motionV2CSSVariables;exports.motionV2Combined=e.motionV2Combined;exports.motionV2Durations=e.motionV2Durations;exports.motionV2Easings=e.motionV2Easings;exports.motionV2Fade=e.motionV2Fade;exports.motionV2Scale=e.motionV2Scale;exports.motionV2Slide=e.motionV2Slide;exports.motionV2TailwindConfig=e.motionV2TailwindConfig;exports.motionV2Transitions=e.motionV2Transitions;exports.primaryColoredShadows=e.primaryColoredShadows;exports.radiusCSSVariables=e.radiusCSSVariables;exports.semanticSpacing=e.semanticSpacing;exports.shadowBase=e.shadowBase;exports.shadowCSSVariables=e.shadowCSSVariables;exports.shadowOpacity=e.shadowOpacity;exports.spacing=e.spacing;exports.spacingCSSVariables=e.spacingCSSVariables;exports.tailwindRadiusConfig=e.tailwindRadiusConfig;exports.tailwindShadowConfig=e.tailwindShadowConfig;exports.tailwindSpacingConfig=e.tailwindSpacingConfig;exports.tailwindTypographyConfig=e.tailwindTypographyConfig;exports.textStyles=e.textStyles;exports.typographyCSSVariables=e.typographyCSSVariables;exports.ALERT_TOKENS=m;exports.BUTTON_TOKENS=u;exports.CARD_TOKENS=g;exports.CHECKBOX_TOKENS=p;exports.DATA_TOKENS=r;exports.DOMAIN_TOKENS=c;exports.DROPDOWN_TOKENS=T;exports.ICON_TOKENS=o;exports.INPUT_TOKENS=h;exports.MENU_TOKENS=C;exports.MOTION_TOKENS=a;exports.NAVIGATION_TOKENS=O;exports.NOTIFICATION_TOKENS=k;exports.OVERLAY_TOKENS=y;exports.POPOVER_TOKENS=z;exports.RADIO_TOKENS=f;exports.SECTION_TOKENS=v;exports.SURFACE_TOKENS=x;exports.SWITCH_TOKENS=b;exports.TEXT_TOKENS=w;exports.TOAST_TOKENS=S;exports.TOOLTIP_TOKENS=N;exports.UI_COLORS=K;exports.allCSSVariables=d;exports.allCSSVariablesCSS=E;exports.generateCSSVariablesCSS=s;exports.tokenSystemSummary=V;
|
package/dist/tokens/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export * from './colors';
|
|
2
|
+
export * from './components';
|
|
2
3
|
export * from './css-variables';
|
|
3
4
|
export * from './motion';
|
|
4
5
|
export * from './radius';
|
|
5
6
|
export * from './shadows';
|
|
6
7
|
export * from './spacing';
|
|
8
|
+
export * from './theme';
|
|
7
9
|
export * from './typography';
|
|
8
|
-
//# sourceMappingURL=index.d.ts.map
|