@tamagui/button 1.30.19 → 1.30.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/package.json +7 -7
- package/types/Button.d.ts +74 -26
- package/types/Button.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/button",
|
|
3
|
-
"version": "1.30.
|
|
3
|
+
"version": "1.30.21",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@tamagui/font-size": "1.30.
|
|
33
|
-
"@tamagui/get-button-sized": "1.30.
|
|
34
|
-
"@tamagui/helpers-tamagui": "1.30.
|
|
35
|
-
"@tamagui/text": "1.30.
|
|
36
|
-
"@tamagui/web": "1.30.
|
|
32
|
+
"@tamagui/font-size": "1.30.21",
|
|
33
|
+
"@tamagui/get-button-sized": "1.30.21",
|
|
34
|
+
"@tamagui/helpers-tamagui": "1.30.21",
|
|
35
|
+
"@tamagui/text": "1.30.21",
|
|
36
|
+
"@tamagui/web": "1.30.21"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": "*"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@tamagui/build": "1.30.
|
|
42
|
+
"@tamagui/build": "1.30.21",
|
|
43
43
|
"react": "^18.2.0",
|
|
44
44
|
"vitest": "^0.26.3"
|
|
45
45
|
},
|
package/types/Button.d.ts
CHANGED
|
@@ -37,7 +37,9 @@ type ButtonProps = Omit<TextParentStyles, 'TextComponent'> & GetProps<typeof But
|
|
|
37
37
|
*/
|
|
38
38
|
unstyled?: boolean;
|
|
39
39
|
};
|
|
40
|
-
declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
40
|
+
declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
41
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
42
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
41
43
|
readonly fullscreen?: boolean | undefined;
|
|
42
44
|
readonly elevation?: SizeTokens | undefined;
|
|
43
45
|
} & {
|
|
@@ -57,7 +59,9 @@ declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<Omit<import("
|
|
|
57
59
|
readonly size?: SizeTokens | undefined;
|
|
58
60
|
readonly active?: boolean | undefined;
|
|
59
61
|
readonly disabled?: boolean | undefined;
|
|
60
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
62
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
63
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
64
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
61
65
|
readonly fullscreen?: boolean | undefined;
|
|
62
66
|
readonly elevation?: SizeTokens | undefined;
|
|
63
67
|
} & {
|
|
@@ -77,7 +81,9 @@ declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<Omit<import("
|
|
|
77
81
|
readonly size?: SizeTokens | undefined;
|
|
78
82
|
readonly active?: boolean | undefined;
|
|
79
83
|
readonly disabled?: boolean | undefined;
|
|
80
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
84
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
85
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
86
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
81
87
|
readonly fullscreen?: boolean | undefined;
|
|
82
88
|
readonly elevation?: SizeTokens | undefined;
|
|
83
89
|
} & {
|
|
@@ -97,7 +103,9 @@ declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<Omit<import("
|
|
|
97
103
|
readonly size?: SizeTokens | undefined;
|
|
98
104
|
readonly active?: boolean | undefined;
|
|
99
105
|
readonly disabled?: boolean | undefined;
|
|
100
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
106
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
107
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
108
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, {
|
|
101
109
|
readonly fullscreen?: boolean | undefined;
|
|
102
110
|
readonly elevation?: SizeTokens | undefined;
|
|
103
111
|
} & {
|
|
@@ -120,17 +128,23 @@ declare const ButtonFrame: import("@tamagui/web").TamaguiComponent<Omit<import("
|
|
|
120
128
|
}, {
|
|
121
129
|
displayName: string | undefined;
|
|
122
130
|
}>;
|
|
123
|
-
declare const ButtonText: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").TextProps, "children" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").
|
|
131
|
+
declare const ButtonText: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").TextProps, "children" | "style" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
132
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").TextStyle>;
|
|
133
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
124
134
|
readonly unstyled?: boolean | undefined;
|
|
125
135
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
126
136
|
}, "unstyled"> & {
|
|
127
137
|
readonly unstyled?: boolean | undefined;
|
|
128
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").TextProps, "children" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").
|
|
138
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").TextProps, "children" | "style" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
139
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").TextStyle>;
|
|
140
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
129
141
|
readonly unstyled?: boolean | undefined;
|
|
130
142
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
131
143
|
}, "unstyled"> & {
|
|
132
144
|
readonly unstyled?: boolean | undefined;
|
|
133
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").TextProps, "children" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").
|
|
145
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").TextProps, "children" | "style" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
146
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").TextStyle>;
|
|
147
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
134
148
|
readonly unstyled?: boolean | undefined;
|
|
135
149
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
136
150
|
}, "unstyled"> & {
|
|
@@ -153,7 +167,9 @@ declare const ButtonIcon: (props: {
|
|
|
153
167
|
declare const buttonStaticConfig: {
|
|
154
168
|
inlineProps: Set<string>;
|
|
155
169
|
};
|
|
156
|
-
declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextParentStyles, "TextComponent"> & Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
170
|
+
declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextParentStyles, "TextComponent"> & Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
171
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
172
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
157
173
|
readonly fullscreen?: boolean | undefined;
|
|
158
174
|
readonly elevation?: SizeTokens | undefined;
|
|
159
175
|
} & {
|
|
@@ -173,7 +189,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
173
189
|
readonly size?: SizeTokens | undefined;
|
|
174
190
|
readonly active?: boolean | undefined;
|
|
175
191
|
readonly disabled?: boolean | undefined;
|
|
176
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
192
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
193
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
194
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
177
195
|
readonly fullscreen?: boolean | undefined;
|
|
178
196
|
readonly elevation?: SizeTokens | undefined;
|
|
179
197
|
} & {
|
|
@@ -193,7 +211,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
193
211
|
readonly size?: SizeTokens | undefined;
|
|
194
212
|
readonly active?: boolean | undefined;
|
|
195
213
|
readonly disabled?: boolean | undefined;
|
|
196
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
214
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
215
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
216
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
197
217
|
readonly fullscreen?: boolean | undefined;
|
|
198
218
|
readonly elevation?: SizeTokens | undefined;
|
|
199
219
|
} & {
|
|
@@ -240,7 +260,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
240
260
|
*
|
|
241
261
|
*/
|
|
242
262
|
unstyled?: boolean | undefined;
|
|
243
|
-
} & Omit<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
263
|
+
} & Omit<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
264
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
265
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
244
266
|
readonly fullscreen?: boolean | undefined;
|
|
245
267
|
readonly elevation?: SizeTokens | undefined;
|
|
246
268
|
} & {
|
|
@@ -260,7 +282,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
260
282
|
readonly size?: SizeTokens | undefined;
|
|
261
283
|
readonly active?: boolean | undefined;
|
|
262
284
|
readonly disabled?: boolean | undefined;
|
|
263
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
285
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
286
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
287
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
264
288
|
readonly fullscreen?: boolean | undefined;
|
|
265
289
|
readonly elevation?: SizeTokens | undefined;
|
|
266
290
|
} & {
|
|
@@ -280,7 +304,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
280
304
|
readonly size?: SizeTokens | undefined;
|
|
281
305
|
readonly active?: boolean | undefined;
|
|
282
306
|
readonly disabled?: boolean | undefined;
|
|
283
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
307
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
308
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
309
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
284
310
|
readonly fullscreen?: boolean | undefined;
|
|
285
311
|
readonly elevation?: SizeTokens | undefined;
|
|
286
312
|
} & {
|
|
@@ -300,9 +326,11 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
300
326
|
readonly size?: SizeTokens | undefined;
|
|
301
327
|
readonly active?: boolean | undefined;
|
|
302
328
|
readonly disabled?: boolean | undefined;
|
|
303
|
-
}>>, "userSelect" | "cursor" | "pointerEvents" | "color" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "textAlign" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "backgroundColor" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftColor" | "borderLeftWidth" | "borderColor" | "borderRadius" | "borderStyle" | "borderRightWidth" | "borderRightColor" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "borderWidth" | "display" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "maxHeight" | "maxWidth" | "marginBottom" | "minHeight" | "minWidth" | "marginLeft" | "marginRight" | "marginTop" | "marginHorizontal" | "marginVertical" | "opacity" | "overflow" | "padding" | "paddingBottom" | "paddingLeft" | "position" | "paddingRight" | "paddingTop" | "paddingHorizontal" | "paddingVertical" | "right" | "shadowColor" | "shadowRadius" | "shadowOffset" | "shadowOpacity" | "top" | "width" | "zIndex" | "space" | "size" | "contain" | `$${string}` | `$${number}` | "children" | "onLayout" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "
|
|
329
|
+
}>>, "userSelect" | "cursor" | "pointerEvents" | "color" | "fontFamily" | "fontSize" | "fontStyle" | "fontWeight" | "letterSpacing" | "textAlign" | "alignContent" | "alignItems" | "alignSelf" | "bottom" | "backgroundColor" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomWidth" | "borderLeftColor" | "borderLeftWidth" | "borderColor" | "borderRadius" | "borderStyle" | "borderRightWidth" | "borderRightColor" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopWidth" | "borderWidth" | "display" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "maxHeight" | "maxWidth" | "marginBottom" | "minHeight" | "minWidth" | "marginLeft" | "marginRight" | "marginTop" | "marginHorizontal" | "marginVertical" | "opacity" | "overflow" | "padding" | "paddingBottom" | "paddingLeft" | "position" | "paddingRight" | "paddingTop" | "paddingHorizontal" | "paddingVertical" | "right" | "shadowColor" | "shadowRadius" | "shadowOffset" | "shadowOpacity" | "top" | "width" | "zIndex" | "space" | "size" | "contain" | `$${string}` | `$${number}` | "children" | "onLayout" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "id" | "onPress" | "onPressIn" | "onPressOut" | "testID" | "nativeID" | "disabled" | "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" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | "gap" | "columnGap" | "rowGap" | "borderBottomEndRadius" | "borderBottomStartRadius" | "borderEndColor" | "borderStartColor" | "borderTopEndRadius" | "borderTopStartRadius" | "aspectRatio" | "borderEndWidth" | "borderStartWidth" | "end" | "marginEnd" | "marginStart" | "paddingEnd" | "paddingStart" | "start" | "direction" | "transform" | "transformMatrix" | "rotation" | "scaleX" | "scaleY" | "translateX" | "translateY" | "unstyled" | "x" | "y" | "perspective" | "scale" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "outlineColor" | "outlineStyle" | "outlineOffset" | "outlineWidth" | "theme" | "hitSlop" | "removeClippedSubviews" | "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" | "separator" | "target" | "asChild" | "spaceDirection" | "dangerouslySetInnerHTML" | "animation" | "animateOnly" | "debug" | "className" | "themeShallow" | "tag" | "componentName" | "tabIndex" | "forceStyle" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onScroll" | "hoverStyle" | "pressStyle" | "focusStyle" | "exitStyle" | "enterStyle" | "textProps" | "noTextWrap" | "transparent" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "circular" | "backgrounded" | "radiused" | "padded" | "chromeless" | "fullscreen" | "rel" | "download" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "href" | "hrefAttrs" | "elevationAndroid" | "active" | "themeInverse" | "themeReset" | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace">, import("@tamagui/web").TamaguiElement> & {
|
|
304
330
|
staticConfig: import("@tamagui/web").StaticConfigParsed;
|
|
305
|
-
styleable: import("@tamagui/web").Styleable<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
331
|
+
styleable: import("@tamagui/web").Styleable<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
332
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
333
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
306
334
|
readonly fullscreen?: boolean | undefined;
|
|
307
335
|
readonly elevation?: SizeTokens | undefined;
|
|
308
336
|
} & {
|
|
@@ -322,7 +350,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
322
350
|
readonly size?: SizeTokens | undefined;
|
|
323
351
|
readonly active?: boolean | undefined;
|
|
324
352
|
readonly disabled?: boolean | undefined;
|
|
325
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
353
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
354
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
355
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
326
356
|
readonly fullscreen?: boolean | undefined;
|
|
327
357
|
readonly elevation?: SizeTokens | undefined;
|
|
328
358
|
} & {
|
|
@@ -342,7 +372,9 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
342
372
|
readonly size?: SizeTokens | undefined;
|
|
343
373
|
readonly active?: boolean | undefined;
|
|
344
374
|
readonly disabled?: boolean | undefined;
|
|
345
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
375
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
376
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
377
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
346
378
|
readonly fullscreen?: boolean | undefined;
|
|
347
379
|
readonly elevation?: SizeTokens | undefined;
|
|
348
380
|
} & {
|
|
@@ -364,17 +396,23 @@ declare const Button: import("@tamagui/web").ReactComponentWithRef<Omit<TextPare
|
|
|
364
396
|
readonly disabled?: boolean | undefined;
|
|
365
397
|
}>>, import("@tamagui/web").TamaguiElement>;
|
|
366
398
|
} & {
|
|
367
|
-
Text: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").TextProps, "children" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").
|
|
399
|
+
Text: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").TextProps, "children" | "style" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
400
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").TextStyle>;
|
|
401
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
368
402
|
readonly unstyled?: boolean | undefined;
|
|
369
403
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
370
404
|
}, "unstyled"> & {
|
|
371
405
|
readonly unstyled?: boolean | undefined;
|
|
372
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").TextProps, "children" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").
|
|
406
|
+
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").TextProps, "children" | "style" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
407
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").TextStyle>;
|
|
408
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
373
409
|
readonly unstyled?: boolean | undefined;
|
|
374
410
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
375
411
|
}, "unstyled"> & {
|
|
376
412
|
readonly unstyled?: boolean | undefined;
|
|
377
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").TextProps, "children" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").
|
|
413
|
+
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").TextProps, "children" | "style" | ("onLayout" | keyof import("react-native/types").GestureResponderHandlers)> & import("@tamagui/web").ExtendBaseTextProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
414
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").TextStyle>;
|
|
415
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").TextStylePropsBase>> & Omit<{
|
|
378
416
|
readonly unstyled?: boolean | undefined;
|
|
379
417
|
readonly size?: import("@tamagui/web").FontSizeTokens | undefined;
|
|
380
418
|
}, "unstyled"> & {
|
|
@@ -404,7 +442,6 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
404
442
|
children: string | number | boolean | JSX.Element | import("react").ReactFragment | null | undefined;
|
|
405
443
|
pointerEvents?: "none" | "auto" | "box-none" | "box-only" | undefined;
|
|
406
444
|
id?: string | undefined;
|
|
407
|
-
style?: import("react-native/types").StyleProp<import("react-native/types").ViewStyle>;
|
|
408
445
|
testID?: string | undefined;
|
|
409
446
|
nativeID?: string | undefined;
|
|
410
447
|
accessible?: boolean | undefined;
|
|
@@ -501,6 +538,7 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
501
538
|
onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
502
539
|
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
503
540
|
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
541
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
504
542
|
alignContent?: "center" | "flex-start" | "flex-end" | "stretch" | "space-between" | "space-around" | undefined;
|
|
505
543
|
alignItems?: import("react-native/types").FlexAlignType | undefined;
|
|
506
544
|
alignSelf?: "auto" | import("react-native/types").FlexAlignType | undefined;
|
|
@@ -660,7 +698,9 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
660
698
|
unstyled?: boolean | undefined;
|
|
661
699
|
size?: SizeTokens | undefined;
|
|
662
700
|
active?: boolean | undefined;
|
|
663
|
-
hoverStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
701
|
+
hoverStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
702
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
703
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
664
704
|
readonly fullscreen?: boolean | undefined;
|
|
665
705
|
readonly elevation?: SizeTokens | undefined;
|
|
666
706
|
} & {
|
|
@@ -681,7 +721,9 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
681
721
|
readonly active?: boolean | undefined;
|
|
682
722
|
readonly disabled?: boolean | undefined;
|
|
683
723
|
}> | null | undefined;
|
|
684
|
-
pressStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
724
|
+
pressStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
725
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
726
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
685
727
|
readonly fullscreen?: boolean | undefined;
|
|
686
728
|
readonly elevation?: SizeTokens | undefined;
|
|
687
729
|
} & {
|
|
@@ -702,7 +744,9 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
702
744
|
readonly active?: boolean | undefined;
|
|
703
745
|
readonly disabled?: boolean | undefined;
|
|
704
746
|
}> | null | undefined;
|
|
705
|
-
focusStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
747
|
+
focusStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
748
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
749
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
706
750
|
readonly fullscreen?: boolean | undefined;
|
|
707
751
|
readonly elevation?: SizeTokens | undefined;
|
|
708
752
|
} & {
|
|
@@ -723,7 +767,9 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
723
767
|
readonly active?: boolean | undefined;
|
|
724
768
|
readonly disabled?: boolean | undefined;
|
|
725
769
|
}> | null | undefined;
|
|
726
|
-
exitStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
770
|
+
exitStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
771
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
772
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
727
773
|
readonly fullscreen?: boolean | undefined;
|
|
728
774
|
readonly elevation?: SizeTokens | undefined;
|
|
729
775
|
} & {
|
|
@@ -744,7 +790,9 @@ declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
744
790
|
readonly active?: boolean | undefined;
|
|
745
791
|
readonly disabled?: boolean | undefined;
|
|
746
792
|
}> | null | undefined;
|
|
747
|
-
enterStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers
|
|
793
|
+
enterStyle?: Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & {
|
|
794
|
+
style?: import("@tamagui/web").StyleProp<import("react").CSSProperties & import("react-native/types").ViewStyle>;
|
|
795
|
+
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
748
796
|
readonly fullscreen?: boolean | undefined;
|
|
749
797
|
readonly elevation?: SizeTokens | undefined;
|
|
750
798
|
} & {
|
package/types/Button.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,iBAAiB,EACjB,gBAAgB,EAEjB,MAAM,eAAe,CAAA;AACtB,OAAO,EAEL,QAAQ,EACR,UAAU,EACV,cAAc,EAQf,MAAM,cAAc,CAAA;AACrB,OAAO,EAAE,iBAAiB,EAAc,MAAM,OAAO,CAAA;AAErD,eAAO,MAAM,aAAa;UAEhB,UAAU;EAWlB,CAAA;AAEF,KAAK,eAAe,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA;AACxD,KAAK,QAAQ,GAAG,GAAG,CAAC,OAAO,GAAG,iBAAiB,CAAC,eAAe,CAAC,GAAG,IAAI,CAAA;AAEvE,KAAK,WAAW,GAAG,IAAI,CAAC,gBAAgB,EAAE,eAAe,CAAC,GACxD,QAAQ,CAAC,OAAO,WAAW,CAAC,GAC5B,cAAc,GAAG;IACf;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,QAAQ,CAAA;IACpB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;IAC5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAIH,QAAA,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../src/Button.tsx"],"names":[],"mappings":"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"}
|