@devopness/ui-react 2.184.1 → 2.184.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/src/components/Primitives/Tooltip/Tooltip.d.ts +1 -1
- package/dist/ui-react.cjs +174 -174
- package/dist/ui-react.js +1197 -1204
- package/package.json +14 -14
|
@@ -39,5 +39,5 @@ type TooltipComponentProps = Unwrap<{
|
|
|
39
39
|
} & Omit<TooltipProps, 'title' | 'children'> & Nullable<Pick<TooltipProps, 'title'>>>;
|
|
40
40
|
/** Display informative text when users hover over a child element */
|
|
41
41
|
declare const Tooltip: ({ disableHover, enableOnlyWithEllipsisPoints, title, children, ...props }: TooltipComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
export type { TooltipComponentProps as TooltipProps };
|
|
43
42
|
export { Tooltip };
|
|
43
|
+
export type { TooltipComponentProps as TooltipProps };
|