@tamagui/button 1.0.1-beta.190 → 1.0.1-beta.192

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/button",
3
- "version": "1.0.1-beta.190",
3
+ "version": "1.0.1-beta.192",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -28,16 +28,16 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@tamagui/core": "^1.0.1-beta.190",
32
- "@tamagui/font-size": "^1.0.1-beta.190",
33
- "@tamagui/helpers-tamagui": "^1.0.1-beta.190"
31
+ "@tamagui/core": "^1.0.1-beta.192",
32
+ "@tamagui/font-size": "^1.0.1-beta.192",
33
+ "@tamagui/helpers-tamagui": "^1.0.1-beta.192"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "react": "*",
37
37
  "react-dom": "*"
38
38
  },
39
39
  "devDependencies": {
40
- "@tamagui/build": "^1.0.1-beta.190",
40
+ "@tamagui/build": "^1.0.1-beta.192",
41
41
  "react": "*",
42
42
  "react-dom": "*"
43
43
  },
package/types/Button.d.ts CHANGED
@@ -244,8 +244,6 @@ export declare function useButton(props: ButtonProps, { Text }?: {
244
244
  onPress?: ((e: import("react-native").GestureResponderEvent) => any) | undefined;
245
245
  onPressIn?: ((e: import("react-native").GestureResponderEvent) => any) | undefined;
246
246
  onPressOut?: ((e: import("react-native").GestureResponderEvent) => any) | undefined;
247
- userSelect?: import("csstype").Property.UserSelect | undefined;
248
- cursor?: string | undefined;
249
247
  backgroundColor?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").ColorTokens | import("react-native").OpaqueColorValue | undefined;
250
248
  borderBottomColor?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").ColorTokens | import("react-native").OpaqueColorValue | undefined;
251
249
  borderBottomEndRadius?: import("@tamagui/core").SpaceTokens | import("@tamagui/core").ThemeValueFallback | undefined;
@@ -345,8 +343,10 @@ export declare function useButton(props: ButtonProps, { Text }?: {
345
343
  rotateY?: string | undefined;
346
344
  rotateX?: string | undefined;
347
345
  rotateZ?: string | undefined;
348
- contain?: string | undefined;
346
+ cursor?: import("csstype").Property.Cursor | undefined;
347
+ contain?: import("csstype").Property.Contain | undefined;
349
348
  display?: "flex" | "none" | "inherit" | "inline" | "block" | "contents" | "inline-flex" | undefined;
349
+ userSelect?: import("csstype").Property.UserSelect | undefined;
350
350
  elevation?: import("@tamagui/core").SizeTokens | undefined;
351
351
  hoverTheme?: boolean | undefined;
352
352
  pressTheme?: boolean | undefined;