@nurix/ui-component-library 1.1.3-stage.93 → 1.1.3-stage.94

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
@@ -135,6 +135,7 @@ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaEleme
135
135
  forceState?: InputGroupForceState;
136
136
  invalid?: boolean;
137
137
  input_border_radius?: InputGroupBorderRadius;
138
+ resize?: "none" | "vertical" | "horizontal" | "both";
138
139
  }
139
140
 
140
141
  declare const InputGroup: React$1.ForwardRefExoticComponent<InputGroupProps & React$1.RefAttributes<HTMLInputElement>>;
@@ -445,6 +446,11 @@ interface SelectContentItem {
445
446
  leadIcon?: React$1.ReactNode;
446
447
  leadIconSize?: "xs" | "sm" | "md";
447
448
  }
449
+ /** Section with items when using SelectContent `items` prop. */
450
+ interface SelectContentItemWithSection {
451
+ sectionLabel: string;
452
+ items: SelectContentItem[];
453
+ }
448
454
 
449
455
  declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
450
456
  declare const SelectGroup: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
@@ -463,10 +469,8 @@ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
463
469
  declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
464
470
  declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
465
471
  declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
466
- /** Dropdown list items. When provided, search filters them by default. */
467
- items?: SelectContentItem[];
468
- /** Section label when using items (e.g. "Section", "Audio") */
469
- sectionLabel?: string;
472
+ /** Dropdown list items. When provided, search filters them by default. Can be flat items or sections. */
473
+ items?: SelectContentItem[] | SelectContentItemWithSection[];
470
474
  showSearch?: boolean;
471
475
  searchPlaceholder?: string;
472
476
  } & React$1.RefAttributes<HTMLDivElement>>;
