@aveonline/ui-react 2.4.3 → 2.4.4
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/ui/atoms/Tooltip/ITooltip.d.ts +1 -0
- package/dist/ui/atoms/Tooltip/Tooltip.d.ts +1 -1
- package/dist/ui-react.mjs +5631 -5584
- package/package.json +18 -18
|
@@ -3,5 +3,5 @@ import { ITooltipProps } from './ITooltip';
|
|
|
3
3
|
/**
|
|
4
4
|
* Floating labels that briefly explain the function of a user interface element. They can be triggered when merchants hover.
|
|
5
5
|
*/
|
|
6
|
-
declare function Tooltip({ placement, title, description, initialOpen, fullWidthContainer, classNameContainer, asChild, content, children }: ITooltipProps): JSX.Element;
|
|
6
|
+
declare function Tooltip({ placement, title, description, initialOpen, fullWidthContainer, classNameContainer, asChild, withClick, content, children }: ITooltipProps): JSX.Element;
|
|
7
7
|
export default Tooltip;
|