tamagui 1.74.19 → 1.74.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.native.js +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.native.js +1 -1
- package/dist/jsx/index.js +1 -1
- package/dist/jsx/index.native.js +1 -1
- package/dist/native.js +115 -126
- package/dist/native.js.map +2 -2
- package/dist/test.native.js +115 -126
- package/dist/test.native.js.map +2 -2
- package/linear-gradient/index.d.ts +1 -1
- package/package.json +52 -52
- package/src/index.ts +1 -1
- package/types/index.d.ts +1 -1
- package/types/index.d.ts.map +1 -1
- package/types/views/Anchor.d.ts +31 -60
- package/types/views/Anchor.d.ts.map +1 -1
- package/types/views/EnsureFlexed.d.ts +103 -15
- package/types/views/EnsureFlexed.d.ts.map +1 -1
- package/types/views/Fieldset.d.ts +187 -23
- package/types/views/Fieldset.d.ts.map +1 -1
- package/types/views/Input.d.ts +59 -64
- package/types/views/Input.d.ts.map +1 -1
- package/types/views/Layouts.d.ts +1225 -105
- package/types/views/Layouts.d.ts.map +1 -1
- package/types/views/Text.d.ts +86 -6
- package/types/views/Text.d.ts.map +1 -1
- package/types/views/TextArea.d.ts +38 -67
- package/types/views/TextArea.d.ts.map +1 -1
- package/types/views/VisuallyHidden.d.ts +146 -6
- package/types/views/VisuallyHidden.d.ts.map +1 -1
package/types/views/Input.d.ts
CHANGED
|
@@ -40,13 +40,13 @@ export declare const defaultStyles: {
|
|
|
40
40
|
readonly outlineWidth: 0;
|
|
41
41
|
readonly color: "$color";
|
|
42
42
|
};
|
|
43
|
-
export declare const InputFrame: import("@tamagui/core").TamaguiComponent<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
43
|
+
export declare const InputFrame: import("@tamagui/core").TamaguiComponent<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
44
44
|
readonly unstyled?: boolean | undefined;
|
|
45
45
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
46
|
-
} & import("@tamagui/core").PseudoProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
46
|
+
} & import("@tamagui/core").PseudoProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
47
47
|
readonly unstyled?: boolean | undefined;
|
|
48
48
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
49
|
-
}>> & import("@tamagui/core").MediaProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
49
|
+
}>> & import("@tamagui/core").MediaProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
50
50
|
readonly unstyled?: boolean | undefined;
|
|
51
51
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
52
52
|
}>>, TextInput, import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps>, {
|
|
@@ -61,43 +61,38 @@ export type InputProps = Omit<GetProps<typeof InputFrame>, 'placeholderTextColor
|
|
|
61
61
|
placeholderTextColor?: ColorStyleProp;
|
|
62
62
|
rows?: number;
|
|
63
63
|
};
|
|
64
|
-
export declare const Input: import("@tamagui/core").
|
|
64
|
+
export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
65
65
|
readonly unstyled?: boolean | undefined;
|
|
66
66
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
67
|
-
} & import("@tamagui/core").PseudoProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
67
|
+
} & import("@tamagui/core").PseudoProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
68
68
|
readonly unstyled?: boolean | undefined;
|
|
69
69
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
70
|
-
}>> & import("@tamagui/core").MediaProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
70
|
+
}>> & import("@tamagui/core").MediaProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
71
71
|
readonly unstyled?: boolean | undefined;
|
|
72
72
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
73
|
-
}>>, "placeholderTextColor"> & {
|
|
74
|
-
placeholderTextColor?: ColorStyleProp | undefined;
|
|
75
|
-
rows?: number | undefined;
|
|
76
|
-
} & Omit<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & Omit<{}, "size" | "unstyled"> & {
|
|
73
|
+
}>>, "color" | "borderColor" | "shadowColor" | "size" | "space" | "zIndex" | "width" | "height" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingHorizontal" | "paddingVertical" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "marginHorizontal" | "marginVertical" | "flex" | "flexDirection" | "flexWrap" | "flexGrow" | "flexShrink" | "flexBasis" | "alignItems" | "alignContent" | "justifyContent" | "alignSelf" | "backgroundColor" | "borderRadius" | "borderTopRightRadius" | "borderBottomRightRadius" | "borderBottomLeftRadius" | "borderTopLeftRadius" | "textAlign" | "left" | "right" | "fontSize" | "lineHeight" | "children" | "className" | "style" | "ellipse" | "group" | "separator" | "onLayout" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "allowFontScaling" | "ellipsizeMode" | "id" | "lineBreakMode" | "numberOfLines" | "onTextLayout" | "onPress" | "onPressIn" | "onPressOut" | "onLongPress" | "testID" | "nativeID" | "maxFontSizeMultiplier" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "minimumFontScale" | "suppressHighlighting" | "lineBreakStrategyIOS" | "disabled" | "selectable" | "selectionColor" | "textBreakStrategy" | "dataDetectorType" | "android_hyphenationFrequency" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "display" | "gap" | "columnGap" | "rowGap" | "contain" | "cursor" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "pointerEvents" | "spaceDirection" | "animation" | "animateOnly" | "userSelect" | "textDecorationDistance" | "textOverflow" | "whiteSpace" | "wordWrap" | "fontFamily" | "fontStyle" | "fontWeight" | "letterSpacing" | "textDecorationLine" | "textDecorationStyle" | "textDecorationColor" | "textShadowColor" | "textShadowOffset" | "textShadowRadius" | "textTransform" | "fontVariant" | "writingDirection" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomStartRadius" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopStartRadius" | "opacity" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "marginEnd" | "marginStart" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "paddingEnd" | "paddingStart" | "position" | "start" | "top" | "direction" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "scaleX" | "scaleY" | "translateX" | "translateY" | "textAlignVertical" | "verticalAlign" | "includeFontPadding" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | "x" | "y" | "perspective" | "scale" | "skewX" | "skewY" | "matrix" | "rotate" | "rotateY" | "rotateX" | "rotateZ" | "theme" | "onFocus" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onBlur" | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onScroll" | "hitSlop" | "removeClippedSubviews" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "unstyled" | "autoCapitalize" | "autoComplete" | "autoCorrect" | "autoFocus" | "blurOnSubmit" | "caretHidden" | "contextMenuHidden" | "defaultValue" | "editable" | "keyboardType" | "inputMode" | "maxLength" | "multiline" | "onChange" | "onChangeText" | "onContentSizeChange" | "onEndEditing" | "onSelectionChange" | "onSubmitEditing" | "onTextInput" | "onKeyPress" | "placeholder" | "placeholderTextColor" | "returnKeyType" | "secureTextEntry" | "selectTextOnFocus" | "selection" | "inputAccessoryViewID" | "value" | "clearButtonMode" | "clearTextOnFocus" | "dataDetectorTypes" | "enablesReturnKeyAutomatically" | "keyboardAppearance" | "passwordRules" | "rejectResponderTermination" | "selectionState" | "spellCheck" | "textContentType" | "scrollEnabled" | "cursorColor" | "importantForAutofill" | "disableFullscreenUI" | "inlineImageLeft" | "inlineImagePadding" | "returnKeyLabel" | "underlineColorAndroid" | "showSoftInputOnFocus" | keyof import("@tamagui/core").PseudoProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
77
74
|
readonly unstyled?: boolean | undefined;
|
|
78
75
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
79
|
-
}
|
|
76
|
+
}>> | "rows"> & Omit<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
80
77
|
readonly unstyled?: boolean | undefined;
|
|
81
78
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
82
|
-
}
|
|
79
|
+
} & import("@tamagui/core").PseudoProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
83
80
|
readonly unstyled?: boolean | undefined;
|
|
84
81
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
85
|
-
}>> & import("@tamagui/core").
|
|
82
|
+
}>> & import("@tamagui/core").MediaProps<Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
86
83
|
readonly unstyled?: boolean | undefined;
|
|
87
84
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
}>>, TextInput>;
|
|
100
|
-
};
|
|
85
|
+
}>>, "placeholderTextColor"> & {
|
|
86
|
+
placeholderTextColor?: ColorStyleProp | undefined;
|
|
87
|
+
rows?: number | undefined;
|
|
88
|
+
}, TextInput, import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps>, {
|
|
89
|
+
readonly unstyled?: boolean | undefined;
|
|
90
|
+
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
91
|
+
}, {
|
|
92
|
+
prototype: TextInput;
|
|
93
|
+
State: import("react-native").TextInputState;
|
|
94
|
+
contextType: import("react").Context<any> | undefined;
|
|
95
|
+
}>;
|
|
101
96
|
export declare function useInputProps(props: InputProps, ref: any): {
|
|
102
97
|
placeholderTextColor: any;
|
|
103
98
|
onChangeText: (value: any) => void;
|
|
@@ -142,7 +137,7 @@ export declare function useInputProps(props: InputProps, ref: any): {
|
|
|
142
137
|
textAlign?: "center" | "left" | "right" | undefined;
|
|
143
138
|
left?: number | boolean | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableString | import("@tamagui/core").UnionableNumber | null | undefined;
|
|
144
139
|
right?: number | boolean | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableString | import("@tamagui/core").UnionableNumber | null | undefined;
|
|
145
|
-
fontSize?: import("@tamagui/core").
|
|
140
|
+
fontSize?: import("@tamagui/core").Variable<any> | import("@tamagui/core").FontSizeTokens | undefined;
|
|
146
141
|
lineHeight?: number | import("@tamagui/core").Variable<any> | undefined;
|
|
147
142
|
children?: import("react").ReactNode;
|
|
148
143
|
className?: string | undefined;
|
|
@@ -320,7 +315,6 @@ export declare function useInputProps(props: InputProps, ref: any): {
|
|
|
320
315
|
textAlignVertical?: "auto" | "center" | "bottom" | "top" | undefined;
|
|
321
316
|
verticalAlign?: "auto" | "middle" | "bottom" | "top" | undefined;
|
|
322
317
|
includeFontPadding?: boolean | undefined;
|
|
323
|
-
unstyled?: boolean | undefined;
|
|
324
318
|
x?: number | boolean | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableString | import("@tamagui/core").UnionableNumber | undefined;
|
|
325
319
|
y?: number | boolean | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableString | import("@tamagui/core").UnionableNumber | undefined;
|
|
326
320
|
perspective?: number | undefined;
|
|
@@ -333,37 +327,6 @@ export declare function useInputProps(props: InputProps, ref: any): {
|
|
|
333
327
|
rotateX?: string | undefined;
|
|
334
328
|
rotateZ?: string | undefined;
|
|
335
329
|
theme?: string | null | undefined;
|
|
336
|
-
hitSlop?: import("react-native").Insets | undefined;
|
|
337
|
-
removeClippedSubviews?: boolean | undefined;
|
|
338
|
-
collapsable?: boolean | undefined;
|
|
339
|
-
needsOffscreenAlphaCompositing?: boolean | undefined;
|
|
340
|
-
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
341
|
-
focusable?: boolean | undefined;
|
|
342
|
-
shouldRasterizeIOS?: boolean | undefined;
|
|
343
|
-
isTVSelectable?: boolean | undefined;
|
|
344
|
-
hasTVPreferredFocus?: boolean | undefined;
|
|
345
|
-
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
346
|
-
tvParallaxShiftDistanceX?: number | undefined;
|
|
347
|
-
tvParallaxShiftDistanceY?: number | undefined;
|
|
348
|
-
tvParallaxTiltAngle?: number | undefined;
|
|
349
|
-
tvParallaxMagnification?: number | undefined;
|
|
350
|
-
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
351
|
-
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
352
|
-
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
353
|
-
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
354
|
-
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
355
|
-
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
356
|
-
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
357
|
-
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
358
|
-
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
359
|
-
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
360
|
-
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
361
|
-
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
362
|
-
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
363
|
-
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
364
|
-
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
365
|
-
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
366
|
-
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
367
330
|
onFocus?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputFocusEventData>) => void) | undefined;
|
|
368
331
|
onHoverIn?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
369
332
|
onHoverOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
|
|
@@ -387,26 +350,58 @@ export declare function useInputProps(props: InputProps, ref: any): {
|
|
|
387
350
|
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
388
351
|
disableClassName?: boolean | undefined;
|
|
389
352
|
onScroll?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputScrollEventData>) => void) | undefined;
|
|
390
|
-
hoverStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
353
|
+
hoverStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
391
354
|
readonly unstyled?: boolean | undefined;
|
|
392
355
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
393
356
|
}>) | null | undefined;
|
|
394
|
-
pressStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
357
|
+
pressStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
395
358
|
readonly unstyled?: boolean | undefined;
|
|
396
359
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
397
360
|
}>) | null | undefined;
|
|
398
|
-
focusStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
361
|
+
focusStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
399
362
|
readonly unstyled?: boolean | undefined;
|
|
400
363
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
401
364
|
}>) | null | undefined;
|
|
402
|
-
exitStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
365
|
+
exitStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
403
366
|
readonly unstyled?: boolean | undefined;
|
|
404
367
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
405
368
|
}>) | null | undefined;
|
|
406
|
-
enterStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> &
|
|
369
|
+
enterStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Partial<import("react-native").TextInputProps & Omit<import("@tamagui/core").TextProps, keyof import("react-native").TextInputProps> & {
|
|
407
370
|
readonly unstyled?: boolean | undefined;
|
|
408
371
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
409
372
|
}>) | null | undefined;
|
|
373
|
+
hitSlop?: import("react-native").Insets | undefined;
|
|
374
|
+
removeClippedSubviews?: boolean | undefined;
|
|
375
|
+
collapsable?: boolean | undefined;
|
|
376
|
+
needsOffscreenAlphaCompositing?: boolean | undefined;
|
|
377
|
+
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
378
|
+
focusable?: boolean | undefined;
|
|
379
|
+
shouldRasterizeIOS?: boolean | undefined;
|
|
380
|
+
isTVSelectable?: boolean | undefined;
|
|
381
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
382
|
+
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
383
|
+
tvParallaxShiftDistanceX?: number | undefined;
|
|
384
|
+
tvParallaxShiftDistanceY?: number | undefined;
|
|
385
|
+
tvParallaxTiltAngle?: number | undefined;
|
|
386
|
+
tvParallaxMagnification?: number | undefined;
|
|
387
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
388
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
389
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
390
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
391
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
392
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
393
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
394
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
395
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
396
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
397
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
398
|
+
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
399
|
+
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
400
|
+
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
401
|
+
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
402
|
+
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
403
|
+
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
404
|
+
unstyled?: boolean | undefined;
|
|
410
405
|
autoCapitalize?: "none" | "sentences" | "words" | "characters" | undefined;
|
|
411
406
|
autoComplete?: "email" | "password" | "tel" | "url" | "off" | "name" | "additional-name" | "address-line1" | "address-line2" | "birthdate-day" | "birthdate-full" | "birthdate-month" | "birthdate-year" | "cc-csc" | "cc-exp" | "cc-exp-day" | "cc-exp-month" | "cc-exp-year" | "cc-number" | "country" | "current-password" | "family-name" | "gender" | "given-name" | "honorific-prefix" | "honorific-suffix" | "name-family" | "name-given" | "name-middle" | "name-middle-initial" | "name-prefix" | "name-suffix" | "new-password" | "nickname" | "one-time-code" | "organization" | "organization-title" | "password-new" | "postal-address" | "postal-address-country" | "postal-address-extended" | "postal-address-extended-postal-code" | "postal-address-locality" | "postal-address-region" | "postal-code" | "street-address" | "sms-otp" | "tel-country-code" | "tel-national" | "tel-device" | "username" | "username-new" | undefined;
|
|
412
407
|
autoCorrect?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../src/views/Input.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,cAAc,EAAE,QAAQ,EAA2B,MAAM,eAAe,CAAA;AAEjF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAIxC,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BhB,CAAA;AAEV,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;EAgBrB,CAAA;AAEF,MAAM,MAAM,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,UAAU,CAAC,EAAE,sBAAsB,CAAC,GAAG;IACnF,oBAAoB,CAAC,EAAE,cAAc,CAAA;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd,CAAA;AAED,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../src/views/Input.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,cAAc,EAAE,QAAQ,EAA2B,MAAM,eAAe,CAAA;AAEjF,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AAIxC,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BhB,CAAA;AAEV,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;EAgBrB,CAAA;AAEF,MAAM,MAAM,UAAU,GAAG,IAAI,CAAC,QAAQ,CAAC,OAAO,UAAU,CAAC,EAAE,sBAAsB,CAAC,GAAG;IACnF,oBAAoB,CAAC,EAAE,cAAc,CAAA;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;CACd,CAAA;AAED,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhB,CAAA;AAEF,wBAAgB,aAAa,CAAC,KAAK,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBxD"}
|