@tamagui/button 1.0.1-rc.1.1 → 1.0.1-rc.1.3

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-rc.1.1",
3
+ "version": "1.0.1-rc.1.3",
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-rc.1.1",
32
- "@tamagui/font-size": "^1.0.1-rc.1.1",
33
- "@tamagui/get-button-sized": "^1.0.1-rc.1.1",
34
- "@tamagui/helpers-tamagui": "^1.0.1-rc.1.1"
31
+ "@tamagui/core": "^1.0.1-rc.1.3",
32
+ "@tamagui/font-size": "^1.0.1-rc.1.3",
33
+ "@tamagui/get-button-sized": "^1.0.1-rc.1.3",
34
+ "@tamagui/helpers-tamagui": "^1.0.1-rc.1.3"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "react": ">=18",
38
38
  "react-dom": ">=18"
39
39
  },
40
40
  "devDependencies": {
41
- "@tamagui/build": "^1.0.1-rc.1.1",
41
+ "@tamagui/build": "^1.0.1-rc.1.3",
42
42
  "react": ">=18",
43
43
  "react-dom": ">=18"
44
44
  },
package/types/Button.d.ts CHANGED
@@ -360,14 +360,18 @@ export declare function useButton(props: ButtonProps, { Text }?: {
360
360
  contain?: import("csstype").Property.Contain | undefined;
361
361
  display?: "flex" | "none" | "inherit" | "inline" | "block" | "contents" | "inline-flex" | undefined;
362
362
  userSelect?: import("csstype").Property.UserSelect | undefined;
363
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
364
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
365
+ outlineOffset?: import("csstype").Property.OutlineOffset<0 | (string & {})> | undefined;
366
+ outlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
363
367
  elevation?: import("@tamagui/core").SizeTokens | undefined;
364
368
  hoverTheme?: boolean | undefined;
365
369
  pressTheme?: boolean | undefined;
366
370
  focusTheme?: boolean | undefined;
367
371
  circular?: boolean | undefined;
368
372
  elevate?: boolean | undefined;
369
- bordered?: number | boolean | undefined;
370
373
  transparent?: boolean | undefined;
374
+ bordered?: number | boolean | undefined;
371
375
  backgrounded?: boolean | undefined;
372
376
  radiused?: boolean | undefined;
373
377
  padded?: boolean | undefined;