@tamagui/popover 1.88.3 → 1.88.5
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 +20 -20
- package/types/Popover.d.ts +64 -66
- 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.88.
|
|
3
|
+
"version": "1.88.5",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -33,24 +33,24 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@floating-ui/react": "^0.24.7",
|
|
36
|
-
"@tamagui/adapt": "1.88.
|
|
37
|
-
"@tamagui/animate": "1.88.
|
|
38
|
-
"@tamagui/aria-hidden": "1.88.
|
|
39
|
-
"@tamagui/compose-refs": "1.88.
|
|
40
|
-
"@tamagui/constants": "1.88.
|
|
41
|
-
"@tamagui/core": "1.88.
|
|
42
|
-
"@tamagui/dismissable": "1.88.
|
|
43
|
-
"@tamagui/floating": "1.88.
|
|
44
|
-
"@tamagui/focus-scope": "1.88.
|
|
45
|
-
"@tamagui/helpers": "1.88.
|
|
46
|
-
"@tamagui/polyfill-dev": "1.88.
|
|
47
|
-
"@tamagui/popper": "1.88.
|
|
48
|
-
"@tamagui/portal": "1.88.
|
|
49
|
-
"@tamagui/remove-scroll": "1.88.
|
|
50
|
-
"@tamagui/scroll-view": "1.88.
|
|
51
|
-
"@tamagui/sheet": "1.88.
|
|
52
|
-
"@tamagui/stacks": "1.88.
|
|
53
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
36
|
+
"@tamagui/adapt": "1.88.5",
|
|
37
|
+
"@tamagui/animate": "1.88.5",
|
|
38
|
+
"@tamagui/aria-hidden": "1.88.5",
|
|
39
|
+
"@tamagui/compose-refs": "1.88.5",
|
|
40
|
+
"@tamagui/constants": "1.88.5",
|
|
41
|
+
"@tamagui/core": "1.88.5",
|
|
42
|
+
"@tamagui/dismissable": "1.88.5",
|
|
43
|
+
"@tamagui/floating": "1.88.5",
|
|
44
|
+
"@tamagui/focus-scope": "1.88.5",
|
|
45
|
+
"@tamagui/helpers": "1.88.5",
|
|
46
|
+
"@tamagui/polyfill-dev": "1.88.5",
|
|
47
|
+
"@tamagui/popper": "1.88.5",
|
|
48
|
+
"@tamagui/portal": "1.88.5",
|
|
49
|
+
"@tamagui/remove-scroll": "1.88.5",
|
|
50
|
+
"@tamagui/scroll-view": "1.88.5",
|
|
51
|
+
"@tamagui/sheet": "1.88.5",
|
|
52
|
+
"@tamagui/stacks": "1.88.5",
|
|
53
|
+
"@tamagui/use-controllable-state": "1.88.5",
|
|
54
54
|
"react-freeze": "^1.0.3"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"react-native": "*"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@tamagui/build": "1.88.
|
|
61
|
+
"@tamagui/build": "1.88.5",
|
|
62
62
|
"react": "^18.2.0",
|
|
63
63
|
"react-native": "^0.72.6"
|
|
64
64
|
},
|
package/types/Popover.d.ts
CHANGED
|
@@ -41,26 +41,26 @@ type PopoverContextValue = {
|
|
|
41
41
|
export declare const PopoverContext: import("@tamagui/core").StyledContext<PopoverContextValue>;
|
|
42
42
|
export declare const usePopoverContext: (scope?: string | undefined) => PopoverContextValue;
|
|
43
43
|
export type PopoverAnchorProps = YStackProps;
|
|
44
|
-
export declare const PopoverAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
44
|
+
export declare const PopoverAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
45
45
|
elevation?: number | SizeTokens | undefined;
|
|
46
46
|
fullscreen?: boolean | undefined;
|
|
47
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
47
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
48
48
|
elevation?: number | SizeTokens | undefined;
|
|
49
49
|
fullscreen?: boolean | undefined;
|
|
50
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
50
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
51
51
|
elevation?: number | SizeTokens | undefined;
|
|
52
52
|
fullscreen?: boolean | undefined;
|
|
53
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
53
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
54
54
|
elevation?: number | SizeTokens | undefined;
|
|
55
55
|
fullscreen?: boolean | undefined;
|
|
56
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
56
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
57
57
|
elevation?: number | SizeTokens | undefined;
|
|
58
58
|
fullscreen?: boolean | undefined;
|
|
59
59
|
}>> & {
|
|
60
60
|
__scopePopover?: string | undefined;
|
|
61
61
|
} & React.RefAttributes<TamaguiElement>>;
|
|
62
62
|
export type PopoverTriggerProps = StackProps;
|
|
63
|
-
export declare const PopoverTrigger: React.ForwardRefExoticComponent<import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
63
|
+
export declare const PopoverTrigger: 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>> & {
|
|
64
64
|
__scopePopover?: string | undefined;
|
|
65
65
|
} & React.RefAttributes<TamaguiElement>>;
|
|
66
66
|
export type PopoverContentProps = PopoverContentTypeProps;
|
|
@@ -100,48 +100,48 @@ export interface PopoverContentImplProps extends PopperContentProps, Omit<Dismis
|
|
|
100
100
|
freezeContentsWhenHidden?: boolean;
|
|
101
101
|
}
|
|
102
102
|
export type PopoverCloseProps = YStackProps;
|
|
103
|
-
export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
103
|
+
export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
104
104
|
elevation?: number | SizeTokens | undefined;
|
|
105
105
|
fullscreen?: boolean | undefined;
|
|
106
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
106
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
107
107
|
elevation?: number | SizeTokens | undefined;
|
|
108
108
|
fullscreen?: boolean | undefined;
|
|
109
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
109
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
110
110
|
elevation?: number | SizeTokens | undefined;
|
|
111
111
|
fullscreen?: boolean | undefined;
|
|
112
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
112
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
113
113
|
elevation?: number | SizeTokens | undefined;
|
|
114
114
|
fullscreen?: boolean | undefined;
|
|
115
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
115
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
116
116
|
elevation?: number | SizeTokens | undefined;
|
|
117
117
|
fullscreen?: boolean | undefined;
|
|
118
118
|
}>> & {
|
|
119
119
|
__scopePopover?: string | undefined;
|
|
120
120
|
} & React.RefAttributes<TamaguiElement>>;
|
|
121
121
|
export type PopoverArrowProps = PopperArrowProps;
|
|
122
|
-
export declare const PopoverArrow: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
122
|
+
export declare const PopoverArrow: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
123
123
|
elevation?: number | SizeTokens | undefined;
|
|
124
124
|
fullscreen?: boolean | undefined;
|
|
125
125
|
unstyled?: boolean | undefined;
|
|
126
|
-
}>, "size" | `$${string}` | `$${number}` | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").
|
|
126
|
+
}>, "size" | `$${string}` | `$${number}` | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | `$theme-${string}` | `$theme-${number}` | "__scopePopper" | "offset" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
127
127
|
elevation?: number | SizeTokens | undefined;
|
|
128
128
|
fullscreen?: boolean | undefined;
|
|
129
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
129
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
130
130
|
elevation?: number | SizeTokens | undefined;
|
|
131
131
|
fullscreen?: boolean | undefined;
|
|
132
|
-
}>>>> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
132
|
+
}>>>> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
133
133
|
elevation?: number | SizeTokens | undefined;
|
|
134
134
|
fullscreen?: boolean | undefined;
|
|
135
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
135
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
136
136
|
elevation?: number | SizeTokens | undefined;
|
|
137
137
|
fullscreen?: boolean | undefined;
|
|
138
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
138
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
139
139
|
elevation?: number | SizeTokens | undefined;
|
|
140
140
|
fullscreen?: boolean | undefined;
|
|
141
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
141
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
142
142
|
elevation?: number | SizeTokens | undefined;
|
|
143
143
|
fullscreen?: boolean | undefined;
|
|
144
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
144
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
145
145
|
elevation?: number | SizeTokens | undefined;
|
|
146
146
|
fullscreen?: boolean | undefined;
|
|
147
147
|
}>> & {
|
|
@@ -149,19 +149,19 @@ export declare const PopoverArrow: import("@tamagui/core").TamaguiComponent<Omit
|
|
|
149
149
|
size?: SizeTokens | undefined;
|
|
150
150
|
} & {
|
|
151
151
|
__scopePopper?: string | undefined;
|
|
152
|
-
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
152
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
153
153
|
elevation?: number | SizeTokens | undefined;
|
|
154
154
|
fullscreen?: boolean | undefined;
|
|
155
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
155
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
156
156
|
elevation?: number | SizeTokens | undefined;
|
|
157
157
|
fullscreen?: boolean | undefined;
|
|
158
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
158
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
159
159
|
elevation?: number | SizeTokens | undefined;
|
|
160
160
|
fullscreen?: boolean | undefined;
|
|
161
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
161
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
162
162
|
elevation?: number | SizeTokens | undefined;
|
|
163
163
|
fullscreen?: boolean | undefined;
|
|
164
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
164
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
165
165
|
elevation?: number | SizeTokens | undefined;
|
|
166
166
|
fullscreen?: boolean | undefined;
|
|
167
167
|
}>> & {
|
|
@@ -169,7 +169,7 @@ export declare const PopoverArrow: import("@tamagui/core").TamaguiComponent<Omit
|
|
|
169
169
|
size?: SizeTokens | undefined;
|
|
170
170
|
} & {
|
|
171
171
|
__scopePopper?: string | undefined;
|
|
172
|
-
} & void, import("@tamagui/core").
|
|
172
|
+
} & void, import("@tamagui/core").StackStyleBase, {
|
|
173
173
|
elevation?: number | SizeTokens | undefined;
|
|
174
174
|
fullscreen?: boolean | undefined;
|
|
175
175
|
unstyled?: boolean | undefined;
|
|
@@ -199,47 +199,47 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
199
199
|
} & {
|
|
200
200
|
__scopePopover?: string | undefined;
|
|
201
201
|
} & React.RefAttributes<PopoverRef>> & {
|
|
202
|
-
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
202
|
+
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
203
203
|
elevation?: number | SizeTokens | undefined;
|
|
204
204
|
fullscreen?: boolean | undefined;
|
|
205
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
205
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
206
206
|
elevation?: number | SizeTokens | undefined;
|
|
207
207
|
fullscreen?: boolean | undefined;
|
|
208
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
208
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
209
209
|
elevation?: number | SizeTokens | undefined;
|
|
210
210
|
fullscreen?: boolean | undefined;
|
|
211
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
211
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
212
212
|
elevation?: number | SizeTokens | undefined;
|
|
213
213
|
fullscreen?: boolean | undefined;
|
|
214
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
214
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
215
215
|
elevation?: number | SizeTokens | undefined;
|
|
216
216
|
fullscreen?: boolean | undefined;
|
|
217
217
|
}>> & {
|
|
218
218
|
__scopePopover?: string | undefined;
|
|
219
219
|
} & React.RefAttributes<TamaguiElement>>;
|
|
220
|
-
Arrow: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
220
|
+
Arrow: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
221
221
|
elevation?: number | SizeTokens | undefined;
|
|
222
222
|
fullscreen?: boolean | undefined;
|
|
223
223
|
unstyled?: boolean | undefined;
|
|
224
|
-
}>, "size" | `$${string}` | `$${number}` | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").
|
|
224
|
+
}>, "size" | `$${string}` | `$${number}` | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | `$theme-${string}` | `$theme-${number}` | "__scopePopper" | "offset" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
225
225
|
elevation?: number | SizeTokens | undefined;
|
|
226
226
|
fullscreen?: boolean | undefined;
|
|
227
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
227
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
228
228
|
elevation?: number | SizeTokens | undefined;
|
|
229
229
|
fullscreen?: boolean | undefined;
|
|
230
|
-
}>>>> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
230
|
+
}>>>> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
231
231
|
elevation?: number | SizeTokens | undefined;
|
|
232
232
|
fullscreen?: boolean | undefined;
|
|
233
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
233
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
234
234
|
elevation?: number | SizeTokens | undefined;
|
|
235
235
|
fullscreen?: boolean | undefined;
|
|
236
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
236
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
237
237
|
elevation?: number | SizeTokens | undefined;
|
|
238
238
|
fullscreen?: boolean | undefined;
|
|
239
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
239
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
240
240
|
elevation?: number | SizeTokens | undefined;
|
|
241
241
|
fullscreen?: boolean | undefined;
|
|
242
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
242
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
243
243
|
elevation?: number | SizeTokens | undefined;
|
|
244
244
|
fullscreen?: boolean | undefined;
|
|
245
245
|
}>> & {
|
|
@@ -247,19 +247,19 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
247
247
|
size?: SizeTokens | undefined;
|
|
248
248
|
} & {
|
|
249
249
|
__scopePopper?: string | undefined;
|
|
250
|
-
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
250
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
251
251
|
elevation?: number | SizeTokens | undefined;
|
|
252
252
|
fullscreen?: boolean | undefined;
|
|
253
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
253
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
254
254
|
elevation?: number | SizeTokens | undefined;
|
|
255
255
|
fullscreen?: boolean | undefined;
|
|
256
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
256
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
257
257
|
elevation?: number | SizeTokens | undefined;
|
|
258
258
|
fullscreen?: boolean | undefined;
|
|
259
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
259
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
260
260
|
elevation?: number | SizeTokens | undefined;
|
|
261
261
|
fullscreen?: boolean | undefined;
|
|
262
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
262
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
263
263
|
elevation?: number | SizeTokens | undefined;
|
|
264
264
|
fullscreen?: boolean | undefined;
|
|
265
265
|
}>> & {
|
|
@@ -267,30 +267,30 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
267
267
|
size?: SizeTokens | undefined;
|
|
268
268
|
} & {
|
|
269
269
|
__scopePopper?: string | undefined;
|
|
270
|
-
} & void, import("@tamagui/core").
|
|
270
|
+
} & void, import("@tamagui/core").StackStyleBase, {
|
|
271
271
|
elevation?: number | SizeTokens | undefined;
|
|
272
272
|
fullscreen?: boolean | undefined;
|
|
273
273
|
unstyled?: boolean | undefined;
|
|
274
274
|
}, {}>;
|
|
275
|
-
Trigger: React.ForwardRefExoticComponent<import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
275
|
+
Trigger: 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>> & {
|
|
276
276
|
__scopePopover?: string | undefined;
|
|
277
277
|
} & React.RefAttributes<TamaguiElement>>;
|
|
278
278
|
Content: React.ForwardRefExoticComponent<PopoverContentTypeProps & {
|
|
279
279
|
__scopePopover?: string | undefined;
|
|
280
280
|
} & React.RefAttributes<HTMLElement | import("react-native").View>>;
|
|
281
|
-
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
281
|
+
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
282
282
|
elevation?: number | SizeTokens | undefined;
|
|
283
283
|
fullscreen?: boolean | undefined;
|
|
284
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
284
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
285
285
|
elevation?: number | SizeTokens | undefined;
|
|
286
286
|
fullscreen?: boolean | undefined;
|
|
287
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
287
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
288
288
|
elevation?: number | SizeTokens | undefined;
|
|
289
289
|
fullscreen?: boolean | undefined;
|
|
290
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
290
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
291
291
|
elevation?: number | SizeTokens | undefined;
|
|
292
292
|
fullscreen?: boolean | undefined;
|
|
293
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
293
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
294
294
|
elevation?: number | SizeTokens | undefined;
|
|
295
295
|
fullscreen?: boolean | undefined;
|
|
296
296
|
}>> & {
|
|
@@ -304,23 +304,23 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
304
304
|
};
|
|
305
305
|
ScrollView: typeof ScrollView;
|
|
306
306
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
307
|
-
Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").
|
|
307
|
+
Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
308
308
|
elevation?: number | SizeTokens | undefined;
|
|
309
309
|
fullscreen?: boolean | undefined;
|
|
310
310
|
unstyled?: boolean | undefined;
|
|
311
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
311
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
312
312
|
elevation?: number | SizeTokens | undefined;
|
|
313
313
|
fullscreen?: boolean | undefined;
|
|
314
314
|
unstyled?: boolean | undefined;
|
|
315
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
315
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
316
316
|
elevation?: number | SizeTokens | undefined;
|
|
317
317
|
fullscreen?: boolean | undefined;
|
|
318
318
|
unstyled?: boolean | undefined;
|
|
319
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
319
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
320
320
|
elevation?: number | SizeTokens | undefined;
|
|
321
321
|
fullscreen?: boolean | undefined;
|
|
322
322
|
unstyled?: boolean | undefined;
|
|
323
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
323
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
324
324
|
elevation?: number | SizeTokens | undefined;
|
|
325
325
|
fullscreen?: boolean | undefined;
|
|
326
326
|
unstyled?: boolean | undefined;
|
|
@@ -330,13 +330,11 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
330
330
|
} & {
|
|
331
331
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
332
332
|
} & React.RefAttributes<unknown>>;
|
|
333
|
-
Overlay: React.MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
334
|
-
elevation?: number | SizeTokens | undefined;
|
|
335
|
-
* @see https://github.com/theKashey/react-remove-scroll#usage
|
|
336
|
-
*/
|
|
333
|
+
Overlay: React.MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
334
|
+
elevation?: number | SizeTokens | undefined;
|
|
337
335
|
fullscreen?: boolean | undefined;
|
|
338
336
|
open?: boolean | undefined;
|
|
339
|
-
transparent?: boolean | undefined;
|
|
337
|
+
transparent?: boolean | undefined;
|
|
340
338
|
circular?: boolean | undefined;
|
|
341
339
|
unstyled?: boolean | undefined;
|
|
342
340
|
backgrounded?: boolean | undefined;
|
|
@@ -349,21 +347,21 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
349
347
|
padded?: boolean | undefined;
|
|
350
348
|
chromeless?: boolean | "all" | undefined;
|
|
351
349
|
}>>) => null>;
|
|
352
|
-
Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
350
|
+
Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
353
351
|
elevation?: number | SizeTokens | undefined;
|
|
354
352
|
fullscreen?: boolean | undefined;
|
|
355
353
|
open?: boolean | undefined;
|
|
356
354
|
unstyled?: boolean | undefined;
|
|
357
355
|
}>>) => JSX.Element | null;
|
|
358
|
-
ScrollView: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
356
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
359
357
|
fullscreen?: boolean | undefined;
|
|
360
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
358
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
361
359
|
fullscreen?: boolean | undefined;
|
|
362
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
360
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
363
361
|
fullscreen?: boolean | undefined;
|
|
364
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").
|
|
362
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
365
363
|
fullscreen?: boolean | undefined;
|
|
366
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").
|
|
364
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
367
365
|
fullscreen?: boolean | undefined;
|
|
368
366
|
}>> & React.RefAttributes<ScrollView>>;
|
|
369
367
|
};
|
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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"}
|