@nimbus-ds/popover 4.1.1-rc.1 → 4.1.1-rc.2
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 +5 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -52,9 +52,13 @@ export type PopoverZIndexProperties = keyof typeof propertiesPopover.zIndex;
|
|
|
52
52
|
export interface PopoverSprinkle {
|
|
53
53
|
/**
|
|
54
54
|
* The width property specifies the width of a popover's content area.
|
|
55
|
-
* @default
|
|
55
|
+
* @default fit-content
|
|
56
56
|
*/
|
|
57
57
|
width?: string | Conditions<string>;
|
|
58
|
+
/**
|
|
59
|
+
* The maxWidth property specifies the maximum width of a popover's content area.
|
|
60
|
+
*/
|
|
61
|
+
maxWidth?: string | Conditions<string>;
|
|
58
62
|
/**
|
|
59
63
|
* The height property specifies the height of a popover's content area.
|
|
60
64
|
*/
|