@tamagui/input 3.0.0-beta.735.1 → 3.0.0-beta.745.1
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/package.json +12 -12
- package/types/Input.d.ts +2 -2
- package/types/Input.native.d.ts +2 -2
- package/types/TextArea.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/input",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.745.1",
|
|
4
4
|
"gitHead": "a49cc7ea6b93ba384e77a4880ae48ac4a5635c14",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"files": [
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"test:web": "vitest --typecheck --run"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@tamagui/core": "3.0.0-beta.
|
|
40
|
-
"@tamagui/element": "3.0.0-beta.
|
|
41
|
-
"@tamagui/focusable": "3.0.0-beta.
|
|
42
|
-
"@tamagui/font-size": "3.0.0-beta.
|
|
43
|
-
"@tamagui/get-font-sized": "3.0.0-beta.
|
|
44
|
-
"@tamagui/helpers": "3.0.0-beta.
|
|
45
|
-
"@tamagui/helpers-tamagui": "3.0.0-beta.
|
|
46
|
-
"@tamagui/stacks": "3.0.0-beta.
|
|
47
|
-
"@tamagui/text": "3.0.0-beta.
|
|
48
|
-
"@tamagui/web": "3.0.0-beta.
|
|
39
|
+
"@tamagui/core": "3.0.0-beta.745.1",
|
|
40
|
+
"@tamagui/element": "3.0.0-beta.745.1",
|
|
41
|
+
"@tamagui/focusable": "3.0.0-beta.745.1",
|
|
42
|
+
"@tamagui/font-size": "3.0.0-beta.745.1",
|
|
43
|
+
"@tamagui/get-font-sized": "3.0.0-beta.745.1",
|
|
44
|
+
"@tamagui/helpers": "3.0.0-beta.745.1",
|
|
45
|
+
"@tamagui/helpers-tamagui": "3.0.0-beta.745.1",
|
|
46
|
+
"@tamagui/stacks": "3.0.0-beta.745.1",
|
|
47
|
+
"@tamagui/text": "3.0.0-beta.745.1",
|
|
48
|
+
"@tamagui/web": "3.0.0-beta.745.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@tamagui/build": "3.0.0-beta.
|
|
51
|
+
"@tamagui/build": "3.0.0-beta.745.1",
|
|
52
52
|
"react": "19.2.3",
|
|
53
53
|
"react-native": "0.86.2",
|
|
54
54
|
"vitest": "4.0.4"
|
package/types/Input.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
30
30
|
letterSpacing?: import("@tamagui/core").FlatStyleValue<"unset" | import("@tamagui/core").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
31
31
|
textAlign?: import("@tamagui/core").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
32
32
|
textTransform?: import("@tamagui/core").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
33
|
-
color?: import("@tamagui/core").
|
|
33
|
+
color?: import("@tamagui/core").FlatStyleValue<import("@tamagui/core").GetThemeValueForKey<"color"> | undefined>;
|
|
34
34
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
35
35
|
autoCorrect?: boolean | 'on' | 'off';
|
|
36
36
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|
|
@@ -74,7 +74,7 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
74
74
|
letterSpacing?: import("@tamagui/core").FlatStyleValue<"unset" | import("@tamagui/core").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
75
75
|
textAlign?: import("@tamagui/core").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
76
76
|
textTransform?: import("@tamagui/core").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
77
|
-
color?: import("@tamagui/core").
|
|
77
|
+
color?: import("@tamagui/core").FlatStyleValue<import("@tamagui/core").GetThemeValueForKey<"color"> | undefined>;
|
|
78
78
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
79
79
|
autoCorrect?: boolean | 'on' | 'off';
|
|
80
80
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|
package/types/Input.native.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
30
30
|
letterSpacing?: import("@tamagui/core").FlatStyleValue<"unset" | import("@tamagui/core").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
31
31
|
textAlign?: import("@tamagui/core").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
32
32
|
textTransform?: import("@tamagui/core").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
33
|
-
color?: import("@tamagui/core").
|
|
33
|
+
color?: import("@tamagui/core").FlatStyleValue<import("@tamagui/core").GetThemeValueForKey<"color"> | undefined>;
|
|
34
34
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
35
35
|
autoCorrect?: boolean | 'on' | 'off';
|
|
36
36
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|
|
@@ -74,7 +74,7 @@ export declare const Input: import("@tamagui/core").TamaguiComponent<Omit<import
|
|
|
74
74
|
letterSpacing?: import("@tamagui/core").FlatStyleValue<"unset" | import("@tamagui/core").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
75
75
|
textAlign?: import("@tamagui/core").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
76
76
|
textTransform?: import("@tamagui/core").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
77
|
-
color?: import("@tamagui/core").
|
|
77
|
+
color?: import("@tamagui/core").FlatStyleValue<import("@tamagui/core").GetThemeValueForKey<"color"> | undefined>;
|
|
78
78
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
79
79
|
autoCorrect?: boolean | 'on' | 'off';
|
|
80
80
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|
package/types/TextArea.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export declare const TextArea: import("react").FunctionComponent<Omit<import("@t
|
|
|
20
20
|
letterSpacing?: import("@tamagui/web").FlatStyleValue<"unset" | import("@tamagui/web").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
21
21
|
textAlign?: import("@tamagui/web").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
22
22
|
textTransform?: import("@tamagui/web").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
23
|
-
color?: import("@tamagui/web").
|
|
23
|
+
color?: import("@tamagui/web").FlatStyleValue<import("@tamagui/web").GetThemeValueForKey<"color"> | undefined>;
|
|
24
24
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
25
25
|
autoCorrect?: boolean | 'on' | 'off';
|
|
26
26
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|
|
@@ -81,7 +81,7 @@ export declare const TextArea: import("react").FunctionComponent<Omit<import("@t
|
|
|
81
81
|
letterSpacing?: import("@tamagui/web").FlatStyleValue<"unset" | import("@tamagui/web").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
82
82
|
textAlign?: import("@tamagui/web").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
83
83
|
textTransform?: import("@tamagui/web").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
84
|
-
color?: import("@tamagui/web").
|
|
84
|
+
color?: import("@tamagui/web").FlatStyleValue<import("@tamagui/web").GetThemeValueForKey<"color"> | undefined>;
|
|
85
85
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
86
86
|
autoCorrect?: boolean | 'on' | 'off';
|
|
87
87
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|
|
@@ -159,7 +159,7 @@ export declare const TextArea: import("react").FunctionComponent<Omit<import("@t
|
|
|
159
159
|
letterSpacing?: import("@tamagui/web").FlatStyleValue<"unset" | import("@tamagui/web").GetThemeValueForKey<"letterSpacing"> | undefined>;
|
|
160
160
|
textAlign?: import("@tamagui/web").FlatStyleValue<"auto" | "center" | "justify" | "left" | "right" | "unset" | undefined>;
|
|
161
161
|
textTransform?: import("@tamagui/web").FlatStyleValue<"capitalize" | "lowercase" | "none" | "unset" | "uppercase" | undefined>;
|
|
162
|
-
color?: import("@tamagui/web").
|
|
162
|
+
color?: import("@tamagui/web").FlatStyleValue<import("@tamagui/web").GetThemeValueForKey<"color"> | undefined>;
|
|
163
163
|
} & Omit<import("./InputNativeProps").InputNativeProps, "autoCapitalize" | "autoCorrect" | "spellCheck"> & {
|
|
164
164
|
autoCorrect?: boolean | 'on' | 'off';
|
|
165
165
|
autoCapitalize?: 'none' | 'sentences' | 'words' | 'characters' | 'off' | 'on';
|