@facter/ds-core 1.5.3 → 1.6.1

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.mts CHANGED
@@ -1936,6 +1936,206 @@ declare const Kanban: {
1936
1936
  declare function useKanban(): KanbanContextValue;
1937
1937
  declare function useKanbanOptional(): KanbanContextValue | null;
1938
1938
 
1939
+ interface ItemCardActionsProps extends React$1.HTMLAttributes<HTMLDivElement> {
1940
+ /** Whether to show border on top */
1941
+ bordered?: boolean;
1942
+ }
1943
+ declare const ItemCardActions: React$1.ForwardRefExoticComponent<ItemCardActionsProps & React$1.RefAttributes<HTMLDivElement>>;
1944
+ interface ItemCardActionButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1945
+ /** Whether to show chevron arrow */
1946
+ showArrow?: boolean;
1947
+ /** Loading state */
1948
+ loading?: boolean;
1949
+ /** Variant style */
1950
+ variant?: 'default' | 'primary' | 'secondary' | 'destructive';
1951
+ }
1952
+ declare const ItemCardActionButton: React$1.ForwardRefExoticComponent<ItemCardActionButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1953
+ interface ItemCardActionsRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
1954
+ }
1955
+ declare const ItemCardActionsRow: React$1.ForwardRefExoticComponent<ItemCardActionsRowProps & React$1.RefAttributes<HTMLDivElement>>;
1956
+
1957
+ interface ItemCardFooterProps extends React$1.HTMLAttributes<HTMLDivElement> {
1958
+ }
1959
+ declare const ItemCardFooter: React$1.ForwardRefExoticComponent<ItemCardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
1960
+ interface ItemCardFooterItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1961
+ /** Small label text */
1962
+ label: string;
1963
+ /** Main value */
1964
+ value: React$1.ReactNode;
1965
+ /** Alignment */
1966
+ align?: 'left' | 'right';
1967
+ }
1968
+ declare const ItemCardFooterItem: React$1.ForwardRefExoticComponent<ItemCardFooterItemProps & React$1.RefAttributes<HTMLDivElement>>;
1969
+ interface ItemCardFooterDividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1970
+ }
1971
+ declare const ItemCardFooterDivider: React$1.ForwardRefExoticComponent<ItemCardFooterDividerProps & React$1.RefAttributes<HTMLDivElement>>;
1972
+
1973
+ interface ItemCardContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
1974
+ /** Whether to use muted background */
1975
+ muted?: boolean;
1976
+ }
1977
+ declare const ItemCardContent: React$1.ForwardRefExoticComponent<ItemCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
1978
+ interface ItemCardContentItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1979
+ /** Label on the left */
1980
+ label?: React$1.ReactNode;
1981
+ /** Value on the right */
1982
+ value?: React$1.ReactNode;
1983
+ /** Secondary value (e.g., price) */
1984
+ secondary?: React$1.ReactNode;
1985
+ }
1986
+ declare const ItemCardContentItem: React$1.ForwardRefExoticComponent<ItemCardContentItemProps & React$1.RefAttributes<HTMLDivElement>>;
1987
+ interface ItemCardEmptyProps extends React$1.HTMLAttributes<HTMLDivElement> {
1988
+ /** Icon to display */
1989
+ icon?: React$1.ReactNode;
1990
+ /** Message to display */
1991
+ message?: string;
1992
+ }
1993
+ declare const ItemCardEmpty: React$1.ForwardRefExoticComponent<ItemCardEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
1994
+
1995
+ interface ItemCardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
1996
+ /** Alignment of content */
1997
+ align?: 'left' | 'right' | 'between';
1998
+ }
1999
+ declare const ItemCardHeader: React$1.ForwardRefExoticComponent<ItemCardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2000
+ declare const itemCardIconVariants: (props?: ({
2001
+ size?: "sm" | "lg" | "md" | null | undefined;
2002
+ variant?: "destructive" | "outline" | "secondary" | "success" | "warning" | "info" | "primary" | "muted" | null | undefined;
2003
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2004
+ interface ItemCardIconProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof itemCardIconVariants> {
2005
+ /** Whether to show ripple effect */
2006
+ ripple?: boolean;
2007
+ }
2008
+ declare const ItemCardIcon: React$1.ForwardRefExoticComponent<ItemCardIconProps & React$1.RefAttributes<HTMLDivElement>>;
2009
+ interface ItemCardTitleGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
2010
+ /** Alignment of text */
2011
+ align?: 'left' | 'right' | 'center';
2012
+ }
2013
+ declare const ItemCardTitleGroup: React$1.ForwardRefExoticComponent<ItemCardTitleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2014
+ interface ItemCardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2015
+ }
2016
+ declare const ItemCardTitle: React$1.ForwardRefExoticComponent<ItemCardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2017
+ interface ItemCardSubtitleProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
2018
+ }
2019
+ declare const ItemCardSubtitle: React$1.ForwardRefExoticComponent<ItemCardSubtitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
2020
+
2021
+ declare const itemCardBadgeVariants: (props?: ({
2022
+ variant?: "default" | "destructive" | "success" | "warning" | "info" | "primary" | "muted" | null | undefined;
2023
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2024
+ interface ItemCardBadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof itemCardBadgeVariants> {
2025
+ }
2026
+ declare const ItemCardBadge: React$1.ForwardRefExoticComponent<ItemCardBadgeProps & React$1.RefAttributes<HTMLDivElement>>;
2027
+
2028
+ declare const itemCardVariants: (props?: ({
2029
+ variant?: "default" | "selected" | "muted" | null | undefined;
2030
+ hover?: boolean | null | undefined;
2031
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2032
+ interface ItemCardContextValue {
2033
+ isSelected?: boolean;
2034
+ }
2035
+ declare function useItemCard(): ItemCardContextValue;
2036
+ interface ItemCardRootProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof itemCardVariants> {
2037
+ /** Whether the card is selected */
2038
+ selected?: boolean;
2039
+ /** Whether the card is clickable */
2040
+ asButton?: boolean;
2041
+ }
2042
+ declare const ItemCardRoot: React$1.ForwardRefExoticComponent<ItemCardRootProps & React$1.RefAttributes<HTMLDivElement>>;
2043
+
2044
+ /**
2045
+ * ItemCard - A compound component for building item/resource cards
2046
+ *
2047
+ * Inspired by the Kit de Peças card pattern. Use for displaying items like:
2048
+ * - Part Kits (Kits de Peças)
2049
+ * - Maintenance Plans (Planejamento de Manutenção)
2050
+ * - Resources, Products, or any item with icon, details, and actions
2051
+ *
2052
+ * @example Basic Usage
2053
+ * ```tsx
2054
+ * <ItemCard.Root>
2055
+ * <ItemCard.Badge variant="primary">Publicado</ItemCard.Badge>
2056
+ *
2057
+ * <ItemCard.Header>
2058
+ * <ItemCard.Icon variant="primary">
2059
+ * <BoxIcon className="w-5 h-5" />
2060
+ * </ItemCard.Icon>
2061
+ * <ItemCard.TitleGroup>
2062
+ * <ItemCard.Title>Kit Cubo</ItemCard.Title>
2063
+ * <ItemCard.Subtitle>2 Peças</ItemCard.Subtitle>
2064
+ * </ItemCard.TitleGroup>
2065
+ * </ItemCard.Header>
2066
+ *
2067
+ * <ItemCard.Content>
2068
+ * <ItemCard.ContentItem label="Araldite 10min" value="2x" secondary="R$ 28,00" />
2069
+ * <ItemCard.ContentItem label="Aditivo Radiador 1L" value="1x" secondary="R$ 55,00" />
2070
+ * </ItemCard.Content>
2071
+ *
2072
+ * <ItemCard.Footer>
2073
+ * <ItemCard.FooterItem label="Tipo Ativo" value="Implemento" />
2074
+ * <ItemCard.FooterItem label="Custo Total" value="R$ 111,00" align="right" />
2075
+ * </ItemCard.Footer>
2076
+ *
2077
+ * <ItemCard.Actions>
2078
+ * <ItemCard.ActionButton>Ações</ItemCard.ActionButton>
2079
+ * </ItemCard.Actions>
2080
+ * </ItemCard.Root>
2081
+ * ```
2082
+ *
2083
+ * @example With Selection
2084
+ * ```tsx
2085
+ * <ItemCard.Root selected={isSelected} onClick={() => setSelected(!isSelected)}>
2086
+ * ...
2087
+ * </ItemCard.Root>
2088
+ * ```
2089
+ *
2090
+ * @example Maintenance Planning Card
2091
+ * ```tsx
2092
+ * <ItemCard.Root>
2093
+ * <ItemCard.Badge variant="warning">Crítico</ItemCard.Badge>
2094
+ *
2095
+ * <ItemCard.Header>
2096
+ * <ItemCard.Icon variant="warning" ripple>
2097
+ * <TruckIcon className="w-5 h-5" />
2098
+ * </ItemCard.Icon>
2099
+ * <ItemCard.TitleGroup>
2100
+ * <ItemCard.Title>ABC-1234</ItemCard.Title>
2101
+ * <ItemCard.Subtitle>Scania R450</ItemCard.Subtitle>
2102
+ * </ItemCard.TitleGroup>
2103
+ * </ItemCard.Header>
2104
+ *
2105
+ * <ItemCard.Content>
2106
+ * <ItemCard.ContentItem label="Troca de Óleo" value="500 km" />
2107
+ * <ItemCard.ContentItem label="Revisão Freios" value="1.200 km" />
2108
+ * </ItemCard.Content>
2109
+ *
2110
+ * <ItemCard.Footer>
2111
+ * <ItemCard.FooterItem label="Status" value="Urgente" />
2112
+ * <ItemCard.FooterItem label="Próxima" value="15/02/2024" align="right" />
2113
+ * </ItemCard.Footer>
2114
+ *
2115
+ * <ItemCard.Actions>
2116
+ * <ItemCard.ActionButton variant="primary">Ver Detalhes</ItemCard.ActionButton>
2117
+ * </ItemCard.Actions>
2118
+ * </ItemCard.Root>
2119
+ * ```
2120
+ */
2121
+ declare const ItemCard: React$1.ForwardRefExoticComponent<ItemCardRootProps & React$1.RefAttributes<HTMLDivElement>> & {
2122
+ Badge: React$1.ForwardRefExoticComponent<ItemCardBadgeProps & React$1.RefAttributes<HTMLDivElement>>;
2123
+ Header: React$1.ForwardRefExoticComponent<ItemCardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2124
+ Icon: React$1.ForwardRefExoticComponent<ItemCardIconProps & React$1.RefAttributes<HTMLDivElement>>;
2125
+ TitleGroup: React$1.ForwardRefExoticComponent<ItemCardTitleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2126
+ Title: React$1.ForwardRefExoticComponent<ItemCardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2127
+ Subtitle: React$1.ForwardRefExoticComponent<ItemCardSubtitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
2128
+ Content: React$1.ForwardRefExoticComponent<ItemCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
2129
+ ContentItem: React$1.ForwardRefExoticComponent<ItemCardContentItemProps & React$1.RefAttributes<HTMLDivElement>>;
2130
+ Empty: React$1.ForwardRefExoticComponent<ItemCardEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
2131
+ Footer: React$1.ForwardRefExoticComponent<ItemCardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
2132
+ FooterItem: React$1.ForwardRefExoticComponent<ItemCardFooterItemProps & React$1.RefAttributes<HTMLDivElement>>;
2133
+ FooterDivider: React$1.ForwardRefExoticComponent<ItemCardFooterDividerProps & React$1.RefAttributes<HTMLDivElement>>;
2134
+ Actions: React$1.ForwardRefExoticComponent<ItemCardActionsProps & React$1.RefAttributes<HTMLDivElement>>;
2135
+ ActionButton: React$1.ForwardRefExoticComponent<ItemCardActionButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2136
+ ActionsRow: React$1.ForwardRefExoticComponent<ItemCardActionsRowProps & React$1.RefAttributes<HTMLDivElement>>;
2137
+ };
2138
+
1939
2139
  /**
1940
2140
  * Generic validation schema interface
1941
2141
  * Compatible with Zod and other validation libraries
@@ -2358,4 +2558,4 @@ declare const useTheme: () => ThemeProviderState;
2358
2558
  */
2359
2559
  declare function cn(...inputs: ClassValue[]): string;
2360
2560
 
2361
- export { AuthLayout, type AuthLayoutBodyProps, type AuthLayoutContentProps, type AuthLayoutDividerProps, type AuthLayoutFooterProps, type AuthLayoutHeaderProps, type AuthLayoutImageProps, type AuthLayoutLinkProps, type AuthLayoutProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, type BaseFieldProps, BigNumberCard, type BigNumberCardContentProps, type BigNumberCardHeaderProps, type BigNumberCardLinkProps, type BigNumberCardRootProps, type BigNumberCardSize, type BigNumberCardSparklineProps, type BigNumberCardTitleProps, type BigNumberCardTrendProps, type BigNumberCardValueProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, type Company, DENSITY_CONFIG, DashboardLayout, type DashboardLayoutBreadcrumbsProps, type DashboardLayoutContentProps, type DashboardLayoutContextValue, type DashboardLayoutHeaderActionsProps, type DashboardLayoutHeaderProps, type DashboardLayoutHeaderTitleProps, type DashboardLayoutHeaderUserProps, type DashboardLayoutMobileNavItemProps, type DashboardLayoutMobileNavProps, type DashboardLayoutProps, type DashboardLayoutSidebarFooterProps, type DashboardLayoutSidebarHeaderProps, type DashboardLayoutSidebarNavGroupProps, type DashboardLayoutSidebarNavItemProps, type DashboardLayoutSidebarNavProps, type DashboardLayoutSidebarProps, type DashboardLayoutSidebarSectionProps, DataTable, type DataTableBulkActionsProps, type DataTableColumnHeaderProps, type DataTableColumnVisibilityProps, type DataTableContentProps, type DataTableContextValue, type DataTableDensity, type DataTableDensityToggleProps, type DataTableEmptyStateProps, type DataTableExportFormat, type DataTableExportProps, type DataTableFilterOption, type DataTableFilterProps, type DataTableFiltersProps, type DataTableLoadingProps, type DataTableMeta, type DataTablePaginationMode, type DataTablePaginationProps, type DataTableProps, type DataTableRowActionsProps, type DataTableSearchProps, type DataTableState, type DataTableTab, type DataTableTabsProps, type DataTableToolbarProps, Dialog, DialogBody, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogWrapper, type DialogWrapperProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, Form, FormCheckbox, type FormCheckboxProps, type FormContextValue, FormDescription, type FormDescriptionProps, FormError, type FormErrorProps, type FormFieldContextValue, FormFieldProvider, FormFieldWrapper, type FormFieldWrapperProps, FormInput, type FormInputProps, FormLabel, type FormLabelProps, FormRadioGroup, type FormRadioGroupProps, type FormRootProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextarea, type FormTextareaProps, GlobalLoaderController, Input, type InputProps, Kanban, type KanbanBoardProps, type KanbanCardProps, type KanbanColumnConfig, type KanbanColumnProps, type KanbanContextValue, type KanbanDragResult, type KanbanEmptyProps, type KanbanItem, Loader, type LoaderProps, LoaderProvider, Logo, type LogoProps, type MaskType, MobileNav, type MobileNavFabAction, MobileNavItem, type MobileNavItemConfig, type MobileNavItemProps, type MobileNavProps, Navbar, NavbarCompanyProfile, type NavbarCompanyProfileProps, NavbarNotification, type NavbarNotificationProps, type NavbarProps, NavbarUserMenu, type NavbarUserMenuProps, type NotificationItem, type PaginatedResponse, type PaginationMeta, type PaginationParams, Popover, PopoverContent, PopoverTrigger, type RadioOption, type RadioOptionColor, RippleBackground, type RippleBackgroundProps, RippleEffect, type RippleEffectProps, RippleWrapper, type RippleWrapperProps, ScrollArea, ScrollBar, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderBadge, type SectionHeaderBadgeProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderIcon, type SectionHeaderIconProps, SectionHeaderRoot, type SectionHeaderRootProps, SectionHeaderSubtitle, type SectionHeaderSubtitleProps, SectionHeaderTitle, type SectionHeaderTitleProps, Select, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectOption, type SelectProps, SelectSeparator, SelectionLayout, type SelectionLayoutCardProps, type SelectionLayoutEmptyProps, type SelectionLayoutHeaderProps, type SelectionLayoutHeadlineProps, type SelectionLayoutListProps, type SelectionLayoutLogoProps, type SelectionLayoutMainProps, type SelectionLayoutProps, type SelectionLayoutSearchProps, type SelectionLayoutSidebarProps, type SelectionLayoutStatsProps, type SelectionLayoutTabProps, type SelectionLayoutTabsProps, Separator, Sidebar, type SidebarContextValue, type SidebarFooterMenuItem, type SidebarFooterProps, type SidebarFooterUser, type SidebarHeaderProps, type SidebarNavGroupProps, type SidebarNavItemProps, type SidebarNavProps, type SidebarProps, type SidebarSectionProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, type SkeletonProps, Sparkline, type SparklineColor, type StepState, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, type ToasterProps, Tooltip, TooltipAction, type TooltipActionProps, TooltipActions, type TooltipActionsProps, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipDescription, type TooltipDescriptionProps, TooltipHeader, type TooltipHeaderProps, TooltipIcon, type TooltipIconProps, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTitle, type TooltipTitleProps, TooltipTrigger, type UseDataTableConfig, type UserMenuItemConfig, type ValidationSchema, Wizard, WizardContent, type WizardContentProps, type WizardContextValue, WizardNavigation, type WizardNavigationProps, WizardPanel, type WizardPanelProps, WizardProgress, type WizardProgressProps, type WizardProps, WizardProvider, type WizardStepConfig, WizardStepConnector, type WizardStepConnectorProps, WizardStepIndicator, type WizardStepIndicatorProps, WizardSteps, type WizardStepsProps, cn, loader, toast, useDashboardLayout, useDataTable, useDataTableColumnVisibility, useDataTableDensity, useDataTableEmpty, useDataTableInstance, useDataTableLoading, useDataTableMeta, useDataTablePagination, useDataTableSelection, useDataTableSorting, useDataTableState, useDebounce, useDebouncedCallback, useFormFieldContext, useKanban, useKanbanOptional, useLoader, useMediaQuery, useSidebar, useSidebarOptional, useTheme, useWizardContext, useWizardContextOptional };
2561
+ export { AuthLayout, type AuthLayoutBodyProps, type AuthLayoutContentProps, type AuthLayoutDividerProps, type AuthLayoutFooterProps, type AuthLayoutHeaderProps, type AuthLayoutImageProps, type AuthLayoutLinkProps, type AuthLayoutProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, type BaseFieldProps, BigNumberCard, type BigNumberCardContentProps, type BigNumberCardHeaderProps, type BigNumberCardLinkProps, type BigNumberCardRootProps, type BigNumberCardSize, type BigNumberCardSparklineProps, type BigNumberCardTitleProps, type BigNumberCardTrendProps, type BigNumberCardValueProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, type Company, DENSITY_CONFIG, DashboardLayout, type DashboardLayoutBreadcrumbsProps, type DashboardLayoutContentProps, type DashboardLayoutContextValue, type DashboardLayoutHeaderActionsProps, type DashboardLayoutHeaderProps, type DashboardLayoutHeaderTitleProps, type DashboardLayoutHeaderUserProps, type DashboardLayoutMobileNavItemProps, type DashboardLayoutMobileNavProps, type DashboardLayoutProps, type DashboardLayoutSidebarFooterProps, type DashboardLayoutSidebarHeaderProps, type DashboardLayoutSidebarNavGroupProps, type DashboardLayoutSidebarNavItemProps, type DashboardLayoutSidebarNavProps, type DashboardLayoutSidebarProps, type DashboardLayoutSidebarSectionProps, DataTable, type DataTableBulkActionsProps, type DataTableColumnHeaderProps, type DataTableColumnVisibilityProps, type DataTableContentProps, type DataTableContextValue, type DataTableDensity, type DataTableDensityToggleProps, type DataTableEmptyStateProps, type DataTableExportFormat, type DataTableExportProps, type DataTableFilterOption, type DataTableFilterProps, type DataTableFiltersProps, type DataTableLoadingProps, type DataTableMeta, type DataTablePaginationMode, type DataTablePaginationProps, type DataTableProps, type DataTableRowActionsProps, type DataTableSearchProps, type DataTableState, type DataTableTab, type DataTableTabsProps, type DataTableToolbarProps, Dialog, DialogBody, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogWrapper, type DialogWrapperProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, Form, FormCheckbox, type FormCheckboxProps, type FormContextValue, FormDescription, type FormDescriptionProps, FormError, type FormErrorProps, type FormFieldContextValue, FormFieldProvider, FormFieldWrapper, type FormFieldWrapperProps, FormInput, type FormInputProps, FormLabel, type FormLabelProps, FormRadioGroup, type FormRadioGroupProps, type FormRootProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextarea, type FormTextareaProps, GlobalLoaderController, Input, type InputProps, ItemCard, ItemCardActionButton, type ItemCardActionButtonProps, ItemCardActions, type ItemCardActionsProps, ItemCardActionsRow, type ItemCardActionsRowProps, ItemCardBadge, type ItemCardBadgeProps, ItemCardContent, ItemCardContentItem, type ItemCardContentItemProps, type ItemCardContentProps, ItemCardEmpty, type ItemCardEmptyProps, ItemCardFooter, ItemCardFooterDivider, type ItemCardFooterDividerProps, ItemCardFooterItem, type ItemCardFooterItemProps, type ItemCardFooterProps, ItemCardHeader, type ItemCardHeaderProps, ItemCardIcon, type ItemCardIconProps, ItemCardRoot, type ItemCardRootProps, ItemCardSubtitle, type ItemCardSubtitleProps, ItemCardTitle, ItemCardTitleGroup, type ItemCardTitleGroupProps, type ItemCardTitleProps, Kanban, type KanbanBoardProps, type KanbanCardProps, type KanbanColumnConfig, type KanbanColumnProps, type KanbanContextValue, type KanbanDragResult, type KanbanEmptyProps, type KanbanItem, Loader, type LoaderProps, LoaderProvider, Logo, type LogoProps, type MaskType, MobileNav, type MobileNavFabAction, MobileNavItem, type MobileNavItemConfig, type MobileNavItemProps, type MobileNavProps, Navbar, NavbarCompanyProfile, type NavbarCompanyProfileProps, NavbarNotification, type NavbarNotificationProps, type NavbarProps, NavbarUserMenu, type NavbarUserMenuProps, type NotificationItem, type PaginatedResponse, type PaginationMeta, type PaginationParams, Popover, PopoverContent, PopoverTrigger, type RadioOption, type RadioOptionColor, RippleBackground, type RippleBackgroundProps, RippleEffect, type RippleEffectProps, RippleWrapper, type RippleWrapperProps, ScrollArea, ScrollBar, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderBadge, type SectionHeaderBadgeProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderIcon, type SectionHeaderIconProps, SectionHeaderRoot, type SectionHeaderRootProps, SectionHeaderSubtitle, type SectionHeaderSubtitleProps, SectionHeaderTitle, type SectionHeaderTitleProps, Select, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectOption, type SelectProps, SelectSeparator, SelectionLayout, type SelectionLayoutCardProps, type SelectionLayoutEmptyProps, type SelectionLayoutHeaderProps, type SelectionLayoutHeadlineProps, type SelectionLayoutListProps, type SelectionLayoutLogoProps, type SelectionLayoutMainProps, type SelectionLayoutProps, type SelectionLayoutSearchProps, type SelectionLayoutSidebarProps, type SelectionLayoutStatsProps, type SelectionLayoutTabProps, type SelectionLayoutTabsProps, Separator, Sidebar, type SidebarContextValue, type SidebarFooterMenuItem, type SidebarFooterProps, type SidebarFooterUser, type SidebarHeaderProps, type SidebarNavGroupProps, type SidebarNavItemProps, type SidebarNavProps, type SidebarProps, type SidebarSectionProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, type SkeletonProps, Sparkline, type SparklineColor, type StepState, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, type ToasterProps, Tooltip, TooltipAction, type TooltipActionProps, TooltipActions, type TooltipActionsProps, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipDescription, type TooltipDescriptionProps, TooltipHeader, type TooltipHeaderProps, TooltipIcon, type TooltipIconProps, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTitle, type TooltipTitleProps, TooltipTrigger, type UseDataTableConfig, type UserMenuItemConfig, type ValidationSchema, Wizard, WizardContent, type WizardContentProps, type WizardContextValue, WizardNavigation, type WizardNavigationProps, WizardPanel, type WizardPanelProps, WizardProgress, type WizardProgressProps, type WizardProps, WizardProvider, type WizardStepConfig, WizardStepConnector, type WizardStepConnectorProps, WizardStepIndicator, type WizardStepIndicatorProps, WizardSteps, type WizardStepsProps, cn, itemCardBadgeVariants, itemCardIconVariants, itemCardVariants, loader, toast, useDashboardLayout, useDataTable, useDataTableColumnVisibility, useDataTableDensity, useDataTableEmpty, useDataTableInstance, useDataTableLoading, useDataTableMeta, useDataTablePagination, useDataTableSelection, useDataTableSorting, useDataTableState, useDebounce, useDebouncedCallback, useFormFieldContext, useItemCard, useKanban, useKanbanOptional, useLoader, useMediaQuery, useSidebar, useSidebarOptional, useTheme, useWizardContext, useWizardContextOptional };
package/dist/index.d.ts CHANGED
@@ -1936,6 +1936,206 @@ declare const Kanban: {
1936
1936
  declare function useKanban(): KanbanContextValue;
1937
1937
  declare function useKanbanOptional(): KanbanContextValue | null;
1938
1938
 
1939
+ interface ItemCardActionsProps extends React$1.HTMLAttributes<HTMLDivElement> {
1940
+ /** Whether to show border on top */
1941
+ bordered?: boolean;
1942
+ }
1943
+ declare const ItemCardActions: React$1.ForwardRefExoticComponent<ItemCardActionsProps & React$1.RefAttributes<HTMLDivElement>>;
1944
+ interface ItemCardActionButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
1945
+ /** Whether to show chevron arrow */
1946
+ showArrow?: boolean;
1947
+ /** Loading state */
1948
+ loading?: boolean;
1949
+ /** Variant style */
1950
+ variant?: 'default' | 'primary' | 'secondary' | 'destructive';
1951
+ }
1952
+ declare const ItemCardActionButton: React$1.ForwardRefExoticComponent<ItemCardActionButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1953
+ interface ItemCardActionsRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
1954
+ }
1955
+ declare const ItemCardActionsRow: React$1.ForwardRefExoticComponent<ItemCardActionsRowProps & React$1.RefAttributes<HTMLDivElement>>;
1956
+
1957
+ interface ItemCardFooterProps extends React$1.HTMLAttributes<HTMLDivElement> {
1958
+ }
1959
+ declare const ItemCardFooter: React$1.ForwardRefExoticComponent<ItemCardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
1960
+ interface ItemCardFooterItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1961
+ /** Small label text */
1962
+ label: string;
1963
+ /** Main value */
1964
+ value: React$1.ReactNode;
1965
+ /** Alignment */
1966
+ align?: 'left' | 'right';
1967
+ }
1968
+ declare const ItemCardFooterItem: React$1.ForwardRefExoticComponent<ItemCardFooterItemProps & React$1.RefAttributes<HTMLDivElement>>;
1969
+ interface ItemCardFooterDividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1970
+ }
1971
+ declare const ItemCardFooterDivider: React$1.ForwardRefExoticComponent<ItemCardFooterDividerProps & React$1.RefAttributes<HTMLDivElement>>;
1972
+
1973
+ interface ItemCardContentProps extends React$1.HTMLAttributes<HTMLDivElement> {
1974
+ /** Whether to use muted background */
1975
+ muted?: boolean;
1976
+ }
1977
+ declare const ItemCardContent: React$1.ForwardRefExoticComponent<ItemCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
1978
+ interface ItemCardContentItemProps extends React$1.HTMLAttributes<HTMLDivElement> {
1979
+ /** Label on the left */
1980
+ label?: React$1.ReactNode;
1981
+ /** Value on the right */
1982
+ value?: React$1.ReactNode;
1983
+ /** Secondary value (e.g., price) */
1984
+ secondary?: React$1.ReactNode;
1985
+ }
1986
+ declare const ItemCardContentItem: React$1.ForwardRefExoticComponent<ItemCardContentItemProps & React$1.RefAttributes<HTMLDivElement>>;
1987
+ interface ItemCardEmptyProps extends React$1.HTMLAttributes<HTMLDivElement> {
1988
+ /** Icon to display */
1989
+ icon?: React$1.ReactNode;
1990
+ /** Message to display */
1991
+ message?: string;
1992
+ }
1993
+ declare const ItemCardEmpty: React$1.ForwardRefExoticComponent<ItemCardEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
1994
+
1995
+ interface ItemCardHeaderProps extends React$1.HTMLAttributes<HTMLDivElement> {
1996
+ /** Alignment of content */
1997
+ align?: 'left' | 'right' | 'between';
1998
+ }
1999
+ declare const ItemCardHeader: React$1.ForwardRefExoticComponent<ItemCardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2000
+ declare const itemCardIconVariants: (props?: ({
2001
+ size?: "sm" | "lg" | "md" | null | undefined;
2002
+ variant?: "destructive" | "outline" | "secondary" | "success" | "warning" | "info" | "primary" | "muted" | null | undefined;
2003
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2004
+ interface ItemCardIconProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof itemCardIconVariants> {
2005
+ /** Whether to show ripple effect */
2006
+ ripple?: boolean;
2007
+ }
2008
+ declare const ItemCardIcon: React$1.ForwardRefExoticComponent<ItemCardIconProps & React$1.RefAttributes<HTMLDivElement>>;
2009
+ interface ItemCardTitleGroupProps extends React$1.HTMLAttributes<HTMLDivElement> {
2010
+ /** Alignment of text */
2011
+ align?: 'left' | 'right' | 'center';
2012
+ }
2013
+ declare const ItemCardTitleGroup: React$1.ForwardRefExoticComponent<ItemCardTitleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2014
+ interface ItemCardTitleProps extends React$1.HTMLAttributes<HTMLHeadingElement> {
2015
+ }
2016
+ declare const ItemCardTitle: React$1.ForwardRefExoticComponent<ItemCardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2017
+ interface ItemCardSubtitleProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
2018
+ }
2019
+ declare const ItemCardSubtitle: React$1.ForwardRefExoticComponent<ItemCardSubtitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
2020
+
2021
+ declare const itemCardBadgeVariants: (props?: ({
2022
+ variant?: "default" | "destructive" | "success" | "warning" | "info" | "primary" | "muted" | null | undefined;
2023
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2024
+ interface ItemCardBadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof itemCardBadgeVariants> {
2025
+ }
2026
+ declare const ItemCardBadge: React$1.ForwardRefExoticComponent<ItemCardBadgeProps & React$1.RefAttributes<HTMLDivElement>>;
2027
+
2028
+ declare const itemCardVariants: (props?: ({
2029
+ variant?: "default" | "selected" | "muted" | null | undefined;
2030
+ hover?: boolean | null | undefined;
2031
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
2032
+ interface ItemCardContextValue {
2033
+ isSelected?: boolean;
2034
+ }
2035
+ declare function useItemCard(): ItemCardContextValue;
2036
+ interface ItemCardRootProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof itemCardVariants> {
2037
+ /** Whether the card is selected */
2038
+ selected?: boolean;
2039
+ /** Whether the card is clickable */
2040
+ asButton?: boolean;
2041
+ }
2042
+ declare const ItemCardRoot: React$1.ForwardRefExoticComponent<ItemCardRootProps & React$1.RefAttributes<HTMLDivElement>>;
2043
+
2044
+ /**
2045
+ * ItemCard - A compound component for building item/resource cards
2046
+ *
2047
+ * Inspired by the Kit de Peças card pattern. Use for displaying items like:
2048
+ * - Part Kits (Kits de Peças)
2049
+ * - Maintenance Plans (Planejamento de Manutenção)
2050
+ * - Resources, Products, or any item with icon, details, and actions
2051
+ *
2052
+ * @example Basic Usage
2053
+ * ```tsx
2054
+ * <ItemCard.Root>
2055
+ * <ItemCard.Badge variant="primary">Publicado</ItemCard.Badge>
2056
+ *
2057
+ * <ItemCard.Header>
2058
+ * <ItemCard.Icon variant="primary">
2059
+ * <BoxIcon className="w-5 h-5" />
2060
+ * </ItemCard.Icon>
2061
+ * <ItemCard.TitleGroup>
2062
+ * <ItemCard.Title>Kit Cubo</ItemCard.Title>
2063
+ * <ItemCard.Subtitle>2 Peças</ItemCard.Subtitle>
2064
+ * </ItemCard.TitleGroup>
2065
+ * </ItemCard.Header>
2066
+ *
2067
+ * <ItemCard.Content>
2068
+ * <ItemCard.ContentItem label="Araldite 10min" value="2x" secondary="R$ 28,00" />
2069
+ * <ItemCard.ContentItem label="Aditivo Radiador 1L" value="1x" secondary="R$ 55,00" />
2070
+ * </ItemCard.Content>
2071
+ *
2072
+ * <ItemCard.Footer>
2073
+ * <ItemCard.FooterItem label="Tipo Ativo" value="Implemento" />
2074
+ * <ItemCard.FooterItem label="Custo Total" value="R$ 111,00" align="right" />
2075
+ * </ItemCard.Footer>
2076
+ *
2077
+ * <ItemCard.Actions>
2078
+ * <ItemCard.ActionButton>Ações</ItemCard.ActionButton>
2079
+ * </ItemCard.Actions>
2080
+ * </ItemCard.Root>
2081
+ * ```
2082
+ *
2083
+ * @example With Selection
2084
+ * ```tsx
2085
+ * <ItemCard.Root selected={isSelected} onClick={() => setSelected(!isSelected)}>
2086
+ * ...
2087
+ * </ItemCard.Root>
2088
+ * ```
2089
+ *
2090
+ * @example Maintenance Planning Card
2091
+ * ```tsx
2092
+ * <ItemCard.Root>
2093
+ * <ItemCard.Badge variant="warning">Crítico</ItemCard.Badge>
2094
+ *
2095
+ * <ItemCard.Header>
2096
+ * <ItemCard.Icon variant="warning" ripple>
2097
+ * <TruckIcon className="w-5 h-5" />
2098
+ * </ItemCard.Icon>
2099
+ * <ItemCard.TitleGroup>
2100
+ * <ItemCard.Title>ABC-1234</ItemCard.Title>
2101
+ * <ItemCard.Subtitle>Scania R450</ItemCard.Subtitle>
2102
+ * </ItemCard.TitleGroup>
2103
+ * </ItemCard.Header>
2104
+ *
2105
+ * <ItemCard.Content>
2106
+ * <ItemCard.ContentItem label="Troca de Óleo" value="500 km" />
2107
+ * <ItemCard.ContentItem label="Revisão Freios" value="1.200 km" />
2108
+ * </ItemCard.Content>
2109
+ *
2110
+ * <ItemCard.Footer>
2111
+ * <ItemCard.FooterItem label="Status" value="Urgente" />
2112
+ * <ItemCard.FooterItem label="Próxima" value="15/02/2024" align="right" />
2113
+ * </ItemCard.Footer>
2114
+ *
2115
+ * <ItemCard.Actions>
2116
+ * <ItemCard.ActionButton variant="primary">Ver Detalhes</ItemCard.ActionButton>
2117
+ * </ItemCard.Actions>
2118
+ * </ItemCard.Root>
2119
+ * ```
2120
+ */
2121
+ declare const ItemCard: React$1.ForwardRefExoticComponent<ItemCardRootProps & React$1.RefAttributes<HTMLDivElement>> & {
2122
+ Badge: React$1.ForwardRefExoticComponent<ItemCardBadgeProps & React$1.RefAttributes<HTMLDivElement>>;
2123
+ Header: React$1.ForwardRefExoticComponent<ItemCardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
2124
+ Icon: React$1.ForwardRefExoticComponent<ItemCardIconProps & React$1.RefAttributes<HTMLDivElement>>;
2125
+ TitleGroup: React$1.ForwardRefExoticComponent<ItemCardTitleGroupProps & React$1.RefAttributes<HTMLDivElement>>;
2126
+ Title: React$1.ForwardRefExoticComponent<ItemCardTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
2127
+ Subtitle: React$1.ForwardRefExoticComponent<ItemCardSubtitleProps & React$1.RefAttributes<HTMLParagraphElement>>;
2128
+ Content: React$1.ForwardRefExoticComponent<ItemCardContentProps & React$1.RefAttributes<HTMLDivElement>>;
2129
+ ContentItem: React$1.ForwardRefExoticComponent<ItemCardContentItemProps & React$1.RefAttributes<HTMLDivElement>>;
2130
+ Empty: React$1.ForwardRefExoticComponent<ItemCardEmptyProps & React$1.RefAttributes<HTMLDivElement>>;
2131
+ Footer: React$1.ForwardRefExoticComponent<ItemCardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
2132
+ FooterItem: React$1.ForwardRefExoticComponent<ItemCardFooterItemProps & React$1.RefAttributes<HTMLDivElement>>;
2133
+ FooterDivider: React$1.ForwardRefExoticComponent<ItemCardFooterDividerProps & React$1.RefAttributes<HTMLDivElement>>;
2134
+ Actions: React$1.ForwardRefExoticComponent<ItemCardActionsProps & React$1.RefAttributes<HTMLDivElement>>;
2135
+ ActionButton: React$1.ForwardRefExoticComponent<ItemCardActionButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2136
+ ActionsRow: React$1.ForwardRefExoticComponent<ItemCardActionsRowProps & React$1.RefAttributes<HTMLDivElement>>;
2137
+ };
2138
+
1939
2139
  /**
1940
2140
  * Generic validation schema interface
1941
2141
  * Compatible with Zod and other validation libraries
@@ -2358,4 +2558,4 @@ declare const useTheme: () => ThemeProviderState;
2358
2558
  */
2359
2559
  declare function cn(...inputs: ClassValue[]): string;
2360
2560
 
2361
- export { AuthLayout, type AuthLayoutBodyProps, type AuthLayoutContentProps, type AuthLayoutDividerProps, type AuthLayoutFooterProps, type AuthLayoutHeaderProps, type AuthLayoutImageProps, type AuthLayoutLinkProps, type AuthLayoutProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, type BaseFieldProps, BigNumberCard, type BigNumberCardContentProps, type BigNumberCardHeaderProps, type BigNumberCardLinkProps, type BigNumberCardRootProps, type BigNumberCardSize, type BigNumberCardSparklineProps, type BigNumberCardTitleProps, type BigNumberCardTrendProps, type BigNumberCardValueProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, type Company, DENSITY_CONFIG, DashboardLayout, type DashboardLayoutBreadcrumbsProps, type DashboardLayoutContentProps, type DashboardLayoutContextValue, type DashboardLayoutHeaderActionsProps, type DashboardLayoutHeaderProps, type DashboardLayoutHeaderTitleProps, type DashboardLayoutHeaderUserProps, type DashboardLayoutMobileNavItemProps, type DashboardLayoutMobileNavProps, type DashboardLayoutProps, type DashboardLayoutSidebarFooterProps, type DashboardLayoutSidebarHeaderProps, type DashboardLayoutSidebarNavGroupProps, type DashboardLayoutSidebarNavItemProps, type DashboardLayoutSidebarNavProps, type DashboardLayoutSidebarProps, type DashboardLayoutSidebarSectionProps, DataTable, type DataTableBulkActionsProps, type DataTableColumnHeaderProps, type DataTableColumnVisibilityProps, type DataTableContentProps, type DataTableContextValue, type DataTableDensity, type DataTableDensityToggleProps, type DataTableEmptyStateProps, type DataTableExportFormat, type DataTableExportProps, type DataTableFilterOption, type DataTableFilterProps, type DataTableFiltersProps, type DataTableLoadingProps, type DataTableMeta, type DataTablePaginationMode, type DataTablePaginationProps, type DataTableProps, type DataTableRowActionsProps, type DataTableSearchProps, type DataTableState, type DataTableTab, type DataTableTabsProps, type DataTableToolbarProps, Dialog, DialogBody, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogWrapper, type DialogWrapperProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, Form, FormCheckbox, type FormCheckboxProps, type FormContextValue, FormDescription, type FormDescriptionProps, FormError, type FormErrorProps, type FormFieldContextValue, FormFieldProvider, FormFieldWrapper, type FormFieldWrapperProps, FormInput, type FormInputProps, FormLabel, type FormLabelProps, FormRadioGroup, type FormRadioGroupProps, type FormRootProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextarea, type FormTextareaProps, GlobalLoaderController, Input, type InputProps, Kanban, type KanbanBoardProps, type KanbanCardProps, type KanbanColumnConfig, type KanbanColumnProps, type KanbanContextValue, type KanbanDragResult, type KanbanEmptyProps, type KanbanItem, Loader, type LoaderProps, LoaderProvider, Logo, type LogoProps, type MaskType, MobileNav, type MobileNavFabAction, MobileNavItem, type MobileNavItemConfig, type MobileNavItemProps, type MobileNavProps, Navbar, NavbarCompanyProfile, type NavbarCompanyProfileProps, NavbarNotification, type NavbarNotificationProps, type NavbarProps, NavbarUserMenu, type NavbarUserMenuProps, type NotificationItem, type PaginatedResponse, type PaginationMeta, type PaginationParams, Popover, PopoverContent, PopoverTrigger, type RadioOption, type RadioOptionColor, RippleBackground, type RippleBackgroundProps, RippleEffect, type RippleEffectProps, RippleWrapper, type RippleWrapperProps, ScrollArea, ScrollBar, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderBadge, type SectionHeaderBadgeProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderIcon, type SectionHeaderIconProps, SectionHeaderRoot, type SectionHeaderRootProps, SectionHeaderSubtitle, type SectionHeaderSubtitleProps, SectionHeaderTitle, type SectionHeaderTitleProps, Select, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectOption, type SelectProps, SelectSeparator, SelectionLayout, type SelectionLayoutCardProps, type SelectionLayoutEmptyProps, type SelectionLayoutHeaderProps, type SelectionLayoutHeadlineProps, type SelectionLayoutListProps, type SelectionLayoutLogoProps, type SelectionLayoutMainProps, type SelectionLayoutProps, type SelectionLayoutSearchProps, type SelectionLayoutSidebarProps, type SelectionLayoutStatsProps, type SelectionLayoutTabProps, type SelectionLayoutTabsProps, Separator, Sidebar, type SidebarContextValue, type SidebarFooterMenuItem, type SidebarFooterProps, type SidebarFooterUser, type SidebarHeaderProps, type SidebarNavGroupProps, type SidebarNavItemProps, type SidebarNavProps, type SidebarProps, type SidebarSectionProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, type SkeletonProps, Sparkline, type SparklineColor, type StepState, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, type ToasterProps, Tooltip, TooltipAction, type TooltipActionProps, TooltipActions, type TooltipActionsProps, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipDescription, type TooltipDescriptionProps, TooltipHeader, type TooltipHeaderProps, TooltipIcon, type TooltipIconProps, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTitle, type TooltipTitleProps, TooltipTrigger, type UseDataTableConfig, type UserMenuItemConfig, type ValidationSchema, Wizard, WizardContent, type WizardContentProps, type WizardContextValue, WizardNavigation, type WizardNavigationProps, WizardPanel, type WizardPanelProps, WizardProgress, type WizardProgressProps, type WizardProps, WizardProvider, type WizardStepConfig, WizardStepConnector, type WizardStepConnectorProps, WizardStepIndicator, type WizardStepIndicatorProps, WizardSteps, type WizardStepsProps, cn, loader, toast, useDashboardLayout, useDataTable, useDataTableColumnVisibility, useDataTableDensity, useDataTableEmpty, useDataTableInstance, useDataTableLoading, useDataTableMeta, useDataTablePagination, useDataTableSelection, useDataTableSorting, useDataTableState, useDebounce, useDebouncedCallback, useFormFieldContext, useKanban, useKanbanOptional, useLoader, useMediaQuery, useSidebar, useSidebarOptional, useTheme, useWizardContext, useWizardContextOptional };
2561
+ export { AuthLayout, type AuthLayoutBodyProps, type AuthLayoutContentProps, type AuthLayoutDividerProps, type AuthLayoutFooterProps, type AuthLayoutHeaderProps, type AuthLayoutImageProps, type AuthLayoutLinkProps, type AuthLayoutProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, type BadgeVariant, type BaseFieldProps, BigNumberCard, type BigNumberCardContentProps, type BigNumberCardHeaderProps, type BigNumberCardLinkProps, type BigNumberCardRootProps, type BigNumberCardSize, type BigNumberCardSparklineProps, type BigNumberCardTitleProps, type BigNumberCardTrendProps, type BigNumberCardValueProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, type Company, DENSITY_CONFIG, DashboardLayout, type DashboardLayoutBreadcrumbsProps, type DashboardLayoutContentProps, type DashboardLayoutContextValue, type DashboardLayoutHeaderActionsProps, type DashboardLayoutHeaderProps, type DashboardLayoutHeaderTitleProps, type DashboardLayoutHeaderUserProps, type DashboardLayoutMobileNavItemProps, type DashboardLayoutMobileNavProps, type DashboardLayoutProps, type DashboardLayoutSidebarFooterProps, type DashboardLayoutSidebarHeaderProps, type DashboardLayoutSidebarNavGroupProps, type DashboardLayoutSidebarNavItemProps, type DashboardLayoutSidebarNavProps, type DashboardLayoutSidebarProps, type DashboardLayoutSidebarSectionProps, DataTable, type DataTableBulkActionsProps, type DataTableColumnHeaderProps, type DataTableColumnVisibilityProps, type DataTableContentProps, type DataTableContextValue, type DataTableDensity, type DataTableDensityToggleProps, type DataTableEmptyStateProps, type DataTableExportFormat, type DataTableExportProps, type DataTableFilterOption, type DataTableFilterProps, type DataTableFiltersProps, type DataTableLoadingProps, type DataTableMeta, type DataTablePaginationMode, type DataTablePaginationProps, type DataTableProps, type DataTableRowActionsProps, type DataTableSearchProps, type DataTableState, type DataTableTab, type DataTableTabsProps, type DataTableToolbarProps, Dialog, DialogBody, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DialogWrapper, type DialogWrapperProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, Form, FormCheckbox, type FormCheckboxProps, type FormContextValue, FormDescription, type FormDescriptionProps, FormError, type FormErrorProps, type FormFieldContextValue, FormFieldProvider, FormFieldWrapper, type FormFieldWrapperProps, FormInput, type FormInputProps, FormLabel, type FormLabelProps, FormRadioGroup, type FormRadioGroupProps, type FormRootProps, FormSelect, type FormSelectProps, FormSwitch, type FormSwitchProps, FormTextarea, type FormTextareaProps, GlobalLoaderController, Input, type InputProps, ItemCard, ItemCardActionButton, type ItemCardActionButtonProps, ItemCardActions, type ItemCardActionsProps, ItemCardActionsRow, type ItemCardActionsRowProps, ItemCardBadge, type ItemCardBadgeProps, ItemCardContent, ItemCardContentItem, type ItemCardContentItemProps, type ItemCardContentProps, ItemCardEmpty, type ItemCardEmptyProps, ItemCardFooter, ItemCardFooterDivider, type ItemCardFooterDividerProps, ItemCardFooterItem, type ItemCardFooterItemProps, type ItemCardFooterProps, ItemCardHeader, type ItemCardHeaderProps, ItemCardIcon, type ItemCardIconProps, ItemCardRoot, type ItemCardRootProps, ItemCardSubtitle, type ItemCardSubtitleProps, ItemCardTitle, ItemCardTitleGroup, type ItemCardTitleGroupProps, type ItemCardTitleProps, Kanban, type KanbanBoardProps, type KanbanCardProps, type KanbanColumnConfig, type KanbanColumnProps, type KanbanContextValue, type KanbanDragResult, type KanbanEmptyProps, type KanbanItem, Loader, type LoaderProps, LoaderProvider, Logo, type LogoProps, type MaskType, MobileNav, type MobileNavFabAction, MobileNavItem, type MobileNavItemConfig, type MobileNavItemProps, type MobileNavProps, Navbar, NavbarCompanyProfile, type NavbarCompanyProfileProps, NavbarNotification, type NavbarNotificationProps, type NavbarProps, NavbarUserMenu, type NavbarUserMenuProps, type NotificationItem, type PaginatedResponse, type PaginationMeta, type PaginationParams, Popover, PopoverContent, PopoverTrigger, type RadioOption, type RadioOptionColor, RippleBackground, type RippleBackgroundProps, RippleEffect, type RippleEffectProps, RippleWrapper, type RippleWrapperProps, ScrollArea, ScrollBar, SectionHeader, SectionHeaderActions, type SectionHeaderActionsProps, SectionHeaderBadge, type SectionHeaderBadgeProps, SectionHeaderContent, type SectionHeaderContentProps, SectionHeaderIcon, type SectionHeaderIconProps, SectionHeaderRoot, type SectionHeaderRootProps, SectionHeaderSubtitle, type SectionHeaderSubtitleProps, SectionHeaderTitle, type SectionHeaderTitleProps, Select, SelectGroup, SelectItem, type SelectItemProps, SelectLabel, type SelectOption, type SelectProps, SelectSeparator, SelectionLayout, type SelectionLayoutCardProps, type SelectionLayoutEmptyProps, type SelectionLayoutHeaderProps, type SelectionLayoutHeadlineProps, type SelectionLayoutListProps, type SelectionLayoutLogoProps, type SelectionLayoutMainProps, type SelectionLayoutProps, type SelectionLayoutSearchProps, type SelectionLayoutSidebarProps, type SelectionLayoutStatsProps, type SelectionLayoutTabProps, type SelectionLayoutTabsProps, Separator, Sidebar, type SidebarContextValue, type SidebarFooterMenuItem, type SidebarFooterProps, type SidebarFooterUser, type SidebarHeaderProps, type SidebarNavGroupProps, type SidebarNavItemProps, type SidebarNavProps, type SidebarProps, type SidebarSectionProps, SimpleTooltip, type SimpleTooltipProps, Skeleton, type SkeletonProps, Sparkline, type SparklineColor, type StepState, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, type ThemeToggleProps, Toaster, type ToasterProps, Tooltip, TooltipAction, type TooltipActionProps, TooltipActions, type TooltipActionsProps, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipDescription, type TooltipDescriptionProps, TooltipHeader, type TooltipHeaderProps, TooltipIcon, type TooltipIconProps, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTitle, type TooltipTitleProps, TooltipTrigger, type UseDataTableConfig, type UserMenuItemConfig, type ValidationSchema, Wizard, WizardContent, type WizardContentProps, type WizardContextValue, WizardNavigation, type WizardNavigationProps, WizardPanel, type WizardPanelProps, WizardProgress, type WizardProgressProps, type WizardProps, WizardProvider, type WizardStepConfig, WizardStepConnector, type WizardStepConnectorProps, WizardStepIndicator, type WizardStepIndicatorProps, WizardSteps, type WizardStepsProps, cn, itemCardBadgeVariants, itemCardIconVariants, itemCardVariants, loader, toast, useDashboardLayout, useDataTable, useDataTableColumnVisibility, useDataTableDensity, useDataTableEmpty, useDataTableInstance, useDataTableLoading, useDataTableMeta, useDataTablePagination, useDataTableSelection, useDataTableSorting, useDataTableState, useDebounce, useDebouncedCallback, useFormFieldContext, useItemCard, useKanban, useKanbanOptional, useLoader, useMediaQuery, useSidebar, useSidebarOptional, useTheme, useWizardContext, useWizardContextOptional };