@ship-it-ui/ui 0.0.9 → 0.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ClassValue } from 'clsx';
2
2
  export { ClassValue } from 'clsx';
3
3
  import * as react from 'react';
4
- import { useEffect, KeyboardEvent, RefObject, ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, AnchorHTMLAttributes, Ref, forwardRef, LabelHTMLAttributes, FC, SVGAttributes, MouseEventHandler } from 'react';
4
+ import { useEffect, KeyboardEvent, RefObject, ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, AnchorHTMLAttributes, Ref, MouseEvent, forwardRef, LabelHTMLAttributes, FC, SVGAttributes, MouseEventHandler } from 'react';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
7
  import * as RadixCheckbox from '@radix-ui/react-checkbox';
@@ -18,6 +18,7 @@ import * as RadixMenu from '@radix-ui/react-dropdown-menu';
18
18
  import * as RadixHoverCard from '@radix-ui/react-hover-card';
19
19
  import * as RadixPopover from '@radix-ui/react-popover';
20
20
  import * as RadixTooltip from '@radix-ui/react-tooltip';
21
+ import { GlyphName } from '@ship-it-ui/icons';
21
22
  import * as RadixMenubar from '@radix-ui/react-menubar';
22
23
  import * as RadixTabs from '@radix-ui/react-tabs';
23
24
 
@@ -1217,7 +1218,8 @@ declare const Crumb: react.ForwardRefExoticComponent<CrumbProps & react.RefAttri
1217
1218
  * behavior; no library.
1218
1219
  *
1219
1220
  * Pass an array of `items` and a `renderItem` function — the carousel
1220
- * handles snapping, active-index tracking, and keyboard nav.
1221
+ * handles snapping, active-index tracking, and keyboard nav. Set
1222
+ * `loop` to make arrows / dots / native swipe wrap continuously.
1221
1223
  */
1222
1224
  interface CarouselProps<T = unknown> extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
1223
1225
  /** Slide data. */
@@ -1238,6 +1240,13 @@ interface CarouselProps<T = unknown> extends Omit<HTMLAttributes<HTMLDivElement>
1238
1240
  showDots?: boolean;
1239
1241
  /** When false, hides the prev/next arrows. Default `true`. */
1240
1242
  showArrows?: boolean;
1243
+ /**
1244
+ * Wrap arrows / dots / native swipe past the boundaries. Default `false`.
1245
+ * When `true`, hidden clones of the first / last slide bracket the real
1246
+ * items so swipe past the end jumps invisibly to the other side.
1247
+ * `onIndexChange` still only emits real indices in `0..items.length - 1`.
1248
+ */
1249
+ loop?: boolean;
1241
1250
  /** Accessible label for the carousel region. */
1242
1251
  'aria-label'?: string;
1243
1252
  }
@@ -1494,7 +1503,8 @@ declare const DateRangePicker: react.ForwardRefExoticComponent<DateRangePickerPr
1494
1503
  /**
1495
1504
  * Lightbox — fullscreen photo viewer. Built on Radix Dialog (reuses the
1496
1505
  * focus trap, portal, and escape-to-close). Adds keyboard ←/→ navigation
1497
- * between items and a counter overlay.
1506
+ * between items and a counter overlay. Set `loop` to wrap navigation
1507
+ * past the boundaries.
1498
1508
  */
