@tamagui/elements 1.89.25 → 1.89.27-1708112217600
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 +1 -5
- package/dist/cjs/index.native.js.map +3 -3
- package/dist/esm/index.mjs +0 -1
- package/dist/esm/index.native.js +1 -4
- package/dist/esm/index.native.js.map +3 -3
- package/dist/jsx/index.mjs +0 -1
- package/dist/jsx/index.native.js +1 -4
- package/dist/jsx/index.native.js.map +3 -3
- package/package.json +3 -3
package/dist/cjs/index.native.js
CHANGED
|
@@ -24,8 +24,7 @@ __export(src_exports, {
|
|
|
24
24
|
Section: () => Section
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(src_exports);
|
|
27
|
-
var import_core = require("@tamagui/core")
|
|
28
|
-
const Section = (0, import_core.styled)(import_core.View, {
|
|
27
|
+
var import_core = require("@tamagui/core"), Section = (0, import_core.styled)(import_core.View, {
|
|
29
28
|
name: "Section",
|
|
30
29
|
tag: "section",
|
|
31
30
|
flexDirection: "column",
|
|
@@ -47,17 +46,14 @@ const Section = (0, import_core.styled)(import_core.View, {
|
|
|
47
46
|
name: "Aside",
|
|
48
47
|
tag: "aside",
|
|
49
48
|
flexDirection: "column"
|
|
50
|
-
// accessibilityRole: 'complementary',
|
|
51
49
|
}), Footer = (0, import_core.styled)(import_core.View, {
|
|
52
50
|
name: "Footer",
|
|
53
51
|
tag: "footer",
|
|
54
52
|
flexDirection: "column"
|
|
55
|
-
// accessibilityRole: 'contentinfo',
|
|
56
53
|
}), Nav = (0, import_core.styled)(import_core.View, {
|
|
57
54
|
name: "Nav",
|
|
58
55
|
tag: "nav",
|
|
59
56
|
flexDirection: "column"
|
|
60
|
-
// accessibilityRole: 'navigation',
|
|
61
57
|
});
|
|
62
58
|
// Annotate the CommonJS export names for ESM import in node:
|
|
63
59
|
0 && (module.exports = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;AAAA
|
|
5
|
-
"names": []
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/packages/elements/src/index.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;;;;;;;;;;;kBAA6B,0BAEhBA,cAAUC,oBAAOC,kBAAM;EAClCC,MAAM;EACNC,KAAK;EACLC,eAAe;EACfC,mBAAmB;AACrB,CAAA,GAEaC,cAAUN,oBAAOC,kBAAM;EAClCC,MAAM;EACNC,KAAK;EACLC,eAAe;AACjB,CAAA,GAEaG,WAAOP,oBAAOC,kBAAM;EAC/BC,MAAM;EACNC,KAAK;EACLC,eAAe;AACjB,CAAA,GAEaI,aAASR,oBAAOC,kBAAM;EACjCC,MAAM;EACNC,KAAK;EACLE,mBAAmB;EACnBD,eAAe;AACjB,CAAA,GAEaK,YAAQT,oBAAOC,kBAAM;EAChCC,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA,GAEaM,aAASV,oBAAOC,kBAAM;EACjCC,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA,GAEaO,UAAMX,oBAAOC,kBAAM;EAC9BC,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA;",
|
|
5
|
+
"names": ["Section", "styled", "View", "name", "tag", "flexDirection", "accessibilityRole", "Article", "Main", "Header", "Aside", "Footer", "Nav"]
|
|
6
6
|
}
|
package/dist/esm/index.mjs
CHANGED
package/dist/esm/index.native.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
-
|
|
2
|
+
var Section = styled(View, {
|
|
3
3
|
name: "Section",
|
|
4
4
|
tag: "section",
|
|
5
5
|
flexDirection: "column",
|
|
@@ -21,17 +21,14 @@ const Section = styled(View, {
|
|
|
21
21
|
name: "Aside",
|
|
22
22
|
tag: "aside",
|
|
23
23
|
flexDirection: "column"
|
|
24
|
-
// accessibilityRole: 'complementary',
|
|
25
24
|
}), Footer = styled(View, {
|
|
26
25
|
name: "Footer",
|
|
27
26
|
tag: "footer",
|
|
28
27
|
flexDirection: "column"
|
|
29
|
-
// accessibilityRole: 'contentinfo',
|
|
30
28
|
}), Nav = styled(View, {
|
|
31
29
|
name: "Nav",
|
|
32
30
|
tag: "nav",
|
|
33
31
|
flexDirection: "column"
|
|
34
|
-
// accessibilityRole: 'navigation',
|
|
35
32
|
});
|
|
36
33
|
export {
|
|
37
34
|
Article,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "AAAA,
|
|
5
|
-
"names": []
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/packages/elements/src/index.ts"],
|
|
4
|
+
"mappings": "AAAA,SAASA,MAAMC,cAAc;AAEtB,IAAMC,UAAUD,OAAOD,MAAM;EAClCG,MAAM;EACNC,KAAK;EACLC,eAAe;EACfC,mBAAmB;AACrB,CAAA,GAEaC,UAAUN,OAAOD,MAAM;EAClCG,MAAM;EACNC,KAAK;EACLC,eAAe;AACjB,CAAA,GAEaG,OAAOP,OAAOD,MAAM;EAC/BG,MAAM;EACNC,KAAK;EACLC,eAAe;AACjB,CAAA,GAEaI,SAASR,OAAOD,MAAM;EACjCG,MAAM;EACNC,KAAK;EACLE,mBAAmB;EACnBD,eAAe;AACjB,CAAA,GAEaK,QAAQT,OAAOD,MAAM;EAChCG,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA,GAEaM,SAASV,OAAOD,MAAM;EACjCG,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA,GAEaO,MAAMX,OAAOD,MAAM;EAC9BG,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA;",
|
|
5
|
+
"names": ["View", "styled", "Section", "name", "tag", "flexDirection", "accessibilityRole", "Article", "Main", "Header", "Aside", "Footer", "Nav"]
|
|
6
6
|
}
|
package/dist/jsx/index.mjs
CHANGED
package/dist/jsx/index.native.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
|
-
|
|
2
|
+
var Section = styled(View, {
|
|
3
3
|
name: "Section",
|
|
4
4
|
tag: "section",
|
|
5
5
|
flexDirection: "column",
|
|
@@ -21,17 +21,14 @@ const Section = styled(View, {
|
|
|
21
21
|
name: "Aside",
|
|
22
22
|
tag: "aside",
|
|
23
23
|
flexDirection: "column"
|
|
24
|
-
// accessibilityRole: 'complementary',
|
|
25
24
|
}), Footer = styled(View, {
|
|
26
25
|
name: "Footer",
|
|
27
26
|
tag: "footer",
|
|
28
27
|
flexDirection: "column"
|
|
29
|
-
// accessibilityRole: 'contentinfo',
|
|
30
28
|
}), Nav = styled(View, {
|
|
31
29
|
name: "Nav",
|
|
32
30
|
tag: "nav",
|
|
33
31
|
flexDirection: "column"
|
|
34
|
-
// accessibilityRole: 'navigation',
|
|
35
32
|
});
|
|
36
33
|
export {
|
|
37
34
|
Article,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["../../src/index.ts"],
|
|
4
|
-
"mappings": "AAAA,
|
|
5
|
-
"names": []
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/packages/elements/src/index.ts"],
|
|
4
|
+
"mappings": "AAAA,SAASA,MAAMC,cAAc;AAEtB,IAAMC,UAAUD,OAAOD,MAAM;EAClCG,MAAM;EACNC,KAAK;EACLC,eAAe;EACfC,mBAAmB;AACrB,CAAA,GAEaC,UAAUN,OAAOD,MAAM;EAClCG,MAAM;EACNC,KAAK;EACLC,eAAe;AACjB,CAAA,GAEaG,OAAOP,OAAOD,MAAM;EAC/BG,MAAM;EACNC,KAAK;EACLC,eAAe;AACjB,CAAA,GAEaI,SAASR,OAAOD,MAAM;EACjCG,MAAM;EACNC,KAAK;EACLE,mBAAmB;EACnBD,eAAe;AACjB,CAAA,GAEaK,QAAQT,OAAOD,MAAM;EAChCG,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA,GAEaM,SAASV,OAAOD,MAAM;EACjCG,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA,GAEaO,MAAMX,OAAOD,MAAM;EAC9BG,MAAM;EACNC,KAAK;EACLC,eAAe;AAEjB,CAAA;",
|
|
5
|
+
"names": ["View", "styled", "Section", "name", "tag", "flexDirection", "accessibilityRole", "Article", "Main", "Header", "Aside", "Footer", "Nav"]
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/elements",
|
|
3
|
-
"version": "1.89.
|
|
3
|
+
"version": "1.89.27-1708112217600",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@tamagui/core": "1.89.
|
|
33
|
+
"@tamagui/core": "1.89.27-1708112217600"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": "*",
|
|
37
37
|
"react-dom": "*"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@tamagui/build": "1.89.
|
|
40
|
+
"@tamagui/build": "1.89.27-1708112217600",
|
|
41
41
|
"react": "^18.2.0",
|
|
42
42
|
"react-dom": "^18.2.0"
|
|
43
43
|
},
|