@tamagui/button 1.5.13 → 1.5.14
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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/button",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.14",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -29,17 +29,17 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@tamagui/core": "^1.5.
|
|
33
|
-
"@tamagui/font-size": "^1.5.
|
|
34
|
-
"@tamagui/get-button-sized": "^1.5.
|
|
35
|
-
"@tamagui/helpers-tamagui": "^1.5.
|
|
32
|
+
"@tamagui/core": "^1.5.14",
|
|
33
|
+
"@tamagui/font-size": "^1.5.14",
|
|
34
|
+
"@tamagui/get-button-sized": "^1.5.14",
|
|
35
|
+
"@tamagui/helpers-tamagui": "^1.5.14"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "*",
|
|
39
39
|
"react-dom": "*"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@tamagui/build": "^1.5.
|
|
42
|
+
"@tamagui/build": "^1.5.14",
|
|
43
43
|
"react": "^18.2.0",
|
|
44
44
|
"react-dom": "^18.2.0",
|
|
45
45
|
"vitest": "^0.26.3"
|
package/types/Button.d.ts
CHANGED
|
@@ -301,6 +301,8 @@ export declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
301
301
|
id?: string | undefined;
|
|
302
302
|
tag: string | undefined;
|
|
303
303
|
componentName?: string | undefined;
|
|
304
|
+
tabIndex?: string | number | undefined;
|
|
305
|
+
role?: string | undefined;
|
|
304
306
|
forceStyle?: "focus" | "hover" | "press" | undefined;
|
|
305
307
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | null | undefined;
|
|
306
308
|
onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | null | undefined;
|
|
@@ -423,8 +425,6 @@ export declare function useButton(propsIn: ButtonProps, { Text }?: {
|
|
|
423
425
|
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
424
426
|
outlineOffset?: import("csstype").Property.OutlineOffset<0 | (string & {})> | undefined;
|
|
425
427
|
outlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
|
|
426
|
-
tabIndex?: string | number | undefined;
|
|
427
|
-
role?: string | undefined;
|
|
428
428
|
rel?: any;
|
|
429
429
|
download?: any;
|
|
430
430
|
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|