@tamagui/popover 1.88.8 → 1.88.9

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.88.8",
3
+ "version": "1.88.9",
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.8",
37
- "@tamagui/animate": "1.88.8",
38
- "@tamagui/aria-hidden": "1.88.8",
39
- "@tamagui/compose-refs": "1.88.8",
40
- "@tamagui/constants": "1.88.8",
41
- "@tamagui/core": "1.88.8",
42
- "@tamagui/dismissable": "1.88.8",
43
- "@tamagui/floating": "1.88.8",
44
- "@tamagui/focus-scope": "1.88.8",
45
- "@tamagui/helpers": "1.88.8",
46
- "@tamagui/polyfill-dev": "1.88.8",
47
- "@tamagui/popper": "1.88.8",
48
- "@tamagui/portal": "1.88.8",
49
- "@tamagui/remove-scroll": "1.88.8",
50
- "@tamagui/scroll-view": "1.88.8",
51
- "@tamagui/sheet": "1.88.8",
52
- "@tamagui/stacks": "1.88.8",
53
- "@tamagui/use-controllable-state": "1.88.8",
36
+ "@tamagui/adapt": "1.88.9",
37
+ "@tamagui/animate": "1.88.9",
38
+ "@tamagui/aria-hidden": "1.88.9",
39
+ "@tamagui/compose-refs": "1.88.9",
40
+ "@tamagui/constants": "1.88.9",
41
+ "@tamagui/core": "1.88.9",
42
+ "@tamagui/dismissable": "1.88.9",
43
+ "@tamagui/floating": "1.88.9",
44
+ "@tamagui/focus-scope": "1.88.9",
45
+ "@tamagui/helpers": "1.88.9",
46
+ "@tamagui/polyfill-dev": "1.88.9",
47
+ "@tamagui/popper": "1.88.9",
48
+ "@tamagui/portal": "1.88.9",
49
+ "@tamagui/remove-scroll": "1.88.9",
50
+ "@tamagui/scroll-view": "1.88.9",
51
+ "@tamagui/sheet": "1.88.9",
52
+ "@tamagui/stacks": "1.88.9",
53
+ "@tamagui/use-controllable-state": "1.88.9",
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.8",
61
+ "@tamagui/build": "1.88.9",
62
62
  "react": "^18.2.0",
63
63
  "react-native": "^0.72.6"
64
64
  },
@@ -42,26 +42,26 @@ type PopoverContextValue = {
42
42
  export declare const PopoverContext: import("@tamagui/core").StyledContext<PopoverContextValue>;
43
43
  export declare const usePopoverContext: (scope?: string | undefined) => PopoverContextValue;
44
44
  export type PopoverAnchorProps = YStackProps;
45
- export declare const PopoverAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
45
+ 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 & {
46
46
  elevation?: number | SizeTokens | undefined;
47
47
  fullscreen?: boolean | undefined;
48
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
48
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
49
49
  elevation?: number | SizeTokens | undefined;
50
50
  fullscreen?: boolean | undefined;
51
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
51
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
52
52
  elevation?: number | SizeTokens | undefined;
53
53
  fullscreen?: boolean | undefined;
54
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
54
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
55
55
  elevation?: number | SizeTokens | undefined;
56
56
  fullscreen?: boolean | undefined;
57
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
57
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
58
58
  elevation?: number | SizeTokens | undefined;
59
59
  fullscreen?: boolean | undefined;
60
60
  }>> & {
61
61
  __scopePopover?: string | undefined;
62
62
  } & React.RefAttributes<TamaguiElement>>;
63
63
  export type PopoverTriggerProps = StackProps;
64
- 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
+ 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>> & {
65
65
  __scopePopover?: string | undefined;
66
66
  } & React.RefAttributes<TamaguiElement>>;
67
67
  export type PopoverContentProps = PopoverContentTypeProps;
@@ -102,26 +102,30 @@ export interface PopoverContentImplProps extends PopperContentProps, Omit<Dismis
102
102
  freezeContentsWhenHidden?: boolean;
103
103
  }
104
104
  export type PopoverCloseProps = YStackProps;
105
- export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
105
+ 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 & {
106
106
  elevation?: number | SizeTokens | undefined;
107
107
  fullscreen?: boolean | undefined;
108
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
108
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
109
109
  elevation?: number | SizeTokens | undefined;
110
110
  fullscreen?: boolean | undefined;
111
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
111
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
112
112
  elevation?: number | SizeTokens | undefined;
113
113
  fullscreen?: boolean | undefined;
114
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
114
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
115
115
  elevation?: number | SizeTokens | undefined;
116
116
  fullscreen?: boolean | undefined;
117
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
117
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
118
118
  elevation?: number | SizeTokens | undefined;
119
119
  fullscreen?: boolean | undefined;
120
120
  }>> & {
121
121
  __scopePopover?: string | undefined;
122
122
  } & React.RefAttributes<TamaguiElement>>;
