@nimbus-ds/styles 9.5.1-rc.1 → 9.5.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 +11 -0
- package/dist/index.css +1 -9790
- package/dist/index.d.ts +18 -2
- package/dist/index.js +1 -3
- package/dist/styles.css +1 -9790
- package/dist/themes/dark.css +1 -252
- package/dist/themes/dark.js +1 -3
- package/dist/themes/next-dark.css +1 -252
- package/dist/themes/next-dark.js +1 -3
- package/dist/themes/next.css +1 -252
- package/dist/themes/next.js +1 -3
- package/package.json +2 -3
- package/dist/index.css.map +0 -1
- package/dist/index.js.LICENSE.txt +0 -729
- package/dist/index.js.map +0 -1
- package/dist/themes/dark.css.map +0 -1
- package/dist/themes/dark.js.LICENSE.txt +0 -15
- package/dist/themes/dark.js.map +0 -1
- package/dist/themes/next-dark.css.map +0 -1
- package/dist/themes/next-dark.js.LICENSE.txt +0 -15
- package/dist/themes/next-dark.js.map +0 -1
- package/dist/themes/next.css.map +0 -1
- package/dist/themes/next.js.LICENSE.txt +0 -15
- package/dist/themes/next.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -3800,9 +3800,13 @@ export type PopoverZIndexProperties = keyof typeof propertiesPopover.zIndex;
|
|
|
3800
3800
|
export interface PopoverSprinkle {
|
|
3801
3801
|
/**
|
|
3802
3802
|
* The width property specifies the width of a popover's content area.
|
|
3803
|
-
* @default
|
|
3803
|
+
* @default fit-content
|
|
3804
3804
|
*/
|
|
3805
3805
|
width?: string | Conditions<string>;
|
|
3806
|
+
/**
|
|
3807
|
+
* The maxWidth property specifies the maximum width of a popover's content area.
|
|
3808
|
+
*/
|
|
3809
|
+
maxWidth?: string | Conditions<string>;
|
|
3806
3810
|
/**
|
|
3807
3811
|
* The height property specifies the height of a popover's content area.
|
|
3808
3812
|
*/
|
|
@@ -4005,6 +4009,18 @@ export declare const popover: {
|
|
|
4005
4009
|
conditions: Record<"xs" | "md" | "lg" | "xl", string>;
|
|
4006
4010
|
};
|
|
4007
4011
|
};
|
|
4012
|
+
maxWidth: {
|
|
4013
|
+
dynamic: {
|
|
4014
|
+
default: string;
|
|
4015
|
+
conditions: Record<"xs" | "md" | "lg" | "xl", string>;
|
|
4016
|
+
};
|
|
4017
|
+
dynamicScale: true;
|
|
4018
|
+
name: "maxWidth";
|
|
4019
|
+
vars: {
|
|
4020
|
+
default: string;
|
|
4021
|
+
conditions: Record<"xs" | "md" | "lg" | "xl", string>;
|
|
4022
|
+
};
|
|
4023
|
+
};
|
|
4008
4024
|
height: {
|
|
4009
4025
|
dynamic: {
|
|
4010
4026
|
default: string;
|
|
@@ -4021,7 +4037,7 @@ export declare const popover: {
|
|
|
4021
4037
|
} & {
|
|
4022
4038
|
config: {
|
|
4023
4039
|
[x: string]: {
|
|
4024
|
-
mappings: ("width" | "zIndex" | "color" | "backgroundColor" | "height" | "padding")[];
|
|
4040
|
+
mappings: ("width" | "zIndex" | "color" | "backgroundColor" | "height" | "maxWidth" | "padding")[];
|
|
4025
4041
|
};
|
|
4026
4042
|
};
|
|
4027
4043
|
}
|