@nimbus-ds/styles 9.58.0 → 9.60.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
@@ -4700,8 +4700,16 @@ export declare const divider: {
4700
4700
  horizontalThickness: Record<1 | 2 | 3, string>;
4701
4701
  verticalThickness: Record<1 | 2 | 3, string>;
4702
4702
  appearance: Record<"neutral", string>;
4703
+ customWidth: string;
4704
+ customMarginLeft: string;
4705
+ customMarginRight: string;
4703
4706
  };
4704
4707
  };
4708
+ export declare const dividerVars: {
4709
+ width: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
4710
+ marginLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
4711
+ marginRight: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
4712
+ };
4705
4713
  export declare const accordion: {
4706
4714
  sprinkle: ((props: {
4707
4715
  borderTop?: "base" | "none" | undefined;
@@ -5481,6 +5489,7 @@ export declare const scrollPane: {
5481
5489
  classnames: {
5482
5490
  scrollArea: string;
5483
5491
  scrollAreaHidden: string;
5492
+ scrollAreaThin: string;
5484
5493
  direction: Record<"horizontal" | "vertical", string>;
5485
5494
  gradient: string;
5486
5495
  gradientVariants: Record<"horizontal-left" | "horizontal-right" | "vertical-top" | "vertical-bottom", string>;