@tamagui/popover 1.30.7 → 1.30.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/dist/cjs/Popover.js +49 -85
- package/dist/cjs/Popover.js.map +2 -2
- package/dist/esm/Popover.js +49 -84
- package/dist/esm/Popover.js.map +2 -2
- package/dist/jsx/Popover.js +46 -86
- package/dist/jsx/Popover.js.map +2 -2
- package/dist/jsx/Popover.mjs +46 -86
- package/dist/jsx/Popover.mjs.map +2 -2
- package/package.json +18 -19
- package/src/Popover.tsx +75 -137
- package/types/Popover.d.ts +18 -134
- package/types/Popover.d.ts.map +1 -1
package/types/Popover.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import '@tamagui/polyfill-dev';
|
|
2
2
|
import { SizeTokens, TamaguiElement } from '@tamagui/core';
|
|
3
|
-
import type { Scope } from '@tamagui/create-context';
|
|
4
3
|
import { DismissableProps } from '@tamagui/dismissable';
|
|
5
4
|
import { FocusScopeProps } from '@tamagui/focus-scope';
|
|
6
5
|
import { PopperArrowProps, PopperContentProps, PopperProps } from '@tamagui/popper';
|
|
7
6
|
import { RemoveScrollProps } from '@tamagui/remove-scroll';
|
|
8
7
|
import { YStackProps } from '@tamagui/stacks';
|
|
9
8
|
import * as React from 'react';
|
|
10
|
-
import { ScrollView, ScrollViewProps
|
|
9
|
+
import { ScrollView, ScrollViewProps } from 'react-native';
|
|
11
10
|
export type PopoverProps = PopperProps & {
|
|
12
11
|
open?: boolean;
|
|
13
12
|
defaultOpen?: boolean;
|
|
14
13
|
onOpenChange?: (open: boolean) => void;
|
|
15
14
|
};
|
|
16
15
|
type PopoverContextValue = {
|
|
16
|
+
id: string;
|
|
17
17
|
triggerRef: React.RefObject<any>;
|
|
18
18
|
contentId?: string;
|
|
19
19
|
open: boolean;
|
|
@@ -24,22 +24,10 @@ type PopoverContextValue = {
|
|
|
24
24
|
onCustomAnchorRemove(): void;
|
|
25
25
|
size?: SizeTokens;
|
|
26
26
|
sheetBreakpoint: any;
|
|
27
|
-
scopeKey: string;
|
|
28
|
-
popperScope: any;
|
|
29
27
|
breakpointActive?: boolean;
|
|
30
28
|
};
|
|
31
|
-
export declare const
|
|
32
|
-
|
|
33
|
-
};
|
|
34
|
-
export declare const createPopoverScope: import("@tamagui/create-context").CreateScope;
|
|
35
|
-
export declare const __PopoverProviderInternal: {
|
|
36
|
-
(props: PopoverContextValue & {
|
|
37
|
-
scope: Scope<PopoverContextValue>;
|
|
38
|
-
children: React.ReactNode;
|
|
39
|
-
}): JSX.Element;
|
|
40
|
-
displayName: string;
|
|
41
|
-
};
|
|
42
|
-
type PopoverAnchorElement = HTMLElement | View;
|
|
29
|
+
export declare const PopoverContext: import("@tamagui/core").StyledContext<PopoverContextValue>;
|
|
30
|
+
export declare const usePopoverContext: () => PopoverContextValue;
|
|
43
31
|
export type PopoverAnchorProps = YStackProps;
|
|
44
32
|
export declare const PopoverAnchor: 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<{}, "elevation" | "fullscreen"> & {
|
|
45
33
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -50,8 +38,7 @@ export declare const PopoverAnchor: React.ForwardRefExoticComponent<Omit<import(
|
|
|
50
38
|
}>> & 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<{}, "elevation" | "fullscreen"> & {
|
|
51
39
|
readonly fullscreen?: boolean | undefined;
|
|
52
40
|
readonly elevation?: SizeTokens | undefined;
|
|
53
|
-
}>> & React.RefAttributes<
|
|
54
|
-
type PopoverTriggerElement = HTMLElement | View;
|
|
41
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
55
42
|
export type PopoverTriggerProps = YStackProps;
|
|
56
43
|
export declare const PopoverTrigger: 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<{}, "elevation" | "fullscreen"> & {
|
|
57
44
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -62,7 +49,7 @@ export declare const PopoverTrigger: React.ForwardRefExoticComponent<Omit<import
|
|
|
62
49
|
}>> & 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<{}, "elevation" | "fullscreen"> & {
|
|
63
50
|
readonly fullscreen?: boolean | undefined;
|
|
64
51
|
readonly elevation?: SizeTokens | undefined;
|
|
65
|
-
}>> & React.RefAttributes<
|
|
52
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
66
53
|
export type PopoverContentProps = PopoverContentTypeProps;
|
|
67
54
|
export interface PopoverContentTypeProps extends Omit<PopoverContentImplProps, 'disableOutsidePointerEvents'> {
|
|
68
55
|
/**
|
|
@@ -70,7 +57,7 @@ export interface PopoverContentTypeProps extends Omit<PopoverContentImplProps, '
|
|
|
70
57
|
*/
|
|
71
58
|
allowPinchZoom?: RemoveScrollProps['allowPinchZoom'];
|
|
72
59
|
}
|
|
73
|
-
export declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentTypeProps & React.RefAttributes<HTMLElement | View>>;
|
|
60
|
+
export declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentTypeProps & React.RefAttributes<HTMLElement | import("react-native").View>>;
|
|
74
61
|
export interface PopoverContentImplProps extends PopperContentProps, Omit<DismissableProps, 'onDismiss' | 'children'> {
|
|
75
62
|
/**
|
|
76
63
|
* Whether focus should be trapped within the `Popover`
|
|
@@ -89,7 +76,6 @@ export interface PopoverContentImplProps extends PopperContentProps, Omit<Dismis
|
|
|
89
76
|
onCloseAutoFocus?: FocusScopeProps['onUnmountAutoFocus'];
|
|
90
77
|
disableRemoveScroll?: boolean;
|
|
91
78
|
}
|
|
92
|
-
type PopoverCloseElement = HTMLElement | View;
|
|
93
79
|
export type PopoverCloseProps = YStackProps;
|
|
94
80
|
export declare const PopoverClose: 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<{}, "elevation" | "fullscreen"> & {
|
|
95
81
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -100,9 +86,9 @@ export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<import("
|
|
|
100
86
|
}>> & 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<{}, "elevation" | "fullscreen"> & {
|
|
101
87
|
readonly fullscreen?: boolean | undefined;
|
|
102
88
|
readonly elevation?: SizeTokens | undefined;
|
|
103
|
-
}>> & React.RefAttributes<
|
|
89
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
104
90
|
export type PopoverArrowProps = PopperArrowProps;
|
|
105
|
-
export declare const PopoverArrow:
|
|
91
|
+
export declare const PopoverArrow: 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<{}, "elevation" | "fullscreen"> & {
|
|
106
92
|
readonly fullscreen?: boolean | undefined;
|
|
107
93
|
readonly elevation?: SizeTokens | undefined;
|
|
108
94
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
@@ -114,58 +100,7 @@ export declare const PopoverArrow: import("@tamagui/core").ReactComponentWithRef
|
|
|
114
100
|
}>> & {
|
|
115
101
|
offset?: number | undefined;
|
|
116
102
|
size?: SizeTokens | undefined;
|
|
117
|
-
} &
|
|
118
|
-
__scopePopover?: Scope;
|
|
119
|
-
} & Omit<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<{
|
|
120
|
-
readonly fullscreen?: boolean | undefined;
|
|
121
|
-
readonly elevation?: SizeTokens | undefined;
|
|
122
|
-
}, "unstyled"> & {
|
|
123
|
-
readonly unstyled?: boolean | undefined;
|
|
124
|
-
} & 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<{
|
|
125
|
-
readonly fullscreen?: boolean | undefined;
|
|
126
|
-
readonly elevation?: SizeTokens | undefined;
|
|
127
|
-
}, "unstyled"> & {
|
|
128
|
-
readonly unstyled?: boolean | undefined;
|
|
129
|
-
}>> & 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<{
|
|
130
|
-
readonly fullscreen?: boolean | undefined;
|
|
131
|
-
readonly elevation?: SizeTokens | undefined;
|
|
132
|
-
}, "unstyled"> & {
|
|
133
|
-
readonly unstyled?: boolean | undefined;
|
|
134
|
-
}>>, "top" | "right" | "bottom" | "left" | "start" | "end" | "size" | `$${string}` | `$${number}` | "removeClippedSubviews" | "style" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | "backgroundColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderBottomWidth" | "borderColor" | "borderEndColor" | "borderLeftColor" | "borderLeftWidth" | "borderRadius" | "borderRightColor" | "borderRightWidth" | "borderStartColor" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderTopWidth" | "borderWidth" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderEndWidth" | "borderStartWidth" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | keyof {
|
|
135
|
-
pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
|
|
136
|
-
cursor?: import("csstype").Property.Cursor | undefined;
|
|
137
|
-
contain?: import("csstype").Property.Contain | undefined;
|
|
138
|
-
display?: "flex" | "none" | "inherit" | "inline" | "block" | "contents" | "inline-flex" | undefined;
|
|
139
|
-
gap?: import("@tamagui/core").SpaceTokens | undefined;
|
|
140
|
-
columnGap?: import("@tamagui/core").SpaceTokens | undefined;
|
|
141
|
-
rowGap?: import("@tamagui/core").SpaceTokens | undefined;
|
|
142
|
-
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
143
|
-
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
144
|
-
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
145
|
-
outlineOffset?: import("@tamagui/core").SpaceTokens | undefined;
|
|
146
|
-
outlineWidth?: import("@tamagui/core").SpaceTokens | undefined;
|
|
147
|
-
} | keyof import("@tamagui/core").TamaguiComponentPropsBase | keyof import("@tamagui/core/types/reactNativeTypes").RNViewProps | keyof 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<{}, "elevation" | "fullscreen"> & {
|
|
148
|
-
readonly fullscreen?: boolean | undefined;
|
|
149
|
-
readonly elevation?: SizeTokens | undefined;
|
|
150
|
-
}>> | "offset" | "__scopePopover">, TamaguiElement> & {
|
|
151
|
-
staticConfig: import("@tamagui/core").StaticConfigParsed;
|
|
152
|
-
styleable: import("@tamagui/core").Styleable<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<{
|
|
153
|
-
readonly fullscreen?: boolean | undefined;
|
|
154
|
-
readonly elevation?: SizeTokens | undefined;
|
|
155
|
-
}, "unstyled"> & {
|
|
156
|
-
readonly unstyled?: boolean | undefined;
|
|
157
|
-
} & 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<{
|
|
158
|
-
readonly fullscreen?: boolean | undefined;
|
|
159
|
-
readonly elevation?: SizeTokens | undefined;
|
|
160
|
-
}, "unstyled"> & {
|
|
161
|
-
readonly unstyled?: boolean | undefined;
|
|
162
|
-
}>> & 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<{
|
|
163
|
-
readonly fullscreen?: boolean | undefined;
|
|
164
|
-
readonly elevation?: SizeTokens | undefined;
|
|
165
|
-
}, "unstyled"> & {
|
|
166
|
-
readonly unstyled?: boolean | undefined;
|
|
167
|
-
}>>, TamaguiElement>;
|
|
168
|
-
};
|
|
103
|
+
} & React.RefAttributes<TamaguiElement>>;
|
|
169
104
|
export declare const Popover: React.FC<PopoverProps> & {
|
|
170
105
|
Anchor: 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<{}, "elevation" | "fullscreen"> & {
|
|
171
106
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -176,8 +111,8 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
176
111
|
}>> & 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<{}, "elevation" | "fullscreen"> & {
|
|
177
112
|
readonly fullscreen?: boolean | undefined;
|
|
178
113
|
readonly elevation?: SizeTokens | undefined;
|
|
179
|
-
}>> & React.RefAttributes<
|
|
180
|
-
Arrow:
|
|
114
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
115
|
+
Arrow: 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<{}, "elevation" | "fullscreen"> & {
|
|
181
116
|
readonly fullscreen?: boolean | undefined;
|
|
182
117
|
readonly elevation?: SizeTokens | undefined;
|
|
183
118
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
@@ -189,58 +124,7 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
189
124
|
}>> & {
|
|
190
125
|
offset?: number | undefined;
|
|
191
126
|
size?: SizeTokens | undefined;
|
|
192
|
-
} &
|
|
193
|
-
__scopePopover?: Scope;
|
|
194
|
-
} & Omit<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
|
-
readonly fullscreen?: boolean | undefined;
|
|
196
|
-
readonly elevation?: SizeTokens | undefined;
|
|
197
|
-
}, "unstyled"> & {
|
|
198
|
-
readonly unstyled?: boolean | undefined;
|
|
199
|
-
} & 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
|
-
readonly fullscreen?: boolean | undefined;
|
|
201
|
-
readonly elevation?: SizeTokens | undefined;
|
|
202
|
-
}, "unstyled"> & {
|
|
203
|
-
readonly unstyled?: boolean | undefined;
|
|
204
|
-
}>> & 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
|
-
readonly fullscreen?: boolean | undefined;
|
|
206
|
-
readonly elevation?: SizeTokens | undefined;
|
|
207
|
-
}, "unstyled"> & {
|
|
208
|
-
readonly unstyled?: boolean | undefined;
|
|
209
|
-
}>>, "top" | "right" | "bottom" | "left" | "start" | "end" | "size" | `$${string}` | `$${number}` | "removeClippedSubviews" | "style" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | "backgroundColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderBottomWidth" | "borderColor" | "borderEndColor" | "borderLeftColor" | "borderLeftWidth" | "borderRadius" | "borderRightColor" | "borderRightWidth" | "borderStartColor" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderTopWidth" | "borderWidth" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderEndWidth" | "borderStartWidth" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | keyof {
|
|
210
|
-
pointerEvents?: "none" | "box-none" | "box-only" | "auto" | undefined;
|
|
211
|
-
cursor?: import("csstype").Property.Cursor | undefined;
|
|
212
|
-
contain?: import("csstype").Property.Contain | undefined;
|
|
213
|
-
display?: "flex" | "none" | "inherit" | "inline" | "block" | "contents" | "inline-flex" | undefined;
|
|
214
|
-
gap?: import("@tamagui/core").SpaceTokens | undefined;
|
|
215
|
-
columnGap?: import("@tamagui/core").SpaceTokens | undefined;
|
|
216
|
-
rowGap?: import("@tamagui/core").SpaceTokens | undefined;
|
|
217
|
-
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
218
|
-
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
219
|
-
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
220
|
-
outlineOffset?: import("@tamagui/core").SpaceTokens | undefined;
|
|
221
|
-
outlineWidth?: import("@tamagui/core").SpaceTokens | undefined;
|
|
222
|
-
} | keyof import("@tamagui/core").TamaguiComponentPropsBase | keyof import("@tamagui/core/types/reactNativeTypes").RNViewProps | keyof 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<{}, "elevation" | "fullscreen"> & {
|
|
223
|
-
readonly fullscreen?: boolean | undefined;
|
|
224
|
-
readonly elevation?: SizeTokens | undefined;
|
|
225
|
-
}>> | "offset" | "__scopePopover">, TamaguiElement> & {
|
|
226
|
-
staticConfig: import("@tamagui/core").StaticConfigParsed;
|
|
227
|
-
styleable: import("@tamagui/core").Styleable<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<{
|
|
228
|
-
readonly fullscreen?: boolean | undefined;
|
|
229
|
-
readonly elevation?: SizeTokens | undefined;
|
|
230
|
-
}, "unstyled"> & {
|
|
231
|
-
readonly unstyled?: boolean | undefined;
|
|
232
|
-
} & 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<{
|
|
233
|
-
readonly fullscreen?: boolean | undefined;
|
|
234
|
-
readonly elevation?: SizeTokens | undefined;
|
|
235
|
-
}, "unstyled"> & {
|
|
236
|
-
readonly unstyled?: boolean | undefined;
|
|
237
|
-
}>> & 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<{
|
|
238
|
-
readonly fullscreen?: boolean | undefined;
|
|
239
|
-
readonly elevation?: SizeTokens | undefined;
|
|
240
|
-
}, "unstyled"> & {
|
|
241
|
-
readonly unstyled?: boolean | undefined;
|
|
242
|
-
}>>, TamaguiElement>;
|
|
243
|
-
};
|
|
127
|
+
} & React.RefAttributes<TamaguiElement>>;
|
|
244
128
|
Trigger: 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<{}, "elevation" | "fullscreen"> & {
|
|
245
129
|
readonly fullscreen?: boolean | undefined;
|
|
246
130
|
readonly elevation?: SizeTokens | undefined;
|
|
@@ -250,8 +134,8 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
250
134
|
}>> & 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<{}, "elevation" | "fullscreen"> & {
|
|
251
135
|
readonly fullscreen?: boolean | undefined;
|
|
252
136
|
readonly elevation?: SizeTokens | undefined;
|
|
253
|
-
}>> & React.RefAttributes<
|
|
254
|
-
Content: React.ForwardRefExoticComponent<PopoverContentTypeProps & React.RefAttributes<HTMLElement | View>>;
|
|
137
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
138
|
+
Content: React.ForwardRefExoticComponent<PopoverContentTypeProps & React.RefAttributes<HTMLElement | import("react-native").View>>;
|
|
255
139
|
Close: 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<{}, "elevation" | "fullscreen"> & {
|
|
256
140
|
readonly fullscreen?: boolean | undefined;
|
|
257
141
|
readonly elevation?: SizeTokens | undefined;
|
|
@@ -261,7 +145,7 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
261
145
|
}>> & 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<{}, "elevation" | "fullscreen"> & {
|
|
262
146
|
readonly fullscreen?: boolean | undefined;
|
|
263
147
|
readonly elevation?: SizeTokens | undefined;
|
|
264
|
-
}>> & React.RefAttributes<
|
|
148
|
+
}>> & React.RefAttributes<TamaguiElement>>;
|
|
265
149
|
Adapt: (({ platform, when, children }: import("@tamagui/adapt").AdaptProps) => any) & {
|
|
266
150
|
Contents: {
|
|
267
151
|
(props: any): React.FunctionComponentElement<any>;
|
|
@@ -269,7 +153,7 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
269
153
|
};
|
|
270
154
|
};
|
|
271
155
|
ScrollView: React.ForwardRefExoticComponent<ScrollViewProps & React.RefAttributes<ScrollView>>;
|
|
272
|
-
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<View>> & {
|
|
156
|
+
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
273
157
|
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
158
|
readonly fullscreen?: boolean | undefined;
|
|
275
159
|
readonly elevation?: SizeTokens | undefined;
|
|
@@ -288,7 +172,7 @@ export declare const Popover: React.FC<PopoverProps> & {
|
|
|
288
172
|
}>> & {
|
|
289
173
|
disableHideBottomOverflow?: boolean | undefined;
|
|
290
174
|
} & {
|
|
291
|
-
__scopeSheet?: Scope<any>;
|
|
175
|
+
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
292
176
|
} & React.RefAttributes<unknown>>;
|
|
293
177
|
Overlay: React.MemoExoticComponent<(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
178
|
readonly fullscreen?: boolean | undefined;
|
package/types/Popover.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"AAEA,OAAO,uBAAuB,CAAA;AAM9B,OAAO,EAEL,UAAU,EAEV,cAAc,
|
|
1
|
+
{"version":3,"file":"Popover.d.ts","sourceRoot":"","sources":["../src/Popover.tsx"],"names":[],"mappings":"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"}
|