@xaui/native 0.9.1-alpha.13 → 0.9.1-alpha.14
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-TO6DAGFB.js → chunk-5XAFRH2H.js} +7 -2
- package/dist/{chunk-B3EAZ2CC.js → chunk-CLU6QDYC.js} +134 -124
- package/dist/{chunk-2FOEFUPM.cjs → chunk-F2TPUVVO.cjs} +8 -3
- package/dist/{chunk-IVVFYUDW.cjs → chunk-GRXC6J5M.cjs} +121 -110
- package/dist/{chunk-RWLODK55.js → chunk-H2USQQUD.js} +15 -15
- package/dist/{chunk-MLJ543GP.cjs → chunk-MMSNVFXU.cjs} +23 -23
- package/dist/components/button/index.cjs +3 -3
- package/dist/components/button/index.d.cts +365 -50
- package/dist/components/button/index.d.ts +365 -50
- package/dist/components/button/index.js +2 -2
- package/dist/{create-recipe-oiLAlJ4u.d.cts → create-recipe-BcUu9b2I.d.cts} +41 -31
- package/dist/{create-recipe-3OPwcC6P.d.ts → create-recipe-DD9W6m9b.d.ts} +41 -31
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/system/index.cjs +3 -3
- package/dist/system/index.d.cts +174 -173
- package/dist/system/index.d.ts +174 -173
- package/dist/system/index.js +2 -2
- package/package.json +1 -1
|
@@ -38,8 +38,50 @@ function _optionalChain(ops) {
|
|
|
38
38
|
}
|
|
39
39
|
var _chunk6N5JXRUZcjs = require('./chunk-6N5JXRUZ.cjs');
|
|
40
40
|
|
|
41
|
-
// src/system/
|
|
41
|
+
// src/system/style-props/use-style-props.ts
|
|
42
42
|
var _react = require('react');
|
|
43
|
+
|
|
44
|
+
// src/utils/style-props.ts
|
|
45
|
+
var STYLE_PROP_KEYS = [
|
|
46
|
+
// Flex and layout
|
|
47
|
+
"alignContent", "alignItems", "alignSelf", "aspectRatio", "boxSizing", "columnGap", "direction", "display", "flex", "flexBasis", "flexDirection", "flexGrow", "flexShrink", "flexWrap", "gap", "justifyContent", "overflow", "rowGap",
|
|
48
|
+
// Position
|
|
49
|
+
"bottom", "end", "inset", "insetBlock", "insetBlockEnd", "insetBlockStart", "insetInline", "insetInlineEnd", "insetInlineStart", "position", "start", "top", "zIndex",
|
|
50
|
+
// Margin
|
|
51
|
+
"margin", "marginBlock", "marginBlockEnd", "marginBlockStart", "marginBottom", "marginEnd", "marginHorizontal", "marginInline", "marginInlineEnd", "marginInlineStart", "marginStart", "marginTop", "marginVertical",
|
|
52
|
+
// Padding
|
|
53
|
+
"padding", "paddingBlock", "paddingBlockEnd", "paddingBlockStart", "paddingBottom", "paddingEnd", "paddingHorizontal", "paddingInline", "paddingInlineEnd", "paddingInlineStart", "paddingStart", "paddingTop", "paddingVertical",
|
|
54
|
+
// Size
|
|
55
|
+
"height", "maxHeight", "maxWidth", "minHeight", "minWidth", "width",
|
|
56
|
+
// Border
|
|
57
|
+
"borderBlockColor", "borderBlockEndColor", "borderBlockStartColor", "borderBottomColor", "borderBottomEndRadius", "borderBottomStartRadius", "borderBottomWidth", "borderColor", "borderCurve", "borderEndColor", "borderEndEndRadius", "borderEndStartRadius", "borderEndWidth", "borderRadius", "borderStartColor", "borderStartEndRadius", "borderStartStartRadius", "borderStartWidth", "borderStyle", "borderTopColor", "borderTopEndRadius", "borderTopStartRadius", "borderTopWidth", "borderWidth",
|
|
58
|
+
// Fill, shadow, and the rest of a box's paint
|
|
59
|
+
"backfaceVisibility", "backgroundColor", "boxShadow", "cursor", "elevation", "experimental_backgroundImage", "filter", "isolation", "mixBlendMode", "opacity", "outlineColor", "outlineOffset", "outlineStyle", "outlineWidth", "shadowColor", "shadowOffset", "shadowOpacity", "shadowRadius",
|
|
60
|
+
// Transform
|
|
61
|
+
"rotation", "scaleX", "scaleY", "transform", "transformMatrix", "transformOrigin", "translateX", "translateY",
|
|
62
|
+
// Text — a text slot only
|
|
63
|
+
"color", "fontFamily", "fontSize", "fontStyle", "fontVariant", "fontWeight", "includeFontPadding", "letterSpacing", "lineHeight", "textAlign", "textAlignVertical", "textDecorationColor", "textDecorationLine", "textDecorationStyle", "textShadowColor", "textShadowOffset", "textShadowRadius", "textTransform", "userSelect", "verticalAlign", "writingDirection",
|
|
64
|
+
// Image — an image slot only
|
|
65
|
+
"objectFit", "overlayColor", "resizeMode", "tintColor"];
|
|
66
|
+
var STYLE_PROP_KEY_SET = new Set(STYLE_PROP_KEYS);
|
|
67
|
+
function splitStyleProps(props) {
|
|
68
|
+
const styleProps = {};
|
|
69
|
+
const rest = {};
|
|
70
|
+
for (const [key, value] of Object.entries(props)) {
|
|
71
|
+
if (STYLE_PROP_KEY_SET.has(key)) styleProps[key] = value;else rest[key] = value;
|
|
72
|
+
}
|
|
73
|
+
return [styleProps, rest];
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// src/system/style-props/use-style-props.ts
|
|
77
|
+
function useStyleProps(props) {
|
|
78
|
+
const [styleProps, rest] = splitStyleProps(props);
|
|
79
|
+
const key = _chunk6N5JXRUZcjs.stableHash.call(void 0, styleProps);
|
|
80
|
+
return [_react.useMemo.call(void 0, () => styleProps, [key]), rest];
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// src/system/icon/icon-context.ts
|
|
84
|
+
|
|
43
85
|
var IconContext = _react.createContext.call(void 0, {});
|
|
44
86
|
IconContext.displayName = "XAUI.Icon.Context";
|
|
45
87
|
function useIconContext() {
|
|
@@ -56,10 +98,12 @@ function Icon({
|
|
|
56
98
|
source,
|
|
57
99
|
size,
|
|
58
100
|
color,
|
|
59
|
-
style
|
|
101
|
+
style,
|
|
102
|
+
...props
|
|
60
103
|
}) {
|
|
61
104
|
const inherited = useIconContext();
|
|
62
105
|
const theme = _chunk6N5JXRUZcjs.useXAUITheme.call(void 0);
|
|
106
|
+
const [styleProps] = useStyleProps(props);
|
|
63
107
|
const resolvedSize = _nullishCoalesce(_nullishCoalesce(size, () => inherited.size), () => theme.fontSizes.md);
|
|
64
108
|
const resolvedColor = _nullishCoalesce(_nullishCoalesce(color, () => inherited.color), () => theme.colors.foreground);
|
|
65
109
|
if (Component) {
|
|
@@ -82,7 +126,7 @@ function Icon({
|
|
|
82
126
|
width: resolvedSize,
|
|
83
127
|
height: resolvedSize,
|
|
84
128
|
tintColor: resolvedColor
|
|
85
|
-
}, style]
|
|
129
|
+
}, styleProps, style]
|
|
86
130
|
});
|
|
87
131
|
}
|
|
88
132
|
throw new Error("XAUI: Icon needs one of `as` (an icon component), a raw SVG element as its child, or `source` (an image). It renders nothing on its own.");
|
|
@@ -199,47 +243,6 @@ function refOf(element) {
|
|
|
199
243
|
return _nullishCoalesce(fromProps, () => fromElement);
|
|
200
244
|
}
|
|
201
245
|
|
|
202
|
-
// src/system/style-props/use-style-props.ts
|
|
203
|
-
|
|
204
|
-
// src/utils/style-props.ts
|
|
205
|
-
var STYLE_PROP_KEYS = [
|
|
206
|
-
// Flex and layout
|
|
207
|
-
"alignContent", "alignItems", "alignSelf", "aspectRatio", "boxSizing", "columnGap", "direction", "display", "flex", "flexBasis", "flexDirection", "flexGrow", "flexShrink", "flexWrap", "gap", "justifyContent", "overflow", "rowGap",
|
|
208
|
-
// Position
|
|
209
|
-
"bottom", "end", "inset", "insetBlock", "insetBlockEnd", "insetBlockStart", "insetInline", "insetInlineEnd", "insetInlineStart", "position", "start", "top", "zIndex",
|
|
210
|
-
// Margin
|
|
211
|
-
"margin", "marginBlock", "marginBlockEnd", "marginBlockStart", "marginBottom", "marginEnd", "marginHorizontal", "marginInline", "marginInlineEnd", "marginInlineStart", "marginStart", "marginTop", "marginVertical",
|
|
212
|
-
// Padding
|
|
213
|
-
"padding", "paddingBlock", "paddingBlockEnd", "paddingBlockStart", "paddingBottom", "paddingEnd", "paddingHorizontal", "paddingInline", "paddingInlineEnd", "paddingInlineStart", "paddingStart", "paddingTop", "paddingVertical",
|
|
214
|
-
// Size
|
|
215
|
-
"height", "maxHeight", "maxWidth", "minHeight", "minWidth", "width",
|
|
216
|
-
// Border
|
|
217
|
-
"borderBlockColor", "borderBlockEndColor", "borderBlockStartColor", "borderBottomColor", "borderBottomEndRadius", "borderBottomStartRadius", "borderBottomWidth", "borderColor", "borderCurve", "borderEndColor", "borderEndEndRadius", "borderEndStartRadius", "borderEndWidth", "borderRadius", "borderStartColor", "borderStartEndRadius", "borderStartStartRadius", "borderStartWidth", "borderStyle", "borderTopColor", "borderTopEndRadius", "borderTopStartRadius", "borderTopWidth", "borderWidth",
|
|
218
|
-
// Fill, shadow, and the rest of a box's paint
|
|
219
|
-
"backfaceVisibility", "backgroundColor", "boxShadow", "cursor", "elevation", "experimental_backgroundImage", "filter", "isolation", "mixBlendMode", "opacity", "outlineColor", "outlineOffset", "outlineStyle", "outlineWidth", "shadowColor", "shadowOffset", "shadowOpacity", "shadowRadius",
|
|
220
|
-
// Transform
|
|
221
|
-
"rotation", "scaleX", "scaleY", "transform", "transformMatrix", "transformOrigin", "translateX", "translateY",
|
|
222
|
-
// Text — a text slot only
|
|
223
|
-
"color", "fontFamily", "fontSize", "fontStyle", "fontVariant", "fontWeight", "includeFontPadding", "letterSpacing", "lineHeight", "textAlign", "textAlignVertical", "textDecorationColor", "textDecorationLine", "textDecorationStyle", "textShadowColor", "textShadowOffset", "textShadowRadius", "textTransform", "userSelect", "verticalAlign", "writingDirection",
|
|
224
|
-
// Image — an image slot only
|
|
225
|
-
"objectFit", "overlayColor", "resizeMode", "tintColor"];
|
|
226
|
-
var STYLE_PROP_KEY_SET = new Set(STYLE_PROP_KEYS);
|
|
227
|
-
function splitStyleProps(props) {
|
|
228
|
-
const styleProps = {};
|
|
229
|
-
const rest = {};
|
|
230
|
-
for (const [key, value] of Object.entries(props)) {
|
|
231
|
-
if (STYLE_PROP_KEY_SET.has(key)) styleProps[key] = value;else rest[key] = value;
|
|
232
|
-
}
|
|
233
|
-
return [styleProps, rest];
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
// src/system/style-props/use-style-props.ts
|
|
237
|
-
function useStyleProps(props) {
|
|
238
|
-
const [styleProps, rest] = splitStyleProps(props);
|
|
239
|
-
const key = _chunk6N5JXRUZcjs.stableHash.call(void 0, styleProps);
|
|
240
|
-
return [_react.useMemo.call(void 0, () => styleProps, [key]), rest];
|
|
241
|
-
}
|
|
242
|
-
|
|
243
246
|
// src/system/pressable-feedback/pressable-feedback-context.ts
|
|
244
247
|
|
|
245
248
|
var [FeedbackProvider, useFeedback] = createSlotContext("PressableFeedback");
|
|
@@ -249,13 +252,13 @@ var DisableAllContext = _react.createContext.call(void 0, false);
|
|
|
249
252
|
var PRESS_SCALE = 0.985;
|
|
250
253
|
var PRESS_DURATION = 300;
|
|
251
254
|
var SCALE_REFERENCE_WIDTH = 300;
|
|
252
|
-
const
|
|
253
|
-
code: "function
|
|
254
|
-
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-
|
|
255
|
-
sourceMap: "{\"version\":3,\"names\":[\"
|
|
255
|
+
const _worklet_13558288134681_init_data = {
|
|
256
|
+
code: "function pressScaleFor_chunkGRXC6J5MCjs1(width){const{SCALE_REFERENCE_WIDTH,PRESS_SCALE}=this.__closure;const coefficient=width>0?SCALE_REFERENCE_WIDTH/width:1;return 1-(1-PRESS_SCALE)*coefficient;}",
|
|
257
|
+
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs",
|
|
258
|
+
sourceMap: "{\"version\":3,\"names\":[\"pressScaleFor_chunkGRXC6J5MCjs1\",\"width\",\"SCALE_REFERENCE_WIDTH\",\"PRESS_SCALE\",\"__closure\",\"coefficient\"],\"sources\":[\"/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs\"],\"mappings\":\"AA2WA,SAAAA,+BAA8BA,CAAAC,KAAA,QAAAC,qBAAA,CAAAC,WAAA,OAAAC,SAAA,CAE5B,KAAM,CAAAC,WAAW,CAAGJ,KAAK,CAAG,CAAC,CAAGC,qBAAqB,CAAGD,KAAK,CAAG,CAAC,CACjE,MAAO,EAAC,CAAG,CAAC,CAAC,CAAGE,WAAW,EAAIE,WAAW,CAC5C\",\"ignoreList\":[]}"
|
|
256
259
|
};
|
|
257
|
-
const pressScaleFor = function
|
|
258
|
-
|
|
260
|
+
const pressScaleFor = function pressScaleFor_chunkGRXC6J5MCjs1Factory({
|
|
261
|
+
_worklet_13558288134681_init_data,
|
|
259
262
|
SCALE_REFERENCE_WIDTH,
|
|
260
263
|
PRESS_SCALE
|
|
261
264
|
}) {
|
|
@@ -268,13 +271,13 @@ const pressScaleFor = function pressScaleFor_chunkIVVFYUDWCjs1Factory({
|
|
|
268
271
|
SCALE_REFERENCE_WIDTH,
|
|
269
272
|
PRESS_SCALE
|
|
270
273
|
};
|
|
271
|
-
pressScaleFor.__workletHash =
|
|
274
|
+
pressScaleFor.__workletHash = 13558288134681;
|
|
272
275
|
pressScaleFor.__pluginVersion = "0.7.4";
|
|
273
|
-
pressScaleFor.__initData =
|
|
276
|
+
pressScaleFor.__initData = _worklet_13558288134681_init_data;
|
|
274
277
|
pressScaleFor.__stackDetails = _e;
|
|
275
278
|
return pressScaleFor;
|
|
276
279
|
}({
|
|
277
|
-
|
|
280
|
+
_worklet_13558288134681_init_data,
|
|
278
281
|
SCALE_REFERENCE_WIDTH,
|
|
279
282
|
PRESS_SCALE
|
|
280
283
|
});
|
|
@@ -287,26 +290,26 @@ var RIPPLE_CONFIRM_DURATION = 225;
|
|
|
287
290
|
var RIPPLE_FADE_IN = 75;
|
|
288
291
|
var RIPPLE_FADE_OUT_DELAY = 225;
|
|
289
292
|
var RIPPLE_FADE_OUT = 150;
|
|
290
|
-
const
|
|
291
|
-
code: "function
|
|
292
|
-
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-
|
|
293
|
-
sourceMap: "{\"version\":3,\"names\":[\"
|
|
293
|
+
const _worklet_4996986896354_init_data = {
|
|
294
|
+
code: "function rippleRadiusFor_chunkGRXC6J5MCjs2(width,height){return Math.sqrt(width*width+height*height)/2+5;}",
|
|
295
|
+
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs",
|
|
296
|
+
sourceMap: "{\"version\":3,\"names\":[\"rippleRadiusFor_chunkGRXC6J5MCjs2\",\"width\",\"height\",\"Math\",\"sqrt\"],\"sources\":[\"/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs\"],\"mappings\":\"AAyXA,SAAAA,iCAAwCA,CAAAC,KAAA,CAAAC,MAAA,EAEtC,MAAO,CAAAC,IAAI,CAACC,IAAI,CAACH,KAAK,CAAGA,KAAK,CAAGC,MAAM,CAAGA,MAAM,CAAC,CAAG,CAAC,CAAG,CAAC,CAC3D\",\"ignoreList\":[]}"
|
|
294
297
|
};
|
|
295
|
-
const rippleRadiusFor = function
|
|
296
|
-
|
|
298
|
+
const rippleRadiusFor = function rippleRadiusFor_chunkGRXC6J5MCjs2Factory({
|
|
299
|
+
_worklet_4996986896354_init_data
|
|
297
300
|
}) {
|
|
298
301
|
const _e = [new global.Error(), 1, -27];
|
|
299
302
|
const rippleRadiusFor = function (width, height) {
|
|
300
303
|
return Math.sqrt(width * width + height * height) / 2 + 5;
|
|
301
304
|
};
|
|
302
305
|
rippleRadiusFor.__closure = {};
|
|
303
|
-
rippleRadiusFor.__workletHash =
|
|
306
|
+
rippleRadiusFor.__workletHash = 4996986896354;
|
|
304
307
|
rippleRadiusFor.__pluginVersion = "0.7.4";
|
|
305
|
-
rippleRadiusFor.__initData =
|
|
308
|
+
rippleRadiusFor.__initData = _worklet_4996986896354_init_data;
|
|
306
309
|
rippleRadiusFor.__stackDetails = _e;
|
|
307
310
|
return rippleRadiusFor;
|
|
308
311
|
}({
|
|
309
|
-
|
|
312
|
+
_worklet_4996986896354_init_data
|
|
310
313
|
});
|
|
311
314
|
var ALL_OFF = {
|
|
312
315
|
scale: false,
|
|
@@ -426,14 +429,17 @@ var AnimatedPressable = _reactnativereanimated2.default.createAnimatedComponent(
|
|
|
426
429
|
var AnimatedSlot = _reactnativereanimated2.default.createAnimatedComponent(Slot);
|
|
427
430
|
var PressableFeedback = _react.forwardRef.call(void 0, function PressableFeedback2({
|
|
428
431
|
animation,
|
|
429
|
-
|
|
432
|
+
style,
|
|
433
|
+
...props
|
|
430
434
|
}, ref) {
|
|
431
435
|
const inheritedDisableAll = _react.useContext.call(void 0, DisableAllContext);
|
|
432
436
|
const resolved = resolveAnimation(animation, inheritedDisableAll);
|
|
437
|
+
const [styleProps, rest] = useStyleProps(props);
|
|
433
438
|
const Feedback = resolved.none ? StaticFeedback : AnimatedFeedback;
|
|
434
439
|
const body = /* @__PURE__ */_jsxruntime.jsx.call(void 0, Feedback, {
|
|
435
440
|
ref,
|
|
436
441
|
animation: resolved,
|
|
442
|
+
style: [styleProps, style],
|
|
437
443
|
...rest
|
|
438
444
|
});
|
|
439
445
|
return resolved.disableAll ? /* @__PURE__ */_jsxruntime.jsx.call(void 0, DisableAllContext.Provider, {
|
|
@@ -472,10 +478,10 @@ var StaticFeedback = _react.forwardRef.call(void 0, function StaticFeedback2({
|
|
|
472
478
|
})
|
|
473
479
|
});
|
|
474
480
|
});
|
|
475
|
-
const
|
|
476
|
-
code: "function
|
|
477
|
-
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-
|
|
478
|
-
sourceMap: "{\"version\":3,\"names\":[\"
|
|
481
|
+
const _worklet_1474706883776_init_data = {
|
|
482
|
+
code: "function chunkGRXC6J5MCjs3(){const{animation,pressedScale,progress}=this.__closure;if(!animation.scale)return{};return{transform:[{scale:1-(1-pressedScale.value)*progress.value}]};}",
|
|
483
|
+
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs",
|
|
484
|
+
sourceMap: "{\"version\":3,\"names\":[\"chunkGRXC6J5MCjs3\",\"animation\",\"pressedScale\",\"progress\",\"__closure\",\"scale\",\"transform\",\"value\"],\"sources\":[\"/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs\"],\"mappings\":\"AAsiB6E,SAAAA,iBAAMA,CAAA,QAAAC,SAAA,CAAAC,YAAA,CAAAC,QAAA,OAAAC,SAAA,CAE/E,GAAI,CAACH,SAAS,CAACI,KAAK,CAAE,MAAO,CAAC,CAAC,CAC/B,MAAO,CAAEC,SAAS,CAAE,CAAC,CAAED,KAAK,CAAE,CAAC,CAAG,CAAC,CAAC,CAAGH,YAAY,CAACK,KAAK,EAAIJ,QAAQ,CAACI,KAAM,CAAC,CAAE,CAAC,CAClF\",\"ignoreList\":[]}"
|
|
479
485
|
};
|
|
480
486
|
var AnimatedFeedback = _react.forwardRef.call(void 0, function AnimatedFeedback2({
|
|
481
487
|
isPressed = false,
|
|
@@ -504,14 +510,14 @@ var AnimatedFeedback = _react.forwardRef.call(void 0, function AnimatedFeedback2
|
|
|
504
510
|
});
|
|
505
511
|
}, [isPressed, progress]);
|
|
506
512
|
const pressedScale = _reactnativereanimated.useDerivedValue.call(void 0, () => pressScaleFor(size.value.width));
|
|
507
|
-
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0, function
|
|
508
|
-
|
|
513
|
+
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0, function chunkGRXC6J5MCjs3Factory({
|
|
514
|
+
_worklet_1474706883776_init_data,
|
|
509
515
|
animation,
|
|
510
516
|
pressedScale,
|
|
511
517
|
progress
|
|
512
518
|
}) {
|
|
513
519
|
const _e = [new global.Error(), -4, -27];
|
|
514
|
-
const
|
|
520
|
+
const chunkGRXC6J5MCjs3 = function () {
|
|
515
521
|
if (!animation.scale) return {};
|
|
516
522
|
return {
|
|
517
523
|
transform: [{
|
|
@@ -519,18 +525,18 @@ var AnimatedFeedback = _react.forwardRef.call(void 0, function AnimatedFeedback2
|
|
|
519
525
|
}]
|
|
520
526
|
};
|
|
521
527
|
};
|
|
522
|
-
|
|
528
|
+
chunkGRXC6J5MCjs3.__closure = {
|
|
523
529
|
animation,
|
|
524
530
|
pressedScale,
|
|
525
531
|
progress
|
|
526
532
|
};
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
return
|
|
533
|
+
chunkGRXC6J5MCjs3.__workletHash = 1474706883776;
|
|
534
|
+
chunkGRXC6J5MCjs3.__pluginVersion = "0.7.4";
|
|
535
|
+
chunkGRXC6J5MCjs3.__initData = _worklet_1474706883776_init_data;
|
|
536
|
+
chunkGRXC6J5MCjs3.__stackDetails = _e;
|
|
537
|
+
return chunkGRXC6J5MCjs3;
|
|
532
538
|
}({
|
|
533
|
-
|
|
539
|
+
_worklet_1474706883776_init_data,
|
|
534
540
|
animation,
|
|
535
541
|
pressedScale,
|
|
536
542
|
progress
|
|
@@ -641,7 +647,8 @@ function useSurface(style) {
|
|
|
641
647
|
function PressableFeedbackHighlight({
|
|
642
648
|
style,
|
|
643
649
|
animation: override,
|
|
644
|
-
children
|
|
650
|
+
children,
|
|
651
|
+
...props
|
|
645
652
|
}) {
|
|
646
653
|
const {
|
|
647
654
|
isPressed,
|
|
@@ -650,11 +657,12 @@ function PressableFeedbackHighlight({
|
|
|
650
657
|
ink,
|
|
651
658
|
corners
|
|
652
659
|
} = useFeedback();
|
|
660
|
+
const [styleProps] = useStyleProps(props);
|
|
653
661
|
const settings = resolveSlotAnimation(override, animation.highlight, HIGHLIGHT_OPACITY, HIGHLIGHT_DURATION);
|
|
654
662
|
const base = [_reactnative.StyleSheet.absoluteFillObject, {
|
|
655
663
|
backgroundColor: ink,
|
|
656
664
|
pointerEvents: "none"
|
|
657
|
-
}, corners, style];
|
|
665
|
+
}, corners, styleProps, style];
|
|
658
666
|
if (!progress || !settings.enabled) {
|
|
659
667
|
return /* @__PURE__ */_jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, {
|
|
660
668
|
children: [/* @__PURE__ */_jsxruntime.jsx.call(void 0, _reactnative.View, {
|
|
@@ -674,10 +682,10 @@ function PressableFeedbackHighlight({
|
|
|
674
682
|
}
|
|
675
683
|
PressableFeedbackHighlight.displayName = "XAUI.PressableFeedback.Highlight";
|
|
676
684
|
markOverlay(PressableFeedbackHighlight);
|
|
677
|
-
const
|
|
678
|
-
code: "function
|
|
679
|
-
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-
|
|
680
|
-
sourceMap: "{\"version\":3,\"names\":[\"
|
|
685
|
+
const _worklet_11151204612214_init_data = {
|
|
686
|
+
code: "function chunkGRXC6J5MCjs4(){const{shown,opacity}=this.__closure;return{opacity:shown.value*opacity};}",
|
|
687
|
+
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs",
|
|
688
|
+
sourceMap: "{\"version\":3,\"names\":[\"chunkGRXC6J5MCjs4\",\"shown\",\"opacity\",\"__closure\",\"value\"],\"sources\":[\"/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs\"],\"mappings\":\"AAwrB6E,SAAAA,iBAAMA,CAAA,QAAAC,KAAA,CAAAC,OAAA,OAAAC,SAAA,CAE/E,MAAO,CAAED,OAAO,CAAED,KAAK,CAACG,KAAK,CAAGF,OAAQ,CAAC,CAC3C\",\"ignoreList\":[]}"
|
|
681
689
|
};
|
|
682
690
|
function AnimatedHighlight({
|
|
683
691
|
base,
|
|
@@ -693,28 +701,28 @@ function AnimatedHighlight({
|
|
|
693
701
|
duration
|
|
694
702
|
});
|
|
695
703
|
}, [isPressed, shown, duration]);
|
|
696
|
-
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0, function
|
|
697
|
-
|
|
704
|
+
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0, function chunkGRXC6J5MCjs4Factory({
|
|
705
|
+
_worklet_11151204612214_init_data,
|
|
698
706
|
shown,
|
|
699
707
|
opacity
|
|
700
708
|
}) {
|
|
701
709
|
const _e = [new global.Error(), -3, -27];
|
|
702
|
-
const
|
|
710
|
+
const chunkGRXC6J5MCjs4 = function () {
|
|
703
711
|
return {
|
|
704
712
|
opacity: shown.value * opacity
|
|
705
713
|
};
|
|
706
714
|
};
|
|
707
|
-
|
|
715
|
+
chunkGRXC6J5MCjs4.__closure = {
|
|
708
716
|
shown,
|
|
709
717
|
opacity
|
|
710
718
|
};
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
return
|
|
719
|
+
chunkGRXC6J5MCjs4.__workletHash = 11151204612214;
|
|
720
|
+
chunkGRXC6J5MCjs4.__pluginVersion = "0.7.4";
|
|
721
|
+
chunkGRXC6J5MCjs4.__initData = _worklet_11151204612214_init_data;
|
|
722
|
+
chunkGRXC6J5MCjs4.__stackDetails = _e;
|
|
723
|
+
return chunkGRXC6J5MCjs4;
|
|
716
724
|
}({
|
|
717
|
-
|
|
725
|
+
_worklet_11151204612214_init_data,
|
|
718
726
|
shown,
|
|
719
727
|
opacity
|
|
720
728
|
}), [shown, opacity]);
|
|
@@ -728,7 +736,8 @@ function AnimatedHighlight({
|
|
|
728
736
|
function PressableFeedbackRipple({
|
|
729
737
|
style,
|
|
730
738
|
animation: override,
|
|
731
|
-
children
|
|
739
|
+
children,
|
|
740
|
+
...props
|
|
732
741
|
}) {
|
|
733
742
|
const {
|
|
734
743
|
animation,
|
|
@@ -736,6 +745,8 @@ function PressableFeedbackRipple({
|
|
|
736
745
|
ink,
|
|
737
746
|
corners
|
|
738
747
|
} = useFeedback();
|
|
748
|
+
const [styleProps] = useStyleProps(props);
|
|
749
|
+
const waveStyle = [styleProps, style];
|
|
739
750
|
const settings = resolveSlotAnimation(override, animation.ripple, RIPPLE_OPACITY);
|
|
740
751
|
const [size, setSize] = _react.useState.call(void 0, {
|
|
741
752
|
width: 0,
|
|
@@ -768,17 +779,17 @@ function PressableFeedbackRipple({
|
|
|
768
779
|
},
|
|
769
780
|
color: ink,
|
|
770
781
|
opacity: settings.opacity,
|
|
771
|
-
style
|
|
782
|
+
style: waveStyle
|
|
772
783
|
}, index))
|
|
773
784
|
}), children]
|
|
774
785
|
});
|
|
775
786
|
}
|
|
776
787
|
PressableFeedbackRipple.displayName = "XAUI.PressableFeedback.Ripple";
|
|
777
788
|
markOverlay(PressableFeedbackRipple);
|
|
778
|
-
const
|
|
779
|
-
code: "function
|
|
780
|
-
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-
|
|
781
|
-
sourceMap: "{\"version\":3,\"names\":[\"
|
|
789
|
+
const _worklet_9063586545627_init_data = {
|
|
790
|
+
code: "function chunkGRXC6J5MCjs5(){const{wave,RIPPLE_START_SCALE,center,opacity,radius}=this.__closure;const t=wave.expand.value;const from=wave.origin.value;const scale=RIPPLE_START_SCALE+(1-RIPPLE_START_SCALE)*t;const x=from.x+(center.x-from.x)*t;const y=from.y+(center.y-from.y)*t;return{opacity:wave.alpha.value*opacity,transform:[{translateX:x-radius},{translateY:y-radius},{scale:scale}]};}",
|
|
791
|
+
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs",
|
|
792
|
+
sourceMap: "{\"version\":3,\"names\":[\"chunkGRXC6J5MCjs5\",\"wave\",\"RIPPLE_START_SCALE\",\"center\",\"opacity\",\"radius\",\"__closure\",\"t\",\"expand\",\"value\",\"from\",\"origin\",\"scale\",\"x\",\"y\",\"alpha\",\"transform\",\"translateX\",\"translateY\"],\"sources\":[\"/home/runner/work/xaui/xaui/packages/native/dist/chunk-GRXC6J5M.cjs\"],\"mappings\":\"AAwvB6E,SAAAA,iBAAMA,CAAA,QAAAC,IAAA,CAAAC,kBAAA,CAAAC,MAAA,CAAAC,OAAA,CAAAC,MAAA,OAAAC,SAAA,CAE/E,KAAM,CAAAC,CAAC,CAAGN,IAAI,CAACO,MAAM,CAACC,KAAK,CAC3B,KAAM,CAAAC,IAAI,CAAGT,IAAI,CAACU,MAAM,CAACF,KAAK,CAC9B,KAAM,CAAAG,KAAK,CAAGV,kBAAkB,CAAG,CAAC,CAAC,CAAGA,kBAAkB,EAAIK,CAAC,CAC/D,KAAM,CAAAM,CAAC,CAAGH,IAAI,CAACG,CAAC,CAAG,CAACV,MAAM,CAACU,CAAC,CAAGH,IAAI,CAACG,CAAC,EAAIN,CAAC,CAC1C,KAAM,CAAAO,CAAC,CAAGJ,IAAI,CAACI,CAAC,CAAG,CAACX,MAAM,CAACW,CAAC,CAAGJ,IAAI,CAACI,CAAC,EAAIP,CAAC,CAC1C,MAAO,CAELH,OAAO,CAAEH,IAAI,CAACc,KAAK,CAACN,KAAK,CAAGL,OAAO,CACnCY,SAAS,CAAE,CAAC,CAAEC,UAAU,CAAEJ,CAAC,CAAGR,MAAO,CAAC,CAAE,CAAEa,UAAU,CAAEJ,CAAC,CAAGT,MAAO,CAAC,CAAE,CAAEO,KAAA,CAAAA,KAAM,CAAC,CAC/E,CAAC,CACH\",\"ignoreList\":[]}"
|
|
782
793
|
};
|
|
783
794
|
function RippleWave({
|
|
784
795
|
wave,
|
|
@@ -788,8 +799,8 @@ function RippleWave({
|
|
|
788
799
|
opacity,
|
|
789
800
|
style
|
|
790
801
|
}) {
|
|
791
|
-
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0, function
|
|
792
|
-
|
|
802
|
+
const animatedStyle = _reactnativereanimated.useAnimatedStyle.call(void 0, function chunkGRXC6J5MCjs5Factory({
|
|
803
|
+
_worklet_9063586545627_init_data,
|
|
793
804
|
wave,
|
|
794
805
|
RIPPLE_START_SCALE,
|
|
795
806
|
center,
|
|
@@ -797,7 +808,7 @@ function RippleWave({
|
|
|
797
808
|
radius
|
|
798
809
|
}) {
|
|
799
810
|
const _e = [new global.Error(), -6, -27];
|
|
800
|
-
const
|
|
811
|
+
const chunkGRXC6J5MCjs5 = function () {
|
|
801
812
|
const t = wave.expand.value;
|
|
802
813
|
const from = wave.origin.value;
|
|
803
814
|
const scale = RIPPLE_START_SCALE + (1 - RIPPLE_START_SCALE) * t;
|
|
@@ -815,20 +826,20 @@ function RippleWave({
|
|
|
815
826
|
}]
|
|
816
827
|
};
|
|
817
828
|
};
|
|
818
|
-
|
|
829
|
+
chunkGRXC6J5MCjs5.__closure = {
|
|
819
830
|
wave,
|
|
820
831
|
RIPPLE_START_SCALE,
|
|
821
832
|
center,
|
|
822
833
|
opacity,
|
|
823
834
|
radius
|
|
824
835
|
};
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
return
|
|
836
|
+
chunkGRXC6J5MCjs5.__workletHash = 9063586545627;
|
|
837
|
+
chunkGRXC6J5MCjs5.__pluginVersion = "0.7.4";
|
|
838
|
+
chunkGRXC6J5MCjs5.__initData = _worklet_9063586545627_init_data;
|
|
839
|
+
chunkGRXC6J5MCjs5.__stackDetails = _e;
|
|
840
|
+
return chunkGRXC6J5MCjs5;
|
|
830
841
|
}({
|
|
831
|
-
|
|
842
|
+
_worklet_9063586545627_init_data,
|
|
832
843
|
wave,
|
|
833
844
|
RIPPLE_START_SCALE,
|
|
834
845
|
center,
|
|
@@ -1012,6 +1023,7 @@ function apply(fns, theme, colors) {
|
|
|
1012
1023
|
}
|
|
1013
1024
|
return merged;
|
|
1014
1025
|
}
|
|
1026
|
+
exports.useStyleProps = useStyleProps;
|
|
1015
1027
|
exports.IconContext = IconContext;
|
|
1016
1028
|
exports.useIconContext = useIconContext;
|
|
1017
1029
|
exports.Icon = Icon;
|
|
@@ -1020,7 +1032,6 @@ exports.createSlotContext = createSlotContext;
|
|
|
1020
1032
|
exports.mergeRefs = mergeRefs;
|
|
1021
1033
|
exports.mergeProps = mergeProps;
|
|
1022
1034
|
exports.Slot = Slot;
|
|
1023
|
-
exports.useStyleProps = useStyleProps;
|
|
1024
1035
|
exports.useFeedback = useFeedback;
|
|
1025
1036
|
exports.PRESS_SCALE = PRESS_SCALE;
|
|
1026
1037
|
exports.PRESS_DURATION = PRESS_DURATION;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Icon, PressableFeedback, childrenToString, createRecipe, createSlotContext, useStyleProps } from "./chunk-
|
|
1
|
+
import { Icon, PressableFeedback, childrenToString, createRecipe, createSlotContext, useStyleProps } from "./chunk-CLU6QDYC.js";
|
|
2
2
|
import { useXAUITheme } from "./chunk-XJARE6SC.js";
|
|
3
3
|
|
|
4
4
|
// src/components/button/button.context.ts
|
|
@@ -70,10 +70,10 @@ function ButtonSpinner({
|
|
|
70
70
|
});
|
|
71
71
|
}
|
|
72
72
|
ButtonSpinner.displayName = "XAUI.Button.Spinner";
|
|
73
|
-
const
|
|
74
|
-
code: "function
|
|
75
|
-
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-
|
|
76
|
-
sourceMap: "{\"version\":3,\"names\":[\"
|
|
73
|
+
const _worklet_1169378453226_init_data = {
|
|
74
|
+
code: "function chunkH2USQQUDJs1(){const{angle}=this.__closure;return{transform:[{rotate:angle.value+\"deg\"}]};}",
|
|
75
|
+
location: "/home/runner/work/xaui/xaui/packages/native/dist/chunk-H2USQQUD.js",
|
|
76
|
+
sourceMap: "{\"version\":3,\"names\":[\"chunkH2USQQUDJs1\",\"angle\",\"__closure\",\"transform\",\"rotate\",\"value\"],\"sources\":[\"/home/runner/work/xaui/xaui/packages/native/dist/chunk-H2USQQUD.js\"],\"mappings\":\"AA0EyC,SAAAA,gBAAMA,CAAA,QAAAC,KAAA,OAAAC,SAAA,CAE3C,MAAO,CAAEC,SAAS,CAAE,CAAC,CAAEC,MAAM,CAAKH,KAAK,CAACI,KAAK,MAAM,CAAC,CAAE,CAAC,CACzD\",\"ignoreList\":[]}"
|
|
77
77
|
};
|
|
78
78
|
function SpinningRing({
|
|
79
79
|
style
|
|
@@ -86,28 +86,28 @@ function SpinningRing({
|
|
|
86
86
|
}), -1, false);
|
|
87
87
|
return () => cancelAnimation(angle);
|
|
88
88
|
}, [angle]);
|
|
89
|
-
const animatedStyle = useAnimatedStyle(function
|
|
90
|
-
|
|
89
|
+
const animatedStyle = useAnimatedStyle(function chunkH2USQQUDJs1Factory({
|
|
90
|
+
_worklet_1169378453226_init_data,
|
|
91
91
|
angle
|
|
92
92
|
}) {
|
|
93
93
|
const _e = [new global.Error(), -2, -27];
|
|
94
|
-
const
|
|
94
|
+
const chunkH2USQQUDJs1 = function () {
|
|
95
95
|
return {
|
|
96
96
|
transform: [{
|
|
97
97
|
rotate: `${angle.value}deg`
|
|
98
98
|
}]
|
|
99
99
|
};
|
|
100
100
|
};
|
|
101
|
-
|
|
101
|
+
chunkH2USQQUDJs1.__closure = {
|
|
102
102
|
angle
|
|
103
103
|
};
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
return
|
|
104
|
+
chunkH2USQQUDJs1.__workletHash = 1169378453226;
|
|
105
|
+
chunkH2USQQUDJs1.__pluginVersion = "0.7.4";
|
|
106
|
+
chunkH2USQQUDJs1.__initData = _worklet_1169378453226_init_data;
|
|
107
|
+
chunkH2USQQUDJs1.__stackDetails = _e;
|
|
108
|
+
return chunkH2USQQUDJs1;
|
|
109
109
|
}({
|
|
110
|
-
|
|
110
|
+
_worklet_1169378453226_init_data,
|
|
111
111
|
angle
|
|
112
112
|
}), [angle]);
|
|
113
113
|
return /* @__PURE__ */jsx3(Animated.View, {
|