@tamagui/popper 1.5.19 → 1.5.21
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/Popper.js +74 -55
- package/dist/cjs/Popper.js.map +3 -3
- package/dist/esm/Popper.js +73 -55
- package/dist/esm/Popper.js.map +3 -3
- package/dist/esm/Popper.mjs +73 -55
- package/dist/esm/Popper.mjs.map +3 -3
- package/dist/jsx/Popper.js +69 -51
- package/dist/jsx/Popper.js.map +3 -3
- package/dist/jsx/Popper.mjs +69 -51
- package/dist/jsx/Popper.mjs.map +3 -3
- package/package.json +9 -9
- package/src/Popper.tsx +86 -65
- package/types/Popper.d.ts +86 -10
- package/types/Popper.d.ts.map +1 -1
package/types/Popper.d.ts
CHANGED
|
@@ -6,6 +6,9 @@ import * as React from 'react';
|
|
|
6
6
|
import { View } from 'react-native';
|
|
7
7
|
type ShiftProps = typeof shift extends (options: infer Opts) => void ? Opts : never;
|
|
8
8
|
type FlipProps = typeof flip extends (options: infer Opts) => void ? Opts : never;
|
|
9
|
+
type ScopedProps<P> = P & {
|
|
10
|
+
__scopePopper?: Scope;
|
|
11
|
+
};
|
|
9
12
|
export declare const createPopperScope: import("@tamagui/create-context").CreateScope;
|
|
10
13
|
type PopperContextValue = UseFloatingReturn & {
|
|
11
14
|
isMounted: boolean;
|
|
@@ -74,18 +77,18 @@ export type PopperProps = {
|
|
|
74
77
|
allowFlip?: FlipProps | boolean;
|
|
75
78
|
strategy?: Strategy;
|
|
76
79
|
};
|
|
77
|
-
export declare
|
|
80
|
+
export declare function Popper(props: ScopedProps<PopperProps>): JSX.Element;
|
|
78
81
|
type PopperAnchorRef = HTMLElement | View;
|
|
79
82
|
export type PopperAnchorProps = YStackProps & {
|
|
80
83
|
virtualRef?: React.RefObject<any>;
|
|
81
84
|
};
|
|
82
|
-
export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "
|
|
85
|
+
export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "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"> & {
|
|
83
86
|
readonly fullscreen?: boolean | undefined;
|
|
84
87
|
readonly elevation?: SizeTokens | undefined;
|
|
85
|
-
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "
|
|
88
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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"> & {
|
|
86
89
|
readonly fullscreen?: boolean | undefined;
|
|
87
90
|
readonly elevation?: SizeTokens | undefined;
|
|
88
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "
|
|
91
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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"> & {
|
|
89
92
|
readonly fullscreen?: boolean | undefined;
|
|
90
93
|
readonly elevation?: SizeTokens | undefined;
|
|
91
94
|
}>> & {
|
|
@@ -93,7 +96,80 @@ export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("
|
|
|
93
96
|
} & React.RefAttributes<PopperAnchorRef>>;
|
|
94
97
|
type PopperContentElement = HTMLElement | View;
|
|
95
98
|
export type PopperContentProps = SizableStackProps;
|
|
96
|
-
export declare const
|
|
99
|
+
export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "children" | "display" | "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<{
|
|
100
|
+
readonly fullscreen?: boolean | undefined;
|
|
101
|
+
readonly elevation?: SizeTokens | undefined;
|
|
102
|
+
} & {
|
|
103
|
+
readonly backgrounded?: boolean | undefined;
|
|
104
|
+
readonly radiused?: boolean | undefined;
|
|
105
|
+
readonly hoverTheme?: boolean | undefined;
|
|
106
|
+
readonly pressTheme?: boolean | undefined;
|
|
107
|
+
readonly focusTheme?: boolean | undefined;
|
|
108
|
+
readonly circular?: boolean | undefined;
|
|
109
|
+
readonly padded?: boolean | undefined;
|
|
110
|
+
readonly elevate?: boolean | undefined;
|
|
111
|
+
readonly bordered?: number | boolean | undefined;
|
|
112
|
+
readonly transparent?: boolean | undefined;
|
|
113
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
114
|
+
}, "size" | "unstyled"> & {
|
|
115
|
+
readonly unstyled?: boolean | undefined;
|
|
116
|
+
readonly size?: SizeTokens | undefined;
|
|
117
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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<{
|
|
118
|
+
readonly fullscreen?: boolean | undefined;
|
|
119
|
+
readonly elevation?: SizeTokens | undefined;
|
|
120
|
+
} & {
|
|
121
|
+
readonly backgrounded?: boolean | undefined;
|
|
122
|
+
readonly radiused?: boolean | undefined;
|
|
123
|
+
readonly hoverTheme?: boolean | undefined;
|
|
124
|
+
readonly pressTheme?: boolean | undefined;
|
|
125
|
+
readonly focusTheme?: boolean | undefined;
|
|
126
|
+
readonly circular?: boolean | undefined;
|
|
127
|
+
readonly padded?: boolean | undefined;
|
|
128
|
+
readonly elevate?: boolean | undefined;
|
|
129
|
+
readonly bordered?: number | boolean | undefined;
|
|
130
|
+
readonly transparent?: boolean | undefined;
|
|
131
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
132
|
+
}, "size" | "unstyled"> & {
|
|
133
|
+
readonly unstyled?: boolean | undefined;
|
|
134
|
+
readonly size?: SizeTokens | undefined;
|
|
135
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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<{
|
|
136
|
+
readonly fullscreen?: boolean | undefined;
|
|
137
|
+
readonly elevation?: SizeTokens | undefined;
|
|
138
|
+
} & {
|
|
139
|
+
readonly backgrounded?: boolean | undefined;
|
|
140
|
+
readonly radiused?: boolean | undefined;
|
|
141
|
+
readonly hoverTheme?: boolean | undefined;
|
|
142
|
+
readonly pressTheme?: boolean | undefined;
|
|
143
|
+
readonly focusTheme?: boolean | undefined;
|
|
144
|
+
readonly circular?: boolean | undefined;
|
|
145
|
+
readonly padded?: boolean | undefined;
|
|
146
|
+
readonly elevate?: boolean | undefined;
|
|
147
|
+
readonly bordered?: number | boolean | undefined;
|
|
148
|
+
readonly transparent?: boolean | undefined;
|
|
149
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
150
|
+
}, "size" | "unstyled"> & {
|
|
151
|
+
readonly unstyled?: boolean | undefined;
|
|
152
|
+
readonly size?: SizeTokens | undefined;
|
|
153
|
+
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "children" | "display" | "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, {
|
|
154
|
+
readonly fullscreen?: boolean | undefined;
|
|
155
|
+
readonly elevation?: SizeTokens | undefined;
|
|
156
|
+
} & {
|
|
157
|
+
readonly backgrounded?: boolean | undefined;
|
|
158
|
+
readonly radiused?: boolean | undefined;
|
|
159
|
+
readonly hoverTheme?: boolean | undefined;
|
|
160
|
+
readonly pressTheme?: boolean | undefined;
|
|
161
|
+
readonly focusTheme?: boolean | undefined;
|
|
162
|
+
readonly circular?: boolean | undefined;
|
|
163
|
+
readonly padded?: boolean | undefined;
|
|
164
|
+
readonly elevate?: boolean | undefined;
|
|
165
|
+
readonly bordered?: number | boolean | undefined;
|
|
166
|
+
readonly transparent?: boolean | undefined;
|
|
167
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
168
|
+
} & {
|
|
169
|
+
readonly unstyled?: boolean | undefined;
|
|
170
|
+
readonly size?: SizeTokens | undefined;
|
|
171
|
+
}>;
|
|
172
|
+
export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "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<{
|
|
97
173
|
readonly fullscreen?: boolean | undefined;
|
|
98
174
|
readonly elevation?: SizeTokens | undefined;
|
|
99
175
|
}, "size" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered"> & {
|
|
@@ -104,7 +180,7 @@ export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import(
|
|
|
104
180
|
readonly elevate?: boolean | undefined;
|
|
105
181
|
readonly bordered?: number | boolean | undefined;
|
|
106
182
|
readonly size?: SizeTokens | undefined;
|
|
107
|
-
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "
|
|
183
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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<{
|
|
108
184
|
readonly fullscreen?: boolean | undefined;
|
|
109
185
|
readonly elevation?: SizeTokens | undefined;
|
|
110
186
|
}, "size" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered"> & {
|
|
@@ -115,7 +191,7 @@ export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import(
|
|
|
115
191
|
readonly elevate?: boolean | undefined;
|
|
116
192
|
readonly bordered?: number | boolean | undefined;
|
|
117
193
|
readonly size?: SizeTokens | undefined;
|
|
118
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "
|
|
194
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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<{
|
|
119
195
|
readonly fullscreen?: boolean | undefined;
|
|
120
196
|
readonly elevation?: SizeTokens | undefined;
|
|
121
197
|
}, "size" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered"> & {
|
|
@@ -132,13 +208,13 @@ export type PopperArrowProps = YStackProps & {
|
|
|
132
208
|
offset?: number;
|
|
133
209
|
size?: SizeTokens;
|
|
134
210
|
};
|
|
135
|
-
export declare const PopperArrow: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "
|
|
211
|
+
export declare const PopperArrow: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "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"> & {
|
|
136
212
|
readonly fullscreen?: boolean | undefined;
|
|
137
213
|
readonly elevation?: SizeTokens | undefined;
|
|
138
|
-
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "
|
|
214
|
+
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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"> & {
|
|
139
215
|
readonly fullscreen?: boolean | undefined;
|
|
140
216
|
readonly elevation?: SizeTokens | undefined;
|
|
141
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "
|
|
217
|
+
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "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"> & {
|
|
142
218
|
readonly fullscreen?: boolean | undefined;
|
|
143
219
|
readonly elevation?: SizeTokens | undefined;
|
|
144
220
|
}>> & {
|
package/types/Popper.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,UAAU,EAMX,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AACnE,OAAO,EACL,MAAM,EACN,SAAS,EACT,QAAQ,EACR,iBAAiB,EAGjB,IAAI,EAEJ,KAAK,EAEN,MAAM,mBAAmB,CAAA;AAE1B,OAAO,EAAE,iBAAiB,EAA0B,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACxF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAY,IAAI,EAAuB,MAAM,cAAc,CAAA;AAElE,KAAK,UAAU,GAAG,OAAO,KAAK,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AACnF,KAAK,SAAS,GAAG,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"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"}
|