@tamagui/card 1.29.2 → 1.29.4
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/cjs/Card.js +10 -33
- package/dist/cjs/Card.js.map +2 -2
- package/dist/esm/Card.js +11 -24
- package/dist/esm/Card.js.map +1 -1
- package/dist/jsx/Card.js +11 -23
- package/dist/jsx/Card.js.map +1 -1
- package/dist/jsx/Card.mjs +11 -23
- package/dist/jsx/Card.mjs.map +1 -1
- package/package.json +5 -5
- package/src/Card.tsx +13 -30
- package/types/Card.d.ts +73 -155
- package/types/Card.d.ts.map +1 -1
package/dist/cjs/Card.js
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
6
|
var __export = (target, all) => {
|
|
9
7
|
for (var name in all)
|
|
@@ -17,14 +15,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
15
|
}
|
|
18
16
|
return to;
|
|
19
17
|
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
19
|
var Card_exports = {};
|
|
30
20
|
__export(Card_exports, {
|
|
@@ -35,12 +25,14 @@ __export(Card_exports, {
|
|
|
35
25
|
CardHeader: () => CardHeader
|
|
36
26
|
});
|
|
37
27
|
module.exports = __toCommonJS(Card_exports);
|
|
38
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
39
28
|
var import_stacks = require("@tamagui/stacks");
|
|
40
29
|
var import_web = require("@tamagui/web");
|
|
41
|
-
|
|
30
|
+
const CardContext = (0, import_web.createStyledContext)({
|
|
31
|
+
size: "$true"
|
|
32
|
+
});
|
|
42
33
|
const CardFrame = (0, import_web.styled)(import_stacks.ThemeableStack, {
|
|
43
34
|
name: "Card",
|
|
35
|
+
context: CardContext,
|
|
44
36
|
variants: {
|
|
45
37
|
unstyled: {
|
|
46
38
|
false: {
|
|
@@ -64,6 +56,7 @@ const CardFrame = (0, import_web.styled)(import_stacks.ThemeableStack, {
|
|
|
64
56
|
});
|
|
65
57
|
const CardHeader = (0, import_web.styled)(import_stacks.ThemeableStack, {
|
|
66
58
|
name: "CardHeader",
|
|
59
|
+
context: CardContext,
|
|
67
60
|
variants: {
|
|
68
61
|
unstyled: {
|
|
69
62
|
false: {
|
|
@@ -117,27 +110,11 @@ const CardBackground = (0, import_web.styled)(import_stacks.ThemeableStack, {
|
|
|
117
110
|
unstyled: false
|
|
118
111
|
}
|
|
119
112
|
});
|
|
120
|
-
const Card = (0, import_web.withStaticProperties)(
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
if ((0, import_web.isTamaguiElement)(child) && !child.props.size) {
|
|
126
|
-
return (0, import_react.cloneElement)(child, {
|
|
127
|
-
size: props.size
|
|
128
|
-
});
|
|
129
|
-
}
|
|
130
|
-
return child;
|
|
131
|
-
}) });
|
|
132
|
-
}
|
|
133
|
-
)
|
|
134
|
-
),
|
|
135
|
-
{
|
|
136
|
-
Header: CardHeader,
|
|
137
|
-
Footer: CardFooter,
|
|
138
|
-
Background: CardBackground
|
|
139
|
-
}
|
|
140
|
-
);
|
|
113
|
+
const Card = (0, import_web.withStaticProperties)(CardFrame, {
|
|
114
|
+
Header: CardHeader,
|
|
115
|
+
Footer: CardFooter,
|
|
116
|
+
Background: CardBackground
|
|
117
|
+
});
|
|
141
118
|
// Annotate the CommonJS export names for ESM import in node:
|
|
142
119
|
0 && (module.exports = {
|
|
143
120
|
Card,
|
package/dist/cjs/Card.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Card.tsx"],
|
|
4
|
-
"mappings": "
|
|
5
|
-
"names": [
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAA+B;AAC/B,iBAMO;AAEP,MAAM,kBAAc,gCAAoB;AAAA,EACtC,MAAM;AACR,CAAC;AAEM,MAAM,gBAAY,mBAAO,8BAAgB;AAAA,EAC9C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,MAAM;AAAA,QACN,iBAAiB;AAAA,QACjB,UAAU;AAAA,QACV,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,cAAc,OAAO,OAAO,GAAG,KAAK;AAAA,QACtC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,iBAAa,mBAAO,8BAAgB;AAAA,EAC/C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,iBAAiB;AAAA,QACjB,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,SAAS,OAAO,MAAM,GAAG,KAAK;AAAA,QAChC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,iBAAa,mBAAO,YAAY;AAAA,EAC3C,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,eAAe;AAAA,QACf,WAAW;AAAA,QACX,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,qBAAiB,mBAAO,8BAAgB;AAAA,EACnD,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,eAAe;AAAA,QACf,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAMM,MAAM,WAAO,iCAAqB,WAAW;AAAA,EAClD,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,YAAY;AACd,CAAC;",
|
|
5
|
+
"names": []
|
|
6
6
|
}
|
package/dist/esm/Card.js
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
1
|
import { ThemeableStack } from "@tamagui/stacks";
|
|
3
2
|
import {
|
|
4
|
-
|
|
3
|
+
createStyledContext,
|
|
5
4
|
styled,
|
|
6
5
|
withStaticProperties
|
|
7
6
|
} from "@tamagui/web";
|
|
8
|
-
|
|
7
|
+
const CardContext = createStyledContext({
|
|
8
|
+
size: "$true"
|
|
9
|
+
});
|
|
9
10
|
const CardFrame = styled(ThemeableStack, {
|
|
10
11
|
name: "Card",
|
|
12
|
+
context: CardContext,
|
|
11
13
|
variants: {
|
|
12
14
|
unstyled: {
|
|
13
15
|
false: {
|
|
@@ -31,6 +33,7 @@ const CardFrame = styled(ThemeableStack, {
|
|
|
31
33
|
});
|
|
32
34
|
const CardHeader = styled(ThemeableStack, {
|
|
33
35
|
name: "CardHeader",
|
|
36
|
+
context: CardContext,
|
|
34
37
|
variants: {
|
|
35
38
|
unstyled: {
|
|
36
39
|
false: {
|
|
@@ -84,27 +87,11 @@ const CardBackground = styled(ThemeableStack, {
|
|
|
84
87
|
unstyled: false
|
|
85
88
|
}
|
|
86
89
|
});
|
|
87
|
-
const Card = withStaticProperties(
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
if (isTamaguiElement(child) && !child.props.size) {
|
|
93
|
-
return cloneElement(child, {
|
|
94
|
-
size: props.size
|
|
95
|
-
});
|
|
96
|
-
}
|
|
97
|
-
return child;
|
|
98
|
-
}) });
|
|
99
|
-
}
|
|
100
|
-
)
|
|
101
|
-
),
|
|
102
|
-
{
|
|
103
|
-
Header: CardHeader,
|
|
104
|
-
Footer: CardFooter,
|
|
105
|
-
Background: CardBackground
|
|
106
|
-
}
|
|
107
|
-
);
|
|
90
|
+
const Card = withStaticProperties(CardFrame, {
|
|
91
|
+
Header: CardHeader,
|
|
92
|
+
Footer: CardFooter,
|
|
93
|
+
Background: CardBackground
|
|
94
|
+
});
|
|
108
95
|
export {
|
|
109
96
|
Card,
|
|
110
97
|
CardBackground,
|
package/dist/esm/Card.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Card.tsx"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAA,SAAS,sBAAsB;AAC/B;AAAA,EAGE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,MAAM,cAAc,oBAAoB;AAAA,EACtC,MAAM;AACR,CAAC;AAEM,MAAM,YAAY,OAAO,gBAAgB;AAAA,EAC9C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,MAAM;AAAA,QACN,iBAAiB;AAAA,QACjB,UAAU;AAAA,QACV,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,cAAc,OAAO,OAAO,GAAG,KAAK;AAAA,QACtC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,aAAa,OAAO,gBAAgB;AAAA,EAC/C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,iBAAiB;AAAA,QACjB,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,SAAS,OAAO,MAAM,GAAG,KAAK;AAAA,QAChC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,aAAa,OAAO,YAAY;AAAA,EAC3C,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,eAAe;AAAA,QACf,WAAW;AAAA,QACX,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,iBAAiB,OAAO,gBAAgB;AAAA,EACnD,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,eAAe;AAAA,QACf,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAMM,MAAM,OAAO,qBAAqB,WAAW;AAAA,EAClD,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,YAAY;AACd,CAAC;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/dist/jsx/Card.js
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { ThemeableStack } from "@tamagui/stacks";
|
|
2
2
|
import {
|
|
3
|
-
|
|
3
|
+
createStyledContext,
|
|
4
4
|
styled,
|
|
5
5
|
withStaticProperties
|
|
6
6
|
} from "@tamagui/web";
|
|
7
|
-
|
|
7
|
+
const CardContext = createStyledContext({
|
|
8
|
+
size: "$true"
|
|
9
|
+
});
|
|
8
10
|
const CardFrame = styled(ThemeableStack, {
|
|
9
11
|
name: "Card",
|
|
12
|
+
context: CardContext,
|
|
10
13
|
variants: {
|
|
11
14
|
unstyled: {
|
|
12
15
|
false: {
|
|
@@ -30,6 +33,7 @@ const CardFrame = styled(ThemeableStack, {
|
|
|
30
33
|
});
|
|
31
34
|
const CardHeader = styled(ThemeableStack, {
|
|
32
35
|
name: "CardHeader",
|
|
36
|
+
context: CardContext,
|
|
33
37
|
variants: {
|
|
34
38
|
unstyled: {
|
|
35
39
|
false: {
|
|
@@ -83,27 +87,11 @@ const CardBackground = styled(ThemeableStack, {
|
|
|
83
87
|
unstyled: false
|
|
84
88
|
}
|
|
85
89
|
});
|
|
86
|
-
const Card = withStaticProperties(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
if (isTamaguiElement(child) && !child.props.size) {
|
|
92
|
-
return cloneElement(child, {
|
|
93
|
-
size: props.size
|
|
94
|
-
});
|
|
95
|
-
}
|
|
96
|
-
return child;
|
|
97
|
-
})}</CardFrame>;
|
|
98
|
-
}
|
|
99
|
-
)
|
|
100
|
-
),
|
|
101
|
-
{
|
|
102
|
-
Header: CardHeader,
|
|
103
|
-
Footer: CardFooter,
|
|
104
|
-
Background: CardBackground
|
|
105
|
-
}
|
|
106
|
-
);
|
|
90
|
+
const Card = withStaticProperties(CardFrame, {
|
|
91
|
+
Header: CardHeader,
|
|
92
|
+
Footer: CardFooter,
|
|
93
|
+
Background: CardBackground
|
|
94
|
+
});
|
|
107
95
|
export {
|
|
108
96
|
Card,
|
|
109
97
|
CardBackground,
|
package/dist/jsx/Card.js.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Card.tsx"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAA,SAAS,sBAAsB;AAC/B;AAAA,EAGE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,MAAM,cAAc,oBAAoB;AAAA,EACtC,MAAM;AACR,CAAC;AAEM,MAAM,YAAY,OAAO,gBAAgB;AAAA,EAC9C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,MAAM;AAAA,QACN,iBAAiB;AAAA,QACjB,UAAU;AAAA,QACV,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,cAAc,OAAO,OAAO,GAAG,KAAK;AAAA,QACtC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,aAAa,OAAO,gBAAgB;AAAA,EAC/C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,iBAAiB;AAAA,QACjB,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,SAAS,OAAO,MAAM,GAAG,KAAK;AAAA,QAChC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,aAAa,OAAO,YAAY;AAAA,EAC3C,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,eAAe;AAAA,QACf,WAAW;AAAA,QACX,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,iBAAiB,OAAO,gBAAgB;AAAA,EACnD,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,eAAe;AAAA,QACf,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAMM,MAAM,OAAO,qBAAqB,WAAW;AAAA,EAClD,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,YAAY;AACd,CAAC;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/dist/jsx/Card.mjs
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { ThemeableStack } from "@tamagui/stacks";
|
|
2
2
|
import {
|
|
3
|
-
|
|
3
|
+
createStyledContext,
|
|
4
4
|
styled,
|
|
5
5
|
withStaticProperties
|
|
6
6
|
} from "@tamagui/web";
|
|
7
|
-
|
|
7
|
+
const CardContext = createStyledContext({
|
|
8
|
+
size: "$true"
|
|
9
|
+
});
|
|
8
10
|
const CardFrame = styled(ThemeableStack, {
|
|
9
11
|
name: "Card",
|
|
12
|
+
context: CardContext,
|
|
10
13
|
variants: {
|
|
11
14
|
unstyled: {
|
|
12
15
|
false: {
|
|
@@ -30,6 +33,7 @@ const CardFrame = styled(ThemeableStack, {
|
|
|
30
33
|
});
|
|
31
34
|
const CardHeader = styled(ThemeableStack, {
|
|
32
35
|
name: "CardHeader",
|
|
36
|
+
context: CardContext,
|
|
33
37
|
variants: {
|
|
34
38
|
unstyled: {
|
|
35
39
|
false: {
|
|
@@ -83,27 +87,11 @@ const CardBackground = styled(ThemeableStack, {
|
|
|
83
87
|
unstyled: false
|
|
84
88
|
}
|
|
85
89
|
});
|
|
86
|
-
const Card = withStaticProperties(
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
if (isTamaguiElement(child) && !child.props.size) {
|
|
92
|
-
return cloneElement(child, {
|
|
93
|
-
size: props.size
|
|
94
|
-
});
|
|
95
|
-
}
|
|
96
|
-
return child;
|
|
97
|
-
})}</CardFrame>;
|
|
98
|
-
}
|
|
99
|
-
)
|
|
100
|
-
),
|
|
101
|
-
{
|
|
102
|
-
Header: CardHeader,
|
|
103
|
-
Footer: CardFooter,
|
|
104
|
-
Background: CardBackground
|
|
105
|
-
}
|
|
106
|
-
);
|
|
90
|
+
const Card = withStaticProperties(CardFrame, {
|
|
91
|
+
Header: CardHeader,
|
|
92
|
+
Footer: CardFooter,
|
|
93
|
+
Background: CardBackground
|
|
94
|
+
});
|
|
107
95
|
export {
|
|
108
96
|
Card,
|
|
109
97
|
CardBackground,
|
package/dist/jsx/Card.mjs.map
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Card.tsx"],
|
|
4
|
-
"mappings": "
|
|
4
|
+
"mappings": "AAAA,SAAS,sBAAsB;AAC/B;AAAA,EAGE;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAEP,MAAM,cAAc,oBAAoB;AAAA,EACtC,MAAM;AACR,CAAC;AAEM,MAAM,YAAY,OAAO,gBAAgB;AAAA,EAC9C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,MAAM;AAAA,QACN,iBAAiB;AAAA,QACjB,UAAU;AAAA,QACV,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,cAAc,OAAO,OAAO,GAAG,KAAK;AAAA,QACtC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,aAAa,OAAO,gBAAgB;AAAA,EAC/C,MAAM;AAAA,EACN,SAAS;AAAA,EAET,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,iBAAiB;AAAA,QACjB,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW,CAAC,KAAK,EAAE,OAAO,MAAM;AAC9B,eAAO;AAAA,UACL,SAAS,OAAO,MAAM,GAAG,KAAK;AAAA,QAChC;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,aAAa,OAAO,YAAY;AAAA,EAC3C,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,eAAe;AAAA,QACf,WAAW;AAAA,QACX,cAAc;AAAA,MAChB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAEM,MAAM,iBAAiB,OAAO,gBAAgB;AAAA,EACnD,MAAM;AAAA,EAEN,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,eAAe;AAAA,QACf,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU;AAAA,EACZ;AACF,CAAC;AAMM,MAAM,OAAO,qBAAqB,WAAW;AAAA,EAClD,QAAQ;AAAA,EACR,QAAQ;AAAA,EACR,YAAY;AACd,CAAC;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/card",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.4",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/create-context": "1.29.
|
|
35
|
-
"@tamagui/stacks": "1.29.
|
|
36
|
-
"@tamagui/web": "1.29.
|
|
34
|
+
"@tamagui/create-context": "1.29.4",
|
|
35
|
+
"@tamagui/stacks": "1.29.4",
|
|
36
|
+
"@tamagui/web": "1.29.4"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"react": "*",
|
|
40
40
|
"react-native": "*"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@tamagui/build": "1.29.
|
|
43
|
+
"@tamagui/build": "1.29.4",
|
|
44
44
|
"react": "^18.2.0",
|
|
45
45
|
"react-native": "^0.71.7"
|
|
46
46
|
},
|
package/src/Card.tsx
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
import { ScopedProps } from '@tamagui/create-context'
|
|
2
1
|
import { ThemeableStack } from '@tamagui/stacks'
|
|
3
2
|
import {
|
|
4
3
|
GetProps,
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
SizeTokens,
|
|
5
|
+
createStyledContext,
|
|
7
6
|
styled,
|
|
8
7
|
withStaticProperties,
|
|
9
8
|
} from '@tamagui/web'
|
|
10
|
-
|
|
9
|
+
|
|
10
|
+
const CardContext = createStyledContext({
|
|
11
|
+
size: '$true' as SizeTokens,
|
|
12
|
+
})
|
|
11
13
|
|
|
12
14
|
export const CardFrame = styled(ThemeableStack, {
|
|
13
15
|
name: 'Card',
|
|
16
|
+
context: CardContext,
|
|
14
17
|
|
|
15
18
|
variants: {
|
|
16
19
|
unstyled: {
|
|
@@ -38,6 +41,7 @@ export const CardFrame = styled(ThemeableStack, {
|
|
|
38
41
|
|
|
39
42
|
export const CardHeader = styled(ThemeableStack, {
|
|
40
43
|
name: 'CardHeader',
|
|
44
|
+
context: CardContext,
|
|
41
45
|
|
|
42
46
|
variants: {
|
|
43
47
|
unstyled: {
|
|
@@ -105,29 +109,8 @@ export type CardHeaderProps = GetProps<typeof CardHeader>
|
|
|
105
109
|
export type CardFooterProps = GetProps<typeof CardFooter>
|
|
106
110
|
export type CardProps = GetProps<typeof CardFrame>
|
|
107
111
|
|
|
108
|
-
export const Card = withStaticProperties(
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
<CardFrame ref={ref} {...props}>
|
|
114
|
-
{React.Children.map(children, (child) => {
|
|
115
|
-
// @ts-ignore
|
|
116
|
-
if (isTamaguiElement(child) && !child.props.size) {
|
|
117
|
-
return cloneElement(child, {
|
|
118
|
-
size: props.size,
|
|
119
|
-
})
|
|
120
|
-
}
|
|
121
|
-
return child
|
|
122
|
-
})}
|
|
123
|
-
</CardFrame>
|
|
124
|
-
)
|
|
125
|
-
}
|
|
126
|
-
)
|
|
127
|
-
),
|
|
128
|
-
{
|
|
129
|
-
Header: CardHeader,
|
|
130
|
-
Footer: CardFooter,
|
|
131
|
-
Background: CardBackground,
|
|
132
|
-
}
|
|
133
|
-
)
|
|
112
|
+
export const Card = withStaticProperties(CardFrame, {
|
|
113
|
+
Header: CardHeader,
|
|
114
|
+
Footer: CardFooter,
|
|
115
|
+
Background: CardBackground,
|
|
116
|
+
})
|
package/types/Card.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { GetProps,
|
|
1
|
+
import { GetProps, SizeTokens } from '@tamagui/web';
|
|
2
2
|
export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
3
3
|
readonly fullscreen?: boolean | undefined;
|
|
4
|
-
readonly elevation?:
|
|
4
|
+
readonly elevation?: SizeTokens | undefined;
|
|
5
5
|
} & {
|
|
6
6
|
readonly backgrounded?: boolean | undefined;
|
|
7
7
|
readonly radiused?: boolean | undefined;
|
|
@@ -16,10 +16,10 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
16
16
|
readonly chromeless?: boolean | "all" | undefined;
|
|
17
17
|
}, "size" | "unstyled"> & {
|
|
18
18
|
readonly unstyled?: boolean | undefined;
|
|
19
|
-
readonly size?:
|
|
19
|
+
readonly size?: SizeTokens | undefined;
|
|
20
20
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
21
21
|
readonly fullscreen?: boolean | undefined;
|
|
22
|
-
readonly elevation?:
|
|
22
|
+
readonly elevation?: SizeTokens | undefined;
|
|
23
23
|
} & {
|
|
24
24
|
readonly backgrounded?: boolean | undefined;
|
|
25
25
|
readonly radiused?: boolean | undefined;
|
|
@@ -34,10 +34,10 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
34
34
|
readonly chromeless?: boolean | "all" | undefined;
|
|
35
35
|
}, "size" | "unstyled"> & {
|
|
36
36
|
readonly unstyled?: boolean | undefined;
|
|
37
|
-
readonly size?:
|
|
37
|
+
readonly size?: SizeTokens | undefined;
|
|
38
38
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
39
39
|
readonly fullscreen?: boolean | undefined;
|
|
40
|
-
readonly elevation?:
|
|
40
|
+
readonly elevation?: SizeTokens | undefined;
|
|
41
41
|
} & {
|
|
42
42
|
readonly backgrounded?: boolean | undefined;
|
|
43
43
|
readonly radiused?: boolean | undefined;
|
|
@@ -52,10 +52,10 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
52
52
|
readonly chromeless?: boolean | "all" | undefined;
|
|
53
53
|
}, "size" | "unstyled"> & {
|
|
54
54
|
readonly unstyled?: boolean | undefined;
|
|
55
|
-
readonly size?:
|
|
56
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
55
|
+
readonly size?: SizeTokens | undefined;
|
|
56
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
57
57
|
readonly fullscreen?: boolean | undefined;
|
|
58
|
-
readonly elevation?:
|
|
58
|
+
readonly elevation?: SizeTokens | undefined;
|
|
59
59
|
} & {
|
|
60
60
|
readonly backgrounded?: boolean | undefined;
|
|
61
61
|
readonly radiused?: boolean | undefined;
|
|
@@ -70,13 +70,13 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
70
70
|
readonly chromeless?: boolean | "all" | undefined;
|
|
71
71
|
} & {
|
|
72
72
|
readonly unstyled?: boolean | undefined;
|
|
73
|
-
readonly size?:
|
|
73
|
+
readonly size?: SizeTokens | undefined;
|
|
74
74
|
}, {
|
|
75
75
|
displayName: string | undefined;
|
|
76
76
|
}>;
|
|
77
77
|
export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
78
78
|
readonly fullscreen?: boolean | undefined;
|
|
79
|
-
readonly elevation?:
|
|
79
|
+
readonly elevation?: SizeTokens | undefined;
|
|
80
80
|
} & {
|
|
81
81
|
readonly backgrounded?: boolean | undefined;
|
|
82
82
|
readonly radiused?: boolean | undefined;
|
|
@@ -91,10 +91,10 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
91
91
|
readonly chromeless?: boolean | "all" | undefined;
|
|
92
92
|
}, "size" | "unstyled"> & {
|
|
93
93
|
readonly unstyled?: boolean | undefined;
|
|
94
|
-
readonly size?:
|
|
94
|
+
readonly size?: SizeTokens | undefined;
|
|
95
95
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
96
96
|
readonly fullscreen?: boolean | undefined;
|
|
97
|
-
readonly elevation?:
|
|
97
|
+
readonly elevation?: SizeTokens | undefined;
|
|
98
98
|
} & {
|
|
99
99
|
readonly backgrounded?: boolean | undefined;
|
|
100
100
|
readonly radiused?: boolean | undefined;
|
|
@@ -109,10 +109,10 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
109
109
|
readonly chromeless?: boolean | "all" | undefined;
|
|
110
110
|
}, "size" | "unstyled"> & {
|
|
111
111
|
readonly unstyled?: boolean | undefined;
|
|
112
|
-
readonly size?:
|
|
112
|
+
readonly size?: SizeTokens | undefined;
|
|
113
113
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
114
114
|
readonly fullscreen?: boolean | undefined;
|
|
115
|
-
readonly elevation?:
|
|
115
|
+
readonly elevation?: SizeTokens | undefined;
|
|
116
116
|
} & {
|
|
117
117
|
readonly backgrounded?: boolean | undefined;
|
|
118
118
|
readonly radiused?: boolean | undefined;
|
|
@@ -127,10 +127,10 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
127
127
|
readonly chromeless?: boolean | "all" | undefined;
|
|
128
128
|
}, "size" | "unstyled"> & {
|
|
129
129
|
readonly unstyled?: boolean | undefined;
|
|
130
|
-
readonly size?:
|
|
131
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
130
|
+
readonly size?: SizeTokens | undefined;
|
|
131
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
132
132
|
readonly fullscreen?: boolean | undefined;
|
|
133
|
-
readonly elevation?:
|
|
133
|
+
readonly elevation?: SizeTokens | undefined;
|
|
134
134
|
} & {
|
|
135
135
|
readonly backgrounded?: boolean | undefined;
|
|
136
136
|
readonly radiused?: boolean | undefined;
|
|
@@ -145,13 +145,13 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
145
145
|
readonly chromeless?: boolean | "all" | undefined;
|
|
146
146
|
} & {
|
|
147
147
|
readonly unstyled?: boolean | undefined;
|
|
148
|
-
readonly size?:
|
|
148
|
+
readonly size?: SizeTokens | undefined;
|
|
149
149
|
}, {
|
|
150
150
|
displayName: string | undefined;
|
|
151
151
|
}>;
|
|
152
152
|
export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
153
153
|
readonly fullscreen?: boolean | undefined;
|
|
154
|
-
readonly elevation?:
|
|
154
|
+
readonly elevation?: SizeTokens | undefined;
|
|
155
155
|
} & {
|
|
156
156
|
readonly backgrounded?: boolean | undefined;
|
|
157
157
|
readonly radiused?: boolean | undefined;
|
|
@@ -166,12 +166,12 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
166
166
|
readonly chromeless?: boolean | "all" | undefined;
|
|
167
167
|
} & {
|
|
168
168
|
readonly unstyled?: boolean | undefined;
|
|
169
|
-
readonly size?:
|
|
169
|
+
readonly size?: SizeTokens | undefined;
|
|
170
170
|
}, "unstyled"> & {
|
|
171
171
|
readonly unstyled?: boolean | undefined;
|
|
172
172
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
173
173
|
readonly fullscreen?: boolean | undefined;
|
|
174
|
-
readonly elevation?:
|
|
174
|
+
readonly elevation?: SizeTokens | undefined;
|
|
175
175
|
} & {
|
|
176
176
|
readonly backgrounded?: boolean | undefined;
|
|
177
177
|
readonly radiused?: boolean | undefined;
|
|
@@ -186,12 +186,12 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
186
186
|
readonly chromeless?: boolean | "all" | undefined;
|
|
187
187
|
} & {
|
|
188
188
|
readonly unstyled?: boolean | undefined;
|
|
189
|
-
readonly size?:
|
|
189
|
+
readonly size?: SizeTokens | undefined;
|
|
190
190
|
}, "unstyled"> & {
|
|
191
191
|
readonly unstyled?: boolean | undefined;
|
|
192
192
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
193
193
|
readonly fullscreen?: boolean | undefined;
|
|
194
|
-
readonly elevation?:
|
|
194
|
+
readonly elevation?: SizeTokens | undefined;
|
|
195
195
|
} & {
|
|
196
196
|
readonly backgrounded?: boolean | undefined;
|
|
197
197
|
readonly radiused?: boolean | undefined;
|
|
@@ -206,12 +206,12 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
206
206
|
readonly chromeless?: boolean | "all" | undefined;
|
|
207
207
|
} & {
|
|
208
208
|
readonly unstyled?: boolean | undefined;
|
|
209
|
-
readonly size?:
|
|
209
|
+
readonly size?: SizeTokens | undefined;
|
|
210
210
|
}, "unstyled"> & {
|
|
211
211
|
readonly unstyled?: boolean | undefined;
|
|
212
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
212
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
213
213
|
readonly fullscreen?: boolean | undefined;
|
|
214
|
-
readonly elevation?:
|
|
214
|
+
readonly elevation?: SizeTokens | undefined;
|
|
215
215
|
} & {
|
|
216
216
|
readonly backgrounded?: boolean | undefined;
|
|
217
217
|
readonly radiused?: boolean | undefined;
|
|
@@ -226,7 +226,7 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
226
226
|
readonly chromeless?: boolean | "all" | undefined;
|
|
227
227
|
} & {
|
|
228
228
|
readonly unstyled?: boolean | undefined;
|
|
229
|
-
readonly size?:
|
|
229
|
+
readonly size?: SizeTokens | undefined;
|
|
230
230
|
} & {
|
|
231
231
|
readonly unstyled?: boolean | undefined;
|
|
232
232
|
}, {
|
|
@@ -234,7 +234,7 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
234
234
|
}>;
|
|
235
235
|
export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
236
236
|
readonly fullscreen?: boolean | undefined;
|
|
237
|
-
readonly elevation?:
|
|
237
|
+
readonly elevation?: SizeTokens | undefined;
|
|
238
238
|
} & {
|
|
239
239
|
readonly backgrounded?: boolean | undefined;
|
|
240
240
|
readonly radiused?: boolean | undefined;
|
|
@@ -251,7 +251,7 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
251
251
|
readonly unstyled?: boolean | undefined;
|
|
252
252
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
253
253
|
readonly fullscreen?: boolean | undefined;
|
|
254
|
-
readonly elevation?:
|
|
254
|
+
readonly elevation?: SizeTokens | undefined;
|
|
255
255
|
} & {
|
|
256
256
|
readonly backgrounded?: boolean | undefined;
|
|
257
257
|
readonly radiused?: boolean | undefined;
|
|
@@ -268,7 +268,7 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
268
268
|
readonly unstyled?: boolean | undefined;
|
|
269
269
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
270
270
|
readonly fullscreen?: boolean | undefined;
|
|
271
|
-
readonly elevation?:
|
|
271
|
+
readonly elevation?: SizeTokens | undefined;
|
|
272
272
|
} & {
|
|
273
273
|
readonly backgrounded?: boolean | undefined;
|
|
274
274
|
readonly radiused?: boolean | undefined;
|
|
@@ -283,9 +283,9 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
283
283
|
readonly chromeless?: boolean | "all" | undefined;
|
|
284
284
|
}, "unstyled"> & {
|
|
285
285
|
readonly unstyled?: boolean | undefined;
|
|
286
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
286
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
287
287
|
readonly fullscreen?: boolean | undefined;
|
|
288
|
-
readonly elevation?:
|
|
288
|
+
readonly elevation?: SizeTokens | undefined;
|
|
289
289
|
} & {
|
|
290
290
|
readonly backgrounded?: boolean | undefined;
|
|
291
291
|
readonly radiused?: boolean | undefined;
|
|
@@ -308,7 +308,7 @@ export type CardFooterProps = GetProps<typeof CardFooter>;
|
|
|
308
308
|
export type CardProps = GetProps<typeof CardFrame>;
|
|
309
309
|
export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
310
310
|
readonly fullscreen?: boolean | undefined;
|
|
311
|
-
readonly elevation?:
|
|
311
|
+
readonly elevation?: SizeTokens | undefined;
|
|
312
312
|
} & {
|
|
313
313
|
readonly backgrounded?: boolean | undefined;
|
|
314
314
|
readonly radiused?: boolean | undefined;
|
|
@@ -323,10 +323,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
323
323
|
readonly chromeless?: boolean | "all" | undefined;
|
|
324
324
|
}, "size" | "unstyled"> & {
|
|
325
325
|
readonly unstyled?: boolean | undefined;
|
|
326
|
-
readonly size?:
|
|
326
|
+
readonly size?: SizeTokens | undefined;
|
|
327
327
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
328
328
|
readonly fullscreen?: boolean | undefined;
|
|
329
|
-
readonly elevation?:
|
|
329
|
+
readonly elevation?: SizeTokens | undefined;
|
|
330
330
|
} & {
|
|
331
331
|
readonly backgrounded?: boolean | undefined;
|
|
332
332
|
readonly radiused?: boolean | undefined;
|
|
@@ -341,10 +341,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
341
341
|
readonly chromeless?: boolean | "all" | undefined;
|
|
342
342
|
}, "size" | "unstyled"> & {
|
|
343
343
|
readonly unstyled?: boolean | undefined;
|
|
344
|
-
readonly size?:
|
|
344
|
+
readonly size?: SizeTokens | undefined;
|
|
345
345
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
346
346
|
readonly fullscreen?: boolean | undefined;
|
|
347
|
-
readonly elevation?:
|
|
347
|
+
readonly elevation?: SizeTokens | undefined;
|
|
348
348
|
} & {
|
|
349
349
|
readonly backgrounded?: boolean | undefined;
|
|
350
350
|
readonly radiused?: boolean | undefined;
|
|
@@ -359,97 +359,13 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
359
359
|
readonly chromeless?: boolean | "all" | undefined;
|
|
360
360
|
}, "size" | "unstyled"> & {
|
|
361
361
|
readonly unstyled?: boolean | undefined;
|
|
362
|
-
readonly size?:
|
|
363
|
-
}
|
|
364
|
-
readonly fullscreen?: boolean | undefined;
|
|
365
|
-
readonly elevation?: import("@tamagui/web").SizeTokens | undefined;
|
|
366
|
-
} & {
|
|
367
|
-
readonly backgrounded?: boolean | undefined;
|
|
368
|
-
readonly radiused?: boolean | undefined;
|
|
369
|
-
readonly hoverTheme?: boolean | undefined;
|
|
370
|
-
readonly pressTheme?: boolean | undefined;
|
|
371
|
-
readonly focusTheme?: boolean | undefined;
|
|
372
|
-
readonly circular?: boolean | undefined;
|
|
373
|
-
readonly padded?: boolean | undefined;
|
|
374
|
-
readonly elevate?: boolean | undefined;
|
|
375
|
-
readonly bordered?: number | boolean | undefined;
|
|
376
|
-
readonly transparent?: boolean | undefined;
|
|
377
|
-
readonly chromeless?: boolean | "all" | undefined;
|
|
378
|
-
}, "size" | "unstyled"> & {
|
|
379
|
-
readonly unstyled?: boolean | undefined;
|
|
380
|
-
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
381
|
-
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
382
|
-
readonly fullscreen?: boolean | undefined;
|
|
383
|
-
readonly elevation?: import("@tamagui/web").SizeTokens | undefined;
|
|
384
|
-
} & {
|
|
385
|
-
readonly backgrounded?: boolean | undefined;
|
|
386
|
-
readonly radiused?: boolean | undefined;
|
|
387
|
-
readonly hoverTheme?: boolean | undefined;
|
|
388
|
-
readonly pressTheme?: boolean | undefined;
|
|
389
|
-
readonly focusTheme?: boolean | undefined;
|
|
390
|
-
readonly circular?: boolean | undefined;
|
|
391
|
-
readonly padded?: boolean | undefined;
|
|
392
|
-
readonly elevate?: boolean | undefined;
|
|
393
|
-
readonly bordered?: number | boolean | undefined;
|
|
394
|
-
readonly transparent?: boolean | undefined;
|
|
395
|
-
readonly chromeless?: boolean | "all" | undefined;
|
|
396
|
-
}, "size" | "unstyled"> & {
|
|
397
|
-
readonly unstyled?: boolean | undefined;
|
|
398
|
-
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
399
|
-
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
400
|
-
readonly fullscreen?: boolean | undefined;
|
|
401
|
-
readonly elevation?: import("@tamagui/web").SizeTokens | undefined;
|
|
402
|
-
} & {
|
|
403
|
-
readonly backgrounded?: boolean | undefined;
|
|
404
|
-
readonly radiused?: boolean | undefined;
|
|
405
|
-
readonly hoverTheme?: boolean | undefined;
|
|
406
|
-
readonly pressTheme?: boolean | undefined;
|
|
407
|
-
readonly focusTheme?: boolean | undefined;
|
|
408
|
-
readonly circular?: boolean | undefined;
|
|
409
|
-
readonly padded?: boolean | undefined;
|
|
410
|
-
readonly elevate?: boolean | undefined;
|
|
411
|
-
readonly bordered?: number | boolean | undefined;
|
|
412
|
-
readonly transparent?: boolean | undefined;
|
|
413
|
-
readonly chromeless?: boolean | "all" | undefined;
|
|
414
|
-
}, "size" | "unstyled"> & {
|
|
415
|
-
readonly unstyled?: boolean | undefined;
|
|
416
|
-
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
417
|
-
}>>, "removeClippedSubviews" | "style" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | "backgroundColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderBottomWidth" | "borderColor" | "borderEndColor" | "borderLeftColor" | "borderLeftWidth" | "borderRadius" | "borderRightColor" | "borderRightWidth" | "borderStartColor" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "borderTopWidth" | "borderWidth" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderEndWidth" | "borderStartWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "transparent" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "circular" | "backgrounded" | "radiused" | "padded" | "chromeless" | "fullscreen" | `$${string}` | `$${number}` | keyof import("@tamagui/web").TransformStyleProps | keyof {
|
|
418
|
-
pointerEvents?: "box-none" | "none" | "box-only" | "auto" | undefined;
|
|
419
|
-
cursor?: import("csstype").Property.Cursor | undefined;
|
|
420
|
-
contain?: import("csstype").Property.Contain | undefined;
|
|
421
|
-
display?: "flex" | "none" | "inherit" | "inline" | "block" | "contents" | "inline-flex" | undefined;
|
|
422
|
-
gap?: import("@tamagui/web").SpaceTokens | undefined;
|
|
423
|
-
columnGap?: import("@tamagui/web").SpaceTokens | undefined;
|
|
424
|
-
rowGap?: import("@tamagui/web").SpaceTokens | undefined;
|
|
425
|
-
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
426
|
-
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
427
|
-
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
428
|
-
outlineOffset?: import("@tamagui/web").SpaceTokens | undefined;
|
|
429
|
-
outlineWidth?: import("@tamagui/web").SpaceTokens | undefined;
|
|
430
|
-
} | keyof import("@tamagui/web").TamaguiComponentPropsBase | keyof import("@tamagui/core/types/reactNativeTypes").RNViewProps | "size" | "unstyled" | keyof import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
431
|
-
readonly fullscreen?: boolean | undefined;
|
|
432
|
-
readonly elevation?: import("@tamagui/web").SizeTokens | undefined;
|
|
433
|
-
} & {
|
|
434
|
-
readonly backgrounded?: boolean | undefined;
|
|
435
|
-
readonly radiused?: boolean | undefined;
|
|
436
|
-
readonly hoverTheme?: boolean | undefined;
|
|
437
|
-
readonly pressTheme?: boolean | undefined;
|
|
438
|
-
readonly focusTheme?: boolean | undefined;
|
|
439
|
-
readonly circular?: boolean | undefined;
|
|
440
|
-
readonly padded?: boolean | undefined;
|
|
441
|
-
readonly elevate?: boolean | undefined;
|
|
442
|
-
readonly bordered?: number | boolean | undefined;
|
|
443
|
-
readonly transparent?: boolean | undefined;
|
|
444
|
-
readonly chromeless?: boolean | "all" | undefined;
|
|
445
|
-
}, "size" | "unstyled"> & {
|
|
446
|
-
readonly unstyled?: boolean | undefined;
|
|
447
|
-
readonly size?: import("@tamagui/web").SizeTokens | undefined;
|
|
448
|
-
}>>>, TamaguiElement> & {
|
|
362
|
+
readonly size?: SizeTokens | undefined;
|
|
363
|
+
}>>, import("@tamagui/web").TamaguiElement> & {
|
|
449
364
|
staticConfig: import("@tamagui/web").StaticConfigParsed;
|
|
365
|
+
extractable: <X>(a: X, opts?: Partial<import("@tamagui/web").StaticConfig> | undefined) => X;
|
|
450
366
|
styleable: import("@tamagui/web").Styleable<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
451
367
|
readonly fullscreen?: boolean | undefined;
|
|
452
|
-
readonly elevation?:
|
|
368
|
+
readonly elevation?: SizeTokens | undefined;
|
|
453
369
|
} & {
|
|
454
370
|
readonly backgrounded?: boolean | undefined;
|
|
455
371
|
readonly radiused?: boolean | undefined;
|
|
@@ -464,10 +380,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
464
380
|
readonly chromeless?: boolean | "all" | undefined;
|
|
465
381
|
}, "size" | "unstyled"> & {
|
|
466
382
|
readonly unstyled?: boolean | undefined;
|
|
467
|
-
readonly size?:
|
|
383
|
+
readonly size?: SizeTokens | undefined;
|
|
468
384
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
469
385
|
readonly fullscreen?: boolean | undefined;
|
|
470
|
-
readonly elevation?:
|
|
386
|
+
readonly elevation?: SizeTokens | undefined;
|
|
471
387
|
} & {
|
|
472
388
|
readonly backgrounded?: boolean | undefined;
|
|
473
389
|
readonly radiused?: boolean | undefined;
|
|
@@ -482,10 +398,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
482
398
|
readonly chromeless?: boolean | "all" | undefined;
|
|
483
399
|
}, "size" | "unstyled"> & {
|
|
484
400
|
readonly unstyled?: boolean | undefined;
|
|
485
|
-
readonly size?:
|
|
401
|
+
readonly size?: SizeTokens | undefined;
|
|
486
402
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
487
403
|
readonly fullscreen?: boolean | undefined;
|
|
488
|
-
readonly elevation?:
|
|
404
|
+
readonly elevation?: SizeTokens | undefined;
|
|
489
405
|
} & {
|
|
490
406
|
readonly backgrounded?: boolean | undefined;
|
|
491
407
|
readonly radiused?: boolean | undefined;
|
|
@@ -500,12 +416,14 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
500
416
|
readonly chromeless?: boolean | "all" | undefined;
|
|
501
417
|
}, "size" | "unstyled"> & {
|
|
502
418
|
readonly unstyled?: boolean | undefined;
|
|
503
|
-
readonly size?:
|
|
504
|
-
}>>, TamaguiElement>;
|
|
419
|
+
readonly size?: SizeTokens | undefined;
|
|
420
|
+
}>>, import("@tamagui/web").TamaguiElement>;
|
|
421
|
+
} & {
|
|
422
|
+
displayName: string | undefined;
|
|
505
423
|
} & {
|
|
506
424
|
Header: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
507
425
|
readonly fullscreen?: boolean | undefined;
|
|
508
|
-
readonly elevation?:
|
|
426
|
+
readonly elevation?: SizeTokens | undefined;
|
|
509
427
|
} & {
|
|
510
428
|
readonly backgrounded?: boolean | undefined;
|
|
511
429
|
readonly radiused?: boolean | undefined;
|
|
@@ -520,10 +438,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
520
438
|
readonly chromeless?: boolean | "all" | undefined;
|
|
521
439
|
}, "size" | "unstyled"> & {
|
|
522
440
|
readonly unstyled?: boolean | undefined;
|
|
523
|
-
readonly size?:
|
|
441
|
+
readonly size?: SizeTokens | undefined;
|
|
524
442
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
525
443
|
readonly fullscreen?: boolean | undefined;
|
|
526
|
-
readonly elevation?:
|
|
444
|
+
readonly elevation?: SizeTokens | undefined;
|
|
527
445
|
} & {
|
|
528
446
|
readonly backgrounded?: boolean | undefined;
|
|
529
447
|
readonly radiused?: boolean | undefined;
|
|
@@ -538,10 +456,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
538
456
|
readonly chromeless?: boolean | "all" | undefined;
|
|
539
457
|
}, "size" | "unstyled"> & {
|
|
540
458
|
readonly unstyled?: boolean | undefined;
|
|
541
|
-
readonly size?:
|
|
459
|
+
readonly size?: SizeTokens | undefined;
|
|
542
460
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
543
461
|
readonly fullscreen?: boolean | undefined;
|
|
544
|
-
readonly elevation?:
|
|
462
|
+
readonly elevation?: SizeTokens | undefined;
|
|
545
463
|
} & {
|
|
546
464
|
readonly backgrounded?: boolean | undefined;
|
|
547
465
|
readonly radiused?: boolean | undefined;
|
|
@@ -556,10 +474,10 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
556
474
|
readonly chromeless?: boolean | "all" | undefined;
|
|
557
475
|
}, "size" | "unstyled"> & {
|
|
558
476
|
readonly unstyled?: boolean | undefined;
|
|
559
|
-
readonly size?:
|
|
560
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
477
|
+
readonly size?: SizeTokens | undefined;
|
|
478
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
561
479
|
readonly fullscreen?: boolean | undefined;
|
|
562
|
-
readonly elevation?:
|
|
480
|
+
readonly elevation?: SizeTokens | undefined;
|
|
563
481
|
} & {
|
|
564
482
|
readonly backgrounded?: boolean | undefined;
|
|
565
483
|
readonly radiused?: boolean | undefined;
|
|
@@ -574,13 +492,13 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
574
492
|
readonly chromeless?: boolean | "all" | undefined;
|
|
575
493
|
} & {
|
|
576
494
|
readonly unstyled?: boolean | undefined;
|
|
577
|
-
readonly size?:
|
|
495
|
+
readonly size?: SizeTokens | undefined;
|
|
578
496
|
}, {
|
|
579
497
|
displayName: string | undefined;
|
|
580
498
|
}>;
|
|
581
499
|
Footer: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
582
500
|
readonly fullscreen?: boolean | undefined;
|
|
583
|
-
readonly elevation?:
|
|
501
|
+
readonly elevation?: SizeTokens | undefined;
|
|
584
502
|
} & {
|
|
585
503
|
readonly backgrounded?: boolean | undefined;
|
|
586
504
|
readonly radiused?: boolean | undefined;
|
|
@@ -595,12 +513,12 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
595
513
|
readonly chromeless?: boolean | "all" | undefined;
|
|
596
514
|
} & {
|
|
597
515
|
readonly unstyled?: boolean | undefined;
|
|
598
|
-
readonly size?:
|
|
516
|
+
readonly size?: SizeTokens | undefined;
|
|
599
517
|
}, "unstyled"> & {
|
|
600
518
|
readonly unstyled?: boolean | undefined;
|
|
601
519
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
602
520
|
readonly fullscreen?: boolean | undefined;
|
|
603
|
-
readonly elevation?:
|
|
521
|
+
readonly elevation?: SizeTokens | undefined;
|
|
604
522
|
} & {
|
|
605
523
|
readonly backgrounded?: boolean | undefined;
|
|
606
524
|
readonly radiused?: boolean | undefined;
|
|
@@ -615,12 +533,12 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
615
533
|
readonly chromeless?: boolean | "all" | undefined;
|
|
616
534
|
} & {
|
|
617
535
|
readonly unstyled?: boolean | undefined;
|
|
618
|
-
readonly size?:
|
|
536
|
+
readonly size?: SizeTokens | undefined;
|
|
619
537
|
}, "unstyled"> & {
|
|
620
538
|
readonly unstyled?: boolean | undefined;
|
|
621
539
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
622
540
|
readonly fullscreen?: boolean | undefined;
|
|
623
|
-
readonly elevation?:
|
|
541
|
+
readonly elevation?: SizeTokens | undefined;
|
|
624
542
|
} & {
|
|
625
543
|
readonly backgrounded?: boolean | undefined;
|
|
626
544
|
readonly radiused?: boolean | undefined;
|
|
@@ -635,12 +553,12 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
635
553
|
readonly chromeless?: boolean | "all" | undefined;
|
|
636
554
|
} & {
|
|
637
555
|
readonly unstyled?: boolean | undefined;
|
|
638
|
-
readonly size?:
|
|
556
|
+
readonly size?: SizeTokens | undefined;
|
|
639
557
|
}, "unstyled"> & {
|
|
640
558
|
readonly unstyled?: boolean | undefined;
|
|
641
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
559
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
642
560
|
readonly fullscreen?: boolean | undefined;
|
|
643
|
-
readonly elevation?:
|
|
561
|
+
readonly elevation?: SizeTokens | undefined;
|
|
644
562
|
} & {
|
|
645
563
|
readonly backgrounded?: boolean | undefined;
|
|
646
564
|
readonly radiused?: boolean | undefined;
|
|
@@ -655,7 +573,7 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
655
573
|
readonly chromeless?: boolean | "all" | undefined;
|
|
656
574
|
} & {
|
|
657
575
|
readonly unstyled?: boolean | undefined;
|
|
658
|
-
readonly size?:
|
|
576
|
+
readonly size?: SizeTokens | undefined;
|
|
659
577
|
} & {
|
|
660
578
|
readonly unstyled?: boolean | undefined;
|
|
661
579
|
}, {
|
|
@@ -663,7 +581,7 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
663
581
|
}>;
|
|
664
582
|
Background: import("@tamagui/web").TamaguiComponent<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
665
583
|
readonly fullscreen?: boolean | undefined;
|
|
666
|
-
readonly elevation?:
|
|
584
|
+
readonly elevation?: SizeTokens | undefined;
|
|
667
585
|
} & {
|
|
668
586
|
readonly backgrounded?: boolean | undefined;
|
|
669
587
|
readonly radiused?: boolean | undefined;
|
|
@@ -680,7 +598,7 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
680
598
|
readonly unstyled?: boolean | undefined;
|
|
681
599
|
} & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
682
600
|
readonly fullscreen?: boolean | undefined;
|
|
683
|
-
readonly elevation?:
|
|
601
|
+
readonly elevation?: SizeTokens | undefined;
|
|
684
602
|
} & {
|
|
685
603
|
readonly backgrounded?: boolean | undefined;
|
|
686
604
|
readonly radiused?: boolean | undefined;
|
|
@@ -697,7 +615,7 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
697
615
|
readonly unstyled?: boolean | undefined;
|
|
698
616
|
}>> & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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<{
|
|
699
617
|
readonly fullscreen?: boolean | undefined;
|
|
700
|
-
readonly elevation?:
|
|
618
|
+
readonly elevation?: SizeTokens | undefined;
|
|
701
619
|
} & {
|
|
702
620
|
readonly backgrounded?: boolean | undefined;
|
|
703
621
|
readonly radiused?: boolean | undefined;
|
|
@@ -712,9 +630,9 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
712
630
|
readonly chromeless?: boolean | "all" | undefined;
|
|
713
631
|
}, "unstyled"> & {
|
|
714
632
|
readonly unstyled?: boolean | undefined;
|
|
715
|
-
}>>, TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
633
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native/types").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native/types").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, {
|
|
716
634
|
readonly fullscreen?: boolean | undefined;
|
|
717
|
-
readonly elevation?:
|
|
635
|
+
readonly elevation?: SizeTokens | undefined;
|
|
718
636
|
} & {
|
|
719
637
|
readonly backgrounded?: boolean | undefined;
|
|
720
638
|
readonly radiused?: boolean | undefined;
|
package/types/Card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../src/Card.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../src/Card.tsx"],"names":[],"mappings":"AACA,OAAO,EACL,QAAQ,EACR,UAAU,EAIX,MAAM,cAAc,CAAA;AAMrB,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpB,CAAA;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBrB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIf,CAAA"}
|