@tamagui/popover 1.9.22 → 1.10.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.
|
|
3
|
+
"version": "1.10.1",
|
|
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.
|
|
36
|
-
"@tamagui/animate-presence": "1.
|
|
37
|
-
"@tamagui/aria-hidden": "1.
|
|
38
|
-
"@tamagui/compose-refs": "1.
|
|
39
|
-
"@tamagui/core": "1.
|
|
40
|
-
"@tamagui/create-context": "1.
|
|
41
|
-
"@tamagui/dismissable": "1.
|
|
42
|
-
"@tamagui/floating": "1.
|
|
43
|
-
"@tamagui/focus-scope": "1.
|
|
44
|
-
"@tamagui/polyfill-dev": "1.
|
|
45
|
-
"@tamagui/popper": "1.
|
|
46
|
-
"@tamagui/portal": "1.
|
|
47
|
-
"@tamagui/remove-scroll": "1.
|
|
48
|
-
"@tamagui/scroll-view": "1.
|
|
49
|
-
"@tamagui/sheet": "1.
|
|
50
|
-
"@tamagui/stacks": "1.
|
|
51
|
-
"@tamagui/use-controllable-state": "1.
|
|
35
|
+
"@tamagui/adapt": "1.10.1",
|
|
36
|
+
"@tamagui/animate-presence": "1.10.1",
|
|
37
|
+
"@tamagui/aria-hidden": "1.10.1",
|
|
38
|
+
"@tamagui/compose-refs": "1.10.1",
|
|
39
|
+
"@tamagui/core": "1.10.1",
|
|
40
|
+
"@tamagui/create-context": "1.10.1",
|
|
41
|
+
"@tamagui/dismissable": "1.10.1",
|
|
42
|
+
"@tamagui/floating": "1.10.1",
|
|
43
|
+
"@tamagui/focus-scope": "1.10.1",
|
|
44
|
+
"@tamagui/polyfill-dev": "1.10.1",
|
|
45
|
+
"@tamagui/popper": "1.10.1",
|
|
46
|
+
"@tamagui/portal": "1.10.1",
|
|
47
|
+
"@tamagui/remove-scroll": "1.10.1",
|
|
48
|
+
"@tamagui/scroll-view": "1.10.1",
|
|
49
|
+
"@tamagui/sheet": "1.10.1",
|
|
50
|
+
"@tamagui/stacks": "1.10.1",
|
|
51
|
+
"@tamagui/use-controllable-state": "1.10.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "*",
|
|
55
55
|
"react-native": "*"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@tamagui/build": "1.
|
|
58
|
+
"@tamagui/build": "1.10.1",
|
|
59
59
|
"react": "^18.2.0",
|
|
60
60
|
"react-native": "^0.71.4"
|
|
61
61
|
},
|
package/types/Popover.d.ts
CHANGED
|
@@ -194,16 +194,52 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
194
194
|
Overlay: ({ __scopeSheet, ...props }: import("@tamagui/sheet/types/types").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<{
|
|
195
195
|
readonly fullscreen?: boolean | undefined;
|
|
196
196
|
readonly elevation?: SizeTokens | undefined;
|
|
197
|
+
} & {
|
|
198
|
+
readonly backgrounded?: boolean | undefined;
|
|
199
|
+
readonly radiused?: boolean | undefined;
|
|
200
|
+
readonly hoverTheme?: boolean | undefined;
|
|
201
|
+
readonly pressTheme?: boolean | undefined;
|
|
202
|
+
readonly focusTheme?: boolean | undefined;
|
|
203
|
+
readonly circular?: boolean | undefined;
|
|
204
|
+
readonly padded?: boolean | undefined;
|
|
205
|
+
readonly elevate?: boolean | undefined;
|
|
206
|
+
readonly bordered?: number | boolean | undefined;
|
|
207
|
+
readonly transparent?: boolean | undefined;
|
|
208
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
197
209
|
}, "closed"> & {
|
|
198
210
|
readonly closed?: boolean | undefined;
|
|
199
211
|
} & 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<{
|
|
200
212
|
readonly fullscreen?: boolean | undefined;
|
|
201
213
|
readonly elevation?: SizeTokens | undefined;
|
|
214
|
+
} & {
|
|
215
|
+
readonly backgrounded?: boolean | undefined;
|
|
216
|
+
readonly radiused?: boolean | undefined;
|
|
217
|
+
readonly hoverTheme?: boolean | undefined;
|
|
218
|
+
readonly pressTheme?: boolean | undefined;
|
|
219
|
+
readonly focusTheme?: boolean | undefined;
|
|
220
|
+
readonly circular?: boolean | undefined;
|
|
221
|
+
readonly padded?: boolean | undefined;
|
|
222
|
+
readonly elevate?: boolean | undefined;
|
|
223
|
+
readonly bordered?: number | boolean | undefined;
|
|
224
|
+
readonly transparent?: boolean | undefined;
|
|
225
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
202
226
|
}, "closed"> & {
|
|
203
227
|
readonly closed?: boolean | undefined;
|
|
204
228
|
}>> & 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<{
|
|
205
229
|
readonly fullscreen?: boolean | undefined;
|
|
206
230
|
readonly elevation?: SizeTokens | undefined;
|
|
231
|
+
} & {
|
|
232
|
+
readonly backgrounded?: boolean | undefined;
|
|
233
|
+
readonly radiused?: boolean | undefined;
|
|
234
|
+
readonly hoverTheme?: boolean | undefined;
|
|
235
|
+
readonly pressTheme?: boolean | undefined;
|
|
236
|
+
readonly focusTheme?: boolean | undefined;
|
|
237
|
+
readonly circular?: boolean | undefined;
|
|
238
|
+
readonly padded?: boolean | undefined;
|
|
239
|
+
readonly elevate?: boolean | undefined;
|
|
240
|
+
readonly bordered?: number | boolean | undefined;
|
|
241
|
+
readonly transparent?: boolean | undefined;
|
|
242
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
207
243
|
}, "closed"> & {
|
|
208
244
|
readonly closed?: boolean | undefined;
|
|
209
245
|
}>>>) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,sBAAsB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFloatingContext.d.ts","sourceRoot":"","sources":["../src/useFloatingContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAK1D,eAAO,MAAM,kBAAkB;;;;cAEnB,gBAAgB,QAuBzB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFloatingContext.native.d.ts","sourceRoot":"","sources":["../src/useFloatingContext.native.tsx"],"names":[],"mappings":"AAGA,eAAO,MAAM,kBAAkB,kBAAkC,CAAA"}
|