@tamagui/elements 1.135.4-1761748186554 → 1.135.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/index.native.js
CHANGED
|
@@ -1,25 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
6
|
var __export = (target, all) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
});
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
21
|
-
value: !0
|
|
22
|
-
}), mod);
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: !0 });
|
|
9
|
+
}, __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
13
|
+
return to;
|
|
14
|
+
};
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
23
16
|
var index_exports = {};
|
|
24
17
|
__export(index_exports, {
|
|
25
18
|
Article: () => Article,
|
|
@@ -31,42 +24,45 @@ __export(index_exports, {
|
|
|
31
24
|
Section: () => Section
|
|
32
25
|
});
|
|
33
26
|
module.exports = __toCommonJS(index_exports);
|
|
34
|
-
var import_core = require("@tamagui/core"),
|
|
35
|
-
Section
|
|
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
|
-
|
|
27
|
+
var import_core = require("@tamagui/core"), Section = (0, import_core.styled)(import_core.View, {
|
|
28
|
+
name: "Section",
|
|
29
|
+
tag: "section",
|
|
30
|
+
flexDirection: "column",
|
|
31
|
+
accessibilityRole: "summary"
|
|
32
|
+
}), Article = (0, import_core.styled)(import_core.View, {
|
|
33
|
+
name: "Article",
|
|
34
|
+
tag: "article",
|
|
35
|
+
flexDirection: "column"
|
|
36
|
+
}), Main = (0, import_core.styled)(import_core.View, {
|
|
37
|
+
name: "Main",
|
|
38
|
+
tag: "main",
|
|
39
|
+
flexDirection: "column"
|
|
40
|
+
}), Header = (0, import_core.styled)(import_core.View, {
|
|
41
|
+
name: "Header",
|
|
42
|
+
tag: "header",
|
|
43
|
+
accessibilityRole: "header",
|
|
44
|
+
flexDirection: "column"
|
|
45
|
+
}), Aside = (0, import_core.styled)(import_core.View, {
|
|
46
|
+
name: "Aside",
|
|
47
|
+
tag: "aside",
|
|
48
|
+
flexDirection: "column"
|
|
49
|
+
}), Footer = (0, import_core.styled)(import_core.View, {
|
|
50
|
+
name: "Footer",
|
|
51
|
+
tag: "footer",
|
|
52
|
+
flexDirection: "column"
|
|
53
|
+
}), Nav = (0, import_core.styled)(import_core.View, {
|
|
54
|
+
name: "Nav",
|
|
55
|
+
tag: "nav",
|
|
56
|
+
flexDirection: "column"
|
|
57
|
+
});
|
|
58
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
59
|
+
0 && (module.exports = {
|
|
60
|
+
Article,
|
|
61
|
+
Aside,
|
|
62
|
+
Footer,
|
|
63
|
+
Header,
|
|
64
|
+
Main,
|
|
65
|
+
Nav,
|
|
66
|
+
Section
|
|
67
|
+
});
|
|
68
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6B,0BAClB,cAAU,oBAAO,kBAAM;AAAA,EAC9B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AAAA,EACf,mBAAmB;AACvB,CAAC,GACU,cAAU,oBAAO,kBAAM;AAAA,EAC9B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GACU,WAAO,oBAAO,kBAAM;AAAA,EAC3B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GACU,aAAS,oBAAO,kBAAM;AAAA,EAC7B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,mBAAmB;AAAA,EACnB,eAAe;AACnB,CAAC,GACU,YAAQ,oBAAO,kBAAM;AAAA,EAC5B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GAEU,aAAS,oBAAO,kBAAM;AAAA,EAC7B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GAEU,UAAM,oBAAO,kBAAM;AAAA,EAC1B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/dist/jsx/index.native.js
CHANGED
|
@@ -1,72 +1,42 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
-
|
|
1
|
+
import { View, styled } from "@tamagui/core";
|
|
2
|
+
var Section = styled(View, {
|
|
3
|
+
name: "Section",
|
|
4
|
+
tag: "section",
|
|
5
|
+
flexDirection: "column",
|
|
6
|
+
accessibilityRole: "summary"
|
|
7
|
+
}), Article = styled(View, {
|
|
8
|
+
name: "Article",
|
|
9
|
+
tag: "article",
|
|
10
|
+
flexDirection: "column"
|
|
11
|
+
}), Main = styled(View, {
|
|
12
|
+
name: "Main",
|
|
13
|
+
tag: "main",
|
|
14
|
+
flexDirection: "column"
|
|
15
|
+
}), Header = styled(View, {
|
|
16
|
+
name: "Header",
|
|
17
|
+
tag: "header",
|
|
18
|
+
accessibilityRole: "header",
|
|
19
|
+
flexDirection: "column"
|
|
20
|
+
}), Aside = styled(View, {
|
|
21
|
+
name: "Aside",
|
|
22
|
+
tag: "aside",
|
|
23
|
+
flexDirection: "column"
|
|
24
|
+
}), Footer = styled(View, {
|
|
25
|
+
name: "Footer",
|
|
26
|
+
tag: "footer",
|
|
27
|
+
flexDirection: "column"
|
|
28
|
+
}), Nav = styled(View, {
|
|
29
|
+
name: "Nav",
|
|
30
|
+
tag: "nav",
|
|
31
|
+
flexDirection: "column"
|
|
32
32
|
});
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
tag: "article",
|
|
44
|
-
flexDirection: "column"
|
|
45
|
-
}),
|
|
46
|
-
Main = (0, import_core.styled)(import_core.View, {
|
|
47
|
-
name: "Main",
|
|
48
|
-
tag: "main",
|
|
49
|
-
flexDirection: "column"
|
|
50
|
-
}),
|
|
51
|
-
Header = (0, import_core.styled)(import_core.View, {
|
|
52
|
-
name: "Header",
|
|
53
|
-
tag: "header",
|
|
54
|
-
accessibilityRole: "header",
|
|
55
|
-
flexDirection: "column"
|
|
56
|
-
}),
|
|
57
|
-
Aside = (0, import_core.styled)(import_core.View, {
|
|
58
|
-
name: "Aside",
|
|
59
|
-
tag: "aside",
|
|
60
|
-
flexDirection: "column"
|
|
61
|
-
}),
|
|
62
|
-
Footer = (0, import_core.styled)(import_core.View, {
|
|
63
|
-
name: "Footer",
|
|
64
|
-
tag: "footer",
|
|
65
|
-
flexDirection: "column"
|
|
66
|
-
}),
|
|
67
|
-
Nav = (0, import_core.styled)(import_core.View, {
|
|
68
|
-
name: "Nav",
|
|
69
|
-
tag: "nav",
|
|
70
|
-
flexDirection: "column"
|
|
71
|
-
});
|
|
72
|
-
//# sourceMappingURL=index.native.js.map
|
|
33
|
+
export {
|
|
34
|
+
Article,
|
|
35
|
+
Aside,
|
|
36
|
+
Footer,
|
|
37
|
+
Header,
|
|
38
|
+
Main,
|
|
39
|
+
Nav,
|
|
40
|
+
Section
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"mappings": "AAAA,SAAS,MAAM,cAAc;AACtB,IAAI,UAAU,OAAO,MAAM;AAAA,EAC9B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AAAA,EACf,mBAAmB;AACvB,CAAC,GACU,UAAU,OAAO,MAAM;AAAA,EAC9B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GACU,OAAO,OAAO,MAAM;AAAA,EAC3B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GACU,SAAS,OAAO,MAAM;AAAA,EAC7B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,mBAAmB;AAAA,EACnB,eAAe;AACnB,CAAC,GACU,QAAQ,OAAO,MAAM;AAAA,EAC5B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GAEU,SAAS,OAAO,MAAM;AAAA,EAC7B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC,GAEU,MAAM,OAAO,MAAM;AAAA,EAC1B,MAAM;AAAA,EACN,KAAK;AAAA,EACL,eAAe;AACnB,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/elements",
|
|
3
|
-
"version": "1.135.4
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "1.135.4",
|
|
5
4
|
"sideEffects": false,
|
|
6
5
|
"source": "src/index.ts",
|
|
7
6
|
"types": "./types/index.d.ts",
|
|
@@ -35,13 +34,13 @@
|
|
|
35
34
|
}
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
38
|
-
"@tamagui/core": "1.135.4
|
|
37
|
+
"@tamagui/core": "1.135.4"
|
|
39
38
|
},
|
|
40
39
|
"peerDependencies": {
|
|
41
40
|
"react": "*"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
44
|
-
"@tamagui/build": "1.135.4
|
|
43
|
+
"@tamagui/build": "1.135.4",
|
|
45
44
|
"react": "*"
|
|
46
45
|
},
|
|
47
46
|
"publishConfig": {
|