@@ -1090,6 +1094,7 @@ declare const DEFAULT_THEME: {
1090
1094
  readonly semanticForeground: "#ffffff";
1091
1095
  readonly disabled: "#d4d4d4";
1092
1096
  readonly primary10: "#1d488519";
1097
+ readonly datePickerCircle: "#3d6aa8";
1093
1098
  readonly success: "#10b981";
1094
1099
  readonly warning: "#fef3c7";
1095
1100
  readonly warningForeground: "#78350f";
@@ -1134,6 +1139,7 @@ declare const DEFAULT_THEME: {
1134
1139
  readonly semanticForeground: "#ffffff";
1135
1140
  readonly disabled: "#404040";
1136
1141
  readonly primary10: "#e6f1ff1a";
1142
+ readonly datePickerCircle: "#7aa5e8";
1137
1143
  readonly success: "#a7f3d0";
1138
1144
  readonly warning: "#fde68a";
1139
1145
  readonly warningForeground: "#78350f";
@@ -1530,6 +1536,10 @@ interface DataTableProps<TRow> {
1530
1536
  onRowsPerPageChange: (rowsPerPage: number) => void;
1531
1537
  entityName?: string;
1532
1538
  className?: string;
1539
+ /**
1540
+ * When true, shows skeleton loading state with 10 rows.
1541
+ */
1542
+ loading?: boolean;
1533
1543
  }
1534
1544
 
1535
1545
  /**
@@ -1554,7 +1564,7 @@ declare namespace Pagination {
1554
1564
  *
1555
1565
  * Figma reference node: 3338:6396
1556
1566
  */
1557
- declare function DataTable<TRow>({ columns, data, pinnedColumns, showCheckbox, actions, getRowId, selectedRows, onSelectionChange, onSortChange, currentPage, rowsPerPage, total, onPageChange, onRowsPerPageChange, entityName, className, }: DataTableProps<TRow>): react_jsx_runtime.JSX.Element;
1567
+ declare function DataTable<TRow>({ columns, data, pinnedColumns, showCheckbox, actions, getRowId, selectedRows, onSelectionChange, onSortChange, currentPage, rowsPerPage, total, onPageChange, onRowsPerPageChange, entityName, className, loading, }: DataTableProps<TRow>): react_jsx_runtime.JSX.Element;
1558
1568
  declare namespace DataTable {
1559
1569
  var displayName: string;
1560
1570
  }
@@ -1596,6 +1606,49 @@ interface FilterSelectProps<T = string> extends Omit<React$1.HTMLAttributes<HTML
1596
1606
  onOpenChange?: (open: boolean) => void;
1597
1607
  /** Max height for dropdown content (default: "20vh") */
1598
1608
  dropdownMaxHeight?: string;
1609
+ /** Show loading spinner in dropdown */
1610
+ loading?: boolean;
1611
+ onRemoveAll?: () => void;
1612
+ /** Type of filter select: "list" (default), "text", "text_with_operands", or "date" */
1613
+ type?: "list" | "text" | "text_with_operands" | "date";
1614
+ /** Controlled text value for textarea/input (for "text" and "text_with_operands" types) */
1615
+ text?: string;
1616
+ /** Callback when text changes (for "text" and "text_with_operands" types) */
1617
+ onTextChange?: (text: string) => void;
1618
+ /** Selected operand value (for "text_with_operands" type) */
1619
+ operand?: string;
1620
+ /** Callback when operand changes (for "text_with_operands" type) */
1621
+ onOperandChange?: (operand: string) => void;
1622
+ /** Available operands (for "text_with_operands" type) */
1623
+ operands?: {
1624
+ value: string;
1625
+ label: string;
1626
+ }[];
1627
+ /** Placeholder text for textarea/input (for "text" and "text_with_operands" types) */
1628
+ textPlaceholder?: string;
1629
+ /** Placeholder for operand select (for "text_with_operands" type, default: "") */
1630
+ operandPlaceholder?: string;
1631
+ /** Date range value (for "date" type): { start, end } */
1632
+ date?: {
1633
+ start?: Date;
1634
+ end?: Date;
1635
+ };
1636
+ /** Callback when date range changes (for "date" type) */
1637
+ onDateChange?: (date: {
1638
+ start?: Date;
1639
+ end?: Date;
1640
+ }) => void;
1641
+ /** Date presets to show (default: true = built-in presets). Set false to hide, or pass custom array */
1642
+ datePresets?: boolean | DatePreset[];
1643
+ }
1644
+ /** Date preset: label and function to compute the range */
1645
+ interface DatePreset {
1646
+ value: string;
1647
+ label: string;
1648
+ getRange: () => {
1649
+ start: Date;
1650
+ end: Date;
1651
+ };
1599
1652
  }
1600
1653
  /**
1601
1654
  * Props for FilterListItem component
@@ -1629,4 +1682,23 @@ declare const FilterListItem: React$1.ForwardRefExoticComponent<FilterListItemPr
1629
1682
  isDragOver?: boolean;
1630
1683
  } & React$1.RefAttributes<HTMLDivElement>>;
1631
1684
 
1632
- export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, showToast, usePlaySelect, useSelect, useTheme };
1685
+ type SpinnerSize = "sm" | "md" | "lg" | "xl";
1686
+ interface SpinnerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1687
+ /**
1688
+ * Size of the spinner
1689
+ * @default "md"
1690
+ */
1691
+ size?: SpinnerSize;
1692
+ /**
1693
+ * Custom className for the spinner container
1694
+ */
1695
+ className?: string;
1696
+ }
1697
+
1698
+ /**
1699
+ * Spinner component - Displays a loading spinner with size variations
1700
+ * Based on Figma design node: 3357:4429
1701
+ */
1702
+ declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<HTMLDivElement>>;
1703
+
1704
+ export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, showToast, usePlaySelect, useSelect, useTheme };
package/dist/index.d.ts CHANGED
@@ -135,6 +135,7 @@ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaEleme
135
135
  forceState?: InputGroupForceState;
136
136
  invalid?: boolean;
137
137
  input_border_radius?: InputGroupBorderRadius;
138
+ resize?: "none" | "vertical" | "horizontal" | "both";
138
139
  }
139
140
 
140
141
  declare const InputGroup: React$1.ForwardRefExoticComponent<InputGroupProps & React$1.RefAttributes<HTMLInputElement>>;
@@ -445,6 +446,11 @@ interface SelectContentItem {
445
446
  leadIcon?: React$1.ReactNode;
446
447
  leadIconSize?: "xs" | "sm" | "md";
447
448
  }
449
+ /** Section with items when using SelectContent `items` prop. */
450
+ interface SelectContentItemWithSection {
451
+ sectionLabel: string;
452
+ items: SelectContentItem[];
453
+ }
448
454
 
449
455
  declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
450
456
  declare const SelectGroup: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
@@ -463,10 +469,8 @@ declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimit
463
469
  declare const SelectScrollUpButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
464
470
  declare const SelectScrollDownButton: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
465
471
  declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
