@facter/ds-core 1.8.4 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +45 -1
- package/dist/index.d.ts +45 -1
- package/dist/index.js +169 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +165 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2530,6 +2530,50 @@ declare function WizardStepIndicator({ step, index, state, showNumber, showDescr
|
|
|
2530
2530
|
*/
|
|
2531
2531
|
declare function WizardStepConnector({ isCompleted, variant, className, }: WizardStepConnectorProps): react_jsx_runtime.JSX.Element;
|
|
2532
2532
|
|
|
2533
|
+
interface FloatingBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2534
|
+
/** Controls visibility with animation */
|
|
2535
|
+
visible?: boolean;
|
|
2536
|
+
/** Position on screen */
|
|
2537
|
+
position?: 'bottom-center' | 'bottom-left' | 'bottom-right';
|
|
2538
|
+
/** Additional classes for the outer positioning wrapper */
|
|
2539
|
+
wrapperClassName?: string;
|
|
2540
|
+
}
|
|
2541
|
+
declare const actionVariants: (props?: ({
|
|
2542
|
+
variant?: "default" | "destructive" | "ghost" | "success" | null | undefined;
|
|
2543
|
+
size?: "default" | "sm" | null | undefined;
|
|
2544
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2545
|
+
interface FloatingBarActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof actionVariants> {
|
|
2546
|
+
icon?: React$1.ElementType;
|
|
2547
|
+
}
|
|
2548
|
+
declare const FloatingBarAction: React$1.ForwardRefExoticComponent<FloatingBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2549
|
+
declare const iconActionVariants: (props?: ({
|
|
2550
|
+
variant?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
2551
|
+
size?: "default" | "sm" | null | undefined;
|
|
2552
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2553
|
+
interface FloatingBarIconActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconActionVariants> {
|
|
2554
|
+
icon: React$1.ElementType;
|
|
2555
|
+
/** Tooltip label (aria-label) */
|
|
2556
|
+
label: string;
|
|
2557
|
+
}
|
|
2558
|
+
declare const FloatingBarIconAction: React$1.ForwardRefExoticComponent<FloatingBarIconActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2559
|
+
interface FloatingBarDividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2560
|
+
}
|
|
2561
|
+
declare const FloatingBarDivider: React$1.ForwardRefExoticComponent<FloatingBarDividerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2562
|
+
interface FloatingBarCounterProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
2563
|
+
count: number;
|
|
2564
|
+
/** Singular label */
|
|
2565
|
+
label?: string;
|
|
2566
|
+
/** Plural label */
|
|
2567
|
+
pluralLabel?: string;
|
|
2568
|
+
}
|
|
2569
|
+
declare const FloatingBarCounter: React$1.ForwardRefExoticComponent<FloatingBarCounterProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2570
|
+
declare const FloatingBarCompound: React$1.ForwardRefExoticComponent<FloatingBarProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2571
|
+
Action: React$1.ForwardRefExoticComponent<FloatingBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2572
|
+
IconAction: React$1.ForwardRefExoticComponent<FloatingBarIconActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2573
|
+
Divider: React$1.ForwardRefExoticComponent<FloatingBarDividerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2574
|
+
Counter: React$1.ForwardRefExoticComponent<FloatingBarCounterProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2575
|
+
};
|
|
2576
|
+
|
|
2533
2577
|
interface LogoProps {
|
|
2534
2578
|
/** Width of the logo (number for px, string for custom units) */
|
|
2535
2579
|
width?: number | string;
|
|
@@ -2637,4 +2681,4 @@ declare const useTheme: () => ThemeProviderState;
|
|
|
2637
2681
|
*/
|
|
2638
2682
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2639
2683
|
|
|
2640
|
-
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, type ChartDataPoint, 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, PageHeader, type PageHeaderProps, 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, StatsCard, type StatsCardChangeProps, type StatsCardChartProps, type ColorScheme as StatsCardColorScheme, type StatsCardContentProps, type StatsCardHeaderProps, type StatsCardIconProps, type StatsCardRootProps, type StatsCardSubtitleProps, type StatsCardTitleProps, type StatsCardTodayProps, type StatsCardValueProps, type Variant as StatsCardVariant, 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 };
|
|
2684
|
+
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, type ChartDataPoint, 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, FloatingBarCompound as FloatingBar, FloatingBarAction, type FloatingBarActionProps, FloatingBarCounter, type FloatingBarCounterProps, FloatingBarDivider, type FloatingBarDividerProps, FloatingBarIconAction, type FloatingBarIconActionProps, type FloatingBarProps, 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, PageHeader, type PageHeaderProps, 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, StatsCard, type StatsCardChangeProps, type StatsCardChartProps, type ColorScheme as StatsCardColorScheme, type StatsCardContentProps, type StatsCardHeaderProps, type StatsCardIconProps, type StatsCardRootProps, type StatsCardSubtitleProps, type StatsCardTitleProps, type StatsCardTodayProps, type StatsCardValueProps, type Variant as StatsCardVariant, 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
|
@@ -2530,6 +2530,50 @@ declare function WizardStepIndicator({ step, index, state, showNumber, showDescr
|
|
|
2530
2530
|
*/
|
|
2531
2531
|
declare function WizardStepConnector({ isCompleted, variant, className, }: WizardStepConnectorProps): react_jsx_runtime.JSX.Element;
|
|
2532
2532
|
|
|
2533
|
+
interface FloatingBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2534
|
+
/** Controls visibility with animation */
|
|
2535
|
+
visible?: boolean;
|
|
2536
|
+
/** Position on screen */
|
|
2537
|
+
position?: 'bottom-center' | 'bottom-left' | 'bottom-right';
|
|
2538
|
+
/** Additional classes for the outer positioning wrapper */
|
|
2539
|
+
wrapperClassName?: string;
|
|
2540
|
+
}
|
|
2541
|
+
declare const actionVariants: (props?: ({
|
|
2542
|
+
variant?: "default" | "destructive" | "ghost" | "success" | null | undefined;
|
|
2543
|
+
size?: "default" | "sm" | null | undefined;
|
|
2544
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2545
|
+
interface FloatingBarActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof actionVariants> {
|
|
2546
|
+
icon?: React$1.ElementType;
|
|
2547
|
+
}
|
|
2548
|
+
declare const FloatingBarAction: React$1.ForwardRefExoticComponent<FloatingBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2549
|
+
declare const iconActionVariants: (props?: ({
|
|
2550
|
+
variant?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
2551
|
+
size?: "default" | "sm" | null | undefined;
|
|
2552
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
2553
|
+
interface FloatingBarIconActionProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof iconActionVariants> {
|
|
2554
|
+
icon: React$1.ElementType;
|
|
2555
|
+
/** Tooltip label (aria-label) */
|
|
2556
|
+
label: string;
|
|
2557
|
+
}
|
|
2558
|
+
declare const FloatingBarIconAction: React$1.ForwardRefExoticComponent<FloatingBarIconActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2559
|
+
interface FloatingBarDividerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2560
|
+
}
|
|
2561
|
+
declare const FloatingBarDivider: React$1.ForwardRefExoticComponent<FloatingBarDividerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2562
|
+
interface FloatingBarCounterProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
2563
|
+
count: number;
|
|
2564
|
+
/** Singular label */
|
|
2565
|
+
label?: string;
|
|
2566
|
+
/** Plural label */
|
|
2567
|
+
pluralLabel?: string;
|
|
2568
|
+
}
|
|
2569
|
+
declare const FloatingBarCounter: React$1.ForwardRefExoticComponent<FloatingBarCounterProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2570
|
+
declare const FloatingBarCompound: React$1.ForwardRefExoticComponent<FloatingBarProps & React$1.RefAttributes<HTMLDivElement>> & {
|
|
2571
|
+
Action: React$1.ForwardRefExoticComponent<FloatingBarActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2572
|
+
IconAction: React$1.ForwardRefExoticComponent<FloatingBarIconActionProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2573
|
+
Divider: React$1.ForwardRefExoticComponent<FloatingBarDividerProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2574
|
+
Counter: React$1.ForwardRefExoticComponent<FloatingBarCounterProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
2575
|
+
};
|
|
2576
|
+
|
|
2533
2577
|
interface LogoProps {
|
|
2534
2578
|
/** Width of the logo (number for px, string for custom units) */
|
|
2535
2579
|
width?: number | string;
|
|
@@ -2637,4 +2681,4 @@ declare const useTheme: () => ThemeProviderState;
|
|
|
2637
2681
|
*/
|
|
2638
2682
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2639
2683
|
|
|
2640
|
-
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, type ChartDataPoint, 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, PageHeader, type PageHeaderProps, 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, StatsCard, type StatsCardChangeProps, type StatsCardChartProps, type ColorScheme as StatsCardColorScheme, type StatsCardContentProps, type StatsCardHeaderProps, type StatsCardIconProps, type StatsCardRootProps, type StatsCardSubtitleProps, type StatsCardTitleProps, type StatsCardTodayProps, type StatsCardValueProps, type Variant as StatsCardVariant, 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 };
|
|
2684
|
+
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, type ChartDataPoint, 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, FloatingBarCompound as FloatingBar, FloatingBarAction, type FloatingBarActionProps, FloatingBarCounter, type FloatingBarCounterProps, FloatingBarDivider, type FloatingBarDividerProps, FloatingBarIconAction, type FloatingBarIconActionProps, type FloatingBarProps, 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, PageHeader, type PageHeaderProps, 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, StatsCard, type StatsCardChangeProps, type StatsCardChartProps, type ColorScheme as StatsCardColorScheme, type StatsCardContentProps, type StatsCardHeaderProps, type StatsCardIconProps, type StatsCardRootProps, type StatsCardSubtitleProps, type StatsCardTitleProps, type StatsCardTodayProps, type StatsCardValueProps, type Variant as StatsCardVariant, 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.js
CHANGED
|
@@ -311,12 +311,12 @@ var badgeVariants = classVarianceAuthority.cva(
|
|
|
311
311
|
{
|
|
312
312
|
variants: {
|
|
313
313
|
variant: {
|
|
314
|
-
default: "border-
|
|
315
|
-
secondary: "border-
|
|
316
|
-
success: "border-
|
|
317
|
-
warning: "border-
|
|
318
|
-
error: "border-
|
|
319
|
-
info: "border-
|
|
314
|
+
default: "border-primary/15 bg-primary/5 text-primary hover:bg-primary/15",
|
|
315
|
+
secondary: "border-secondary/15 bg-secondary/80 text-secondary-foreground hover:bg-secondary/70",
|
|
316
|
+
success: "border-green-500/15 bg-green-500/5 text-green-600 dark:text-green-400 hover:bg-green-500/15",
|
|
317
|
+
warning: "border-yellow-500/15 bg-yellow-500/5 text-yellow-600 dark:text-yellow-400 hover:bg-yellow-500/15",
|
|
318
|
+
error: "border-red-500/15 bg-red-500/5 text-red-600 dark:text-red-400 hover:bg-red-500/15",
|
|
319
|
+
info: "border-blue-500/15 bg-blue-500/5 text-blue-600 dark:text-blue-400 hover:bg-blue-500/15",
|
|
320
320
|
outline: "border-border text-foreground hover:bg-muted"
|
|
321
321
|
},
|
|
322
322
|
size: {
|
|
@@ -2576,7 +2576,7 @@ var RippleEffect = React10__namespace.memo(
|
|
|
2576
2576
|
}) => {
|
|
2577
2577
|
const { base, increment } = SIZE_CONFIG[size];
|
|
2578
2578
|
const opacities = INTENSITY_CONFIG[intensity];
|
|
2579
|
-
const
|
|
2579
|
+
const positionClasses2 = POSITION_CONFIG[position];
|
|
2580
2580
|
const rippleRings = React10__namespace.useMemo(
|
|
2581
2581
|
() => Array.from({ length: rings }).map((_, index) => {
|
|
2582
2582
|
const ringSize = base + increment * (rings - index - 1);
|
|
@@ -2598,7 +2598,7 @@ var RippleEffect = React10__namespace.memo(
|
|
|
2598
2598
|
{
|
|
2599
2599
|
className: cn(
|
|
2600
2600
|
"absolute inset-0 flex pointer-events-none",
|
|
2601
|
-
|
|
2601
|
+
positionClasses2,
|
|
2602
2602
|
className
|
|
2603
2603
|
),
|
|
2604
2604
|
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative", children: rippleRings })
|
|
@@ -7723,6 +7723,162 @@ var Wizard = Object.assign(WizardRoot, {
|
|
|
7723
7723
|
/** Progress bar indicator */
|
|
7724
7724
|
Progress: WizardProgress
|
|
7725
7725
|
});
|
|
7726
|
+
var positionClasses = {
|
|
7727
|
+
"bottom-center": "bottom-6 inset-x-0 flex justify-center",
|
|
7728
|
+
"bottom-left": "bottom-6 left-6",
|
|
7729
|
+
"bottom-right": "bottom-6 right-6"
|
|
7730
|
+
};
|
|
7731
|
+
var FloatingBar = React10__namespace.forwardRef(
|
|
7732
|
+
({ className, visible = true, position = "bottom-center", wrapperClassName, children, style, ...props }, ref) => {
|
|
7733
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
7734
|
+
"div",
|
|
7735
|
+
{
|
|
7736
|
+
ref,
|
|
7737
|
+
className: cn(
|
|
7738
|
+
"fixed z-50 pointer-events-none",
|
|
7739
|
+
positionClasses[position],
|
|
7740
|
+
wrapperClassName
|
|
7741
|
+
),
|
|
7742
|
+
style,
|
|
7743
|
+
...props,
|
|
7744
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7745
|
+
"div",
|
|
7746
|
+
{
|
|
7747
|
+
className: cn(
|
|
7748
|
+
"pointer-events-auto",
|
|
7749
|
+
"flex items-center gap-2 px-4 py-2.5 rounded-full",
|
|
7750
|
+
"bg-white/80 dark:bg-gray-900/80 backdrop-blur-xl",
|
|
7751
|
+
"border border-white/60 dark:border-white/10",
|
|
7752
|
+
"shadow-2xl shadow-black/15 dark:shadow-black/40",
|
|
7753
|
+
"ring-1 ring-black/[0.06] dark:ring-white/[0.06]",
|
|
7754
|
+
"transition-all duration-300",
|
|
7755
|
+
visible ? "translate-y-0 opacity-100 scale-100" : "translate-y-6 opacity-0 scale-95 pointer-events-none",
|
|
7756
|
+
className
|
|
7757
|
+
),
|
|
7758
|
+
children
|
|
7759
|
+
}
|
|
7760
|
+
)
|
|
7761
|
+
}
|
|
7762
|
+
);
|
|
7763
|
+
}
|
|
7764
|
+
);
|
|
7765
|
+
FloatingBar.displayName = "FloatingBar";
|
|
7766
|
+
var actionVariants = classVarianceAuthority.cva(
|
|
7767
|
+
"inline-flex items-center gap-2 rounded-full font-medium transition-all duration-150 active:scale-[0.97] disabled:opacity-50 disabled:pointer-events-none cursor-pointer",
|
|
7768
|
+
{
|
|
7769
|
+
variants: {
|
|
7770
|
+
variant: {
|
|
7771
|
+
default: "bg-primary hover:bg-primary/90 text-primary-foreground shadow-sm",
|
|
7772
|
+
success: "bg-emerald-600 hover:bg-emerald-700 text-white shadow-sm shadow-emerald-600/20",
|
|
7773
|
+
destructive: "bg-red-600 hover:bg-red-700 text-white shadow-sm shadow-red-600/20",
|
|
7774
|
+
ghost: "hover:bg-accent text-foreground"
|
|
7775
|
+
},
|
|
7776
|
+
size: {
|
|
7777
|
+
default: "h-9 px-5 text-sm",
|
|
7778
|
+
sm: "h-8 px-4 text-xs"
|
|
7779
|
+
}
|
|
7780
|
+
},
|
|
7781
|
+
defaultVariants: {
|
|
7782
|
+
variant: "default",
|
|
7783
|
+
size: "default"
|
|
7784
|
+
}
|
|
7785
|
+
}
|
|
7786
|
+
);
|
|
7787
|
+
var FloatingBarAction = React10__namespace.forwardRef(
|
|
7788
|
+
({ className, variant, size, icon: Icon2, children, ...props }, ref) => {
|
|
7789
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
7790
|
+
"button",
|
|
7791
|
+
{
|
|
7792
|
+
ref,
|
|
7793
|
+
className: cn(actionVariants({ variant, size, className })),
|
|
7794
|
+
...props,
|
|
7795
|
+
children: [
|
|
7796
|
+
Icon2 && /* @__PURE__ */ jsxRuntime.jsx(Icon2, { className: "h-4 w-4" }),
|
|
7797
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children })
|
|
7798
|
+
]
|
|
7799
|
+
}
|
|
7800
|
+
);
|
|
7801
|
+
}
|
|
7802
|
+
);
|
|
7803
|
+
FloatingBarAction.displayName = "FloatingBarAction";
|
|
7804
|
+
var iconActionVariants = classVarianceAuthority.cva(
|
|
7805
|
+
"inline-flex items-center justify-center rounded-full transition-colors duration-150 cursor-pointer disabled:opacity-50 disabled:pointer-events-none",
|
|
7806
|
+
{
|
|
7807
|
+
variants: {
|
|
7808
|
+
variant: {
|
|
7809
|
+
default: "text-muted-foreground hover:text-foreground hover:bg-muted",
|
|
7810
|
+
success: "text-muted-foreground hover:text-emerald-600 hover:bg-emerald-500/10",
|
|
7811
|
+
warning: "text-muted-foreground hover:text-amber-600 hover:bg-amber-500/10",
|
|
7812
|
+
danger: "text-muted-foreground hover:text-destructive hover:bg-destructive/10"
|
|
7813
|
+
},
|
|
7814
|
+
size: {
|
|
7815
|
+
default: "h-9 w-9",
|
|
7816
|
+
sm: "h-8 w-8"
|
|
7817
|
+
}
|
|
7818
|
+
},
|
|
7819
|
+
defaultVariants: {
|
|
7820
|
+
variant: "default",
|
|
7821
|
+
size: "default"
|
|
7822
|
+
}
|
|
7823
|
+
}
|
|
7824
|
+
);
|
|
7825
|
+
var FloatingBarIconAction = React10__namespace.forwardRef(
|
|
7826
|
+
({ className, variant, size, icon: Icon2, label, ...props }, ref) => {
|
|
7827
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
7828
|
+
"button",
|
|
7829
|
+
{
|
|
7830
|
+
ref,
|
|
7831
|
+
"aria-label": label,
|
|
7832
|
+
title: label,
|
|
7833
|
+
className: cn(iconActionVariants({ variant, size, className })),
|
|
7834
|
+
...props,
|
|
7835
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon2, { className: "h-4 w-4" })
|
|
7836
|
+
}
|
|
7837
|
+
);
|
|
7838
|
+
}
|
|
7839
|
+
);
|
|
7840
|
+
FloatingBarIconAction.displayName = "FloatingBarIconAction";
|
|
7841
|
+
var FloatingBarDivider = React10__namespace.forwardRef(
|
|
7842
|
+
({ className, ...props }, ref) => {
|
|
7843
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
7844
|
+
"div",
|
|
7845
|
+
{
|
|
7846
|
+
ref,
|
|
7847
|
+
className: cn("w-px h-6 bg-border/60 mx-0.5", className),
|
|
7848
|
+
...props
|
|
7849
|
+
}
|
|
7850
|
+
);
|
|
7851
|
+
}
|
|
7852
|
+
);
|
|
7853
|
+
FloatingBarDivider.displayName = "FloatingBarDivider";
|
|
7854
|
+
var FloatingBarCounter = React10__namespace.forwardRef(
|
|
7855
|
+
({ className, count, label = "selecionado", pluralLabel, ...props }, ref) => {
|
|
7856
|
+
const plural = pluralLabel ?? `${label}s`;
|
|
7857
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
7858
|
+
"span",
|
|
7859
|
+
{
|
|
7860
|
+
ref,
|
|
7861
|
+
className: cn(
|
|
7862
|
+
"text-sm font-medium whitespace-nowrap tabular-nums px-2",
|
|
7863
|
+
className
|
|
7864
|
+
),
|
|
7865
|
+
...props,
|
|
7866
|
+
children: [
|
|
7867
|
+
count,
|
|
7868
|
+
" ",
|
|
7869
|
+
count === 1 ? label : plural
|
|
7870
|
+
]
|
|
7871
|
+
}
|
|
7872
|
+
);
|
|
7873
|
+
}
|
|
7874
|
+
);
|
|
7875
|
+
FloatingBarCounter.displayName = "FloatingBarCounter";
|
|
7876
|
+
var FloatingBarCompound = Object.assign(FloatingBar, {
|
|
7877
|
+
Action: FloatingBarAction,
|
|
7878
|
+
IconAction: FloatingBarIconAction,
|
|
7879
|
+
Divider: FloatingBarDivider,
|
|
7880
|
+
Counter: FloatingBarCounter
|
|
7881
|
+
});
|
|
7726
7882
|
function Logo({
|
|
7727
7883
|
width = 100,
|
|
7728
7884
|
color = "currentColor",
|
|
@@ -8196,6 +8352,11 @@ exports.DropdownMenuSubTrigger = DropdownMenuSubTrigger;
|
|
|
8196
8352
|
exports.DropdownMenuTrigger = DropdownMenuTrigger;
|
|
8197
8353
|
exports.EmptyState = EmptyState;
|
|
8198
8354
|
exports.FACTER_THEMES = FACTER_THEMES;
|
|
8355
|
+
exports.FloatingBar = FloatingBarCompound;
|
|
8356
|
+
exports.FloatingBarAction = FloatingBarAction;
|
|
8357
|
+
exports.FloatingBarCounter = FloatingBarCounter;
|
|
8358
|
+
exports.FloatingBarDivider = FloatingBarDivider;
|
|
8359
|
+
exports.FloatingBarIconAction = FloatingBarIconAction;
|
|
8199
8360
|
exports.Form = Form;
|
|
8200
8361
|
exports.FormCheckbox = FormCheckbox;
|
|
8201
8362
|
exports.FormDescription = FormDescription;
|