@wavv/ui 1.7.0-beta.2 → 1.7.0-beta.3
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.
|
@@ -16,6 +16,8 @@ export type TooltipProps = {
|
|
|
16
16
|
position?: Position;
|
|
17
17
|
/** Offset of the Tooltip from the trigger */
|
|
18
18
|
offset?: number;
|
|
19
|
+
/** zIndex of the Tooltip's portal container */
|
|
20
|
+
zIndex?: number;
|
|
19
21
|
/** The width of the Tooltip element */
|
|
20
22
|
width?: number | string;
|
|
21
23
|
/** The maxWidth of the Tooltip element */
|
|
@@ -40,7 +42,7 @@ export type TooltipProps = {
|
|
|
40
42
|
afterHide?: () => void;
|
|
41
43
|
};
|
|
42
44
|
declare const Tooltip: {
|
|
43
|
-
({ trigger, children, content, position, offset, width, maxWidth, textAlign, open, disabled, id, bgColor, color, container, afterShow, afterHide, }: TooltipProps): JSX.Element;
|
|
45
|
+
({ trigger, children, content, position, offset, zIndex, width, maxWidth, textAlign, open, disabled, id, bgColor, color, container, afterShow, afterHide, }: TooltipProps): JSX.Element;
|
|
44
46
|
Header: import("@emotion/styled").StyledComponent<{
|
|
45
47
|
theme?: import("@emotion/react").Theme | undefined;
|
|
46
48
|
as?: import("react").ElementType<any> | undefined;
|