@tamagui/button 1.0.1-beta.131 → 1.0.1-beta.134
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 +5 -5
- package/types/Button.d.ts +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/button",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.134",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
"watch": "tamagui-build --watch"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
23
|
-
"@tamagui/font-size": "^1.0.1-beta.
|
|
24
|
-
"@tamagui/helpers-tamagui": "^1.0.1-beta.
|
|
22
|
+
"@tamagui/core": "^1.0.1-beta.134",
|
|
23
|
+
"@tamagui/font-size": "^1.0.1-beta.134",
|
|
24
|
+
"@tamagui/helpers-tamagui": "^1.0.1-beta.134"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"react": "*",
|
|
28
28
|
"react-dom": "*"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
31
|
+
"@tamagui/build": "^1.0.1-beta.134",
|
|
32
32
|
"react": "*",
|
|
33
33
|
"react-dom": "*"
|
|
34
34
|
},
|
package/types/Button.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const ButtonFrame: TamaguiComponent<Omit<import("react-native").V
|
|
|
30
30
|
elevate?: boolean | undefined;
|
|
31
31
|
bordered?: number | boolean | undefined;
|
|
32
32
|
transparent?: boolean | undefined;
|
|
33
|
-
chromeless?: boolean | undefined;
|
|
33
|
+
chromeless?: boolean | "all" | undefined;
|
|
34
34
|
}, "disabled" | "size" | "active"> & {
|
|
35
35
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
36
36
|
readonly active?: boolean | undefined;
|
|
@@ -50,7 +50,7 @@ export declare const ButtonFrame: TamaguiComponent<Omit<import("react-native").V
|
|
|
50
50
|
elevate?: boolean | undefined;
|
|
51
51
|
bordered?: number | boolean | undefined;
|
|
52
52
|
transparent?: boolean | undefined;
|
|
53
|
-
chromeless?: boolean | undefined;
|
|
53
|
+
chromeless?: boolean | "all" | undefined;
|
|
54
54
|
}, "disabled" | "size" | "active"> & {
|
|
55
55
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
56
56
|
readonly active?: boolean | undefined;
|
|
@@ -70,7 +70,7 @@ export declare const ButtonFrame: TamaguiComponent<Omit<import("react-native").V
|
|
|
70
70
|
elevate?: boolean | undefined;
|
|
71
71
|
bordered?: number | boolean | undefined;
|
|
72
72
|
transparent?: boolean | undefined;
|
|
73
|
-
chromeless?: boolean | undefined;
|
|
73
|
+
chromeless?: boolean | "all" | undefined;
|
|
74
74
|
}, "disabled" | "size" | "active"> & {
|
|
75
75
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
76
76
|
readonly active?: boolean | undefined;
|
|
@@ -90,7 +90,7 @@ export declare const ButtonFrame: TamaguiComponent<Omit<import("react-native").V
|
|
|
90
90
|
elevate?: boolean | undefined;
|
|
91
91
|
bordered?: number | boolean | undefined;
|
|
92
92
|
transparent?: boolean | undefined;
|
|
93
|
-
chromeless?: boolean | undefined;
|
|
93
|
+
chromeless?: boolean | "all" | undefined;
|
|
94
94
|
} & {
|
|
95
95
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
96
96
|
readonly active?: boolean | undefined;
|
|
@@ -116,7 +116,9 @@ export declare const ButtonText: TamaguiComponent<(Omit<import("react-native").T
|
|
|
116
116
|
[x: string]: undefined;
|
|
117
117
|
}>>), any, import("@tamagui/core").TextPropsBase, {
|
|
118
118
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
119
|
-
}
|
|
119
|
+
} | ({
|
|
120
|
+
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
121
|
+
} & {
|
|
120
122
|
[x: string]: undefined;
|
|
121
123
|
})>;
|
|
122
124
|
export declare const Button: TamaguiComponent<ButtonProps, HTMLButtonElement | View>;
|