@tamagui/ui 1.93.0
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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/cjs/createTamagui.js +68 -0
- package/dist/cjs/createTamagui.js.map +6 -0
- package/dist/cjs/createTamagui.native.js +80 -0
- package/dist/cjs/createTamagui.native.js.map +6 -0
- package/dist/cjs/helpers/inputHelpers.js +50 -0
- package/dist/cjs/helpers/inputHelpers.js.map +6 -0
- package/dist/cjs/helpers/inputHelpers.native.js +93 -0
- package/dist/cjs/helpers/inputHelpers.native.js.map +6 -0
- package/dist/cjs/index.js +132 -0
- package/dist/cjs/index.js.map +6 -0
- package/dist/cjs/index.native.js +247 -0
- package/dist/cjs/index.native.js.map +6 -0
- package/dist/cjs/lib/linear-gradient.native.js +20 -0
- package/dist/cjs/lib/linear-gradient.native.js.map +6 -0
- package/dist/cjs/linear-gradient.js +15 -0
- package/dist/cjs/linear-gradient.js.map +6 -0
- package/dist/cjs/linear-gradient.native.js +20 -0
- package/dist/cjs/linear-gradient.native.js.map +6 -0
- package/dist/cjs/setup.js +23 -0
- package/dist/cjs/setup.js.map +6 -0
- package/dist/cjs/setup.native.js +24 -0
- package/dist/cjs/setup.native.js.map +6 -0
- package/dist/cjs/viewTypes.js +14 -0
- package/dist/cjs/viewTypes.js.map +6 -0
- package/dist/cjs/viewTypes.native.js +15 -0
- package/dist/cjs/viewTypes.native.js.map +6 -0
- package/dist/cjs/views/Anchor.js +42 -0
- package/dist/cjs/views/Anchor.js.map +6 -0
- package/dist/cjs/views/Anchor.native.js +100 -0
- package/dist/cjs/views/Anchor.native.js.map +6 -0
- package/dist/cjs/views/EnsureFlexed.js +31 -0
- package/dist/cjs/views/EnsureFlexed.js.map +6 -0
- package/dist/cjs/views/EnsureFlexed.native.js +35 -0
- package/dist/cjs/views/EnsureFlexed.native.js.map +6 -0
- package/dist/cjs/views/Fieldset.js +33 -0
- package/dist/cjs/views/Fieldset.js.map +6 -0
- package/dist/cjs/views/Fieldset.native.js +37 -0
- package/dist/cjs/views/Fieldset.native.js.map +6 -0
- package/dist/cjs/views/Input.js +95 -0
- package/dist/cjs/views/Input.js.map +6 -0
- package/dist/cjs/views/Input.native.js +146 -0
- package/dist/cjs/views/Input.native.js.map +6 -0
- package/dist/cjs/views/Skeleton.js +1 -0
- package/dist/cjs/views/Skeleton.js.map +6 -0
- package/dist/cjs/views/Skeleton.native.js +2 -0
- package/dist/cjs/views/Skeleton.native.js.map +6 -0
- package/dist/cjs/views/Spinner.js +41 -0
- package/dist/cjs/views/Spinner.js.map +6 -0
- package/dist/cjs/views/Spinner.native.js +103 -0
- package/dist/cjs/views/Spinner.native.js.map +6 -0
- package/dist/cjs/views/TamaguiProvider.js +22 -0
- package/dist/cjs/views/TamaguiProvider.js.map +6 -0
- package/dist/cjs/views/TamaguiProvider.native.js +90 -0
- package/dist/cjs/views/TamaguiProvider.native.js.map +6 -0
- package/dist/cjs/views/TamaguiProvider.server.js +22 -0
- package/dist/cjs/views/TamaguiProvider.server.js.map +6 -0
- package/dist/cjs/views/TamaguiProvider.server.native.js +26 -0
- package/dist/cjs/views/TamaguiProvider.server.native.js.map +6 -0
- package/dist/cjs/views/Text.js +33 -0
- package/dist/cjs/views/Text.js.map +6 -0
- package/dist/cjs/views/Text.native.js +37 -0
- package/dist/cjs/views/Text.native.js.map +6 -0
- package/dist/cjs/views/TextArea.js +50 -0
- package/dist/cjs/views/TextArea.js.map +6 -0
- package/dist/cjs/views/TextArea.native.js +85 -0
- package/dist/cjs/views/TextArea.native.js.map +6 -0
- package/dist/cjs/views/VisuallyHidden.js +53 -0
- package/dist/cjs/views/VisuallyHidden.js.map +6 -0
- package/dist/cjs/views/VisuallyHidden.native.js +57 -0
- package/dist/cjs/views/VisuallyHidden.native.js.map +6 -0
- package/dist/esm/createTamagui.js +52 -0
- package/dist/esm/createTamagui.js.map +6 -0
- package/dist/esm/createTamagui.mjs +45 -0
- package/dist/esm/createTamagui.native.js +60 -0
- package/dist/esm/createTamagui.native.js.map +6 -0
- package/dist/esm/helpers/inputHelpers.js +37 -0
- package/dist/esm/helpers/inputHelpers.js.map +6 -0
- package/dist/esm/helpers/inputHelpers.mjs +43 -0
- package/dist/esm/helpers/inputHelpers.native.js +74 -0
- package/dist/esm/helpers/inputHelpers.native.js.map +6 -0
- package/dist/esm/index.js +175 -0
- package/dist/esm/index.js.map +6 -0
- package/dist/esm/index.mjs +55 -0
- package/dist/esm/index.native.js +175 -0
- package/dist/esm/index.native.js.map +6 -0
- package/dist/esm/lib/linear-gradient.native.js +2 -0
- package/dist/esm/lib/linear-gradient.native.js.map +6 -0
- package/dist/esm/linear-gradient.js +2 -0
- package/dist/esm/linear-gradient.js.map +6 -0
- package/dist/esm/linear-gradient.mjs +1 -0
- package/dist/esm/linear-gradient.native.js +2 -0
- package/dist/esm/linear-gradient.native.js.map +6 -0
- package/dist/esm/setup.js +5 -0
- package/dist/esm/setup.js.map +6 -0
- package/dist/esm/setup.mjs +3 -0
- package/dist/esm/setup.native.js +6 -0
- package/dist/esm/setup.native.js.map +6 -0
- package/dist/esm/viewTypes.js +1 -0
- package/dist/esm/viewTypes.js.map +6 -0
- package/dist/esm/viewTypes.mjs +0 -0
- package/dist/esm/viewTypes.native.js +1 -0
- package/dist/esm/viewTypes.native.js.map +6 -0
- package/dist/esm/views/Anchor.js +30 -0
- package/dist/esm/views/Anchor.js.map +6 -0
- package/dist/esm/views/Anchor.mjs +27 -0
- package/dist/esm/views/Anchor.native.js +83 -0
- package/dist/esm/views/Anchor.native.js.map +6 -0
- package/dist/esm/views/EnsureFlexed.js +15 -0
- package/dist/esm/views/EnsureFlexed.js.map +6 -0
- package/dist/esm/views/EnsureFlexed.mjs +12 -0
- package/dist/esm/views/EnsureFlexed.native.js +15 -0
- package/dist/esm/views/EnsureFlexed.native.js.map +6 -0
- package/dist/esm/views/Fieldset.js +18 -0
- package/dist/esm/views/Fieldset.js.map +6 -0
- package/dist/esm/views/Fieldset.mjs +15 -0
- package/dist/esm/views/Fieldset.native.js +18 -0
- package/dist/esm/views/Fieldset.native.js.map +6 -0
- package/dist/esm/views/Input.js +85 -0
- package/dist/esm/views/Input.js.map +6 -0
- package/dist/esm/views/Input.mjs +87 -0
- package/dist/esm/views/Input.native.js +128 -0
- package/dist/esm/views/Input.native.js.map +6 -0
- package/dist/esm/views/Skeleton.js +1 -0
- package/dist/esm/views/Skeleton.js.map +6 -0
- package/dist/esm/views/Skeleton.mjs +0 -0
- package/dist/esm/views/Skeleton.native.js +1 -0
- package/dist/esm/views/Skeleton.native.js.map +6 -0
- package/dist/esm/views/Spinner.js +21 -0
- package/dist/esm/views/Spinner.js.map +6 -0
- package/dist/esm/views/Spinner.mjs +25 -0
- package/dist/esm/views/Spinner.native.js +78 -0
- package/dist/esm/views/Spinner.native.js.map +6 -0
- package/dist/esm/views/TamaguiProvider.js +8 -0
- package/dist/esm/views/TamaguiProvider.js.map +6 -0
- package/dist/esm/views/TamaguiProvider.mjs +14 -0
- package/dist/esm/views/TamaguiProvider.native.js +71 -0
- package/dist/esm/views/TamaguiProvider.native.js.map +6 -0
- package/dist/esm/views/TamaguiProvider.server.js +6 -0
- package/dist/esm/views/TamaguiProvider.server.js.map +6 -0
- package/dist/esm/views/TamaguiProvider.server.mjs +3 -0
- package/dist/esm/views/TamaguiProvider.server.native.js +6 -0
- package/dist/esm/views/TamaguiProvider.server.native.js.map +6 -0
- package/dist/esm/views/Text.js +17 -0
- package/dist/esm/views/Text.js.map +6 -0
- package/dist/esm/views/Text.mjs +14 -0
- package/dist/esm/views/Text.native.js +17 -0
- package/dist/esm/views/Text.native.js.map +6 -0
- package/dist/esm/views/TextArea.js +40 -0
- package/dist/esm/views/TextArea.js.map +6 -0
- package/dist/esm/views/TextArea.mjs +40 -0
- package/dist/esm/views/TextArea.native.js +69 -0
- package/dist/esm/views/TextArea.native.js.map +6 -0
- package/dist/esm/views/VisuallyHidden.js +37 -0
- package/dist/esm/views/VisuallyHidden.js.map +6 -0
- package/dist/esm/views/VisuallyHidden.mjs +34 -0
- package/dist/esm/views/VisuallyHidden.native.js +37 -0
- package/dist/esm/views/VisuallyHidden.native.js.map +6 -0
- package/dist/jsx/createTamagui.js +52 -0
- package/dist/jsx/createTamagui.js.map +6 -0
- package/dist/jsx/createTamagui.mjs +45 -0
- package/dist/jsx/createTamagui.native.js +60 -0
- package/dist/jsx/createTamagui.native.js.map +6 -0
- package/dist/jsx/helpers/inputHelpers.js +37 -0
- package/dist/jsx/helpers/inputHelpers.js.map +6 -0
- package/dist/jsx/helpers/inputHelpers.mjs +43 -0
- package/dist/jsx/helpers/inputHelpers.native.js +74 -0
- package/dist/jsx/helpers/inputHelpers.native.js.map +6 -0
- package/dist/jsx/index.js +175 -0
- package/dist/jsx/index.js.map +6 -0
- package/dist/jsx/index.mjs +55 -0
- package/dist/jsx/index.native.js +175 -0
- package/dist/jsx/index.native.js.map +6 -0
- package/dist/jsx/lib/linear-gradient.native.js +2 -0
- package/dist/jsx/lib/linear-gradient.native.js.map +6 -0
- package/dist/jsx/linear-gradient.js +2 -0
- package/dist/jsx/linear-gradient.js.map +6 -0
- package/dist/jsx/linear-gradient.mjs +1 -0
- package/dist/jsx/linear-gradient.native.js +2 -0
- package/dist/jsx/linear-gradient.native.js.map +6 -0
- package/dist/jsx/setup.js +5 -0
- package/dist/jsx/setup.js.map +6 -0
- package/dist/jsx/setup.mjs +3 -0
- package/dist/jsx/setup.native.js +6 -0
- package/dist/jsx/setup.native.js.map +6 -0
- package/dist/jsx/viewTypes.js +1 -0
- package/dist/jsx/viewTypes.js.map +6 -0
- package/dist/jsx/viewTypes.mjs +0 -0
- package/dist/jsx/viewTypes.native.js +1 -0
- package/dist/jsx/viewTypes.native.js.map +6 -0
- package/dist/jsx/views/Anchor.js +30 -0
- package/dist/jsx/views/Anchor.js.map +6 -0
- package/dist/jsx/views/Anchor.mjs +27 -0
- package/dist/jsx/views/Anchor.native.js +83 -0
- package/dist/jsx/views/Anchor.native.js.map +6 -0
- package/dist/jsx/views/EnsureFlexed.js +15 -0
- package/dist/jsx/views/EnsureFlexed.js.map +6 -0
- package/dist/jsx/views/EnsureFlexed.mjs +12 -0
- package/dist/jsx/views/EnsureFlexed.native.js +15 -0
- package/dist/jsx/views/EnsureFlexed.native.js.map +6 -0
- package/dist/jsx/views/Fieldset.js +18 -0
- package/dist/jsx/views/Fieldset.js.map +6 -0
- package/dist/jsx/views/Fieldset.mjs +15 -0
- package/dist/jsx/views/Fieldset.native.js +18 -0
- package/dist/jsx/views/Fieldset.native.js.map +6 -0
- package/dist/jsx/views/Input.js +85 -0
- package/dist/jsx/views/Input.js.map +6 -0
- package/dist/jsx/views/Input.mjs +87 -0
- package/dist/jsx/views/Input.native.js +128 -0
- package/dist/jsx/views/Input.native.js.map +6 -0
- package/dist/jsx/views/Skeleton.js +1 -0
- package/dist/jsx/views/Skeleton.js.map +6 -0
- package/dist/jsx/views/Skeleton.mjs +0 -0
- package/dist/jsx/views/Skeleton.native.js +1 -0
- package/dist/jsx/views/Skeleton.native.js.map +6 -0
- package/dist/jsx/views/Spinner.js +21 -0
- package/dist/jsx/views/Spinner.js.map +6 -0
- package/dist/jsx/views/Spinner.mjs +25 -0
- package/dist/jsx/views/Spinner.native.js +78 -0
- package/dist/jsx/views/Spinner.native.js.map +6 -0
- package/dist/jsx/views/TamaguiProvider.js +8 -0
- package/dist/jsx/views/TamaguiProvider.js.map +6 -0
- package/dist/jsx/views/TamaguiProvider.mjs +14 -0
- package/dist/jsx/views/TamaguiProvider.native.js +71 -0
- package/dist/jsx/views/TamaguiProvider.native.js.map +6 -0
- package/dist/jsx/views/TamaguiProvider.server.js +6 -0
- package/dist/jsx/views/TamaguiProvider.server.js.map +6 -0
- package/dist/jsx/views/TamaguiProvider.server.mjs +3 -0
- package/dist/jsx/views/TamaguiProvider.server.native.js +6 -0
- package/dist/jsx/views/TamaguiProvider.server.native.js.map +6 -0
- package/dist/jsx/views/Text.js +17 -0
- package/dist/jsx/views/Text.js.map +6 -0
- package/dist/jsx/views/Text.mjs +14 -0
- package/dist/jsx/views/Text.native.js +17 -0
- package/dist/jsx/views/Text.native.js.map +6 -0
- package/dist/jsx/views/TextArea.js +40 -0
- package/dist/jsx/views/TextArea.js.map +6 -0
- package/dist/jsx/views/TextArea.mjs +40 -0
- package/dist/jsx/views/TextArea.native.js +69 -0
- package/dist/jsx/views/TextArea.native.js.map +6 -0
- package/dist/jsx/views/VisuallyHidden.js +37 -0
- package/dist/jsx/views/VisuallyHidden.js.map +6 -0
- package/dist/jsx/views/VisuallyHidden.mjs +34 -0
- package/dist/jsx/views/VisuallyHidden.native.js +37 -0
- package/dist/jsx/views/VisuallyHidden.native.js.map +6 -0
- package/dist/native.js +39310 -0
- package/dist/native.js.map +6 -0
- package/dist/test.native.js +38173 -0
- package/dist/test.native.js.map +6 -0
- package/linear-gradient/index.d.ts +1 -0
- package/linear-gradient/index.js +1 -0
- package/native.d.ts +1 -0
- package/native.js +1 -0
- package/package.json +140 -0
- package/src/createTamagui.ts +72 -0
- package/src/helpers/inputHelpers.tsx +56 -0
- package/src/index.ts +190 -0
- package/src/lib/linear-gradient.native.ts +1 -0
- package/src/linear-gradient.ts +1 -0
- package/src/setup.ts +12 -0
- package/src/viewTypes.tsx +50 -0
- package/src/views/Anchor.tsx +43 -0
- package/src/views/EnsureFlexed.tsx +16 -0
- package/src/views/Fieldset.tsx +19 -0
- package/src/views/Input.tsx +135 -0
- package/src/views/Skeleton.tsx +39 -0
- package/src/views/Spinner.tsx +34 -0
- package/src/views/TamaguiProvider.server.tsx +3 -0
- package/src/views/TamaguiProvider.tsx +11 -0
- package/src/views/Text.tsx +15 -0
- package/src/views/TextArea.tsx +68 -0
- package/src/views/VisuallyHidden.tsx +38 -0
- package/types/createTamagui.d.ts +6 -0
- package/types/createTamagui.d.ts.map +1 -0
- package/types/helpers/inputHelpers.d.ts +4 -0
- package/types/helpers/inputHelpers.d.ts.map +1 -0
- package/types/index.d.ts +57 -0
- package/types/index.d.ts.map +1 -0
- package/types/lib/linear-gradient.native.d.ts +2 -0
- package/types/lib/linear-gradient.native.d.ts.map +1 -0
- package/types/linear-gradient.d.ts +2 -0
- package/types/linear-gradient.d.ts.map +1 -0
- package/types/setup.d.ts +2 -0
- package/types/setup.d.ts.map +1 -0
- package/types/viewTypes.d.ts +43 -0
- package/types/viewTypes.d.ts.map +1 -0
- package/types/views/Anchor.d.ts +15 -0
- package/types/views/Anchor.d.ts.map +1 -0
- package/types/views/EnsureFlexed.d.ts +2 -0
- package/types/views/EnsureFlexed.d.ts.map +1 -0
- package/types/views/Fieldset.d.ts +14 -0
- package/types/views/Fieldset.d.ts.map +1 -0
- package/types/views/Input.d.ts +689 -0
- package/types/views/Input.d.ts.map +1 -0
- package/types/views/Skeleton.d.ts +1 -0
- package/types/views/Skeleton.d.ts.map +1 -0
- package/types/views/Spinner.d.ts +9 -0
- package/types/views/Spinner.d.ts.map +1 -0
- package/types/views/TamaguiProvider.d.ts +3 -0
- package/types/views/TamaguiProvider.d.ts.map +1 -0
- package/types/views/TamaguiProvider.server.d.ts +3 -0
- package/types/views/TamaguiProvider.server.d.ts.map +1 -0
- package/types/views/Text.d.ts +4 -0
- package/types/views/Text.d.ts.map +1 -0
- package/types/views/TextArea.d.ts +41 -0
- package/types/views/TextArea.d.ts.map +1 -0
- package/types/views/VisuallyHidden.d.ts +5 -0
- package/types/views/VisuallyHidden.d.ts.map +1 -0
|
@@ -0,0 +1,689 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import type { GetProps } from '@tamagui/core';
|
|
3
|
+
import { TextInput } from 'react-native';
|
|
4
|
+
export declare const defaultStyles: {
|
|
5
|
+
readonly borderColor: "$borderColor";
|
|
6
|
+
readonly backgroundColor: "$background";
|
|
7
|
+
readonly minWidth: 0;
|
|
8
|
+
readonly hoverStyle: {
|
|
9
|
+
readonly borderColor: "$borderColorHover";
|
|
10
|
+
};
|
|
11
|
+
readonly focusStyle: {
|
|
12
|
+
readonly borderColor: "$borderColorFocus";
|
|
13
|
+
};
|
|
14
|
+
readonly focusVisibleStyle: {
|
|
15
|
+
readonly outlineColor: "$outlineColor";
|
|
16
|
+
readonly outlineWidth: 2;
|
|
17
|
+
readonly outlineStyle: "solid";
|
|
18
|
+
};
|
|
19
|
+
readonly tabIndex: number;
|
|
20
|
+
readonly size: "$true";
|
|
21
|
+
readonly fontFamily: "$body";
|
|
22
|
+
readonly borderWidth: 1;
|
|
23
|
+
readonly outlineWidth: 0;
|
|
24
|
+
readonly color: "$color";
|
|
25
|
+
} | {
|
|
26
|
+
readonly borderColor: "$borderColor";
|
|
27
|
+
readonly backgroundColor: "$background";
|
|
28
|
+
readonly minWidth: 0;
|
|
29
|
+
readonly hoverStyle: {
|
|
30
|
+
readonly borderColor: "$borderColorHover";
|
|
31
|
+
};
|
|
32
|
+
readonly focusStyle: {
|
|
33
|
+
readonly borderColor: "$borderColorFocus";
|
|
34
|
+
};
|
|
35
|
+
readonly focusVisibleStyle: {
|
|
36
|
+
readonly outlineColor: "$outlineColor";
|
|
37
|
+
readonly outlineWidth: 2;
|
|
38
|
+
readonly outlineStyle: "solid";
|
|
39
|
+
};
|
|
40
|
+
readonly focusable: boolean;
|
|
41
|
+
readonly size: "$true";
|
|
42
|
+
readonly fontFamily: "$body";
|
|
43
|
+
readonly borderWidth: 1;
|
|
44
|
+
readonly outlineWidth: 0;
|
|
45
|
+
readonly color: "$color";
|
|
46
|
+
};
|
|
47
|
+
export declare const InputFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TextInput, import("@tamagui/core").TamaguiComponentPropsBaseBase & import("react-native").TextInputProps, import("@tamagui/core").TextStylePropsBase & {
|
|
48
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
49
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
50
|
+
}, {
|
|
51
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
52
|
+
disabled?: boolean | undefined;
|
|
53
|
+
unstyled?: boolean | undefined;
|
|
54
|
+
}, {
|
|
55
|
+
isInput: true;
|
|
56
|
+
accept: {
|
|
57
|
+
readonly placeholderTextColor: "color";
|
|
58
|
+
readonly selectionColor: "color";
|
|
59
|
+
};
|
|
60
|
+
}>;
|
|
61
|
+
export type Input = TextInput;
|
|
62
|
+
export type InputFrameProps = GetProps<typeof InputFrame>;
|
|
63
|
+
export type InputExtraProps = {
|
|
64
|
+
rows?: number;
|
|
65
|
+
};
|
|
66
|
+
export type InputProps = InputFrameProps & InputExtraProps;
|
|
67
|
+
export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TamaguiComponentPropsBaseBase & import("react-native").TextInputProps, import("@tamagui/core").TextStylePropsBase & {
|
|
68
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
69
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
70
|
+
}, {
|
|
71
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
72
|
+
disabled?: boolean | undefined;
|
|
73
|
+
unstyled?: boolean | undefined;
|
|
74
|
+
}>, "rows"> & InputExtraProps, TextInput, import("@tamagui/core").TamaguiComponentPropsBaseBase & import("react-native").TextInputProps & InputExtraProps, import("@tamagui/core").TextStylePropsBase & {
|
|
75
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
76
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
77
|
+
}, {
|
|
78
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
79
|
+
disabled?: boolean | undefined;
|
|
80
|
+
unstyled?: boolean | undefined;
|
|
81
|
+
}, {
|
|
82
|
+
isInput: true;
|
|
83
|
+
accept: {
|
|
84
|
+
readonly placeholderTextColor: "color";
|
|
85
|
+
readonly selectionColor: "color";
|
|
86
|
+
};
|
|
87
|
+
}>;
|
|
88
|
+
export declare function useInputProps(props: InputProps, ref: any): {
|
|
89
|
+
placeholderTextColor: any;
|
|
90
|
+
onChangeText: (value: any) => void;
|
|
91
|
+
children?: any;
|
|
92
|
+
className?: string | undefined;
|
|
93
|
+
onPressIn?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").NativeTouchEvent>) => void) | undefined;
|
|
94
|
+
onPressOut?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").NativeTouchEvent>) => void) | undefined;
|
|
95
|
+
onFocus?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputFocusEventData>) => void) | undefined;
|
|
96
|
+
onBlur?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputFocusEventData>) => void) | undefined;
|
|
97
|
+
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
98
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | undefined;
|
|
99
|
+
focusable?: boolean | undefined;
|
|
100
|
+
onMoveShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
101
|
+
onResponderEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
102
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
103
|
+
onResponderReject?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
104
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
105
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
106
|
+
onResponderStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
107
|
+
onResponderTerminationRequest?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
108
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
109
|
+
onStartShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
110
|
+
onMoveShouldSetResponderCapture?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|
|
111
|
+
style?: import("react-native").StyleProp<import("react-native").TextStyle>;
|
|
112
|
+
allowFontScaling?: boolean | undefined;
|
|
113
|
+
id?: string | undefined;
|
|
114
|
+
numberOfLines?: number | undefined;
|
|
115
|
+
testID?: string | undefined;
|
|
116
|
+
nativeID?: string | undefined;
|
|
117
|
+
maxFontSizeMultiplier?: number | null | undefined;
|
|
118
|
+
lineBreakStrategyIOS?: "none" | "standard" | "hangul-word" | "push-out" | undefined;
|
|
119
|
+
textBreakStrategy?: "simple" | "highQuality" | "balanced" | undefined;
|
|
120
|
+
accessible?: boolean | undefined;
|
|
121
|
+
accessibilityActions?: readonly Readonly<{
|
|
122
|
+
name: string;
|
|
123
|
+
label?: string | undefined;
|
|
124
|
+
}>[] | undefined;
|
|
125
|
+
accessibilityLabel?: string | undefined;
|
|
126
|
+
'aria-label'?: string | undefined;
|
|
127
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
128
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
129
|
+
'aria-busy'?: boolean | undefined;
|
|
130
|
+
'aria-checked'?: boolean | "mixed" | undefined;
|
|
131
|
+
'aria-disabled'?: boolean | undefined;
|
|
132
|
+
'aria-expanded'?: boolean | undefined;
|
|
133
|
+
'aria-selected'?: boolean | undefined;
|
|
134
|
+
'aria-labelledby'?: string | undefined;
|
|
135
|
+
accessibilityHint?: string | undefined;
|
|
136
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
137
|
+
'aria-valuemax'?: number | undefined;
|
|
138
|
+
'aria-valuemin'?: number | undefined;
|
|
139
|
+
'aria-valuenow'?: number | undefined;
|
|
140
|
+
'aria-valuetext'?: string | undefined;
|
|
141
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => void) | undefined;
|
|
142
|
+
importantForAccessibility?: "auto" | "yes" | "no" | "no-hide-descendants" | undefined;
|
|
143
|
+
'aria-hidden'?: boolean | undefined;
|
|
144
|
+
'aria-live'?: "polite" | "assertive" | "off" | undefined;
|
|
145
|
+
'aria-modal'?: boolean | undefined;
|
|
146
|
+
role?: "row" | "none" | "link" | "group" | "separator" | "article" | "main" | "figure" | "img" | "table" | "button" | "form" | "meter" | "option" | "dialog" | "menu" | "summary" | "alert" | "checkbox" | "combobox" | "menubar" | "menuitem" | "progressbar" | "radio" | "radiogroup" | "scrollbar" | "spinbutton" | "switch" | "tab" | "tablist" | "timer" | "list" | "toolbar" | "alertdialog" | "application" | "banner" | "cell" | "columnheader" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "grid" | "heading" | "listitem" | "log" | "marquee" | "math" | "navigation" | "note" | "presentation" | "region" | "rowgroup" | "rowheader" | "searchbox" | "slider" | "status" | "tabpanel" | "term" | "tooltip" | "tree" | "treegrid" | "treeitem" | undefined;
|
|
147
|
+
accessibilityLiveRegion?: "none" | "polite" | "assertive" | undefined;
|
|
148
|
+
accessibilityLabelledBy?: string | string[] | undefined;
|
|
149
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
150
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
151
|
+
onAccessibilityEscape?: (() => void) | undefined;
|
|
152
|
+
onAccessibilityTap?: (() => void) | undefined;
|
|
153
|
+
onMagicTap?: (() => void) | undefined;
|
|
154
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
155
|
+
accessibilityLanguage?: string | undefined;
|
|
156
|
+
target?: string | undefined;
|
|
157
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
158
|
+
dangerouslySetInnerHTML?: {
|
|
159
|
+
__html: string;
|
|
160
|
+
} | undefined;
|
|
161
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
162
|
+
themeShallow?: boolean | undefined;
|
|
163
|
+
themeInverse?: boolean | undefined;
|
|
164
|
+
tag?: "object" | "search" | "small" | "sub" | "sup" | "a" | (string & {}) | "address" | "article" | "aside" | "footer" | "header" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "main" | "nav" | "section" | "blockquote" | "dd" | "div" | "dl" | "dt" | "figcaption" | "figure" | "hr" | "li" | "ol" | "ul" | "p" | "pre" | "abbr" | "b" | "bdi" | "bdo" | "br" | "cite" | "code" | "data" | "dfn" | "em" | "i" | "kbd" | "mark" | "q" | "rp" | "rt" | "rtc" | "ruby" | "s" | "samp" | "span" | "strong" | "time" | "u" | "var" | "wbr" | "area" | "audio" | "img" | "map" | "track" | "video" | "embed" | "param" | "picture" | "source" | "canvas" | "noscript" | "script" | "del" | "ins" | "caption" | "col" | "colgroup" | "table" | "thead" | "tbody" | "td" | "th" | "tr" | "button" | "datalist" | "fieldset" | "form" | "input" | "label" | "legend" | "meter" | "optgroup" | "option" | "output" | "progress" | "select" | "textarea" | "details" | "dialog" | "menu" | "summary" | "template" | undefined;
|
|
165
|
+
theme?: string | null | undefined;
|
|
166
|
+
group?: undefined;
|
|
167
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
168
|
+
componentName?: string | undefined;
|
|
169
|
+
tabIndex?: string | number | undefined;
|
|
170
|
+
disableOptimization?: boolean | undefined;
|
|
171
|
+
forceStyle?: "hover" | "press" | "focus" | "focusVisible" | undefined;
|
|
172
|
+
disableClassName?: boolean | undefined;
|
|
173
|
+
hitSlop?: ((number | import("@tamagui/core").Insets) & import("react-native").Insets) | undefined;
|
|
174
|
+
removeClippedSubviews?: boolean | undefined;
|
|
175
|
+
collapsable?: boolean | undefined;
|
|
176
|
+
needsOffscreenAlphaCompositing?: boolean | undefined;
|
|
177
|
+
renderToHardwareTextureAndroid?: boolean | undefined;
|
|
178
|
+
shouldRasterizeIOS?: boolean | undefined;
|
|
179
|
+
isTVSelectable?: boolean | undefined;
|
|
180
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
181
|
+
tvParallaxProperties?: import("react-native").TVParallaxProperties | undefined;
|
|
182
|
+
tvParallaxShiftDistanceX?: number | undefined;
|
|
183
|
+
tvParallaxShiftDistanceY?: number | undefined;
|
|
184
|
+
tvParallaxTiltAngle?: number | undefined;
|
|
185
|
+
tvParallaxMagnification?: number | undefined;
|
|
186
|
+
onTouchStart?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
187
|
+
onTouchMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
188
|
+
onTouchEnd?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
189
|
+
onTouchCancel?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
190
|
+
onTouchEndCapture?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
191
|
+
onPointerEnter?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
192
|
+
onPointerEnterCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
193
|
+
onPointerLeave?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
194
|
+
onPointerLeaveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
195
|
+
onPointerMove?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
196
|
+
onPointerMoveCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
197
|
+
onPointerCancel?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
198
|
+
onPointerCancelCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
199
|
+
onPointerDown?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
200
|
+
onPointerDownCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
201
|
+
onPointerUp?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
202
|
+
onPointerUpCapture?: ((event: import("react-native").PointerEvent) => void) | undefined;
|
|
203
|
+
autoCapitalize?: "none" | "sentences" | "words" | "characters" | undefined;
|
|
204
|
+
autoComplete?: "name" | "email" | "off" | "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" | "cc-name" | "cc-given-name" | "cc-middle-name" | "cc-family-name" | "cc-type" | "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" | "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" | "tel-country-code" | "tel-national" | "tel-device" | "url" | "username" | "username-new" | undefined;
|
|
205
|
+
autoCorrect?: boolean | undefined;
|
|
206
|
+
autoFocus?: boolean | undefined;
|
|
207
|
+
blurOnSubmit?: boolean | undefined;
|
|
208
|
+
caretHidden?: boolean | undefined;
|
|
209
|
+
contextMenuHidden?: boolean | undefined;
|
|
210
|
+
defaultValue?: string | undefined;
|
|
211
|
+
editable?: boolean | undefined;
|
|
212
|
+
keyboardType?: import("react-native").KeyboardTypeOptions | undefined;
|
|
213
|
+
inputMode?: import("react-native").InputModeOptions | undefined;
|
|
214
|
+
maxLength?: number | undefined;
|
|
215
|
+
multiline?: boolean | undefined;
|
|
216
|
+
onChange?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputChangeEventData>) => void) | undefined;
|
|
217
|
+
onContentSizeChange?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputContentSizeChangeEventData>) => void) | undefined;
|
|
218
|
+
onEndEditing?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputEndEditingEventData>) => void) | undefined;
|
|
219
|
+
onSelectionChange?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputSelectionChangeEventData>) => void) | undefined;
|
|
220
|
+
onSubmitEditing?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputSubmitEditingEventData>) => void) | undefined;
|
|
221
|
+
onTextInput?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputTextInputEventData>) => void) | undefined;
|
|
222
|
+
onScroll?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputScrollEventData>) => void) | undefined;
|
|
223
|
+
onKeyPress?: ((e: import("react-native").NativeSyntheticEvent<import("react-native").TextInputKeyPressEventData>) => void) | undefined;
|
|
224
|
+
placeholder?: string | undefined;
|
|
225
|
+
readOnly: boolean | undefined;
|
|
226
|
+
returnKeyType?: import("react-native").ReturnKeyTypeOptions | undefined;
|
|
227
|
+
enterKeyHint?: import("react-native").EnterKeyHintTypeOptions | undefined;
|
|
228
|
+
secureTextEntry?: boolean | undefined;
|
|
229
|
+
selectTextOnFocus?: boolean | undefined;
|
|
230
|
+
selection?: {
|
|
231
|
+
start: number;
|
|
232
|
+
end?: number | undefined;
|
|
233
|
+
} | undefined;
|
|
234
|
+
inputAccessoryViewID?: string | undefined;
|
|
235
|
+
value?: string | undefined;
|
|
236
|
+
clearButtonMode?: "never" | "while-editing" | "unless-editing" | "always" | undefined;
|
|
237
|
+
clearTextOnFocus?: boolean | undefined;
|
|
238
|
+
dataDetectorTypes?: import("react-native").DataDetectorTypes | import("react-native").DataDetectorTypes[] | undefined;
|
|
239
|
+
enablesReturnKeyAutomatically?: boolean | undefined;
|
|
240
|
+
keyboardAppearance?: "default" | "light" | "dark" | undefined;
|
|
241
|
+
passwordRules?: string | null | undefined;
|
|
242
|
+
rejectResponderTermination?: boolean | null | undefined;
|
|
243
|
+
selectionState?: import("react-native").DocumentSelectionState | undefined;
|
|
244
|
+
spellCheck?: boolean | undefined;
|
|
245
|
+
textContentType?: "none" | "name" | "nickname" | "password" | "username" | "URL" | "addressCity" | "addressCityAndState" | "addressState" | "countryName" | "creditCardNumber" | "creditCardExpiration" | "creditCardExpirationMonth" | "creditCardExpirationYear" | "creditCardSecurityCode" | "creditCardType" | "creditCardName" | "creditCardGivenName" | "creditCardMiddleName" | "creditCardFamilyName" | "emailAddress" | "familyName" | "fullStreetAddress" | "givenName" | "jobTitle" | "location" | "middleName" | "namePrefix" | "nameSuffix" | "organizationName" | "postalCode" | "streetAddressLine1" | "streetAddressLine2" | "sublocality" | "telephoneNumber" | "newPassword" | "oneTimeCode" | "birthdate" | "birthdateDay" | "birthdateMonth" | "birthdateYear" | undefined;
|
|
246
|
+
scrollEnabled?: boolean | undefined;
|
|
247
|
+
smartInsertDelete?: boolean | undefined;
|
|
248
|
+
cursorColor?: import("react-native").ColorValue | null | undefined;
|
|
249
|
+
importantForAutofill?: "auto" | "yes" | "no" | "noExcludeDescendants" | "yesExcludeDescendants" | undefined;
|
|
250
|
+
disableFullscreenUI?: boolean | undefined;
|
|
251
|
+
inlineImageLeft?: string | undefined;
|
|
252
|
+
inlineImagePadding?: number | undefined;
|
|
253
|
+
returnKeyLabel?: string | undefined;
|
|
254
|
+
underlineColorAndroid?: import("react-native").ColorValue | undefined;
|
|
255
|
+
showSoftInputOnFocus?: boolean | undefined;
|
|
256
|
+
ellipse?: boolean | "unset" | undefined;
|
|
257
|
+
textDecorationDistance?: number | "unset" | undefined;
|
|
258
|
+
textOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
259
|
+
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
260
|
+
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
261
|
+
color?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"color"> | undefined;
|
|
262
|
+
borderColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderColor"> | undefined;
|
|
263
|
+
shadowColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"shadowColor"> | undefined;
|
|
264
|
+
zIndex?: "unset" | import("@tamagui/core").GetThemeValueForKey<"zIndex"> | undefined;
|
|
265
|
+
width?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"width"> | null | undefined;
|
|
266
|
+
height?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"height"> | null | undefined;
|
|
267
|
+
padding?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"padding"> | null | undefined;
|
|
268
|
+
paddingTop?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingTop"> | null | undefined;
|
|
269
|
+
paddingBottom?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingBottom"> | null | undefined;
|
|
270
|
+
paddingLeft?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingLeft"> | null | undefined;
|
|
271
|
+
paddingRight?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingRight"> | null | undefined;
|
|
272
|
+
paddingHorizontal?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingHorizontal"> | null | undefined;
|
|
273
|
+
paddingVertical?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingVertical"> | null | undefined;
|
|
274
|
+
margin?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"margin"> | null | undefined;
|
|
275
|
+
marginTop?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginTop"> | null | undefined;
|
|
276
|
+
marginBottom?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginBottom"> | null | undefined;
|
|
277
|
+
marginLeft?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginLeft"> | null | undefined;
|
|
278
|
+
marginRight?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginRight"> | null | undefined;
|
|
279
|
+
marginHorizontal?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginHorizontal"> | null | undefined;
|
|
280
|
+
marginVertical?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginVertical"> | null | undefined;
|
|
281
|
+
flex?: number | "unset" | undefined;
|
|
282
|
+
flexDirection?: "unset" | "row" | "column" | "row-reverse" | "column-reverse" | undefined;
|
|
283
|
+
flexWrap?: "unset" | "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
284
|
+
flexGrow?: number | "unset" | undefined;
|
|
285
|
+
flexShrink?: number | "unset" | undefined;
|
|
286
|
+
flexBasis?: "unset" | import("react-native").DimensionValue | undefined;
|
|
287
|
+
alignItems?: "unset" | import("react-native").FlexAlignType | undefined;
|
|
288
|
+
alignContent?: "unset" | "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | undefined;
|
|
289
|
+
justifyContent?: "unset" | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
|
|
290
|
+
alignSelf?: "unset" | "auto" | import("react-native").FlexAlignType | undefined;
|
|
291
|
+
backgroundColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"backgroundColor"> | undefined;
|
|
292
|
+
borderRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
293
|
+
borderTopRightRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
294
|
+
borderBottomRightRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
295
|
+
borderBottomLeftRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
296
|
+
borderTopLeftRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
297
|
+
textAlign?: "unset" | "auto" | "center" | "left" | "right" | "justify" | undefined;
|
|
298
|
+
left?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"left"> | null | undefined;
|
|
299
|
+
right?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"right"> | null | undefined;
|
|
300
|
+
fontSize?: "unset" | import("@tamagui/core").GetThemeValueForKey<"fontSize"> | undefined;
|
|
301
|
+
lineHeight?: "unset" | import("@tamagui/core").GetThemeValueForKey<"lineHeight"> | undefined;
|
|
302
|
+
fontFamily?: "unset" | import("@tamagui/core").GetThemeValueForKey<"fontFamily"> | undefined;
|
|
303
|
+
fontStyle?: "unset" | "normal" | "italic" | undefined;
|
|
304
|
+
fontWeight?: "unset" | import("@tamagui/core").GetThemeValueForKey<"fontWeight"> | undefined;
|
|
305
|
+
letterSpacing?: "unset" | import("@tamagui/core").GetThemeValueForKey<"letterSpacing"> | undefined;
|
|
306
|
+
textDecorationLine?: "unset" | "none" | "underline" | "line-through" | "underline line-through" | undefined;
|
|
307
|
+
textDecorationStyle?: "unset" | "solid" | "double" | "dotted" | "dashed" | undefined;
|
|
308
|
+
textDecorationColor?: import("react-native").ColorValue | undefined;
|
|
309
|
+
textShadowColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"textShadowColor"> | undefined;
|
|
310
|
+
textShadowOffset?: "unset" | {
|
|
311
|
+
width: number;
|
|
312
|
+
height: number;
|
|
313
|
+
} | undefined;
|
|
314
|
+
textShadowRadius?: number | "unset" | undefined;
|
|
315
|
+
textTransform?: "unset" | "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
|
|
316
|
+
fontVariant?: "unset" | import("react-native").FontVariant[] | undefined;
|
|
317
|
+
writingDirection?: "unset" | "auto" | "ltr" | "rtl" | undefined;
|
|
318
|
+
backfaceVisibility?: "unset" | "visible" | "hidden" | undefined;
|
|
319
|
+
borderBlockColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderBlockColor"> | undefined;
|
|
320
|
+
borderBlockEndColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderBlockEndColor"> | undefined;
|
|
321
|
+
borderBlockStartColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderBlockStartColor"> | undefined;
|
|
322
|
+
borderBottomColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderBottomColor"> | undefined;
|
|
323
|
+
borderBottomEndRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
324
|
+
borderBottomStartRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
325
|
+
borderCurve?: "unset" | "circular" | "continuous" | undefined;
|
|
326
|
+
borderEndColor?: import("react-native").ColorValue | undefined;
|
|
327
|
+
borderEndEndRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
328
|
+
borderEndStartRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
329
|
+
borderLeftColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderLeftColor"> | undefined;
|
|
330
|
+
borderRightColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderRightColor"> | undefined;
|
|
331
|
+
borderStartColor?: import("react-native").ColorValue | undefined;
|
|
332
|
+
borderStartEndRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
333
|
+
borderStartStartRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
334
|
+
borderStyle?: "unset" | "solid" | "dotted" | "dashed" | undefined;
|
|
335
|
+
borderTopColor?: "unset" | import("react-native").OpaqueColorValue | import("@tamagui/core").GetThemeValueForKey<"borderTopColor"> | undefined;
|
|
336
|
+
borderTopEndRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
337
|
+
borderTopStartRadius?: number | "unset" | import("react-native").Animated.AnimatedNode | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/core").UnionableString | import("@tamagui/core").Variable<any> | import("@tamagui/core").UnionableNumber | undefined;
|
|
338
|
+
opacity?: "unset" | import("react-native").AnimatableNumericValue | undefined;
|
|
339
|
+
elevation?: number | "unset" | undefined;
|
|
340
|
+
aspectRatio?: string | number | undefined;
|
|
341
|
+
borderBottomWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderBottomWidth"> | undefined;
|
|
342
|
+
borderEndWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderEndWidth"> | undefined;
|
|
343
|
+
borderLeftWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderLeftWidth"> | undefined;
|
|
344
|
+
borderRightWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderRightWidth"> | undefined;
|
|
345
|
+
borderStartWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderStartWidth"> | undefined;
|
|
346
|
+
borderTopWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderTopWidth"> | undefined;
|
|
347
|
+
borderWidth?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"borderWidth"> | undefined;
|
|
348
|
+
bottom?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"bottom"> | null | undefined;
|
|
349
|
+
end?: "unset" | import("react-native").DimensionValue | undefined;
|
|
350
|
+
rowGap?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"rowGap"> | undefined;
|
|
351
|
+
gap?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"gap"> | undefined;
|
|
352
|
+
columnGap?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"columnGap"> | undefined;
|
|
353
|
+
marginEnd?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginEnd"> | null | undefined;
|
|
354
|
+
marginStart?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"marginStart"> | null | undefined;
|
|
355
|
+
maxHeight?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"maxHeight"> | null | undefined;
|
|
356
|
+
maxWidth?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"maxWidth"> | null | undefined;
|
|
357
|
+
minHeight?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"minHeight"> | null | undefined;
|
|
358
|
+
minWidth?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"minWidth"> | null | undefined;
|
|
359
|
+
overflow?: "unset" | "visible" | "hidden" | "scroll" | undefined;
|
|
360
|
+
paddingEnd?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingEnd"> | null | undefined;
|
|
361
|
+
paddingStart?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"paddingStart"> | null | undefined;
|
|
362
|
+
position?: "unset" | "absolute" | "relative" | undefined;
|
|
363
|
+
start?: "unset" | import("react-native").DimensionValue | undefined;
|
|
364
|
+
top?: number | "unset" | import("react-native").Animated.AnimatedNode | import("@tamagui/core").GetThemeValueForKey<"top"> | null | undefined;
|
|
365
|
+
direction?: "unset" | "inherit" | "ltr" | "rtl" | undefined;
|
|
366
|
+
shadowOffset?: "unset" | import("@tamagui/core").GetThemeValueForKey<"shadowOffset"> | Readonly<{
|
|
367
|
+
width: number;
|
|
368
|
+
height: number;
|
|
369
|
+
}> | undefined;
|
|
370
|
+
shadowOpacity?: "unset" | import("react-native").AnimatableNumericValue | undefined;
|
|
371
|
+
shadowRadius?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"shadowRadius"> | undefined;
|
|
372
|
+
transform?: string | (({
|
|
373
|
+
perspective: import("react-native").AnimatableNumericValue;
|
|
374
|
+
} & {
|
|
375
|
+
scale?: undefined;
|
|
376
|
+
scaleX?: undefined;
|
|
377
|
+
scaleY?: undefined;
|
|
378
|
+
skewX?: undefined;
|
|
379
|
+
skewY?: undefined;
|
|
380
|
+
matrix?: undefined;
|
|
381
|
+
rotate?: undefined;
|
|
382
|
+
rotateY?: undefined;
|
|
383
|
+
rotateX?: undefined;
|
|
384
|
+
rotateZ?: undefined;
|
|
385
|
+
translateX?: undefined;
|
|
386
|
+
translateY?: undefined;
|
|
387
|
+
}) | ({
|
|
388
|
+
scale: import("react-native").AnimatableNumericValue;
|
|
389
|
+
} & {
|
|
390
|
+
perspective?: undefined;
|
|
391
|
+
scaleX?: undefined;
|
|
392
|
+
scaleY?: undefined;
|
|
393
|
+
skewX?: undefined;
|
|
394
|
+
skewY?: undefined;
|
|
395
|
+
matrix?: undefined;
|
|
396
|
+
rotate?: undefined;
|
|
397
|
+
rotateY?: undefined;
|
|
398
|
+
rotateX?: undefined;
|
|
399
|
+
rotateZ?: undefined;
|
|
400
|
+
translateX?: undefined;
|
|
401
|
+
translateY?: undefined;
|
|
402
|
+
}) | ({
|
|
403
|
+
scaleX: import("react-native").AnimatableNumericValue;
|
|
404
|
+
} & {
|
|
405
|
+
perspective?: undefined;
|
|
406
|
+
scale?: undefined;
|
|
407
|
+
scaleY?: undefined;
|
|
408
|
+
skewX?: undefined;
|
|
409
|
+
skewY?: undefined;
|
|
410
|
+
matrix?: undefined;
|
|
411
|
+
rotate?: undefined;
|
|
412
|
+
rotateY?: undefined;
|
|
413
|
+
rotateX?: undefined;
|
|
414
|
+
rotateZ?: undefined;
|
|
415
|
+
translateX?: undefined;
|
|
416
|
+
translateY?: undefined;
|
|
417
|
+
}) | ({
|
|
418
|
+
scaleY: import("react-native").AnimatableNumericValue;
|
|
419
|
+
} & {
|
|
420
|
+
perspective?: undefined;
|
|
421
|
+
scale?: undefined;
|
|
422
|
+
scaleX?: undefined;
|
|
423
|
+
skewX?: undefined;
|
|
424
|
+
skewY?: undefined;
|
|
425
|
+
matrix?: undefined;
|
|
426
|
+
rotate?: undefined;
|
|
427
|
+
rotateY?: undefined;
|
|
428
|
+
rotateX?: undefined;
|
|
429
|
+
rotateZ?: undefined;
|
|
430
|
+
translateX?: undefined;
|
|
431
|
+
translateY?: undefined;
|
|
432
|
+
}) | ({
|
|
433
|
+
skewX: import("react-native").AnimatableStringValue;
|
|
434
|
+
} & {
|
|
435
|
+
perspective?: undefined;
|
|
436
|
+
scale?: undefined;
|
|
437
|
+
scaleX?: undefined;
|
|
438
|
+
scaleY?: undefined;
|
|
439
|
+
skewY?: undefined;
|
|
440
|
+
matrix?: undefined;
|
|
441
|
+
rotate?: undefined;
|
|
442
|
+
rotateY?: undefined;
|
|
443
|
+
rotateX?: undefined;
|
|
444
|
+
rotateZ?: undefined;
|
|
445
|
+
translateX?: undefined;
|
|
446
|
+
translateY?: undefined;
|
|
447
|
+
}) | ({
|
|
448
|
+
skewY: import("react-native").AnimatableStringValue;
|
|
449
|
+
} & {
|
|
450
|
+
perspective?: undefined;
|
|
451
|
+
scale?: undefined;
|
|
452
|
+
scaleX?: undefined;
|
|
453
|
+
scaleY?: undefined;
|
|
454
|
+
skewX?: undefined;
|
|
455
|
+
matrix?: undefined;
|
|
456
|
+
rotate?: undefined;
|
|
457
|
+
rotateY?: undefined;
|
|
458
|
+
rotateX?: undefined;
|
|
459
|
+
rotateZ?: undefined;
|
|
460
|
+
translateX?: undefined;
|
|
461
|
+
translateY?: undefined;
|
|
462
|
+
}) | ({
|
|
463
|
+
matrix: import("react-native").AnimatableNumericValue[];
|
|
464
|
+
} & {
|
|
465
|
+
perspective?: undefined;
|
|
466
|
+
scale?: undefined;
|
|
467
|
+
scaleX?: undefined;
|
|
468
|
+
scaleY?: undefined;
|
|
469
|
+
skewX?: undefined;
|
|
470
|
+
skewY?: undefined;
|
|
471
|
+
rotate?: undefined;
|
|
472
|
+
rotateY?: undefined;
|
|
473
|
+
rotateX?: undefined;
|
|
474
|
+
rotateZ?: undefined;
|
|
475
|
+
translateX?: undefined;
|
|
476
|
+
translateY?: undefined;
|
|
477
|
+
}) | ({
|
|
478
|
+
rotate: import("react-native").AnimatableStringValue;
|
|
479
|
+
} & {
|
|
480
|
+
perspective?: undefined;
|
|
481
|
+
scale?: undefined;
|
|
482
|
+
scaleX?: undefined;
|
|
483
|
+
scaleY?: undefined;
|
|
484
|
+
skewX?: undefined;
|
|
485
|
+
skewY?: undefined;
|
|
486
|
+
matrix?: undefined;
|
|
487
|
+
rotateY?: undefined;
|
|
488
|
+
rotateX?: undefined;
|
|
489
|
+
rotateZ?: undefined;
|
|
490
|
+
translateX?: undefined;
|
|
491
|
+
translateY?: undefined;
|
|
492
|
+
}) | ({
|
|
493
|
+
rotateY: import("react-native").AnimatableStringValue;
|
|
494
|
+
} & {
|
|
495
|
+
perspective?: undefined;
|
|
496
|
+
scale?: undefined;
|
|
497
|
+
scaleX?: undefined;
|
|
498
|
+
scaleY?: undefined;
|
|
499
|
+
skewX?: undefined;
|
|
500
|
+
skewY?: undefined;
|
|
501
|
+
matrix?: undefined;
|
|
502
|
+
rotate?: undefined;
|
|
503
|
+
rotateX?: undefined;
|
|
504
|
+
rotateZ?: undefined;
|
|
505
|
+
translateX?: undefined;
|
|
506
|
+
translateY?: undefined;
|
|
507
|
+
}) | ({
|
|
508
|
+
rotateX: import("react-native").AnimatableStringValue;
|
|
509
|
+
} & {
|
|
510
|
+
perspective?: undefined;
|
|
511
|
+
scale?: undefined;
|
|
512
|
+
scaleX?: undefined;
|
|
513
|
+
scaleY?: undefined;
|
|
514
|
+
skewX?: undefined;
|
|
515
|
+
skewY?: undefined;
|
|
516
|
+
matrix?: undefined;
|
|
517
|
+
rotate?: undefined;
|
|
518
|
+
rotateY?: undefined;
|
|
519
|
+
rotateZ?: undefined;
|
|
520
|
+
translateX?: undefined;
|
|
521
|
+
translateY?: undefined;
|
|
522
|
+
}) | ({
|
|
523
|
+
rotateZ: import("react-native").AnimatableStringValue;
|
|
524
|
+
} & {
|
|
525
|
+
perspective?: undefined;
|
|
526
|
+
scale?: undefined;
|
|
527
|
+
scaleX?: undefined;
|
|
528
|
+
scaleY?: undefined;
|
|
529
|
+
skewX?: undefined;
|
|
530
|
+
skewY?: undefined;
|
|
531
|
+
matrix?: undefined;
|
|
532
|
+
rotate?: undefined;
|
|
533
|
+
rotateY?: undefined;
|
|
534
|
+
rotateX?: undefined;
|
|
535
|
+
translateX?: undefined;
|
|
536
|
+
translateY?: undefined;
|
|
537
|
+
}) | ({
|
|
538
|
+
translateX: import("react-native").AnimatableNumericValue;
|
|
539
|
+
} & {
|
|
540
|
+
perspective?: undefined;
|
|
541
|
+
scale?: undefined;
|
|
542
|
+
scaleX?: undefined;
|
|
543
|
+
scaleY?: undefined;
|
|
544
|
+
skewX?: undefined;
|
|
545
|
+
skewY?: undefined;
|
|
546
|
+
matrix?: undefined;
|
|
547
|
+
rotate?: undefined;
|
|
548
|
+
rotateY?: undefined;
|
|
549
|
+
rotateX?: undefined;
|
|
550
|
+
rotateZ?: undefined;
|
|
551
|
+
translateY?: undefined;
|
|
552
|
+
}) | ({
|
|
553
|
+
translateY: import("react-native").AnimatableNumericValue;
|
|
554
|
+
} & {
|
|
555
|
+
perspective?: undefined;
|
|
556
|
+
scale?: undefined;
|
|
557
|
+
scaleX?: undefined;
|
|
558
|
+
scaleY?: undefined;
|
|
559
|
+
skewX?: undefined;
|
|
560
|
+
skewY?: undefined;
|
|
561
|
+
matrix?: undefined;
|
|
562
|
+
rotate?: undefined;
|
|
563
|
+
rotateY?: undefined;
|
|
564
|
+
rotateX?: undefined;
|
|
565
|
+
rotateZ?: undefined;
|
|
566
|
+
translateX?: undefined;
|
|
567
|
+
}))[] | undefined;
|
|
568
|
+
transformMatrix?: "unset" | number[] | undefined;
|
|
569
|
+
rotation?: "unset" | import("react-native").AnimatableNumericValue | undefined;
|
|
570
|
+
translateX?: "unset" | import("react-native").AnimatableNumericValue | undefined;
|
|
571
|
+
translateY?: "unset" | import("react-native").AnimatableNumericValue | undefined;
|
|
572
|
+
textAlignVertical?: "unset" | "auto" | "center" | "bottom" | "top" | undefined;
|
|
573
|
+
verticalAlign?: "unset" | "auto" | "bottom" | "top" | "middle" | undefined;
|
|
574
|
+
includeFontPadding?: boolean | "unset" | undefined;
|
|
575
|
+
x?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"x"> | undefined;
|
|
576
|
+
y?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"y"> | undefined;
|
|
577
|
+
perspective?: number | "unset" | undefined;
|
|
578
|
+
scale?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"scale"> | undefined;
|
|
579
|
+
scaleX?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"scaleX"> | undefined;
|
|
580
|
+
scaleY?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"scaleY"> | undefined;
|
|
581
|
+
skewX?: string | undefined;
|
|
582
|
+
skewY?: string | undefined;
|
|
583
|
+
matrix?: "unset" | number[] | undefined;
|
|
584
|
+
rotate?: string | undefined;
|
|
585
|
+
rotateY?: string | undefined;
|
|
586
|
+
rotateX?: string | undefined;
|
|
587
|
+
rotateZ?: string | undefined;
|
|
588
|
+
contain?: import("csstype").Property.Contain | undefined;
|
|
589
|
+
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
590
|
+
cursor?: import("csstype").Property.Cursor | undefined;
|
|
591
|
+
outlineColor?: "unset" | import("@tamagui/core").GetThemeValueForKey<"outlineColor"> | undefined;
|
|
592
|
+
outlineOffset?: "unset" | import("@tamagui/core").SpaceValue | undefined;
|
|
593
|
+
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
594
|
+
outlineWidth?: "unset" | import("@tamagui/core").SpaceValue | undefined;
|
|
595
|
+
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
596
|
+
pointerEvents?: "unset" | "auto" | "box-none" | "none" | "box-only" | undefined;
|
|
597
|
+
space?: number | "unset" | import("@tamagui/core").GetThemeValueForKey<"space"> | undefined;
|
|
598
|
+
spaceDirection?: "unset" | import("@tamagui/core").SpaceDirection | undefined;
|
|
599
|
+
separator?: import("react").ReactNode;
|
|
600
|
+
animation?: import("@tamagui/core").AnimationProp | null | undefined;
|
|
601
|
+
animateOnly?: "unset" | string[] | undefined;
|
|
602
|
+
animatePresence?: boolean | "unset" | undefined;
|
|
603
|
+
transformOrigin?: "unset" | "center" | "left" | "right" | "bottom" | "top" | (`${number}%` | `${string}%` | `${string}px` | `${number}px`) | "center center" | "center bottom" | "center top" | `center ${number}%` | `center ${string}%` | `center ${string}px` | `center ${number}px` | "left center" | "left bottom" | "left top" | `left ${number}%` | `left ${string}%` | `left ${string}px` | `left ${number}px` | "right center" | "right bottom" | "right top" | `right ${number}%` | `right ${string}%` | `right ${string}px` | `right ${number}px` | `${number}% center` | `${number}% bottom` | `${number}% top` | `${number}% ${number}%` | `${number}% ${string}%` | `${number}% ${string}px` | `${number}% ${number}px` | `${string}% center` | `${string}% bottom` | `${string}% top` | `${string}% ${number}%` | `${string}% ${string}%` | `${string}% ${string}px` | `${string}% ${number}px` | `${string}px center` | `${string}px bottom` | `${string}px top` | `${string}px ${number}%` | `${string}px ${string}%` | `${string}px ${string}px` | `${string}px ${number}px` | `${number}px center` | `${number}px bottom` | `${number}px top` | `${number}px ${number}%` | `${number}px ${string}%` | `${number}px ${string}px` | `${number}px ${number}px` | `center center ${string}px` | `center center ${number}px` | `center bottom ${string}px` | `center bottom ${number}px` | `center top ${string}px` | `center top ${number}px` | `center ${number}% ${string}px` | `center ${number}% ${number}px` | `center ${string}% ${string}px` | `center ${string}% ${number}px` | `center ${string}px ${string}px` | `center ${string}px ${number}px` | `center ${number}px ${string}px` | `center ${number}px ${number}px` | `left center ${string}px` | `left center ${number}px` | `left bottom ${string}px` | `left bottom ${number}px` | `left top ${string}px` | `left top ${number}px` | `left ${number}% ${string}px` | `left ${number}% ${number}px` | `left ${string}% ${string}px` | `left ${string}% ${number}px` | `left ${string}px ${string}px` | `left ${string}px ${number}px` | `left ${number}px ${string}px` | `left ${number}px ${number}px` | `right center ${string}px` | `right center ${number}px` | `right bottom ${string}px` | `right bottom ${number}px` | `right top ${string}px` | `right top ${number}px` | `right ${number}% ${string}px` | `right ${number}% ${number}px` | `right ${string}% ${string}px` | `right ${string}% ${number}px` | `right ${string}px ${string}px` | `right ${string}px ${number}px` | `right ${number}px ${string}px` | `right ${number}px ${number}px` | `${number}% center ${string}px` | `${number}% center ${number}px` | `${number}% bottom ${string}px` | `${number}% bottom ${number}px` | `${number}% top ${string}px` | `${number}% top ${number}px` | `${number}% ${number}% ${string}px` | `${number}% ${number}% ${number}px` | `${number}% ${string}% ${string}px` | `${number}% ${string}% ${number}px` | `${number}% ${string}px ${string}px` | `${number}% ${string}px ${number}px` | `${number}% ${number}px ${string}px` | `${number}% ${number}px ${number}px` | `${string}% center ${string}px` | `${string}% center ${number}px` | `${string}% bottom ${string}px` | `${string}% bottom ${number}px` | `${string}% top ${string}px` | `${string}% top ${number}px` | `${string}% ${number}% ${string}px` | `${string}% ${number}% ${number}px` | `${string}% ${string}% ${string}px` | `${string}% ${string}% ${number}px` | `${string}% ${string}px ${string}px` | `${string}% ${string}px ${number}px` | `${string}% ${number}px ${string}px` | `${string}% ${number}px ${number}px` | `${string}px center ${string}px` | `${string}px center ${number}px` | `${string}px bottom ${string}px` | `${string}px bottom ${number}px` | `${string}px top ${string}px` | `${string}px top ${number}px` | `${string}px ${number}% ${string}px` | `${string}px ${number}% ${number}px` | `${string}px ${string}% ${string}px` | `${string}px ${string}% ${number}px` | `${string}px ${string}px ${string}px` | `${string}px ${string}px ${number}px` | `${string}px ${number}px ${string}px` | `${string}px ${number}px ${number}px` | `${number}px center ${string}px` | `${number}px center ${number}px` | `${number}px bottom ${string}px` | `${number}px bottom ${number}px` | `${number}px top ${string}px` | `${number}px top ${number}px` | `${number}px ${number}% ${string}px` | `${number}px ${number}% ${number}px` | `${number}px ${string}% ${string}px` | `${number}px ${string}% ${number}px` | `${number}px ${string}px ${string}px` | `${number}px ${string}px ${number}px` | `${number}px ${number}px ${string}px` | `${number}px ${number}px ${number}px` | undefined;
|
|
604
|
+
display?: "unset" | "inherit" | "flex" | "none" | "inline" | "block" | "contents" | "inline-flex" | undefined;
|
|
605
|
+
selectionColor?: "unset" | Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
606
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
607
|
+
disabled?: boolean | undefined;
|
|
608
|
+
unstyled?: boolean | undefined;
|
|
609
|
+
hoverStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
610
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
611
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
612
|
+
}> & {
|
|
613
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
614
|
+
disabled?: boolean | undefined;
|
|
615
|
+
unstyled?: boolean | undefined;
|
|
616
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
617
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
618
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
619
|
+
}>>) | null | undefined;
|
|
620
|
+
pressStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
621
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
622
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
623
|
+
}> & {
|
|
624
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
625
|
+
disabled?: boolean | undefined;
|
|
626
|
+
unstyled?: boolean | undefined;
|
|
627
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
628
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
629
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
630
|
+
}>>) | null | undefined;
|
|
631
|
+
focusStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
632
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
633
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
634
|
+
}> & {
|
|
635
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
636
|
+
disabled?: boolean | undefined;
|
|
637
|
+
unstyled?: boolean | undefined;
|
|
638
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
639
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
640
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
641
|
+
}>>) | null | undefined;
|
|
642
|
+
focusVisibleStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
643
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
644
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
645
|
+
}> & {
|
|
646
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
647
|
+
disabled?: boolean | undefined;
|
|
648
|
+
unstyled?: boolean | undefined;
|
|
649
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
650
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
651
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
652
|
+
}>>) | null | undefined;
|
|
653
|
+
disabledStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
654
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
655
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
656
|
+
}> & {
|
|
657
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
658
|
+
disabled?: boolean | undefined;
|
|
659
|
+
unstyled?: boolean | undefined;
|
|
660
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
661
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
662
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
663
|
+
}>>) | null | undefined;
|
|
664
|
+
exitStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
665
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
666
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
667
|
+
}> & {
|
|
668
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
669
|
+
disabled?: boolean | undefined;
|
|
670
|
+
unstyled?: boolean | undefined;
|
|
671
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
672
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
673
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
674
|
+
}>>) | null | undefined;
|
|
675
|
+
enterStyle?: (import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
676
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
677
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
678
|
+
}> & {
|
|
679
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
680
|
+
disabled?: boolean | undefined;
|
|
681
|
+
unstyled?: boolean | undefined;
|
|
682
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
683
|
+
readonly placeholderTextColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
684
|
+
readonly selectionColor?: Omit<import("@tamagui/core").ColorTokens | import("@tamagui/core").ThemeValueFallbackColor, "unset"> | undefined;
|
|
685
|
+
}>>) | null | undefined;
|
|
686
|
+
rows?: number | undefined;
|
|
687
|
+
ref: (node: any) => void;
|
|
688
|
+
};
|
|
689
|
+
//# sourceMappingURL=Input.d.ts.map
|