@tamagui/list-item 1.0.1-beta.205 → 1.0.1-beta.207
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 +1 -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.207",
|
|
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.207",
|
|
25
|
+
"@tamagui/font-size": "^1.0.1-beta.207",
|
|
26
|
+
"@tamagui/helpers-tamagui": "^1.0.1-beta.207"
|
|
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.207",
|
|
34
34
|
"react": "*",
|
|
35
35
|
"react-dom": "*"
|
|
36
36
|
},
|
package/types/ListItem.d.ts
CHANGED
|
@@ -752,10 +752,7 @@ export declare const ListItem: ((props: Omit<Omit<TextParentStyles, "TextCompone
|
|
|
752
752
|
* will not wrap text around `children` only, "all" will not wrap title or subTitle
|
|
753
753
|
*/
|
|
754
754
|
noTextWrap?: boolean | "all" | undefined;
|
|
755
|
-
} & React.RefAttributes<TamaguiElement>, "theme" | "themeInverse"> & {
|
|
756
|
-
theme?: import("@tamagui/core").ThemeName | null | undefined;
|
|
757
|
-
themeInverse?: boolean | undefined;
|
|
758
|
-
}) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null) & {
|
|
755
|
+
} & React.RefAttributes<TamaguiElement>, "theme" | "themeInverse"> & ThemeableProps) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null) & {
|
|
759
756
|
Text: import("@tamagui/core").TamaguiComponent<(Omit<import("@tamagui/types-react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
760
757
|
readonly size?: FontSizeTokens | undefined;
|
|
761
758
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("@tamagui/types-react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|