@tamagui/elements 2.7.7 → 3.0.0-beta.637.1
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/index.cjs +44 -48
- package/dist/cjs/index.native.cjs +72 -0
- package/dist/cjs/index.native.js +44 -44
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/esm/index.js +25 -26
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.mjs +25 -26
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/index.native.js +25 -23
- package/dist/esm/index.native.js.map +1 -1
- package/dist/jsx/index.js +25 -26
- package/dist/jsx/index.js.map +1 -1
- package/dist/jsx/index.mjs +25 -26
- package/dist/jsx/index.mjs.map +1 -1
- package/dist/jsx/index.native.cjs +72 -0
- package/dist/jsx/index.native.js +44 -44
- package/dist/jsx/index.native.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +7 -7
- package/types/index.d.ts +35 -7
- package/types/index.d.ts.map +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,74 +1,70 @@
|
|
|
1
|
+
|
|
1
2
|
var __defProp = Object.defineProperty;
|
|
2
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
6
|
var __export = (target, all) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
for (var name in all) __defProp(target, name, {
|
|
8
|
+
get: all[name],
|
|
9
|
+
enumerable: true
|
|
10
|
+
});
|
|
10
11
|
};
|
|
11
12
|
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
15
|
+
get: () => from[key],
|
|
16
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
return to;
|
|
19
20
|
};
|
|
20
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
21
|
-
value: true
|
|
22
|
-
}), mod);
|
|
21
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
23
22
|
var index_exports = {};
|
|
24
23
|
__export(index_exports, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
Article: () => Article,
|
|
25
|
+
Aside: () => Aside,
|
|
26
|
+
Footer: () => Footer,
|
|
27
|
+
Header: () => Header,
|
|
28
|
+
Main: () => Main,
|
|
29
|
+
Nav: () => Nav,
|
|
30
|
+
Section: () => Section
|
|
32
31
|
});
|
|
33
32
|
module.exports = __toCommonJS(index_exports);
|
|
34
33
|
var import_core = require("@tamagui/core");
|
|
35
34
|
const Section = (0, import_core.styled)(import_core.View, {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
35
|
+
displayName: "Section",
|
|
36
|
+
render: "section",
|
|
37
|
+
flexDirection: "column",
|
|
38
|
+
role: "region"
|
|
40
39
|
});
|
|
41
40
|
const Article = (0, import_core.styled)(import_core.View, {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
displayName: "Article",
|
|
42
|
+
render: "article",
|
|
43
|
+
flexDirection: "column"
|
|
45
44
|
});
|
|
46
45
|
const Main = (0, import_core.styled)(import_core.View, {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
46
|
+
displayName: "Main",
|
|
47
|
+
render: "main",
|
|
48
|
+
flexDirection: "column"
|
|
50
49
|
});
|
|
51
50
|
const Header = (0, import_core.styled)(import_core.View, {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
51
|
+
displayName: "Header",
|
|
52
|
+
render: "header",
|
|
53
|
+
role: "banner",
|
|
54
|
+
flexDirection: "column"
|
|
56
55
|
});
|
|
57
56
|
const Aside = (0, import_core.styled)(import_core.View, {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
// accessibilityRole: 'complementary',
|
|
57
|
+
displayName: "Aside",
|
|
58
|
+
render: "aside",
|
|
59
|
+
flexDirection: "column"
|
|
62
60
|
});
|
|
63
61
|
const Footer = (0, import_core.styled)(import_core.View, {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
// accessibilityRole: 'contentinfo',
|
|
62
|
+
displayName: "Footer",
|
|
63
|
+
render: "footer",
|
|
64
|
+
flexDirection: "column"
|
|
68
65
|
});
|
|
69
66
|
const Nav = (0, import_core.styled)(import_core.View, {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
});
|
|
67
|
+
displayName: "Nav",
|
|
68
|
+
render: "nav",
|
|
69
|
+
flexDirection: "column"
|
|
70
|
+
});
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all) __defProp(target, name, {
|
|
10
|
+
get: all[name],
|
|
11
|
+
enumerable: true
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
var __copyProps = (to, from, except, desc) => {
|
|
15
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
16
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
22
|
+
};
|
|
23
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
24
|
+
var index_exports = {};
|
|
25
|
+
__export(index_exports, {
|
|
26
|
+
Article: () => Article,
|
|
27
|
+
Aside: () => Aside,
|
|
28
|
+
Footer: () => Footer,
|
|
29
|
+
Header: () => Header,
|
|
30
|
+
Main: () => Main,
|
|
31
|
+
Nav: () => Nav,
|
|
32
|
+
Section: () => Section
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(index_exports);
|
|
35
|
+
var import_core = require("@tamagui/core");
|
|
36
|
+
var Section = (0, import_core.styled)(import_core.View, {
|
|
37
|
+
displayName: "Section",
|
|
38
|
+
render: "section",
|
|
39
|
+
flexDirection: "column",
|
|
40
|
+
role: "region"
|
|
41
|
+
});
|
|
42
|
+
var Article = (0, import_core.styled)(import_core.View, {
|
|
43
|
+
displayName: "Article",
|
|
44
|
+
render: "article",
|
|
45
|
+
flexDirection: "column"
|
|
46
|
+
});
|
|
47
|
+
var Main = (0, import_core.styled)(import_core.View, {
|
|
48
|
+
displayName: "Main",
|
|
49
|
+
render: "main",
|
|
50
|
+
flexDirection: "column"
|
|
51
|
+
});
|
|
52
|
+
var Header = (0, import_core.styled)(import_core.View, {
|
|
53
|
+
displayName: "Header",
|
|
54
|
+
render: "header",
|
|
55
|
+
role: "banner",
|
|
56
|
+
flexDirection: "column"
|
|
57
|
+
});
|
|
58
|
+
var Aside = (0, import_core.styled)(import_core.View, {
|
|
59
|
+
displayName: "Aside",
|
|
60
|
+
render: "aside",
|
|
61
|
+
flexDirection: "column"
|
|
62
|
+
});
|
|
63
|
+
var Footer = (0, import_core.styled)(import_core.View, {
|
|
64
|
+
displayName: "Footer",
|
|
65
|
+
render: "footer",
|
|
66
|
+
flexDirection: "column"
|
|
67
|
+
});
|
|
68
|
+
var Nav = (0, import_core.styled)(import_core.View, {
|
|
69
|
+
displayName: "Nav",
|
|
70
|
+
render: "nav",
|
|
71
|
+
flexDirection: "column"
|
|
72
|
+
});
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
8
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
for (var name in all) __defProp(target, name, {
|
|
10
|
+
get: all[name],
|
|
11
|
+
enumerable: true
|
|
12
|
+
});
|
|
12
13
|
};
|
|
13
14
|
var __copyProps = (to, from, except, desc) => {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
16
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
21
22
|
};
|
|
22
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
23
|
-
value: true
|
|
24
|
-
}), mod);
|
|
23
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
25
24
|
var index_exports = {};
|
|
26
25
|
__export(index_exports, {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
26
|
+
Article: () => Article,
|
|
27
|
+
Aside: () => Aside,
|
|
28
|
+
Footer: () => Footer,
|
|
29
|
+
Header: () => Header,
|
|
30
|
+
Main: () => Main,
|
|
31
|
+
Nav: () => Nav,
|
|
32
|
+
Section: () => Section
|
|
34
33
|
});
|
|
35
34
|
module.exports = __toCommonJS(index_exports);
|
|
36
35
|
var import_core = require("@tamagui/core");
|
|
37
36
|
var Section = (0, import_core.styled)(import_core.View, {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
37
|
+
displayName: "Section",
|
|
38
|
+
render: "section",
|
|
39
|
+
flexDirection: "column",
|
|
40
|
+
role: "region"
|
|
42
41
|
});
|
|
43
42
|
var Article = (0, import_core.styled)(import_core.View, {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
displayName: "Article",
|
|
44
|
+
render: "article",
|
|
45
|
+
flexDirection: "column"
|
|
47
46
|
});
|
|
48
47
|
var Main = (0, import_core.styled)(import_core.View, {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
displayName: "Main",
|
|
49
|
+
render: "main",
|
|
50
|
+
flexDirection: "column"
|
|
52
51
|
});
|
|
53
52
|
var Header = (0, import_core.styled)(import_core.View, {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
displayName: "Header",
|
|
54
|
+
render: "header",
|
|
55
|
+
role: "banner",
|
|
56
|
+
flexDirection: "column"
|
|
58
57
|
});
|
|
59
58
|
var Aside = (0, import_core.styled)(import_core.View, {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
59
|
+
displayName: "Aside",
|
|
60
|
+
render: "aside",
|
|
61
|
+
flexDirection: "column"
|
|
63
62
|
});
|
|
64
63
|
var Footer = (0, import_core.styled)(import_core.View, {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
displayName: "Footer",
|
|
65
|
+
render: "footer",
|
|
66
|
+
flexDirection: "column"
|
|
68
67
|
});
|
|
69
68
|
var Nav = (0, import_core.styled)(import_core.View, {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
displayName: "Nav",
|
|
70
|
+
render: "nav",
|
|
71
|
+
flexDirection: "column"
|
|
73
72
|
});
|
|
73
|
+
|
|
74
74
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.native.js","names":[],"sources":["cjs/index.native.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar index_exports = {};\n__export(index_exports, {\n Article: () => Article,\n Aside: () => Aside,\n Footer: () => Footer,\n Header: () => Header,\n Main: () => Main,\n Nav: () => Nav,\n Section: () => Section\n});\nmodule.exports = __toCommonJS(index_exports);\nvar import_core = require(\"@tamagui/core\");\nvar Section = (0, import_core.styled)(import_core.View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nvar Article = (0, import_core.styled)(import_core.View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nvar Main = (0, import_core.styled)(import_core.View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nvar Header = (0, import_core.styled)(import_core.View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nvar Aside = (0, import_core.styled)(import_core.View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n});\nvar Footer = (0, import_core.styled)(import_core.View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n});\nvar Nav = (0, import_core.styled)(import_core.View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n});\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;AACA,IAAI,YAAY,OAAO;AACvB,IAAI,mBAAmB,OAAO;AAC9B,IAAI,oBAAoB,OAAO;AAC/B,IAAI,eAAe,OAAO,UAAU;AACpC,IAAI,YAAY,QAAQ,QAAQ;CAC9B,KAAK,IAAI,QAAQ,KACf,UAAU,QAAQ,MAAM;EAAE,KAAK,IAAI;EAAO,YAAY;CAAK,CAAC;AAChE;AACA,IAAI,eAAe,IAAI,MAAM,QAAQ,SAAS;CAC5C,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;EAClE,KAAK,IAAI,OAAO,kBAAkB,IAAI,GACpC,IAAI,CAAC,aAAa,KAAK,IAAI,GAAG,KAAK,QAAQ,QACzC,UAAU,IAAI,KAAK;GAAE,WAAW,KAAK;GAAM,YAAY,EAAE,OAAO,iBAAiB,MAAM,GAAG,MAAM,KAAK;EAAW,CAAC;CACvH;CACA,OAAO;AACT;AACA,IAAI,gBAAgB,QAAQ,YAAY,UAAU,CAAC,GAAG,cAAc,EAAE,OAAO,KAAK,CAAC,GAAG,GAAG;AACzF,IAAI,gBAAgB,CAAC;AACrB,SAAS,eAAe;CACtB,eAAe;CACf,aAAa;CACb,cAAc;CACd,cAAc;CACd,YAAY;CACZ,WAAW;CACX,eAAe;AACjB,CAAC;AACD,OAAO,UAAU,aAAa,aAAa;AAC3C,IAAI,cAAc,QAAQ,eAAe;AACzC,IAAI,WAAW,GAAG,YAAY,QAAQ,YAAY,MAAM;CACtD,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,IAAI,WAAW,GAAG,YAAY,QAAQ,YAAY,MAAM;CACtD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,QAAQ,GAAG,YAAY,QAAQ,YAAY,MAAM;CACnD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,UAAU,GAAG,YAAY,QAAQ,YAAY,MAAM;CACrD,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,IAAI,SAAS,GAAG,YAAY,QAAQ,YAAY,MAAM;CACpD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,UAAU,GAAG,YAAY,QAAQ,YAAY,MAAM;CACrD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,OAAO,GAAG,YAAY,QAAQ,YAAY,MAAM;CAClD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC"}
|
package/dist/esm/index.js
CHANGED
|
@@ -1,43 +1,42 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
+
|
|
2
3
|
const Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
displayName: "Section",
|
|
5
|
+
render: "section",
|
|
6
|
+
flexDirection: "column",
|
|
7
|
+
role: "region"
|
|
7
8
|
});
|
|
8
9
|
const Article = styled(View, {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
displayName: "Article",
|
|
11
|
+
render: "article",
|
|
12
|
+
flexDirection: "column"
|
|
12
13
|
});
|
|
13
14
|
const Main = styled(View, {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
displayName: "Main",
|
|
16
|
+
render: "main",
|
|
17
|
+
flexDirection: "column"
|
|
17
18
|
});
|
|
18
19
|
const Header = styled(View, {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
displayName: "Header",
|
|
21
|
+
render: "header",
|
|
22
|
+
role: "banner",
|
|
23
|
+
flexDirection: "column"
|
|
23
24
|
});
|
|
24
25
|
const Aside = styled(View, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
// accessibilityRole: 'complementary',
|
|
26
|
+
displayName: "Aside",
|
|
27
|
+
render: "aside",
|
|
28
|
+
flexDirection: "column"
|
|
29
29
|
});
|
|
30
30
|
const Footer = styled(View, {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// accessibilityRole: 'contentinfo',
|
|
31
|
+
displayName: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
35
34
|
});
|
|
36
35
|
const Nav = styled(View, {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// accessibilityRole: 'navigation',
|
|
36
|
+
displayName: "Nav",
|
|
37
|
+
render: "nav",
|
|
38
|
+
flexDirection: "column"
|
|
41
39
|
});
|
|
40
|
+
|
|
42
41
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
43
42
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["import { View, styled } from \"@tamagui/core\";\nconst Section = styled(View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nconst Article = styled(View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nconst Main = styled(View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nconst Header = styled(View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nconst Aside = styled(View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n // accessibilityRole: 'complementary',\n});\nconst Footer = styled(View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n // accessibilityRole: 'contentinfo',\n});\nconst Nav = styled(View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n // accessibilityRole: 'navigation',\n});\nexport {\n Article,\n Aside,\n Footer,\n Header,\n Main,\n Nav,\n Section\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,OAAO,OAAO,MAAM;CACxB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,MAAM,QAAQ,OAAO,MAAM;CACzB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,MAAM,OAAO,MAAM;CACvB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC"}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,43 +1,42 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
+
|
|
2
3
|
const Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
displayName: "Section",
|
|
5
|
+
render: "section",
|
|
6
|
+
flexDirection: "column",
|
|
7
|
+
role: "region"
|
|
7
8
|
});
|
|
8
9
|
const Article = styled(View, {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
displayName: "Article",
|
|
11
|
+
render: "article",
|
|
12
|
+
flexDirection: "column"
|
|
12
13
|
});
|
|
13
14
|
const Main = styled(View, {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
displayName: "Main",
|
|
16
|
+
render: "main",
|
|
17
|
+
flexDirection: "column"
|
|
17
18
|
});
|
|
18
19
|
const Header = styled(View, {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
displayName: "Header",
|
|
21
|
+
render: "header",
|
|
22
|
+
role: "banner",
|
|
23
|
+
flexDirection: "column"
|
|
23
24
|
});
|
|
24
25
|
const Aside = styled(View, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
// accessibilityRole: 'complementary',
|
|
26
|
+
displayName: "Aside",
|
|
27
|
+
render: "aside",
|
|
28
|
+
flexDirection: "column"
|
|
29
29
|
});
|
|
30
30
|
const Footer = styled(View, {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// accessibilityRole: 'contentinfo',
|
|
31
|
+
displayName: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
35
34
|
});
|
|
36
35
|
const Nav = styled(View, {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// accessibilityRole: 'navigation',
|
|
36
|
+
displayName: "Nav",
|
|
37
|
+
render: "nav",
|
|
38
|
+
flexDirection: "column"
|
|
41
39
|
});
|
|
40
|
+
|
|
42
41
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
43
42
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["esm/index.js"],"sourcesContent":["import { View, styled } from \"@tamagui/core\";\nconst Section = styled(View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nconst Article = styled(View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nconst Main = styled(View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nconst Header = styled(View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nconst Aside = styled(View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n // accessibilityRole: 'complementary',\n});\nconst Footer = styled(View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n // accessibilityRole: 'contentinfo',\n});\nconst Nav = styled(View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n // accessibilityRole: 'navigation',\n});\nexport {\n Article,\n Aside,\n Footer,\n Header,\n Main,\n Nav,\n Section\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,OAAO,OAAO,MAAM;CACxB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,MAAM,QAAQ,OAAO,MAAM;CACzB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,MAAM,OAAO,MAAM;CACvB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC"}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,40 +1,42 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
+
|
|
2
3
|
var Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
displayName: "Section",
|
|
5
|
+
render: "section",
|
|
6
|
+
flexDirection: "column",
|
|
7
|
+
role: "region"
|
|
7
8
|
});
|
|
8
9
|
var Article = styled(View, {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
displayName: "Article",
|
|
11
|
+
render: "article",
|
|
12
|
+
flexDirection: "column"
|
|
12
13
|
});
|
|
13
14
|
var Main = styled(View, {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
displayName: "Main",
|
|
16
|
+
render: "main",
|
|
17
|
+
flexDirection: "column"
|
|
17
18
|
});
|
|
18
19
|
var Header = styled(View, {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
displayName: "Header",
|
|
21
|
+
render: "header",
|
|
22
|
+
role: "banner",
|
|
23
|
+
flexDirection: "column"
|
|
23
24
|
});
|
|
24
25
|
var Aside = styled(View, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
26
|
+
displayName: "Aside",
|
|
27
|
+
render: "aside",
|
|
28
|
+
flexDirection: "column"
|
|
28
29
|
});
|
|
29
30
|
var Footer = styled(View, {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
displayName: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
33
34
|
});
|
|
34
35
|
var Nav = styled(View, {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
displayName: "Nav",
|
|
37
|
+
render: "nav",
|
|
38
|
+
flexDirection: "column"
|
|
38
39
|
});
|
|
40
|
+
|
|
39
41
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
40
42
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"file":"index.native.js","names":[],"sources":["esm/index.native.js"],"sourcesContent":["import { View, styled } from \"@tamagui/core\";\nvar Section = styled(View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nvar Article = styled(View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nvar Main = styled(View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nvar Header = styled(View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nvar Aside = styled(View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n});\nvar Footer = styled(View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n});\nvar Nav = styled(View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n});\nexport {\n Article,\n Aside,\n Footer,\n Header,\n Main,\n Nav,\n Section\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,IAAI,UAAU,OAAO,MAAM;CACzB,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,IAAI,UAAU,OAAO,MAAM;CACzB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,OAAO,OAAO,MAAM;CACtB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,SAAS,OAAO,MAAM;CACxB,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,IAAI,QAAQ,OAAO,MAAM;CACvB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,SAAS,OAAO,MAAM;CACxB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,MAAM,OAAO,MAAM;CACrB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC"}
|
package/dist/jsx/index.js
CHANGED
|
@@ -1,43 +1,42 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
+
|
|
2
3
|
const Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
displayName: "Section",
|
|
5
|
+
render: "section",
|
|
6
|
+
flexDirection: "column",
|
|
7
|
+
role: "region"
|
|
7
8
|
});
|
|
8
9
|
const Article = styled(View, {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
displayName: "Article",
|
|
11
|
+
render: "article",
|
|
12
|
+
flexDirection: "column"
|
|
12
13
|
});
|
|
13
14
|
const Main = styled(View, {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
displayName: "Main",
|
|
16
|
+
render: "main",
|
|
17
|
+
flexDirection: "column"
|
|
17
18
|
});
|
|
18
19
|
const Header = styled(View, {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
displayName: "Header",
|
|
21
|
+
render: "header",
|
|
22
|
+
role: "banner",
|
|
23
|
+
flexDirection: "column"
|
|
23
24
|
});
|
|
24
25
|
const Aside = styled(View, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
// accessibilityRole: 'complementary',
|
|
26
|
+
displayName: "Aside",
|
|
27
|
+
render: "aside",
|
|
28
|
+
flexDirection: "column"
|
|
29
29
|
});
|
|
30
30
|
const Footer = styled(View, {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// accessibilityRole: 'contentinfo',
|
|
31
|
+
displayName: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
35
34
|
});
|
|
36
35
|
const Nav = styled(View, {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// accessibilityRole: 'navigation',
|
|
36
|
+
displayName: "Nav",
|
|
37
|
+
render: "nav",
|
|
38
|
+
flexDirection: "column"
|
|
41
39
|
});
|
|
40
|
+
|
|
42
41
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
43
42
|
//# sourceMappingURL=index.js.map
|
package/dist/jsx/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["jsx/index.js"],"sourcesContent":["import { View, styled } from \"@tamagui/core\";\nconst Section = styled(View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nconst Article = styled(View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nconst Main = styled(View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nconst Header = styled(View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nconst Aside = styled(View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n // accessibilityRole: 'complementary',\n});\nconst Footer = styled(View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n // accessibilityRole: 'contentinfo',\n});\nconst Nav = styled(View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n // accessibilityRole: 'navigation',\n});\nexport {\n Article,\n Aside,\n Footer,\n Header,\n Main,\n Nav,\n Section\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,OAAO,OAAO,MAAM;CACxB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,MAAM,QAAQ,OAAO,MAAM;CACzB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,MAAM,OAAO,MAAM;CACvB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC"}
|
package/dist/jsx/index.mjs
CHANGED
|
@@ -1,43 +1,42 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
+
|
|
2
3
|
const Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
displayName: "Section",
|
|
5
|
+
render: "section",
|
|
6
|
+
flexDirection: "column",
|
|
7
|
+
role: "region"
|
|
7
8
|
});
|
|
8
9
|
const Article = styled(View, {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
displayName: "Article",
|
|
11
|
+
render: "article",
|
|
12
|
+
flexDirection: "column"
|
|
12
13
|
});
|
|
13
14
|
const Main = styled(View, {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
displayName: "Main",
|
|
16
|
+
render: "main",
|
|
17
|
+
flexDirection: "column"
|
|
17
18
|
});
|
|
18
19
|
const Header = styled(View, {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
displayName: "Header",
|
|
21
|
+
render: "header",
|
|
22
|
+
role: "banner",
|
|
23
|
+
flexDirection: "column"
|
|
23
24
|
});
|
|
24
25
|
const Aside = styled(View, {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
// accessibilityRole: 'complementary',
|
|
26
|
+
displayName: "Aside",
|
|
27
|
+
render: "aside",
|
|
28
|
+
flexDirection: "column"
|
|
29
29
|
});
|
|
30
30
|
const Footer = styled(View, {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
// accessibilityRole: 'contentinfo',
|
|
31
|
+
displayName: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
35
34
|
});
|
|
36
35
|
const Nav = styled(View, {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// accessibilityRole: 'navigation',
|
|
36
|
+
displayName: "Nav",
|
|
37
|
+
render: "nav",
|
|
38
|
+
flexDirection: "column"
|
|
41
39
|
});
|
|
40
|
+
|
|
42
41
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
43
42
|
//# sourceMappingURL=index.mjs.map
|
package/dist/jsx/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["jsx/index.js"],"sourcesContent":["import { View, styled } from \"@tamagui/core\";\nconst Section = styled(View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nconst Article = styled(View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nconst Main = styled(View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nconst Header = styled(View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nconst Aside = styled(View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n // accessibilityRole: 'complementary',\n});\nconst Footer = styled(View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n // accessibilityRole: 'contentinfo',\n});\nconst Nav = styled(View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n // accessibilityRole: 'navigation',\n});\nexport {\n Article,\n Aside,\n Footer,\n Header,\n Main,\n Nav,\n Section\n};\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;AACA,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,MAAM,UAAU,OAAO,MAAM;CAC3B,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,OAAO,OAAO,MAAM;CACxB,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,MAAM,QAAQ,OAAO,MAAM;CACzB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,SAAS,OAAO,MAAM;CAC1B,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC;AACD,MAAM,MAAM,OAAO,MAAM;CACvB,aAAa;CACb,QAAQ;CACR,eAAe;AAEjB,CAAC"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all) __defProp(target, name, {
|
|
10
|
+
get: all[name],
|
|
11
|
+
enumerable: true
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
var __copyProps = (to, from, except, desc) => {
|
|
15
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
16
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
22
|
+
};
|
|
23
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
24
|
+
var index_exports = {};
|
|
25
|
+
__export(index_exports, {
|
|
26
|
+
Article: () => Article,
|
|
27
|
+
Aside: () => Aside,
|
|
28
|
+
Footer: () => Footer,
|
|
29
|
+
Header: () => Header,
|
|
30
|
+
Main: () => Main,
|
|
31
|
+
Nav: () => Nav,
|
|
32
|
+
Section: () => Section
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(index_exports);
|
|
35
|
+
var import_core = require("@tamagui/core");
|
|
36
|
+
var Section = (0, import_core.styled)(import_core.View, {
|
|
37
|
+
displayName: "Section",
|
|
38
|
+
render: "section",
|
|
39
|
+
flexDirection: "column",
|
|
40
|
+
role: "region"
|
|
41
|
+
});
|
|
42
|
+
var Article = (0, import_core.styled)(import_core.View, {
|
|
43
|
+
displayName: "Article",
|
|
44
|
+
render: "article",
|
|
45
|
+
flexDirection: "column"
|
|
46
|
+
});
|
|
47
|
+
var Main = (0, import_core.styled)(import_core.View, {
|
|
48
|
+
displayName: "Main",
|
|
49
|
+
render: "main",
|
|
50
|
+
flexDirection: "column"
|
|
51
|
+
});
|
|
52
|
+
var Header = (0, import_core.styled)(import_core.View, {
|
|
53
|
+
displayName: "Header",
|
|
54
|
+
render: "header",
|
|
55
|
+
role: "banner",
|
|
56
|
+
flexDirection: "column"
|
|
57
|
+
});
|
|
58
|
+
var Aside = (0, import_core.styled)(import_core.View, {
|
|
59
|
+
displayName: "Aside",
|
|
60
|
+
render: "aside",
|
|
61
|
+
flexDirection: "column"
|
|
62
|
+
});
|
|
63
|
+
var Footer = (0, import_core.styled)(import_core.View, {
|
|
64
|
+
displayName: "Footer",
|
|
65
|
+
render: "footer",
|
|
66
|
+
flexDirection: "column"
|
|
67
|
+
});
|
|
68
|
+
var Nav = (0, import_core.styled)(import_core.View, {
|
|
69
|
+
displayName: "Nav",
|
|
70
|
+
render: "nav",
|
|
71
|
+
flexDirection: "column"
|
|
72
|
+
});
|
package/dist/jsx/index.native.js
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
8
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
for (var name in all) __defProp(target, name, {
|
|
10
|
+
get: all[name],
|
|
11
|
+
enumerable: true
|
|
12
|
+
});
|
|
12
13
|
};
|
|
13
14
|
var __copyProps = (to, from, except, desc) => {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
15
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
16
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
17
|
+
get: () => from[key],
|
|
18
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
return to;
|
|
21
22
|
};
|
|
22
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
23
|
-
value: true
|
|
24
|
-
}), mod);
|
|
23
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
25
24
|
var index_exports = {};
|
|
26
25
|
__export(index_exports, {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
26
|
+
Article: () => Article,
|
|
27
|
+
Aside: () => Aside,
|
|
28
|
+
Footer: () => Footer,
|
|
29
|
+
Header: () => Header,
|
|
30
|
+
Main: () => Main,
|
|
31
|
+
Nav: () => Nav,
|
|
32
|
+
Section: () => Section
|
|
34
33
|
});
|
|
35
34
|
module.exports = __toCommonJS(index_exports);
|
|
36
35
|
var import_core = require("@tamagui/core");
|
|
37
36
|
var Section = (0, import_core.styled)(import_core.View, {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
37
|
+
displayName: "Section",
|
|
38
|
+
render: "section",
|
|
39
|
+
flexDirection: "column",
|
|
40
|
+
role: "region"
|
|
42
41
|
});
|
|
43
42
|
var Article = (0, import_core.styled)(import_core.View, {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
displayName: "Article",
|
|
44
|
+
render: "article",
|
|
45
|
+
flexDirection: "column"
|
|
47
46
|
});
|
|
48
47
|
var Main = (0, import_core.styled)(import_core.View, {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
displayName: "Main",
|
|
49
|
+
render: "main",
|
|
50
|
+
flexDirection: "column"
|
|
52
51
|
});
|
|
53
52
|
var Header = (0, import_core.styled)(import_core.View, {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
displayName: "Header",
|
|
54
|
+
render: "header",
|
|
55
|
+
role: "banner",
|
|
56
|
+
flexDirection: "column"
|
|
58
57
|
});
|
|
59
58
|
var Aside = (0, import_core.styled)(import_core.View, {
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
59
|
+
displayName: "Aside",
|
|
60
|
+
render: "aside",
|
|
61
|
+
flexDirection: "column"
|
|
63
62
|
});
|
|
64
63
|
var Footer = (0, import_core.styled)(import_core.View, {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
displayName: "Footer",
|
|
65
|
+
render: "footer",
|
|
66
|
+
flexDirection: "column"
|
|
68
67
|
});
|
|
69
68
|
var Nav = (0, import_core.styled)(import_core.View, {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
69
|
+
displayName: "Nav",
|
|
70
|
+
render: "nav",
|
|
71
|
+
flexDirection: "column"
|
|
73
72
|
});
|
|
73
|
+
|
|
74
74
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.native.js","names":[],"sources":["jsx/index.native.js"],"sourcesContent":["\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar index_exports = {};\n__export(index_exports, {\n Article: () => Article,\n Aside: () => Aside,\n Footer: () => Footer,\n Header: () => Header,\n Main: () => Main,\n Nav: () => Nav,\n Section: () => Section\n});\nmodule.exports = __toCommonJS(index_exports);\nvar import_core = require(\"@tamagui/core\");\nvar Section = (0, import_core.styled)(import_core.View, {\n displayName: \"Section\",\n render: \"section\",\n flexDirection: \"column\",\n role: \"region\"\n});\nvar Article = (0, import_core.styled)(import_core.View, {\n displayName: \"Article\",\n render: \"article\",\n flexDirection: \"column\"\n});\nvar Main = (0, import_core.styled)(import_core.View, {\n displayName: \"Main\",\n render: \"main\",\n flexDirection: \"column\"\n});\nvar Header = (0, import_core.styled)(import_core.View, {\n displayName: \"Header\",\n render: \"header\",\n role: \"banner\",\n flexDirection: \"column\"\n});\nvar Aside = (0, import_core.styled)(import_core.View, {\n displayName: \"Aside\",\n render: \"aside\",\n flexDirection: \"column\"\n});\nvar Footer = (0, import_core.styled)(import_core.View, {\n displayName: \"Footer\",\n render: \"footer\",\n flexDirection: \"column\"\n});\nvar Nav = (0, import_core.styled)(import_core.View, {\n displayName: \"Nav\",\n render: \"nav\",\n flexDirection: \"column\"\n});\n//# sourceMappingURL=index.js.map\n"],"mappings":";;;;AACA,IAAI,YAAY,OAAO;AACvB,IAAI,mBAAmB,OAAO;AAC9B,IAAI,oBAAoB,OAAO;AAC/B,IAAI,eAAe,OAAO,UAAU;AACpC,IAAI,YAAY,QAAQ,QAAQ;CAC9B,KAAK,IAAI,QAAQ,KACf,UAAU,QAAQ,MAAM;EAAE,KAAK,IAAI;EAAO,YAAY;CAAK,CAAC;AAChE;AACA,IAAI,eAAe,IAAI,MAAM,QAAQ,SAAS;CAC5C,IAAI,QAAQ,OAAO,SAAS,YAAY,OAAO,SAAS,YAAY;EAClE,KAAK,IAAI,OAAO,kBAAkB,IAAI,GACpC,IAAI,CAAC,aAAa,KAAK,IAAI,GAAG,KAAK,QAAQ,QACzC,UAAU,IAAI,KAAK;GAAE,WAAW,KAAK;GAAM,YAAY,EAAE,OAAO,iBAAiB,MAAM,GAAG,MAAM,KAAK;EAAW,CAAC;CACvH;CACA,OAAO;AACT;AACA,IAAI,gBAAgB,QAAQ,YAAY,UAAU,CAAC,GAAG,cAAc,EAAE,OAAO,KAAK,CAAC,GAAG,GAAG;AACzF,IAAI,gBAAgB,CAAC;AACrB,SAAS,eAAe;CACtB,eAAe;CACf,aAAa;CACb,cAAc;CACd,cAAc;CACd,YAAY;CACZ,WAAW;CACX,eAAe;AACjB,CAAC;AACD,OAAO,UAAU,aAAa,aAAa;AAC3C,IAAI,cAAc,QAAQ,eAAe;AACzC,IAAI,WAAW,GAAG,YAAY,QAAQ,YAAY,MAAM;CACtD,aAAa;CACb,QAAQ;CACR,eAAe;CACf,MAAM;AACR,CAAC;AACD,IAAI,WAAW,GAAG,YAAY,QAAQ,YAAY,MAAM;CACtD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,QAAQ,GAAG,YAAY,QAAQ,YAAY,MAAM;CACnD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,UAAU,GAAG,YAAY,QAAQ,YAAY,MAAM;CACrD,aAAa;CACb,QAAQ;CACR,MAAM;CACN,eAAe;AACjB,CAAC;AACD,IAAI,SAAS,GAAG,YAAY,QAAQ,YAAY,MAAM;CACpD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,UAAU,GAAG,YAAY,QAAQ,YAAY,MAAM;CACrD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC;AACD,IAAI,OAAO,GAAG,YAAY,QAAQ,YAAY,MAAM;CAClD,aAAa;CACb,QAAQ;CACR,eAAe;AACjB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/elements",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.637.1",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"src",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"clean:build": "tamagui-build clean:build"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@tamagui/core": "
|
|
37
|
+
"@tamagui/core": "3.0.0-beta.637.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@tamagui/build": "
|
|
40
|
+
"@tamagui/build": "3.0.0-beta.637.1",
|
|
41
41
|
"react": ">=19"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
import { View, styled } from '@tamagui/core'
|
|
2
2
|
|
|
3
3
|
export const Section = styled(View, {
|
|
4
|
-
|
|
4
|
+
displayName: 'Section',
|
|
5
5
|
render: 'section',
|
|
6
6
|
flexDirection: 'column',
|
|
7
7
|
role: 'region',
|
|
8
8
|
})
|
|
9
9
|
|
|
10
10
|
export const Article = styled(View, {
|
|
11
|
-
|
|
11
|
+
displayName: 'Article',
|
|
12
12
|
render: 'article',
|
|
13
13
|
flexDirection: 'column',
|
|
14
14
|
})
|
|
15
15
|
|
|
16
16
|
export const Main = styled(View, {
|
|
17
|
-
|
|
17
|
+
displayName: 'Main',
|
|
18
18
|
render: 'main',
|
|
19
19
|
flexDirection: 'column',
|
|
20
20
|
})
|
|
21
21
|
|
|
22
22
|
export const Header = styled(View, {
|
|
23
|
-
|
|
23
|
+
displayName: 'Header',
|
|
24
24
|
render: 'header',
|
|
25
25
|
role: 'banner',
|
|
26
26
|
flexDirection: 'column',
|
|
27
27
|
})
|
|
28
28
|
|
|
29
29
|
export const Aside = styled(View, {
|
|
30
|
-
|
|
30
|
+
displayName: 'Aside',
|
|
31
31
|
render: 'aside',
|
|
32
32
|
flexDirection: 'column',
|
|
33
33
|
// accessibilityRole: 'complementary',
|
|
34
34
|
})
|
|
35
35
|
|
|
36
36
|
export const Footer = styled(View, {
|
|
37
|
-
|
|
37
|
+
displayName: 'Footer',
|
|
38
38
|
render: 'footer',
|
|
39
39
|
flexDirection: 'column',
|
|
40
40
|
// accessibilityRole: 'contentinfo',
|
|
41
41
|
})
|
|
42
42
|
|
|
43
43
|
export const Nav = styled(View, {
|
|
44
|
-
|
|
44
|
+
displayName: 'Nav',
|
|
45
45
|
render: 'nav',
|
|
46
46
|
flexDirection: 'column',
|
|
47
47
|
// accessibilityRole: 'navigation',
|
package/types/index.d.ts
CHANGED
|
@@ -1,8 +1,36 @@
|
|
|
1
|
-
export declare const Section: import("
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
1
|
+
export declare const Section: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
2
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
3
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
4
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
5
|
+
};
|
|
6
|
+
export declare const Article: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
7
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
8
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
9
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
10
|
+
};
|
|
11
|
+
export declare const Main: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
12
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
13
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
14
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
15
|
+
};
|
|
16
|
+
export declare const Header: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
17
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
18
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
19
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
20
|
+
};
|
|
21
|
+
export declare const Aside: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
22
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
23
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
24
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
25
|
+
};
|
|
26
|
+
export declare const Footer: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
27
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
28
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
29
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
30
|
+
};
|
|
31
|
+
export declare const Nav: import("react").FunctionComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & {
|
|
32
|
+
ref?: import("react").Ref<import("@tamagui/core").TamaguiElement> | undefined;
|
|
33
|
+
}> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig"> & {
|
|
34
|
+
__tama: [import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic];
|
|
35
|
+
};
|
|
8
36
|
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;;;;CAKlB,CAAA;AAEF,eAAO,MAAM,OAAO;;;;CAIlB,CAAA;AAEF,eAAO,MAAM,IAAI;;;;CAIf,CAAA;AAEF,eAAO,MAAM,MAAM;;;;CAKjB,CAAA;AAEF,eAAO,MAAM,KAAK;;;;CAKhB,CAAA;AAEF,eAAO,MAAM,MAAM;;;;CAKjB,CAAA;AAEF,eAAO,MAAM,GAAG;;;;CAKd,CAAA"}
|