@tamagui/popover 1.29.0 → 1.29.2
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 +19 -19
- package/types/Popover.d.ts +90 -9
- package/types/Popover.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/popover",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.2",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,30 +32,30 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@floating-ui/react": "^0.19.1",
|
|
35
|
-
"@tamagui/adapt": "1.29.
|
|
36
|
-
"@tamagui/animate-presence": "1.29.
|
|
37
|
-
"@tamagui/aria-hidden": "1.29.
|
|
38
|
-
"@tamagui/compose-refs": "1.29.
|
|
39
|
-
"@tamagui/core": "1.29.
|
|
40
|
-
"@tamagui/create-context": "1.29.
|
|
41
|
-
"@tamagui/dismissable": "1.29.
|
|
42
|
-
"@tamagui/floating": "1.29.
|
|
43
|
-
"@tamagui/focus-scope": "1.29.
|
|
44
|
-
"@tamagui/polyfill-dev": "1.29.
|
|
45
|
-
"@tamagui/popper": "1.29.
|
|
46
|
-
"@tamagui/portal": "1.29.
|
|
47
|
-
"@tamagui/remove-scroll": "1.29.
|
|
48
|
-
"@tamagui/scroll-view": "1.29.
|
|
49
|
-
"@tamagui/sheet": "1.29.
|
|
50
|
-
"@tamagui/stacks": "1.29.
|
|
51
|
-
"@tamagui/use-controllable-state": "1.29.
|
|
35
|
+
"@tamagui/adapt": "1.29.2",
|
|
36
|
+
"@tamagui/animate-presence": "1.29.2",
|
|
37
|
+
"@tamagui/aria-hidden": "1.29.2",
|
|
38
|
+
"@tamagui/compose-refs": "1.29.2",
|
|
39
|
+
"@tamagui/core": "1.29.2",
|
|
40
|
+
"@tamagui/create-context": "1.29.2",
|
|
41
|
+
"@tamagui/dismissable": "1.29.2",
|
|
42
|
+
"@tamagui/floating": "1.29.2",
|
|
43
|
+
"@tamagui/focus-scope": "1.29.2",
|
|
44
|
+
"@tamagui/polyfill-dev": "1.29.2",
|
|
45
|
+
"@tamagui/popper": "1.29.2",
|
|
46
|
+
"@tamagui/portal": "1.29.2",
|
|
47
|
+
"@tamagui/remove-scroll": "1.29.2",
|
|
48
|
+
"@tamagui/scroll-view": "1.29.2",
|
|
49
|
+
"@tamagui/sheet": "1.29.2",
|
|
50
|
+
"@tamagui/stacks": "1.29.2",
|
|
51
|
+
"@tamagui/use-controllable-state": "1.29.2"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "*",
|
|
55
55
|
"react-native": "*"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@tamagui/build": "1.29.
|
|
58
|
+
"@tamagui/build": "1.29.2",
|
|
59
59
|
"react": "^18.2.0",
|
|
60
60
|
"react-native": "^0.71.7"
|
|
61
61
|
},
|
package/types/Popover.d.ts
CHANGED
|
@@ -270,19 +270,100 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
270
270
|
};
|
|
271
271
|
ScrollView: React.ForwardRefExoticComponent<ScrollViewProps & React.RefAttributes<ScrollView>>;
|
|
272
272
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<View>> & {
|
|
273
|
-
Frame: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core
|
|
274
|
-
|
|
275
|
-
|
|
273
|
+
Frame: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
274
|
+
readonly fullscreen?: boolean | undefined;
|
|
275
|
+
readonly elevation?: SizeTokens | undefined;
|
|
276
|
+
}, "unstyled"> & {
|
|
277
|
+
readonly unstyled?: boolean | undefined;
|
|
278
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
279
|
+
readonly fullscreen?: boolean | undefined;
|
|
280
|
+
readonly elevation?: SizeTokens | undefined;
|
|
281
|
+
}, "unstyled"> & {
|
|
282
|
+
readonly unstyled?: boolean | undefined;
|
|
283
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
284
|
+
readonly fullscreen?: boolean | undefined;
|
|
285
|
+
readonly elevation?: SizeTokens | undefined;
|
|
286
|
+
}, "unstyled"> & {
|
|
287
|
+
readonly unstyled?: boolean | undefined;
|
|
288
|
+
}>> & {
|
|
276
289
|
disableHideBottomOverflow?: boolean | undefined;
|
|
277
290
|
} & {
|
|
278
291
|
__scopeSheet?: Scope<any>;
|
|
279
292
|
} & React.RefAttributes<unknown>>;
|
|
280
|
-
Overlay: (propsIn: import("@tamagui/sheet").SheetScopedProps<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
293
|
+
Overlay: (propsIn: import("@tamagui/sheet").SheetScopedProps<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
294
|
+
readonly fullscreen?: boolean | undefined;
|
|
295
|
+
readonly elevation?: SizeTokens | undefined;
|
|
296
|
+
} & {
|
|
297
|
+
readonly backgrounded?: boolean | undefined;
|
|
298
|
+
readonly radiused?: boolean | undefined;
|
|
299
|
+
readonly hoverTheme?: boolean | undefined;
|
|
300
|
+
readonly pressTheme?: boolean | undefined;
|
|
301
|
+
readonly focusTheme?: boolean | undefined;
|
|
302
|
+
readonly circular?: boolean | undefined;
|
|
303
|
+
readonly padded?: boolean | undefined;
|
|
304
|
+
readonly elevate?: boolean | undefined;
|
|
305
|
+
readonly bordered?: number | boolean | undefined;
|
|
306
|
+
readonly transparent?: boolean | undefined;
|
|
307
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
308
|
+
}, "open" | "unstyled"> & {
|
|
309
|
+
readonly open?: boolean | undefined;
|
|
310
|
+
readonly unstyled?: boolean | undefined;
|
|
311
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
312
|
+
readonly fullscreen?: boolean | undefined;
|
|
313
|
+
readonly elevation?: SizeTokens | undefined;
|
|
314
|
+
} & {
|
|
315
|
+
readonly backgrounded?: boolean | undefined;
|
|
316
|
+
readonly radiused?: boolean | undefined;
|
|
317
|
+
readonly hoverTheme?: boolean | undefined;
|
|
318
|
+
readonly pressTheme?: boolean | undefined;
|
|
319
|
+
readonly focusTheme?: boolean | undefined;
|
|
320
|
+
readonly circular?: boolean | undefined;
|
|
321
|
+
readonly padded?: boolean | undefined;
|
|
322
|
+
readonly elevate?: boolean | undefined;
|
|
323
|
+
readonly bordered?: number | boolean | undefined;
|
|
324
|
+
readonly transparent?: boolean | undefined;
|
|
325
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
326
|
+
}, "open" | "unstyled"> & {
|
|
327
|
+
readonly open?: boolean | undefined;
|
|
328
|
+
readonly unstyled?: boolean | undefined;
|
|
329
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
330
|
+
readonly fullscreen?: boolean | undefined;
|
|
331
|
+
readonly elevation?: SizeTokens | undefined;
|
|
332
|
+
} & {
|
|
333
|
+
readonly backgrounded?: boolean | undefined;
|
|
334
|
+
readonly radiused?: boolean | undefined;
|
|
335
|
+
readonly hoverTheme?: boolean | undefined;
|
|
336
|
+
readonly pressTheme?: boolean | undefined;
|
|
337
|
+
readonly focusTheme?: boolean | undefined;
|
|
338
|
+
readonly circular?: boolean | undefined;
|
|
339
|
+
readonly padded?: boolean | undefined;
|
|
340
|
+
readonly elevate?: boolean | undefined;
|
|
341
|
+
readonly bordered?: number | boolean | undefined;
|
|
342
|
+
readonly transparent?: boolean | undefined;
|
|
343
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
344
|
+
}, "open" | "unstyled"> & {
|
|
345
|
+
readonly open?: boolean | undefined;
|
|
346
|
+
readonly unstyled?: boolean | undefined;
|
|
347
|
+
}>>>) => null;
|
|
348
|
+
Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
349
|
+
readonly fullscreen?: boolean | undefined;
|
|
350
|
+
readonly elevation?: SizeTokens | undefined;
|
|
351
|
+
}, "open" | "unstyled"> & {
|
|
352
|
+
readonly open?: boolean | undefined;
|
|
353
|
+
readonly unstyled?: boolean | undefined;
|
|
354
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
355
|
+
readonly fullscreen?: boolean | undefined;
|
|
356
|
+
readonly elevation?: SizeTokens | undefined;
|
|
357
|
+
}, "open" | "unstyled"> & {
|
|
358
|
+
readonly open?: boolean | undefined;
|
|
359
|
+
readonly unstyled?: boolean | undefined;
|
|
360
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
361
|
+
readonly fullscreen?: boolean | undefined;
|
|
362
|
+
readonly elevation?: SizeTokens | undefined;
|
|
363
|
+
}, "open" | "unstyled"> & {
|
|
364
|
+
readonly open?: boolean | undefined;
|
|
365
|
+
readonly unstyled?: boolean | undefined;
|
|
366
|
+
}>>>) => JSX.Element | null;
|
|
286
367
|
ScrollView: React.ForwardRefExoticComponent<ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
287
368
|
readonly fullscreen?: boolean | undefined;
|
|
288
369
|
} & import("@tamagui/core").MediaProps<Partial<ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
package/types/Popover.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"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"}
|