1499
1509
  interface LightboxProps {
1500
1510
  open?: boolean;
@@ -1510,50 +1520,322 @@ interface LightboxProps {
1510
1520
  defaultIndex?: number;
1511
1521
  /** Fires when the index changes. */
1512
1522
  onIndexChange?: (index: number) => void;
1523
+ /**
1524
+ * Wrap prev / next (buttons and ←/→ keys) past the boundaries. Default
1525
+ * `false`. When `true`, "next" on the last item goes to the first and
1526
+ * vice versa, and the arrow buttons never disable while there's more
1527
+ * than one item.
1528
+ */
1529
+ loop?: boolean;
1513
1530
  /** Accessible title (visually hidden). */
1514
1531
  title?: ReactNode;
1515
1532
  }
1516
1533
  declare const Lightbox: react.ForwardRefExoticComponent<LightboxProps & react.RefAttributes<HTMLDivElement>>;
1517
1534
 
1518
1535
  /**
1519
- * ListingCard — a consumer-marketplace card composing photos (`Carousel`),
1520
- * title, `Rating`, price, host, and an optional verified badge / favorite
1521
- * toggle. Distinct from `EntityCard`, which is dev-tool entity chrome.
1536
+ * ListingCard — a marketplace card for a single listing.
1537
+ *
1538
+ * Two visual variants share the same photo + price + title spine:
1539
+ *
1540
+ * - `default` — consumer-stay style: rating, host, distance, favorite
1541
+ * heart. Built for marketplace grids (Airbnb / Turo search-result row).
1542
+ * - `spec` — product-spec style: a flag pill, photo counter, a
1543
+ * spec grid (e.g. 0-60 / power / drive), and an inline CTA. Better
1544
+ * for premium / spec-driven inventory (sports cars, electronics).
1545
+ *
1546
+ * Distinct from `EntityCard`, which is dev-tool entity chrome.
1522
1547
  */
1523
- interface ListingCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'title'> {
1548
+ type ListingCardVariant = 'default' | 'spec';
1549
+ interface ListingCardFlag {
1550
+ /** Glyph rendered to the left of the label. */
1551
+ icon?: GlyphName;
1552
+ /** Pill label, e.g. "Flagship", "New", "Editor's pick". */
1553
+ label: ReactNode;
1554
+ /** Badge tone. Default `accent`. */
1555
+ tone?: 'accent' | 'purple' | 'pink' | 'ok' | 'warn';
1556
+ }
1557
+ interface ListingCardSpec {
1558
+ /** Small label (typographically rendered as uppercase). */
1559
+ label: ReactNode;
1560
+ /** Headline value below the label. */
1561
+ value: ReactNode;
1562
+ }
1563
+ interface ListingCardCta {
1564
+ label: ReactNode;
1565
+ onClick?: () => void;
1566
+ href?: string;
1567
+ disabled?: boolean;
1568
+ }
1569
+ interface ListingCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'title' | 'onClick'> {
1570
+ /** Visual variant. Default `default`. */
1571
+ variant?: ListingCardVariant;
1524
1572
  /** Photo URLs (or anything `Carousel` can render). At least one. */
1525
1573
  photos: ReadonlyArray<string>;
1574
+ /**
1575
+ * Override the photo renderer. Defaults to a decorative `<img src>`.
1576
+ * Use this when consumers need theme-aware photos (e.g. inline SVG
1577
+ * placeholders that follow `currentColor`) or non-image slides.
1578
+ */
1579
+ renderPhoto?: (src: string, index: number) => ReactNode;
1580
+ /**
1581
+ * Wrap the photo carousel past the boundaries (next from the last
1582
+ * photo goes to the first). Default `true` — marketplace photo
1583
+ * browsing expects looping. Pass `false` to restore stop-at-end.
1584
+ */
1585
+ loop?: boolean;
1526
1586
  /** Listing title — e.g. "2023 Tesla Model 3". */
1527
1587
  title: ReactNode;
1528
1588
  /** Optional eyebrow text above the title (location, vehicle type). */
1529
1589
  eyebrow?: ReactNode;
1530
- /** Average rating (0–5). When undefined, the rating row is hidden. */
1531
- rating?: number;
1532
- /** Number of reviews — shown next to the rating. */
1533
- reviewCount?: number;
1534
1590
  /** Headline price (e.g. `89`). */
1535
1591
  price: ReactNode;
1536
1592
  /** Price unit suffix (e.g. `/day`). */
1537
1593
  priceUnit?: ReactNode;
1538
1594
  /** Original price for sale strike-through. */
1539
1595
  originalPrice?: ReactNode;
1596
+ /** Prefix shown before the price — e.g. "from". `spec` variant only. */
1597
+ pricePrefix?: ReactNode;
1598
+ /** Card width override. */
1599
+ width?: number | string;
1600
+ /** Link target for the whole card (default) or the title (spec). */
1601
+ href?: string;
1602
+ /**
1603
+ * Whole-card click handler. Renders an invisible stretched `<button>`
1604
+ * underneath the inner actions (favorite, CTA, links) so clicks on
1605
+ * those take precedence. Use this for "click card → open detail"
1606
+ * without leaving the page.
1607
+ */
1608
+ onClick?: (e: MouseEvent<HTMLButtonElement>) => void;
1609
+ /**
1610
+ * Visual treatment on hover. Default `lift` when the card is
1611
+ * interactive (has `onClick` / `href`), otherwise `none`.
1612
+ */
1613
+ hoverEffect?: 'lift' | 'glow' | 'none';
1614
+ /** Average rating (0–5). When undefined, the rating row is hidden. */
1615
+ rating?: number;
1616
+ /** Number of reviews — shown next to the rating. */
1617
+ reviewCount?: number;
1540
1618
  /** Host / owner name. */
1541
1619
  host?: ReactNode;
1542
1620
  /** Distance label (e.g. `0.4 mi away`). */
1543
1621
  distance?: ReactNode;
1544
1622
  /** When true, shows a `verified` badge on the photo. */
1545
1623
  verified?: boolean;
1546
- /** Link target for the whole card. */
1547
- href?: string;
1548
1624
  /** Heart-icon favorite toggle handler. */
1549
1625
  onFavorite?: (next: boolean) => void;
1550
1626
  /** Current favorite state. */
1551
1627
  favorited?: boolean;
1552
- /** Card width override. */
1553
- width?: number | string;
1628
+ /** Pill rendered top-left of the photo. */
1629
+ flag?: ListingCardFlag;
1630
+ /** Small category tag right-aligned in the title row. */
1631
+ category?: ReactNode;
1632
+ /** Dim secondary line under the title (e.g. listing ID · year). */
1633
+ meta?: ReactNode;
1634
+ /** Spec cells rendered as a grid below the title block. */
1635
+ specs?: ReadonlyArray<ListingCardSpec>;
1636
+ /** Bottom CTA button. When set, no whole-card stretched link is rendered. */
1637
+ cta?: ListingCardCta;
1638
+ /** Hide the photo counter overlay in `spec` variant. Default `false`. */
1639
+ hidePhotoCounter?: boolean;
1640
+ /**
1641
+ * Per-section className overrides. Each key targets a specific element in
1642
+ * the rendered tree; values are merged with the component's own utilities
1643
+ * via `cn()` so consumers can override, extend, or replace any styling
1644
+ * without forking the component.
1645
+ *
1646
+ * The `className` prop still controls the outer Card element — `classNames.root`
1647
+ * is an alias that's also merged onto it.
1648
+ */
1649
+ classNames?: Partial<{
1650
+ /** Outer Card element. Merged with `className`. */
1651
+ root: string;
1652
+ /** Wrapper around the photo Carousel (includes overlays). */
1653
+ photos: string;
1654
+ /** Top-left flag pill (spec variant). */
1655
+ flag: string;
1656
+ /** Top-right photo counter (spec variant). */
1657
+ photoCounter: string;
1658
+ /** Top-right favorite heart button (default variant). */
1659
+ favorite: string;
1660
+ /** Body content wrapper below the photos. */
1661
+ body: string;
1662
+ /** Header row containing title + (rating | category). */
1663
+ header: string;
1664
+ /** Title text. */
1665
+ title: string;
1666
+ /** Eyebrow text above the title (default variant). */
1667
+ eyebrow: string;
1668
+ /** Category tag in the title row (spec variant). */
1669
+ category: string;
1670
+ /** Meta line under the title (spec variant) or host/distance row (default). */
1671
+ meta: string;
1672
+ /** Spec grid container (spec variant). */
1673
+ specs: string;
1674
+ /** Each spec cell wrapper (spec variant). */
1675
+ specCell: string;
1676
+ /** Each spec cell's small uppercase label. */
1677
+ specLabel: string;
1678
+ /** Each spec cell's headline value. */
1679
+ specValue: string;
1680
+ /** Footer strip (price + CTA, spec variant) or price row (default). */
1681
+ footer: string;
1682
+ /** Price text. */
1683
+ price: string;
1684
+ /** Price unit (e.g. `/day`). */
1685
+ priceUnit: string;
1686
+ /** CTA button (spec variant). */
1687
+ cta: string;
1688
+ }>;
1554
1689
  }
1555
1690
  declare const ListingCard: react.ForwardRefExoticComponent<ListingCardProps & react.RefAttributes<HTMLDivElement>>;
1556
1691
 
1692
+ /**
1693
+ * ListingDetail — full marketplace listing popup. Photos on the left
1694
+ * (Carousel, click to open Lightbox for fullscreen), info on the right.
1695
+ * Stacks on narrow viewports. Built on Radix Dialog so focus trap,
1696
+ * Escape, and ARIA are inherited.
1697
+ *
1698
+ * Two visual variants mirror `ListingCard`:
1699
+ *
1700
+ * - `default` — consumer-stay style: rating, host, features, primary /
1701
+ * secondary CTAs.
1702
+ * - `spec` — product-spec style: a flag pill on the photo, photo
1703
+ * counter, spec grid, and a dark CTA bar with a single primary action.
1704
+ */
1705
+ type ListingDetailVariant = 'default' | 'spec';
1706
+ interface ListingDetailHost {
1707
+ name: ReactNode;
1708
+ avatarUrl?: string;
1709
+ /** Renders a small `verified` badge next to the name. */
1710
+ verified?: boolean;
1711
+ /** Free-text meta line under the name, e.g. "Host since 2022 · 312 trips". */
1712
+ meta?: ReactNode;
1713
+ }
1714
+ interface ListingDetailFeature {
1715
+ icon: GlyphName;
1716
+ label: ReactNode;
1717
+ }
1718
+ interface ListingDetailAction {
1719
+ label: ReactNode;
1720
+ onClick?: () => void;
1721
+ href?: string;
1722
+ /** Disables the button while keeping it focusable for tooltips. */
1723
+ disabled?: boolean;
1724
+ }
1725
+ interface ListingDetailProps {
1726
+ /** Visual variant. Default `default`. */
1727
+ variant?: ListingDetailVariant;
1728
+ open?: boolean;
1729
+ defaultOpen?: boolean;
1730
+ onOpenChange?: (open: boolean) => void;
1731
+ /** Photo URLs. At least one. */
1732
+ photos: ReadonlyArray<string>;
1733
+ /**
1734
+ * Override the photo renderer for the gallery and the fullscreen
1735
+ * `Lightbox`. Defaults to decorative `<img src>` (object-cover in the
1736
+ * gallery, object-contain in the lightbox). Use this for theme-aware
1737
+ * placeholders or non-image slides.
1738
+ */
1739
+ renderPhoto?: (src: string, index: number, mode: 'gallery' | 'lightbox') => ReactNode;
1740
+ /**
1741
+ * Wrap the gallery carousel and the fullscreen lightbox past the
1742
+ * boundaries (next from the last photo goes to the first). Default
1743
+ * `true` — marketplace photo browsing expects looping. One prop
1744
+ * drives both surfaces.
1745
+ */
1746
+ loop?: boolean;
1747
+ /** Listing title — e.g. "2023 Tesla Model 3". */
1748
+ title: ReactNode;
1749
+ /** Optional eyebrow above the title — vehicle type, location. */
1750
+ eyebrow?: ReactNode;
1751
+ /** Long-form description body. */
1752
+ description?: ReactNode;
1753
+ /** Average rating (0–5). When undefined, the rating row is hidden. */
1754
+ rating?: number;
1755
+ /** Total review count, shown next to the rating. */
1756
+ reviewCount?: number;
1757
+ /** Headline price (e.g. `$89`). */
1758
+ price: ReactNode;
1759
+ /** Suffix after the price (e.g. `/day`). */
1760
+ priceUnit?: ReactNode;
1761
+ /** Original price for a strike-through; renders only when set. */
1762
+ originalPrice?: ReactNode;
1763
+ /** Prefix shown before the price — e.g. "from". `spec` variant only. */
1764
+ pricePrefix?: ReactNode;
1765
+ /** Host card data — name + avatar + optional verified / meta line. */
1766
+ host?: ListingDetailHost;
1767
+ /** Feature chips (e.g. seats, fuel, A/C). */
1768
+ features?: ReadonlyArray<ListingDetailFeature>;
1769
+ /** Primary CTA — typically "Book now". Default variant. */
1770
+ primaryAction?: ListingDetailAction;
1771
+ /** Secondary CTA — typically "Message host". Default variant. */
1772
+ secondaryAction?: ListingDetailAction;
1773
+ /** Pill rendered top-left of the photo. */
1774
+ flag?: ListingCardFlag;
1775
+ /** Small category tag right-aligned in the title row. */
1776
+ category?: ReactNode;
1777
+ /** Dim secondary line under the title (e.g. listing ID · year). */
1778
+ meta?: ReactNode;
1779
+ /** Spec cells rendered as a grid in the info column. */
1780
+ specs?: ReadonlyArray<ListingCardSpec>;
1781
+ /** Primary CTA rendered in the dark bottom bar. `spec` variant. */
1782
+ cta?: ListingCardCta;
1783
+ /** Hide the photo counter overlay in `spec` variant. Default `false`. */
1784
+ hidePhotoCounter?: boolean;
1785
+ /**
1786
+ * Per-section className overrides. Each key targets a specific element
1787
+ * in the rendered tree; values are merged with the component's own
1788
+ * utilities via `cn()`.
1789
+ */
1790
+ classNames?: Partial<{
1791
+ /** RadixDialog.Overlay (the darkened backdrop). */
1792
+ overlay: string;
1793
+ /** RadixDialog.Content (the modal panel). */
1794
+ content: string;
1795
+ /** Two-column grid inside the panel. */
1796
+ grid: string;
1797
+ /** Photos column wrapper. */
1798
+ photos: string;
1799
+ /** Info column wrapper. */
1800
+ info: string;
1801
+ /** Header (title + category + meta + rating). */
1802
+ header: string;
1803
+ /** Title text. */
1804
+ title: string;
1805
+ /** Category tag (spec variant). */
1806
+ category: string;
1807
+ /** Meta line (spec variant). */
1808
+ meta: string;
1809
+ /** Spec grid container (spec variant). */
1810
+ specs: string;
1811
+ /** Each spec cell wrapper. */
1812
+ specCell: string;
1813
+ specLabel: string;
1814
+ specValue: string;
1815
+ /** Host row (default variant). */
1816
+ host: string;
1817
+ /** Feature chips list (default variant). */
1818
+ features: string;
1819
+ /** Description paragraph. */
1820
+ description: string;
1821
+ /** Footer / bottom CTA bar. */
1822
+ footer: string;
1823
+ /** Price text inside the footer. */
1824
+ price: string;
1825
+ /** Price unit text inside the footer. */
1826
+ priceUnit: string;
1827
+ /** CTA button (spec variant) or primary action button (default). */
1828
+ cta: string;
1829
+ /** Top-left flag pill on the photos (spec variant). */
1830
+ flag: string;
1831
+ /** Top-right photo counter (spec variant). */
1832
+ photoCounter: string;
1833
+ /** Close button (top-right corner). */
1834
+ close: string;
1835
+ }>;
1836
+ }
1837
+ declare const ListingDetail: react.ForwardRefExoticComponent<ListingDetailProps & react.RefAttributes<HTMLDivElement>>;
1838
+
1557
1839
  /**
1558
1840
  * Country data for `PhoneInput`. Subset of common origins — extend as the
1559
1841
  * product grows or replace with a full ISO 3166-1 list (e.g. `libphonenumber-js`
@@ -2448,4 +2730,4 @@ interface WizardDialogProps {
2448
2730
  }
2449
2731
  declare const WizardDialog: react.ForwardRefExoticComponent<WizardDialogProps & react.RefAttributes<HTMLDivElement>>;
2450
2732
 
2451
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityActor, type ActivityEvent, ActivityTimeline, type ActivityTimelineProps, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, type AlertDialogProps, AlertDialogRoot, AlertDialogTrigger, type AlertProps, type AlertTone, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, type BannerTone, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Card, CardLink, type CardLinkProps, type CardProps, Carousel, type CarouselProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Combobox, type ComboboxOption, type ComboboxProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, ContextMenu, ContextMenuContent, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, ContextMenuSeparator, ContextMenuTrigger, Crumb, type CrumbProps, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, DatePicker, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogOverlay, DialogPortal, type DialogProps, DialogRoot, DialogTrigger, Dots, type DotsProps, Drawer, type DrawerProps, type DrawerSide, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuTrigger, Dropzone, type DropzoneProps, EmptyState, type EmptyStateProps, FAB, type FABProps, Field, type FieldProps, FileChip, type FileChipProps, type FilterFacet, type FilterFacetOption, FilterPanel, type FilterPanelProps, type FilterPanelValue, HealthScore, type HealthScoreBreakdownEntry, type HealthScoreProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, InlineEdit, type InlineEditHandle, type InlineEditProps, Input, type InputProps, Kbd, type KbdProps, LargeTitle, type LargeTitleProps, Lightbox, type LightboxProps, ListingCard, type ListingCardProps, MenuCheckboxItem, MenuItem, type MenuItemProps, MenuSeparator, Menubar, MenubarContent, MenubarItem, type MenubarItemProps, MenubarMenu, MenubarSeparator, MenubarTrigger, NavBar, type NavBarItem, type NavBarOrientation, type NavBarProps, NavItem, type NavItemProps, NavSection, type NavSectionProps, type NormalizedOption, NumberInput, type NumberInputProps, OTP, type OTPHandle, type OTPProps, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingItem, type OnboardingItemStatus, Pagination, type PaginationProps, type PhoneCountry, PhoneInput, type PhoneInputProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, PriceBreakdown, type PriceBreakdownItem, PriceBreakdownLine, type PriceBreakdownLineProps, type PriceBreakdownProps, Progress, type ProgressProps, PullToRefresh, type PullToRefreshProps, type PullToRefreshState, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, ReviewCard, type ReviewCardProps, ScrollArea, type ScrollAreaProps, type ScrollAreaType, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, StatCard, type StatCardProps, type StatTrend, StatusDot, type StatusDotProps, type StatusState, type StepState, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Tab, TabBar, type TabBarItem, type TabBarProps, type TabProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsVariantProps, Tag, type TagProps, Textarea, type TextareaProps, type Theme, Timeline, type TimelineEvent, type TimelineEventTone, TimelineItem, type TimelineItemProps, type TimelineProps, ToastCard, type ToastInput, ToastProvider, type ToastVariant, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, type WizardContext, WizardDialog, type WizardDialogProps, type WizardStep, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, formatRelative, iconButtonStyles, phoneCountries, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
2733
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActivityActor, type ActivityEvent, ActivityTimeline, type ActivityTimelineProps, Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, type AlertDialogProps, AlertDialogRoot, AlertDialogTrigger, type AlertProps, type AlertTone, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, type BannerTone, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Card, CardLink, type CardLinkProps, type CardProps, Carousel, type CarouselProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Combobox, type ComboboxOption, type ComboboxProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, ContextMenu, ContextMenuContent, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, ContextMenuSeparator, ContextMenuTrigger, Crumb, type CrumbProps, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, DatePicker, type DatePickerProps, type DateRange, DateRangePicker, type DateRangePickerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogOverlay, DialogPortal, type DialogProps, DialogRoot, DialogTrigger, Dots, type DotsProps, Drawer, type DrawerProps, type DrawerSide, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuTrigger, Dropzone, type DropzoneProps, EmptyState, type EmptyStateProps, FAB, type FABProps, Field, type FieldProps, FileChip, type FileChipProps, type FilterFacet, type FilterFacetOption, FilterPanel, type FilterPanelProps, type FilterPanelValue, HealthScore, type HealthScoreBreakdownEntry, type HealthScoreProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, InlineEdit, type InlineEditHandle, type InlineEditProps, Input, type InputProps, Kbd, type KbdProps, LargeTitle, type LargeTitleProps, Lightbox, type LightboxProps, ListingCard, type ListingCardCta, type ListingCardFlag, type ListingCardProps, type ListingCardSpec, type ListingCardVariant, ListingDetail, type ListingDetailAction, type ListingDetailFeature, type ListingDetailHost, type ListingDetailProps, type ListingDetailVariant, MenuCheckboxItem, MenuItem, type MenuItemProps, MenuSeparator, Menubar, MenubarContent, MenubarItem, type MenubarItemProps, MenubarMenu, MenubarSeparator, MenubarTrigger, NavBar, type NavBarItem, type NavBarOrientation, type NavBarProps, NavItem, type NavItemProps, NavSection, type NavSectionProps, type NormalizedOption, NumberInput, type NumberInputProps, OTP, type OTPHandle, type OTPProps, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingItem, type OnboardingItemStatus, Pagination, type PaginationProps, type PhoneCountry, PhoneInput, type PhoneInputProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, PriceBreakdown, type PriceBreakdownItem, PriceBreakdownLine, type PriceBreakdownLineProps, type PriceBreakdownProps, Progress, type ProgressProps, PullToRefresh, type PullToRefreshProps, type PullToRefreshState, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, Rating, type RatingProps, ReviewCard, type ReviewCardProps, ScrollArea, type ScrollAreaProps, type ScrollAreaType, SearchInput, type SearchInputProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, StatCard, type StatCardProps, type StatTrend, StatusDot, type StatusDotProps, type StatusState, type StepState, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Tab, TabBar, type TabBarItem, type TabBarProps, type TabProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsVariantProps, Tag, type TagProps, Textarea, type TextareaProps, type Theme, Timeline, type TimelineEvent, type TimelineEventTone, TimelineItem, type TimelineItemProps, type TimelineProps, ToastCard, type ToastInput, ToastProvider, type ToastVariant, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, type WizardContext, WizardDialog, type WizardDialogProps, type WizardStep, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, formatRelative, iconButtonStyles, phoneCountries, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };