@tamagui/card 1.14.3 → 1.14.5
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/Card.d.ts +14 -0
- 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.14.
|
|
3
|
+
"version": "1.14.5",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/create-context": "1.14.
|
|
35
|
-
"@tamagui/stacks": "1.14.
|
|
36
|
-
"@tamagui/web": "1.14.
|
|
34
|
+
"@tamagui/create-context": "1.14.5",
|
|
35
|
+
"@tamagui/stacks": "1.14.5",
|
|
36
|
+
"@tamagui/web": "1.14.5"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": "*",
|
|
40
40
|
"react-native": "*"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@tamagui/build": "1.14.
|
|
43
|
+
"@tamagui/build": "1.14.5",
|
|
44
44
|
"react": "^18.2.0",
|
|
45
45
|
"react-native": "^0.71.4"
|
|
46
46
|
},
|
package/types/Card.d.ts
CHANGED
|
@@ -72,6 +72,8 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
72
72
|
} & {
|
|
73
73
|
readonly unstyled?: boolean | undefined;
|
|
74
74
|
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
75
|
+
}, {
|
|
76
|
+
displayName: string | undefined;
|
|
75
77
|
}>;
|
|
76
78
|
export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
77
79
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -145,6 +147,8 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
145
147
|
} & {
|
|
146
148
|
readonly unstyled?: boolean | undefined;
|
|
147
149
|
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
150
|
+
}, {
|
|
151
|
+
displayName: string | undefined;
|
|
148
152
|
}>;
|
|
149
153
|
export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
150
154
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -226,6 +230,8 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
226
230
|
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
227
231
|
} & {
|
|
228
232
|
readonly unstyled?: boolean | undefined;
|
|
233
|
+
}, {
|
|
234
|
+
displayName: string | undefined;
|
|
229
235
|
}>;
|
|
230
236
|
export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
231
237
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -295,6 +301,8 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
295
301
|
readonly chromeless?: boolean | "all" | undefined;
|
|
296
302
|
} & {
|
|
297
303
|
readonly unstyled?: boolean | undefined;
|
|
304
|
+
}, {
|
|
305
|
+
displayName: string | undefined;
|
|
298
306
|
}>;
|
|
299
307
|
export type CardHeaderProps = GetProps<typeof CardHeader>;
|
|
300
308
|
export type CardFooterProps = GetProps<typeof CardFooter>;
|
|
@@ -428,6 +436,8 @@ export declare const Card: React.ForwardRefExoticComponent<Omit<import("react-na
|
|
|
428
436
|
} & {
|
|
429
437
|
readonly unstyled?: boolean | undefined;
|
|
430
438
|
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
439
|
+
}, {
|
|
440
|
+
displayName: string | undefined;
|
|
431
441
|
}>;
|
|
432
442
|
Footer: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
433
443
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -509,6 +519,8 @@ export declare const Card: React.ForwardRefExoticComponent<Omit<import("react-na
|
|
|
509
519
|
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
510
520
|
} & {
|
|
511
521
|
readonly unstyled?: boolean | undefined;
|
|
522
|
+
}, {
|
|
523
|
+
displayName: string | undefined;
|
|
512
524
|
}>;
|
|
513
525
|
Background: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
514
526
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -578,6 +590,8 @@ export declare const Card: React.ForwardRefExoticComponent<Omit<import("react-na
|
|
|
578
590
|
readonly chromeless?: boolean | "all" | undefined;
|
|
579
591
|
} & {
|
|
580
592
|
readonly unstyled?: boolean | undefined;
|
|
593
|
+
}, {
|
|
594
|
+
displayName: string | undefined;
|
|
581
595
|
}>;
|
|
582
596
|
};
|
|
583
597
|
//# sourceMappingURL=Card.d.ts.map
|
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,EACL,QAAQ,EACR,cAAc,EAIf,MAAM,cAAc,CAAA;AACrB,OAAO,KAAmC,MAAM,OAAO,CAAA;AAEvD,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../src/Card.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,QAAQ,EACR,cAAc,EAIf,MAAM,cAAc,CAAA;AACrB,OAAO,KAAmC,MAAM,OAAO,CAAA;AAEvD,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBpB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBrB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBrB,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBzB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBhB,CAAA"}
|