@tamagui/popper 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 +11 -11
- package/types/Popper.d.ts +24 -24
- package/types/Popper.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/popper",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -36,22 +36,22 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@tamagui/compose-refs": "1.
|
|
40
|
-
"@tamagui/constants": "1.
|
|
41
|
-
"@tamagui/core": "1.
|
|
42
|
-
"@tamagui/floating": "1.
|
|
43
|
-
"@tamagui/get-token": "1.
|
|
44
|
-
"@tamagui/stacks": "1.
|
|
45
|
-
"@tamagui/start-transition": "1.
|
|
46
|
-
"@tamagui/use-controllable-state": "1.
|
|
39
|
+
"@tamagui/compose-refs": "1.121.0",
|
|
40
|
+
"@tamagui/constants": "1.121.0",
|
|
41
|
+
"@tamagui/core": "1.121.0",
|
|
42
|
+
"@tamagui/floating": "1.121.0",
|
|
43
|
+
"@tamagui/get-token": "1.121.0",
|
|
44
|
+
"@tamagui/stacks": "1.121.0",
|
|
45
|
+
"@tamagui/start-transition": "1.121.0",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.121.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "*"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@tamagui/build": "1.
|
|
52
|
+
"@tamagui/build": "1.121.0",
|
|
53
53
|
"react": "*",
|
|
54
|
-
"react-native": "0.
|
|
54
|
+
"react-native": "^0.76.5"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
package/types/Popper.d.ts
CHANGED
|
@@ -41,33 +41,33 @@ type PopperAnchorRef = HTMLElement | View;
|
|
|
41
41
|
export type PopperAnchorProps = YStackProps & {
|
|
42
42
|
virtualRef?: React.RefObject<any>;
|
|
43
43
|
};
|
|
44
|
-
export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"
|
|
44
|
+
export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
45
45
|
elevation?: number | SizeTokens | undefined;
|
|
46
|
-
fullscreen?: boolean | undefined;
|
|
47
46
|
inset?: number | SizeTokens | {
|
|
48
47
|
top?: number;
|
|
49
48
|
bottom?: number;
|
|
50
49
|
left?: number;
|
|
51
50
|
right?: number;
|
|
52
|
-
} | undefined;
|
|
51
|
+
} | null | undefined;
|
|
52
|
+
fullscreen?: boolean | undefined;
|
|
53
53
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
54
54
|
elevation?: number | SizeTokens | undefined;
|
|
55
|
-
fullscreen?: boolean | undefined;
|
|
56
55
|
inset?: number | SizeTokens | {
|
|
57
56
|
top?: number;
|
|
58
57
|
bottom?: number;
|
|
59
58
|
left?: number;
|
|
60
59
|
right?: number;
|
|
61
|
-
} | undefined;
|
|
60
|
+
} | null | undefined;
|
|
61
|
+
fullscreen?: boolean | undefined;
|
|
62
62
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
63
63
|
elevation?: number | SizeTokens | undefined;
|
|
64
|
-
fullscreen?: boolean | undefined;
|
|
65
64
|
inset?: number | SizeTokens | {
|
|
66
65
|
top?: number;
|
|
67
66
|
bottom?: number;
|
|
68
67
|
left?: number;
|
|
69
68
|
right?: number;
|
|
70
|
-
} | undefined;
|
|
69
|
+
} | null | undefined;
|
|
70
|
+
fullscreen?: boolean | undefined;
|
|
71
71
|
}>> & {
|
|
72
72
|
virtualRef?: React.RefObject<any>;
|
|
73
73
|
} & {
|
|
@@ -80,13 +80,13 @@ export type PopperContentProps = SizableStackProps & {
|
|
|
80
80
|
export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
81
81
|
size?: SizeTokens | undefined;
|
|
82
82
|
elevation?: number | SizeTokens | undefined;
|
|
83
|
-
fullscreen?: boolean | undefined;
|
|
84
83
|
inset?: number | SizeTokens | {
|
|
85
84
|
top?: number;
|
|
86
85
|
bottom?: number;
|
|
87
86
|
left?: number;
|
|
88
87
|
right?: number;
|
|
89
|
-
} | undefined;
|
|
88
|
+
} | null | undefined;
|
|
89
|
+
fullscreen?: boolean | undefined;
|
|
90
90
|
circular?: boolean | undefined;
|
|
91
91
|
hoverTheme?: boolean | undefined;
|
|
92
92
|
pressTheme?: boolean | undefined;
|
|
@@ -94,23 +94,23 @@ export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponen
|
|
|
94
94
|
elevate?: boolean | undefined;
|
|
95
95
|
bordered?: number | boolean | undefined;
|
|
96
96
|
unstyled?: boolean | undefined;
|
|
97
|
-
radiused?: boolean | undefined;
|
|
98
97
|
transparent?: boolean | undefined;
|
|
99
98
|
backgrounded?: boolean | undefined;
|
|
99
|
+
radiused?: boolean | undefined;
|
|
100
100
|
padded?: boolean | undefined;
|
|
101
101
|
chromeless?: boolean | "all" | undefined;
|
|
102
102
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
103
|
-
export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "
|
|
103
|
+
export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
104
104
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
105
105
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
106
|
-
fullscreen?: boolean | undefined;
|
|
107
|
-
circular?: boolean | undefined;
|
|
108
106
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
109
107
|
top?: number;
|
|
110
108
|
bottom?: number;
|
|
111
109
|
left?: number;
|
|
112
110
|
right?: number;
|
|
113
|
-
} | undefined;
|
|
111
|
+
} | null | undefined;
|
|
112
|
+
fullscreen?: boolean | undefined;
|
|
113
|
+
circular?: boolean | undefined;
|
|
114
114
|
hoverTheme?: boolean | undefined;
|
|
115
115
|
pressTheme?: boolean | undefined;
|
|
116
116
|
focusTheme?: boolean | undefined;
|
|
@@ -120,14 +120,14 @@ export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import(
|
|
|
120
120
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
121
121
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
122
122
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
123
|
-
fullscreen?: boolean | undefined;
|
|
124
|
-
circular?: boolean | undefined;
|
|
125
123
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
126
124
|
top?: number;
|
|
127
125
|
bottom?: number;
|
|
128
126
|
left?: number;
|
|
129
127
|
right?: number;
|
|
130
|
-
} | undefined;
|
|
128
|
+
} | null | undefined;
|
|
129
|
+
fullscreen?: boolean | undefined;
|
|
130
|
+
circular?: boolean | undefined;
|
|
131
131
|
hoverTheme?: boolean | undefined;
|
|
132
132
|
pressTheme?: boolean | undefined;
|
|
133
133
|
focusTheme?: boolean | undefined;
|
|
@@ -137,14 +137,14 @@ export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import(
|
|
|
137
137
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
138
138
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
139
139
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
140
|
-
fullscreen?: boolean | undefined;
|
|
141
|
-
circular?: boolean | undefined;
|
|
142
140
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
143
141
|
top?: number;
|
|
144
142
|
bottom?: number;
|
|
145
143
|
left?: number;
|
|
146
144
|
right?: number;
|
|
147
|
-
} | undefined;
|
|
145
|
+
} | null | undefined;
|
|
146
|
+
fullscreen?: boolean | undefined;
|
|
147
|
+
circular?: boolean | undefined;
|
|
148
148
|
hoverTheme?: boolean | undefined;
|
|
149
149
|
pressTheme?: boolean | undefined;
|
|
150
150
|
focusTheme?: boolean | undefined;
|
|
@@ -164,23 +164,23 @@ export type PopperArrowExtraProps = {
|
|
|
164
164
|
export type PopperArrowProps = YStackProps & PopperArrowExtraProps;
|
|
165
165
|
export declare const PopperArrow: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
166
166
|
elevation?: number | SizeTokens | undefined;
|
|
167
|
-
fullscreen?: boolean | undefined;
|
|
168
167
|
inset?: number | SizeTokens | {
|
|
169
168
|
top?: number;
|
|
170
169
|
bottom?: number;
|
|
171
170
|
left?: number;
|
|
172
171
|
right?: number;
|
|
173
|
-
} | undefined;
|
|
172
|
+
} | null | undefined;
|
|
173
|
+
fullscreen?: boolean | undefined;
|
|
174
174
|
unstyled?: boolean | undefined;
|
|
175
175
|
}>, keyof PopperArrowExtraProps> & PopperArrowExtraProps, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & PopperArrowExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
176
176
|
elevation?: number | SizeTokens | undefined;
|
|
177
|
-
fullscreen?: boolean | undefined;
|
|
178
177
|
inset?: number | SizeTokens | {
|
|
179
178
|
top?: number;
|
|
180
179
|
bottom?: number;
|
|
181
180
|
left?: number;
|
|
182
181
|
right?: number;
|
|
183
|
-
} | undefined;
|
|
182
|
+
} | null | undefined;
|
|
183
|
+
fullscreen?: boolean | undefined;
|
|
184
184
|
unstyled?: boolean | undefined;
|
|
185
185
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
186
186
|
export {};
|
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,KAAK,EAAE,WAAW,EAAE,UAAU,EAAc,MAAM,eAAe,CAAA;AASxE,OAAO,KAAK,EACV,MAAM,EACN,aAAa,EACb,SAAS,EACT,QAAQ,EACR,iBAAiB,EAClB,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EAGL,IAAI,EAGJ,KAAK,EAEN,MAAM,mBAAmB,CAAA;AAE1B,OAAO,KAAK,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAGrE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAGxC,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;AAMjF,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,GAAG;IACnD,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,QAAQ,EAAE,GAAG,CAAA;IACb,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,WAAW,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG;QAC7B,YAAY,EAAE,MAAM,CAAA;KACrB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,aAAa,2DAAqD,CAAA;AAE/E,eAAO,MAA0B,gBAAgB,0CAAY,cAAc;;;EAC5D,CAAA;AAEf,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,WAAW,CAAC,EAAE,UAAU,GAAG,OAAO,CAAA;IAClC,SAAS,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;IAC/B,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,MAAM,CAAC,EAAE,aAAa,CAAA;IACtB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,KAAK,iBAAiB,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;AAgBpD,MAAM,MAAM,kBAAkB,GAAG;IAC/B,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAID,wBAAgB,WAAW,CAAC,OAAO,CAAC,EAAE,kBAAkB,QAEvD;AAED,wBAAgB,MAAM,CAAC,KAAK,EAAE,iBAAiB,CAAC,WAAW,CAAC,2CAyG3D;AAMD,KAAK,eAAe,GAAG,WAAW,GAAG,IAAI,CAAA;AAEzC,MAAM,MAAM,iBAAiB,GAAG,WAAW,GAAG;IAC5C,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAA;CAClC,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAHV,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC;;;yCAgClC,CAAA;AAMD,KAAK,oBAAoB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE9C,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,GAAG;IACnD,gCAAgC,CAAC,EAAE,OAAO,CAAA;CAC3C,CAAA;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;8CA0B7B,CAAA;AAEF,eAAO,MAAM,aAAa;kBAjRxB,eACK;gCAID,eACF
|
|
1
|
+
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"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"}
|