@nimbus-ds/styles 9.42.1 → 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/CHANGELOG.md +14 -1
- package/dist/CHANGELOG.md +14 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +22 -2
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/themes/dark/index.js +1 -1
- package/dist/themes/next/index.js +1 -1
- package/dist/themes/next-dark/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2984,11 +2984,13 @@ export declare const checkbox: {
|
|
|
2984
2984
|
cursor: Cursor[];
|
|
2985
2985
|
};
|
|
2986
2986
|
classnames: {
|
|
2987
|
+
aiGenerated: string;
|
|
2987
2988
|
container: string;
|
|
2988
2989
|
container__input: string;
|
|
2989
2990
|
container__checkmark: string;
|
|
2990
2991
|
container__checkmark_checkicon: string;
|
|
2991
2992
|
container__checkmark_checkindeterminate: string;
|
|
2993
|
+
container__checkmark_aiGenerated: string;
|
|
2992
2994
|
};
|
|
2993
2995
|
};
|
|
2994
2996
|
export declare const chip: {
|
|
@@ -2998,13 +3000,19 @@ export declare const chip: {
|
|
|
2998
3000
|
aiGenerated: string;
|
|
2999
3001
|
};
|
|
3000
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
|
+
};
|
|
3001
3007
|
export declare const fileUploader: {
|
|
3002
3008
|
sprinkle: ((props: {
|
|
3003
3009
|
aspectRatio?: "none" | AspectRatio | undefined;
|
|
3004
3010
|
flexDirection?: "row" | "column" | undefined;
|
|
3005
3011
|
cursor?: Cursor | undefined;
|
|
3012
|
+
backgroundColor?: "transparent" | "primary-surface" | "neutral-background" | undefined;
|
|
3013
|
+
borderColor?: "transparent" | "primary-interactive" | "ai-gradientPurpleHigh" | undefined;
|
|
3006
3014
|
}) => string) & {
|
|
3007
|
-
properties: Set<"aspectRatio" | "cursor" | "flexDirection">;
|
|
3015
|
+
properties: Set<"aspectRatio" | "backgroundColor" | "cursor" | "flexDirection" | "borderColor">;
|
|
3008
3016
|
};
|
|
3009
3017
|
properties: {
|
|
3010
3018
|
aspectRatio: readonly [
|
|
@@ -3016,6 +3024,16 @@ export declare const fileUploader: {
|
|
|
3016
3024
|
"column"
|
|
3017
3025
|
];
|
|
3018
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
|
+
};
|
|
3019
3037
|
};
|
|
3020
3038
|
classnames: {
|
|
3021
3039
|
container: string;
|
|
@@ -3023,11 +3041,13 @@ export declare const fileUploader: {
|
|
|
3023
3041
|
disabled: string;
|
|
3024
3042
|
dragging: string;
|
|
3025
3043
|
skeleton: string;
|
|
3044
|
+
overlay: string;
|
|
3045
|
+
overlay__image: string;
|
|
3026
3046
|
};
|
|
3027
3047
|
};
|
|
3028
3048
|
export declare const icon: {
|
|
3029
3049
|
sprinkle: ((props: {
|
|
3030
|
-
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" |
|
|
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;
|
|
3031
3051
|
cursor?: Cursor | undefined;
|
|
3032
3052
|
}) => string) & {
|
|
3033
3053
|
properties: Set<"color" | "cursor">;
|