@pantograph/vue 0.34.13 → 0.34.15
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/components/Tooltip/Tooltip.d.ts +6 -0
- package/dist/index.js +312 -299
- package/dist/index.umd.cjs +4 -4
- package/package.json +2 -2
|
@@ -16,6 +16,12 @@ export interface TooltipProps extends TooltipRootProps, TooltipProviderProps, Om
|
|
|
16
16
|
* @default undefined (auto width)
|
|
17
17
|
*/
|
|
18
18
|
width?: string | number;
|
|
19
|
+
/**
|
|
20
|
+
* Maximum width of the tooltip content
|
|
21
|
+
* Accepts CSS max-width values (e.g., '300px', '50%', 300)
|
|
22
|
+
* @default undefined (uses reka-ui default)
|
|
23
|
+
*/
|
|
24
|
+
maxWidth?: string | number;
|
|
19
25
|
/**
|
|
20
26
|
* Graphical object properties for displaying icons or graphics in the tooltip
|
|
21
27
|
* When provided, renders a GraphicalObject component within the tooltip content
|