magneto365.ui 2.56.0 → 2.56.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/cjs/css/magneto.ui.lib.min.css +1 -1
- package/dist/cjs/index.js +135 -127
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/UI/molecules/Tooltip/Tooltip.interface.d.ts +7 -0
- package/dist/esm/css/magneto.ui.lib.min.css +1 -1
- package/dist/esm/index.js +135 -127
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/UI/molecules/Tooltip/Tooltip.interface.d.ts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -13,6 +13,13 @@ export interface ITooltipProps {
|
|
|
13
13
|
* the tooltip component must wrap a component
|
|
14
14
|
*/
|
|
15
15
|
children: React.ReactNode;
|
|
16
|
+
/**
|
|
17
|
+
* this property set the tooltip width
|
|
18
|
+
*/
|
|
16
19
|
width?: string;
|
|
20
|
+
/**
|
|
21
|
+
* this property set the tooltip visibility
|
|
22
|
+
*/
|
|
23
|
+
visible?: boolean;
|
|
17
24
|
}
|
|
18
25
|
export {};
|