@tamagui/react-native-svg 1.88.21 → 1.88.23
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
CHANGED
|
@@ -1,50 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
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);
|
|
16
|
-
var src_exports = {};
|
|
17
|
-
__export(src_exports, {
|
|
18
|
-
Circle: () => Circle,
|
|
19
|
-
ClipPath: () => ClipPath,
|
|
20
|
-
Defs: () => Defs,
|
|
21
|
-
Ellipse: () => Ellipse,
|
|
22
|
-
ForeignObject: () => ForeignObject,
|
|
23
|
-
G: () => G,
|
|
24
|
-
Image: () => Image,
|
|
25
|
-
Line: () => Line,
|
|
26
|
-
LinearGradient: () => LinearGradient,
|
|
27
|
-
Marker: () => Marker,
|
|
28
|
-
Mask: () => Mask,
|
|
29
|
-
Path: () => Path,
|
|
30
|
-
Pattern: () => Pattern,
|
|
31
|
-
Polygon: () => Polygon,
|
|
32
|
-
Polyline: () => Polyline,
|
|
33
|
-
RadialGradient: () => RadialGradient,
|
|
34
|
-
Rect: () => Rect,
|
|
35
|
-
Shape: () => Shape,
|
|
36
|
-
Stop: () => Stop,
|
|
37
|
-
Svg: () => Svg,
|
|
38
|
-
Symbol: () => Symbol2,
|
|
39
|
-
TSpan: () => TSpan,
|
|
40
|
-
Text: () => Text,
|
|
41
|
-
TextPath: () => TextPath,
|
|
42
|
-
Use: () => Use,
|
|
43
|
-
default: () => src_default
|
|
44
|
-
});
|
|
45
|
-
module.exports = __toCommonJS(src_exports);
|
|
46
|
-
var import_react = require("react");
|
|
47
|
-
const Circle = (p) => (0, import_react.createElement)("circle", p), ClipPath = (p) => (0, import_react.createElement)("clipPath", p), Defs = (p) => (0, import_react.createElement)("defs", p), Ellipse = (p) => (0, import_react.createElement)("ellipse", p), ForeignObject = (p) => (0, import_react.createElement)("foreignObject", p), G = (p) => (0, import_react.createElement)("g", p), Image = (p) => (0, import_react.createElement)("image", p), Line = (p) => (0, import_react.createElement)("line", p), LinearGradient = (p) => (0, import_react.createElement)("linearGradient", p), Marker = (p) => (0, import_react.createElement)("marker", p), Mask = (p) => (0, import_react.createElement)("mask", p), Path = (p) => (0, import_react.createElement)("path", p), Pattern = (p) => (0, import_react.createElement)("pattern", p), Polygon = (p) => (0, import_react.createElement)("polygon", p), Polyline = (p) => (0, import_react.createElement)("polyline", p), RadialGradient = (p) => (0, import_react.createElement)("radialGradient", p), Rect = (p) => (0, import_react.createElement)("rect", p), Shape = (p) => (0, import_react.createElement)("shape", p), Stop = (p) => (0, import_react.createElement)("stop", p), Svg = (p) => (0, import_react.createElement)("svg", p), Symbol2 = (p) => (0, import_react.createElement)("symbol", p), Text = (p) => (0, import_react.createElement)("text", p), TextPath = (p) => (0, import_react.createElement)("clipPath", p), TSpan = (p) => (0, import_react.createElement)("tSpan", p), Use = (p) => (0, import_react.createElement)("use", p);
|
|
1
|
+
import { createElement } from "react";
|
|
2
|
+
const Circle = (p) => createElement("circle", p), ClipPath = (p) => createElement("clipPath", p), Defs = (p) => createElement("defs", p), Ellipse = (p) => createElement("ellipse", p), ForeignObject = (p) => createElement("foreignObject", p), G = (p) => createElement("g", p), Image = (p) => createElement("image", p), Line = (p) => createElement("line", p), LinearGradient = (p) => createElement("linearGradient", p), Marker = (p) => createElement("marker", p), Mask = (p) => createElement("mask", p), Path = (p) => createElement("path", p), Pattern = (p) => createElement("pattern", p), Polygon = (p) => createElement("polygon", p), Polyline = (p) => createElement("polyline", p), RadialGradient = (p) => createElement("radialGradient", p), Rect = (p) => createElement("rect", p), Shape = (p) => createElement("shape", p), Stop = (p) => createElement("stop", p), Svg = (p) => createElement("svg", p), Symbol = (p) => createElement("symbol", p), Text = (p) => createElement("text", p), TextPath = (p) => createElement("clipPath", p), TSpan = (p) => createElement("tSpan", p), Use = (p) => createElement("use", p);
|
|
48
3
|
var src_default = {
|
|
49
4
|
Circle,
|
|
50
5
|
ClipPath,
|
|
@@ -66,14 +21,13 @@ var src_default = {
|
|
|
66
21
|
Shape,
|
|
67
22
|
Stop,
|
|
68
23
|
Svg,
|
|
69
|
-
Symbol
|
|
24
|
+
Symbol,
|
|
70
25
|
Text,
|
|
71
26
|
TextPath,
|
|
72
27
|
TSpan,
|
|
73
28
|
Use
|
|
74
29
|
};
|
|
75
|
-
|
|
76
|
-
0 && (module.exports = {
|
|
30
|
+
export {
|
|
77
31
|
Circle,
|
|
78
32
|
ClipPath,
|
|
79
33
|
Defs,
|
|
@@ -98,6 +52,7 @@ var src_default = {
|
|
|
98
52
|
TSpan,
|
|
99
53
|
Text,
|
|
100
54
|
TextPath,
|
|
101
|
-
Use
|
|
102
|
-
|
|
55
|
+
Use,
|
|
56
|
+
src_default as default
|
|
57
|
+
};
|
|
103
58
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.js"],
|
|
4
|
-
"mappings": "
|
|
5
|
-
"names": [
|
|
4
|
+
"mappings": "AAAA,SAAS,qBAAqB;AAEvB,MAAM,SAAS,CAAC,MAAM,cAAc,UAAU,CAAC,GACzC,WAAW,CAAC,MAAM,cAAc,YAAY,CAAC,GAC7C,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,UAAU,CAAC,MAAM,cAAc,WAAW,CAAC,GAC3C,gBAAgB,CAAC,MAAM,cAAc,iBAAiB,CAAC,GACvD,IAAI,CAAC,MAAM,cAAc,KAAK,CAAC,GAC/B,QAAQ,CAAC,MAAM,cAAc,SAAS,CAAC,GACvC,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,iBAAiB,CAAC,MAAM,cAAc,kBAAkB,CAAC,GACzD,SAAS,CAAC,MAAM,cAAc,UAAU,CAAC,GACzC,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,UAAU,CAAC,MAAM,cAAc,WAAW,CAAC,GAC3C,UAAU,CAAC,MAAM,cAAc,WAAW,CAAC,GAC3C,WAAW,CAAC,MAAM,cAAc,YAAY,CAAC,GAC7C,iBAAiB,CAAC,MAAM,cAAc,kBAAkB,CAAC,GACzD,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,QAAQ,CAAC,MAAM,cAAc,SAAS,CAAC,GACvC,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,MAAM,CAAC,MAAM,cAAc,OAAO,CAAC,GACnC,SAAS,CAAC,MAAM,cAAc,UAAU,CAAC,GACzC,OAAO,CAAC,MAAM,cAAc,QAAQ,CAAC,GACrC,WAAW,CAAC,MAAM,cAAc,YAAY,CAAC,GAC7C,QAAQ,CAAC,MAAM,cAAc,SAAS,CAAC,GACvC,MAAM,CAAC,MAAM,cAAc,OAAO,CAAC;AAEhD,IAAO,cAAQ;AAAA,EACb;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;",
|
|
5
|
+
"names": []
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/react-native-svg",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.23",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"clean:build": "tamagui-build clean:build"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@tamagui/build": "1.88.
|
|
16
|
+
"@tamagui/build": "1.88.23"
|
|
17
17
|
}
|
|
18
18
|
}
|