@tamagui/popover 1.101.0 → 1.101.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/popover",
|
|
3
|
-
"version": "1.101.
|
|
3
|
+
"version": "1.101.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -33,32 +33,31 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@floating-ui/react": "^0.26.16",
|
|
36
|
-
"@tamagui/adapt": "1.101.
|
|
37
|
-
"@tamagui/animate": "1.101.
|
|
38
|
-
"@tamagui/aria-hidden": "1.101.
|
|
39
|
-
"@tamagui/compose-refs": "1.101.
|
|
40
|
-
"@tamagui/constants": "1.101.
|
|
41
|
-
"@tamagui/core": "1.101.
|
|
42
|
-
"@tamagui/dismissable": "1.101.
|
|
43
|
-
"@tamagui/floating": "1.101.
|
|
44
|
-
"@tamagui/focus-scope": "1.101.
|
|
45
|
-
"@tamagui/helpers": "1.101.
|
|
46
|
-
"@tamagui/polyfill-dev": "1.101.
|
|
47
|
-
"@tamagui/popper": "1.101.
|
|
48
|
-
"@tamagui/portal": "1.101.
|
|
49
|
-
"@tamagui/remove-scroll": "1.101.
|
|
50
|
-
"@tamagui/scroll-view": "1.101.
|
|
51
|
-
"@tamagui/sheet": "1.101.
|
|
52
|
-
"@tamagui/stacks": "1.101.
|
|
53
|
-
"@tamagui/use-controllable-state": "1.101.
|
|
36
|
+
"@tamagui/adapt": "1.101.1",
|
|
37
|
+
"@tamagui/animate": "1.101.1",
|
|
38
|
+
"@tamagui/aria-hidden": "1.101.1",
|
|
39
|
+
"@tamagui/compose-refs": "1.101.1",
|
|
40
|
+
"@tamagui/constants": "1.101.1",
|
|
41
|
+
"@tamagui/core": "1.101.1",
|
|
42
|
+
"@tamagui/dismissable": "1.101.1",
|
|
43
|
+
"@tamagui/floating": "1.101.1",
|
|
44
|
+
"@tamagui/focus-scope": "1.101.1",
|
|
45
|
+
"@tamagui/helpers": "1.101.1",
|
|
46
|
+
"@tamagui/polyfill-dev": "1.101.1",
|
|
47
|
+
"@tamagui/popper": "1.101.1",
|
|
48
|
+
"@tamagui/portal": "1.101.1",
|
|
49
|
+
"@tamagui/remove-scroll": "1.101.1",
|
|
50
|
+
"@tamagui/scroll-view": "1.101.1",
|
|
51
|
+
"@tamagui/sheet": "1.101.1",
|
|
52
|
+
"@tamagui/stacks": "1.101.1",
|
|
53
|
+
"@tamagui/use-controllable-state": "1.101.1",
|
|
54
54
|
"react-freeze": "^1.0.3"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"react": "*"
|
|
58
|
-
"react-native": "*"
|
|
57
|
+
"react": "*"
|
|
59
58
|
},
|
|
60
59
|
"devDependencies": {
|
|
61
|
-
"@tamagui/build": "1.101.
|
|
60
|
+
"@tamagui/build": "1.101.1",
|
|
62
61
|
"react": "^18.2.0",
|
|
63
62
|
"react-native": "0.74.1"
|
|
64
63
|
},
|
package/types/Popover.d.ts
CHANGED
|
@@ -39,34 +39,34 @@ type PopoverContextValue = {
|
|
|
39
39
|
anchorTo?: Rect;
|
|
40
40
|
};
|
|
41
41
|
export declare const PopoverContext: import("@tamagui/core").StyledContext<PopoverContextValue>;
|
|
42
|
-
export declare const usePopoverContext: (scope?: string
|
|
42
|
+
export declare const usePopoverContext: (scope?: string) => PopoverContextValue;
|
|
43
43
|
export type PopoverAnchorProps = YStackProps;
|
|
44
44
|
export declare const PopoverAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "inset"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
45
45
|
elevation?: number | SizeTokens | undefined;
|
|
46
46
|
fullscreen?: boolean | undefined;
|
|
47
47
|
inset?: number | SizeTokens | {
|
|
48
|
-
top?: number
|
|
49
|
-
bottom?: number
|
|
50
|
-
left?: number
|
|
51
|
-
right?: number
|
|
48
|
+
top?: number;
|
|
49
|
+
bottom?: number;
|
|
50
|
+
left?: number;
|
|
51
|
+
right?: number;
|
|
52
52
|
} | undefined;
|
|
53
53
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
54
54
|
elevation?: number | SizeTokens | undefined;
|
|
55
55
|
fullscreen?: boolean | undefined;
|
|
56
56
|
inset?: number | SizeTokens | {
|
|
57
|
-
top?: number
|
|
58
|
-
bottom?: number
|
|
59
|
-
left?: number
|
|
60
|
-
right?: number
|
|
57
|
+
top?: number;
|
|
58
|
+
bottom?: number;
|
|
59
|
+
left?: number;
|
|
60
|
+
right?: number;
|
|
61
61
|
} | undefined;
|
|
62
62
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
63
63
|
elevation?: number | SizeTokens | undefined;
|
|
64
64
|
fullscreen?: boolean | undefined;
|
|
65
65
|
inset?: number | SizeTokens | {
|
|
66
|
-
top?: number
|
|
67
|
-
bottom?: number
|
|
68
|
-
left?: number
|
|
69
|
-
right?: number
|
|
66
|
+
top?: number;
|
|
67
|
+
bottom?: number;
|
|
68
|
+
left?: number;
|
|
69
|
+
right?: number;
|
|
70
70
|
} | undefined;
|
|
71
71
|
}>> & {
|
|
72
72
|
__scopePopover?: string | undefined;
|
|
@@ -117,28 +117,28 @@ export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<import("
|
|
|
117
117
|
elevation?: number | SizeTokens | undefined;
|
|
118
118
|
fullscreen?: boolean | undefined;
|
|
119
119
|
inset?: number | SizeTokens | {
|
|
120
|
-
top?: number
|
|
121
|
-
bottom?: number
|
|
122
|
-
left?: number
|
|
123
|
-
right?: number
|
|
120
|
+
top?: number;
|
|
121
|
+
bottom?: number;
|
|
122
|
+
left?: number;
|
|
123
|
+
right?: number;
|
|
124
124
|
} | undefined;
|
|
125
125
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
126
126
|
elevation?: number | SizeTokens | undefined;
|
|
127
127
|
fullscreen?: boolean | undefined;
|
|
128
128
|
inset?: number | SizeTokens | {
|
|
129
|
-
top?: number
|
|
130
|
-
bottom?: number
|
|
131
|
-
left?: number
|
|
132
|
-
right?: number
|
|
129
|
+
top?: number;
|
|
130
|
+
bottom?: number;
|
|
131
|
+
left?: number;
|
|
132
|
+
right?: number;
|
|
133
133
|
} | undefined;
|
|
134
134
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
135
135
|
elevation?: number | SizeTokens | undefined;
|
|
136
136
|
fullscreen?: boolean | undefined;
|
|
137
137
|
inset?: number | SizeTokens | {
|
|
138
|
-
top?: number
|
|
139
|
-
bottom?: number
|
|
140
|
-
left?: number
|
|
141
|
-
right?: number
|
|
138
|
+
top?: number;
|
|
139
|
+
bottom?: number;
|
|
140
|
+
left?: number;
|
|
141
|
+
right?: number;
|
|
142
142
|
} | undefined;
|
|
143
143
|
}>> & {
|
|
144
144
|
__scopePopover?: string | undefined;
|
|
@@ -148,20 +148,20 @@ export declare const PopoverArrow: import("@tamagui/core").TamaguiComponent<Omit
|
|
|
148
148
|
elevation?: number | SizeTokens | undefined;
|
|
149
149
|
fullscreen?: boolean | undefined;
|
|
150
150
|
inset?: number | SizeTokens | {
|
|
151
|
-
top?: number
|
|
152
|
-
bottom?: number
|
|
153
|
-
left?: number
|
|
154
|
-
right?: number
|
|
151
|
+
top?: number;
|
|
152
|
+
bottom?: number;
|
|
153
|
+
left?: number;
|
|
154
|
+
right?: number;
|
|
155
155
|
} | undefined;
|
|
156
156
|
unstyled?: boolean | undefined;
|
|
157
157
|
}>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, keyof PopperArrowExtraProps> & PopperArrowExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
158
158
|
elevation?: number | SizeTokens | undefined;
|
|
159
159
|
fullscreen?: boolean | undefined;
|
|
160
160
|
inset?: number | SizeTokens | {
|
|
161
|
-
top?: number
|
|
162
|
-
bottom?: number
|
|
163
|
-
left?: number
|
|
164
|
-
right?: number
|
|
161
|
+
top?: number;
|
|
162
|
+
bottom?: number;
|
|
163
|
+
left?: number;
|
|
164
|
+
right?: number;
|
|
165
165
|
} | undefined;
|
|
166
166
|
unstyled?: boolean | undefined;
|
|
167
167
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
@@ -179,18 +179,18 @@ export type Popover = {
|
|
|
179
179
|
setOpen: (open: boolean) => void;
|
|
180
180
|
};
|
|
181
181
|
export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
182
|
-
open?: boolean
|
|
183
|
-
defaultOpen?: boolean
|
|
184
|
-
onOpenChange?: (
|
|
185
|
-
keepChildrenMounted?: boolean
|
|
182
|
+
open?: boolean;
|
|
183
|
+
defaultOpen?: boolean;
|
|
184
|
+
onOpenChange?: (open: boolean, via?: "hover" | "press") => void;
|
|
185
|
+
keepChildrenMounted?: boolean;
|
|
186
186
|
/**
|
|
187
187
|
* Enable staying open while mouseover
|
|
188
188
|
*/
|
|
189
|
-
hoverable?: boolean | UseHoverProps
|
|
189
|
+
hoverable?: boolean | UseHoverProps;
|
|
190
190
|
/**
|
|
191
191
|
* Disable focusing behavior on open
|
|
192
192
|
*/
|
|
193
|
-
disableFocus?: boolean
|
|
193
|
+
disableFocus?: boolean;
|
|
194
194
|
} & {
|
|
195
195
|
__scopePopover?: string | undefined;
|
|
196
196
|
} & React.RefAttributes<Popover>> & {
|
|
@@ -198,28 +198,28 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
198
198
|
elevation?: number | SizeTokens | undefined;
|
|
199
199
|
fullscreen?: boolean | undefined;
|
|
200
200
|
inset?: number | SizeTokens | {
|
|
201
|
-
top?: number
|
|
202
|
-
bottom?: number
|
|
203
|
-
left?: number
|
|
204
|
-
right?: number
|
|
201
|
+
top?: number;
|
|
202
|
+
bottom?: number;
|
|
203
|
+
left?: number;
|
|
204
|
+
right?: number;
|
|
205
205
|
} | undefined;
|
|
206
206
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
207
207
|
elevation?: number | SizeTokens | undefined;
|
|
208
208
|
fullscreen?: boolean | undefined;
|
|
209
209
|
inset?: number | SizeTokens | {
|
|
210
|
-
top?: number
|
|
211
|
-
bottom?: number
|
|
212
|
-
left?: number
|
|
213
|
-
right?: number
|
|
210
|
+
top?: number;
|
|
211
|
+
bottom?: number;
|
|
212
|
+
left?: number;
|
|
213
|
+
right?: number;
|
|
214
214
|
} | undefined;
|
|
215
215
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
216
216
|
elevation?: number | SizeTokens | undefined;
|
|
217
217
|
fullscreen?: boolean | undefined;
|
|
218
218
|
inset?: number | SizeTokens | {
|
|
219
|
-
top?: number
|
|
220
|
-
bottom?: number
|
|
221
|
-
left?: number
|
|
222
|
-
right?: number
|
|
219
|
+
top?: number;
|
|
220
|
+
bottom?: number;
|
|
221
|
+
left?: number;
|
|
222
|
+
right?: number;
|
|
223
223
|
} | undefined;
|
|
224
224
|
}>> & {
|
|
225
225
|
__scopePopover?: string | undefined;
|
|
@@ -228,20 +228,20 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
228
228
|
elevation?: number | SizeTokens | undefined;
|
|
229
229
|
fullscreen?: boolean | undefined;
|
|
230
230
|
inset?: number | SizeTokens | {
|
|
231
|
-
top?: number
|
|
232
|
-
bottom?: number
|
|
233
|
-
left?: number
|
|
234
|
-
right?: number
|
|
231
|
+
top?: number;
|
|
232
|
+
bottom?: number;
|
|
233
|
+
left?: number;
|
|
234
|
+
right?: number;
|
|
235
235
|
} | undefined;
|
|
236
236
|
unstyled?: boolean | undefined;
|
|
237
237
|
}>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, keyof PopperArrowExtraProps> & PopperArrowExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
238
238
|
elevation?: number | SizeTokens | undefined;
|
|
239
239
|
fullscreen?: boolean | undefined;
|
|
240
240
|
inset?: number | SizeTokens | {
|
|
241
|
-
top?: number
|
|
242
|
-
bottom?: number
|
|
243
|
-
left?: number
|
|
244
|
-
right?: number
|
|
241
|
+
top?: number;
|
|
242
|
+
bottom?: number;
|
|
243
|
+
left?: number;
|
|
244
|
+
right?: number;
|
|
245
245
|
} | undefined;
|
|
246
246
|
unstyled?: boolean | undefined;
|
|
247
247
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
@@ -255,70 +255,70 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
255
255
|
elevation?: number | SizeTokens | undefined;
|
|
256
256
|
fullscreen?: boolean | undefined;
|
|
257
257
|
inset?: number | SizeTokens | {
|
|
258
|
-
top?: number
|
|
259
|
-
bottom?: number
|
|
260
|
-
left?: number
|
|
261
|
-
right?: number
|
|
258
|
+
top?: number;
|
|
259
|
+
bottom?: number;
|
|
260
|
+
left?: number;
|
|
261
|
+
right?: number;
|
|
262
262
|
} | undefined;
|
|
263
263
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
264
264
|
elevation?: number | SizeTokens | undefined;
|
|
265
265
|
fullscreen?: boolean | undefined;
|
|
266
266
|
inset?: number | SizeTokens | {
|
|
267
|
-
top?: number
|
|
268
|
-
bottom?: number
|
|
269
|
-
left?: number
|
|
270
|
-
right?: number
|
|
267
|
+
top?: number;
|
|
268
|
+
bottom?: number;
|
|
269
|
+
left?: number;
|
|
270
|
+
right?: number;
|
|
271
271
|
} | undefined;
|
|
272
272
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
273
273
|
elevation?: number | SizeTokens | undefined;
|
|
274
274
|
fullscreen?: boolean | undefined;
|
|
275
275
|
inset?: number | SizeTokens | {
|
|
276
|
-
top?: number
|
|
277
|
-
bottom?: number
|
|
278
|
-
left?: number
|
|
279
|
-
right?: number
|
|
276
|
+
top?: number;
|
|
277
|
+
bottom?: number;
|
|
278
|
+
left?: number;
|
|
279
|
+
right?: number;
|
|
280
280
|
} | undefined;
|
|
281
281
|
}>> & {
|
|
282
282
|
__scopePopover?: string | undefined;
|
|
283
283
|
} & React.RefAttributes<TamaguiElement>>;
|
|
284
284
|
Adapt: (({ platform, when, children }: import("@tamagui/adapt").AdaptProps) => any) & {
|
|
285
285
|
Contents: {
|
|
286
|
-
(props: any):
|
|
286
|
+
(props: any): import("react").FunctionComponentElement<any>;
|
|
287
287
|
shouldForwardSpace: boolean;
|
|
288
288
|
};
|
|
289
289
|
};
|
|
290
290
|
ScrollView: typeof ScrollView;
|
|
291
291
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
292
|
-
Frame:
|
|
293
|
-
elevation?: number | SizeTokens | undefined;
|
|
292
|
+
Frame: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
293
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
294
294
|
fullscreen?: boolean | undefined;
|
|
295
|
-
inset?: number | SizeTokens | {
|
|
296
|
-
top?: number
|
|
297
|
-
bottom?: number
|
|
298
|
-
left?: number
|
|
299
|
-
right?: number
|
|
295
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
296
|
+
top?: number;
|
|
297
|
+
bottom?: number;
|
|
298
|
+
left?: number;
|
|
299
|
+
right?: number;
|
|
300
300
|
} | undefined;
|
|
301
301
|
unstyled?: boolean | undefined;
|
|
302
|
-
}>,
|
|
303
|
-
disableHideBottomOverflow?: boolean
|
|
304
|
-
adjustPaddingForOffscreenContent?: boolean
|
|
302
|
+
}>, keyof {
|
|
303
|
+
disableHideBottomOverflow?: boolean;
|
|
304
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
305
|
+
}> & {
|
|
306
|
+
disableHideBottomOverflow?: boolean;
|
|
307
|
+
adjustPaddingForOffscreenContent?: boolean;
|
|
305
308
|
} & {
|
|
306
309
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
307
|
-
} &
|
|
308
|
-
Overlay:
|
|
309
|
-
elevation?: number | SizeTokens | undefined;
|
|
310
|
+
} & import("react").RefAttributes<unknown>>;
|
|
311
|
+
Overlay: import("react").MemoExoticComponent<(propsIn: import("@tamagui/sheet/types/types").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
312
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
310
313
|
fullscreen?: boolean | undefined;
|
|
311
|
-
inset?: number | SizeTokens | {
|
|
312
|
-
top?: number
|
|
313
|
-
bottom?: number
|
|
314
|
-
left?: number
|
|
315
|
-
right?: number
|
|
314
|
+
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
315
|
+
top?: number;
|
|
316
|
+
bottom?: number;
|
|
317
|
+
left?: number;
|
|
318
|
+
right?: number;
|
|
316
319
|
} | undefined;
|
|
317
320
|
open?: boolean | undefined;
|
|
318
321
|
transparent?: boolean | undefined;
|
|
319
|
-
/**
|
|
320
|
-
* @see https://github.com/theKashey/react-remove-scroll#usage
|
|
321
|
-
*/
|
|
322
322
|
circular?: boolean | undefined;
|
|
323
323
|
unstyled?: boolean | undefined;
|
|
324
324
|
backgrounded?: boolean | undefined;
|
|
@@ -331,20 +331,20 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
331
331
|
padded?: boolean | undefined;
|
|
332
332
|
chromeless?: boolean | "all" | undefined;
|
|
333
333
|
}>>) => null>;
|
|
334
|
-
Handle:
|
|
335
|
-
open?: boolean
|
|
336
|
-
} &
|
|
337
|
-
open?: boolean
|
|
334
|
+
Handle: import("react").ForwardRefExoticComponent<import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {}>> & {
|
|
335
|
+
open?: boolean;
|
|
336
|
+
} & import("react").RefAttributes<any>> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {}>> & {
|
|
337
|
+
open?: boolean;
|
|
338
338
|
}, any, any, any, {
|
|
339
|
-
open?: boolean
|
|
339
|
+
open?: boolean;
|
|
340
340
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
341
341
|
__tama: [import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {}>> & {
|
|
342
|
-
open?: boolean
|
|
342
|
+
open?: boolean;
|
|
343
343
|
}, any, any, any, {
|
|
344
|
-
open?: boolean
|
|
344
|
+
open?: boolean;
|
|
345
345
|
}, {}];
|
|
346
346
|
};
|
|
347
|
-
ScrollView:
|
|
347
|
+
ScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "contentContainerStyle"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
348
348
|
readonly contentContainerStyle?: Partial<import("@tamagui/core").GetFinalProps<import("react-native").ScrollViewProps, import("@tamagui/core").StackStyleBase, {}>> | undefined;
|
|
349
349
|
}> & {
|
|
350
350
|
fullscreen?: boolean | undefined;
|
|
@@ -360,7 +360,7 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
360
360
|
readonly contentContainerStyle?: Partial<import("@tamagui/core").GetFinalProps<import("react-native").ScrollViewProps, import("@tamagui/core").StackStyleBase, {}>> | undefined;
|
|
361
361
|
}, {
|
|
362
362
|
fullscreen?: boolean | undefined;
|
|
363
|
-
}>> &
|
|
363
|
+
}>> & import("react").RefAttributes<import("react-native").ScrollView>>;
|
|
364
364
|
};
|
|
365
365
|
};
|
|
366
366
|
export {};
|
package/types/Popover.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAA;AAE9B,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAOvD,OAAO,KAAK,EAGV,UAAU,EACV,UAAU,EACV,cAAc,EACf,MAAM,eAAe,CAAA;AAYtB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAE5D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAG3D,OAAO,KAAK,EACV,qBAAqB,EACrB,gBAAgB,EAChB,kBAAkB,EAClB,WAAW,EACZ,MAAM,iBAAiB,CAAA;AAWxB,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAG/D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAGlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAY,UAAU,EAAE,MAAM,cAAc,CAAA;AAMnD,MAAM,MAAM,YAAY,GAAG,WAAW,GAAG;IACvC,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,OAAO,EAAE,GAAG,CAAC,EAAE,OAAO,GAAG,OAAO,KAAK,IAAI,CAAA;IAC/D,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAE7B;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,GAAG,aAAa,CAAA;IAEnC;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAID,KAAK,mBAAmB,GAAG;IACzB,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,EAAE,OAAO,CAAA;IACb,YAAY,CAAC,IAAI,EAAE,OAAO,EAAE,GAAG,EAAE,OAAO,GAAG,OAAO,GAAG,IAAI,CAAA;IACzD,YAAY,IAAI,IAAI,CAAA;IACpB,eAAe,EAAE,OAAO,CAAA;IACxB,iBAAiB,IAAI,IAAI,CAAA;IACzB,oBAAoB,IAAI,IAAI,CAAA;IAC5B,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,eAAe,EAAE,GAAG,CAAA;IACpB,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,QAAQ,CAAC,EAAE,IAAI,CAAA;CAChB,CAAA;AAID,eAAO,MAAM,cAAc,4DAAsD,CAAA;AAEjF,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"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"}
|