@nimbus-ds/components 5.51.0 → 5.52.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.
Files changed (73) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/Accordion/index.js +1 -1
  3. package/dist/Alert/index.d.ts +1 -1
  4. package/dist/Alert/index.js +1 -1
  5. package/dist/Badge/index.d.ts +1 -1
  6. package/dist/Badge/index.js +1 -1
  7. package/dist/Box/index.js +1 -1
  8. package/dist/Button/index.d.ts +1 -1
  9. package/dist/Button/index.js +1 -1
  10. package/dist/CHANGELOG.md +6 -0
  11. package/dist/Card/index.js +1 -1
  12. package/dist/Checkbox/index.d.ts +1 -1
  13. package/dist/Checkbox/index.js +1 -1
  14. package/dist/Chip/index.d.ts +1 -1
  15. package/dist/Chip/index.js +1 -1
  16. package/dist/Collapsible/index.js +1 -1
  17. package/dist/FileUploader/index.d.ts +1 -1
  18. package/dist/FileUploader/index.js +1 -1
  19. package/dist/Icon/index.d.ts +1 -1
  20. package/dist/Icon/index.js +1 -1
  21. package/dist/IconButton/index.d.ts +1 -1
  22. package/dist/IconButton/index.js +1 -1
  23. package/dist/Input/index.d.ts +1 -1
  24. package/dist/Input/index.js +1 -1
  25. package/dist/Label/index.d.ts +1 -1
  26. package/dist/Label/index.js +1 -1
  27. package/dist/Link/index.d.ts +1 -1
  28. package/dist/Link/index.js +1 -1
  29. package/dist/List/index.js +1 -1
  30. package/dist/Modal/index.js +1 -1
  31. package/dist/MultiSelect/index.d.ts +1 -1
  32. package/dist/MultiSelect/index.js +1 -1
  33. package/dist/Pagination/index.js +1 -1
  34. package/dist/Popover/index.js +1 -1
  35. package/dist/ProgressBar/index.d.ts +1 -1
  36. package/dist/ProgressBar/index.js +1 -1
  37. package/dist/Radio/index.d.ts +1 -1
  38. package/dist/Radio/index.js +1 -1
  39. package/dist/ScrollPane/index.js +1 -1
  40. package/dist/SegmentedControl/index.d.ts +2 -0
  41. package/dist/SegmentedControl/index.js +1 -1
  42. package/dist/Select/index.d.ts +1 -1
  43. package/dist/Select/index.js +1 -1
  44. package/dist/Sidebar/index.js +1 -1
  45. package/dist/Skeleton/index.js +1 -1
  46. package/dist/Slider/index.d.ts +6 -4
  47. package/dist/Slider/index.js +1 -1
  48. package/dist/Spinner/index.js +1 -1
  49. package/dist/SplitButton/index.d.ts +1 -1
  50. package/dist/SplitButton/index.js +1 -1
  51. package/dist/Stepper/index.d.ts +1 -0
  52. package/dist/Stepper/index.js +1 -1
  53. package/dist/Table/index.js +1 -1
  54. package/dist/Tabs/index.js +1 -1
  55. package/dist/Tag/index.d.ts +1 -1
  56. package/dist/Tag/index.js +1 -1
  57. package/dist/Text/index.d.ts +1 -1
  58. package/dist/Text/index.js +1 -1
  59. package/dist/Textarea/index.d.ts +1 -1
  60. package/dist/Textarea/index.js +1 -1
  61. package/dist/Thumbnail/index.d.ts +1 -1
  62. package/dist/Thumbnail/index.js +1 -1
  63. package/dist/TimePicker/index.js +1 -1
  64. package/dist/Title/index.d.ts +1 -1
  65. package/dist/Title/index.js +1 -1
  66. package/dist/Toast/index.js +1 -1
  67. package/dist/Toggle/index.d.ts +1 -1
  68. package/dist/Toggle/index.js +1 -1
  69. package/dist/Tooltip/index.js +1 -1
  70. package/dist/components-props.json +1 -1
  71. package/dist/index.d.ts +28 -25
  72. package/dist/index.js +1 -1
  73. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -23,7 +23,7 @@ export interface SkeletonProperties {
23
23
  }
24
24
  export type SkeletonProps = SkeletonProperties & HTMLAttributes<HTMLDivElement>;
