@espressif/dashboard-ui-components 1.1.2 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17310,6 +17310,132 @@ type TreemapChartProps = {
17310
17310
  };
17311
17311
  declare const TreemapChart: React$1.ForwardRefExoticComponent<TreemapChartProps & React$1.RefAttributes<HTMLDivElement>>;
17312
17312
 
17313
+ interface InputOTPProps {
17314
+ /** Number of slots. Clamped to [2, 12]. Default: 6. */
17315
+ length?: number;
17316
+ /** When true, accept `[a-zA-Z0-9]` instead of digits only. Ignored when `regex` is set. */
17317
+ allowAlphaNumeric?: boolean;
17318
+ /**
17319
+ * Custom validation pattern (JS regex source, e.g. `"^[0-9a-fA-F]+$"`). When
17320
+ * provided, overrides `allowAlphaNumeric`.
17321
+ */
17322
+ regex?: string;
17323
+ /**
17324
+ * Group boundaries. `[3, 3]` renders `[slot slot slot] · [slot slot slot]`.
17325
+ * Ignored (with a `console.warn`) when the sum does not equal `length`.
17326
+ */
17327
+ separators?: number[];
17328
+ /** Controlled value. */
17329
+ value?: string;
17330
+ /** Uncontrolled initial value. */
17331
+ defaultValue?: string;
17332
+ /** Fires on every change with the current concatenated value. */
17333
+ onChange?: (value: string) => void;
17334
+ /** Fires once when the last slot is filled. */
17335
+ onComplete?: (value: string) => void;
17336
+ label?: React$1.ReactNode;
17337
+ required?: boolean;
17338
+ size?: Size;
17339
+ rounded?: boolean;
17340
+ disabled?: boolean;
17341
+ startHelperContent?: React$1.ReactNode;
17342
+ endHelperContent?: React$1.ReactNode;
17343
+ hintContent?: React$1.ReactNode;
17344
+ error?: boolean;
17345
+ errorContent?: React$1.ReactNode;
17346
+ id?: string;
17347
+ name?: string;
17348
+ autoFocus?: boolean;
17349
+ autoComplete?: string;
17350
+ className?: string;
17351
+ /** Class applied to the slot row container (rare; usually not needed). */
17352
+ containerClassName?: string;
17353
+ 'aria-label'?: string;
17354
+ }
17355
+ /**
17356
+ * Standalone visual divider used between OTP slot groups. Exported for callers
17357
+ * that want to render their own custom slot layout; the default `InputOTP`
17358
+ * component renders it automatically based on the `separators` prop.
17359
+ */
17360
+ declare const InputOTPSeparator: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
17361
+ declare const InputOTP: React$1.ForwardRefExoticComponent<InputOTPProps & React$1.RefAttributes<HTMLInputElement>>;
17362
+
17363
+ type CarouselOrientation = 'horizontal' | 'vertical';
17364
+ type CarouselNavigationStyle = 'dots' | 'arrows' | 'custom';
17365
+ interface CarouselItem {
17366
+ id: string | number;
17367
+ content: React$1.ReactNode;
17368
+ }
17369
+ /**
17370
+ * State passed to `renderNavigation` when `navigation === 'custom'`.
17371
+ * Everything a caller needs to build their own controls without touching
17372
+ * the underlying Embla API.
17373
+ */
17374
+ interface CarouselNavigationState {
17375
+ canScrollPrev: boolean;
17376
+ canScrollNext: boolean;
17377
+ /** 0-based index of the currently selected slide. */
17378
+ selectedIndex: number;
17379
+ /** One entry per snap point (usually one per item). */
17380
+ scrollSnaps: number[];
17381
+ scrollPrev: () => void;
17382
+ scrollNext: () => void;
17383
+ scrollTo: (index: number) => void;
17384
+ }
17385
+ interface CarouselProps {
17386
+ /** Slides to render. `id` is used as the React key. */
17387
+ data: CarouselItem[];
17388
+ /** Layout axis. Vertical carousels need a bounded `className` height. */
17389
+ orientation?: CarouselOrientation;
17390
+ /**
17391
+ * Built-in navigation style:
17392
+ * - `'dots'` — pagination dots below the carousel (default).
17393
+ * - `'arrows'` — prev/next buttons on the sides.
17394
+ * - `'custom'` — invokes `renderNavigation` below the carousel.
17395
+ */
17396
+ navigation?: CarouselNavigationStyle;
17397
+ /**
17398
+ * Cap on dots rendered when `navigation === 'dots'`. When `data.length`
17399
+ * exceeds this, a sliding window of dots is rendered so the row width is
17400
+ * constant. Clamped to `[1, 10]`. Default `5`.
17401
+ */
17402
+ maxDots?: number;
17403
+ /** Advance slides automatically. Default `false`. */
17404
+ autoplay?: boolean;
17405
+ /**
17406
+ * Milliseconds between autoplay advances. Clamped to `[1000, 10000]`.
17407
+ * Ignored when `autoplay` is `false`. Default `3000`.
17408
+ */
17409
+ delay?: number;
17410
+ /** Wrap around at the ends. Default `true`. */
17411
+ loop?: boolean;
17412
+ /** Called after every forward advance (user, keyboard, autoplay, or custom). */
17413
+ onNext?: () => void;
17414
+ /** Called after every backward advance (user, keyboard, autoplay, or custom). */
17415
+ onPrevious?: () => void;
17416
+ /**
17417
+ * Custom navigation renderer. Rendered below the carousel (like dots).
17418
+ * Only invoked when `navigation === 'custom'`.
17419
+ */
17420
+ renderNavigation?: (state: CarouselNavigationState) => React$1.ReactNode;
17421
+ /** Applied to the outer wrapper. */
17422
+ className?: string;
17423
+ /** Applied to each slide's outer element. */
17424
+ itemClassName?: string;
17425
+ }
17426
+
17427
+ /**
17428
+ * High-level, data-driven carousel. Wraps shadcn/ui's Embla-based primitives
17429
+ * with a batteries-included API: pass `data`, pick a `navigation` style, and
17430
+ * everything else — autoplay, looping, keyboard arrow keys, dot pagination —
17431
+ * is wired up for you.
17432
+ *
17433
+ * For advanced composition (non-uniform slide widths, controlling multiple
17434
+ * carousels from one API, etc.) use `navigation="custom"` with
17435
+ * `renderNavigation`; the underlying Embla instance is not exposed.
17436
+ */
17437
+ declare function Carousel({ data, orientation, navigation, maxDots, autoplay, delay, loop, onNext, onPrevious, renderNavigation, className, itemClassName, }: CarouselProps): React$1.JSX.Element;
17438
+
17313
17439
  interface TextareaProps extends Omit<React$1.ComponentProps<"textarea">, "size"> {
17314
17440
  label?: React$1.ReactNode;
17315
17441
  required?: boolean;
@@ -17760,9 +17886,20 @@ interface IconAvatarProps {
17760
17886
  ring?: IconAvatarRingProps;
17761
17887
  children: ReactNode;
17762
17888
  className?: string;
17889
+ /**
17890
+ * Extra classes applied to the inner disc after the variant/legacy styling.
17891
+ * Useful for callers that need to override the disc surface (e.g. drawing a
17892
+ * translucent-foreground bubble on top of a solid-color card).
17893
+ */
17894
+ discClassName?: string;
17895
+ /**
17896
+ * Inline style overrides applied to the inner disc after the variant/legacy
17897
+ * styling. Takes precedence over the resolved variant `containerStyle`.
17898
+ */
17899
+ discStyle?: CSSProperties;
17763
17900
  }
17764
17901
 
17765
- declare function IconAvatar({ size, color, variant, ring, children, className, }: IconAvatarProps): React$1.JSX.Element;
17902
+ declare function IconAvatar({ size, color, variant, ring, children, className, discClassName, discStyle, }: IconAvatarProps): React$1.JSX.Element;
17766
17903
 
17767
17904
  declare function parseSvgViewBoxAspectRatio(svg: string): number | undefined;
17768
17905
  declare const illustrationRegistry: readonly [{
@@ -18101,11 +18238,26 @@ interface KeyValueManagerFieldMeta {
18101
18238
  regex?: string;
18102
18239
  }
18103
18240
  interface KeyValueManagerLabels {
18241
+ /** Placeholder for the search box. Defaults to `Search <keyLabel> or <valueLabel>` (lowercased). */
18104
18242
  search?: string;
18243
+ /** Add button text. Default: `"Add"`. */
18105
18244
  add?: string;
18245
+ /** Error message shown under the first field on invalid or duplicate input. Default: `"Invalid key"`. */
18106
18246
  keyErrorMessage?: string;
18247
+ /** Error message shown under the second field on invalid input. Default: `"Invalid value"`. */
18107
18248
  valueErrorMessage?: string;
18249
+ /** Success message shown after a successful add. Default: `"Added successfully"`. */
18108
18250
  successMessage?: string;
18251
+ /** Header for the first column and label of the first field in the add popover. Default: `"Key"`. */
18252
+ keyLabel?: string;
18253
+ /** Header for the second column and label of the second field in the add popover. Default: `"Value"`. */
18254
+ valueLabel?: string;
18255
+ /** Header for the action column. Default: `"Action"`. */
18256
+ actionLabel?: string;
18257
+ /** Message shown when the list is empty. Default: `"No items"`. */
18258
+ emptyItems?: string;
18259
+ /** Message shown when a search returns no results. Default: `"No matches"`. */
18260
+ emptySearch?: string;
18109
18261
  }
18110
18262
  interface KeyValueManagerProps {
18111
18263
  items: KeyValueManagerItem[];
@@ -18700,4 +18852,4 @@ interface PageContainerSkeletonProps {
18700
18852
  }
18701
18853
  declare function PageContainerSkeleton({ maxWidth, noGutters, showBackLink, showHeader, showActions, className, }: PageContainerSkeletonProps): React$1.JSX.Element;
18702
18854
 
18703
- export { Accordion, type AccordionItem, type AccordionProps, type AccordionSize, AdvancedSearchBox, type AdvancedSearchBoxProps, Alert, type AlertColor, type AlertIconAvatarVariant, type AlertProps, type AlertSize, type AlertType, type AlertVariant, AnimatedCard, type AnimatedCardProps, type AnimatedCardType, AreaChart, type AreaChartProps, AsyncCombobox, type AsyncComboboxProps, AsyncMultiSelect, type AsyncMultiSelectOption, type AsyncMultiSelectProps, Avatar, type AvatarProps, BarChart, type BarChartProps, type BarSize, BasicDetailsCard, type BasicDetailsCardProps, Button, type ButtonProps$1 as ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, type CalendarProps, type ChartCategoryColorKey, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, type CircularProgressProps, Code, type CodeProps, CollapsibleCard, type CollapsibleCardProps, Color, type ComboboxOption, ComposedChart, type ComposedChartProps, type ComposedChartSeries, ConfirmationDialog, type ConfirmationDialogProps, ContentContainer, type ContentContainerMaxWidth, type ContentContainerProps, CopiableText, type CopiableTextProps, CopyButton, type CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerCommittedRange, type DateRangePickerDraftRange, type DateRangePickerPresetId, type DateRangePickerProps, DeviceIcon, type DeviceIconProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DonutChart, type DonutChartProps, type DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, DynamicList, type DynamicListEntry, type DynamicListMetaEntry, type DynamicListMetaType, type DynamicListProps, FileUpload, type FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, type FullSizeErrorProps, FullscreenDialog, type FullscreenDialogProps, GlitchText, type GlitchTextProps, type GoBackLinkData, GradientText, type GradientTextProps, HighlightText, type HighlightTextProps, IconAvatar, type IconAvatarProps, type IconAvatarRingProps, type IconAvatarVariant, IconTextActionCard, type IconTextActionCardProps, type IconTextActionCardVariant, Illustration, type IllustrationProps, type IllustrationType, InlineError, type InlineErrorProps, Input, InputPassword, InvertButton, type InvertButtonProps, KeyValueManager, type KeyValueManagerFieldMeta, type KeyValueManagerItem, type KeyValueManagerLabels, type KeyValueManagerProps, LineChart, type LineChartProps, type LineStrokeWidth, Link, type LinkColor, type LinkProps, List, ListDetails, type ListDetailsItem, type ListDetailsProps, type ListDetailsTitleListPanelColumnWidth, ListProps, LottieAnimationContainer, type LottieAnimationContainerProps, MarkdownContent, type MarkdownContentProps, Menu, type MenuProps, MonospaceContent, type MonospaceContentProps, NoDataCard, type NoDataCardProps, OverflowBadgeList, type OverflowBadgeListColor, type OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, type PageContainerMaxWidth, type PageContainerProps, PageContainerSkeleton, type PageContainerSkeletonProps, Pagination, type PaginationProps, PopCollectionItem, type PopCollectionItemProps, PresetColor, PreviewCard, PreviewCardBackdrop, type PreviewCardBackdropProps, PreviewCardPanel, type PreviewCardPanelProps, type PreviewCardProps, PreviewCardTrigger, type PreviewCardTriggerProps, ProgressBar, type ProgressBarProps, type ProgressBarSegment, RadioGroup, type RadioGroupProps, type RadioGroupSize, type RadioOption, RequirementList, type RequirementListItem, type RequirementListProps, type RequirementListSize, ScrollArea, ScrollBar, ScrollableSections, type ScrollableSectionsContentProps, type ScrollableSectionsProps, type ScrollableSectionsTabProps, type ScrollableSectionsTabsProps, SearchBox, type SearchBoxProps, type SearchMeta, SectionCard, type SectionCardProps, type SectionCardSize, type SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, SelectableCardList, type SelectableCardListElement, type SelectableCardListItem, type SelectableCardListMultiProps, type SelectableCardListProps, type SelectableCardListSingleProps, type SelectableCardListSize, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, ShimmeringText, type ShimmeringTextProps, Sidebar$1 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProps$1 as SidebarProps, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, type SimpleCardProps, SimpleClickableCard, type SimpleClickableCardProps, type SimpleClickableCardSharedProps, type SimpleClickableCardVariant, SimpleInfoCard, type SimpleInfoCardProps, SimpleList, type SimpleListAvatarSize, type SimpleListIconStyle, type SimpleListItem, type SimpleListItemDirection, type SimpleListProps, SimplePaginatedList, type SimplePaginatedListItem, type SimplePaginatedListProps, type SimplePaginatedListSize, SimplifiedDate, type SimplifiedDateProps, Size, Spinner, type SpinnerProps, StatCard, type StatCardProps, type StatCardSize, type StatCardValueType, StatusCardList, type StatusCardListItem, type StatusCardListProps, type StatusCardListSize, type StatusCardState, Switch, type SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, type TagProps, Textarea, type TextareaProps, TimePicker, type TimePickerProps, Toast, type ToastColor, type ToastId, type ToastInput, type ToastOptions, type ToastProps, type ToastToasterProps, type ToastType, type ToastVariant, Toaster, type TogglableItem, TogglableItemsList, type TogglableItemsListProps, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip$1 as Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps$2 as TooltipProps, TooltipProvider, type TooltipProviderProps, Tooltip as TooltipRoot, TooltipTrigger, type TooltipTriggerProps, type TransferItem, TransferList, type TransferListProps, type TreemapAnimationEasing, TreemapChart, type TreemapChartProps, type TreemapDatum, type TreemapTileLabelStyle, Typography, type TypographyProps, type TypographyVariant, type UserType, UserTypeBadge, type UserTypeBadgeProps, type UserTypeBadgeRegistryItem, Variant, VerificationInProgress, type VerificationInProgressProps, VerticalStepper, type VerticalStepperProps, type VerticalStepperSize, type VerticalStepperStep, type VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes };
18855
+ export { Accordion, type AccordionItem, type AccordionProps, type AccordionSize, AdvancedSearchBox, type AdvancedSearchBoxProps, Alert, type AlertColor, type AlertIconAvatarVariant, type AlertProps, type AlertSize, type AlertType, type AlertVariant, AnimatedCard, type AnimatedCardProps, type AnimatedCardType, AreaChart, type AreaChartProps, AsyncCombobox, type AsyncComboboxProps, AsyncMultiSelect, type AsyncMultiSelectOption, type AsyncMultiSelectProps, Avatar, type AvatarProps, BarChart, type BarChartProps, type BarSize, BasicDetailsCard, type BasicDetailsCardProps, Button, type ButtonProps$1 as ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, type CalendarProps, Carousel, type CarouselItem, type CarouselNavigationState, type CarouselNavigationStyle, type CarouselOrientation, type CarouselProps, type ChartCategoryColorKey, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, type ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, type CircularProgressProps, Code, type CodeProps, CollapsibleCard, type CollapsibleCardProps, Color, type ComboboxOption, ComposedChart, type ComposedChartProps, type ComposedChartSeries, ConfirmationDialog, type ConfirmationDialogProps, ContentContainer, type ContentContainerMaxWidth, type ContentContainerProps, CopiableText, type CopiableTextProps, CopyButton, type CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, type DataTableProps, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerCommittedRange, type DateRangePickerDraftRange, type DateRangePickerPresetId, type DateRangePickerProps, DeviceIcon, type DeviceIconProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, DonutChart, type DonutChartProps, type DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, DynamicList, type DynamicListEntry, type DynamicListMetaEntry, type DynamicListMetaType, type DynamicListProps, FileUpload, type FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, type FullSizeErrorProps, FullscreenDialog, type FullscreenDialogProps, GlitchText, type GlitchTextProps, type GoBackLinkData, GradientText, type GradientTextProps, HighlightText, type HighlightTextProps, IconAvatar, type IconAvatarProps, type IconAvatarRingProps, type IconAvatarVariant, IconTextActionCard, type IconTextActionCardProps, type IconTextActionCardVariant, Illustration, type IllustrationProps, type IllustrationType, InlineError, type InlineErrorProps, Input, InputOTP, type InputOTPProps, InputOTPSeparator, InputPassword, InvertButton, type InvertButtonProps, KeyValueManager, type KeyValueManagerFieldMeta, type KeyValueManagerItem, type KeyValueManagerLabels, type KeyValueManagerProps, LineChart, type LineChartProps, type LineStrokeWidth, Link, type LinkColor, type LinkProps, List, ListDetails, type ListDetailsItem, type ListDetailsProps, type ListDetailsTitleListPanelColumnWidth, ListProps, LottieAnimationContainer, type LottieAnimationContainerProps, MarkdownContent, type MarkdownContentProps, Menu, type MenuProps, MonospaceContent, type MonospaceContentProps, NoDataCard, type NoDataCardProps, OverflowBadgeList, type OverflowBadgeListColor, type OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, type PageContainerMaxWidth, type PageContainerProps, PageContainerSkeleton, type PageContainerSkeletonProps, Pagination, type PaginationProps, PopCollectionItem, type PopCollectionItemProps, PresetColor, PreviewCard, PreviewCardBackdrop, type PreviewCardBackdropProps, PreviewCardPanel, type PreviewCardPanelProps, type PreviewCardProps, PreviewCardTrigger, type PreviewCardTriggerProps, ProgressBar, type ProgressBarProps, type ProgressBarSegment, RadioGroup, type RadioGroupProps, type RadioGroupSize, type RadioOption, RequirementList, type RequirementListItem, type RequirementListProps, type RequirementListSize, ScrollArea, ScrollBar, ScrollableSections, type ScrollableSectionsContentProps, type ScrollableSectionsProps, type ScrollableSectionsTabProps, type ScrollableSectionsTabsProps, SearchBox, type SearchBoxProps, type SearchMeta, SectionCard, type SectionCardProps, type SectionCardSize, type SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, SelectableCardList, type SelectableCardListElement, type SelectableCardListItem, type SelectableCardListMultiProps, type SelectableCardListProps, type SelectableCardListSingleProps, type SelectableCardListSize, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, ShimmeringText, type ShimmeringTextProps, Sidebar$1 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProps$1 as SidebarProps, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, type SimpleCardProps, SimpleClickableCard, type SimpleClickableCardProps, type SimpleClickableCardSharedProps, type SimpleClickableCardVariant, SimpleInfoCard, type SimpleInfoCardProps, SimpleList, type SimpleListAvatarSize, type SimpleListIconStyle, type SimpleListItem, type SimpleListItemDirection, type SimpleListProps, SimplePaginatedList, type SimplePaginatedListItem, type SimplePaginatedListProps, type SimplePaginatedListSize, SimplifiedDate, type SimplifiedDateProps, Size, Spinner, type SpinnerProps, StatCard, type StatCardProps, type StatCardSize, type StatCardValueType, StatusCardList, type StatusCardListItem, type StatusCardListProps, type StatusCardListSize, type StatusCardState, Switch, type SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, TagInput, type TagInputProps, type TagProps, Textarea, type TextareaProps, TimePicker, type TimePickerProps, Toast, type ToastColor, type ToastId, type ToastInput, type ToastOptions, type ToastProps, type ToastToasterProps, type ToastType, type ToastVariant, Toaster, type TogglableItem, TogglableItemsList, type TogglableItemsListProps, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupProps, Tooltip$1 as Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps$2 as TooltipProps, TooltipProvider, type TooltipProviderProps, Tooltip as TooltipRoot, TooltipTrigger, type TooltipTriggerProps, type TransferItem, TransferList, type TransferListProps, type TreemapAnimationEasing, TreemapChart, type TreemapChartProps, type TreemapDatum, type TreemapTileLabelStyle, Typography, type TypographyProps, type TypographyVariant, type UserType, UserTypeBadge, type UserTypeBadgeProps, type UserTypeBadgeRegistryItem, Variant, VerificationInProgress, type VerificationInProgressProps, VerticalStepper, type VerticalStepperProps, type VerticalStepperSize, type VerticalStepperStep, type VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes };
@@ -1,5 +1,6 @@
1
- export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, RequirementList, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from '../chunk-MOYKF2ZC.js';
1
+ export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, Carousel, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, InputOTP, InputOTPSeparator, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, RequirementList, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from '../chunk-KF3NDMZW.js';
2
2
  export { Badge, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Label, PRESET_GRADIENT_BACKDROP, PRESET_GRADIENT_FRAME, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, VARIANTS, VARIANT_GRADIENT_BACKDROP_BASE, VARIANT_GRADIENT_DURATION_CLASS, VARIANT_GRADIENT_HOVER_OVERLAY_CLASS, VARIANT_GRADIENT_TRANSITION_DURATION_MS, arbitraryGradientBackgroundImage, badgeVariants, buttonGroupVariants, resolveVariantStyles } from '../chunk-JPMN2UMF.js';
3
3
  export { Avatar, Button, CopyButton, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, GlitchText, GradientText, HighlightText, Input, InputPassword, InvertButton, LIST_CLASS_NAMES, Link, List, Menu, ScrollArea, ScrollBar, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShimmeringText, Sidebar2 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, Tooltip as TooltipRoot, TooltipTrigger, isSidebarGroup, parseTextMarkup, useSidebar } from '../chunk-34PXJOCS.js';
4
4
  export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Collapsible, CollapsibleContent, CollapsibleTrigger, Separator, Skeleton, buttonVariants, useIsMobile } from '../chunk-F5P6S7K2.js';
5
5
  import '../chunk-VU4CZ76T.js';
6
+ import '../chunk-TRTQSARU.js';
@@ -1,6 +1,7 @@
1
1
  export { Badge, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Label, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, badgeVariants, buttonGroupVariants, useIsInView } from '../chunk-JPMN2UMF.js';
2
2
  export { Avatar, AvatarFallback, AvatarImage, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Collapsible, CollapsibleContent, CollapsibleTrigger, Separator, Skeleton, buttonVariants, getStrictContext, useControlledState, useDataState, useIsMobile } from '../chunk-F5P6S7K2.js';
3
3
  import { cn } from '../chunk-VU4CZ76T.js';
4
+ import '../chunk-TRTQSARU.js';
4
5
  import * as React from 'react';
5
6
  import { cva } from 'class-variance-authority';
6
7
  import { jsx } from 'react/jsx-runtime';
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export { A as AppName, C as Color, P as PresetColor, S as Size } from './index-Cv9vHALn.js';
2
2
  export { B as Badge, a as BadgeProps, b as Breadcrumb, c as BreadcrumbEllipsis, d as BreadcrumbItem, e as BreadcrumbLink, f as BreadcrumbList, g as BreadcrumbPage, h as BreadcrumbSeparator, i as ButtonGroup, j as ButtonGroupSeparator, k as ButtonGroupText, C as Card, l as CardContent, m as CardDescription, n as CardFooter, o as CardHeader, p as CardTitle, q as Collapsible, r as CollapsibleContent, s as CollapsibleTrigger, L as Label, P as PRESET_GRADIENT_BACKDROP, t as PRESET_GRADIENT_FRAME, u as Popover, v as PopoverAnchor, w as PopoverContent, x as PopoverTrigger, S as Separator, y as Skeleton, V as VARIANTS, z as VARIANT_GRADIENT_BACKDROP_BASE, A as VARIANT_GRADIENT_DURATION_CLASS, D as VARIANT_GRADIENT_HOVER_OVERLAY_CLASS, E as VARIANT_GRADIENT_TRANSITION_DURATION_MS, F as Variant, G as VariantStyles, H as arbitraryGradientBackgroundImage, I as badgeVariants, J as buttonGroupVariants, K as buttonVariants, M as resolveVariantStyles, N as useIsMobile } from './popover-CRznb4Q7.js';
3
- export { Accordion, AccordionItem, AccordionProps, AccordionSize, AdvancedSearchBox, AdvancedSearchBoxProps, Alert, AlertColor, AlertIconAvatarVariant, AlertProps, AlertSize, AlertType, AlertVariant, AnimatedCard, AnimatedCardProps, AnimatedCardType, AreaChart, AreaChartProps, AsyncCombobox, AsyncComboboxProps, AsyncMultiSelect, AsyncMultiSelectOption, AsyncMultiSelectProps, Avatar, AvatarProps, BarChart, BarChartProps, BarSize, BasicDetailsCard, BasicDetailsCardProps, Button, ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, CalendarProps, ChartCategoryColorKey, ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, CircularProgressProps, Code, CodeProps, CollapsibleCard, CollapsibleCardProps, ComboboxOption, ComposedChart, ComposedChartProps, ComposedChartSeries, ConfirmationDialog, ConfirmationDialogProps, ContentContainer, ContentContainerMaxWidth, ContentContainerProps, CopiableText, CopiableTextProps, CopyButton, CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DataTableProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerCommittedRange, DateRangePickerDraftRange, DateRangePickerPresetId, DateRangePickerProps, DeviceIcon, DeviceIconProps, Dialog, DialogClose, DialogCloseProps, DialogContent, DialogContentProps, DialogDescription, DialogDescriptionProps, DialogFooter, DialogFooterProps, DialogHeader, DialogHeaderProps, DialogProps, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, DonutChart, DonutChartProps, DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemProps, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuGroupProps, DropdownMenuItem, DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuLabelProps, DropdownMenuProps, DropdownMenuRadioGroup, DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemProps, DropdownMenuSeparator, DropdownMenuSeparatorProps, DropdownMenuShortcut, DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubContentProps, DropdownMenuSubProps, DropdownMenuSubTrigger, DropdownMenuSubTriggerProps, DropdownMenuTrigger, DropdownMenuTriggerProps, DynamicList, DynamicListEntry, DynamicListMetaEntry, DynamicListMetaType, DynamicListProps, FileUpload, FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullSizeErrorProps, FullscreenDialog, FullscreenDialogProps, GlitchText, GlitchTextProps, GoBackLinkData, GradientText, GradientTextProps, HighlightText, HighlightTextProps, IconAvatar, IconAvatarProps, IconAvatarRingProps, IconAvatarVariant, IconTextActionCard, IconTextActionCardProps, IconTextActionCardVariant, Illustration, IllustrationProps, IllustrationType, InlineError, InlineErrorProps, Input, InputPassword, InvertButton, InvertButtonProps, KeyValueManager, KeyValueManagerFieldMeta, KeyValueManagerItem, KeyValueManagerLabels, KeyValueManagerProps, LineChart, LineChartProps, LineStrokeWidth, Link, LinkColor, LinkProps, List, ListDetails, ListDetailsItem, ListDetailsProps, ListDetailsTitleListPanelColumnWidth, LottieAnimationContainer, LottieAnimationContainerProps, MarkdownContent, MarkdownContentProps, Menu, MenuProps, MonospaceContent, MonospaceContentProps, NoDataCard, NoDataCardProps, OverflowBadgeList, OverflowBadgeListColor, OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerMaxWidth, PageContainerProps, PageContainerSkeleton, PageContainerSkeletonProps, Pagination, PaginationProps, PopCollectionItem, PopCollectionItemProps, PreviewCard, PreviewCardBackdrop, PreviewCardBackdropProps, PreviewCardPanel, PreviewCardPanelProps, PreviewCardProps, PreviewCardTrigger, PreviewCardTriggerProps, ProgressBar, ProgressBarProps, ProgressBarSegment, RadioGroup, RadioGroupProps, RadioGroupSize, RadioOption, RequirementList, RequirementListItem, RequirementListProps, RequirementListSize, ScrollArea, ScrollBar, ScrollableSections, ScrollableSectionsContentProps, ScrollableSectionsProps, ScrollableSectionsTabProps, ScrollableSectionsTabsProps, SearchBox, SearchBoxProps, SearchMeta, SectionCard, SectionCardProps, SectionCardSize, SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectTriggerProps, SelectValue, SelectableCardList, SelectableCardListElement, SelectableCardListItem, SelectableCardListMultiProps, SelectableCardListProps, SelectableCardListSingleProps, SelectableCardListSize, Sheet, SheetClose, SheetCloseProps, SheetContent, SheetContentProps, SheetDescription, SheetDescriptionProps, SheetFooter, SheetFooterProps, SheetHeader, SheetHeaderProps, SheetProps, SheetTitle, SheetTitleProps, SheetTrigger, SheetTriggerProps, ShimmeringText, ShimmeringTextProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, SimpleCardProps, SimpleClickableCard, SimpleClickableCardProps, SimpleClickableCardSharedProps, SimpleClickableCardVariant, SimpleInfoCard, SimpleInfoCardProps, SimpleList, SimpleListAvatarSize, SimpleListIconStyle, SimpleListItem, SimpleListItemDirection, SimpleListProps, SimplePaginatedList, SimplePaginatedListItem, SimplePaginatedListProps, SimplePaginatedListSize, SimplifiedDate, SimplifiedDateProps, Spinner, SpinnerProps, StatCard, StatCardProps, StatCardSize, StatCardValueType, StatusCardList, StatusCardListItem, StatusCardListProps, StatusCardListSize, StatusCardState, Switch, SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContentProps, TabsContents, TabsContentsProps, TabsList, TabsListProps, TabsProps, TabsTrigger, TabsTriggerProps, Tag, TagInput, TagInputProps, TagProps, Textarea, TextareaProps, TimePicker, TimePickerProps, Toast, ToastColor, ToastId, ToastInput, ToastOptions, ToastProps, ToastToasterProps, ToastType, ToastVariant, Toaster, TogglableItem, TogglableItemsList, TogglableItemsListProps, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipContent, TooltipContentProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipRoot, TooltipTrigger, TooltipTriggerProps, TransferItem, TransferList, TransferListProps, TreemapAnimationEasing, TreemapChart, TreemapChartProps, TreemapDatum, TreemapTileLabelStyle, Typography, TypographyProps, TypographyVariant, UserType, UserTypeBadge, UserTypeBadgeProps, UserTypeBadgeRegistryItem, VerificationInProgress, VerificationInProgressProps, VerticalStepper, VerticalStepperProps, VerticalStepperSize, VerticalStepperStep, VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './components/index.js';
3
+ export { Accordion, AccordionItem, AccordionProps, AccordionSize, AdvancedSearchBox, AdvancedSearchBoxProps, Alert, AlertColor, AlertIconAvatarVariant, AlertProps, AlertSize, AlertType, AlertVariant, AnimatedCard, AnimatedCardProps, AnimatedCardType, AreaChart, AreaChartProps, AsyncCombobox, AsyncComboboxProps, AsyncMultiSelect, AsyncMultiSelectOption, AsyncMultiSelectProps, Avatar, AvatarProps, BarChart, BarChartProps, BarSize, BasicDetailsCard, BasicDetailsCardProps, Button, ButtonProps, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, CalendarProps, Carousel, CarouselItem, CarouselNavigationState, CarouselNavigationStyle, CarouselOrientation, CarouselProps, ChartCategoryColorKey, ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartSeriesColorKey, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, CircularProgressProps, Code, CodeProps, CollapsibleCard, CollapsibleCardProps, ComboboxOption, ComposedChart, ComposedChartProps, ComposedChartSeries, ConfirmationDialog, ConfirmationDialogProps, ContentContainer, ContentContainerMaxWidth, ContentContainerProps, CopiableText, CopiableTextProps, CopyButton, CopyButtonProps, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DataTableProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerCommittedRange, DateRangePickerDraftRange, DateRangePickerPresetId, DateRangePickerProps, DeviceIcon, DeviceIconProps, Dialog, DialogClose, DialogCloseProps, DialogContent, DialogContentProps, DialogDescription, DialogDescriptionProps, DialogFooter, DialogFooterProps, DialogHeader, DialogHeaderProps, DialogProps, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, DonutChart, DonutChartProps, DonutDatum, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuCheckboxItemProps, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuGroupProps, DropdownMenuItem, DropdownMenuItemProps, DropdownMenuLabel, DropdownMenuLabelProps, DropdownMenuProps, DropdownMenuRadioGroup, DropdownMenuRadioGroupProps, DropdownMenuRadioItem, DropdownMenuRadioItemProps, DropdownMenuSeparator, DropdownMenuSeparatorProps, DropdownMenuShortcut, DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubContentProps, DropdownMenuSubProps, DropdownMenuSubTrigger, DropdownMenuSubTriggerProps, DropdownMenuTrigger, DropdownMenuTriggerProps, DynamicList, DynamicListEntry, DynamicListMetaEntry, DynamicListMetaType, DynamicListProps, FileUpload, FileUploadProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullSizeErrorProps, FullscreenDialog, FullscreenDialogProps, GlitchText, GlitchTextProps, GoBackLinkData, GradientText, GradientTextProps, HighlightText, HighlightTextProps, IconAvatar, IconAvatarProps, IconAvatarRingProps, IconAvatarVariant, IconTextActionCard, IconTextActionCardProps, IconTextActionCardVariant, Illustration, IllustrationProps, IllustrationType, InlineError, InlineErrorProps, Input, InputOTP, InputOTPProps, InputOTPSeparator, InputPassword, InvertButton, InvertButtonProps, KeyValueManager, KeyValueManagerFieldMeta, KeyValueManagerItem, KeyValueManagerLabels, KeyValueManagerProps, LineChart, LineChartProps, LineStrokeWidth, Link, LinkColor, LinkProps, List, ListDetails, ListDetailsItem, ListDetailsProps, ListDetailsTitleListPanelColumnWidth, LottieAnimationContainer, LottieAnimationContainerProps, MarkdownContent, MarkdownContentProps, Menu, MenuProps, MonospaceContent, MonospaceContentProps, NoDataCard, NoDataCardProps, OverflowBadgeList, OverflowBadgeListColor, OverflowBadgeListProps, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerMaxWidth, PageContainerProps, PageContainerSkeleton, PageContainerSkeletonProps, Pagination, PaginationProps, PopCollectionItem, PopCollectionItemProps, PreviewCard, PreviewCardBackdrop, PreviewCardBackdropProps, PreviewCardPanel, PreviewCardPanelProps, PreviewCardProps, PreviewCardTrigger, PreviewCardTriggerProps, ProgressBar, ProgressBarProps, ProgressBarSegment, RadioGroup, RadioGroupProps, RadioGroupSize, RadioOption, RequirementList, RequirementListItem, RequirementListProps, RequirementListSize, ScrollArea, ScrollBar, ScrollableSections, ScrollableSectionsContentProps, ScrollableSectionsProps, ScrollableSectionsTabProps, ScrollableSectionsTabsProps, SearchBox, SearchBoxProps, SearchMeta, SectionCard, SectionCardProps, SectionCardSize, SectionCardVariant, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectTriggerProps, SelectValue, SelectableCardList, SelectableCardListElement, SelectableCardListItem, SelectableCardListMultiProps, SelectableCardListProps, SelectableCardListSingleProps, SelectableCardListSize, Sheet, SheetClose, SheetCloseProps, SheetContent, SheetContentProps, SheetDescription, SheetDescriptionProps, SheetFooter, SheetFooterProps, SheetHeader, SheetHeaderProps, SheetProps, SheetTitle, SheetTitleProps, SheetTrigger, SheetTriggerProps, ShimmeringText, ShimmeringTextProps, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleCard, SimpleCardProps, SimpleClickableCard, SimpleClickableCardProps, SimpleClickableCardSharedProps, SimpleClickableCardVariant, SimpleInfoCard, SimpleInfoCardProps, SimpleList, SimpleListAvatarSize, SimpleListIconStyle, SimpleListItem, SimpleListItemDirection, SimpleListProps, SimplePaginatedList, SimplePaginatedListItem, SimplePaginatedListProps, SimplePaginatedListSize, SimplifiedDate, SimplifiedDateProps, Spinner, SpinnerProps, StatCard, StatCardProps, StatCardSize, StatCardValueType, StatusCardList, StatusCardListItem, StatusCardListProps, StatusCardListSize, StatusCardState, Switch, SwitchProps, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContentProps, TabsContents, TabsContentsProps, TabsList, TabsListProps, TabsProps, TabsTrigger, TabsTriggerProps, Tag, TagInput, TagInputProps, TagProps, Textarea, TextareaProps, TimePicker, TimePickerProps, Toast, ToastColor, ToastId, ToastInput, ToastOptions, ToastProps, ToastToasterProps, ToastType, ToastVariant, Toaster, TogglableItem, TogglableItemsList, TogglableItemsListProps, ToggleGroup, ToggleGroupItem, ToggleGroupItemProps, ToggleGroupProps, Tooltip, TooltipContent, TooltipContentProps, TooltipProps, TooltipProvider, TooltipProviderProps, TooltipRoot, TooltipTrigger, TooltipTriggerProps, TransferItem, TransferList, TransferListProps, TreemapAnimationEasing, TreemapChart, TreemapChartProps, TreemapDatum, TreemapTileLabelStyle, Typography, TypographyProps, TypographyVariant, UserType, UserTypeBadge, UserTypeBadgeProps, UserTypeBadgeRegistryItem, VerificationInProgress, VerificationInProgressProps, VerticalStepper, VerticalStepperProps, VerticalStepperSize, VerticalStepperStep, VerticalStepperStepStatus, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, parseTextMarkup, toast, typographyDefaultElement, typographyVariantClasses, useFormField, useSidebar, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './components/index.js';
4
4
  export { L as LIST_CLASS_NAMES, a as ListGroup, b as ListItem, c as ListItemSize, d as ListItemVariant, e as ListLinkComponentProps, f as ListProps, g as ListRole } from './list.props-DBDJt4C1.js';
5
5
  export { S as SidebarEndActionConfig, a as SidebarGroupConfig, b as SidebarItemConfig, c as SidebarLinkComponentProps, d as SidebarNavEntry, e as SidebarProps, f as SidebarTopLevelLinkConfig, i as isSidebarGroup } from './types-B_tam56l.js';
6
6
  export { AnimatedRainmakerLogo, AnimatedRainmakerLogoProps, AppLogo, CopyrightCard, CopyrightCardProps, FooterCard, MyAccountMenu, MyAccountMenuProps, PageLoader, ProfileCard, ProfileCardProps } from './common/index.js';
package/dist/index.js CHANGED
@@ -1,8 +1,9 @@
1
- export { CopyrightCard, PageLoader } from './chunk-J7YNQMAC.js';
2
- export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AnimatedRainmakerLogo, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, RequirementList, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './chunk-MOYKF2ZC.js';
1
+ export { CopyrightCard, PageLoader } from './chunk-742PUXQ6.js';
2
+ export { Accordion, AdvancedSearchBox, Alert, AnimatedCard, AnimatedRainmakerLogo, AreaChart, AsyncCombobox, AsyncMultiSelect, BarChart, BasicDetailsCard, CHART_CATEGORY_COLORS, CHART_SERIES_COLORS, Calendar, CalendarDayButton, Carousel, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CircularProgress, Code, CollapsibleCard, ComposedChart, ConfirmationDialog, ContentContainer, CopiableText, DEFAULT_CHART_SERIES_COLORS, DEFAULT_PAGE_SIZE_OPTIONS, DataTable, DatePicker, DateRangePicker, DeviceIcon, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, DonutChart, DynamicList, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, FullSizeError, FullscreenDialog, IconAvatar, IconTextActionCard, Illustration, InlineError, InputOTP, InputOTPSeparator, KeyValueManager, LineChart, ListDetails, LottieAnimationContainer, MarkdownContent, MonospaceContent, no_data_card_default as NoDataCard, OverflowBadgeList, PRESET_IDS, PRESET_LABELS, PageContainer, PageContainerSkeleton, Pagination, PopCollectionItem, PreviewCard, PreviewCardBackdrop, PreviewCardPanel, PreviewCardTrigger, ProgressBar, RadioGroup, RequirementList, ScrollableSections, SearchBox, SectionCard, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableCardList, SimpleCard, SimpleClickableCard, SimpleInfoCard, SimpleList, SimplePaginatedList, SimplifiedDate, Spinner, StatCard, StatusCardList, Switch, TYPOGRAPHY_VARIANTS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, Tabs, TabsContent, TabsContents, TabsList, TabsTrigger, Tag, TagInput, Textarea, TimePicker, Toast, Toaster, TogglableItemsList, ToggleGroup, ToggleGroupItem, TransferList, TreemapChart, Typography, UserTypeBadge, VerificationInProgress, VerticalStepper, animatedCardAnimations, animatedCardTypeKeys, buildSeriesChartConfig, computeDateRange, getChartSeriesColor, illustrationRegistry, illustrationsById, parseSvgViewBoxAspectRatio, toast, typographyDefaultElement, typographyVariantClasses, useFormField, userTypeBadgeRegistry, userTypeBadgeSizeVariants, userTypeBadgeUserTypes } from './chunk-KF3NDMZW.js';
3
3
  export { Badge, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Label, PRESET_GRADIENT_BACKDROP, PRESET_GRADIENT_FRAME, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, VARIANTS, VARIANT_GRADIENT_BACKDROP_BASE, VARIANT_GRADIENT_DURATION_CLASS, VARIANT_GRADIENT_HOVER_OVERLAY_CLASS, VARIANT_GRADIENT_TRANSITION_DURATION_MS, arbitraryGradientBackgroundImage, badgeVariants, buttonGroupVariants, resolveVariantStyles } from './chunk-JPMN2UMF.js';
4
- export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from './chunk-WK4PTIOA.js';
4
+ export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from './chunk-W2L5GRI2.js';
5
5
  export { AppLogo, FooterCard, MyAccountMenu, ProfileCard } from './chunk-SYEKNRS5.js';
6
6
  export { Avatar, Button, CopyButton, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, GlitchText, GradientText, HighlightText, Input, InputPassword, InvertButton, LIST_CLASS_NAMES, Link, List, Menu, ScrollArea, ScrollBar, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShimmeringText, Sidebar2 as Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, Sidebar as SidebarPrimitive, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, Tooltip as TooltipRoot, TooltipTrigger, isSidebarGroup, parseTextMarkup, useSidebar } from './chunk-34PXJOCS.js';
7
7
  export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Collapsible, CollapsibleContent, CollapsibleTrigger, Separator, Skeleton, buttonVariants, useControlledState, useIsMobile } from './chunk-F5P6S7K2.js';
8
8
  export { cn } from './chunk-VU4CZ76T.js';
9
+ import './chunk-TRTQSARU.js';
@@ -1,5 +1,6 @@
1
- export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from '../chunk-WK4PTIOA.js';
1
+ export { AccountMenu, EntryLayout, Footer as WorkspaceFooter, Header as WorkspaceHeader, WorkspaceLayout } from '../chunk-W2L5GRI2.js';
2
2
  import '../chunk-SYEKNRS5.js';
3
3
  export { isSidebarGroup } from '../chunk-34PXJOCS.js';
4
4
  import '../chunk-F5P6S7K2.js';
5
5
  import '../chunk-VU4CZ76T.js';
6
+ import '../chunk-TRTQSARU.js';
@@ -1,3 +1,5 @@
1
+ import './chunk-TRTQSARU.js';
2
+
1
3
  // tailwind.preset.ts
2
4
  var espPreset = {
3
5
  darkMode: "class",
@@ -1 +1,2 @@
1
1
  export { cn, isPresetColor, resolveColor } from '../chunk-VU4CZ76T.js';
2
+ import '../chunk-TRTQSARU.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@espressif/dashboard-ui-components",
3
- "version": "1.1.2",
3
+ "version": "1.2.0",
4
4
  "description": "Reusable React UI components, page layouts, and utilities — Espressif's dashboard design system.",
5
5
  "keywords": [
6
6
  "react",
@@ -136,8 +136,11 @@
136
136
  "clsx": "^2.1.1",
137
137
  "cmdk": "^1.0.0",
138
138
  "date-fns": "4.1.0",
139
+ "embla-carousel-autoplay": "^8.3.0",
140
+ "embla-carousel-react": "^8.3.0",
139
141
  "framer-motion": "^12.0.0",
140
- "lodash": "^4.17.21",
142
+ "input-otp": "1.5.0",
143
+ "lodash-es": "^4.17.21",
141
144
  "lottie-react": "^2.4.0",
142
145
  "lucide-react": "^0.562.0",
143
146
  "motion": "^12.0.0",
@@ -154,7 +157,7 @@
154
157
  "@tanstack/react-table": "^8.21.0",
155
158
  "@testing-library/react": "16.3.2",
156
159
  "@testing-library/user-event": "14.6.1",
157
- "@types/lodash": "^4.17.0",
160
+ "@types/lodash-es": "^4.17.12",
158
161
  "@types/react": "^19.0.0",
159
162
  "@types/react-dom": "^19.0.0",
160
163
  "jsdom": "29.1.1",
@@ -20,6 +20,12 @@
20
20
  --animate-collapsible-down: collapsible-down 0.3s ease-out;
21
21
  --animate-collapsible-up: collapsible-up 0.3s ease-out;
22
22
  --animate-avatar-ring: avatar-ring 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
23
+ --animate-caret-blink: caret-blink 1.25s ease-out infinite;
24
+ }
25
+
26
+ @keyframes caret-blink {
27
+ 0%, 70%, 100% { opacity: 1; }
28
+ 20%, 50% { opacity: 0; }
23
29
  }
24
30
 
25
31
  @keyframes avatar-ring {