@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/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 17.5rem
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
  }