@tamagui/button 2.7.7 → 3.0.0-beta.643.1
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/Button.cjs +180 -266
- package/dist/cjs/Button.native.cjs +224 -0
- package/dist/cjs/Button.native.js +200 -271
- package/dist/cjs/Button.native.js.map +1 -1
- package/dist/cjs/index.cjs +10 -11
- package/dist/cjs/index.native.cjs +21 -0
- package/dist/cjs/index.native.js +10 -10
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/esm/Button.mjs +168 -255
- package/dist/esm/Button.mjs.map +1 -1
- package/dist/esm/Button.native.js +188 -261
- package/dist/esm/Button.native.js.map +1 -1
- package/dist/esm/index.js +1 -2
- package/dist/esm/index.mjs +1 -2
- package/dist/esm/index.native.js +1 -2
- package/dist/jsx/Button.mjs +168 -255
- package/dist/jsx/Button.mjs.map +1 -1
- package/dist/jsx/Button.native.cjs +224 -0
- package/dist/jsx/Button.native.js +200 -271
- package/dist/jsx/Button.native.js.map +1 -1
- package/dist/jsx/index.js +1 -2
- package/dist/jsx/index.mjs +1 -2
- package/dist/jsx/index.native.cjs +21 -0
- package/dist/jsx/index.native.js +10 -10
- package/dist/jsx/index.native.js.map +1 -1
- package/package.json +11 -12
- package/src/Button.tsx +222 -280
- package/types/Button.d.ts +218 -114
- package/types/Button.d.ts.map +1 -1
- package/dist/cjs/Button.test.cjs +0 -37
- package/dist/cjs/Button.test.native.js +0 -40
- package/dist/cjs/Button.test.native.js.map +0 -1
- package/dist/esm/Button.test.mjs +0 -38
- package/dist/esm/Button.test.mjs.map +0 -1
- package/dist/esm/Button.test.native.js +0 -38
- package/dist/esm/Button.test.native.js.map +0 -1
- package/dist/esm/index.js.map +0 -1
- package/dist/esm/index.mjs.map +0 -1
- package/dist/esm/index.native.js.map +0 -1
- package/dist/jsx/Button.test.mjs +0 -38
- package/dist/jsx/Button.test.mjs.map +0 -1
- package/dist/jsx/Button.test.native.js +0 -40
- package/dist/jsx/Button.test.native.js.map +0 -1
- package/dist/jsx/index.js.map +0 -1
- package/dist/jsx/index.mjs.map +0 -1
- package/src/Button.test.tsx +0 -45
- package/types/Button.test.d.ts +0 -2
- package/types/Button.test.d.ts.map +0 -1
|
@@ -1,268 +1,195 @@
|
|
|
1
|
-
import { jsx
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import { SizableText, wrapChildrenInText } from "@tamagui/text";
|
|
7
|
-
import { createStyledContext, getTokenValue, styled, useProps, View, withStaticProperties } from "@tamagui/web";
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useGetThemedIcon } from "@tamagui/helpers-tamagui";
|
|
3
|
+
import { ButtonNestingContext } from "@tamagui/stacks";
|
|
4
|
+
import { wrapChildrenInText } from "@tamagui/text";
|
|
5
|
+
import { Text, View, createStyledContext, createStyledHOC, styled, useProps, withStaticProperties } from "@tamagui/web";
|
|
8
6
|
import { useContext } from "react";
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
flexWrap: "nowrap",
|
|
44
|
-
flexDirection: "row",
|
|
45
|
-
backgroundColor: "$background",
|
|
46
|
-
borderWidth: 1,
|
|
47
|
-
borderColor: "transparent",
|
|
48
|
-
"$platform-web": {
|
|
49
|
-
cursor: "pointer"
|
|
50
|
-
},
|
|
51
|
-
hoverStyle: {
|
|
52
|
-
backgroundColor: "$backgroundHover",
|
|
53
|
-
borderColor: "$borderColorHover"
|
|
54
|
-
},
|
|
55
|
-
pressStyle: {
|
|
56
|
-
backgroundColor: "$backgroundPress",
|
|
57
|
-
borderColor: "$borderColorHover"
|
|
58
|
-
},
|
|
59
|
-
focusVisibleStyle: {
|
|
60
|
-
outlineColor: "$outlineColor",
|
|
61
|
-
outlineStyle: "solid",
|
|
62
|
-
outlineWidth: 2
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
variant: {
|
|
67
|
-
outlined: process.env.TAMAGUI_HEADLESS === "1" ? {} : {
|
|
68
|
-
backgroundColor: "transparent",
|
|
69
|
-
borderWidth: 1,
|
|
70
|
-
borderColor: "$borderColor",
|
|
71
|
-
hoverStyle: {
|
|
72
|
-
backgroundColor: "transparent",
|
|
73
|
-
borderColor: "$borderColorHover"
|
|
74
|
-
},
|
|
75
|
-
pressStyle: {
|
|
76
|
-
backgroundColor: "transparent",
|
|
77
|
-
borderColor: "$borderColorPress"
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
circular: themeableVariants.circular,
|
|
82
|
-
chromeless: themeableVariants.chromeless,
|
|
83
|
-
size: {
|
|
84
|
-
"...size": function (val, extras) {
|
|
85
|
-
var buttonStyle = getButtonSized(val, extras);
|
|
86
|
-
var gap = getTokenValue(val);
|
|
87
|
-
return {
|
|
88
|
-
...buttonStyle,
|
|
89
|
-
gap
|
|
90
|
-
};
|
|
91
|
-
},
|
|
92
|
-
":number": function (val, extras) {
|
|
93
|
-
var buttonStyle = getButtonSized(val, extras);
|
|
94
|
-
var gap = val * 0.4;
|
|
95
|
-
return {
|
|
96
|
-
...buttonStyle,
|
|
97
|
-
gap
|
|
98
|
-
};
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
elevation: {
|
|
102
|
-
"...size": getElevation,
|
|
103
|
-
":number": getElevation
|
|
104
|
-
},
|
|
105
|
-
disabled: {
|
|
106
|
-
true: {
|
|
107
|
-
pointerEvents: "none",
|
|
108
|
-
// @ts-ignore
|
|
109
|
-
"aria-disabled": true
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
defaultVariants: {
|
|
114
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
115
|
-
}
|
|
7
|
+
|
|
8
|
+
var buttonContextKeys = [
|
|
9
|
+
"color",
|
|
10
|
+
"ellipsis",
|
|
11
|
+
"fontFamily",
|
|
12
|
+
"fontSize",
|
|
13
|
+
"fontStyle",
|
|
14
|
+
"fontWeight",
|
|
15
|
+
"letterSpacing",
|
|
16
|
+
"maxFontSizeMultiplier",
|
|
17
|
+
"textAlign"
|
|
18
|
+
];
|
|
19
|
+
var ButtonContext = createStyledContext({
|
|
20
|
+
color: void 0,
|
|
21
|
+
ellipsis: void 0,
|
|
22
|
+
fontFamily: void 0,
|
|
23
|
+
fontSize: void 0,
|
|
24
|
+
fontStyle: void 0,
|
|
25
|
+
fontWeight: void 0,
|
|
26
|
+
letterSpacing: void 0,
|
|
27
|
+
maxFontSizeMultiplier: void 0,
|
|
28
|
+
textAlign: void 0
|
|
29
|
+
}, { keys: buttonContextKeys });
|
|
30
|
+
var ButtonFrame = styled(View, {
|
|
31
|
+
context: ButtonContext,
|
|
32
|
+
displayName: "ButtonFrame",
|
|
33
|
+
role: "button",
|
|
34
|
+
render: /* @__PURE__ */ jsx("button", { type: "button" }),
|
|
35
|
+
tabIndex: 0,
|
|
36
|
+
alignItems: "center",
|
|
37
|
+
flexDirection: "row",
|
|
38
|
+
flexWrap: "nowrap",
|
|
39
|
+
justifyContent: "center",
|
|
40
|
+
variants: { disabled: { true: { pointerEvents: "none" } } }
|
|
116
41
|
});
|
|
117
|
-
var
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
userSelect: "none",
|
|
123
|
-
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
124
|
-
flexGrow: 0,
|
|
125
|
-
flexShrink: 1,
|
|
126
|
-
ellipsis: true,
|
|
127
|
-
color: "$color",
|
|
128
|
-
"$platform-web": {
|
|
129
|
-
cursor: "pointer"
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
defaultVariants: {
|
|
135
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
136
|
-
}
|
|
42
|
+
var ButtonText = styled(Text, {
|
|
43
|
+
context: ButtonContext,
|
|
44
|
+
displayName: "ButtonText",
|
|
45
|
+
flexGrow: 0,
|
|
46
|
+
flexShrink: 1
|
|
137
47
|
});
|
|
138
|
-
var
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
}
|
|
148
|
-
var sizeToken = size !== null && size !== void 0 ? size : styledContext.size;
|
|
149
|
-
var iconColorProp = styledContext.color === "unset" || typeof styledContext.color === "number" ? void 0 : styledContext.color;
|
|
150
|
-
var iconColor = useCurrentColor(iconColorProp);
|
|
151
|
-
var iconSize = (typeof sizeToken === "number" ? sizeToken * 0.5 : getFontSize(sizeToken)) * scaleIcon;
|
|
152
|
-
return getIcon(children, {
|
|
153
|
-
size: iconSize,
|
|
154
|
-
color: iconColor
|
|
155
|
-
});
|
|
48
|
+
var ButtonIcon = function(param) {
|
|
49
|
+
var { children, color, scaleIcon = 1, size } = param;
|
|
50
|
+
var styledContext = ButtonContext.useStyledContext();
|
|
51
|
+
var iconColor = color !== null && color !== void 0 ? color : styledContext === null || styledContext === void 0 ? void 0 : styledContext.color;
|
|
52
|
+
var getThemedIcon = useGetThemedIcon({
|
|
53
|
+
color: iconColor === "unset" || typeof iconColor === "number" ? void 0 : iconColor,
|
|
54
|
+
size: size === void 0 ? void 0 : size * scaleIcon
|
|
55
|
+
});
|
|
56
|
+
return getThemedIcon(children);
|
|
156
57
|
};
|
|
157
|
-
var
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
58
|
+
var buttonInternalPropNames = [
|
|
59
|
+
"children",
|
|
60
|
+
"color",
|
|
61
|
+
"disabled",
|
|
62
|
+
"ellipsis",
|
|
63
|
+
"fontFamily",
|
|
64
|
+
"fontSize",
|
|
65
|
+
"fontStyle",
|
|
66
|
+
"fontWeight",
|
|
67
|
+
"icon",
|
|
68
|
+
"iconAfter",
|
|
69
|
+
"iconSize",
|
|
70
|
+
"letterSpacing",
|
|
71
|
+
"maxFontSizeMultiplier",
|
|
72
|
+
"noTextWrap",
|
|
73
|
+
"render",
|
|
74
|
+
"scaleIcon",
|
|
75
|
+
"textAlign",
|
|
76
|
+
"textProps"
|
|
77
|
+
];
|
|
78
|
+
function useButton(propsIn) {
|
|
79
|
+
var { Text: _$Text = ButtonText, iconColor: iconColorOption, iconSize: iconSizeOption, textProps: textPropsOption } = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
80
|
+
var isNested = useContext(ButtonNestingContext);
|
|
81
|
+
var styledContext = ButtonContext.useStyledContext();
|
|
82
|
+
var processedProps = useProps(propsIn, {
|
|
83
|
+
noNormalize: true,
|
|
84
|
+
noExpand: true
|
|
85
|
+
});
|
|
86
|
+
var { children, color, disabled, ellipsis, fontFamily, fontSize, fontStyle, fontWeight, icon, iconAfter, iconSize, letterSpacing, maxFontSizeMultiplier, noTextWrap, render, scaleIcon = 1, textAlign, textProps } = processedProps;
|
|
87
|
+
var frameProps = { ...propsIn };
|
|
88
|
+
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;
|
|
89
|
+
try {
|
|
90
|
+
for (var _iterator = buttonInternalPropNames[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
91
|
+
var key = _step.value;
|
|
92
|
+
delete frameProps[key];
|
|
93
|
+
}
|
|
94
|
+
} catch (err) {
|
|
95
|
+
_didIteratorError = true;
|
|
96
|
+
_iteratorError = err;
|
|
97
|
+
} finally {
|
|
98
|
+
try {
|
|
99
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
100
|
+
_iterator.return();
|
|
101
|
+
}
|
|
102
|
+
} finally {
|
|
103
|
+
if (_didIteratorError) {
|
|
104
|
+
throw _iteratorError;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
var contextColor = color !== null && color !== void 0 ? color : styledContext === null || styledContext === void 0 ? void 0 : styledContext.color;
|
|
109
|
+
var iconColor = iconColorOption !== null && iconColorOption !== void 0 ? iconColorOption : contextColor;
|
|
110
|
+
var resolvedIconSize = iconSize !== null && iconSize !== void 0 ? iconSize : iconSizeOption;
|
|
111
|
+
var getThemedIcon = useGetThemedIcon({
|
|
112
|
+
color: iconColor === "unset" || typeof iconColor === "number" ? void 0 : iconColor,
|
|
113
|
+
size: resolvedIconSize === void 0 ? void 0 : resolvedIconSize * scaleIcon
|
|
114
|
+
});
|
|
115
|
+
var [themedIcon, themedIconAfter] = [icon, iconAfter].map(function(item) {
|
|
116
|
+
return item ? getThemedIcon(item) : null;
|
|
117
|
+
});
|
|
118
|
+
var textContext = {
|
|
119
|
+
color: contextColor,
|
|
120
|
+
ellipsis: ellipsis !== null && ellipsis !== void 0 ? ellipsis : styledContext === null || styledContext === void 0 ? void 0 : styledContext.ellipsis,
|
|
121
|
+
fontFamily: fontFamily !== null && fontFamily !== void 0 ? fontFamily : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontFamily,
|
|
122
|
+
fontSize: fontSize !== null && fontSize !== void 0 ? fontSize : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontSize,
|
|
123
|
+
fontStyle: fontStyle !== null && fontStyle !== void 0 ? fontStyle : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontStyle,
|
|
124
|
+
fontWeight: fontWeight !== null && fontWeight !== void 0 ? fontWeight : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontWeight,
|
|
125
|
+
letterSpacing: letterSpacing !== null && letterSpacing !== void 0 ? letterSpacing : styledContext === null || styledContext === void 0 ? void 0 : styledContext.letterSpacing,
|
|
126
|
+
maxFontSizeMultiplier: maxFontSizeMultiplier !== null && maxFontSizeMultiplier !== void 0 ? maxFontSizeMultiplier : styledContext === null || styledContext === void 0 ? void 0 : styledContext.maxFontSizeMultiplier,
|
|
127
|
+
textAlign: textAlign !== null && textAlign !== void 0 ? textAlign : styledContext === null || styledContext === void 0 ? void 0 : styledContext.textAlign
|
|
128
|
+
};
|
|
129
|
+
var wrappedChildren = wrapChildrenInText(_$Text, {
|
|
130
|
+
children,
|
|
131
|
+
...textContext,
|
|
132
|
+
noTextWrap,
|
|
133
|
+
textProps
|
|
134
|
+
}, {
|
|
135
|
+
...textPropsOption,
|
|
136
|
+
...processedProps.size === void 0 ? null : { size: processedProps.size }
|
|
137
|
+
});
|
|
138
|
+
var resolvedRender = render !== null && render !== void 0 ? render : isNested ? "span" : processedProps.accessibilityRole === "link" || processedProps.role === "link" ? "a" : disabled ? /* @__PURE__ */ jsx("button", {
|
|
139
|
+
type: "button",
|
|
140
|
+
disabled: true
|
|
141
|
+
}) : void 0;
|
|
142
|
+
var props = {
|
|
143
|
+
...frameProps,
|
|
144
|
+
...disabled && {
|
|
145
|
+
"aria-disabled": true,
|
|
146
|
+
disabled: true,
|
|
147
|
+
tabIndex: -1
|
|
148
|
+
},
|
|
149
|
+
...resolvedRender === void 0 ? null : { render: resolvedRender },
|
|
150
|
+
...isNested && {
|
|
151
|
+
role: "none",
|
|
152
|
+
tabIndex: -1,
|
|
153
|
+
"aria-disabled": void 0,
|
|
154
|
+
disabled: void 0,
|
|
155
|
+
onPress: void 0,
|
|
156
|
+
onPressIn: void 0,
|
|
157
|
+
onPressOut: void 0,
|
|
158
|
+
onLongPress: void 0,
|
|
159
|
+
onClick: void 0,
|
|
160
|
+
onKeyDown: void 0,
|
|
161
|
+
onKeyUp: void 0
|
|
162
|
+
},
|
|
163
|
+
children: /* @__PURE__ */ jsx(ButtonNestingContext.Provider, {
|
|
164
|
+
value: true,
|
|
165
|
+
children: /* @__PURE__ */ jsxs(ButtonContext.Provider, {
|
|
166
|
+
...textContext,
|
|
167
|
+
children: [
|
|
168
|
+
themedIcon,
|
|
169
|
+
wrappedChildren,
|
|
170
|
+
themedIconAfter
|
|
171
|
+
]
|
|
172
|
+
})
|
|
173
|
+
})
|
|
174
|
+
};
|
|
175
|
+
return {
|
|
176
|
+
isNested,
|
|
177
|
+
props
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
var ButtonComponent = createStyledHOC(ButtonFrame, function Button(props, ref) {
|
|
181
|
+
var { props: buttonProps } = useButton(props);
|
|
182
|
+
return /* @__PURE__ */ jsx(ButtonFrame, {
|
|
183
|
+
ref,
|
|
184
|
+
...buttonProps
|
|
185
|
+
});
|
|
260
186
|
});
|
|
261
|
-
var
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
187
|
+
var Button2 = withStaticProperties(ButtonComponent, {
|
|
188
|
+
Apply: ButtonContext.Provider,
|
|
189
|
+
Frame: ButtonFrame,
|
|
190
|
+
Icon: ButtonIcon,
|
|
191
|
+
Text: ButtonText
|
|
266
192
|
});
|
|
267
|
-
|
|
193
|
+
|
|
194
|
+
export { Button2 as Button, ButtonContext, ButtonFrame, ButtonIcon, ButtonText, useButton };
|
|
268
195
|
//# sourceMappingURL=Button.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["jsx","_jsx","jsxs","_jsxs","getFontSize","getButtonSized","getIcon","useCurrentColor","ButtonNestingContext","getElevation","themeableVariants","SizableText","wrapChildrenInText","createStyledContext","getTokenValue","styled","useProps","View","withStaticProperties","useContext","context","size","variant","color","elevation","ellipsis","fontFamily","fontSize","fontStyle","fontWeight","letterSpacing","maxFontSizeMultiplier","textAlign","Frame","name","role","render","type","tabIndex","variants","unstyled","true","outlineWidth","borderWidth","backgroundColor","false","justifyContent","alignItems","flexWrap","flexDirection","borderColor","cursor","hoverStyle","pressStyle","focusVisibleStyle","outlineColor","outlineStyle","outlined","process","env","TAMAGUI_HEADLESS","circular","chromeless","...size","val","extras","buttonStyle","gap",":number","disabled","pointerEvents","defaultVariants","Text","userSelect","flexGrow","flexShrink","Icon","props","children","scaleIcon","styledContext","useStyledContext","Error","sizeToken","iconColorProp","iconColor","iconSize","ButtonContext","ButtonComponent","styleable","propsIn","ref","isNested","processedProps","noNormalize","noExpand","icon","iconAfter","noTextWrap","textProps","_ref","contextColor","_ref1","finalSize","iconSizeNumber","themedIcon","themedIconAfter","map","icon2","_ref2","_ref3","_ref4","_ref5","_ref6","_ref7","_ref8","_ref9","wrappedChildren","_ref10","_ref11","_ref12","_ref13","_ref14","_ref15","_ref16","_ref17","textContext","_props_size","_ref18","_props_variant","_ref19","_props_elevation","_ref20","buttonContext","Provider","value","Button","Apply"],"sources":["../../src/Button.tsx"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"Button.native.js","names":[],"sources":["esm/Button.native.js"],"sourcesContent":["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useGetThemedIcon } from \"@tamagui/helpers-tamagui\";\nimport { ButtonNestingContext } from \"@tamagui/stacks\";\nimport { wrapChildrenInText } from \"@tamagui/text\";\nimport { createStyledContext, createStyledHOC, styled, Text, useProps, View, withStaticProperties } from \"@tamagui/web\";\nimport { useContext } from \"react\";\nvar buttonContextKeys = [\n \"color\",\n \"ellipsis\",\n \"fontFamily\",\n \"fontSize\",\n \"fontStyle\",\n \"fontWeight\",\n \"letterSpacing\",\n \"maxFontSizeMultiplier\",\n \"textAlign\"\n];\nvar ButtonContext = createStyledContext({\n color: void 0,\n ellipsis: void 0,\n fontFamily: void 0,\n fontSize: void 0,\n fontStyle: void 0,\n fontWeight: void 0,\n letterSpacing: void 0,\n maxFontSizeMultiplier: void 0,\n textAlign: void 0\n}, {\n keys: buttonContextKeys\n});\nvar ButtonFrame = styled(View, {\n context: ButtonContext,\n displayName: \"ButtonFrame\",\n role: \"button\",\n render: /* @__PURE__ */ _jsx(\"button\", {\n type: \"button\"\n }),\n tabIndex: 0,\n alignItems: \"center\",\n flexDirection: \"row\",\n flexWrap: \"nowrap\",\n justifyContent: \"center\",\n variants: {\n disabled: {\n true: {\n pointerEvents: \"none\"\n }\n }\n }\n});\nvar ButtonText = styled(Text, {\n context: ButtonContext,\n displayName: \"ButtonText\",\n // flexGrow 1 pushes text to the start of its parent on native\n flexGrow: 0,\n flexShrink: 1\n});\nvar ButtonIcon = function(param) {\n var { children, color, scaleIcon = 1, size } = param;\n var styledContext = ButtonContext.useStyledContext();\n var iconColor = color !== null && color !== void 0 ? color : styledContext === null || styledContext === void 0 ? void 0 : styledContext.color;\n var getThemedIcon = useGetThemedIcon({\n color: iconColor === \"unset\" || typeof iconColor === \"number\" ? void 0 : iconColor,\n size: size === void 0 ? void 0 : size * scaleIcon\n });\n return getThemedIcon(children);\n};\nvar buttonInternalPropNames = [\n \"children\",\n \"color\",\n \"disabled\",\n \"ellipsis\",\n \"fontFamily\",\n \"fontSize\",\n \"fontStyle\",\n \"fontWeight\",\n \"icon\",\n \"iconAfter\",\n \"iconSize\",\n \"letterSpacing\",\n \"maxFontSizeMultiplier\",\n \"noTextWrap\",\n \"render\",\n \"scaleIcon\",\n \"textAlign\",\n \"textProps\"\n];\nfunction useButton(propsIn) {\n var { Text: _$Text = ButtonText, iconColor: iconColorOption, iconSize: iconSizeOption, textProps: textPropsOption } = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};\n var isNested = useContext(ButtonNestingContext);\n var styledContext = ButtonContext.useStyledContext();\n var processedProps = useProps(propsIn, {\n noNormalize: true,\n noExpand: true\n });\n var { children, color, disabled, ellipsis, fontFamily, fontSize, fontStyle, fontWeight, icon, iconAfter, iconSize, letterSpacing, maxFontSizeMultiplier, noTextWrap, render, scaleIcon = 1, textAlign, textProps } = processedProps;\n var frameProps = {\n ...propsIn\n };\n var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = void 0;\n try {\n for (var _iterator = buttonInternalPropNames[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n var key = _step.value;\n delete frameProps[key];\n }\n } catch (err) {\n _didIteratorError = true;\n _iteratorError = err;\n } finally {\n try {\n if (!_iteratorNormalCompletion && _iterator.return != null) {\n _iterator.return();\n }\n } finally {\n if (_didIteratorError) {\n throw _iteratorError;\n }\n }\n }\n var contextColor = color !== null && color !== void 0 ? color : styledContext === null || styledContext === void 0 ? void 0 : styledContext.color;\n var iconColor = iconColorOption !== null && iconColorOption !== void 0 ? iconColorOption : contextColor;\n var resolvedIconSize = iconSize !== null && iconSize !== void 0 ? iconSize : iconSizeOption;\n var getThemedIcon = useGetThemedIcon({\n color: iconColor === \"unset\" || typeof iconColor === \"number\" ? void 0 : iconColor,\n size: resolvedIconSize === void 0 ? void 0 : resolvedIconSize * scaleIcon\n });\n var [themedIcon, themedIconAfter] = [\n icon,\n iconAfter\n ].map(function(item) {\n return item ? getThemedIcon(item) : null;\n });\n var textContext = {\n color: contextColor,\n ellipsis: ellipsis !== null && ellipsis !== void 0 ? ellipsis : styledContext === null || styledContext === void 0 ? void 0 : styledContext.ellipsis,\n fontFamily: fontFamily !== null && fontFamily !== void 0 ? fontFamily : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontFamily,\n fontSize: fontSize !== null && fontSize !== void 0 ? fontSize : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontSize,\n fontStyle: fontStyle !== null && fontStyle !== void 0 ? fontStyle : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontStyle,\n fontWeight: fontWeight !== null && fontWeight !== void 0 ? fontWeight : styledContext === null || styledContext === void 0 ? void 0 : styledContext.fontWeight,\n letterSpacing: letterSpacing !== null && letterSpacing !== void 0 ? letterSpacing : styledContext === null || styledContext === void 0 ? void 0 : styledContext.letterSpacing,\n maxFontSizeMultiplier: maxFontSizeMultiplier !== null && maxFontSizeMultiplier !== void 0 ? maxFontSizeMultiplier : styledContext === null || styledContext === void 0 ? void 0 : styledContext.maxFontSizeMultiplier,\n textAlign: textAlign !== null && textAlign !== void 0 ? textAlign : styledContext === null || styledContext === void 0 ? void 0 : styledContext.textAlign\n };\n var wrappedChildren = wrapChildrenInText(_$Text, {\n children,\n ...textContext,\n noTextWrap,\n textProps\n }, {\n ...textPropsOption,\n ...processedProps.size === void 0 ? null : {\n size: processedProps.size\n }\n });\n var resolvedRender = render !== null && render !== void 0 ? render : isNested ? \"span\" : processedProps.accessibilityRole === \"link\" || processedProps.role === \"link\" ? \"a\" : disabled ? /* @__PURE__ */ _jsx(\"button\", {\n type: \"button\",\n disabled: true\n }) : void 0;\n var props = {\n ...frameProps,\n ...disabled && {\n \"aria-disabled\": true,\n disabled: true,\n tabIndex: -1\n },\n ...resolvedRender === void 0 ? null : {\n render: resolvedRender\n },\n ...isNested && {\n // a nested Button is a presentation part, not a control: strip the\n // interactive semantics so we never place a focusable role=button (with\n // its own press/keyboard handlers) inside the outer native <button>. that\n // nesting is invalid html, adds an extra focus stop, and bubbles\n // activation to the outer control. resolvedRender already makes it a span.\n role: \"none\",\n tabIndex: -1,\n \"aria-disabled\": void 0,\n disabled: void 0,\n onPress: void 0,\n onPressIn: void 0,\n onPressOut: void 0,\n onLongPress: void 0,\n onClick: void 0,\n onKeyDown: void 0,\n onKeyUp: void 0\n },\n children: /* @__PURE__ */ _jsx(ButtonNestingContext.Provider, {\n value: true,\n children: /* @__PURE__ */ _jsxs(ButtonContext.Provider, {\n ...textContext,\n children: [\n themedIcon,\n wrappedChildren,\n themedIconAfter\n ]\n })\n })\n };\n return {\n isNested,\n props\n };\n}\nvar ButtonComponent = createStyledHOC(ButtonFrame, function Button(props, ref) {\n var { props: buttonProps } = useButton(props);\n return /* @__PURE__ */ _jsx(ButtonFrame, {\n ref,\n ...buttonProps\n });\n});\nvar Button2 = withStaticProperties(ButtonComponent, {\n Apply: ButtonContext.Provider,\n Frame: ButtonFrame,\n Icon: ButtonIcon,\n Text: ButtonText\n});\nexport {\n Button2 as Button,\n ButtonContext,\n ButtonFrame,\n ButtonIcon,\n ButtonText,\n useButton\n};\n//# sourceMappingURL=Button.js.map\n"],"mappings":"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"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from "./Button.mjs"
|
|
2
|
-
//# sourceMappingURL=index.js.map
|
|
1
|
+
export * from "./Button.mjs"
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from "./Button.mjs"
|
|
2
|
-
//# sourceMappingURL=index.mjs.map
|
|
1
|
+
export * from "./Button.mjs"
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export * from "./Button.native.js"
|
|
2
|
-
//# sourceMappingURL=index.native.js.map
|
|
1
|
+
export * from "./Button.native.js"
|