@tamagui/tooltip 1.73.0 → 1.73.1
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/package.json +13 -13
- package/types/Tooltip.d.ts +188 -13
- package/types/Tooltip.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tooltip",
|
|
3
|
-
"version": "1.73.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,24 +32,24 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@floating-ui/react": "^0.24.7",
|
|
35
|
-
"@tamagui/compose-refs": "1.73.
|
|
36
|
-
"@tamagui/core": "1.73.
|
|
37
|
-
"@tamagui/create-context": "1.73.
|
|
38
|
-
"@tamagui/floating": "1.73.
|
|
39
|
-
"@tamagui/get-token": "1.73.
|
|
40
|
-
"@tamagui/polyfill-dev": "1.73.
|
|
41
|
-
"@tamagui/popover": "1.73.
|
|
42
|
-
"@tamagui/popper": "1.73.
|
|
43
|
-
"@tamagui/stacks": "1.73.
|
|
44
|
-
"@tamagui/text": "1.73.
|
|
45
|
-
"@tamagui/use-controllable-state": "1.73.
|
|
35
|
+
"@tamagui/compose-refs": "1.73.1",
|
|
36
|
+
"@tamagui/core": "1.73.1",
|
|
37
|
+
"@tamagui/create-context": "1.73.1",
|
|
38
|
+
"@tamagui/floating": "1.73.1",
|
|
39
|
+
"@tamagui/get-token": "1.73.1",
|
|
40
|
+
"@tamagui/polyfill-dev": "1.73.1",
|
|
41
|
+
"@tamagui/popover": "1.73.1",
|
|
42
|
+
"@tamagui/popper": "1.73.1",
|
|
43
|
+
"@tamagui/stacks": "1.73.1",
|
|
44
|
+
"@tamagui/text": "1.73.1",
|
|
45
|
+
"@tamagui/use-controllable-state": "1.73.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": "*",
|
|
49
49
|
"react-native": "*"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@tamagui/build": "1.73.
|
|
52
|
+
"@tamagui/build": "1.73.1",
|
|
53
53
|
"react": "^18.2.0",
|
|
54
54
|
"react-native": "^0.72.1"
|
|
55
55
|
},
|
package/types/Tooltip.d.ts
CHANGED
|
@@ -44,39 +44,189 @@ export declare const Tooltip: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
44
44
|
} & {
|
|
45
45
|
__scopeTooltip?: string | undefined;
|
|
46
46
|
} & React.RefAttributes<unknown>> & {
|
|
47
|
-
Anchor: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
47
|
+
Anchor: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
48
|
+
target?: string | undefined;
|
|
49
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
50
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
51
|
+
dangerouslySetInnerHTML?: {
|
|
52
|
+
__html: string;
|
|
53
|
+
} | undefined;
|
|
54
|
+
children?: any;
|
|
55
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
56
|
+
disabled?: boolean | undefined;
|
|
57
|
+
className?: string | undefined;
|
|
58
|
+
themeShallow?: boolean | undefined;
|
|
59
|
+
id?: string | undefined;
|
|
60
|
+
tag?: string | undefined;
|
|
61
|
+
theme?: string | null | undefined;
|
|
62
|
+
group?: undefined;
|
|
63
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
64
|
+
componentName?: string | undefined;
|
|
65
|
+
tabIndex?: string | number | undefined;
|
|
66
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
67
|
+
disableOptimization?: boolean | undefined;
|
|
68
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
69
|
+
disableClassName?: boolean | undefined;
|
|
70
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
71
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
72
|
+
} & {
|
|
48
73
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
49
74
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
50
75
|
readonly fullscreen?: boolean | undefined;
|
|
51
|
-
readonly elevation?: SizeTokens | undefined;
|
|
52
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
76
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
77
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
78
|
+
target?: string | undefined;
|
|
79
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
80
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
81
|
+
dangerouslySetInnerHTML?: {
|
|
82
|
+
__html: string;
|
|
83
|
+
} | undefined;
|
|
84
|
+
children?: any;
|
|
85
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
86
|
+
disabled?: boolean | undefined;
|
|
87
|
+
className?: string | undefined;
|
|
88
|
+
themeShallow?: boolean | undefined;
|
|
89
|
+
id?: string | undefined;
|
|
90
|
+
tag?: string | undefined;
|
|
91
|
+
theme?: string | null | undefined;
|
|
92
|
+
group?: undefined;
|
|
93
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
94
|
+
componentName?: string | undefined;
|
|
95
|
+
tabIndex?: string | number | undefined;
|
|
96
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
97
|
+
disableOptimization?: boolean | undefined;
|
|
98
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
99
|
+
disableClassName?: boolean | undefined;
|
|
100
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
101
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
102
|
+
} & {
|
|
53
103
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
54
104
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
55
105
|
readonly fullscreen?: boolean | undefined;
|
|
56
|
-
readonly elevation?: SizeTokens | undefined;
|
|
57
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
106
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
107
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
108
|
+
target?: string | undefined;
|
|
109
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
110
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
111
|
+
dangerouslySetInnerHTML?: {
|
|
112
|
+
__html: string;
|
|
113
|
+
} | undefined;
|
|
114
|
+
children?: any;
|
|
115
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
116
|
+
disabled?: boolean | undefined;
|
|
117
|
+
className?: string | undefined;
|
|
118
|
+
themeShallow?: boolean | undefined;
|
|
119
|
+
id?: string | undefined;
|
|
120
|
+
tag?: string | undefined;
|
|
121
|
+
theme?: string | null | undefined;
|
|
122
|
+
group?: undefined;
|
|
123
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
124
|
+
componentName?: string | undefined;
|
|
125
|
+
tabIndex?: string | number | undefined;
|
|
126
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
127
|
+
disableOptimization?: boolean | undefined;
|
|
128
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
129
|
+
disableClassName?: boolean | undefined;
|
|
130
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
131
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
132
|
+
} & {
|
|
58
133
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
59
134
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
60
135
|
readonly fullscreen?: boolean | undefined;
|
|
61
|
-
readonly elevation?: SizeTokens | undefined;
|
|
136
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
62
137
|
}>> & {
|
|
63
138
|
__scopeTooltip?: string | undefined;
|
|
64
139
|
} & React.RefAttributes<unknown>>;
|
|
65
|
-
Arrow: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
140
|
+
Arrow: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
141
|
+
target?: string | undefined;
|
|
142
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
143
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
144
|
+
dangerouslySetInnerHTML?: {
|
|
145
|
+
__html: string;
|
|
146
|
+
} | undefined;
|
|
147
|
+
children?: any;
|
|
148
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
149
|
+
disabled?: boolean | undefined;
|
|
150
|
+
className?: string | undefined;
|
|
151
|
+
themeShallow?: boolean | undefined;
|
|
152
|
+
id?: string | undefined;
|
|
153
|
+
tag?: string | undefined;
|
|
154
|
+
theme?: string | null | undefined;
|
|
155
|
+
group?: undefined;
|
|
156
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
157
|
+
componentName?: string | undefined;
|
|
158
|
+
tabIndex?: string | number | undefined;
|
|
159
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
160
|
+
disableOptimization?: boolean | undefined;
|
|
161
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
162
|
+
disableClassName?: boolean | undefined;
|
|
163
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
164
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
165
|
+
} & {
|
|
66
166
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
67
167
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
68
168
|
readonly fullscreen?: boolean | undefined;
|
|
69
|
-
readonly elevation?: SizeTokens | undefined;
|
|
70
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
169
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
170
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
171
|
+
target?: string | undefined;
|
|
172
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
173
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
174
|
+
dangerouslySetInnerHTML?: {
|
|
175
|
+
__html: string;
|
|
176
|
+
} | undefined;
|
|
177
|
+
children?: any;
|
|
178
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
179
|
+
disabled?: boolean | undefined;
|
|
180
|
+
className?: string | undefined;
|
|
181
|
+
themeShallow?: boolean | undefined;
|
|
182
|
+
id?: string | undefined;
|
|
183
|
+
tag?: string | undefined;
|
|
184
|
+
theme?: string | null | undefined;
|
|
185
|
+
group?: undefined;
|
|
186
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
187
|
+
componentName?: string | undefined;
|
|
188
|
+
tabIndex?: string | number | undefined;
|
|
189
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
190
|
+
disableOptimization?: boolean | undefined;
|
|
191
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
192
|
+
disableClassName?: boolean | undefined;
|
|
193
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
194
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
195
|
+
} & {
|
|
71
196
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
72
197
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
73
198
|
readonly fullscreen?: boolean | undefined;
|
|
74
|
-
readonly elevation?: SizeTokens | undefined;
|
|
75
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
199
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
200
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
201
|
+
target?: string | undefined;
|
|
202
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
203
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
204
|
+
dangerouslySetInnerHTML?: {
|
|
205
|
+
__html: string;
|
|
206
|
+
} | undefined;
|
|
207
|
+
children?: any;
|
|
208
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
209
|
+
disabled?: boolean | undefined;
|
|
210
|
+
className?: string | undefined;
|
|
211
|
+
themeShallow?: boolean | undefined;
|
|
212
|
+
id?: string | undefined;
|
|
213
|
+
tag?: string | undefined;
|
|
214
|
+
theme?: string | null | undefined;
|
|
215
|
+
group?: undefined;
|
|
216
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
217
|
+
componentName?: string | undefined;
|
|
218
|
+
tabIndex?: string | number | undefined;
|
|
219
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
220
|
+
disableOptimization?: boolean | undefined;
|
|
221
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
222
|
+
disableClassName?: boolean | undefined;
|
|
223
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
224
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
225
|
+
} & {
|
|
76
226
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
77
227
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
|
|
78
228
|
readonly fullscreen?: boolean | undefined;
|
|
79
|
-
readonly elevation?: SizeTokens | undefined;
|
|
229
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
80
230
|
}>> & {
|
|
81
231
|
offset?: number | undefined;
|
|
82
232
|
size?: SizeTokens | undefined;
|
|
@@ -86,7 +236,32 @@ export declare const Tooltip: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
86
236
|
Content: React.ForwardRefExoticComponent<import("@tamagui/popover").PopoverContentTypeProps & {
|
|
87
237
|
__scopeTooltip?: string | undefined;
|
|
88
238
|
} & React.RefAttributes<unknown>>;
|
|
89
|
-
Trigger: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
239
|
+
Trigger: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "style" | ("onLayout" | keyof import("react-native").GestureResponderHandlers)> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
240
|
+
target?: string | undefined;
|
|
241
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
242
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
243
|
+
dangerouslySetInnerHTML?: {
|
|
244
|
+
__html: string;
|
|
245
|
+
} | undefined;
|
|
246
|
+
children?: any;
|
|
247
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
248
|
+
disabled?: boolean | undefined;
|
|
249
|
+
className?: string | undefined;
|
|
250
|
+
themeShallow?: boolean | undefined;
|
|
251
|
+
id?: string | undefined;
|
|
252
|
+
tag?: string | undefined;
|
|
253
|
+
theme?: string | null | undefined;
|
|
254
|
+
group?: undefined;
|
|
255
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
256
|
+
componentName?: string | undefined;
|
|
257
|
+
tabIndex?: string | number | undefined;
|
|
258
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
259
|
+
disableOptimization?: boolean | undefined;
|
|
260
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
261
|
+
disableClassName?: boolean | undefined;
|
|
262
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
263
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
264
|
+
} & {
|
|
90
265
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
91
266
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").PseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>>> & import("@tamagui/core").MediaProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").PseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>>>> & {
|
|
92
267
|
__scopeTooltip?: string | undefined;
|
package/types/Tooltip.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../src/Tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAA;AAa9B,OAAO,EAAe,UAAU,EAAkC,MAAM,eAAe,CAAA;AAcvF,OAAO,EAGL,WAAW,EAEZ,MAAM,iBAAiB,CAAA;AAExB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAgD9B,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACvC,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,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB,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;CACN,CAAA;AAED,KAAK,KAAK,GACN,MAAM,GACN,OAAO,CAAC;IACN,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;CACd,CAAC,CAAA;AAEN,eAAO,MAAM,YAAY;eAAsC,GAAG;WAAS,KAAK;iBAM/E,CAAA;AA8HD,eAAO,MAAM,OAAO;;;eA3JP,MAAM,SAAS;2BACJ,OAAO,KAAK,IAAI
|
|
1
|
+
{"version":3,"file":"Tooltip.d.ts","sourceRoot":"","sources":["../src/Tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAA;AAa9B,OAAO,EAAe,UAAU,EAAkC,MAAM,eAAe,CAAA;AAcvF,OAAO,EAGL,WAAW,EAEZ,MAAM,iBAAiB,CAAA;AAExB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAgD9B,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACvC,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,YAAY,CAAC,EAAE,OAAO,CAAA;KACvB,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;CACN,CAAA;AAED,KAAK,KAAK,GACN,MAAM,GACN,OAAO,CAAC;IACN,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;CACd,CAAC,CAAA;AAEN,eAAO,MAAM,YAAY;eAAsC,GAAG;WAAS,KAAK;iBAM/E,CAAA;AA8HD,eAAO,MAAM,OAAO;;;eA3JP,MAAM,SAAS;2BACJ,OAAO,KAAK,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+JtC,CAAA"}
|