@tamagui/list-item 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 +5 -5
- package/types/ListItem.d.ts +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/list-item",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.192",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"watch": "tamagui-build --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
25
|
-
"@tamagui/font-size": "^1.0.1-beta.
|
|
26
|
-
"@tamagui/helpers-tamagui": "^1.0.1-beta.
|
|
24
|
+
"@tamagui/core": "^1.0.1-beta.192",
|
|
25
|
+
"@tamagui/font-size": "^1.0.1-beta.192",
|
|
26
|
+
"@tamagui/helpers-tamagui": "^1.0.1-beta.192"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"react": "*",
|
|
30
30
|
"react-dom": "*"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
33
|
+
"@tamagui/build": "^1.0.1-beta.192",
|
|
34
34
|
"react": "*",
|
|
35
35
|
"react-dom": "*"
|
|
36
36
|
},
|
package/types/ListItem.d.ts
CHANGED
|
@@ -402,14 +402,14 @@ export declare const useListItem: (props: ListItemProps, { Text, Subtitle, Title
|
|
|
402
402
|
id?: string | undefined;
|
|
403
403
|
tag?: string | undefined;
|
|
404
404
|
componentName?: string | undefined;
|
|
405
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
405
|
+
forceStyle?: "hover" | "press" | "focus" | undefined; /**
|
|
406
|
+
* subtitle
|
|
407
|
+
*/
|
|
406
408
|
onHoverIn?: ((e: MouseEvent) => any) | undefined;
|
|
407
409
|
onHoverOut?: ((e: MouseEvent) => any) | undefined;
|
|
408
410
|
onPress?: ((e: import("react-native").GestureResponderEvent) => any) | undefined;
|
|
409
411
|
onPressIn?: ((e: import("react-native").GestureResponderEvent) => any) | undefined;
|
|
410
412
|
onPressOut?: ((e: import("react-native").GestureResponderEvent) => any) | undefined;
|
|
411
|
-
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
412
|
-
cursor?: string | undefined;
|
|
413
413
|
backgroundColor?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").ColorTokens | import("react-native").OpaqueColorValue | undefined;
|
|
414
414
|
borderBottomColor?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").ColorTokens | import("react-native").OpaqueColorValue | undefined;
|
|
415
415
|
borderBottomEndRadius?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").SpaceTokens | undefined;
|
|
@@ -509,8 +509,10 @@ export declare const useListItem: (props: ListItemProps, { Text, Subtitle, Title
|
|
|
509
509
|
rotateY?: string | undefined;
|
|
510
510
|
rotateX?: string | undefined;
|
|
511
511
|
rotateZ?: string | undefined;
|
|
512
|
-
|
|
512
|
+
cursor?: import("csstype").Property.Cursor | undefined;
|
|
513
|
+
contain?: import("csstype").Property.Contain | undefined;
|
|
513
514
|
display?: "flex" | "none" | "inherit" | "inline" | "block" | "contents" | "inline-flex" | undefined;
|
|
515
|
+
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
514
516
|
elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
515
517
|
hoverTheme?: boolean | undefined;
|
|
516
518
|
pressTheme?: boolean | undefined;
|