@nimbus-ds/styles 9.43.0 → 9.44.0-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
@@ -3000,13 +3000,19 @@ export declare const chip: {
3000
3000
  aiGenerated: string;
3001
3001
  };
3002
3002
  };
3003
+ export declare const fileUploaderVars: {
3004
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
3005
+ borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
3006
+ };
3003
3007
  export declare const fileUploader: {
3004
3008
  sprinkle: ((props: {
3005
3009
  aspectRatio?: "none" | AspectRatio | undefined;
3006
3010
  flexDirection?: "row" | "column" | undefined;
3007
3011
  cursor?: Cursor | undefined;
3012
+ backgroundColor?: "transparent" | "primary-surface" | "neutral-background" | undefined;
3013
+ borderColor?: "transparent" | "primary-interactive" | "ai-gradientPurpleHigh" | undefined;
3008
3014
  }) => string) & {
3009
- properties: Set<"aspectRatio" | "cursor" | "flexDirection">;
3015
+ properties: Set<"aspectRatio" | "backgroundColor" | "cursor" | "flexDirection" | "borderColor">;
3010
3016
  };
3011
3017
  properties: {
3012
3018
  aspectRatio: readonly [
@@ -3018,6 +3024,16 @@ export declare const fileUploader: {
3018
3024
  "column"
3019
3025
  ];
3020
3026
  cursor: Cursor[];
3027
+ backgroundColor: {
3028
+ "primary-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
3029
+ "neutral-background": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
3030
+ transparent: string;
3031
+ };
3032
+ borderColor: {
3033
+ "primary-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
3034
+ "ai-gradientPurpleHigh": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
3035
+ transparent: string;
3036
+ };
3021
3037
  };
3022
3038
  classnames: {
3023
3039
  container: string;
@@ -3025,11 +3041,13 @@ export declare const fileUploader: {
3025
3041
  disabled: string;
3026
3042
  dragging: string;
3027
3043
  skeleton: string;
3044
+ overlay: string;
3045
+ overlay__image: string;
3028
3046
  };
3029
3047
  };
3030
3048
  export declare const icon: {
3031
3049
  sprinkle: ((props: {
3032
- color?: "currentColor" | "primary-interactive" | "primary-surface" | "primary-textLow" | "success-textLow" | "success-surface" | "warning-interactive" | "warning-surface" | "warning-textLow" | "danger-interactive" | "danger-surface" | "danger-textLow" | "neutral-background" | "neutral-interactive" | "neutral-surface" | "neutral-textLow" | "neutral-textHigh" | "success-interactive" | "ai-generative" | "primary-textHigh" | "success-textHigh" | "warning-textHigh" | "danger-textHigh" | "neutral-textDisabled" | "ai-gradientPurpleHigh" | undefined;
3050
+ color?: "currentColor" | "primary-interactive" | "primary-surface" | "primary-textLow" | "success-textLow" | "success-surface" | "warning-interactive" | "warning-surface" | "warning-textLow" | "danger-interactive" | "danger-surface" | "danger-textLow" | "neutral-background" | "neutral-interactive" | "neutral-surface" | "neutral-textLow" | "neutral-textHigh" | "success-interactive" | "ai-generative" | "ai-gradientPurpleHigh" | "primary-textHigh" | "success-textHigh" | "warning-textHigh" | "danger-textHigh" | "neutral-textDisabled" | undefined;
3033
3051
  cursor?: Cursor | undefined;
3034
3052
  }) => string) & {
3035
3053
  properties: Set<"color" | "cursor">;