@tamagui/button 1.11.2 → 1.12.0

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.11.2",
3
+ "version": "1.12.0",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -29,17 +29,17 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@tamagui/font-size": "1.11.2",
33
- "@tamagui/get-button-sized": "1.11.2",
34
- "@tamagui/helpers-tamagui": "1.11.2",
35
- "@tamagui/text": "1.11.2",
36
- "@tamagui/web": "1.11.2"
32
+ "@tamagui/font-size": "1.12.0",
33
+ "@tamagui/get-button-sized": "1.12.0",
34
+ "@tamagui/helpers-tamagui": "1.12.0",
35
+ "@tamagui/text": "1.12.0",
36
+ "@tamagui/web": "1.12.0"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "react": "*"
40
40
  },
41
41
  "devDependencies": {
42
- "@tamagui/build": "1.11.2",
42
+ "@tamagui/build": "1.12.0",
43
43
  "react": "^18.2.0",
44
44
  "vitest": "^0.26.3"
45
45
  },
package/types/Button.d.ts CHANGED
@@ -423,8 +423,8 @@ export declare function useButton(propsIn: ButtonProps, { Text }?: {
423
423
  userSelect?: import("csstype").Property.UserSelect | undefined;
424
424
  outlineColor?: import("csstype").Property.OutlineColor | undefined;
425
425
  outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
426
- outlineOffset?: import("csstype").Property.OutlineOffset<0 | (string & {})> | undefined;
427
- outlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
426
+ outlineOffset?: import("@tamagui/web").SpaceTokens | undefined;
427
+ outlineWidth?: import("@tamagui/web").SpaceTokens | undefined;
428
428
  rel?: any;
429
429
  download?: any;
430
430
  onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;