@foris/avocado-suite 0.11.12 → 0.12.0
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,8 +16,11 @@ export interface TooltipProps {
|
|
16
16
|
className?: string;
|
17
17
|
/** The label of the tooltip */
|
18
18
|
label: string;
|
19
|
+
/** Not show the arrow tooltip */
|
20
|
+
notShowArrow?: boolean;
|
19
21
|
/** The placement of the popper relative to its reference */
|
20
22
|
placement?: keyof typeof PlacementEnum;
|
23
|
+
visible?: boolean;
|
21
24
|
}
|
22
25
|
declare const Tooltip: FC<TooltipProps>;
|
23
26
|
export default Tooltip;
|