demio-ui 2.2.5 → 2.4.0
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/index.js +2 -2
- package/dist/cjs/types/src/components/Tooltip/Tooltip.d.ts +5 -1
- package/dist/cjs/types/src/components/Tooltip/index.d.ts +1 -1
- package/dist/cjs/types/src/components/index.d.ts +1 -1
- package/dist/esm/index.js +5 -5
- package/dist/esm/types/src/components/Tooltip/Tooltip.d.ts +5 -1
- package/dist/esm/types/src/components/Tooltip/index.d.ts +1 -1
- package/dist/esm/types/src/components/index.d.ts +1 -1
- package/dist/types.d.ts +5 -1
- package/package.json +1 -1
|
@@ -22,4 +22,8 @@ type Props = {
|
|
|
22
22
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/tooltip#keyboard-interactions)
|
|
23
23
|
**/
|
|
24
24
|
export declare function Tooltip({ align, alignOffset, children, className, collisionBoundary, container, content, defaultOpen, delayDuration, isCustomTrigger, isPortal, isTriggerAsChild, open, onOpenChange, side, sideOffset, skipDelayDuration, ...props }: Props): string | number | boolean | React.JSX.Element | Iterable<React.ReactNode> | null | undefined;
|
|
25
|
-
|
|
25
|
+
/**
|
|
26
|
+
* PopoverTooltip is a wrapper around Popover that provides a tooltip-like experience.
|
|
27
|
+
**/
|
|
28
|
+
export declare function PopoverTooltip({ align, alignOffset, children, className, collisionBoundary, container, content, side, sideOffset, ...props }: Props): React.JSX.Element;
|
|
29
|
+
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Tooltip';
|
|
@@ -26,5 +26,5 @@ export { default as Slider } from './Slider';
|
|
|
26
26
|
export { default as Switch } from './Switch';
|
|
27
27
|
export { Tab, TabsContent, TabsList, TabsRoot } from './Tabs';
|
|
28
28
|
export { Tag } from './Tag';
|
|
29
|
-
export {
|
|
29
|
+
export { PopoverTooltip, Tooltip } from './Tooltip';
|
|
30
30
|
export { Typography } from './Typography';
|