design-system-silkhaus 2.17.0-beta.notifications.5 → 2.17.0-beta.notifications.7
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.cjs +40 -40
- package/dist/index.d.ts +8 -0
- package/dist/index.js +5544 -5494
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -885,6 +885,14 @@ export declare interface PopoverProps {
|
|
|
885
885
|
* Pass this value to control the open state
|
|
886
886
|
*/
|
|
887
887
|
isOpen?: boolean;
|
|
888
|
+
/**
|
|
889
|
+
* Adjust the height of the popover to fit the content in viewport
|
|
890
|
+
*/
|
|
891
|
+
adjustHeight?: boolean | number;
|
|
892
|
+
/**
|
|
893
|
+
* Adjust the width of the popover to fit the content in viewport
|
|
894
|
+
*/
|
|
895
|
+
adjustWidth?: boolean;
|
|
888
896
|
}
|
|
889
897
|
|
|
890
898
|
export declare const PreviewIcon: FC<{
|