@tamagui/popover 1.120.1 → 1.121.0
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 +21 -21
- package/types/Popover.d.ts +42 -42
- 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.
|
|
3
|
+
"version": "1.121.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -37,33 +37,33 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@floating-ui/react": "^0.26.24",
|
|
40
|
-
"@tamagui/adapt": "1.
|
|
41
|
-
"@tamagui/animate": "1.
|
|
42
|
-
"@tamagui/aria-hidden": "1.
|
|
43
|
-
"@tamagui/compose-refs": "1.
|
|
44
|
-
"@tamagui/constants": "1.
|
|
45
|
-
"@tamagui/core": "1.
|
|
46
|
-
"@tamagui/dismissable": "1.
|
|
47
|
-
"@tamagui/floating": "1.
|
|
48
|
-
"@tamagui/focus-scope": "1.
|
|
49
|
-
"@tamagui/helpers": "1.
|
|
50
|
-
"@tamagui/polyfill-dev": "1.
|
|
51
|
-
"@tamagui/popper": "1.
|
|
52
|
-
"@tamagui/portal": "1.
|
|
53
|
-
"@tamagui/remove-scroll": "1.
|
|
54
|
-
"@tamagui/scroll-view": "1.
|
|
55
|
-
"@tamagui/sheet": "1.
|
|
56
|
-
"@tamagui/stacks": "1.
|
|
57
|
-
"@tamagui/use-controllable-state": "1.
|
|
40
|
+
"@tamagui/adapt": "1.121.0",
|
|
41
|
+
"@tamagui/animate": "1.121.0",
|
|
42
|
+
"@tamagui/aria-hidden": "1.121.0",
|
|
43
|
+
"@tamagui/compose-refs": "1.121.0",
|
|
44
|
+
"@tamagui/constants": "1.121.0",
|
|
45
|
+
"@tamagui/core": "1.121.0",
|
|
46
|
+
"@tamagui/dismissable": "1.121.0",
|
|
47
|
+
"@tamagui/floating": "1.121.0",
|
|
48
|
+
"@tamagui/focus-scope": "1.121.0",
|
|
49
|
+
"@tamagui/helpers": "1.121.0",
|
|
50
|
+
"@tamagui/polyfill-dev": "1.121.0",
|
|
51
|
+
"@tamagui/popper": "1.121.0",
|
|
52
|
+
"@tamagui/portal": "1.121.0",
|
|
53
|
+
"@tamagui/remove-scroll": "1.121.0",
|
|
54
|
+
"@tamagui/scroll-view": "1.121.0",
|
|
55
|
+
"@tamagui/sheet": "1.121.0",
|
|
56
|
+
"@tamagui/stacks": "1.121.0",
|
|
57
|
+
"@tamagui/use-controllable-state": "1.121.0",
|
|
58
58
|
"react-freeze": "^1.0.3"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"react": "*"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tamagui/build": "1.
|
|
64
|
+
"@tamagui/build": "1.121.0",
|
|
65
65
|
"react": "*",
|
|
66
|
-
"react-native": "0.
|
|
66
|
+
"react-native": "^0.76.5"
|
|
67
67
|
},
|
|
68
68
|
"publishConfig": {
|
|
69
69
|
"access": "public"
|
package/types/Popover.d.ts
CHANGED
|
@@ -40,33 +40,33 @@ type PopoverContextValue = {
|
|
|
40
40
|
export declare const PopoverContext: import("@tamagui/core").StyledContext<PopoverContextValue>;
|
|
41
41
|
export declare const usePopoverContext: (scope?: string) => PopoverContextValue;
|
|
42
42
|
export type PopoverAnchorProps = YStackProps;
|
|
43
|
-
export declare const PopoverAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
43
|
+
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> & {
|
|
44
44
|
elevation?: number | SizeTokens | undefined;
|
|
45
|
-
fullscreen?: boolean | undefined;
|
|
46
45
|
inset?: number | SizeTokens | {
|
|
47
46
|
top?: number;
|
|
48
47
|
bottom?: number;
|
|
49
48
|
left?: number;
|
|
50
49
|
right?: number;
|
|
51
|
-
} | undefined;
|
|
50
|
+
} | null | undefined;
|
|
51
|
+
fullscreen?: boolean | undefined;
|
|
52
52
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
53
53
|
elevation?: number | SizeTokens | undefined;
|
|
54
|
-
fullscreen?: boolean | undefined;
|
|
55
54
|
inset?: number | SizeTokens | {
|
|
56
55
|
top?: number;
|
|
57
56
|
bottom?: number;
|
|
58
57
|
left?: number;
|
|
59
58
|
right?: number;
|
|
60
|
-
} | undefined;
|
|
59
|
+
} | null | undefined;
|
|
60
|
+
fullscreen?: boolean | undefined;
|
|
61
61
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
62
62
|
elevation?: number | SizeTokens | undefined;
|
|
63
|
-
fullscreen?: boolean | undefined;
|
|
64
63
|
inset?: number | SizeTokens | {
|
|
65
64
|
top?: number;
|
|
66
65
|
bottom?: number;
|
|
67
66
|
left?: number;
|
|
68
67
|
right?: number;
|
|
69
|
-
} | undefined;
|
|
68
|
+
} | null | undefined;
|
|
69
|
+
fullscreen?: boolean | undefined;
|
|
70
70
|
}>> & {
|
|
71
71
|
__scopePopover?: string | undefined;
|
|
72
72
|
} & React.RefAttributes<TamaguiElement>>;
|
|
@@ -112,56 +112,56 @@ export interface PopoverContentImplProps extends PopperContentProps, Omit<Dismis
|
|
|
112
112
|
setIsFullyHidden?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
113
113
|
}
|
|
114
114
|
export type PopoverCloseProps = YStackProps;
|
|
115
|
-
export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
115
|
+
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> & {
|
|
116
116
|
elevation?: number | SizeTokens | undefined;
|
|
117
|
-
fullscreen?: boolean | undefined;
|
|
118
117
|
inset?: number | SizeTokens | {
|
|
119
118
|
top?: number;
|
|
120
119
|
bottom?: number;
|
|
121
120
|
left?: number;
|
|
122
121
|
right?: number;
|
|
123
|
-
} | undefined;
|
|
122
|
+
} | null | undefined;
|
|
123
|
+
fullscreen?: boolean | undefined;
|
|
124
124
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
125
125
|
elevation?: number | SizeTokens | undefined;
|
|
126
|
-
fullscreen?: boolean | undefined;
|
|
127
126
|
inset?: number | SizeTokens | {
|
|
128
127
|
top?: number;
|
|
129
128
|
bottom?: number;
|
|
130
129
|
left?: number;
|
|
131
130
|
right?: number;
|
|
132
|
-
} | undefined;
|
|
131
|
+
} | null | undefined;
|
|
132
|
+
fullscreen?: boolean | undefined;
|
|
133
133
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
134
134
|
elevation?: number | SizeTokens | undefined;
|
|
135
|
-
fullscreen?: boolean | undefined;
|
|
136
135
|
inset?: number | SizeTokens | {
|
|
137
136
|
top?: number;
|
|
138
137
|
bottom?: number;
|
|
139
138
|
left?: number;
|
|
140
139
|
right?: number;
|
|
141
|
-
} | undefined;
|
|
140
|
+
} | null | undefined;
|
|
141
|
+
fullscreen?: boolean | undefined;
|
|
142
142
|
}>> & {
|
|
143
143
|
__scopePopover?: string | undefined;
|
|
144
144
|
} & React.RefAttributes<TamaguiElement>>;
|
|
145
145
|
export type PopoverArrowProps = PopperArrowProps;
|
|
146
146
|
export declare const PopoverArrow: import("@tamagui/core").TamaguiComponent<Omit<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
147
147
|
elevation?: number | SizeTokens | undefined;
|
|
148
|
-
fullscreen?: boolean | undefined;
|
|
149
148
|
inset?: number | SizeTokens | {
|
|
150
149
|
top?: number;
|
|
151
150
|
bottom?: number;
|
|
152
151
|
left?: number;
|
|
153
152
|
right?: number;
|
|
154
|
-
} | undefined;
|
|
153
|
+
} | null | undefined;
|
|
154
|
+
fullscreen?: boolean | undefined;
|
|
155
155
|
unstyled?: boolean | undefined;
|
|
156
156
|
}>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, keyof PopperArrowExtraProps> & PopperArrowExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
157
157
|
elevation?: number | SizeTokens | undefined;
|
|
158
|
-
fullscreen?: boolean | undefined;
|
|
159
158
|
inset?: number | SizeTokens | {
|
|
160
159
|
top?: number;
|
|
161
160
|
bottom?: number;
|
|
162
161
|
left?: number;
|
|
163
162
|
right?: number;
|
|
164
|
-
} | undefined;
|
|
163
|
+
} | null | undefined;
|
|
164
|
+
fullscreen?: boolean | undefined;
|
|
165
165
|
unstyled?: boolean | undefined;
|
|
166
166
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
167
167
|
type Rect = {
|
|
@@ -193,55 +193,55 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
193
193
|
} & {
|
|
194
194
|
__scopePopover?: string | undefined;
|
|
195
195
|
} & React.RefAttributes<Popover>> & {
|
|
196
|
-
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
196
|
+
Anchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
197
197
|
elevation?: number | SizeTokens | undefined;
|
|
198
|
-
fullscreen?: boolean | undefined;
|
|
199
198
|
inset?: number | SizeTokens | {
|
|
200
199
|
top?: number;
|
|
201
200
|
bottom?: number;
|
|
202
201
|
left?: number;
|
|
203
202
|
right?: number;
|
|
204
|
-
} | undefined;
|
|
203
|
+
} | null | undefined;
|
|
204
|
+
fullscreen?: boolean | undefined;
|
|
205
205
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
206
206
|
elevation?: number | SizeTokens | undefined;
|
|
207
|
-
fullscreen?: boolean | undefined;
|
|
208
207
|
inset?: number | SizeTokens | {
|
|
209
208
|
top?: number;
|
|
210
209
|
bottom?: number;
|
|
211
210
|
left?: number;
|
|
212
211
|
right?: number;
|
|
213
|
-
} | undefined;
|
|
212
|
+
} | null | undefined;
|
|
213
|
+
fullscreen?: boolean | undefined;
|
|
214
214
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
215
215
|
elevation?: number | SizeTokens | undefined;
|
|
216
|
-
fullscreen?: boolean | undefined;
|
|
217
216
|
inset?: number | SizeTokens | {
|
|
218
217
|
top?: number;
|
|
219
218
|
bottom?: number;
|
|
220
219
|
left?: number;
|
|
221
220
|
right?: number;
|
|
222
|
-
} | undefined;
|
|
221
|
+
} | null | undefined;
|
|
222
|
+
fullscreen?: boolean | undefined;
|
|
223
223
|
}>> & {
|
|
224
224
|
__scopePopover?: string | undefined;
|
|
225
225
|
} & React.RefAttributes<TamaguiElement>>;
|
|
226
226
|
Arrow: import("@tamagui/core").TamaguiComponent<Omit<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
227
227
|
elevation?: number | SizeTokens | undefined;
|
|
228
|
-
fullscreen?: boolean | undefined;
|
|
229
228
|
inset?: number | SizeTokens | {
|
|
230
229
|
top?: number;
|
|
231
230
|
bottom?: number;
|
|
232
231
|
left?: number;
|
|
233
232
|
right?: number;
|
|
234
|
-
} | undefined;
|
|
233
|
+
} | null | undefined;
|
|
234
|
+
fullscreen?: boolean | undefined;
|
|
235
235
|
unstyled?: boolean | undefined;
|
|
236
236
|
}>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, keyof PopperArrowExtraProps> & PopperArrowExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
237
237
|
elevation?: number | SizeTokens | undefined;
|
|
238
|
-
fullscreen?: boolean | undefined;
|
|
239
238
|
inset?: number | SizeTokens | {
|
|
240
239
|
top?: number;
|
|
241
240
|
bottom?: number;
|
|
242
241
|
left?: number;
|
|
243
242
|
right?: number;
|
|
244
|
-
} | undefined;
|
|
243
|
+
} | null | undefined;
|
|
244
|
+
fullscreen?: boolean | undefined;
|
|
245
245
|
unstyled?: boolean | undefined;
|
|
246
246
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
247
247
|
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, {}>> & {
|
|
@@ -250,33 +250,33 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
250
250
|
Content: React.ForwardRefExoticComponent<PopoverContentTypeProps & {
|
|
251
251
|
__scopePopover?: string | undefined;
|
|
252
252
|
} & React.RefAttributes<HTMLElement | import("react-native").View>>;
|
|
253
|
-
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
253
|
+
Close: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
254
254
|
elevation?: number | SizeTokens | undefined;
|
|
255
|
-
fullscreen?: boolean | undefined;
|
|
256
255
|
inset?: number | SizeTokens | {
|
|
257
256
|
top?: number;
|
|
258
257
|
bottom?: number;
|
|
259
258
|
left?: number;
|
|
260
259
|
right?: number;
|
|
261
|
-
} | undefined;
|
|
260
|
+
} | null | undefined;
|
|
261
|
+
fullscreen?: boolean | undefined;
|
|
262
262
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
263
263
|
elevation?: number | SizeTokens | undefined;
|
|
264
|
-
fullscreen?: boolean | undefined;
|
|
265
264
|
inset?: number | SizeTokens | {
|
|
266
265
|
top?: number;
|
|
267
266
|
bottom?: number;
|
|
268
267
|
left?: number;
|
|
269
268
|
right?: number;
|
|
270
|
-
} | undefined;
|
|
269
|
+
} | null | undefined;
|
|
270
|
+
fullscreen?: boolean | undefined;
|
|
271
271
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
272
272
|
elevation?: number | SizeTokens | undefined;
|
|
273
|
-
fullscreen?: boolean | undefined;
|
|
274
273
|
inset?: number | SizeTokens | {
|
|
275
274
|
top?: number;
|
|
276
275
|
bottom?: number;
|
|
277
276
|
left?: number;
|
|
278
277
|
right?: number;
|
|
279
|
-
} | undefined;
|
|
278
|
+
} | null | undefined;
|
|
279
|
+
fullscreen?: boolean | undefined;
|
|
280
280
|
}>> & {
|
|
281
281
|
__scopePopover?: string | undefined;
|
|
282
282
|
} & React.RefAttributes<TamaguiElement>>;
|
|
@@ -292,13 +292,13 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
292
292
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
293
293
|
Frame: import("react").ForwardRefExoticComponent<import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
294
294
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
295
|
-
fullscreen?: boolean | undefined;
|
|
296
295
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
297
296
|
top?: number;
|
|
298
297
|
bottom?: number;
|
|
299
298
|
left?: number;
|
|
300
299
|
right?: number;
|
|
301
|
-
} | undefined;
|
|
300
|
+
} | null | undefined;
|
|
301
|
+
fullscreen?: boolean | undefined;
|
|
302
302
|
unstyled?: boolean | undefined;
|
|
303
303
|
}>, keyof {
|
|
304
304
|
disableHideBottomOverflow?: boolean;
|
|
@@ -307,25 +307,25 @@ export declare const Popover: React.ForwardRefExoticComponent<PopperProps & {
|
|
|
307
307
|
disableHideBottomOverflow?: boolean;
|
|
308
308
|
adjustPaddingForOffscreenContent?: boolean;
|
|
309
309
|
}>>;
|
|
310
|
-
Overlay: import("react").MemoExoticComponent<(propsIn: import("@tamagui/sheet
|
|
310
|
+
Overlay: import("react").MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
311
311
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
312
|
-
fullscreen?: boolean | undefined;
|
|
313
312
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
314
313
|
top?: number;
|
|
315
314
|
bottom?: number;
|
|
316
315
|
left?: number;
|
|
317
316
|
right?: number;
|
|
318
|
-
} | undefined;
|
|
317
|
+
} | null | undefined;
|
|
318
|
+
fullscreen?: boolean | undefined;
|
|
319
319
|
open?: boolean | undefined;
|
|
320
320
|
transparent?: boolean | undefined;
|
|
321
321
|
circular?: boolean | undefined;
|
|
322
322
|
unstyled?: boolean | undefined;
|
|
323
|
-
backgrounded?: boolean | undefined;
|
|
324
323
|
hoverTheme?: boolean | undefined;
|
|
325
324
|
pressTheme?: boolean | undefined;
|
|
326
325
|
focusTheme?: boolean | undefined;
|
|
327
326
|
elevate?: boolean | undefined;
|
|
328
327
|
bordered?: number | boolean | undefined;
|
|
328
|
+
backgrounded?: boolean | undefined;
|
|
329
329
|
radiused?: boolean | undefined;
|
|
330
330
|
padded?: boolean | undefined;
|
|
331
331
|
chromeless?: boolean | "all" | undefined;
|
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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"}
|