@nimbus-ds/components 5.55.0 → 5.56.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.ts CHANGED
@@ -3540,12 +3540,25 @@ export interface DividerProperties {
3540
3540
  * Visual appearance color.
3541
3541
  * @default neutral
3542
3542
  */
3543
- appearance?: "neutral";
3543
+ appearance?: "neutral" | "primary";
3544
3544
  /**
3545
3545
  * Thickness level based on shape.border.width tokens.
3546
3546
  * @default 1
3547
3547
  */
3548
3548
  thickness?: 1 | 2 | 3;
3549
+ /**
3550
+ * CSS width of the divider. Applies to horizontal orientation only.
3551
+ * @default "100%"
3552
+ */
3553
+ width?: string;
3554
+ /**
3555
+ * CSS margin-left applied to the divider.
3556
+ */
3557
+ marginLeft?: string;
3558
+ /**
3559
+ * CSS margin-right applied to the divider.
3560
+ */
3561
+ marginRight?: string;
3549
3562
  }
3550
3563
  export type DividerProps = DividerProperties & HTMLAttributes<HTMLHRElement>;
3551
3564
  export declare const Divider: React.FC<DividerProps>;