@tamagui/button
Advanced tools
Comparing version 1.0.1-beta.76 to 1.0.1-beta.77
@@ -174,3 +174,3 @@ var __create = Object.create; | ||
separator, | ||
direction: props.flexDirection || "row", | ||
direction: props.flexDirection === "column" || props.flexDirection === "column-reverse" ? "vertical" : "horizontal", | ||
children: [themedIcon, contents, themedIconAfter] | ||
@@ -177,0 +177,0 @@ }) : contents)); |
@@ -159,3 +159,3 @@ var __defProp = Object.defineProperty; | ||
separator, | ||
direction: props.flexDirection || "row", | ||
direction: props.flexDirection === "column" || props.flexDirection === "column-reverse" ? "vertical" : "horizontal", | ||
children: [themedIcon, contents, themedIconAfter] | ||
@@ -162,0 +162,0 @@ }) : contents)); |
@@ -105,3 +105,3 @@ import { | ||
separator, | ||
direction: props.flexDirection || "row", | ||
direction: props.flexDirection === "column" || props.flexDirection === "column-reverse" ? "vertical" : "horizontal", | ||
children: [themedIcon, contents, themedIconAfter] | ||
@@ -108,0 +108,0 @@ }) : contents}</ButtonInsideButtonContext.Provider></ButtonFrame>; |
{ | ||
"name": "@tamagui/button", | ||
"version": "1.0.1-beta.76", | ||
"version": "1.0.1-beta.77", | ||
"sideEffects": [ | ||
@@ -22,5 +22,5 @@ "*.css" | ||
"dependencies": { | ||
"@tamagui/core": "^1.0.1-beta.76", | ||
"@tamagui/font-size": "^1.0.1-beta.76", | ||
"@tamagui/helpers-tamagui": "^1.0.1-beta.76" | ||
"@tamagui/core": "^1.0.1-beta.77", | ||
"@tamagui/font-size": "^1.0.1-beta.77", | ||
"@tamagui/helpers-tamagui": "^1.0.1-beta.77" | ||
}, | ||
@@ -32,3 +32,3 @@ "peerDependencies": { | ||
"devDependencies": { | ||
"@tamagui/build": "^1.0.1-beta.76", | ||
"@tamagui/build": "^1.0.1-beta.77", | ||
"react": "*", | ||
@@ -35,0 +35,0 @@ "react-dom": "*" |
@@ -119,3 +119,5 @@ import { GetProps, ReactComponentWithRef, ThemeableProps } from '@tamagui/core'; | ||
size?: import("@tamagui/core").FontSizeTokens | undefined; | ||
} & ({} | { | ||
} | ({ | ||
size?: import("@tamagui/core").FontSizeTokens | undefined; | ||
} & { | ||
[x: string]: undefined; | ||
@@ -122,0 +124,0 @@ })>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
45037
823