@xaui/native 0.9.1-alpha.14 → 0.9.1-alpha.15
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-CLU6QDYC.js → chunk-64L44HEI.js} +95 -94
- package/dist/{chunk-F2TPUVVO.cjs → chunk-BAACHVM4.cjs} +2 -2
- package/dist/{chunk-H2USQQUD.js → chunk-E3756MJC.js} +15 -15
- package/dist/{chunk-MMSNVFXU.cjs → chunk-NLFE3CRM.cjs} +23 -23
- package/dist/{chunk-GRXC6J5M.cjs → chunk-PUER6Y4M.cjs} +73 -72
- package/dist/{chunk-5XAFRH2H.js → chunk-UOJBK5Z4.js} +1 -1
- package/dist/components/button/index.cjs +3 -3
- package/dist/components/button/index.d.cts +176 -176
- package/dist/components/button/index.d.ts +176 -176
- package/dist/components/button/index.js +2 -2
- package/dist/index.cjs +6 -6
- package/dist/index.js +3 -3
- package/dist/system/index.cjs +3 -3
- package/dist/system/index.d.cts +1 -1
- package/dist/system/index.d.ts +1 -1
- package/dist/system/index.js +2 -2
- package/package.json +1 -1
|
@@ -216,194 +216,29 @@ declare const Button: react.ForwardRefExoticComponent<{
|
|
|
216
216
|
style?: react_native.StyleProp<react_native.ViewStyle> | ((state: react_native.PressableStateCallbackType) => react_native.StyleProp<react_native.ViewStyle>);
|
|
217
217
|
children?: react.ReactNode;
|
|
218
218
|
} & {
|
|
219
|
-
|
|
220
|
-
id?: string | undefined | undefined;
|
|
221
|
-
needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
|
|
222
|
-
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | undefined | undefined;
|
|
223
|
-
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
|
|
224
|
-
removeClippedSubviews?: boolean | undefined | undefined;
|
|
225
|
-
testID?: string | undefined | undefined;
|
|
226
|
-
nativeID?: string | undefined | undefined;
|
|
227
|
-
collapsable?: boolean | undefined | undefined;
|
|
228
|
-
collapsableChildren?: boolean | undefined | undefined;
|
|
229
|
-
onBlur?: null | ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | undefined | undefined;
|
|
230
|
-
onFocus?: null | ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | undefined | undefined;
|
|
231
|
-
renderToHardwareTextureAndroid?: boolean | undefined | undefined;
|
|
232
|
-
focusable?: boolean | undefined | undefined;
|
|
233
|
-
tabIndex?: 0 | -1 | undefined | undefined;
|
|
234
|
-
shouldRasterizeIOS?: boolean | undefined | undefined;
|
|
235
|
-
isTVSelectable?: boolean | undefined | undefined;
|
|
236
|
-
hasTVPreferredFocus?: boolean | undefined | undefined;
|
|
237
|
-
tvParallaxShiftDistanceX?: number | undefined | undefined;
|
|
238
|
-
tvParallaxShiftDistanceY?: number | undefined | undefined;
|
|
239
|
-
tvParallaxTiltAngle?: number | undefined | undefined;
|
|
240
|
-
tvParallaxMagnification?: number | undefined | undefined;
|
|
241
|
-
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
242
|
-
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
243
|
-
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
244
|
-
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
245
|
-
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
246
|
-
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
247
|
-
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
248
|
-
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
249
|
-
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
250
|
-
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
251
|
-
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
252
|
-
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
253
|
-
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
254
|
-
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
255
|
-
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
256
|
-
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
257
|
-
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
258
|
-
onPointerEnter?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
259
|
-
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
260
|
-
onPointerLeave?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
261
|
-
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
262
|
-
onPointerMove?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
263
|
-
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
264
|
-
onPointerCancel?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
265
|
-
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
266
|
-
onPointerDown?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
267
|
-
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
268
|
-
onPointerUp?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
269
|
-
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
270
|
-
accessible?: boolean | undefined | undefined;
|
|
271
|
-
accessibilityActions?: readonly Readonly<{
|
|
272
|
-
name: react_native.AccessibilityActionName | string;
|
|
273
|
-
label?: string | undefined;
|
|
274
|
-
}>[] | undefined;
|
|
275
|
-
accessibilityLabel?: string | undefined | undefined;
|
|
276
|
-
'aria-label'?: string | undefined | undefined;
|
|
277
|
-
accessibilityRole?: react_native.AccessibilityRole | undefined;
|
|
278
|
-
accessibilityState?: react_native.AccessibilityState | undefined;
|
|
279
|
-
'aria-busy'?: boolean | undefined | undefined;
|
|
280
|
-
'aria-checked'?: boolean | "mixed" | undefined | undefined;
|
|
281
|
-
'aria-disabled'?: boolean | undefined | undefined;
|
|
282
|
-
'aria-expanded'?: boolean | undefined | undefined;
|
|
283
|
-
'aria-selected'?: boolean | undefined | undefined;
|
|
284
|
-
accessibilityHint?: string | undefined | undefined;
|
|
285
|
-
accessibilityValue?: react_native.AccessibilityValue | undefined;
|
|
286
|
-
'aria-valuemax'?: number | undefined;
|
|
287
|
-
'aria-valuemin'?: number | undefined;
|
|
288
|
-
'aria-valuenow'?: number | undefined;
|
|
289
|
-
'aria-valuetext'?: string | undefined;
|
|
290
|
-
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | undefined | undefined;
|
|
291
|
-
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
|
|
292
|
-
'aria-hidden'?: boolean | undefined | undefined;
|
|
293
|
-
'aria-modal'?: boolean | undefined | undefined;
|
|
294
|
-
role?: react_native.Role | undefined;
|
|
295
|
-
accessibilityLabelledBy?: string | string[] | undefined | undefined;
|
|
296
|
-
'aria-labelledby'?: string | undefined | undefined;
|
|
297
|
-
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
|
|
298
|
-
'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
|
|
299
|
-
screenReaderFocusable?: boolean | undefined | undefined;
|
|
300
|
-
accessibilityElementsHidden?: boolean | undefined | undefined;
|
|
301
|
-
accessibilityViewIsModal?: boolean | undefined | undefined;
|
|
302
|
-
onAccessibilityEscape?: (() => void) | undefined | undefined;
|
|
303
|
-
onAccessibilityTap?: (() => void) | undefined | undefined;
|
|
304
|
-
onMagicTap?: (() => void) | undefined | undefined;
|
|
305
|
-
accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
|
|
306
|
-
accessibilityLanguage?: string | undefined | undefined;
|
|
307
|
-
accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
|
|
308
|
-
accessibilityLargeContentTitle?: string | undefined | undefined;
|
|
309
|
-
accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
|
|
310
|
-
onHoverIn?: null | ((event: react_native.MouseEvent) => void) | undefined | undefined;
|
|
311
|
-
onHoverOut?: null | ((event: react_native.MouseEvent) => void) | undefined | undefined;
|
|
312
|
-
onPress?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
313
|
-
onPressIn?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
314
|
-
onPressOut?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
315
|
-
onLongPress?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
316
|
-
cancelable?: null | boolean | undefined | undefined;
|
|
317
|
-
delayHoverIn?: number | null | undefined | undefined;
|
|
318
|
-
delayHoverOut?: number | null | undefined | undefined;
|
|
319
|
-
delayLongPress?: null | number | undefined | undefined;
|
|
320
|
-
pressRetentionOffset?: number | react_native.Insets | null | undefined;
|
|
321
|
-
android_disableSound?: null | boolean | undefined | undefined;
|
|
322
|
-
android_ripple?: react_native.PressableAndroidRippleConfig | null | undefined;
|
|
323
|
-
testOnly_pressed?: null | boolean | undefined | undefined;
|
|
324
|
-
unstable_pressDelay?: number | undefined | undefined;
|
|
325
|
-
backfaceVisibility?: "visible" | "hidden" | undefined | undefined;
|
|
326
|
-
backgroundColor?: react_native.ColorValue | undefined;
|
|
327
|
-
borderBlockColor?: react_native.ColorValue | undefined;
|
|
328
|
-
borderBlockEndColor?: react_native.ColorValue | undefined;
|
|
329
|
-
borderBlockStartColor?: react_native.ColorValue | undefined;
|
|
330
|
-
borderBottomColor?: react_native.ColorValue | undefined;
|
|
331
|
-
borderBottomEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
332
|
-
borderBottomStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
333
|
-
borderColor?: react_native.ColorValue | undefined;
|
|
334
|
-
borderCurve?: "circular" | "continuous" | undefined | undefined;
|
|
335
|
-
borderEndColor?: react_native.ColorValue | undefined;
|
|
336
|
-
borderEndEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
337
|
-
borderEndStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
338
|
-
borderRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
339
|
-
borderStartColor?: react_native.ColorValue | undefined;
|
|
340
|
-
borderStartEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
341
|
-
borderStartStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
342
|
-
borderStyle?: "solid" | "dotted" | "dashed" | undefined | undefined;
|
|
343
|
-
borderTopColor?: react_native.ColorValue | undefined;
|
|
344
|
-
borderTopEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
345
|
-
borderTopStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
346
|
-
outlineColor?: react_native.ColorValue | undefined;
|
|
347
|
-
outlineOffset?: react_native.AnimatableNumericValue | undefined;
|
|
348
|
-
outlineStyle?: "solid" | "dotted" | "dashed" | undefined | undefined;
|
|
349
|
-
outlineWidth?: react_native.AnimatableNumericValue | undefined;
|
|
219
|
+
borderWidth?: number | undefined | undefined;
|
|
350
220
|
opacity?: react_native.AnimatableNumericValue | undefined;
|
|
351
|
-
elevation?: number | undefined | undefined;
|
|
352
|
-
isolation?: "auto" | "isolate" | undefined | undefined;
|
|
353
|
-
cursor?: react_native.CursorValue | undefined;
|
|
354
|
-
boxShadow?: string | readonly react_native.BoxShadowValue[] | undefined;
|
|
355
221
|
filter?: string | readonly react_native.FilterFunction[] | undefined;
|
|
356
|
-
mixBlendMode?: react_native.BlendMode | undefined;
|
|
357
|
-
experimental_backgroundImage?: string | readonly react_native.GradientValue[] | undefined;
|
|
358
222
|
alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined | undefined;
|
|
359
223
|
alignItems?: react_native.FlexAlignType | undefined;
|
|
360
224
|
alignSelf?: "auto" | react_native.FlexAlignType | undefined;
|
|
361
225
|
aspectRatio?: number | string | undefined | undefined;
|
|
362
|
-
borderBottomWidth?: number | undefined | undefined;
|
|
363
|
-
borderEndWidth?: number | undefined | undefined;
|
|
364
|
-
borderStartWidth?: number | undefined | undefined;
|
|
365
|
-
borderTopWidth?: number | undefined | undefined;
|
|
366
|
-
borderWidth?: number | undefined | undefined;
|
|
367
|
-
bottom?: react_native.DimensionValue | undefined;
|
|
368
226
|
boxSizing?: "border-box" | "content-box" | undefined | undefined;
|
|
227
|
+
columnGap?: number | string | undefined | undefined;
|
|
228
|
+
direction?: "inherit" | "ltr" | "rtl" | undefined | undefined;
|
|
369
229
|
display?: "none" | "flex" | "contents" | undefined | undefined;
|
|
370
|
-
end?: react_native.DimensionValue | undefined;
|
|
371
230
|
flex?: number | undefined | undefined;
|
|
372
231
|
flexBasis?: react_native.DimensionValue | undefined;
|
|
373
232
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | undefined | undefined;
|
|
374
|
-
rowGap?: number | string | undefined | undefined;
|
|
375
|
-
gap?: number | string | undefined | undefined;
|
|
376
|
-
columnGap?: number | string | undefined | undefined;
|
|
377
233
|
flexGrow?: number | undefined | undefined;
|
|
378
234
|
flexShrink?: number | undefined | undefined;
|
|
379
235
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | undefined | undefined;
|
|
380
|
-
|
|
236
|
+
gap?: number | string | undefined | undefined;
|
|
381
237
|
justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined | undefined;
|
|
382
|
-
margin?: react_native.DimensionValue | undefined;
|
|
383
|
-
marginBottom?: react_native.DimensionValue | undefined;
|
|
384
|
-
marginEnd?: react_native.DimensionValue | undefined;
|
|
385
|
-
marginHorizontal?: react_native.DimensionValue | undefined;
|
|
386
|
-
marginStart?: react_native.DimensionValue | undefined;
|
|
387
|
-
marginTop?: react_native.DimensionValue | undefined;
|
|
388
|
-
marginVertical?: react_native.DimensionValue | undefined;
|
|
389
|
-
maxHeight?: react_native.DimensionValue | undefined;
|
|
390
|
-
maxWidth?: react_native.DimensionValue | undefined;
|
|
391
|
-
minHeight?: react_native.DimensionValue | undefined;
|
|
392
|
-
minWidth?: react_native.DimensionValue | undefined;
|
|
393
238
|
overflow?: "visible" | "hidden" | "scroll" | undefined | undefined;
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
paddingHorizontal?: react_native.DimensionValue | undefined;
|
|
398
|
-
paddingStart?: react_native.DimensionValue | undefined;
|
|
399
|
-
paddingTop?: react_native.DimensionValue | undefined;
|
|
400
|
-
paddingVertical?: react_native.DimensionValue | undefined;
|
|
401
|
-
position?: "absolute" | "relative" | "static" | undefined | undefined;
|
|
402
|
-
start?: react_native.DimensionValue | undefined;
|
|
403
|
-
top?: react_native.DimensionValue | undefined;
|
|
404
|
-
width?: react_native.DimensionValue | undefined;
|
|
405
|
-
zIndex?: number | undefined | undefined;
|
|
406
|
-
direction?: "inherit" | "ltr" | "rtl" | undefined | undefined;
|
|
239
|
+
rowGap?: number | string | undefined | undefined;
|
|
240
|
+
bottom?: react_native.DimensionValue | undefined;
|
|
241
|
+
end?: react_native.DimensionValue | undefined;
|
|
407
242
|
inset?: react_native.DimensionValue | undefined;
|
|
408
243
|
insetBlock?: react_native.DimensionValue | undefined;
|
|
409
244
|
insetBlockEnd?: react_native.DimensionValue | undefined;
|
|
@@ -411,18 +246,77 @@ declare const Button: react.ForwardRefExoticComponent<{
|
|
|
411
246
|
insetInline?: react_native.DimensionValue | undefined;
|
|
412
247
|
insetInlineEnd?: react_native.DimensionValue | undefined;
|
|
413
248
|
insetInlineStart?: react_native.DimensionValue | undefined;
|
|
249
|
+
position?: "absolute" | "relative" | "static" | undefined | undefined;
|
|
250
|
+
start?: react_native.DimensionValue | undefined;
|
|
251
|
+
top?: react_native.DimensionValue | undefined;
|
|
252
|
+
zIndex?: number | undefined | undefined;
|
|
253
|
+
margin?: react_native.DimensionValue | undefined;
|
|
414
254
|
marginBlock?: react_native.DimensionValue | undefined;
|
|
415
255
|
marginBlockEnd?: react_native.DimensionValue | undefined;
|
|
416
256
|
marginBlockStart?: react_native.DimensionValue | undefined;
|
|
257
|
+
marginBottom?: react_native.DimensionValue | undefined;
|
|
258
|
+
marginEnd?: react_native.DimensionValue | undefined;
|
|
259
|
+
marginHorizontal?: react_native.DimensionValue | undefined;
|
|
417
260
|
marginInline?: react_native.DimensionValue | undefined;
|
|
418
261
|
marginInlineEnd?: react_native.DimensionValue | undefined;
|
|
419
262
|
marginInlineStart?: react_native.DimensionValue | undefined;
|
|
263
|
+
marginStart?: react_native.DimensionValue | undefined;
|
|
264
|
+
marginTop?: react_native.DimensionValue | undefined;
|
|
265
|
+
marginVertical?: react_native.DimensionValue | undefined;
|
|
266
|
+
padding?: react_native.DimensionValue | undefined;
|
|
420
267
|
paddingBlock?: react_native.DimensionValue | undefined;
|
|
421
268
|
paddingBlockEnd?: react_native.DimensionValue | undefined;
|
|
422
269
|
paddingBlockStart?: react_native.DimensionValue | undefined;
|
|
270
|
+
paddingBottom?: react_native.DimensionValue | undefined;
|
|
271
|
+
paddingEnd?: react_native.DimensionValue | undefined;
|
|
272
|
+
paddingHorizontal?: react_native.DimensionValue | undefined;
|
|
423
273
|
paddingInline?: react_native.DimensionValue | undefined;
|
|
424
274
|
paddingInlineEnd?: react_native.DimensionValue | undefined;
|
|
425
275
|
paddingInlineStart?: react_native.DimensionValue | undefined;
|
|
276
|
+
paddingStart?: react_native.DimensionValue | undefined;
|
|
277
|
+
paddingTop?: react_native.DimensionValue | undefined;
|
|
278
|
+
paddingVertical?: react_native.DimensionValue | undefined;
|
|
279
|
+
height?: react_native.DimensionValue | undefined;
|
|
280
|
+
maxHeight?: react_native.DimensionValue | undefined;
|
|
281
|
+
maxWidth?: react_native.DimensionValue | undefined;
|
|
282
|
+
minHeight?: react_native.DimensionValue | undefined;
|
|
283
|
+
minWidth?: react_native.DimensionValue | undefined;
|
|
284
|
+
width?: react_native.DimensionValue | undefined;
|
|
285
|
+
borderBlockColor?: react_native.ColorValue | undefined;
|
|
286
|
+
borderBlockEndColor?: react_native.ColorValue | undefined;
|
|
287
|
+
borderBlockStartColor?: react_native.ColorValue | undefined;
|
|
288
|
+
borderBottomColor?: react_native.ColorValue | undefined;
|
|
289
|
+
borderBottomEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
290
|
+
borderBottomStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
291
|
+
borderBottomWidth?: number | undefined | undefined;
|
|
292
|
+
borderColor?: react_native.ColorValue | undefined;
|
|
293
|
+
borderCurve?: "circular" | "continuous" | undefined | undefined;
|
|
294
|
+
borderEndColor?: react_native.ColorValue | undefined;
|
|
295
|
+
borderEndEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
296
|
+
borderEndStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
297
|
+
borderEndWidth?: number | undefined | undefined;
|
|
298
|
+
borderRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
299
|
+
borderStartColor?: react_native.ColorValue | undefined;
|
|
300
|
+
borderStartEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
301
|
+
borderStartStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
302
|
+
borderStartWidth?: number | undefined | undefined;
|
|
303
|
+
borderStyle?: "solid" | "dotted" | "dashed" | undefined | undefined;
|
|
304
|
+
borderTopColor?: react_native.ColorValue | undefined;
|
|
305
|
+
borderTopEndRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
306
|
+
borderTopStartRadius?: string | react_native.AnimatableNumericValue | undefined;
|
|
307
|
+
borderTopWidth?: number | undefined | undefined;
|
|
308
|
+
backfaceVisibility?: "visible" | "hidden" | undefined | undefined;
|
|
309
|
+
backgroundColor?: react_native.ColorValue | undefined;
|
|
310
|
+
boxShadow?: string | readonly react_native.BoxShadowValue[] | undefined;
|
|
311
|
+
cursor?: react_native.CursorValue | undefined;
|
|
312
|
+
elevation?: number | undefined | undefined;
|
|
313
|
+
experimental_backgroundImage?: string | readonly react_native.GradientValue[] | undefined;
|
|
314
|
+
isolation?: "auto" | "isolate" | undefined | undefined;
|
|
315
|
+
mixBlendMode?: react_native.BlendMode | undefined;
|
|
316
|
+
outlineColor?: react_native.ColorValue | undefined;
|
|
317
|
+
outlineOffset?: react_native.AnimatableNumericValue | undefined;
|
|
318
|
+
outlineStyle?: "solid" | "dotted" | "dashed" | undefined | undefined;
|
|
319
|
+
outlineWidth?: react_native.AnimatableNumericValue | undefined;
|
|
426
320
|
shadowColor?: react_native.ColorValue | undefined;
|
|
427
321
|
shadowOffset?: Readonly<{
|
|
428
322
|
width: number;
|
|
@@ -430,6 +324,9 @@ declare const Button: react.ForwardRefExoticComponent<{
|
|
|
430
324
|
}> | undefined;
|
|
431
325
|
shadowOpacity?: react_native.AnimatableNumericValue | undefined;
|
|
432
326
|
shadowRadius?: number | undefined | undefined;
|
|
327
|
+
rotation?: react_native.AnimatableNumericValue | undefined;
|
|
328
|
+
scaleX?: react_native.AnimatableNumericValue | undefined;
|
|
329
|
+
scaleY?: react_native.AnimatableNumericValue | undefined;
|
|
433
330
|
transform?: string | readonly (({
|
|
434
331
|
scaleX: react_native.AnimatableNumericValue;
|
|
435
332
|
} & {
|
|
@@ -626,13 +523,116 @@ declare const Button: react.ForwardRefExoticComponent<{
|
|
|
626
523
|
skewX?: undefined;
|
|
627
524
|
skewY?: undefined;
|
|
628
525
|
}))[] | undefined;
|
|
629
|
-
transformOrigin?: string | (string | number)[] | undefined;
|
|
630
526
|
transformMatrix?: number[] | undefined;
|
|
631
|
-
|
|
632
|
-
scaleX?: react_native.AnimatableNumericValue | undefined;
|
|
633
|
-
scaleY?: react_native.AnimatableNumericValue | undefined;
|
|
527
|
+
transformOrigin?: string | (string | number)[] | undefined;
|
|
634
528
|
translateX?: react_native.AnimatableNumericValue | undefined;
|
|
635
529
|
translateY?: react_native.AnimatableNumericValue | undefined;
|
|
530
|
+
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined | undefined;
|
|
531
|
+
id?: string | undefined | undefined;
|
|
532
|
+
onLayout?: ((event: react_native.LayoutChangeEvent) => void) | undefined | undefined;
|
|
533
|
+
testID?: string | undefined | undefined;
|
|
534
|
+
nativeID?: string | undefined | undefined;
|
|
535
|
+
accessible?: boolean | undefined | undefined;
|
|
536
|
+
accessibilityActions?: readonly Readonly<{
|
|
537
|
+
name: react_native.AccessibilityActionName | string;
|
|
538
|
+
label?: string | undefined;
|
|
539
|
+
}>[] | undefined;
|
|
540
|
+
accessibilityLabel?: string | undefined | undefined;
|
|
541
|
+
'aria-label'?: string | undefined | undefined;
|
|
542
|
+
accessibilityRole?: react_native.AccessibilityRole | undefined;
|
|
543
|
+
accessibilityState?: react_native.AccessibilityState | undefined;
|
|
544
|
+
'aria-busy'?: boolean | undefined | undefined;
|
|
545
|
+
'aria-checked'?: boolean | "mixed" | undefined | undefined;
|
|
546
|
+
'aria-disabled'?: boolean | undefined | undefined;
|
|
547
|
+
'aria-expanded'?: boolean | undefined | undefined;
|
|
548
|
+
'aria-selected'?: boolean | undefined | undefined;
|
|
549
|
+
accessibilityHint?: string | undefined | undefined;
|
|
550
|
+
accessibilityValue?: react_native.AccessibilityValue | undefined;
|
|
551
|
+
'aria-valuemax'?: number | undefined;
|
|
552
|
+
'aria-valuemin'?: number | undefined;
|
|
553
|
+
'aria-valuenow'?: number | undefined;
|
|
554
|
+
'aria-valuetext'?: string | undefined;
|
|
555
|
+
onAccessibilityAction?: ((event: react_native.AccessibilityActionEvent) => void) | undefined | undefined;
|
|
556
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined | undefined;
|
|
557
|
+
'aria-hidden'?: boolean | undefined | undefined;
|
|
558
|
+
'aria-modal'?: boolean | undefined | undefined;
|
|
559
|
+
role?: react_native.Role | undefined;
|
|
560
|
+
accessibilityLabelledBy?: string | string[] | undefined | undefined;
|
|
561
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
562
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined | undefined;
|
|
563
|
+
'aria-live'?: ("polite" | "assertive" | "off") | undefined | undefined;
|
|
564
|
+
screenReaderFocusable?: boolean | undefined | undefined;
|
|
565
|
+
accessibilityElementsHidden?: boolean | undefined | undefined;
|
|
566
|
+
accessibilityViewIsModal?: boolean | undefined | undefined;
|
|
567
|
+
onAccessibilityEscape?: (() => void) | undefined | undefined;
|
|
568
|
+
onAccessibilityTap?: (() => void) | undefined | undefined;
|
|
569
|
+
onMagicTap?: (() => void) | undefined | undefined;
|
|
570
|
+
accessibilityIgnoresInvertColors?: boolean | undefined | undefined;
|
|
571
|
+
accessibilityLanguage?: string | undefined | undefined;
|
|
572
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined | undefined;
|
|
573
|
+
accessibilityLargeContentTitle?: string | undefined | undefined;
|
|
574
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined | undefined;
|
|
575
|
+
hitSlop?: number | react_native.Insets | null | undefined;
|
|
576
|
+
needsOffscreenAlphaCompositing?: boolean | undefined | undefined;
|
|
577
|
+
removeClippedSubviews?: boolean | undefined | undefined;
|
|
578
|
+
collapsable?: boolean | undefined | undefined;
|
|
579
|
+
collapsableChildren?: boolean | undefined | undefined;
|
|
580
|
+
onBlur?: null | ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | undefined | undefined;
|
|
581
|
+
onFocus?: null | ((event: react_native.NativeSyntheticEvent<react_native.TargetedEvent>) => void) | undefined | undefined;
|
|
582
|
+
renderToHardwareTextureAndroid?: boolean | undefined | undefined;
|
|
583
|
+
focusable?: boolean | undefined | undefined;
|
|
584
|
+
tabIndex?: 0 | -1 | undefined | undefined;
|
|
585
|
+
shouldRasterizeIOS?: boolean | undefined | undefined;
|
|
586
|
+
isTVSelectable?: boolean | undefined | undefined;
|
|
587
|
+
hasTVPreferredFocus?: boolean | undefined | undefined;
|
|
588
|
+
tvParallaxShiftDistanceX?: number | undefined | undefined;
|
|
589
|
+
tvParallaxShiftDistanceY?: number | undefined | undefined;
|
|
590
|
+
tvParallaxTiltAngle?: number | undefined | undefined;
|
|
591
|
+
tvParallaxMagnification?: number | undefined | undefined;
|
|
592
|
+
onStartShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
593
|
+
onMoveShouldSetResponder?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
594
|
+
onResponderEnd?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
595
|
+
onResponderGrant?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
596
|
+
onResponderReject?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
597
|
+
onResponderMove?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
598
|
+
onResponderRelease?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
599
|
+
onResponderStart?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
600
|
+
onResponderTerminationRequest?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
601
|
+
onResponderTerminate?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
602
|
+
onStartShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
603
|
+
onMoveShouldSetResponderCapture?: ((event: react_native.GestureResponderEvent) => boolean) | undefined | undefined;
|
|
604
|
+
onTouchStart?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
605
|
+
onTouchMove?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
606
|
+
onTouchEnd?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
607
|
+
onTouchCancel?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
608
|
+
onTouchEndCapture?: ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
609
|
+
onPointerEnter?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
610
|
+
onPointerEnterCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
611
|
+
onPointerLeave?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
612
|
+
onPointerLeaveCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
613
|
+
onPointerMove?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
614
|
+
onPointerMoveCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
615
|
+
onPointerCancel?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
616
|
+
onPointerCancelCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
617
|
+
onPointerDown?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
618
|
+
onPointerDownCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
619
|
+
onPointerUp?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
620
|
+
onPointerUpCapture?: ((event: react_native.PointerEvent) => void) | undefined | undefined;
|
|
621
|
+
onHoverIn?: null | ((event: react_native.MouseEvent) => void) | undefined | undefined;
|
|
622
|
+
onHoverOut?: null | ((event: react_native.MouseEvent) => void) | undefined | undefined;
|
|
623
|
+
onPress?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
624
|
+
onPressIn?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
625
|
+
onPressOut?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
626
|
+
onLongPress?: null | ((event: react_native.GestureResponderEvent) => void) | undefined | undefined;
|
|
627
|
+
cancelable?: null | boolean | undefined | undefined;
|
|
628
|
+
delayHoverIn?: number | null | undefined | undefined;
|
|
629
|
+
delayHoverOut?: number | null | undefined | undefined;
|
|
630
|
+
delayLongPress?: null | number | undefined | undefined;
|
|
631
|
+
pressRetentionOffset?: number | react_native.Insets | null | undefined;
|
|
632
|
+
android_disableSound?: null | boolean | undefined | undefined;
|
|
633
|
+
android_ripple?: react_native.PressableAndroidRippleConfig | null | undefined;
|
|
634
|
+
testOnly_pressed?: null | boolean | undefined | undefined;
|
|
635
|
+
unstable_pressDelay?: number | undefined | undefined;
|
|
636
636
|
asChild?: boolean | undefined;
|
|
637
637
|
animation?: AnimationProp | undefined;
|
|
638
638
|
} & Omit<ViewStyleProps, keyof {
|
package/dist/index.cjs
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunkNLFE3CRMcjs = require('./chunk-NLFE3CRM.cjs');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
var
|
|
12
|
+
var _chunkBAACHVM4cjs = require('./chunk-BAACHVM4.cjs');
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
@@ -41,7 +41,7 @@ var _chunkF2TPUVVOcjs = require('./chunk-F2TPUVVO.cjs');
|
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
var
|
|
44
|
+
var _chunkPUER6Y4Mcjs = require('./chunk-PUER6Y4M.cjs');
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
|
|
@@ -90,7 +90,7 @@ function useControllableState({
|
|
|
90
90
|
function useControlWarning(isControlled) {
|
|
91
91
|
const wasControlled = _react.useRef.call(void 0, isControlled);
|
|
92
92
|
if (wasControlled.current !== isControlled) {
|
|
93
|
-
|
|
93
|
+
_chunkNLFE3CRMcjs.warnDev.call(void 0,
|
|
94
94
|
`a component switched from ${wasControlled.current ? "controlled" : "uncontrolled"} to ${isControlled ? "controlled" : "uncontrolled"}. Decide for the life of the component: pass \`value\` always, or never. Passing \`undefined\` for a value you do control reads as "uncontrolled" here.`
|
|
95
95
|
);
|
|
96
96
|
wasControlled.current = isControlled;
|
|
@@ -100,7 +100,7 @@ function useControlWarning(isControlled) {
|
|
|
100
100
|
// src/hooks/use-merged-ref.ts
|
|
101
101
|
|
|
102
102
|
function useMergedRef(...refs) {
|
|
103
|
-
return _react.useMemo.call(void 0, () =>
|
|
103
|
+
return _react.useMemo.call(void 0, () => _chunkPUER6Y4Mcjs.mergeRefs.call(void 0, ...refs), refs);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
// src/hooks/use-previous.ts
|
|
@@ -168,4 +168,4 @@ function usePrevious(value) {
|
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
|
|
171
|
-
exports.Button =
|
|
171
|
+
exports.Button = _chunkNLFE3CRMcjs.Button; exports.FEEDBACK_OVERLAY = _chunkPUER6Y4Mcjs.FEEDBACK_OVERLAY; exports.HIGHLIGHT_DURATION = _chunkPUER6Y4Mcjs.HIGHLIGHT_DURATION; exports.HIGHLIGHT_OPACITY = _chunkPUER6Y4Mcjs.HIGHLIGHT_OPACITY; exports.Icon = _chunkPUER6Y4Mcjs.Icon; exports.IconContext = _chunkPUER6Y4Mcjs.IconContext; exports.PRESS_DURATION = _chunkPUER6Y4Mcjs.PRESS_DURATION; exports.PRESS_SCALE = _chunkPUER6Y4Mcjs.PRESS_SCALE; exports.Portal = _chunkBAACHVM4cjs.Portal; exports.PortalContext = _chunkBAACHVM4cjs.PortalContext; exports.PortalHost = _chunkBAACHVM4cjs.PortalHost; exports.PressableFeedback = _chunkPUER6Y4Mcjs.PressableFeedback; exports.RIPPLE_CONFIRM_DURATION = _chunkPUER6Y4Mcjs.RIPPLE_CONFIRM_DURATION; exports.RIPPLE_EXPAND_DURATION = _chunkPUER6Y4Mcjs.RIPPLE_EXPAND_DURATION; exports.RIPPLE_FADE_IN = _chunkPUER6Y4Mcjs.RIPPLE_FADE_IN; exports.RIPPLE_FADE_OUT = _chunkPUER6Y4Mcjs.RIPPLE_FADE_OUT; exports.RIPPLE_FADE_OUT_DELAY = _chunkPUER6Y4Mcjs.RIPPLE_FADE_OUT_DELAY; exports.RIPPLE_OPACITY = _chunkPUER6Y4Mcjs.RIPPLE_OPACITY; exports.RIPPLE_START_SCALE = _chunkPUER6Y4Mcjs.RIPPLE_START_SCALE; exports.SCALE_REFERENCE_WIDTH = _chunkPUER6Y4Mcjs.SCALE_REFERENCE_WIDTH; exports.Slot = _chunkPUER6Y4Mcjs.Slot; exports.ThemeContext = _chunk6N5JXRUZcjs.ThemeContext; exports.XAUIProvider = _chunkDDYMIWLWcjs.XAUIProvider; exports.buildRadius = _chunkDDYMIWLWcjs.buildRadius; exports.buildShadows = _chunkDDYMIWLWcjs.buildShadows; exports.buttonRecipe = _chunkNLFE3CRMcjs.buttonRecipe; exports.childrenToString = _chunkPUER6Y4Mcjs.childrenToString; exports.createRecipe = _chunkPUER6Y4Mcjs.createRecipe; exports.createSlotContext = _chunkPUER6Y4Mcjs.createSlotContext; exports.createTheme = _chunkDDYMIWLWcjs.createTheme; exports.defaultTheme = _chunkDDYMIWLWcjs.defaultTheme; exports.deriveColors = _chunkDDYMIWLWcjs.deriveColors; exports.deriveTint = _chunk6N5JXRUZcjs.deriveTint; exports.markOverlay = _chunkPUER6Y4Mcjs.markOverlay; exports.mergeProps = _chunkPUER6Y4Mcjs.mergeProps; exports.mergeRefs = _chunkPUER6Y4Mcjs.mergeRefs; exports.palette = _chunkDDYMIWLWcjs.palette; exports.pressScaleFor = _chunkPUER6Y4Mcjs.pressScaleFor; exports.primitives = _chunkDDYMIWLWcjs.primitives; exports.resolveAnimation = _chunkPUER6Y4Mcjs.resolveAnimation; exports.resolveSlotAnimation = _chunkPUER6Y4Mcjs.resolveSlotAnimation; exports.rippleRadiusFor = _chunkPUER6Y4Mcjs.rippleRadiusFor; exports.sourceKeys = _chunkDDYMIWLWcjs.sourceKeys; exports.tokens = _chunkDDYMIWLWcjs.tokens; exports.useButton = _chunkNLFE3CRMcjs.useButton; exports.useColorMode = _chunk6N5JXRUZcjs.useColorMode; exports.useControllableState = useControllableState; exports.useFeedback = _chunkPUER6Y4Mcjs.useFeedback; exports.useIconContext = _chunkPUER6Y4Mcjs.useIconContext; exports.useMergedRef = useMergedRef; exports.usePressState = _chunkNLFE3CRMcjs.usePressState; exports.usePrevious = usePrevious; exports.useStyleProps = _chunkPUER6Y4Mcjs.useStyleProps; exports.useThemeColor = _chunk6N5JXRUZcjs.useThemeColor; exports.useXAUITheme = _chunk6N5JXRUZcjs.useXAUITheme;
|
package/dist/index.js
CHANGED
|
@@ -4,12 +4,12 @@ import {
|
|
|
4
4
|
useButton,
|
|
5
5
|
usePressState,
|
|
6
6
|
warnDev
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-E3756MJC.js";
|
|
8
8
|
import {
|
|
9
9
|
Portal,
|
|
10
10
|
PortalContext,
|
|
11
11
|
PortalHost
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-UOJBK5Z4.js";
|
|
13
13
|
import {
|
|
14
14
|
FEEDBACK_OVERLAY,
|
|
15
15
|
HIGHLIGHT_DURATION,
|
|
@@ -41,7 +41,7 @@ import {
|
|
|
41
41
|
useFeedback,
|
|
42
42
|
useIconContext,
|
|
43
43
|
useStyleProps
|
|
44
|
-
} from "./chunk-
|
|
44
|
+
} from "./chunk-64L44HEI.js";
|
|
45
45
|
import {
|
|
46
46
|
XAUIProvider,
|
|
47
47
|
buildRadius,
|
package/dist/system/index.cjs
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkBAACHVM4cjs = require('../chunk-BAACHVM4.cjs');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
@@ -34,7 +34,7 @@ var _chunkF2TPUVVOcjs = require('../chunk-F2TPUVVO.cjs');
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
var
|
|
37
|
+
var _chunkPUER6Y4Mcjs = require('../chunk-PUER6Y4M.cjs');
|
|
38
38
|
require('../chunk-6N5JXRUZ.cjs');
|
|
39
39
|
|
|
40
40
|
|
|
@@ -70,4 +70,4 @@ require('../chunk-6N5JXRUZ.cjs');
|
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
|
|
73
|
-
exports.FEEDBACK_OVERLAY =
|
|
73
|
+
exports.FEEDBACK_OVERLAY = _chunkPUER6Y4Mcjs.FEEDBACK_OVERLAY; exports.HIGHLIGHT_DURATION = _chunkPUER6Y4Mcjs.HIGHLIGHT_DURATION; exports.HIGHLIGHT_OPACITY = _chunkPUER6Y4Mcjs.HIGHLIGHT_OPACITY; exports.Icon = _chunkPUER6Y4Mcjs.Icon; exports.IconContext = _chunkPUER6Y4Mcjs.IconContext; exports.PRESS_DURATION = _chunkPUER6Y4Mcjs.PRESS_DURATION; exports.PRESS_SCALE = _chunkPUER6Y4Mcjs.PRESS_SCALE; exports.Portal = _chunkBAACHVM4cjs.Portal; exports.PortalContext = _chunkBAACHVM4cjs.PortalContext; exports.PortalHost = _chunkBAACHVM4cjs.PortalHost; exports.PressableFeedback = _chunkPUER6Y4Mcjs.PressableFeedback; exports.RIPPLE_CONFIRM_DURATION = _chunkPUER6Y4Mcjs.RIPPLE_CONFIRM_DURATION; exports.RIPPLE_EXPAND_DURATION = _chunkPUER6Y4Mcjs.RIPPLE_EXPAND_DURATION; exports.RIPPLE_FADE_IN = _chunkPUER6Y4Mcjs.RIPPLE_FADE_IN; exports.RIPPLE_FADE_OUT = _chunkPUER6Y4Mcjs.RIPPLE_FADE_OUT; exports.RIPPLE_FADE_OUT_DELAY = _chunkPUER6Y4Mcjs.RIPPLE_FADE_OUT_DELAY; exports.RIPPLE_OPACITY = _chunkPUER6Y4Mcjs.RIPPLE_OPACITY; exports.RIPPLE_START_SCALE = _chunkPUER6Y4Mcjs.RIPPLE_START_SCALE; exports.SCALE_REFERENCE_WIDTH = _chunkPUER6Y4Mcjs.SCALE_REFERENCE_WIDTH; exports.Slot = _chunkPUER6Y4Mcjs.Slot; exports.childrenToString = _chunkPUER6Y4Mcjs.childrenToString; exports.createRecipe = _chunkPUER6Y4Mcjs.createRecipe; exports.createSlotContext = _chunkPUER6Y4Mcjs.createSlotContext; exports.markOverlay = _chunkPUER6Y4Mcjs.markOverlay; exports.mergeProps = _chunkPUER6Y4Mcjs.mergeProps; exports.mergeRefs = _chunkPUER6Y4Mcjs.mergeRefs; exports.pressScaleFor = _chunkPUER6Y4Mcjs.pressScaleFor; exports.resolveAnimation = _chunkPUER6Y4Mcjs.resolveAnimation; exports.resolveSlotAnimation = _chunkPUER6Y4Mcjs.resolveSlotAnimation; exports.rippleRadiusFor = _chunkPUER6Y4Mcjs.rippleRadiusFor; exports.useFeedback = _chunkPUER6Y4Mcjs.useFeedback; exports.useIconContext = _chunkPUER6Y4Mcjs.useIconContext; exports.useStyleProps = _chunkPUER6Y4Mcjs.useStyleProps;
|
package/dist/system/index.d.cts
CHANGED
|
@@ -376,7 +376,7 @@ declare function resolveSlotAnimation(override: SlotAnimation | undefined, enabl
|
|
|
376
376
|
* off — and it is the only shape that survives `asChild`, where the caller's own element
|
|
377
377
|
* is the pressable and there is no sibling for the primitive to inject.
|
|
378
378
|
*/
|
|
379
|
-
declare const PressableFeedback: react.ForwardRefExoticComponent<Omit<react_native.PressableProps, "
|
|
379
|
+
declare const PressableFeedback: react.ForwardRefExoticComponent<Omit<react_native.PressableProps, "children" | "style" | "disabled"> & ViewStyleProps & {
|
|
380
380
|
isPressed?: boolean;
|
|
381
381
|
isDisabled?: boolean;
|
|
382
382
|
asChild?: boolean;
|
package/dist/system/index.d.ts
CHANGED
|
@@ -376,7 +376,7 @@ declare function resolveSlotAnimation(override: SlotAnimation | undefined, enabl
|
|
|
376
376
|
* off — and it is the only shape that survives `asChild`, where the caller's own element
|
|
377
377
|
* is the pressable and there is no sibling for the primitive to inject.
|
|
378
378
|
*/
|
|
379
|
-
declare const PressableFeedback: react.ForwardRefExoticComponent<Omit<react_native.PressableProps, "
|
|
379
|
+
declare const PressableFeedback: react.ForwardRefExoticComponent<Omit<react_native.PressableProps, "children" | "style" | "disabled"> & ViewStyleProps & {
|
|
380
380
|
isPressed?: boolean;
|
|
381
381
|
isDisabled?: boolean;
|
|
382
382
|
asChild?: boolean;
|
package/dist/system/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
Portal,
|
|
3
3
|
PortalContext,
|
|
4
4
|
PortalHost
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-UOJBK5Z4.js";
|
|
6
6
|
import {
|
|
7
7
|
FEEDBACK_OVERLAY,
|
|
8
8
|
HIGHLIGHT_DURATION,
|
|
@@ -34,7 +34,7 @@ import {
|
|
|
34
34
|
useFeedback,
|
|
35
35
|
useIconContext,
|
|
36
36
|
useStyleProps
|
|
37
|
-
} from "../chunk-
|
|
37
|
+
} from "../chunk-64L44HEI.js";
|
|
38
38
|
import "../chunk-XJARE6SC.js";
|
|
39
39
|
export {
|
|
40
40
|
FEEDBACK_OVERLAY,
|