@xaui/native 0.9.1-alpha.0 → 0.9.1-alpha.10

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.
@@ -0,0 +1,353 @@
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 _chunk7D262JCJcjs = require('./chunk-7D262JCJ.cjs');
8
+
9
+
10
+ var _chunk3QBT3Q65cjs = require('./chunk-3QBT3Q65.cjs');
11
+
12
+ // src/components/button/button.context.ts
13
+ var [ButtonProvider, useButton] = _chunk7D262JCJcjs.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, _chunk7D262JCJcjs.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 = _chunk7D262JCJcjs.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
+ defaultVariants: { variant: "primary", size: "md" }
243
+ });
244
+
245
+ // src/components/button/button.utils.ts
246
+
247
+ function containsElementOfType(children, type) {
248
+ return _react.Children.toArray(children).some(
249
+ (child) => _react.isValidElement.call(void 0, child) && child.type === type
250
+ );
251
+ }
252
+
253
+ // src/components/button/button.tsx
254
+
255
+ var ButtonRoot = _react.forwardRef.call(void 0, function Button({
256
+ children,
257
+ variant,
258
+ size,
259
+ radius,
260
+ color,
261
+ isDisabled = false,
262
+ isLoading = false,
263
+ isIconOnly = false,
264
+ asChild = false,
265
+ // `scale` and not `scale-highlight`: the recipe's `pressed` state already paints the
266
+ // variant's own pressed colour, and a neutral wash on top would darken it twice.
267
+ feedbackVariant = "scale",
268
+ accessibilityRole = "button",
269
+ accessibilityState,
270
+ style,
271
+ onPressIn,
272
+ onPressOut,
273
+ ...rest
274
+ }, ref) {
275
+ const theme = _chunk3QBT3Q65cjs.useXAUITheme.call(void 0, );
276
+ const [isPressed, press] = usePressState({ onPressIn, onPressOut });
277
+ const selection = {
278
+ variant,
279
+ size,
280
+ radius,
281
+ isIconOnly: isIconOnly ? "true" : void 0
282
+ };
283
+ const states = { pressed: isPressed, disabled: isDisabled || isLoading };
284
+ const styles = buttonRecipe.resolve({ theme, selection, states });
285
+ const tint = color ? buttonRecipe.tint({ theme, color, selection, states }) : void 0;
286
+ const context = _react.useMemo.call(void 0, () => {
287
+ const icon = _reactnative.StyleSheet.flatten([styles.icon, _optionalChain([tint, 'optionalAccess', _7 => _7.icon])]);
288
+ return {
289
+ labelStyle: tint ? [styles.label, tint.label] : styles.label,
290
+ spinnerStyle: tint ? [styles.spinner, tint.spinner] : styles.spinner,
291
+ icon: {
292
+ size: icon.fontSize,
293
+ // `ColorValue` also covers the platform's opaque colours, which `Icon` cannot
294
+ // hand to a third-party component expecting a string.
295
+ color: typeof icon.color === "string" ? icon.color : void 0
296
+ },
297
+ isDisabled,
298
+ isLoading
299
+ };
300
+ }, [styles, tint, isDisabled, isLoading]);
301
+ const rootStyle = [
302
+ styles.root,
303
+ _optionalChain([tint, 'optionalAccess', _8 => _8.root]),
304
+ typeof style === "function" ? style({ pressed: isPressed }) : style
305
+ ];
306
+ const text = _chunk7D262JCJcjs.childrenToString.call(void 0, children);
307
+ const showSpinner = isLoading && !containsElementOfType(children, ButtonSpinner);
308
+ if (isIconOnly && !rest.accessibilityLabel && !rest["aria-label"]) {
309
+ warnDev(
310
+ "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."
311
+ );
312
+ }
313
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonProvider, { value: context, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
314
+ _chunk7D262JCJcjs.PressableFeedback,
315
+ {
316
+ ref,
317
+ isPressed,
318
+ isDisabled: isDisabled || isLoading,
319
+ asChild,
320
+ feedbackVariant,
321
+ accessibilityRole,
322
+ accessibilityState: {
323
+ disabled: isDisabled,
324
+ busy: isLoading,
325
+ ...accessibilityState
326
+ },
327
+ ...rest,
328
+ style: rootStyle,
329
+ onPressIn: press.onPressIn,
330
+ onPressOut: press.onPressOut,
331
+ children: asChild ? children : /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
332
+ showSpinner ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonSpinner, {}) : null,
333
+ text !== null ? /* @__PURE__ */ _jsxruntime.jsx.call(void 0, ButtonLabel, { children: text }) : children
334
+ ] })
335
+ }
336
+ ) });
337
+ });
338
+ ButtonRoot.displayName = "XAUI.Button.Root";
339
+
340
+ // src/components/button/index.ts
341
+ var Button2 = Object.assign(ButtonRoot, {
342
+ Label: ButtonLabel,
343
+ Icon: ButtonIcon,
344
+ Spinner: ButtonSpinner
345
+ });
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+ exports.useButton = useButton; exports.usePressState = usePressState; exports.warnDev = warnDev; exports.buttonRecipe = buttonRecipe; exports.Button = Button2;
@@ -0,0 +1,57 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); 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; }// src/system/portal/portal.tsx
2
+ var _react = require('react');
3
+
4
+ // src/system/portal/portal-context.ts
5
+
6
+ var PortalContext = _react.createContext.call(void 0, null);
7
+
8
+ // src/system/portal/portal.tsx
9
+ function Portal({ children }) {
10
+ const context = _react.useContext.call(void 0, PortalContext);
11
+ const key = _react.useId.call(void 0, );
12
+ _react.useLayoutEffect.call(void 0, () => {
13
+ _optionalChain([context, 'optionalAccess', _ => _.addPortal, 'call', _2 => _2(key, children)]);
14
+ }, [children, context, key]);
15
+ _react.useLayoutEffect.call(void 0, () => {
16
+ return () => _optionalChain([context, 'optionalAccess', _3 => _3.removePortal, 'call', _4 => _4(key)]);
17
+ }, [context, key]);
18
+ return null;
19
+ }
20
+ Portal.displayName = "XAUI.Portal";
21
+
22
+ // src/system/portal/portal-host.tsx
23
+
24
+ var _reactnative = require('react-native');
25
+ var _jsxruntime = require('react/jsx-runtime');
26
+ var styles = _reactnative.StyleSheet.create({
27
+ container: { flex: 1 }
28
+ });
29
+ function PortalHost({ children }) {
30
+ const [portals, setPortals] = _react.useState.call(void 0, /* @__PURE__ */ new Map());
31
+ const addPortal = _react.useCallback.call(void 0, (key, element) => {
32
+ setPortals((current) => new Map(current).set(key, element));
33
+ }, []);
34
+ const removePortal = _react.useCallback.call(void 0, (key) => {
35
+ setPortals((current) => {
36
+ if (!current.has(key)) return current;
37
+ const next = new Map(current);
38
+ next.delete(key);
39
+ return next;
40
+ });
41
+ }, []);
42
+ const methods = _react.useMemo.call(void 0,
43
+ () => ({ addPortal, removePortal }),
44
+ [addPortal, removePortal]
45
+ );
46
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, PortalContext.Provider, { value: methods, children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _reactnative.View, { style: styles.container, children: [
47
+ children,
48
+ Array.from(portals, ([key, element]) => /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Fragment, { children: element }, key))
49
+ ] }) });
50
+ }
51
+ PortalHost.displayName = "XAUI.PortalHost";
52
+
53
+
54
+
55
+
56
+
57
+ exports.PortalContext = PortalContext; exports.Portal = Portal; exports.PortalHost = PortalHost;
@@ -0,0 +1,125 @@
1
+ // src/theme/theme-context.ts
2
+ import { createContext } from "react";
3
+ var ThemeContext = createContext(null);
4
+
5
+ // src/theme/theme-hooks.ts
6
+ import { useContext } from "react";
7
+ function useXAUITheme() {
8
+ const theme = useContext(ThemeContext);
9
+ if (theme === null) {
10
+ throw new Error("XAUI: useXAUITheme must be used within <XAUIProvider>.");
11
+ }
12
+ return theme;
13
+ }
14
+ function useColorMode() {
15
+ return useXAUITheme().mode;
16
+ }
17
+ function useThemeColor(token) {
18
+ const { colors } = useXAUITheme();
19
+ return Array.isArray(token) ? token.map((key) => colors[key]) : colors[token];
20
+ }
21
+
22
+ // src/utils/colors.ts
23
+ var srgbToLinear = (c) => c <= 0.04045 ? c / 12.92 : ((c + 0.055) / 1.055) ** 2.4;
24
+ var linearToSrgb = (c) => c <= 31308e-7 ? 12.92 * c : 1.055 * c ** (1 / 2.4) - 0.055;
25
+ var clamp01 = (n) => Math.min(1, Math.max(0, n));
26
+ var HEX = /^#?(?:[0-9a-f]{3}|[0-9a-f]{6})$/i;
27
+ function isHex(value) {
28
+ return HEX.test(value);
29
+ }
30
+ function hexToRgb(hex) {
31
+ if (!isHex(hex)) {
32
+ throw new Error(
33
+ `XAUI: "${hex}" is not a hex colour. Tokens that feed mix() and alpha() must be #rgb or #rrggbb \u2014 named colours and rgb()/rgba() values cannot be blended.`
34
+ );
35
+ }
36
+ const raw = hex.replace("#", "");
37
+ const full = raw.length === 3 ? raw.split("").map((c) => c + c).join("") : raw;
38
+ return [
39
+ parseInt(full.slice(0, 2), 16) / 255,
40
+ parseInt(full.slice(2, 4), 16) / 255,
41
+ parseInt(full.slice(4, 6), 16) / 255
42
+ ];
43
+ }
44
+ function rgbToHex([r, g, b]) {
45
+ const to = (n) => Math.round(clamp01(n) * 255).toString(16).padStart(2, "0");
46
+ return `#${to(r)}${to(g)}${to(b)}`;
47
+ }
48
+ function rgbToOklab([r, g, b]) {
49
+ const R = srgbToLinear(r);
50
+ const G = srgbToLinear(g);
51
+ const B = srgbToLinear(b);
52
+ const l = Math.cbrt(0.4122214708 * R + 0.5363325363 * G + 0.0514459929 * B);
53
+ const m = Math.cbrt(0.2119034982 * R + 0.6806995451 * G + 0.1073969566 * B);
54
+ const s = Math.cbrt(0.0883024619 * R + 0.2817188376 * G + 0.6299787005 * B);
55
+ return [
56
+ 0.2104542553 * l + 0.793617785 * m - 0.0040720468 * s,
57
+ 1.9779984951 * l - 2.428592205 * m + 0.4505937099 * s,
58
+ 0.0259040371 * l + 0.7827717662 * m - 0.808675766 * s
59
+ ];
60
+ }
61
+ function oklabToRgb([L, a, b]) {
62
+ const l = (L + 0.3963377774 * a + 0.2158037573 * b) ** 3;
63
+ const m = (L - 0.1055613458 * a - 0.0638541728 * b) ** 3;
64
+ const s = (L - 0.0894841775 * a - 1.291485548 * b) ** 3;
65
+ return [
66
+ clamp01(linearToSrgb(4.0767416621 * l - 3.3077115913 * m + 0.2309699292 * s)),
67
+ clamp01(linearToSrgb(-1.2684380046 * l + 2.6097574011 * m - 0.3413193965 * s)),
68
+ clamp01(linearToSrgb(-0.0041960863 * l - 0.7034186147 * m + 1.707614701 * s))
69
+ ];
70
+ }
71
+ function mix(base, other, amount) {
72
+ const from = rgbToOklab(hexToRgb(base));
73
+ const to = rgbToOklab(hexToRgb(other));
74
+ return rgbToHex(
75
+ oklabToRgb([
76
+ from[0] + (to[0] - from[0]) * amount,
77
+ from[1] + (to[1] - from[1]) * amount,
78
+ from[2] + (to[2] - from[2]) * amount
79
+ ])
80
+ );
81
+ }
82
+ function alpha(hex, amount) {
83
+ const [r, g, b] = hexToRgb(hex).map((v) => Math.round(v * 255));
84
+ return `rgba(${r}, ${g}, ${b}, ${amount})`;
85
+ }
86
+ function lightnessOf(hex) {
87
+ return rgbToOklab(hexToRgb(hex))[0];
88
+ }
89
+ function contrastOn(hex, light, dark) {
90
+ return lightnessOf(hex) > 0.62 ? dark : light;
91
+ }
92
+
93
+ // src/theme/derive-tint.ts
94
+ var cache = /* @__PURE__ */ new Map();
95
+ function deriveTint(tint, theme) {
96
+ const key = `${theme.id}|${theme.mode}|${tint}`;
97
+ const hit = cache.get(key);
98
+ if (hit) return hit;
99
+ if (!isHex(tint)) {
100
+ throw new Error(
101
+ `XAUI: color="${tint}" must be a hex value (#rgb or #rrggbb). A tint's contrasted, soft and pressed slices are derived in OKLab, which cannot read rgba() or a named colour. Pass the hex here and put the transparency in \`style\`.`
102
+ );
103
+ }
104
+ const foreground = contrastOn(tint, theme.colors.snow, theme.colors.eclipse);
105
+ const derived = {
106
+ base: tint,
107
+ foreground,
108
+ soft: alpha(tint, 0.15),
109
+ softForeground: mix(tint, theme.colors.foreground, 0.2),
110
+ pressed: mix(tint, foreground, 0.1),
111
+ softPressed: alpha(tint, 0.2)
112
+ };
113
+ cache.set(key, derived);
114
+ return derived;
115
+ }
116
+
117
+ export {
118
+ ThemeContext,
119
+ useXAUITheme,
120
+ useColorMode,
121
+ useThemeColor,
122
+ mix,
123
+ alpha,
124
+ deriveTint
125
+ };
@@ -0,0 +1,12 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
+
3
+
4
+
5
+ var _chunkERCOAOO6cjs = require('../../chunk-ERCOAOO6.cjs');
6
+ require('../../chunk-7D262JCJ.cjs');
7
+ require('../../chunk-3QBT3Q65.cjs');
8
+
9
+
10
+
11
+
12
+ exports.Button = _chunkERCOAOO6cjs.Button; exports.buttonRecipe = _chunkERCOAOO6cjs.buttonRecipe; exports.useButton = _chunkERCOAOO6cjs.useButton;