466
- /** Dropdown list items. When provided, search filters them by default. */
467
- items?: SelectContentItem[];
468
- /** Section label when using items (e.g. "Section", "Audio") */
469
- sectionLabel?: string;
472
+ /** Dropdown list items. When provided, search filters them by default. Can be flat items or sections. */
473
+ items?: SelectContentItem[] | SelectContentItemWithSection[];
470
474
  showSearch?: boolean;
471
475
  searchPlaceholder?: string;
472
476
  } & React$1.RefAttributes<HTMLDivElement>>;
@@ -1090,6 +1094,7 @@ declare const DEFAULT_THEME: {
1090
1094
  readonly semanticForeground: "#ffffff";
1091
1095
  readonly disabled: "#d4d4d4";
1092
1096
  readonly primary10: "#1d488519";
1097
+ readonly datePickerCircle: "#3d6aa8";
1093
1098
  readonly success: "#10b981";
1094
1099
  readonly warning: "#fef3c7";
1095
1100
  readonly warningForeground: "#78350f";
@@ -1134,6 +1139,7 @@ declare const DEFAULT_THEME: {
1134
1139
  readonly semanticForeground: "#ffffff";
1135
1140
  readonly disabled: "#404040";
1136
1141
  readonly primary10: "#e6f1ff1a";
1142
+ readonly datePickerCircle: "#7aa5e8";
1137
1143
  readonly success: "#a7f3d0";
1138
1144
  readonly warning: "#fde68a";
1139
1145
  readonly warningForeground: "#78350f";
@@ -1530,6 +1536,10 @@ interface DataTableProps<TRow> {
1530
1536
  onRowsPerPageChange: (rowsPerPage: number) => void;
1531
1537
  entityName?: string;
1532
1538
  className?: string;
1539
+ /**
1540
+ * When true, shows skeleton loading state with 10 rows.
1541
+ */
1542
+ loading?: boolean;
1533
1543
  }
1534
1544
 
1535
1545
  /**
@@ -1554,7 +1564,7 @@ declare namespace Pagination {
1554
1564
  *
1555
1565
  * Figma reference node: 3338:6396
1556
1566
  */
1557
- declare function DataTable<TRow>({ columns, data, pinnedColumns, showCheckbox, actions, getRowId, selectedRows, onSelectionChange, onSortChange, currentPage, rowsPerPage, total, onPageChange, onRowsPerPageChange, entityName, className, }: DataTableProps<TRow>): react_jsx_runtime.JSX.Element;
1567
+ declare function DataTable<TRow>({ columns, data, pinnedColumns, showCheckbox, actions, getRowId, selectedRows, onSelectionChange, onSortChange, currentPage, rowsPerPage, total, onPageChange, onRowsPerPageChange, entityName, className, loading, }: DataTableProps<TRow>): react_jsx_runtime.JSX.Element;
1558
1568
  declare namespace DataTable {
1559
1569
  var displayName: string;
1560
1570
  }
@@ -1596,6 +1606,49 @@ interface FilterSelectProps<T = string> extends Omit<React$1.HTMLAttributes<HTML
1596
1606
  onOpenChange?: (open: boolean) => void;
1597
1607
  /** Max height for dropdown content (default: "20vh") */
1598
1608
  dropdownMaxHeight?: string;
1609
+ /** Show loading spinner in dropdown */
1610
+ loading?: boolean;
1611
+ onRemoveAll?: () => void;
1612
+ /** Type of filter select: "list" (default), "text", "text_with_operands", or "date" */
1613
+ type?: "list" | "text" | "text_with_operands" | "date";
1614
+ /** Controlled text value for textarea/input (for "text" and "text_with_operands" types) */
1615
+ text?: string;
1616
+ /** Callback when text changes (for "text" and "text_with_operands" types) */
1617
+ onTextChange?: (text: string) => void;
1618
+ /** Selected operand value (for "text_with_operands" type) */
1619
+ operand?: string;
1620
+ /** Callback when operand changes (for "text_with_operands" type) */
1621
+ onOperandChange?: (operand: string) => void;
1622
+ /** Available operands (for "text_with_operands" type) */
1623
+ operands?: {
1624
+ value: string;
1625
+ label: string;
1626
+ }[];
1627
+ /** Placeholder text for textarea/input (for "text" and "text_with_operands" types) */
1628
+ textPlaceholder?: string;
1629
+ /** Placeholder for operand select (for "text_with_operands" type, default: "") */
1630
+ operandPlaceholder?: string;
1631
+ /** Date range value (for "date" type): { start, end } */
1632
+ date?: {
1633
+ start?: Date;
1634
+ end?: Date;
1635
+ };
1636
+ /** Callback when date range changes (for "date" type) */
1637
+ onDateChange?: (date: {
1638
+ start?: Date;
1639
+ end?: Date;
1640
+ }) => void;
1641
+ /** Date presets to show (default: true = built-in presets). Set false to hide, or pass custom array */
1642
+ datePresets?: boolean | DatePreset[];
1643
+ }
1644
+ /** Date preset: label and function to compute the range */
1645
+ interface DatePreset {
1646
+ value: string;
1647
+ label: string;
1648
+ getRange: () => {
1649
+ start: Date;
1650
+ end: Date;
1651
+ };
1599
1652
  }
1600
1653
  /**
1601
1654
  * Props for FilterListItem component
@@ -1629,4 +1682,23 @@ declare const FilterListItem: React$1.ForwardRefExoticComponent<FilterListItemPr
1629
1682
  isDragOver?: boolean;
1630
1683
  } & React$1.RefAttributes<HTMLDivElement>>;
1631
1684
 
1632
- export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, showToast, usePlaySelect, useSelect, useTheme };
1685
+ type SpinnerSize = "sm" | "md" | "lg" | "xl";
1686
+ interface SpinnerProps extends React$1.HTMLAttributes<HTMLDivElement> {
1687
+ /**
1688
+ * Size of the spinner
1689
+ * @default "md"
1690
+ */
1691
+ size?: SpinnerSize;
1692
+ /**
1693
+ * Custom className for the spinner container
1694
+ */
1695
+ className?: string;
1696
+ }
1697
+
1698
+ /**
1699
+ * Spinner component - Displays a loading spinner with size variations
1700
+ * Based on Figma design node: 3357:4429
1701
+ */
1702
+ declare const Spinner: React$1.ForwardRefExoticComponent<SpinnerProps & React$1.RefAttributes<HTMLDivElement>>;
1703
+
1704
+ export { Accordion, AccordionContent, AccordionContentPlaceholder, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type AccordionType, type AccordionValue, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarShape, type AvatarSize, type BackButtonPosition, Badge, type BadgeProps, type BadgeVariant, Button, type ButtonBorderRadius, type ButtonProps, type ButtonSize, type ButtonVariant, type CellContent, type CellTextContent, Checkbox, type CheckboxProps, type ColumnDef, ColumnWidth, DEFAULT_THEME, DataTable, type DataTableProps, type DatePreset, Dialog, DialogBody, type DialogBodyProps, DialogFooter, type DialogFooterProps, DialogHeader, DialogHeaderNavigation, type DialogHeaderNavigationProps, type DialogHeaderNavigationVariant, type DialogHeaderProps, DialogIcon, type DialogIconProps, type DialogProps, type DialogSize, type DialogType, EmptyState, type EmptyStateProps, FileInput, type FileInputProps, type FilterItem, FilterListItem, type FilterListItemProps, FilterSelect, type FilterSelectProps, Input, type InputBorderRadius, type InputForceState, InputGroup, type InputGroupBorderRadius, type InputGroupForceState, type InputGroupProps, type InputProps, LegoLandWrapper, type LegoLandWrapperProps, List, type ListBorderRadius, type ListProps, type ListType, type ListVariant, NumberBadge, type NumberBadgeProps, type NumberBadgeVariant, NurixThemeProvider, Pagination, type PaginationProps, PlaySelect, type PlaySelectAudioItem, type PlaySelectProps, PlaybackControl, type PlaybackControlProps, type PlaybackState, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, Select, SelectContent, type SelectContentItem, SelectFormLabel, SelectGroup, type SelectGroupProps, SelectItem, SelectLabel, type SelectLabelProps, type SelectMenuItemProps, type SelectProps, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, ShadowDOMWrapper, type ShowToastOptions, type SortDirection, type SortState, Spinner, type SpinnerProps, type SpinnerSize, type StepItem, type StepState, Stepper, StepperBar, type StepperBarProps, type StepperProps, type SupportingTextType, Switch, type SwitchProps, type SwitchSize, type TabVariant, type TableAction, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThemeProvider, Toast, type ToastProps, type ToastVariant, Toaster, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, Typography, type TypographyProps, type TypographyTone, type TypographyVariant, type UsePlaySelectProps, type UseSelectProps, showToast, usePlaySelect, useSelect, useTheme };