@launchpad-ui/tooltip
Advanced tools
Comparing version 0.3.9 to 0.3.10
/// <reference types="react" /> | ||
import type { PopoverProps } from '@launchpad-ui/popover'; | ||
import './styles/Tooltip.css'; | ||
declare type TooltipProps = PopoverProps & { | ||
declare type TooltipProps = Omit<PopoverProps, 'children'> & { | ||
className?: string; | ||
children?: React.ReactNode; | ||
}; | ||
declare const TooltipBase: ({ className, children, targetClassName, hoverCloseDelay, ...props }: TooltipProps) => JSX.Element; | ||
declare const Tooltip: import("react").ForwardRefExoticComponent<PopoverProps & { | ||
declare const Tooltip: import("react").ForwardRefExoticComponent<Omit<PopoverProps, "children"> & { | ||
className?: string | undefined; | ||
children?: React.ReactNode; | ||
} & import("react").RefAttributes<Element>>; | ||
@@ -11,0 +13,0 @@ export { Tooltip, TooltipBase }; |
{ | ||
"name": "@launchpad-ui/tooltip", | ||
"version": "0.3.9", | ||
"version": "0.3.10", | ||
"status": "beta", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
11021
114