@tamagui/elements 1.113.1 → 1.113.2
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/esm/index.native.js +40 -38
- package/dist/esm/index.native.js.map +6 -1
- package/package.json +3 -3
package/dist/esm/index.native.js
CHANGED
|
@@ -1,40 +1,42 @@
|
|
|
1
1
|
import { View, styled } from "@tamagui/core";
|
|
2
2
|
var Section = styled(View, {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Article
|
|
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
|
-
|
|
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
|
+
});
|
|
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/Users/n8/tamagui/code/ui/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
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/elements",
|
|
3
|
-
"version": "1.113.
|
|
3
|
+
"version": "1.113.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/core": "1.113.
|
|
34
|
+
"@tamagui/core": "1.113.2"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": "*"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@tamagui/build": "1.113.
|
|
40
|
+
"@tamagui/build": "1.113.2",
|
|
41
41
|
"react": "^18.2.0 || ^19.0.0",
|
|
42
42
|
"react-dom": "^18.2.0 || ^19.0.0"
|
|
43
43
|
},
|