@nimbus-ds/components 5.56.1 → 5.57.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
@@ -3515,6 +3515,21 @@ export interface ProgressBarProperties {
3515
3515
  * @default neutral
3516
3516
  */
3517
3517
  appearance?: "primary" | "success" | "warning" | "danger" | "neutral" | "ai-generative";
3518
+ /**
3519
+ * Applies a box shadow to the progress bar fill using the appearance color.
3520
+ * @default 0
3521
+ */
3522
+ boxShadow?: 0 | 1 | 2;
3523
+ /**
3524
+ * Custom height for the progress bar. Any valid CSS height value.
3525
+ * @default "0.5rem"
3526
+ */
3527
+ height?: string;
3528
+ /**
3529
+ * Change the background color of the progress bar track.
3530
+ * @default neutral-surfaceDisabled
3531
+ */
3532
+ backgroundColor?: "neutral-surfaceDisabled" | "neutral-background";
3518
3533
  }
3519
3534
  /**
3520
3535
  * ProgressBar component displays the progress of an operation or task in a visual format.