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 {};
|
package/dist/index.d.ts
CHANGED
|
@@ -3087,7 +3087,14 @@ interface ITooltipProps {
|
|
|
3087
3087
|
* the tooltip component must wrap a component
|
|
3088
3088
|
*/
|
|
3089
3089
|
children: React.ReactNode;
|
|
3090
|
+
/**
|
|
3091
|
+
* this property set the tooltip width
|
|
3092
|
+
*/
|
|
3090
3093
|
width?: string;
|
|
3094
|
+
/**
|
|
3095
|
+
* this property set the tooltip visibility
|
|
3096
|
+
*/
|
|
3097
|
+
visible?: boolean;
|
|
3091
3098
|
}
|
|
3092
3099
|
|
|
3093
3100
|
declare const Tooltip: React$1.FC<ITooltipProps>;
|
package/package.json
CHANGED