@hanzogui/tooltip 2.0.0-rc.41-hanzoai.3
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/LICENSE +21 -0
- package/dist/cjs/Tooltip.cjs +241 -0
- package/dist/cjs/Tooltip.native.js +50 -0
- package/dist/cjs/Tooltip.native.js.map +1 -0
- package/dist/cjs/TooltipSimple.cjs +112 -0
- package/dist/cjs/TooltipSimple.native.js +34 -0
- package/dist/cjs/TooltipSimple.native.js.map +1 -0
- package/dist/cjs/index.cjs +21 -0
- package/dist/cjs/index.native.js +24 -0
- package/dist/cjs/index.native.js.map +1 -0
- package/dist/esm/Tooltip.mjs +202 -0
- package/dist/esm/Tooltip.mjs.map +1 -0
- package/dist/esm/Tooltip.native.js +20 -0
- package/dist/esm/Tooltip.native.js.map +1 -0
- package/dist/esm/TooltipSimple.mjs +76 -0
- package/dist/esm/TooltipSimple.mjs.map +1 -0
- package/dist/esm/TooltipSimple.native.js +6 -0
- package/dist/esm/TooltipSimple.native.js.map +1 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/index.mjs +3 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/esm/index.native.js +3 -0
- package/dist/esm/index.native.js.map +1 -0
- package/dist/jsx/Tooltip.mjs +202 -0
- package/dist/jsx/Tooltip.mjs.map +1 -0
- package/dist/jsx/Tooltip.native.js +50 -0
- package/dist/jsx/Tooltip.native.js.map +1 -0
- package/dist/jsx/TooltipSimple.mjs +76 -0
- package/dist/jsx/TooltipSimple.mjs.map +1 -0
- package/dist/jsx/TooltipSimple.native.js +34 -0
- package/dist/jsx/TooltipSimple.native.js.map +1 -0
- package/dist/jsx/index.js +3 -0
- package/dist/jsx/index.js.map +1 -0
- package/dist/jsx/index.mjs +3 -0
- package/dist/jsx/index.mjs.map +1 -0
- package/dist/jsx/index.native.js +24 -0
- package/dist/jsx/index.native.js.map +1 -0
- package/package.json +62 -0
- package/src/Tooltip.native.tsx +26 -0
- package/src/Tooltip.tsx +291 -0
- package/src/TooltipSimple.native.tsx +5 -0
- package/src/TooltipSimple.tsx +85 -0
- package/src/index.tsx +2 -0
- package/types/Tooltip.d.ts +92 -0
- package/types/Tooltip.d.ts.map +1 -0
- package/types/Tooltip.native.d.ts +10 -0
- package/types/Tooltip.native.d.ts.map +1 -0
- package/types/TooltipSimple.d.ts +11 -0
- package/types/TooltipSimple.d.ts.map +1 -0
- package/types/TooltipSimple.native.d.ts +2 -0
- package/types/TooltipSimple.native.d.ts.map +1 -0
- package/types/index.d.ts +3 -0
- package/types/index.d.ts.map +1 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import '@hanzogui/polyfill-dev';
|
|
2
|
+
import { type Delay } from '@hanzogui/floating';
|
|
3
|
+
import type { SizeTokens, HanzoguiElement } from '@hanzogui/core';
|
|
4
|
+
import type { PopoverAnchorProps, PopoverContentProps, PopoverTriggerProps } from '@hanzogui/popover';
|
|
5
|
+
import type { PopperProps } from '@hanzogui/popper';
|
|
6
|
+
import * as React from 'react';
|
|
7
|
+
export type TooltipScopes = string;
|
|
8
|
+
type ScopedProps<P> = Omit<P, 'scope'> & {
|
|
9
|
+
scope?: TooltipScopes;
|
|
10
|
+
};
|
|
11
|
+
export type TooltipContentProps = ScopedProps<PopoverContentProps>;
|
|
12
|
+
export type TooltipProps = ScopedProps<PopperProps & {
|
|
13
|
+
open?: boolean;
|
|
14
|
+
unstyled?: boolean;
|
|
15
|
+
children?: React.ReactNode;
|
|
16
|
+
onOpenChange?: (open: boolean) => void;
|
|
17
|
+
focus?: {
|
|
18
|
+
enabled?: boolean;
|
|
19
|
+
visibleOnly?: boolean;
|
|
20
|
+
};
|
|
21
|
+
groupId?: string;
|
|
22
|
+
restMs?: number;
|
|
23
|
+
delay?: number | {
|
|
24
|
+
open?: number;
|
|
25
|
+
close?: number;
|
|
26
|
+
};
|
|
27
|
+
disableAutoCloseOnScroll?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* z-index for the tooltip portal. Use this when tooltips need to appear
|
|
30
|
+
* above other portaled content like dialogs.
|
|
31
|
+
*/
|
|
32
|
+
zIndex?: number;
|
|
33
|
+
}>;
|
|
34
|
+
export declare const TooltipGroup: ({ children, delay, preventAnimation, timeoutMs, }: {
|
|
35
|
+
children?: any;
|
|
36
|
+
delay: Delay;
|
|
37
|
+
preventAnimation?: boolean;
|
|
38
|
+
timeoutMs?: number;
|
|
39
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
export declare const closeOpenTooltips: () => void;
|
|
41
|
+
export declare const Tooltip: React.ForwardRefExoticComponent<Omit<PopperProps & {
|
|
42
|
+
open?: boolean;
|
|
43
|
+
unstyled?: boolean;
|
|
44
|
+
children?: React.ReactNode;
|
|
45
|
+
onOpenChange?: (open: boolean) => void;
|
|
46
|
+
focus?: {
|
|
47
|
+
enabled?: boolean;
|
|
48
|
+
visibleOnly?: boolean;
|
|
49
|
+
};
|
|
50
|
+
groupId?: string;
|
|
51
|
+
restMs?: number;
|
|
52
|
+
delay?: number | {
|
|
53
|
+
open?: number;
|
|
54
|
+
close?: number;
|
|
55
|
+
};
|
|
56
|
+
disableAutoCloseOnScroll?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* z-index for the tooltip portal. Use this when tooltips need to appear
|
|
59
|
+
* above other portaled content like dialogs.
|
|
60
|
+
*/
|
|
61
|
+
zIndex?: number;
|
|
62
|
+
}, "scope"> & {
|
|
63
|
+
scope?: TooltipScopes;
|
|
64
|
+
} & React.RefAttributes<unknown>> & {
|
|
65
|
+
Anchor: React.ForwardRefExoticComponent<Omit<PopoverAnchorProps, "scope"> & {
|
|
66
|
+
scope?: TooltipScopes;
|
|
67
|
+
} & React.RefAttributes<unknown>>;
|
|
68
|
+
Arrow: React.ForwardRefExoticComponent<Omit<import("@hanzogui/core").GetFinalProps<import("@hanzogui/core").RNHanzoguiViewNonStyleProps, import("@hanzogui/core").StackStyleBase, {
|
|
69
|
+
elevation?: number | SizeTokens | undefined;
|
|
70
|
+
fullscreen?: boolean | undefined;
|
|
71
|
+
}>, keyof import("@hanzogui/stacks").StackVariants> & import("@hanzogui/stacks").StackVariants & import("@hanzogui/popper").PopperArrowExtraProps & React.RefAttributes<HanzoguiElement>>;
|
|
72
|
+
Content: import("@hanzogui/core").HanzoguiComponent<Omit<import("@hanzogui/core").GetFinalProps<import("@hanzogui/core").RNHanzoguiViewNonStyleProps, import("@hanzogui/core").StackStyleBase, {
|
|
73
|
+
size?: SizeTokens | undefined;
|
|
74
|
+
unstyled?: boolean | undefined;
|
|
75
|
+
elevation?: number | SizeTokens | undefined;
|
|
76
|
+
fullscreen?: boolean | undefined;
|
|
77
|
+
}>, "theme" | "debug" | "scope" | "hitSlop" | "pointerEvents" | "display" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "render" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "position" | "x" | "y" | "perspective" | "scale" | "scaleX" | "scaleY" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "borderCurve" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "outline" | "userSelect" | "backdropFilter" | "background" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "boxShadow" | "border" | "overflowX" | "overflowY" | "transformOrigin" | "filter" | "backgroundClip" | "backgroundBlendMode" | "backgroundAttachment" | "clipPath" | "caretColor" | "transformStyle" | "mask" | "maskImage" | "textEmphasis" | "borderImage" | "float" | "content" | "overflowBlock" | "overflowInline" | "maskBorder" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "gridRow" | "gridRowEnd" | "gridRowGap" | "gridRowStart" | "gridColumn" | "gridColumnEnd" | "gridColumnGap" | "gridColumnStart" | "gridTemplateColumns" | "gridTemplateAreas" | "containerType" | "blockSize" | "inlineSize" | "minBlockSize" | "maxBlockSize" | "objectFit" | "verticalAlign" | "minInlineSize" | "maxInlineSize" | "borderInlineColor" | "borderInlineStartColor" | "borderInlineEndColor" | "borderBlockWidth" | "borderBlockStartWidth" | "borderBlockEndWidth" | "borderInlineWidth" | "borderInlineStartWidth" | "borderInlineEndWidth" | "borderBlockStyle" | "borderBlockStartStyle" | "borderBlockEndStyle" | "borderInlineStyle" | "borderInlineStartStyle" | "borderInlineEndStyle" | "marginBlock" | "marginBlockStart" | "marginBlockEnd" | "marginInline" | "marginInlineStart" | "marginInlineEnd" | "paddingBlock" | "paddingBlockStart" | "paddingBlockEnd" | "paddingInline" | "paddingInlineStart" | "paddingInlineEnd" | "inset" | "insetBlock" | "insetBlockStart" | "insetBlockEnd" | "insetInline" | "insetInlineStart" | "insetInlineEnd" | "transition" | "animateOnly" | "animatePresence" | "passThrough" | "elevation" | "backfaceVisibility" | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "isolation" | "mixBlendMode" | "experimental_backgroundImage" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "boxSizing" | "end" | "flex" | "flexBasis" | "flexDirection" | "rowGap" | "gap" | "columnGap" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "size" | "transparent" | "fullscreen" | "circular" | "elevate" | "bordered" | "chromeless" | `$${string}` | `$${number}` | `$group-${string}` | `$group-${number}` | `$group-${string}-hover` | `$group-${string}-press` | `$group-${string}-focus` | `$group-${string}-focusVisible` | `$group-${string}-focusWithin` | `$group-${number}-hover` | `$group-${number}-press` | `$group-${number}-focus` | `$group-${number}-focusVisible` | `$group-${number}-focusWithin` | `$theme-${string}` | `$theme-${number}` | "branches" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | "hoverStyle" | "pressStyle" | "focusStyle" | "focusWithinStyle" | "focusVisibleStyle" | "disabledStyle" | "exitStyle" | "enterStyle" | "animatePosition" | "enableAnimationForPositionChange" | "lazyMount" | "trapFocus" | "disableFocusScope" | "onOpenAutoFocus" | "onCloseAutoFocus" | "enableRemoveScroll" | "freezeContentsWhenHidden" | "alwaysDisable"> & Omit<import("@hanzogui/popover").PopoverContentTypeProps, "scope"> & {
|
|
78
|
+
scope?: TooltipScopes;
|
|
79
|
+
}, HanzoguiElement, import("@hanzogui/core").RNHanzoguiViewNonStyleProps & Omit<import("@hanzogui/popover").PopoverContentTypeProps, "scope"> & {
|
|
80
|
+
scope?: TooltipScopes;
|
|
81
|
+
}, import("@hanzogui/core").StackStyleBase, {
|
|
82
|
+
size?: SizeTokens | undefined;
|
|
83
|
+
unstyled?: boolean | undefined;
|
|
84
|
+
elevation?: number | SizeTokens | undefined;
|
|
85
|
+
fullscreen?: boolean | undefined;
|
|
86
|
+
}, import("@hanzogui/core").StaticConfigPublic>;
|
|
87
|
+
Trigger: React.ForwardRefExoticComponent<Omit<PopoverTriggerProps, "scope"> & {
|
|
88
|
+
scope?: TooltipScopes;
|
|
89
|
+
} & React.RefAttributes<unknown>>;
|
|
90
|
+
};
|
|
91
|
+
export {};
|
|
92
|
+
//# sourceMappingURL=Tooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../src/Tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,wBAAwB,CAAA;AAE/B,OAAO,EAA4C,KAAK,KAAK,EAAE,MAAM,oBAAoB,CAAA;AACzF,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAA;AAKjE,OAAO,KAAK,EACV,kBAAkB,EAClB,mBAAmB,EACnB,mBAAmB,EACpB,MAAM,mBAAmB,CAAA;AAS1B,OAAO,KAAK,EAAoB,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAGrE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAI9B,MAAM,MAAM,aAAa,GAAG,MAAM,CAAA;AAElC,KAAK,WAAW,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,EAAE,OAAO,CAAC,GAAG;IAAE,KAAK,CAAC,EAAE,aAAa,CAAA;CAAE,CAAA;AAElE,MAAM,MAAM,mBAAmB,GAAG,WAAW,CAAC,mBAAmB,CAAC,CAAA;AAuDlE,MAAM,MAAM,YAAY,GAAG,WAAW,CACpC,WAAW,GAAG;IACZ,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;IACtC,KAAK,CAAC,EAAE;QACN,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,WAAW,CAAC,EAAE,OAAO,CAAA;KACtB,CAAA;IACD,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EACF,MAAM,GACN;QACE,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;KACf,CAAA;IACL,wBAAwB,CAAC,EAAE,OAAO,CAAA;IAClC;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CACF,CAAA;AAKD,eAAO,MAAM,YAAY,GAAI,mDAK1B;IACD,QAAQ,CAAC,EAAE,GAAG,CAAA;IACd,KAAK,EAAE,KAAK,CAAA;IACZ,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,4CAWA,CAAA;AAID,eAAO,MAAM,iBAAiB,YAE7B,CAAA;AA2ID,eAAO,MAAM,OAAO;WAlMT,OAAO;eACH,OAAO;eACP,KAAK,CAAC,SAAS;mBACX,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI;YAC9B;QACN,OAAO,CAAC,EAAE,OAAO,CAAA;QACjB,WAAW,CAAC,EAAE,OAAO,CAAA;KACtB;cACS,MAAM;aACP,MAAM;YAEX,MAAM,GACN;QACE,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,KAAK,CAAC,EAAE,MAAM,CAAA;KACf;+BACsB,OAAO;IAClC;;;OAGG;aACM,MAAM;;YAhFgC,aAAa;;;gBAAb,aAAa;;;;;;;;;;;;gBAAb,aAAa;;gBAAb,aAAa;;;;;;;;gBAAb,aAAa;;CAkQ9D,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const TooltipGroup: () => null;
|
|
2
|
+
export declare const closeOpenTooltips: () => void;
|
|
3
|
+
export declare const Tooltip: ((props: any) => any) & {
|
|
4
|
+
Anchor: (props: any) => any;
|
|
5
|
+
Arrow: (props: any) => null;
|
|
6
|
+
Close: (props: any) => null;
|
|
7
|
+
Content: (props: any) => null;
|
|
8
|
+
Trigger: (props: any) => any;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=Tooltip.native.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tooltip.native.d.ts","sourceRoot":"","sources":["../src/Tooltip.native.tsx"],"names":[],"mappings":"AAaA,eAAO,MAAM,YAAY,YAAa,CAAA;AAEtC,eAAO,MAAM,iBAAiB,YAE7B,CAAA;AAED,eAAO,MAAM,OAAO,WAdW,GAAG;oBAAH,GAAG;mBAIP,GAAG;mBAAH,GAAG;qBAAH,GAAG;qBAJC,GAAG;CAoBhC,CAAA"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { SizableStackProps } from '@hanzogui/stacks';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import type { TooltipProps } from './Tooltip';
|
|
4
|
+
export type TooltipSimpleProps = TooltipProps & {
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
label?: React.ReactNode;
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
contentProps?: SizableStackProps;
|
|
9
|
+
};
|
|
10
|
+
export declare const TooltipSimple: React.FC<TooltipSimpleProps>;
|
|
11
|
+
//# sourceMappingURL=TooltipSimple.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TooltipSimple.d.ts","sourceRoot":"","sources":["../src/TooltipSimple.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAEzD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAG7C,MAAM,MAAM,kBAAkB,GAAG,YAAY,GAAG;IAC9C,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACvB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,YAAY,CAAC,EAAE,iBAAiB,CAAA;CACjC,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAqEtD,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TooltipSimple.native.d.ts","sourceRoot":"","sources":["../src/TooltipSimple.native.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,aAAa,UAJK,GAAG,QAIS,CAAA"}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,iBAAiB,CAAA"}
|