@tamagui/list-item 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 +7 -7
- package/types/ListItem.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/list-item",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.14",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -21,18 +21,18 @@
|
|
|
21
21
|
"watch": "tamagui-build --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tamagui/core": "^1.5.
|
|
25
|
-
"@tamagui/font-size": "^1.5.
|
|
26
|
-
"@tamagui/get-size": "^1.5.
|
|
27
|
-
"@tamagui/helpers-tamagui": "^1.5.
|
|
28
|
-
"@tamagui/text": "^1.5.
|
|
24
|
+
"@tamagui/core": "^1.5.14",
|
|
25
|
+
"@tamagui/font-size": "^1.5.14",
|
|
26
|
+
"@tamagui/get-size": "^1.5.14",
|
|
27
|
+
"@tamagui/helpers-tamagui": "^1.5.14",
|
|
28
|
+
"@tamagui/text": "^1.5.14"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"react": "*",
|
|
32
32
|
"react-dom": "*"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@tamagui/build": "^1.5.
|
|
35
|
+
"@tamagui/build": "^1.5.14",
|
|
36
36
|
"react": "^18.2.0",
|
|
37
37
|
"react-dom": "^18.2.0"
|
|
38
38
|
},
|
package/types/ListItem.d.ts
CHANGED
|
@@ -382,6 +382,8 @@ export declare const useListItem: (props: ListItemProps, { Text, Subtitle, Title
|
|
|
382
382
|
id?: string | undefined;
|
|
383
383
|
tag?: string | undefined;
|
|
384
384
|
componentName?: string | undefined;
|
|
385
|
+
tabIndex?: string | number | undefined;
|
|
386
|
+
role?: string | undefined;
|
|
385
387
|
forceStyle?: "focus" | "hover" | "press" | undefined;
|
|
386
388
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | null | undefined;
|
|
387
389
|
onPressIn?: ((event: import("react-native").GestureResponderEvent) => void) | null | undefined;
|
|
@@ -504,8 +506,6 @@ export declare const useListItem: (props: ListItemProps, { Text, Subtitle, Title
|
|
|
504
506
|
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
505
507
|
outlineOffset?: import("csstype").Property.OutlineOffset<0 | (string & {})> | undefined;
|
|
506
508
|
outlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
|
|
507
|
-
tabIndex?: string | number | undefined;
|
|
508
|
-
role?: string | undefined;
|
|
509
509
|
rel?: any;
|
|
510
510
|
download?: any;
|
|
511
511
|
onStartShouldSetResponder?: ((event: import("react-native").GestureResponderEvent) => boolean) | undefined;
|