@nimbus-ds/components 5.11.0-rc.1 → 5.11.1-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1641,6 +1641,7 @@ declare const thumbnail: {
1641
1641
  container__image: string;
1642
1642
  container__placeholder: string;
1643
1643
  skeleton: string;
1644
+ width: string;
1644
1645
  };
1645
1646
  };
1646
1647
  declare const accordion: {
@@ -3600,8 +3601,7 @@ export interface SegmentedControlComponents {
3600
3601
  export interface ControlledSegmentedControlProperties extends SegmentedControlBaseProps {
3601
3602
  /**
3602
3603
  * The currently selected segment indices.
3603
- * Allows for single or multiple selection based on implementation.
3604
- * At least one segment must always be selected.
3604
+ * Allows for single or multiple selection.
3605
3605
  */
3606
3606
  selectedSegments: number[];
3607
3607
  /**
@@ -3613,7 +3613,7 @@ export interface ControlledSegmentedControlProperties extends SegmentedControlBa
3613
3613
  /**
3614
3614
  * Props for the SegmentedControl component, supporting both controlled and uncontrolled modes
3615
3615
  */
3616
- export type SegmentedControlProps = (SegmentedControlBaseProps | ControlledSegmentedControlProperties) & Omit<HTMLAttributes<HTMLDivElement>, "children">;
3616
+ export type SegmentedControlProps = (SegmentedControlBaseProps | ControlledSegmentedControlProperties) & Omit<BoxProps, "display" | "backgroundColor" | "gap" | "borderRadius" | "children">;
3617
3617
  /**
3618
3618
  * SegmentedControl component for grouped selection controls
3619
3619
  */