@tamagui/card 1.88.9 → 1.88.10
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/Card.d.ts +3 -35
- package/types/Card.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/card",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.10",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@tamagui/create-context": "1.88.
|
|
36
|
-
"@tamagui/helpers": "1.88.
|
|
37
|
-
"@tamagui/stacks": "1.88.
|
|
38
|
-
"@tamagui/web": "1.88.
|
|
35
|
+
"@tamagui/create-context": "1.88.10",
|
|
36
|
+
"@tamagui/helpers": "1.88.10",
|
|
37
|
+
"@tamagui/stacks": "1.88.10",
|
|
38
|
+
"@tamagui/web": "1.88.10"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "*",
|
|
42
42
|
"react-native": "*"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "1.88.
|
|
45
|
+
"@tamagui/build": "1.88.10",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-native": "^0.72.6"
|
|
48
48
|
},
|
package/types/Card.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<imp
|
|
|
70
70
|
export type CardHeaderProps = GetProps<typeof CardHeader>;
|
|
71
71
|
export type CardFooterProps = GetProps<typeof CardFooter>;
|
|
72
72
|
export type CardProps = GetProps<typeof CardFrame>;
|
|
73
|
-
export declare const Card: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "unstyled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
73
|
+
export declare const Card: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "size" | "unstyled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
74
74
|
size?: SizeTokens | undefined;
|
|
75
75
|
unstyled?: boolean | undefined;
|
|
76
76
|
elevation?: number | SizeTokens | undefined;
|
|
@@ -86,7 +86,7 @@ export declare const Card: import("react").ForwardRefExoticComponent<Omit<import
|
|
|
86
86
|
radiused?: boolean | undefined;
|
|
87
87
|
padded?: boolean | undefined;
|
|
88
88
|
chromeless?: boolean | "all" | undefined;
|
|
89
|
-
}
|
|
89
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
90
90
|
size?: SizeTokens | undefined;
|
|
91
91
|
unstyled?: boolean | undefined;
|
|
92
92
|
elevation?: number | SizeTokens | undefined;
|
|
@@ -102,39 +102,7 @@ export declare const Card: import("react").ForwardRefExoticComponent<Omit<import
|
|
|
102
102
|
radiused?: boolean | undefined;
|
|
103
103
|
padded?: boolean | undefined;
|
|
104
104
|
chromeless?: boolean | "all" | undefined;
|
|
105
|
-
}
|
|
106
|
-
size?: SizeTokens | undefined;
|
|
107
|
-
unstyled?: boolean | undefined;
|
|
108
|
-
elevation?: number | SizeTokens | undefined;
|
|
109
|
-
transparent?: boolean | undefined;
|
|
110
|
-
fullscreen?: boolean | undefined;
|
|
111
|
-
circular?: boolean | undefined;
|
|
112
|
-
hoverTheme?: boolean | undefined;
|
|
113
|
-
pressTheme?: boolean | undefined;
|
|
114
|
-
focusTheme?: boolean | undefined;
|
|
115
|
-
elevate?: boolean | undefined;
|
|
116
|
-
bordered?: number | boolean | undefined;
|
|
117
|
-
backgrounded?: boolean | undefined;
|
|
118
|
-
radiused?: boolean | undefined;
|
|
119
|
-
padded?: boolean | undefined;
|
|
120
|
-
chromeless?: boolean | "all" | undefined;
|
|
121
|
-
}> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase & {
|
|
122
|
-
size?: SizeTokens | undefined;
|
|
123
|
-
unstyled?: boolean | undefined;
|
|
124
|
-
elevation?: number | SizeTokens | undefined;
|
|
125
|
-
transparent?: boolean | undefined;
|
|
126
|
-
fullscreen?: boolean | undefined;
|
|
127
|
-
circular?: boolean | undefined;
|
|
128
|
-
hoverTheme?: boolean | undefined;
|
|
129
|
-
pressTheme?: boolean | undefined;
|
|
130
|
-
focusTheme?: boolean | undefined;
|
|
131
|
-
elevate?: boolean | undefined;
|
|
132
|
-
bordered?: number | boolean | undefined;
|
|
133
|
-
backgrounded?: boolean | undefined;
|
|
134
|
-
radiused?: boolean | undefined;
|
|
135
|
-
padded?: boolean | undefined;
|
|
136
|
-
chromeless?: boolean | "all" | undefined;
|
|
137
|
-
}>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase & {
|
|
105
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
138
106
|
size?: SizeTokens | undefined;
|
|
139
107
|
unstyled?: boolean | undefined;
|
|
140
108
|
elevation?: number | SizeTokens | undefined;
|
package/types/Card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../src/Card.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAA+B,MAAM,cAAc,CAAA;AAKhF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;MAyBpB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;MAyBrB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;MAiBrB,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;MAkBzB,CAAA;AAEF,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AACzD,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AACzD,MAAM,MAAM,SAAS,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAA;AAElD,eAAO,MAAM,IAAI
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../src/Card.tsx"],"names":[],"mappings":";AAEA,OAAO,EAAE,QAAQ,EAAE,UAAU,EAA+B,MAAM,cAAc,CAAA;AAKhF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;MAyBpB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;MAyBrB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;MAiBrB,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;MAkBzB,CAAA;AAEF,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AACzD,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,CAAA;AACzD,MAAM,MAAM,SAAS,GAAG,QAAQ,CAAC,OAAO,SAAS,CAAC,CAAA;AAElD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIf,CAAA"}
|