@tamagui/list-item 1.65.4 → 1.67.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/dist/jsx/ListItem.js +1 -1
- package/dist/jsx/ListItem.native.js +1 -1
- package/package.json +9 -9
- package/src/ListItem.tsx +1 -1
package/dist/jsx/ListItem.js
CHANGED
|
@@ -147,7 +147,7 @@ const NAME = "ListItem", listItemVariants = {
|
|
|
147
147
|
/* helper for common title/subtitle pttern */
|
|
148
148
|
}
|
|
149
149
|
{
|
|
150
|
-
/*
|
|
150
|
+
/* biome-ignore lint/complexity/noExtraBooleanCast: <explanation> */
|
|
151
151
|
}
|
|
152
152
|
{title || subTitle ? <YStack flex={1}>
|
|
153
153
|
{noTextWrap === "all" ? title : <Title size={size}>{title}</Title>}
|
|
@@ -147,7 +147,7 @@ const NAME = "ListItem", listItemVariants = {
|
|
|
147
147
|
/* helper for common title/subtitle pttern */
|
|
148
148
|
}
|
|
149
149
|
{
|
|
150
|
-
/*
|
|
150
|
+
/* biome-ignore lint/complexity/noExtraBooleanCast: <explanation> */
|
|
151
151
|
}
|
|
152
152
|
{title || subTitle ? <YStack flex={1}>
|
|
153
153
|
{noTextWrap === "all" ? title : <Title size={size}>{title}</Title>}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/list-item",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -17,22 +17,22 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tamagui-build",
|
|
19
19
|
"lint": "../../node_modules/.bin/biome check src",
|
|
20
|
-
"lint:fix": "../../node_modules/.bin/biome check --apply src",
|
|
20
|
+
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
|
|
21
21
|
"watch": "tamagui-build --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tamagui/font-size": "1.
|
|
25
|
-
"@tamagui/get-font-sized": "1.
|
|
26
|
-
"@tamagui/get-token": "1.
|
|
27
|
-
"@tamagui/helpers-tamagui": "1.
|
|
28
|
-
"@tamagui/text": "1.
|
|
29
|
-
"@tamagui/web": "1.
|
|
24
|
+
"@tamagui/font-size": "1.67.0",
|
|
25
|
+
"@tamagui/get-font-sized": "1.67.0",
|
|
26
|
+
"@tamagui/get-token": "1.67.0",
|
|
27
|
+
"@tamagui/helpers-tamagui": "1.67.0",
|
|
28
|
+
"@tamagui/text": "1.67.0",
|
|
29
|
+
"@tamagui/web": "1.67.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"react": "*"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@tamagui/build": "1.
|
|
35
|
+
"@tamagui/build": "1.67.0",
|
|
36
36
|
"react": "^18.2.0"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
package/src/ListItem.tsx
CHANGED
|
@@ -245,7 +245,7 @@ export const useListItem = (
|
|
|
245
245
|
</>
|
|
246
246
|
) : null}
|
|
247
247
|
{/* helper for common title/subtitle pttern */}
|
|
248
|
-
{/*
|
|
248
|
+
{/* biome-ignore lint/complexity/noExtraBooleanCast: <explanation> */}
|
|
249
249
|
{Boolean(title || subTitle) ? (
|
|
250
250
|
<YStack flex={1}>
|
|
251
251
|
{noTextWrap === 'all' ? title : <Title size={size}>{title}</Title>}
|