@xaui/native 0.9.1-alpha.7 → 0.9.1-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-AW63PTQ4.cjs → chunk-2FEDC7U5.cjs} +2 -1
- package/dist/chunk-3TIDEII6.js +57 -0
- package/dist/{chunk-2KXQATVL.js → chunk-7XGOXTGT.js} +2 -1
- package/dist/chunk-LMUPNKPH.cjs +57 -0
- package/dist/chunk-PBRPIZZ2.js +350 -0
- package/dist/{chunk-GYK2CAX4.js → chunk-U3C6VN4X.js} +190 -232
- package/dist/chunk-V42SPPP3.cjs +350 -0
- package/dist/{chunk-46M765BS.cjs → chunk-VGWN4JTL.cjs} +181 -223
- package/dist/components/button/index.cjs +12 -0
- package/dist/components/button/index.d.cts +192 -0
- package/dist/components/button/index.d.ts +192 -0
- package/dist/components/button/index.js +12 -0
- package/dist/create-recipe-BjxSp9_k.d.cts +197 -0
- package/dist/create-recipe-M99yoHrG.d.ts +197 -0
- package/dist/index.cjs +17 -31
- package/dist/index.d.cts +14 -4
- package/dist/index.d.ts +14 -4
- package/dist/index.js +19 -33
- package/dist/system/index.cjs +4 -2
- package/dist/system/index.d.cts +54 -243
- package/dist/system/index.d.ts +54 -243
- package/dist/system/index.js +6 -4
- package/dist/theme/index.cjs +2 -2
- package/dist/theme/index.js +1 -1
- package/package.json +6 -1
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
var _chunkVGWN4JTLcjs = require('./chunk-VGWN4JTL.cjs');
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
var _chunk3QBT3Q65cjs = require('./chunk-3QBT3Q65.cjs');
|
|
11
|
+
|
|
12
|
+
// src/components/button/button.context.ts
|
|
13
|
+
var [ButtonProvider, useButton] = _chunkVGWN4JTLcjs.createSlotContext.call(void 0, "Button");
|
|
14
|
+
|
|
15
|
+
// src/components/button/button-icon.tsx
|
|
16
|
+
var _jsxruntime = require('react/jsx-runtime');
|
|
17
|
+
function ButtonIcon({ size, color, ...rest }) {
|
|
18
|
+
const { icon } = useButton();
|
|
19
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkVGWN4JTLcjs.Icon, { size: _nullishCoalesce(size, () => ( icon.size)), color: _nullishCoalesce(color, () => ( icon.color)), ...rest });
|
|
20
|
+
}
|
|
21
|
+
ButtonIcon.displayName = "XAUI.Button.Icon";
|
|
22
|
+
|
|
23
|
+
// src/components/button/button-label.tsx
|
|
24
|
+
var _react = require('react');
|
|
25
|
+
var _reactnative = require('react-native');
|
|
26
|
+
|
|
27
|
+
var ButtonLabel = _react.forwardRef.call(void 0, function ButtonLabel2({ children, style, numberOfLines = 1, ...rest }, ref) {
|
|
28
|
+
const { labelStyle } = useButton();
|
|
29
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
30
|
+
_reactnative.Text,
|
|
31
|
+
{
|
|
32
|
+
ref,
|
|
33
|
+
numberOfLines,
|
|
34
|
+
style: [labelStyle, style],
|
|
35
|
+
...rest,
|
|
36
|
+
children
|
|
37
|
+
}
|
|
38
|
+
);
|
|
39
|
+
});
|
|
40
|
+
ButtonLabel.displayName = "XAUI.Button.Label";
|
|
41
|
+
|
|
42
|
+
// src/components/button/button-spinner.tsx
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
var _reactnativereanimated = require('react-native-reanimated'); var _reactnativereanimated2 = _interopRequireDefault(_reactnativereanimated);
|
|
53
|
+
|
|
54
|
+
var ROTATION_DURATION = 800;
|
|
55
|
+
function ButtonSpinner({ style, animation = true }) {
|
|
56
|
+
const { spinnerStyle } = useButton();
|
|
57
|
+
if (!animation) return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _reactnative.View, { style: [spinnerStyle, style] });
|
|
58
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, SpinningRing, { style: [spinnerStyle, style] });
|
|
59
|
+
}
|
|
60
|
+
ButtonSpinner.displayName = "XAUI.Button.Spinner";
|
|
61
|
+
function SpinningRing({ style }) {
|
|
62
|
+
const angle = _reactnativereanimated.useSharedValue.call(void 0, 0);
|
|
63
|
+
_react.useEffect.call(void 0, () => {
|
|
64
|
+
angle.value = _reactnativereanimated.withRepeat.call(void 0,
|
|
65
|
+
_reactnativereanimated.withTiming.call(void 0, 360, { duration: ROTATION_DURATION, easing: _reactnativereanimated.Easing.linear }),
|
|
66
|
+
-1,
|
|
67
|
+
false
|
|
68
|
+
);
|
|
69
|
+
return () => _reactnativereanimated.cancelAnimation.call(void 0, angle);
|
|
70
|
+
}, [angle]);
|
|
71
|
+
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0,
|
|
72
|
+
() => ({ transform: [{ rotate: `${angle.value}deg` }] }),
|
|
73
|
+
[angle]
|
|
74
|
+
);
|
|
75
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _reactnativereanimated2.default.View, { style: [style, animatedStyle] });
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// src/components/button/button.tsx
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
// src/hooks/use-press-state.ts
|
|
83
|
+
|
|
84
|
+
function usePressState(handlers = {}) {
|
|
85
|
+
const [isPressed, setIsPressed] = _react.useState.call(void 0, false);
|
|
86
|
+
const latest = _react.useRef.call(void 0, handlers);
|
|
87
|
+
latest.current = handlers;
|
|
88
|
+
const onPressIn = _react.useCallback.call(void 0, (event) => {
|
|
89
|
+
setIsPressed(true);
|
|
90
|
+
_optionalChain([latest, 'access', _ => _.current, 'access', _2 => _2.onPressIn, 'optionalCall', _3 => _3(event)]);
|
|
91
|
+
}, []);
|
|
92
|
+
const onPressOut = _react.useCallback.call(void 0, (event) => {
|
|
93
|
+
setIsPressed(false);
|
|
94
|
+
_optionalChain([latest, 'access', _4 => _4.current, 'access', _5 => _5.onPressOut, 'optionalCall', _6 => _6(event)]);
|
|
95
|
+
}, []);
|
|
96
|
+
const press = _react.useRef.call(void 0, { onPressIn, onPressOut }).current;
|
|
97
|
+
return [isPressed, press];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// src/utils/warn-dev.ts
|
|
101
|
+
function warnDev(message) {
|
|
102
|
+
if (typeof __DEV__ !== "undefined" && !__DEV__) return;
|
|
103
|
+
console.warn(`XAUI: ${message}`);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// src/components/button/button.recipe.ts
|
|
107
|
+
var SLOTS = ["root", "label", "icon", "spinner"];
|
|
108
|
+
var VARIANT_TOKENS = {
|
|
109
|
+
primary: { bg: "accent", bgPressed: "accentPressed", fg: "accentForeground" },
|
|
110
|
+
secondary: { bg: "default", bgPressed: "defaultPressed", fg: "defaultForeground" },
|
|
111
|
+
tertiary: {
|
|
112
|
+
border: "border",
|
|
113
|
+
bgPressed: "defaultSoftPressed",
|
|
114
|
+
fg: "foreground"
|
|
115
|
+
},
|
|
116
|
+
ghost: { bgPressed: "defaultSoftPressed", fg: "foreground" },
|
|
117
|
+
success: { bg: "success", bgPressed: "successPressed", fg: "successForeground" },
|
|
118
|
+
"success-soft": {
|
|
119
|
+
bg: "successSoft",
|
|
120
|
+
bgPressed: "successSoftPressed",
|
|
121
|
+
fg: "successSoftForeground"
|
|
122
|
+
},
|
|
123
|
+
warning: { bg: "warning", bgPressed: "warningPressed", fg: "warningForeground" },
|
|
124
|
+
"warning-soft": {
|
|
125
|
+
bg: "warningSoft",
|
|
126
|
+
bgPressed: "warningSoftPressed",
|
|
127
|
+
fg: "warningSoftForeground"
|
|
128
|
+
},
|
|
129
|
+
danger: { bg: "danger", bgPressed: "dangerPressed", fg: "dangerForeground" },
|
|
130
|
+
"danger-soft": {
|
|
131
|
+
bg: "dangerSoft",
|
|
132
|
+
bgPressed: "dangerSoftPressed",
|
|
133
|
+
fg: "dangerSoftForeground"
|
|
134
|
+
}
|
|
135
|
+
};
|
|
136
|
+
function ring(theme, size) {
|
|
137
|
+
return {
|
|
138
|
+
width: size,
|
|
139
|
+
height: size,
|
|
140
|
+
borderRadius: size / 2,
|
|
141
|
+
borderWidth: theme.borderWidth.default * 2,
|
|
142
|
+
borderTopColor: "transparent"
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
function sizeAxis(step) {
|
|
146
|
+
const { size, padding, gap, glyph, radius } = step;
|
|
147
|
+
return (theme) => ({
|
|
148
|
+
root: {
|
|
149
|
+
height: theme.controlHeights[size],
|
|
150
|
+
paddingHorizontal: theme.spacing(padding),
|
|
151
|
+
gap: theme.spacing(gap),
|
|
152
|
+
borderRadius: theme.radius[radius]
|
|
153
|
+
},
|
|
154
|
+
label: {
|
|
155
|
+
fontSize: theme.fontSizes[size],
|
|
156
|
+
lineHeight: theme.lineHeights[size]
|
|
157
|
+
},
|
|
158
|
+
icon: { fontSize: theme.fontSizes[glyph] },
|
|
159
|
+
spinner: ring(theme, theme.fontSizes[glyph])
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
var buttonRecipe = _chunkVGWN4JTLcjs.createRecipe.call(void 0, {
|
|
163
|
+
slots: SLOTS,
|
|
164
|
+
base: (theme) => ({
|
|
165
|
+
root: {
|
|
166
|
+
flexDirection: "row",
|
|
167
|
+
alignItems: "center",
|
|
168
|
+
justifyContent: "center",
|
|
169
|
+
borderWidth: 0,
|
|
170
|
+
// iOS's squircle. Free on Android, and it is what makes a large radius read as a
|
|
171
|
+
// shape rather than as two arcs meeting a straight edge.
|
|
172
|
+
borderCurve: "continuous"
|
|
173
|
+
},
|
|
174
|
+
label: {
|
|
175
|
+
fontFamily: theme.fontFamilies.body,
|
|
176
|
+
fontWeight: theme.fontWeights.medium
|
|
177
|
+
}
|
|
178
|
+
}),
|
|
179
|
+
variantTokens: VARIANT_TOKENS,
|
|
180
|
+
/**
|
|
181
|
+
* Where the variant's colours land, for every variant at once. The border width follows
|
|
182
|
+
* the *presence* of the border role rather than a per-variant flag — `tertiary` is the
|
|
183
|
+
* only variant that names one, and that fact is already in the table above.
|
|
184
|
+
*/
|
|
185
|
+
paint: (theme, colors) => ({
|
|
186
|
+
root: {
|
|
187
|
+
backgroundColor: colors.bg,
|
|
188
|
+
borderColor: colors.border,
|
|
189
|
+
borderWidth: colors.border ? theme.borderWidth.default : 0
|
|
190
|
+
},
|
|
191
|
+
label: { color: colors.fg },
|
|
192
|
+
icon: { color: colors.fg },
|
|
193
|
+
spinner: { borderColor: colors.fg }
|
|
194
|
+
}),
|
|
195
|
+
/**
|
|
196
|
+
* Declaration order is application order: `radius` overrides the radius `size` set, and
|
|
197
|
+
* `isIconOnly` overrides its padding. Both are axes rather than a static sheet merged
|
|
198
|
+
* at the call site, so they stay inside the cache key and a press still allocates
|
|
199
|
+
* nothing.
|
|
200
|
+
*/
|
|
201
|
+
variants: {
|
|
202
|
+
size: {
|
|
203
|
+
xs: sizeAxis({ size: "xs", padding: 3, gap: 1, glyph: "sm", radius: "3xl" }),
|
|
204
|
+
sm: sizeAxis({
|
|
205
|
+
size: "sm",
|
|
206
|
+
padding: 3.5,
|
|
207
|
+
gap: 1.5,
|
|
208
|
+
glyph: "md",
|
|
209
|
+
radius: "3xl"
|
|
210
|
+
}),
|
|
211
|
+
md: sizeAxis({ size: "md", padding: 4, gap: 2, glyph: "lg", radius: "3xl" }),
|
|
212
|
+
lg: sizeAxis({ size: "lg", padding: 5, gap: 2.5, glyph: "xl", radius: "4xl" })
|
|
213
|
+
},
|
|
214
|
+
radius: {
|
|
215
|
+
xs: (t) => ({ root: { borderRadius: t.radius.xs } }),
|
|
216
|
+
sm: (t) => ({ root: { borderRadius: t.radius.sm } }),
|
|
217
|
+
md: (t) => ({ root: { borderRadius: t.radius.md } }),
|
|
218
|
+
lg: (t) => ({ root: { borderRadius: t.radius.lg } }),
|
|
219
|
+
xl: (t) => ({ root: { borderRadius: t.radius.xl } }),
|
|
220
|
+
"2xl": (t) => ({ root: { borderRadius: t.radius["2xl"] } }),
|
|
221
|
+
"3xl": (t) => ({ root: { borderRadius: t.radius["3xl"] } }),
|
|
222
|
+
"4xl": (t) => ({ root: { borderRadius: t.radius["4xl"] } }),
|
|
223
|
+
field: (t) => ({ root: { borderRadius: t.radius.field } }),
|
|
224
|
+
full: (t) => ({ root: { borderRadius: t.radius.full } })
|
|
225
|
+
},
|
|
226
|
+
// A square on a fixed height. No width is computed, and none needs to be.
|
|
227
|
+
isIconOnly: {
|
|
228
|
+
true: () => ({ root: { paddingHorizontal: 0, aspectRatio: 1 } })
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
/**
|
|
232
|
+
* The pressed colour lives here rather than in a `PressableFeedback.Highlight`, because
|
|
233
|
+
* a control picks one treatment or the other — both, and a pressed button darkens
|
|
234
|
+
* twice. This one is the variant's own `…Pressed` token, so the press reads as the
|
|
235
|
+
* button's colour going down rather than as a neutral film over it, and a tinted button
|
|
236
|
+
* presses through the same OKLab formula as a token one.
|
|
237
|
+
*/
|
|
238
|
+
states: {
|
|
239
|
+
pressed: (_theme, colors) => ({ root: { backgroundColor: colors.bgPressed } }),
|
|
240
|
+
disabled: (theme) => ({ root: { opacity: theme.opacity.disabled } })
|
|
241
|
+
},
|
|
242
|
+
// Annotated, or inference reads the whole `Variant` parameter off this one literal and
|
|
243
|
+
// narrows the recipe to the single variant named here.
|
|
244
|
+
defaultVariants: { variant: "primary", size: "md" }
|
|
245
|
+
});
|
|
246
|
+
|
|
247
|
+
// src/components/button/button.utils.ts
|
|
248
|
+
|
|
249
|
+
function containsElementOfType(children, type) {
|
|
250
|
+
return _react.Children.toArray(children).some(
|
|
251
|
+
(child) => _react.isValidElement.call(void 0, child) && child.type === type
|
|
252
|
+
);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
// src/components/button/button.tsx
|
|
256
|
+
|
|
257
|
+
var ButtonRoot = _react.forwardRef.call(void 0, function Button({
|
|
258
|
+
children,
|
|
259
|
+
variant,
|
|
260
|
+
size,
|
|
261
|
+
radius,
|
|
262
|
+
color,
|
|
263
|
+
isDisabled = false,
|
|
264
|
+
isLoading = false,
|
|
265
|
+
isIconOnly = false,
|
|
266
|
+
asChild = false,
|
|
267
|
+
// `scale` and not `scale-highlight`: the recipe's `pressed` state already paints the
|
|
268
|
+
// variant's own pressed colour, and a neutral wash on top would darken it twice.
|
|
269
|
+
feedbackVariant = "scale",
|
|
270
|
+
accessibilityRole = "button",
|
|
271
|
+
style,
|
|
272
|
+
onPressIn,
|
|
273
|
+
onPressOut,
|
|
274
|
+
...rest
|
|
275
|
+
}, ref) {
|
|
276
|
+
const theme = _chunk3QBT3Q65cjs.useXAUITheme.call(void 0, );
|
|
277
|
+
const [isPressed, press] = usePressState({ onPressIn, onPressOut });
|
|
278
|
+
const selection = {
|
|
279
|
+
variant,
|
|
280
|
+
size,
|
|
281
|
+
radius,
|
|
282
|
+
isIconOnly: isIconOnly ? "true" : void 0
|
|
283
|
+
};
|
|
284
|
+
const states = { pressed: isPressed, disabled: isDisabled || isLoading };
|
|
285
|
+
const styles = buttonRecipe.resolve({ theme, selection, states });
|
|
286
|
+
const tint = color ? buttonRecipe.tint({ theme, color, selection, states }) : void 0;
|
|
287
|
+
const context = _react.useMemo.call(void 0, () => {
|
|
288
|
+
const icon = _reactnative.StyleSheet.flatten([styles.icon, _optionalChain([tint, 'optionalAccess', _7 => _7.icon])]);
|
|
289
|
+
return {
|
|
290
|
+
labelStyle: tint ? [styles.label, tint.label] : styles.label,
|
|
291
|
+
spinnerStyle: tint ? [styles.spinner, tint.spinner] : styles.spinner,
|
|
292
|
+
icon: {
|
|
293
|
+
size: icon.fontSize,
|
|
294
|
+
// `ColorValue` also covers the platform's opaque colours, which `Icon` cannot
|
|
295
|
+
// hand to a third-party component expecting a string.
|
|
296
|
+
color: typeof icon.color === "string" ? icon.color : void 0
|
|
297
|
+
},
|
|
298
|
+
isDisabled,
|
|
299
|
+
isLoading
|
|
300
|
+
};
|
|
301
|
+
}, [styles, tint, isDisabled, isLoading]);
|
|
302
|
+
const rootStyle = [
|
|
303
|
+
styles.root,
|
|
304
|
+
_optionalChain([tint, 'optionalAccess', _8 => _8.root]),
|
|
305
|
+
typeof style === "function" ? style({ pressed: isPressed }) : style
|
|
306
|
+
];
|
|
307
|
+
const text = _chunkVGWN4JTLcjs.childrenToString.call(void 0, children);
|
|
308
|
+
const showSpinner = isLoading && !containsElementOfType(children, ButtonSpinner);
|
|
309
|
+
if (isIconOnly && !rest.accessibilityLabel && !rest["aria-label"]) {
|
|
310
|
+
warnDev(
|
|
311
|
+
"Button: an icon-only button needs an `accessibilityLabel` \u2014 there is no text for a screen reader to read, so it announces as an unlabelled button."
|
|
312
|
+
);
|
|
313
|
+
}
|
|
314
|
+
return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonProvider, { value: context, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
315
|
+
_chunkVGWN4JTLcjs.PressableFeedback,
|
|
316
|
+
{
|
|
317
|
+
ref,
|
|
318
|
+
isPressed,
|
|
319
|
+
isDisabled: isDisabled || isLoading,
|
|
320
|
+
asChild,
|
|
321
|
+
feedbackVariant,
|
|
322
|
+
accessibilityRole,
|
|
323
|
+
accessibilityState: { disabled: isDisabled, busy: isLoading },
|
|
324
|
+
...rest,
|
|
325
|
+
style: rootStyle,
|
|
326
|
+
onPressIn: press.onPressIn,
|
|
327
|
+
onPressOut: press.onPressOut,
|
|
328
|
+
children: asChild ? children : /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
|
|
329
|
+
showSpinner ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonSpinner, {}) : null,
|
|
330
|
+
text !== null ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonLabel, { children: text }) : children
|
|
331
|
+
] })
|
|
332
|
+
}
|
|
333
|
+
) });
|
|
334
|
+
});
|
|
335
|
+
ButtonRoot.displayName = "XAUI.Button.Root";
|
|
336
|
+
|
|
337
|
+
// src/components/button/index.ts
|
|
338
|
+
var Button2 = Object.assign(ButtonRoot, {
|
|
339
|
+
Label: ButtonLabel,
|
|
340
|
+
Icon: ButtonIcon,
|
|
341
|
+
Spinner: ButtonSpinner
|
|
342
|
+
});
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
exports.useButton = useButton; exports.usePressState = usePressState; exports.warnDev = warnDev; exports.buttonRecipe = buttonRecipe; exports.Button = Button2;
|