123
123
  export type PopoverArrowProps = PopperArrowProps;
124
- export declare const PopoverArrow: TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, Omit<Omit<import("@tamagui/core").StackStyleBase, keyof PopperArrowExtraProps>, keyof PopperArrowExtraProps>, {
124
+ export declare const PopoverArrow: TamaguiComponent<Omit<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
125
+ elevation?: number | SizeTokens | undefined;
126
+ fullscreen?: boolean | undefined;
127
+ unstyled?: boolean | undefined;
128
+ }>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, keyof PopperArrowExtraProps> & PopperArrowExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
125
129
  elevation?: number | SizeTokens | undefined;
126
130
  fullscreen?: boolean | undefined;
127
131
  unstyled?: boolean | undefined;
@@ -151,46 +155,50 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
151
155
  } & {
152
156
  __scopePopover?: string | undefined;
153
157
  } & React.RefAttributes<PopoverRef>> & {
154
- Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
158
+ Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
155
159
  elevation?: number | SizeTokens | undefined;
156
160
  fullscreen?: boolean | undefined;
157
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
161
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
158
162
  elevation?: number | SizeTokens | undefined;
159
163
  fullscreen?: boolean | undefined;
160
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
164
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
161
165
  elevation?: number | SizeTokens | undefined;
162
166
  fullscreen?: boolean | undefined;
163
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
167
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
164
168
  elevation?: number | SizeTokens | undefined;
165
169
  fullscreen?: boolean | undefined;
166
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
170
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
167
171
  elevation?: number | SizeTokens | undefined;
168
172
  fullscreen?: boolean | undefined;
169
173
  }>> & {
170
174
  __scopePopover?: string | undefined;
171
175
  } & React.RefAttributes<TamaguiElement>>;
172
- Arrow: TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, Omit<Omit<import("@tamagui/core").StackStyleBase, keyof PopperArrowExtraProps>, keyof PopperArrowExtraProps>, {
176
+ Arrow: TamaguiComponent<Omit<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
177
+ elevation?: number | SizeTokens | undefined;
178
+ fullscreen?: boolean | undefined;
179
+ unstyled?: boolean | undefined;
180
+ }>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, keyof PopperArrowExtraProps> & PopperArrowExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
173
181
  elevation?: number | SizeTokens | undefined;
174
182
  fullscreen?: boolean | undefined;
175
183
  unstyled?: boolean | undefined;
176
184
  }, {}>;
177
- 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, {}>> & {
185
+ 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>> & {
178
186
  __scopePopover?: string | undefined;
179
187
  } & React.RefAttributes<TamaguiElement>>;
180
188
  Content: PopoverContentType;
181
- Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
189
+ Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
182
190
  elevation?: number | SizeTokens | undefined;
183
191
  fullscreen?: boolean | undefined;
184
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
192
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
185
193
  elevation?: number | SizeTokens | undefined;
186
194
  fullscreen?: boolean | undefined;
187
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
195
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
188
196
  elevation?: number | SizeTokens | undefined;
189
197
  fullscreen?: boolean | undefined;
190
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
198
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
191
199
  elevation?: number | SizeTokens | undefined;
192
200
  fullscreen?: boolean | undefined;
193
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
201
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
194
202
  elevation?: number | SizeTokens | undefined;
195
203
  fullscreen?: boolean | undefined;
196
204
  }>> & {
@@ -204,23 +212,23 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
204
212
  };
205
213
  ScrollView: typeof ScrollView;
206
214
  Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
207
- Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
215
+ Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
208
216
  elevation?: number | SizeTokens | undefined;
209
217
  fullscreen?: boolean | undefined;
210
218
  unstyled?: boolean | undefined;
211
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
219
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
212
220
  elevation?: number | SizeTokens | undefined;
213
221
  fullscreen?: boolean | undefined;
214
222
  unstyled?: boolean | undefined;
215
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
223
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
216
224
  elevation?: number | SizeTokens | undefined;
217
225
  fullscreen?: boolean | undefined;
218
226
  unstyled?: boolean | undefined;
219
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
227
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
220
228
  elevation?: number | SizeTokens | undefined;
221
229
  fullscreen?: boolean | undefined;
222
230
  unstyled?: boolean | undefined;
223
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
231
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
224
232
  elevation?: number | SizeTokens | undefined;
225
233
  fullscreen?: boolean | undefined;
226
234
  unstyled?: boolean | undefined;
@@ -230,55 +238,7 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
230
238
  } & {
231
239
  __scopeSheet?: import("@tamagui/create-context").Scope<any>;
232
240
  } & React.RefAttributes<unknown>>;
