@tamagui/elements 2.0.0-rc.4 → 2.0.0-rc.40
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 +51 -49
- package/dist/cjs/index.native.js +50 -48
- package/dist/cjs/index.native.js.map +1 -1
- package/dist/esm/index.js +13 -15
- package/dist/esm/index.js.map +1 -6
- package/dist/esm/index.mjs +39 -39
- package/dist/esm/index.mjs.map +1 -1
- package/dist/esm/index.native.js +36 -36
- package/dist/esm/index.native.js.map +1 -1
- package/dist/jsx/index.js +13 -15
- package/dist/jsx/index.js.map +1 -6
- package/dist/jsx/index.mjs +39 -39
- package/dist/jsx/index.mjs.map +1 -1
- package/dist/jsx/index.native.js +50 -48
- package/dist/jsx/index.native.js.map +1 -1
- package/package.json +6 -9
- package/dist/cjs/index.js +0 -61
- package/dist/cjs/index.js.map +0 -6
package/dist/cjs/index.cjs
CHANGED
|
@@ -3,20 +3,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
5
|
var __export = (target, all) => {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
for (var name in all) __defProp(target, name, {
|
|
7
|
+
get: all[name],
|
|
8
|
+
enumerable: true
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
14
|
get: () => from[key],
|
|
14
15
|
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
16
|
});
|
|
16
|
-
|
|
17
|
-
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
18
20
|
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
19
|
-
value:
|
|
21
|
+
value: true
|
|
20
22
|
}), mod);
|
|
21
23
|
var index_exports = {};
|
|
22
24
|
__export(index_exports, {
|
|
@@ -31,42 +33,42 @@ __export(index_exports, {
|
|
|
31
33
|
module.exports = __toCommonJS(index_exports);
|
|
32
34
|
var import_core = require("@tamagui/core");
|
|
33
35
|
const Section = (0, import_core.styled)(import_core.View, {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
36
|
+
name: "Section",
|
|
37
|
+
render: "section",
|
|
38
|
+
flexDirection: "column",
|
|
39
|
+
role: "region"
|
|
40
|
+
});
|
|
41
|
+
const Article = (0, import_core.styled)(import_core.View, {
|
|
42
|
+
name: "Article",
|
|
43
|
+
render: "article",
|
|
44
|
+
flexDirection: "column"
|
|
45
|
+
});
|
|
46
|
+
const Main = (0, import_core.styled)(import_core.View, {
|
|
47
|
+
name: "Main",
|
|
48
|
+
render: "main",
|
|
49
|
+
flexDirection: "column"
|
|
50
|
+
});
|
|
51
|
+
const Header = (0, import_core.styled)(import_core.View, {
|
|
52
|
+
name: "Header",
|
|
53
|
+
render: "header",
|
|
54
|
+
role: "banner",
|
|
55
|
+
flexDirection: "column"
|
|
56
|
+
});
|
|
57
|
+
const Aside = (0, import_core.styled)(import_core.View, {
|
|
58
|
+
name: "Aside",
|
|
59
|
+
render: "aside",
|
|
60
|
+
flexDirection: "column"
|
|
61
|
+
// accessibilityRole: 'complementary',
|
|
62
|
+
});
|
|
63
|
+
const Footer = (0, import_core.styled)(import_core.View, {
|
|
64
|
+
name: "Footer",
|
|
65
|
+
render: "footer",
|
|
66
|
+
flexDirection: "column"
|
|
67
|
+
// accessibilityRole: 'contentinfo',
|
|
68
|
+
});
|
|
69
|
+
const Nav = (0, import_core.styled)(import_core.View, {
|
|
70
|
+
name: "Nav",
|
|
71
|
+
render: "nav",
|
|
72
|
+
flexDirection: "column"
|
|
73
|
+
// accessibilityRole: 'navigation',
|
|
74
|
+
});
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -5,20 +5,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
7
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: true
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
15
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
15
16
|
get: () => from[key],
|
|
16
17
|
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
18
|
});
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
}
|
|
20
|
+
return to;
|
|
21
|
+
};
|
|
20
22
|
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
21
|
-
value:
|
|
23
|
+
value: true
|
|
22
24
|
}), mod);
|
|
23
25
|
var index_exports = {};
|
|
24
26
|
__export(index_exports, {
|
|
@@ -31,42 +33,42 @@ __export(index_exports, {
|
|
|
31
33
|
Section: () => Section
|
|
32
34
|
});
|
|
33
35
|
module.exports = __toCommonJS(index_exports);
|
|
34
|
-
var import_core = require("@tamagui/core")
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
36
|
+
var import_core = require("@tamagui/core");
|
|
37
|
+
var Section = (0, import_core.styled)(import_core.View, {
|
|
38
|
+
name: "Section",
|
|
39
|
+
render: "section",
|
|
40
|
+
flexDirection: "column",
|
|
41
|
+
role: "region"
|
|
42
|
+
});
|
|
43
|
+
var Article = (0, import_core.styled)(import_core.View, {
|
|
44
|
+
name: "Article",
|
|
45
|
+
render: "article",
|
|
46
|
+
flexDirection: "column"
|
|
47
|
+
});
|
|
48
|
+
var Main = (0, import_core.styled)(import_core.View, {
|
|
49
|
+
name: "Main",
|
|
50
|
+
render: "main",
|
|
51
|
+
flexDirection: "column"
|
|
52
|
+
});
|
|
53
|
+
var Header = (0, import_core.styled)(import_core.View, {
|
|
54
|
+
name: "Header",
|
|
55
|
+
render: "header",
|
|
56
|
+
role: "banner",
|
|
57
|
+
flexDirection: "column"
|
|
58
|
+
});
|
|
59
|
+
var Aside = (0, import_core.styled)(import_core.View, {
|
|
60
|
+
name: "Aside",
|
|
61
|
+
render: "aside",
|
|
62
|
+
flexDirection: "column"
|
|
63
|
+
});
|
|
64
|
+
var Footer = (0, import_core.styled)(import_core.View, {
|
|
65
|
+
name: "Footer",
|
|
66
|
+
render: "footer",
|
|
67
|
+
flexDirection: "column"
|
|
68
|
+
});
|
|
69
|
+
var Nav = (0, import_core.styled)(import_core.View, {
|
|
70
|
+
name: "Nav",
|
|
71
|
+
render: "nav",
|
|
72
|
+
flexDirection: "column"
|
|
73
|
+
});
|
|
72
74
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","Article","Aside","Footer","Header","Main","Nav","Section","module","exports","import_core","require","styled","View","name","render","flexDirection","role"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"
|
|
1
|
+
{"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","Article","Aside","Footer","Header","Main","Nav","Section","module","exports","import_core","require","styled","View","name","render","flexDirection","role"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,aAAA;AAAAC,QAAA,CAAAD,aAAA;EAAAE,OAAA,EAAAA,CAAA,KAAAA,OAAA;EAAAC,KAAA,EAAAA,CAAA,KAAAA,KAAA;EAAAC,MAAA,EAAAA,CAAA,KAAAA,MAAA;EAAAC,MAAA,EAAAA,CAAA,KAAAA,MAAA;EAAAC,IAAA,EAAAA,CAAA,KAAAA,IAAA;EAAAC,GAAA,EAAAA,CAAA,KAAAA,GAAA;EAAAC,OAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAf,YAA6B,CAAAK,aAAA;AAEtB,IAAAW,WAAM,GAAAC,OAAU,gBAAO;AAAM,IAClCJ,OAAM,OAAAG,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACNC,IAAA,WAAQ;EACRC,MAAA,WAAe;EACfC,aAAM;EACPC,IAAA;AAEM;AAA6B,IAClChB,OAAM,OAAAS,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACNC,IAAA,WAAQ;EACRC,MAAA,WAAe;EAChBC,aAAA;AAEM;AAA0B,IAC/BX,IAAM,OAAAK,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACNC,IAAA,QAAQ;EACRC,MAAA;EACDC,aAAA;AAEM;AAA4B,IACjCZ,MAAM,OAAAM,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACNC,IAAA,UAAQ;EACRC,MAAM;EACNE,IAAA;EACDD,aAAA;AAEM;AAA2B,IAChCd,KAAM,OAAAQ,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACNC,IAAA,SAAQ;EACRC,MAAA,SAAe;EAAAC,aAAA;AAEjB,CAAC;AAEM,IAAAb,MAAM,OAAAO,WAAS,CAAAE,MAAA,EAAAF,WAAO,CAAAG,IAAA;EAC3BC,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AAAA;AAEjB,IAACV,GAAA,OAAAI,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EAEMC,IAAM;EACXC,MAAM;EACNC,aAAQ;AAAA,EACR","ignoreList":[]}
|
package/dist/esm/index.js
CHANGED
|
@@ -4,42 +4,40 @@ const Section = styled(View, {
|
|
|
4
4
|
render: "section",
|
|
5
5
|
flexDirection: "column",
|
|
6
6
|
role: "region"
|
|
7
|
-
})
|
|
7
|
+
});
|
|
8
|
+
const Article = styled(View, {
|
|
8
9
|
name: "Article",
|
|
9
10
|
render: "article",
|
|
10
11
|
flexDirection: "column"
|
|
11
|
-
})
|
|
12
|
+
});
|
|
13
|
+
const Main = styled(View, {
|
|
12
14
|
name: "Main",
|
|
13
15
|
render: "main",
|
|
14
16
|
flexDirection: "column"
|
|
15
|
-
})
|
|
17
|
+
});
|
|
18
|
+
const Header = styled(View, {
|
|
16
19
|
name: "Header",
|
|
17
20
|
render: "header",
|
|
18
21
|
role: "banner",
|
|
19
22
|
flexDirection: "column"
|
|
20
|
-
})
|
|
23
|
+
});
|
|
24
|
+
const Aside = styled(View, {
|
|
21
25
|
name: "Aside",
|
|
22
26
|
render: "aside",
|
|
23
27
|
flexDirection: "column"
|
|
24
28
|
// accessibilityRole: 'complementary',
|
|
25
|
-
})
|
|
29
|
+
});
|
|
30
|
+
const Footer = styled(View, {
|
|
26
31
|
name: "Footer",
|
|
27
32
|
render: "footer",
|
|
28
33
|
flexDirection: "column"
|
|
29
34
|
// accessibilityRole: 'contentinfo',
|
|
30
|
-
})
|
|
35
|
+
});
|
|
36
|
+
const Nav = styled(View, {
|
|
31
37
|
name: "Nav",
|
|
32
38
|
render: "nav",
|
|
33
39
|
flexDirection: "column"
|
|
34
40
|
// accessibilityRole: 'navigation',
|
|
35
41
|
});
|
|
36
|
-
export {
|
|
37
|
-
Article,
|
|
38
|
-
Aside,
|
|
39
|
-
Footer,
|
|
40
|
-
Header,
|
|
41
|
-
Main,
|
|
42
|
-
Nav,
|
|
43
|
-
Section
|
|
44
|
-
};
|
|
42
|
+
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
45
43
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1,6 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "AAAA,SAAS,MAAM,cAAc;AAEtB,MAAM,UAAU,OAAO,MAAM;AAAA,EAClC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA,EACf,MAAM;AACR,CAAC,GAEY,UAAU,OAAO,MAAM;AAAA,EAClC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AACjB,CAAC,GAEY,OAAO,OAAO,MAAM;AAAA,EAC/B,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AACjB,CAAC,GAEY,SAAS,OAAO,MAAM;AAAA,EACjC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,eAAe;AACjB,CAAC,GAEY,QAAQ,OAAO,MAAM;AAAA,EAChC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC,GAEY,SAAS,OAAO,MAAM;AAAA,EACjC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC,GAEY,MAAM,OAAO,MAAM;AAAA,EAC9B,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC;",
|
|
5
|
-
"names": []
|
|
6
|
-
}
|
|
1
|
+
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,MAAMC,OAAA,GAAUD,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EACfC,IAAA,EAAM;AACR,CAAC;AAEM,MAAMC,OAAA,GAAUN,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMG,IAAA,GAAOP,MAAA,CAAOD,IAAA,EAAM;EAC/BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMI,MAAA,GAASR,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRE,IAAA,EAAM;EACND,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMK,KAAA,GAAQT,MAAA,CAAOD,IAAA,EAAM;EAChCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMM,MAAA,GAASV,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMO,GAAA,GAAMX,MAAA,CAAOD,IAAA,EAAM;EAC9BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC","ignoreList":[]}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
2
|
const Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
3
|
+
name: "Section",
|
|
4
|
+
render: "section",
|
|
5
|
+
flexDirection: "column",
|
|
6
|
+
role: "region"
|
|
7
|
+
});
|
|
8
|
+
const Article = styled(View, {
|
|
9
|
+
name: "Article",
|
|
10
|
+
render: "article",
|
|
11
|
+
flexDirection: "column"
|
|
12
|
+
});
|
|
13
|
+
const Main = styled(View, {
|
|
14
|
+
name: "Main",
|
|
15
|
+
render: "main",
|
|
16
|
+
flexDirection: "column"
|
|
17
|
+
});
|
|
18
|
+
const Header = styled(View, {
|
|
19
|
+
name: "Header",
|
|
20
|
+
render: "header",
|
|
21
|
+
role: "banner",
|
|
22
|
+
flexDirection: "column"
|
|
23
|
+
});
|
|
24
|
+
const Aside = styled(View, {
|
|
25
|
+
name: "Aside",
|
|
26
|
+
render: "aside",
|
|
27
|
+
flexDirection: "column"
|
|
28
|
+
// accessibilityRole: 'complementary',
|
|
29
|
+
});
|
|
30
|
+
const Footer = styled(View, {
|
|
31
|
+
name: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
34
|
+
// accessibilityRole: 'contentinfo',
|
|
35
|
+
});
|
|
36
|
+
const Nav = styled(View, {
|
|
37
|
+
name: "Nav",
|
|
38
|
+
render: "nav",
|
|
39
|
+
flexDirection: "column"
|
|
40
|
+
// accessibilityRole: 'navigation',
|
|
41
|
+
});
|
|
42
42
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
43
43
|
//# sourceMappingURL=index.mjs.map
|
package/dist/esm/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,MAAMC,OAAA,GAAUD,MAAA,CAAOD,IAAA,EAAM;
|
|
1
|
+
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,MAAMC,OAAA,GAAUD,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EACfC,IAAA,EAAM;AACR,CAAC;AAEM,MAAMC,OAAA,GAAUN,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMG,IAAA,GAAOP,MAAA,CAAOD,IAAA,EAAM;EAC/BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMI,MAAA,GAASR,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRE,IAAA,EAAM;EACND,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMK,KAAA,GAAQT,MAAA,CAAOD,IAAA,EAAM;EAChCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMM,MAAA,GAASV,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMO,GAAA,GAAMX,MAAA,CAAOD,IAAA,EAAM;EAC9BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC","ignoreList":[]}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
2
|
var Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
3
|
+
name: "Section",
|
|
4
|
+
render: "section",
|
|
5
|
+
flexDirection: "column",
|
|
6
|
+
role: "region"
|
|
7
|
+
});
|
|
8
|
+
var Article = styled(View, {
|
|
9
|
+
name: "Article",
|
|
10
|
+
render: "article",
|
|
11
|
+
flexDirection: "column"
|
|
12
|
+
});
|
|
13
|
+
var Main = styled(View, {
|
|
14
|
+
name: "Main",
|
|
15
|
+
render: "main",
|
|
16
|
+
flexDirection: "column"
|
|
17
|
+
});
|
|
18
|
+
var Header = styled(View, {
|
|
19
|
+
name: "Header",
|
|
20
|
+
render: "header",
|
|
21
|
+
role: "banner",
|
|
22
|
+
flexDirection: "column"
|
|
23
|
+
});
|
|
24
|
+
var Aside = styled(View, {
|
|
25
|
+
name: "Aside",
|
|
26
|
+
render: "aside",
|
|
27
|
+
flexDirection: "column"
|
|
28
|
+
});
|
|
29
|
+
var Footer = styled(View, {
|
|
30
|
+
name: "Footer",
|
|
31
|
+
render: "footer",
|
|
32
|
+
flexDirection: "column"
|
|
33
|
+
});
|
|
34
|
+
var Nav = styled(View, {
|
|
35
|
+
name: "Nav",
|
|
36
|
+
render: "nav",
|
|
37
|
+
flexDirection: "column"
|
|
38
|
+
});
|
|
39
39
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
40
40
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,IAAAC,OAAM,GAAAD,MAAU,CAAAD,IAAO;
|
|
1
|
+
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,IAAAC,OAAM,GAAAD,MAAU,CAAAD,IAAO;EAC5BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EACfC,IAAA,EAAM;AACR,CAAC;AAEM,IAAAC,OAAM,GAAAN,MAAU,CAAAD,IAAO;EAC5BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,IAAAG,IAAM,GAAAP,MAAO,CAAAD,IAAO;EACzBG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,IAAAI,MAAM,GAAAR,MAAS,CAAAD,IAAO;EAC3BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRE,IAAA,EAAM;EACND,aAAA,EAAe;AACjB,CAAC;AAEM,IAAAK,KAAM,GAAAT,MAAQ,CAAAD,IAAO;EAC1BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AAAA;AAEjB,IAACM,MAAA,GAAAV,MAAA,CAAAD,IAAA;EAEMG,IAAM,UAAS;EACpBC,MAAM;EACNC,aAAQ;AAAA,EACR;AAAe,IAAAO,GAAA,GAAAX,MAAA,CAAAD,IAAA;EAEhBG,IAAA;EAEMC,MAAM,OAAM;EACjBC,aAAM;AAAA,EACN;AAAQ,SACOE,OAAA,EAEhBG,KAAA,E","ignoreList":[]}
|
package/dist/jsx/index.js
CHANGED
|
@@ -4,42 +4,40 @@ const Section = styled(View, {
|
|
|
4
4
|
render: "section",
|
|
5
5
|
flexDirection: "column",
|
|
6
6
|
role: "region"
|
|
7
|
-
})
|
|
7
|
+
});
|
|
8
|
+
const Article = styled(View, {
|
|
8
9
|
name: "Article",
|
|
9
10
|
render: "article",
|
|
10
11
|
flexDirection: "column"
|
|
11
|
-
})
|
|
12
|
+
});
|
|
13
|
+
const Main = styled(View, {
|
|
12
14
|
name: "Main",
|
|
13
15
|
render: "main",
|
|
14
16
|
flexDirection: "column"
|
|
15
|
-
})
|
|
17
|
+
});
|
|
18
|
+
const Header = styled(View, {
|
|
16
19
|
name: "Header",
|
|
17
20
|
render: "header",
|
|
18
21
|
role: "banner",
|
|
19
22
|
flexDirection: "column"
|
|
20
|
-
})
|
|
23
|
+
});
|
|
24
|
+
const Aside = styled(View, {
|
|
21
25
|
name: "Aside",
|
|
22
26
|
render: "aside",
|
|
23
27
|
flexDirection: "column"
|
|
24
28
|
// accessibilityRole: 'complementary',
|
|
25
|
-
})
|
|
29
|
+
});
|
|
30
|
+
const Footer = styled(View, {
|
|
26
31
|
name: "Footer",
|
|
27
32
|
render: "footer",
|
|
28
33
|
flexDirection: "column"
|
|
29
34
|
// accessibilityRole: 'contentinfo',
|
|
30
|
-
})
|
|
35
|
+
});
|
|
36
|
+
const Nav = styled(View, {
|
|
31
37
|
name: "Nav",
|
|
32
38
|
render: "nav",
|
|
33
39
|
flexDirection: "column"
|
|
34
40
|
// accessibilityRole: 'navigation',
|
|
35
41
|
});
|
|
36
|
-
export {
|
|
37
|
-
Article,
|
|
38
|
-
Aside,
|
|
39
|
-
Footer,
|
|
40
|
-
Header,
|
|
41
|
-
Main,
|
|
42
|
-
Nav,
|
|
43
|
-
Section
|
|
44
|
-
};
|
|
42
|
+
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
45
43
|
//# sourceMappingURL=index.js.map
|
package/dist/jsx/index.js.map
CHANGED
|
@@ -1,6 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "AAAA,SAAS,MAAM,cAAc;AAEtB,MAAM,UAAU,OAAO,MAAM;AAAA,EAClC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA,EACf,MAAM;AACR,CAAC,GAEY,UAAU,OAAO,MAAM;AAAA,EAClC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AACjB,CAAC,GAEY,OAAO,OAAO,MAAM;AAAA,EAC/B,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AACjB,CAAC,GAEY,SAAS,OAAO,MAAM;AAAA,EACjC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,eAAe;AACjB,CAAC,GAEY,QAAQ,OAAO,MAAM;AAAA,EAChC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC,GAEY,SAAS,OAAO,MAAM;AAAA,EACjC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC,GAEY,MAAM,OAAO,MAAM;AAAA,EAC9B,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC;",
|
|
5
|
-
"names": []
|
|
6
|
-
}
|
|
1
|
+
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,MAAMC,OAAA,GAAUD,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EACfC,IAAA,EAAM;AACR,CAAC;AAEM,MAAMC,OAAA,GAAUN,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMG,IAAA,GAAOP,MAAA,CAAOD,IAAA,EAAM;EAC/BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMI,MAAA,GAASR,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRE,IAAA,EAAM;EACND,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMK,KAAA,GAAQT,MAAA,CAAOD,IAAA,EAAM;EAChCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMM,MAAA,GAASV,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMO,GAAA,GAAMX,MAAA,CAAOD,IAAA,EAAM;EAC9BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC","ignoreList":[]}
|
package/dist/jsx/index.mjs
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
2
|
const Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
3
|
+
name: "Section",
|
|
4
|
+
render: "section",
|
|
5
|
+
flexDirection: "column",
|
|
6
|
+
role: "region"
|
|
7
|
+
});
|
|
8
|
+
const Article = styled(View, {
|
|
9
|
+
name: "Article",
|
|
10
|
+
render: "article",
|
|
11
|
+
flexDirection: "column"
|
|
12
|
+
});
|
|
13
|
+
const Main = styled(View, {
|
|
14
|
+
name: "Main",
|
|
15
|
+
render: "main",
|
|
16
|
+
flexDirection: "column"
|
|
17
|
+
});
|
|
18
|
+
const Header = styled(View, {
|
|
19
|
+
name: "Header",
|
|
20
|
+
render: "header",
|
|
21
|
+
role: "banner",
|
|
22
|
+
flexDirection: "column"
|
|
23
|
+
});
|
|
24
|
+
const Aside = styled(View, {
|
|
25
|
+
name: "Aside",
|
|
26
|
+
render: "aside",
|
|
27
|
+
flexDirection: "column"
|
|
28
|
+
// accessibilityRole: 'complementary',
|
|
29
|
+
});
|
|
30
|
+
const Footer = styled(View, {
|
|
31
|
+
name: "Footer",
|
|
32
|
+
render: "footer",
|
|
33
|
+
flexDirection: "column"
|
|
34
|
+
// accessibilityRole: 'contentinfo',
|
|
35
|
+
});
|
|
36
|
+
const Nav = styled(View, {
|
|
37
|
+
name: "Nav",
|
|
38
|
+
render: "nav",
|
|
39
|
+
flexDirection: "column"
|
|
40
|
+
// accessibilityRole: 'navigation',
|
|
41
|
+
});
|
|
42
42
|
export { Article, Aside, Footer, Header, Main, Nav, Section };
|
|
43
43
|
//# sourceMappingURL=index.mjs.map
|
package/dist/jsx/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,MAAMC,OAAA,GAAUD,MAAA,CAAOD,IAAA,EAAM;
|
|
1
|
+
{"version":3,"names":["View","styled","Section","name","render","flexDirection","role","Article","Main","Header","Aside","Footer","Nav"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,SAASA,IAAA,EAAMC,MAAA,QAAc;AAEtB,MAAMC,OAAA,GAAUD,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EACfC,IAAA,EAAM;AACR,CAAC;AAEM,MAAMC,OAAA,GAAUN,MAAA,CAAOD,IAAA,EAAM;EAClCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMG,IAAA,GAAOP,MAAA,CAAOD,IAAA,EAAM;EAC/BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMI,MAAA,GAASR,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRE,IAAA,EAAM;EACND,aAAA,EAAe;AACjB,CAAC;AAEM,MAAMK,KAAA,GAAQT,MAAA,CAAOD,IAAA,EAAM;EAChCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMM,MAAA,GAASV,MAAA,CAAOD,IAAA,EAAM;EACjCG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC;AAEM,MAAMO,GAAA,GAAMX,MAAA,CAAOD,IAAA,EAAM;EAC9BG,IAAA,EAAM;EACNC,MAAA,EAAQ;EACRC,aAAA,EAAe;EAAA;AAEjB,CAAC","ignoreList":[]}
|
package/dist/jsx/index.native.js
CHANGED
|
@@ -5,20 +5,22 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
7
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
for (var name in all) __defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: true
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
15
|
+
for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
15
16
|
get: () => from[key],
|
|
16
17
|
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
18
|
});
|
|
18
|
-
|
|
19
|
-
|
|
19
|
+
}
|
|
20
|
+
return to;
|
|
21
|
+
};
|
|
20
22
|
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
21
|
-
value:
|
|
23
|
+
value: true
|
|
22
24
|
}), mod);
|
|
23
25
|
var index_exports = {};
|
|
24
26
|
__export(index_exports, {
|
|
@@ -31,42 +33,42 @@ __export(index_exports, {
|
|
|
31
33
|
Section: () => Section
|
|
32
34
|
});
|
|
33
35
|
module.exports = __toCommonJS(index_exports);
|
|
34
|
-
var import_core = require("@tamagui/core")
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
36
|
+
var import_core = require("@tamagui/core");
|
|
37
|
+
var Section = (0, import_core.styled)(import_core.View, {
|
|
38
|
+
name: "Section",
|
|
39
|
+
render: "section",
|
|
40
|
+
flexDirection: "column",
|
|
41
|
+
role: "region"
|
|
42
|
+
});
|
|
43
|
+
var Article = (0, import_core.styled)(import_core.View, {
|
|
44
|
+
name: "Article",
|
|
45
|
+
render: "article",
|
|
46
|
+
flexDirection: "column"
|
|
47
|
+
});
|
|
48
|
+
var Main = (0, import_core.styled)(import_core.View, {
|
|
49
|
+
name: "Main",
|
|
50
|
+
render: "main",
|
|
51
|
+
flexDirection: "column"
|
|
52
|
+
});
|
|
53
|
+
var Header = (0, import_core.styled)(import_core.View, {
|
|
54
|
+
name: "Header",
|
|
55
|
+
render: "header",
|
|
56
|
+
role: "banner",
|
|
57
|
+
flexDirection: "column"
|
|
58
|
+
});
|
|
59
|
+
var Aside = (0, import_core.styled)(import_core.View, {
|
|
60
|
+
name: "Aside",
|
|
61
|
+
render: "aside",
|
|
62
|
+
flexDirection: "column"
|
|
63
|
+
});
|
|
64
|
+
var Footer = (0, import_core.styled)(import_core.View, {
|
|
65
|
+
name: "Footer",
|
|
66
|
+
render: "footer",
|
|
67
|
+
flexDirection: "column"
|
|
68
|
+
});
|
|
69
|
+
var Nav = (0, import_core.styled)(import_core.View, {
|
|
70
|
+
name: "Nav",
|
|
71
|
+
render: "nav",
|
|
72
|
+
flexDirection: "column"
|
|
73
|
+
});
|
|
72
74
|
//# sourceMappingURL=index.native.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","index_exports","Article","Aside","Footer","Header","Main","Nav","Section","module","exports","import_core","require","styled","View","render","flexDirection","role"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAS;;AAEF,IAAAA,SAAM,GAAUC,MAAA,CAAOC,cAAM;AAAA,IAClCC,gBAAM,GAAAF,MAAA,CAAAG,wBAAA;AAAA,IACNC,iBAAQ,GAAAJ,MAAA,CAAAK,mBAAA;AAAA,IACRC,YAAA,GAAeN,MAAA,CAAAO,SAAA,CAAAC,cAAA;AAAA,IACfC,QAAM,GAAAA,CAAAC,MAAA,EAAAC,GAAA;
|
|
1
|
+
{"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","index_exports","Article","Aside","Footer","Header","Main","Nav","Section","module","exports","import_core","require","styled","View","render","flexDirection","role"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAS;;AAEF,IAAAA,SAAM,GAAUC,MAAA,CAAOC,cAAM;AAAA,IAClCC,gBAAM,GAAAF,MAAA,CAAAG,wBAAA;AAAA,IACNC,iBAAQ,GAAAJ,MAAA,CAAAK,mBAAA;AAAA,IACRC,YAAA,GAAeN,MAAA,CAAAO,SAAA,CAAAC,cAAA;AAAA,IACfC,QAAM,GAAAA,CAAAC,MAAA,EAAAC,GAAA;EACP,SAAAC,IAAA,IAAAD,GAAA,EAEMZ,SAAM,CAAAW,MAAU,EAAAE,IAAO;IAAMC,GAAA,EAAAF,GAAA,CAAAC,IAAA;IAAAE,UAAA;EAAA;AAAA;AAC5B,IACNC,WAAQ,GAAAA,CAAAC,EAAA,EAAAC,IAAA,EAAAC,MAAA,EAAAC,IAAA;EACR,IAAAF,IAAA,WAAeA,IAAA,wBAAAA,IAAA;IAChB,SAAAG,GAAA,IAAAhB,iBAAA,CAAAa,IAAA,GAEY,KAAAX,YAAc,CAAAe,IAAM,CAAAL,EAAA,EAAAI,GAAA,KAAAA,GAAA,KAAAF,MAAA,EACzBnB,SAAA,CAAAiB,EAAA,EAAAI,GAAA;MAAAP,GAAA,EAAAA,CAAA,KAAAI,IAAA,CAAAG,GAAA;MAAAN,UAAA,IAAAK,IAAA,GAAAjB,gBAAA,CAAAe,IAAA,EAAAG,GAAA,MAAAD,IAAA,CAAAL;IAAA;EACN;EACA,OAAAE,EAAA;AACF,CAAC;AAEM,IAAAM,YAAe,GAAAC,GAAO,IAAMR,WAAA,CAAAhB,SAAA;EAAAyB,KAAA;AAAA,IAAAD,GAAA;AAAA,IACjCE,aAAM;AAAAhB,QACN,CAAAgB,aAAQ;EACRC,OAAM,EAAAA,CAAA,KAAAA,OAAA;EACNC,KAAA,EAAAA,CAAA,KAAAA,KAAe;EAChBC,MAAA,EAAAA,CAAA,KAAAA,MAAA;EAEMC,MAAM,EAAAA,CAAA,KAAQA,MAAO;EAC1BC,IAAA,EAAMA,CAAA,KAAAA,IAAA;EACNC,GAAA,EAAAA,CAAA,KAAQA,GAAA;EACRC,OAAA,EAAAA,CAAA,KAAeA;AAAA;AAEjBC,MAAC,CAAAC,OAAA,GAAAZ,YAAA,CAAAG,aAAA;AAEM,IAAAU,WAAe,GAAAC,OAAO,gBAAM;AAAA,IACjCJ,OAAM,OAAAG,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACN1B,IAAA,WAAQ;EACR2B,MAAA,WAAe;EAAAC,aAAA;EAEhBC,IAAA;AAEM;AAAyB,IAC9Bf,OAAM,OAAAS,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;EACN1B,IAAA,WAAQ;EACR2B,MAAA,WAAe;EAAAC,aAAA;AAEjB,CAAC","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/elements",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.40",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"src",
|
|
@@ -18,15 +18,12 @@
|
|
|
18
18
|
"./package.json": "./package.json",
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./types/index.d.ts",
|
|
21
|
-
"react-native":
|
|
22
|
-
|
|
23
|
-
"import": "./dist/esm/index.native.js",
|
|
24
|
-
"require": "./dist/cjs/index.native.js"
|
|
25
|
-
},
|
|
21
|
+
"react-native": "./dist/esm/index.native.js",
|
|
22
|
+
"browser": "./dist/esm/index.mjs",
|
|
26
23
|
"module": "./dist/esm/index.mjs",
|
|
27
24
|
"import": "./dist/esm/index.mjs",
|
|
28
25
|
"require": "./dist/cjs/index.cjs",
|
|
29
|
-
"default": "./dist/
|
|
26
|
+
"default": "./dist/esm/index.mjs"
|
|
30
27
|
}
|
|
31
28
|
},
|
|
32
29
|
"publishConfig": {
|
|
@@ -39,10 +36,10 @@
|
|
|
39
36
|
"clean:build": "tamagui-build clean:build"
|
|
40
37
|
},
|
|
41
38
|
"dependencies": {
|
|
42
|
-
"@tamagui/core": "2.0.0-rc.
|
|
39
|
+
"@tamagui/core": "2.0.0-rc.40"
|
|
43
40
|
},
|
|
44
41
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "2.0.0-rc.
|
|
42
|
+
"@tamagui/build": "2.0.0-rc.40",
|
|
46
43
|
"react": ">=19"
|
|
47
44
|
},
|
|
48
45
|
"peerDependencies": {
|
package/dist/cjs/index.js
DELETED
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
8
|
-
}, __copyProps = (to, from, except, desc) => {
|
|
9
|
-
if (from && typeof from == "object" || typeof from == "function")
|
|
10
|
-
for (let key of __getOwnPropNames(from))
|
|
11
|
-
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
15
|
-
var index_exports = {};
|
|
16
|
-
__export(index_exports, {
|
|
17
|
-
Article: () => Article,
|
|
18
|
-
Aside: () => Aside,
|
|
19
|
-
Footer: () => Footer,
|
|
20
|
-
Header: () => Header,
|
|
21
|
-
Main: () => Main,
|
|
22
|
-
Nav: () => Nav,
|
|
23
|
-
Section: () => Section
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(index_exports);
|
|
26
|
-
var import_core = require("@tamagui/core");
|
|
27
|
-
const Section = (0, import_core.styled)(import_core.View, {
|
|
28
|
-
name: "Section",
|
|
29
|
-
render: "section",
|
|
30
|
-
flexDirection: "column",
|
|
31
|
-
role: "region"
|
|
32
|
-
}), Article = (0, import_core.styled)(import_core.View, {
|
|
33
|
-
name: "Article",
|
|
34
|
-
render: "article",
|
|
35
|
-
flexDirection: "column"
|
|
36
|
-
}), Main = (0, import_core.styled)(import_core.View, {
|
|
37
|
-
name: "Main",
|
|
38
|
-
render: "main",
|
|
39
|
-
flexDirection: "column"
|
|
40
|
-
}), Header = (0, import_core.styled)(import_core.View, {
|
|
41
|
-
name: "Header",
|
|
42
|
-
render: "header",
|
|
43
|
-
role: "banner",
|
|
44
|
-
flexDirection: "column"
|
|
45
|
-
}), Aside = (0, import_core.styled)(import_core.View, {
|
|
46
|
-
name: "Aside",
|
|
47
|
-
render: "aside",
|
|
48
|
-
flexDirection: "column"
|
|
49
|
-
// accessibilityRole: 'complementary',
|
|
50
|
-
}), Footer = (0, import_core.styled)(import_core.View, {
|
|
51
|
-
name: "Footer",
|
|
52
|
-
render: "footer",
|
|
53
|
-
flexDirection: "column"
|
|
54
|
-
// accessibilityRole: 'contentinfo',
|
|
55
|
-
}), Nav = (0, import_core.styled)(import_core.View, {
|
|
56
|
-
name: "Nav",
|
|
57
|
-
render: "nav",
|
|
58
|
-
flexDirection: "column"
|
|
59
|
-
// accessibilityRole: 'navigation',
|
|
60
|
-
});
|
|
61
|
-
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6B;AAEtB,MAAM,cAAU,oBAAO,kBAAM;AAAA,EAClC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA,EACf,MAAM;AACR,CAAC,GAEY,cAAU,oBAAO,kBAAM;AAAA,EAClC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AACjB,CAAC,GAEY,WAAO,oBAAO,kBAAM;AAAA,EAC/B,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AACjB,CAAC,GAEY,aAAS,oBAAO,kBAAM;AAAA,EACjC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,MAAM;AAAA,EACN,eAAe;AACjB,CAAC,GAEY,YAAQ,oBAAO,kBAAM;AAAA,EAChC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC,GAEY,aAAS,oBAAO,kBAAM;AAAA,EACjC,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC,GAEY,UAAM,oBAAO,kBAAM;AAAA,EAC9B,MAAM;AAAA,EACN,QAAQ;AAAA,EACR,eAAe;AAAA;AAEjB,CAAC;",
|
|
5
|
-
"names": []
|
|
6
|
-
}
|