@tamagui/button 1.0.1-beta.206 → 1.0.1-beta.207
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 +6 -6
- package/types/Button.d.ts +1 -4
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.207",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -28,17 +28,17 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
32
|
-
"@tamagui/font-size": "^1.0.1-beta.
|
|
33
|
-
"@tamagui/get-button-sized": "^1.0.1-beta.
|
|
34
|
-
"@tamagui/helpers-tamagui": "^1.0.1-beta.
|
|
31
|
+
"@tamagui/core": "^1.0.1-beta.207",
|
|
32
|
+
"@tamagui/font-size": "^1.0.1-beta.207",
|
|
33
|
+
"@tamagui/get-button-sized": "^1.0.1-beta.207",
|
|
34
|
+
"@tamagui/helpers-tamagui": "^1.0.1-beta.207"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": "*",
|
|
38
38
|
"react-dom": "*"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
41
|
+
"@tamagui/build": "^1.0.1-beta.207",
|
|
42
42
|
"react": "*",
|
|
43
43
|
"react-dom": "*"
|
|
44
44
|
},
|
package/types/Button.d.ts
CHANGED
|
@@ -574,9 +574,6 @@ export declare const Button: (props: Omit<Omit<TextParentStyles, "TextComponent"
|
|
|
574
574
|
* adjust internal space relative to icon size
|
|
575
575
|
*/
|
|
576
576
|
scaleSpace?: number | undefined;
|
|
577
|
-
} & React.RefAttributes<TamaguiElement>, "theme" | "themeInverse"> &
|
|
578
|
-
theme?: import("@tamagui/core").ThemeName | null | undefined;
|
|
579
|
-
themeInverse?: boolean | undefined;
|
|
580
|
-
}) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
577
|
+
} & React.RefAttributes<TamaguiElement>, "theme" | "themeInverse"> & ThemeableProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
|
581
578
|
export {};
|
|
582
579
|
//# sourceMappingURL=Button.d.ts.map
|