233
- Overlay: React.MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
234
- elevation?: number | SizeTokens | undefined;
235
- fullscreen?: boolean | undefined;
236
- open?: boolean | undefined;
237
- transparent?: boolean | undefined;
238
- circular?: boolean | undefined;
239
- unstyled?: boolean | undefined;
240
- backgrounded?: boolean | undefined;
241
- hoverTheme?: boolean | undefined;
242
- pressTheme?: boolean | undefined;
243
- focusTheme?: boolean | undefined;
244
- elevate?: boolean | undefined;
245
- bordered?: number | boolean | undefined;
246
- radiused?: boolean | undefined;
247
- padded?: boolean | undefined;
248
- chromeless?: boolean | "all" | undefined;
249
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
250
- elevation?: number | SizeTokens | undefined;
251
- fullscreen?: boolean | undefined;
252
- open?: boolean | undefined;
253
- transparent?: boolean | undefined;
254
- circular?: boolean | undefined;
255
- unstyled?: boolean | undefined;
256
- backgrounded?: boolean | undefined;
257
- hoverTheme?: boolean | undefined;
258
- pressTheme?: boolean | undefined;
259
- focusTheme?: boolean | undefined;
260
- elevate?: boolean | undefined;
261
- bordered?: number | boolean | undefined;
262
- radiused?: boolean | undefined;
263
- padded?: boolean | undefined;
264
- chromeless?: boolean | "all" | undefined;
265
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
266
- elevation?: number | SizeTokens | undefined;
267
- fullscreen?: boolean | undefined;
268
- open?: boolean | undefined;
269
- transparent?: boolean | undefined;
270
- circular?: boolean | undefined;
271
- unstyled?: boolean | undefined;
272
- backgrounded?: boolean | undefined;
273
- hoverTheme?: boolean | undefined;
274
- pressTheme?: boolean | undefined;
275
- focusTheme?: boolean | undefined;
276
- elevate?: boolean | undefined;
277
- bordered?: number | boolean | undefined;
278
- radiused?: boolean | undefined;
279
- padded?: boolean | undefined;
280
- chromeless?: boolean | "all" | undefined;
281
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
241
+ Overlay: React.MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
282
242
  elevation?: number | SizeTokens | undefined;
283
243
  fullscreen?: boolean | undefined;
284
244
  open?: boolean | undefined;
@@ -294,58 +254,22 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
294
254
  radiused?: boolean | undefined;
295
255
  padded?: boolean | undefined;
296
256
  chromeless?: boolean | "all" | undefined;
297
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
298
- elevation?: number | SizeTokens | undefined;
299
- fullscreen?: boolean | undefined;
300
- open?: boolean | undefined;
301
- transparent?: boolean | undefined;
302
- circular?: boolean | undefined;
303
- unstyled?: boolean | undefined;
304
- backgrounded?: boolean | undefined;
305
- hoverTheme?: boolean | undefined;
306
- pressTheme?: boolean | undefined;
307
- focusTheme?: boolean | undefined;
308
- elevate?: boolean | undefined;
309
- bordered?: number | boolean | undefined;
310
- radiused?: boolean | undefined;
311
- padded?: boolean | undefined;
312
- chromeless?: boolean | "all" | undefined;
313
- }>>>) => null>;
314
- Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
315
- elevation?: number | SizeTokens | undefined;
316
- fullscreen?: boolean | undefined;
317
- open?: boolean | undefined;
318
- unstyled?: boolean | undefined;
319
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
320
- elevation?: number | SizeTokens | undefined;
321
- fullscreen?: boolean | undefined;
322
- open?: boolean | undefined;
323
- unstyled?: boolean | undefined;
324
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
325
- elevation?: number | SizeTokens | undefined;
326
- fullscreen?: boolean | undefined;
327
- open?: boolean | undefined;
328
- unstyled?: boolean | undefined;
329
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
330
- elevation?: number | SizeTokens | undefined;
331
- fullscreen?: boolean | undefined;
332
- open?: boolean | undefined;
333
- unstyled?: boolean | undefined;
334
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
257
+ }>>) => null>;
258
+ Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
335
259
  elevation?: number | SizeTokens | undefined;
336
260
  fullscreen?: boolean | undefined;
337
261
  open?: boolean | undefined;
338
262
  unstyled?: boolean | undefined;
339
- }>>>) => JSX.Element | null;
340
- ScrollView: React.ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
263
+ }>>) => JSX.Element | null;
264
+ 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 & {
341
265
  fullscreen?: boolean | undefined;
342
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
266
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
343
267
  fullscreen?: boolean | undefined;
344
- }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
268
+ }>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
345
269
  fullscreen?: boolean | undefined;
346
- }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
270
+ }> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
347
271
  fullscreen?: boolean | undefined;
348
- }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
272
+ }>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
349
273
  fullscreen?: boolean | undefined;
350
274
  }>> & React.RefAttributes<ScrollView>>;
351
275
  };
@@ -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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"}