25
25
  export declare const Skeleton: React.FC<SkeletonProps>;
26
- export type BadgeSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
26
+ export type BadgeSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & {
27
27
  /**
28
28
  * This is an attribute used to identify a DOM node for testing purposes.
29
29
  */
@@ -2380,7 +2380,7 @@ export interface BoxProperties extends BoxSprinkle {
2380
2380
  export type BoxBaseProps = BoxProperties & Omit<HTMLAttributes<HTMLElement>, "color">;
2381
2381
  export declare const Box: PolymorphicForwardRefComponent<"div", BoxBaseProps>;
2382
2382
  export type BoxProps = ComponentPropsWithRef<typeof Box>;
2383
- export type ButtonSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2383
+ export type ButtonSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
2384
2384
  export type ButtonSkeletonProps = ButtonSkeletonProperties;
2385
2385
  declare const ButtonSkeleton: React.FC<ButtonSkeletonProps>;
2386
2386
  export interface ButtonComponents {
@@ -2416,7 +2416,7 @@ export interface ButtonProperties {
2416
2416
  export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
2417
2417
  export declare const Button: PolymorphicForwardRefComponent<"button" | "a", ButtonBaseProps> & ButtonComponents;
2418
2418
  export type ButtonProps = ComponentPropsWithRef<typeof Button>;
2419
- export type CheckboxSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2419
+ export type CheckboxSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
2420
2420
  export type CheckboxSkeletonProps = CheckboxSkeletonProperties;
2421
2421
  declare const CheckboxSkeleton: React.FC<CheckboxSkeletonProps>;
2422
2422
  export interface CheckboxComponents {
@@ -2458,7 +2458,7 @@ export interface CheckboxProperties {
2458
2458
  }
2459
2459
  export type CheckboxProps = CheckboxProperties & InputHTMLAttributes<HTMLInputElement>;
2460
2460
  export declare const Checkbox: React.FC<CheckboxProps> & CheckboxComponents;
2461
- export type ChipSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
2461
+ export type ChipSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & {
2462
2462
  /**
2463
2463
  * This is an attribute used to identify a DOM node for testing purposes.
2464
2464
  */
@@ -2491,7 +2491,7 @@ export interface ChipProperties {
2491
2491
  }
2492
2492
  export type ChipProps = ChipProperties & ButtonHTMLAttributes<HTMLButtonElement | HTMLDivElement>;
2493
2493
  export declare const Chip: React.FC<ChipProps> & ChipComponents;
2494
- export type FileUploaderSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & Partial<Pick<FileUploaderProps, "aspectRatio">> & {
2494
+ export type FileUploaderSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & Partial<Pick<FileUploaderProps, "aspectRatio">> & {
2495
2495
  /**
2496
2496
  * This is an attribute used to identify a DOM node for testing purposes.
2497
2497
  */
@@ -2612,7 +2612,7 @@ export type FileUploaderProps = FileUploaderProperties & {
2612
2612
  dragOverlay?: ReactElement<FileUploaderOverlayProps>;
2613
2613
  } & InputHTMLAttributes<HTMLInputElement>;
2614
2614
  export declare const FileUploader: React.FC<FileUploaderProps> & FileUploaderComponents;
2615
- export type IconSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
2615
+ export type IconSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & {
2616
2616
  /**
2617
2617
  * This is an attribute used to identify a DOM node for testing purposes.
2618
2618
  */
@@ -2665,7 +2665,7 @@ export declare const isGradient: (color: string) => boolean;
2665
2665
  * Collection of known gradient color values
2666
2666
  */
2667
2667
  export declare const GRADIENT_COLORS: Set<string>;
2668
- export type IconButtonSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height">> & {
2668
+ export type IconButtonSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & {
2669
2669
  /**
2670
2670
  * This is an attribute used to identify a DOM node for testing purposes.
2671
2671
  */
@@ -2704,7 +2704,7 @@ export type InputPasswordProperties = Pick<InputBaseProps, "appearance" | "disab
2704
2704
  declare const InputPassword: React.ForwardRefExoticComponent<InputPasswordProperties & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>;
2705
2705
  export type InputSearchProperties = Pick<InputBaseProps, "appearance" | "disabled" | "aiGenerated">;
2706
2706
  declare const InputSearch: React.ForwardRefExoticComponent<InputSearchProperties & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>>;
2707
- export type InputSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2707
+ export type InputSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
2708
2708
  export type InputSkeletonProps = InputSkeletonProperties;
2709
2709
  declare const InputSkeleton: React.FC<InputSkeletonProps>;
2710
2710
  export interface InputComponents {
@@ -2745,7 +2745,7 @@ export interface InputProperties {
2745
2745
  export type InputBaseProps = InputProperties & InputHTMLAttributes<HTMLInputElement>;
2746
2746
  export declare const Input: React.ForwardRefExoticComponent<InputProperties & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>> & InputComponents;
2747
2747
  export type InputProps = ComponentPropsWithRef<typeof Input>;
2748
- export type LabelSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
2748
+ export type LabelSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & {
2749
2749
  /**
2750
2750
  * This is an attribute used to identify a DOM node for testing purposes.
2751
2751
  */
@@ -2774,7 +2774,7 @@ export interface LabelProperties {
2774
2774
  }
2775
2775
  export type LabelProps = LabelProperties & HTMLAttributes<HTMLElement>;
2776
2776
  export declare const Label: React.FC<LabelProps> & LabelComponents;
2777
- export type LinkSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2777
+ export type LinkSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
2778
2778
  export type LinkSkeletonProps = LinkSkeletonProperties;
2779
2779
  declare const LinkSkeleton: React.FC<LinkSkeletonProps>;
2780
2780
  export interface LinkComponents {
@@ -2864,7 +2864,7 @@ export interface ListProperties {
2864
2864
  }
2865
2865
  export type ListProps = ListProperties & HTMLAttributes<HTMLUListElement | HTMLOListElement>;
2866
2866
  export declare const List: React.FC<ListProps> & ListComponents;
2867
- export type MultiSelectSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2867
+ export type MultiSelectSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
2868
2868
  export type MultiSelectSkeletonProps = MultiSelectSkeletonProperties & HTMLAttributes<HTMLDivElement>;
2869
2869
  declare const MultiSelectSkeleton: React.FC<MultiSelectSkeletonProps>;
2870
2870
  export interface MultiSelectComponents {
@@ -2981,7 +2981,7 @@ export interface PopoverProperties extends PopoverSprinkle {
2981
2981
  }
2982
2982
  export type PopoverProps = PopoverProperties & Omit<HTMLAttributes<HTMLDivElement>, "children" | "content">;
2983
2983
  export declare const Popover: React.FC<PopoverProps>;
2984
- export type RadioSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<RadioProps, "as">> & {
2984
+ export type RadioSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className">> & Partial<Pick<RadioProps, "as">> & {
2985
2985
  /**
2986
2986
  * This is an attribute used to identify a DOM node for testing purposes.
2987
2987
  */
@@ -3042,7 +3042,7 @@ export interface SelectOptionProperties {
3042
3042
  }
3043
3043
  export type SelectOptionProps = SelectOptionProperties & OptionHTMLAttributes<HTMLOptionElement>;
3044
3044
  declare const SelectOption: React.FC<SelectOptionProps>;
3045
- export type SelectSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
3045
+ export type SelectSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
3046
3046
  export type SelectSkeletonProps = SelectSkeletonProperties;
3047
3047
  declare const SelectSkeleton: React.FC<SelectSkeletonProps>;
3048
3048
  export interface SelectComponents {
@@ -3196,14 +3196,14 @@ export interface SliderRangeProperties extends SliderCommonProperties {
3196
3196
  /**
3197
3197
  * Props for single value slider mode.
3198
3198
  */
3199
- export type SliderBaseProps = SliderProperties & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "className" | "style">;
3199
+ export type SliderBaseProps = SliderProperties & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "style">;
3200
3200
  /**
3201
3201
  * Props for range slider mode.
3202
3202
  */
3203
3203
  export type SliderRangeBaseProps = SliderRangeProperties & Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "className" | "style">;
3204
3204
  declare const SliderRange: React.ForwardRefExoticComponent<SliderRangeProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style" | "onChange"> & React.RefAttributes<HTMLDivElement>>;
3205
3205
  export type SliderRangeProps = ComponentPropsWithRef<typeof SliderRange>;
3206
- declare const SliderBase: React.ForwardRefExoticComponent<SliderProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style" | "onChange"> & React.RefAttributes<HTMLDivElement>>;
3206
+ declare const SliderBase: React.ForwardRefExoticComponent<SliderProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "onChange"> & React.RefAttributes<HTMLDivElement>>;
3207
3207
  /**
3208
3208
  * Slider component with Range subcomponent.
3209
3209
  *
@@ -3215,11 +3215,11 @@ declare const SliderBase: React.ForwardRefExoticComponent<SliderProperties & Omi
3215
3215
  * // Range slider
3216
3216
  * <Slider.Range minValue={25} maxValue={75} onChange={(min, max) => console.log(min, max)} />
3217
3217
  */
3218
- export declare const Slider: React.ForwardRefExoticComponent<SliderProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style" | "onChange"> & React.RefAttributes<HTMLDivElement>> & {
3218
+ export declare const Slider: React.ForwardRefExoticComponent<SliderProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "style" | "onChange"> & React.RefAttributes<HTMLDivElement>> & {
3219
3219
  Range: React.ForwardRefExoticComponent<SliderRangeProperties & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "style" | "onChange"> & React.RefAttributes<HTMLDivElement>>;
3220
3220
  };
3221
3221
  export type SliderProps = ComponentPropsWithRef<typeof SliderBase>;
3222
- export type TagSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
3222
+ export type TagSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className">> & {
3223
3223
  /**
3224
3224
  * This is an attribute used to identify a DOM node for testing purposes.
3225
3225
  */
@@ -3246,7 +3246,7 @@ export type TagProps = TagProperties & HTMLAttributes<HTMLDivElement>;
3246
3246
  export declare const Tag: React.FC<TagProps> & TagComponents;
3247
3247
  export type TextSkeletonProperties = {
3248
3248
  fontSize?: keyof typeof text.properties.fontSize;
3249
- } & Partial<Pick<SkeletonProps, "width" | "height" | "data-testid">>;
3249
+ } & Partial<Pick<SkeletonProps, "width" | "height" | "className" | "data-testid">>;
3250
3250
  export type TextSkeletonProps = TextSkeletonProperties;
3251
3251
  declare const TextSkeleton: React.FC<TextSkeletonProps>;
3252
3252
  export interface TextComponents {
@@ -3266,7 +3266,7 @@ export interface TextProperties extends Omit<TextSprinkle, "WebkitLineClamp"> {
3266
3266
  }
3267
3267
  export type TextProps = TextProperties & Omit<TextSprinkle, "WebkitLineClamp"> & HTMLAttributes<HTMLParagraphElement>;
3268
3268
  export declare const Text: React.FC<TextProps> & TextComponents;
3269
- export type TextareaSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
3269
+ export type TextareaSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
3270
3270
  export type TextareaSkeletonProps = TextareaSkeletonProperties;
3271
3271
  declare const TextareaSkeleton: React.FC<TextareaSkeletonProps>;
3272
3272
  export interface TextareaComponents {
@@ -3316,7 +3316,7 @@ export interface TextareaProperties {
3316
3316
  }
3317
3317
  export declare const Textarea: React.ForwardRefExoticComponent<TextareaProperties & React.TextareaHTMLAttributes<HTMLTextAreaElement> & React.InputHTMLAttributes<HTMLTextAreaElement> & React.RefAttributes<HTMLTextAreaElement>> & TextareaComponents;
3318
3318
  export type TextareaProps = ComponentPropsWithRef<typeof Textarea>;
3319
- export type ThumbnailSkeletonProperties = Partial<Pick<ThumbnailProps, "aspectRatio">> & Partial<Pick<SkeletonProps, "width" | "data-testid">>;
3319
+ export type ThumbnailSkeletonProperties = Partial<Pick<ThumbnailProps, "aspectRatio">> & Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
3320
3320
  export type ThumbnailSkeletonProps = ThumbnailSkeletonProperties;
3321
3321
  declare const ThumbnailSkeleton: React.FC<ThumbnailSkeletonProps>;
3322
3322
  export interface ThumbnailComponents {
@@ -3345,7 +3345,7 @@ export interface ThumbnailProperties {
3345
3345
  }
3346
3346
  export type ThumbnailProps = ThumbnailProperties & ImgHTMLAttributes<HTMLImageElement>;
3347
3347
  export declare const Thumbnail: React.FC<ThumbnailProps> & ThumbnailComponents;
3348
- export type TitleSkeletonProperties = Pick<TitleProps, "as"> & Partial<Pick<SkeletonProps, "width" | "height" | "data-testid">>;
3348
+ export type TitleSkeletonProperties = Pick<TitleProps, "as"> & Partial<Pick<SkeletonProps, "width" | "height" | "className" | "data-testid">>;
3349
3349
  export type TitleSkeletonProps = TitleSkeletonProperties;
3350
3350
  declare const TitleSkeleton: React.FC<TitleSkeletonProps>;
3351
3351
  export interface TitleComponents {
@@ -3421,7 +3421,7 @@ export interface ToastContextProps {
3421
3421
  addToast: (toast: Omit<ToastProps, "autoClose">) => void;
3422
3422
  }
3423
3423
  export declare const useToast: () => ToastContextProps;
3424
- export type ToggleSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
3424
+ export type ToggleSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "className" | "data-testid">>;
3425
3425
  export type ToggleSkeletonProps = ToggleSkeletonProperties;
3426
3426
  declare const ToggleSkeleton: React.FC<ToggleSkeletonProps>;
3427
3427
  export interface ToggleComponents {
@@ -3466,7 +3466,7 @@ export interface TooltipProperties extends TooltipSprinkle {
3466
3466
  }
3467
3467
  export type TooltipProps = TooltipProperties & HTMLAttributes<HTMLDivElement>;
3468
3468
  export declare const Tooltip: React.FC<TooltipProps>;
3469
- export type ProgressBarSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "data-testid">>;
3469
+ export type ProgressBarSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className" | "data-testid">>;
3470
3470
  declare const ProgressBarSkeleton: React.FC<ProgressBarSkeletonProperties>;
3471
3471
  export interface ProgressBarComponents {
3472
3472
  Skeleton: typeof ProgressBarSkeleton;
@@ -3637,7 +3637,7 @@ export interface ControlledAccordionProperties extends AccordionBaseProperties {
3637
3637
  export type AccordionProps = (UncontrolledAccordionProperties | ControlledAccordionProperties) & Omit<HTMLAttributes<HTMLElement>, "onItemSelect" | "selectedItem">;
3638
3638
  export type AccordionProperties = AccordionBaseProperties & UncontrolledAccordionProperties & ControlledAccordionProperties;
3639
3639
  export declare const Accordion: React.FC<AccordionProps> & AccordionComponents;
3640
- export type AlertSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "data-testid">>;
3640
+ export type AlertSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "height" | "className" | "data-testid">>;
3641
3641
  export type AlertSkeletonProps = AlertSkeletonProperties;
3642
3642
  declare const AlertSkeleton: React.FC<AlertSkeletonProps>;
3643
3643
  export interface AlertComponents {
@@ -4141,6 +4141,7 @@ export interface StepperItemProperties {
4141
4141
  }
4142
4142
  export type StepperItemProps = StepperItemProperties & HTMLAttributes<HTMLDivElement>;
4143
4143
  export interface StepperCardProperties {
4144
+ className?: string;
4144
4145
  /**
4145
4146
  * The content to be rendered inside the card container
4146
4147
  * @TJS-type React.ReactNode
@@ -4419,6 +4420,8 @@ export interface SegmentedControlButtonSkeletonProps {
4419
4420
  width?: string;
4420
4421
  /** Height of the skeleton button */
4421
4422
  height?: string;
4423
+ /** Additional CSS class name */
4424
+ className?: string;
4422
4425
  }
4423
4426
  export type SegmentedControlButtonProperties = PropsWithChildren<{
4424
4427
  /**
@@ -4534,7 +4537,7 @@ export interface SplitButtonActionProperties {
4534
4537
  */
4535
4538
  disabled?: boolean;
4536
4539
  }
4537
- export type SplitButtonActionProps = SplitButtonActionProperties & Pick<BoxProps, "backgroundColor" | "borderWidth" | "display" | "alignItems" | "gap" | "p" | "borderRadius">;
4540
+ export type SplitButtonActionProps = SplitButtonActionProperties & Pick<BoxProps, "className" | "backgroundColor" | "borderWidth" | "display" | "alignItems" | "gap" | "p" | "borderRadius">;
4538
4541
  declare const SplitButtonAction: React.FC<SplitButtonActionProps>;
4539
4542
  export interface SplitButtonPrimaryProperties {
4540
4543
  /**