@tamagui/button-next 1.105.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/LICENSE +21 -0
- package/dist/cjs/Button.js +122 -0
- package/dist/cjs/Button.js.map +6 -0
- package/dist/cjs/Button.native.js +127 -0
- package/dist/cjs/Button.native.js.map +6 -0
- package/dist/cjs/Button.test.js +8 -0
- package/dist/cjs/Button.test.js.map +6 -0
- package/dist/cjs/Button.test.native.js +8 -0
- package/dist/cjs/Button.test.native.js.map +6 -0
- package/dist/cjs/createButton.js +41 -0
- package/dist/cjs/createButton.js.map +6 -0
- package/dist/cjs/createButton.native.js +45 -0
- package/dist/cjs/createButton.native.js.map +6 -0
- package/dist/cjs/index.js +15 -0
- package/dist/cjs/index.js.map +6 -0
- package/dist/cjs/index.native.js +20 -0
- package/dist/cjs/index.native.js.map +6 -0
- package/dist/esm/Button.js +109 -0
- package/dist/esm/Button.js.map +6 -0
- package/dist/esm/Button.mjs +110 -0
- package/dist/esm/Button.mjs.map +1 -0
- package/dist/esm/Button.native.js +109 -0
- package/dist/esm/Button.native.js.map +6 -0
- package/dist/esm/Button.test.js +10 -0
- package/dist/esm/Button.test.js.map +6 -0
- package/dist/esm/Button.test.mjs +10 -0
- package/dist/esm/Button.test.mjs.map +1 -0
- package/dist/esm/Button.test.native.js +10 -0
- package/dist/esm/Button.test.native.js.map +6 -0
- package/dist/esm/createButton.js +26 -0
- package/dist/esm/createButton.js.map +6 -0
- package/dist/esm/createButton.mjs +28 -0
- package/dist/esm/createButton.mjs.map +1 -0
- package/dist/esm/createButton.native.js +26 -0
- package/dist/esm/createButton.native.js.map +6 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +6 -0
- package/dist/esm/index.mjs +2 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/esm/index.native.js +2 -0
- package/dist/esm/index.native.js.map +6 -0
- package/dist/jsx/Button.js +109 -0
- package/dist/jsx/Button.js.map +6 -0
- package/dist/jsx/Button.mjs +110 -0
- package/dist/jsx/Button.mjs.map +1 -0
- package/dist/jsx/Button.native.js +109 -0
- package/dist/jsx/Button.native.js.map +6 -0
- package/dist/jsx/Button.test.js +10 -0
- package/dist/jsx/Button.test.js.map +6 -0
- package/dist/jsx/Button.test.mjs +10 -0
- package/dist/jsx/Button.test.mjs.map +1 -0
- package/dist/jsx/Button.test.native.js +10 -0
- package/dist/jsx/Button.test.native.js.map +6 -0
- package/dist/jsx/createButton.js +26 -0
- package/dist/jsx/createButton.js.map +6 -0
- package/dist/jsx/createButton.mjs +28 -0
- package/dist/jsx/createButton.mjs.map +1 -0
- package/dist/jsx/createButton.native.js +26 -0
- package/dist/jsx/createButton.native.js.map +6 -0
- package/dist/jsx/index.js +2 -0
- package/dist/jsx/index.js.map +6 -0
- package/dist/jsx/index.mjs +2 -0
- package/dist/jsx/index.mjs.map +1 -0
- package/dist/jsx/index.native.js +2 -0
- package/dist/jsx/index.native.js.map +6 -0
- package/package.json +52 -0
- package/src/Button.test.tsx +21 -0
- package/src/Button.tsx +134 -0
- package/src/createButton.tsx +42 -0
- package/src/index.ts +1 -0
- package/types/Button.d.ts +43 -0
- package/types/Button.d.ts.map +1 -0
- package/types/Button.test.d.ts +2 -0
- package/types/Button.test.d.ts.map +1 -0
- package/types/createButton.d.ts +18 -0
- package/types/createButton.d.ts.map +1 -0
- package/types/index.d.ts +2 -0
- package/types/index.d.ts.map +1 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Nate Wienert
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,122 @@
|
|
|
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 Button_exports = {};
|
|
16
|
+
__export(Button_exports, {
|
|
17
|
+
Button: () => Button,
|
|
18
|
+
ButtonContext: () => ButtonContext
|
|
19
|
+
});
|
|
20
|
+
module.exports = __toCommonJS(Button_exports);
|
|
21
|
+
var import_get_button_sized = require("@tamagui/get-button-sized"), import_text = require("@tamagui/text"), import_web = require("@tamagui/web"), import_createButton = require("./createButton");
|
|
22
|
+
const Frame = (0, import_web.styled)(import_web.View, {
|
|
23
|
+
variants: {
|
|
24
|
+
unstyled: {
|
|
25
|
+
false: {
|
|
26
|
+
size: "$true",
|
|
27
|
+
justifyContent: "center",
|
|
28
|
+
alignItems: "center",
|
|
29
|
+
flexWrap: "nowrap",
|
|
30
|
+
flexDirection: "row",
|
|
31
|
+
cursor: "pointer",
|
|
32
|
+
hoverTheme: !0,
|
|
33
|
+
pressTheme: !0,
|
|
34
|
+
backgrounded: !0,
|
|
35
|
+
borderWidth: 1,
|
|
36
|
+
borderColor: "transparent",
|
|
37
|
+
focusVisibleStyle: {
|
|
38
|
+
outlineColor: "$outlineColor",
|
|
39
|
+
outlineStyle: "solid",
|
|
40
|
+
outlineWidth: 2
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
variant: {
|
|
45
|
+
outlined: {
|
|
46
|
+
backgroundColor: "transparent",
|
|
47
|
+
borderWidth: 2,
|
|
48
|
+
borderColor: "$borderColor",
|
|
49
|
+
hoverStyle: {
|
|
50
|
+
backgroundColor: "transparent",
|
|
51
|
+
borderColor: "$borderColorHover"
|
|
52
|
+
},
|
|
53
|
+
pressStyle: {
|
|
54
|
+
backgroundColor: "transparent",
|
|
55
|
+
borderColor: "$borderColorPress"
|
|
56
|
+
},
|
|
57
|
+
focusVisibleStyle: {
|
|
58
|
+
backgroundColor: "transparent",
|
|
59
|
+
borderColor: "$borderColorFocus"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
size: {
|
|
64
|
+
"...size": import_get_button_sized.getButtonSized,
|
|
65
|
+
":number": import_get_button_sized.getButtonSized
|
|
66
|
+
},
|
|
67
|
+
disabled: {
|
|
68
|
+
true: {
|
|
69
|
+
pointerEvents: "none"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
defaultVariants: {
|
|
74
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
75
|
+
}
|
|
76
|
+
}), Text = (0, import_web.styled)(import_text.SizableText, {
|
|
77
|
+
variants: {
|
|
78
|
+
unstyled: {
|
|
79
|
+
false: {
|
|
80
|
+
userSelect: "none",
|
|
81
|
+
cursor: "pointer",
|
|
82
|
+
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
83
|
+
flexGrow: 0,
|
|
84
|
+
flexShrink: 1,
|
|
85
|
+
ellipse: !0,
|
|
86
|
+
color: "$color"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
defaultVariants: {
|
|
91
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
92
|
+
}
|
|
93
|
+
}), Icon = (0, import_web.styled)(import_text.SizableText, {
|
|
94
|
+
variants: {
|
|
95
|
+
unstyled: {
|
|
96
|
+
false: {
|
|
97
|
+
userSelect: "none",
|
|
98
|
+
cursor: "pointer",
|
|
99
|
+
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
100
|
+
flexGrow: 0,
|
|
101
|
+
flexShrink: 1,
|
|
102
|
+
ellipse: !0,
|
|
103
|
+
color: "$color"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
defaultVariants: {
|
|
108
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
109
|
+
}
|
|
110
|
+
}), ButtonContext = (0, import_web.createStyledContext)({
|
|
111
|
+
size: void 0,
|
|
112
|
+
variant: void 0
|
|
113
|
+
}), Button = (0, import_createButton.createButton)({
|
|
114
|
+
Frame,
|
|
115
|
+
Text,
|
|
116
|
+
Icon,
|
|
117
|
+
defaultVariants: {
|
|
118
|
+
size: void 0,
|
|
119
|
+
variant: void 0
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
//# sourceMappingURL=Button.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,8BAA+B,sCAC/B,cAA4B,0BAE5B,aAAkD,yBAClD,sBAA6B;AAM7B,MAAM,YAAQ,mBAAO,iBAAM;AAAA,EACzB,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,MAAM;AAAA,QACN,gBAAgB;AAAA,QAChB,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,eAAe;AAAA,QACf,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,YAAY;AAAA,QACZ,cAAc;AAAA,QACd,aAAa;AAAA,QACb,aAAa;AAAA,QAEb,mBAAmB;AAAA,UACjB,cAAc;AAAA,UACd,cAAc;AAAA,UACd,cAAc;AAAA,QAChB;AAAA,MACF;AAAA,IACF;AAAA,IAEA,SAAS;AAAA,MACP,UAAU;AAAA,QACR,iBAAiB;AAAA,QACjB,aAAa;AAAA,QACb,aAAa;AAAA,QAEb,YAAY;AAAA,UACV,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACf;AAAA,QAEA,YAAY;AAAA,UACV,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACf;AAAA,QAEA,mBAAmB;AAAA,UACjB,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACf;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW;AAAA,MACX,WAAW;AAAA,IACb;AAAA,IAEA,UAAU;AAAA,MACR,MAAM;AAAA,QACJ,eAAe;AAAA,MACjB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC7C;AACF,CAAC,GAEK,WAAO,mBAAO,yBAAa;AAAA,EAC/B,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC7C;AACF,CAAC,GAEK,WAAO,mBAAO,yBAAa;AAAA,EAC/B,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC7C;AACF,CAAC,GAEY,oBAAgB,gCAG1B;AAAA,EACD,MAAM;AAAA,EACN,SAAS;AACX,CAAC,GAEY,aAAS,kCAGnB;AAAA,EACD;AAAA,EACA;AAAA,EACA;AAAA,EACA,iBAAiB;AAAA,IACf,MAAM;AAAA,IACN,SAAS;AAAA,EACX;AACF,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
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 Button_exports = {};
|
|
17
|
+
__export(Button_exports, {
|
|
18
|
+
Button: () => Button,
|
|
19
|
+
ButtonContext: () => ButtonContext
|
|
20
|
+
});
|
|
21
|
+
module.exports = __toCommonJS(Button_exports);
|
|
22
|
+
var import_get_button_sized = require("@tamagui/get-button-sized"), import_text = require("@tamagui/text"), import_web = require("@tamagui/web"), import_createButton = require("./createButton"), Frame = (0, import_web.styled)(import_web.View, {
|
|
23
|
+
variants: {
|
|
24
|
+
unstyled: {
|
|
25
|
+
false: {
|
|
26
|
+
size: "$true",
|
|
27
|
+
justifyContent: "center",
|
|
28
|
+
alignItems: "center",
|
|
29
|
+
flexWrap: "nowrap",
|
|
30
|
+
flexDirection: "row",
|
|
31
|
+
cursor: "pointer",
|
|
32
|
+
hoverTheme: !0,
|
|
33
|
+
pressTheme: !0,
|
|
34
|
+
backgrounded: !0,
|
|
35
|
+
borderWidth: 1,
|
|
36
|
+
borderColor: "transparent",
|
|
37
|
+
focusVisibleStyle: {
|
|
38
|
+
outlineColor: "$outlineColor",
|
|
39
|
+
outlineStyle: "solid",
|
|
40
|
+
outlineWidth: 2
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
variant: {
|
|
45
|
+
outlined: {
|
|
46
|
+
backgroundColor: "transparent",
|
|
47
|
+
borderWidth: 2,
|
|
48
|
+
borderColor: "$borderColor",
|
|
49
|
+
hoverStyle: {
|
|
50
|
+
backgroundColor: "transparent",
|
|
51
|
+
borderColor: "$borderColorHover"
|
|
52
|
+
},
|
|
53
|
+
pressStyle: {
|
|
54
|
+
backgroundColor: "transparent",
|
|
55
|
+
borderColor: "$borderColorPress"
|
|
56
|
+
},
|
|
57
|
+
focusVisibleStyle: {
|
|
58
|
+
backgroundColor: "transparent",
|
|
59
|
+
borderColor: "$borderColorFocus"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
size: {
|
|
64
|
+
"...size": import_get_button_sized.getButtonSized,
|
|
65
|
+
":number": import_get_button_sized.getButtonSized
|
|
66
|
+
},
|
|
67
|
+
disabled: {
|
|
68
|
+
true: {
|
|
69
|
+
pointerEvents: "none"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
defaultVariants: {
|
|
74
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
75
|
+
}
|
|
76
|
+
}), Text = (0, import_web.styled)(import_text.SizableText, {
|
|
77
|
+
variants: {
|
|
78
|
+
unstyled: {
|
|
79
|
+
false: {
|
|
80
|
+
userSelect: "none",
|
|
81
|
+
cursor: "pointer",
|
|
82
|
+
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
83
|
+
flexGrow: 0,
|
|
84
|
+
flexShrink: 1,
|
|
85
|
+
ellipse: !0,
|
|
86
|
+
color: "$color"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
defaultVariants: {
|
|
91
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
92
|
+
}
|
|
93
|
+
}), Icon = (0, import_web.styled)(import_text.SizableText, {
|
|
94
|
+
variants: {
|
|
95
|
+
unstyled: {
|
|
96
|
+
false: {
|
|
97
|
+
userSelect: "none",
|
|
98
|
+
cursor: "pointer",
|
|
99
|
+
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
100
|
+
flexGrow: 0,
|
|
101
|
+
flexShrink: 1,
|
|
102
|
+
ellipse: !0,
|
|
103
|
+
color: "$color"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
defaultVariants: {
|
|
108
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
109
|
+
}
|
|
110
|
+
}), ButtonContext = (0, import_web.createStyledContext)({
|
|
111
|
+
size: void 0,
|
|
112
|
+
variant: void 0
|
|
113
|
+
}), Button = (0, import_createButton.createButton)({
|
|
114
|
+
Frame,
|
|
115
|
+
Text,
|
|
116
|
+
Icon,
|
|
117
|
+
defaultVariants: {
|
|
118
|
+
size: void 0,
|
|
119
|
+
variant: void 0
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
123
|
+
0 && (module.exports = {
|
|
124
|
+
Button,
|
|
125
|
+
ButtonContext
|
|
126
|
+
});
|
|
127
|
+
//# sourceMappingURL=Button.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/ui/button-next/src/Button.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;;;;;;8BAA+B,sCAC/B,cAA4B,0BAE5B,aAAkD,yBAClD,sBAA6B,2BAMvBA,YAAQC,mBAAOC,iBAAM;EACzBC,UAAU;IACRC,UAAU;MACRC,OAAO;QACLC,MAAM;QACNC,gBAAgB;QAChBC,YAAY;QACZC,UAAU;QACVC,eAAe;QACfC,QAAQ;QACRC,YAAY;QACZC,YAAY;QACZC,cAAc;QACdC,aAAa;QACbC,aAAa;QAEbC,mBAAmB;UACjBC,cAAc;UACdC,cAAc;UACdC,cAAc;QAChB;MACF;IACF;IAEAC,SAAS;MACPC,UAAU;QACRC,iBAAiB;QACjBR,aAAa;QACbC,aAAa;QAEbQ,YAAY;UACVD,iBAAiB;UACjBP,aAAa;QACf;QAEAS,YAAY;UACVF,iBAAiB;UACjBP,aAAa;QACf;QAEAC,mBAAmB;UACjBM,iBAAiB;UACjBP,aAAa;QACf;MACF;IACF;IAEAV,MAAM;MACJ,WAAWoB;MACX,WAAWA;IACb;IAEAC,UAAU;MACRC,MAAM;QACJC,eAAe;MACjB;IACF;EACF;EAEAC,iBAAiB;IACf1B,UAAU2B,QAAQC,IAAIC,qBAAqB;EAC7C;AACF,CAAA,GAEMC,WAAOjC,mBAAOkC,yBAAa;EAC/BhC,UAAU;IACRC,UAAU;MACRC,OAAO;QACL+B,YAAY;QACZzB,QAAQ;;QAER0B,UAAU;QACVC,YAAY;QACZC,SAAS;QACTC,OAAO;MACT;IACF;EACF;EAEAV,iBAAiB;IACf1B,UAAU2B,QAAQC,IAAIC,qBAAqB;EAC7C;AACF,CAAA,GAEMQ,WAAOxC,mBAAOkC,yBAAa;EAC/BhC,UAAU;IACRC,UAAU;MACRC,OAAO;QACL+B,YAAY;QACZzB,QAAQ;;QAER0B,UAAU;QACVC,YAAY;QACZC,SAAS;QACTC,OAAO;MACT;IACF;EACF;EAEAV,iBAAiB;IACf1B,UAAU2B,QAAQC,IAAIC,qBAAqB;EAC7C;AACF,CAAA,GAEaS,oBAAgBC,gCAG1B;EACDrC,MAAMsC;EACNvB,SAASuB;AACX,CAAA,GAEaC,aAASC,kCAGnB;EACD9C;EACAkC;EACAO;EACAX,iBAAiB;IACfxB,MAAMsC;IACNvB,SAASuB;EACX;AACF,CAAA;",
|
|
5
|
+
"names": ["Frame", "styled", "View", "variants", "unstyled", "false", "size", "justifyContent", "alignItems", "flexWrap", "flexDirection", "cursor", "hoverTheme", "pressTheme", "backgrounded", "borderWidth", "borderColor", "focusVisibleStyle", "outlineColor", "outlineStyle", "outlineWidth", "variant", "outlined", "backgroundColor", "hoverStyle", "pressStyle", "getButtonSized", "disabled", "true", "pointerEvents", "defaultVariants", "process", "env", "TAMAGUI_HEADLESS", "Text", "SizableText", "userSelect", "flexGrow", "flexShrink", "ellipse", "color", "Icon", "ButtonContext", "createStyledContext", "undefined", "Button", "createButton"]
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var import_config_default = require("@tamagui/config-default"), import_core = require("@tamagui/core"), import_vitest = require("vitest");
|
|
2
|
+
const conf = (0, import_core.createTamagui)((0, import_config_default.getDefaultTamaguiConfig)());
|
|
3
|
+
(0, import_vitest.describe)("Button", () => {
|
|
4
|
+
(0, import_vitest.test)("123", () => {
|
|
5
|
+
(0, import_vitest.expect)(!0).toBeTruthy();
|
|
6
|
+
});
|
|
7
|
+
});
|
|
8
|
+
//# sourceMappingURL=Button.test.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.test.tsx"],
|
|
4
|
+
"mappings": "AAAA,4BAAwC,oCACxC,cAA8B,0BAC9B,gBAAuC;AAEvC,MAAM,WAAO,+BAAc,+CAAwB,CAAC;AAAA,IAEpD,wBAAS,UAAU,MAAM;AACvB,0BAAK,OAAO,MAAM;AAChB,8BAAO,EAAI,EAAE,WAAW;AAAA,EAC1B,CAAC;AAWH,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var import_config_default = require("@tamagui/config-default"), import_core = require("@tamagui/core"), import_vitest = require("vitest"), conf = (0, import_core.createTamagui)((0, import_config_default.getDefaultTamaguiConfig)());
|
|
3
|
+
(0, import_vitest.describe)("Button", function() {
|
|
4
|
+
(0, import_vitest.test)("123", function() {
|
|
5
|
+
(0, import_vitest.expect)(!0).toBeTruthy();
|
|
6
|
+
});
|
|
7
|
+
});
|
|
8
|
+
//# sourceMappingURL=Button.test.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/ui/button-next/src/Button.test.tsx"],
|
|
4
|
+
"mappings": ";AAAA,4BAAwC,oCACxC,cAA8B,0BAC9B,gBAAuC,mBAEjCA,WAAOC,+BAAcC,+CAAAA,CAAAA;IAE3BC,wBAAS,UAAU,WAAA;AACjBC,0BAAM,OAAM,WAAA;AACVC,8BAAO,EAAA,EAAMC,WAAU;EACzB,CAAA;AAWF,CAAA;",
|
|
5
|
+
"names": ["conf", "createTamagui", "getDefaultTamaguiConfig", "describe", "test", "expect", "toBeTruthy"]
|
|
6
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
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 createButton_exports = {};
|
|
16
|
+
__export(createButton_exports, {
|
|
17
|
+
createButton: () => createButton
|
|
18
|
+
});
|
|
19
|
+
module.exports = __toCommonJS(createButton_exports);
|
|
20
|
+
var import_helpers = require("@tamagui/helpers"), import_web = require("@tamagui/web");
|
|
21
|
+
const createButton = (options) => {
|
|
22
|
+
const context = (0, import_web.createStyledContext)(options.defaultVariants), name = options.name ?? "button", Frame = (0, import_web.styled)(options.Frame, {
|
|
23
|
+
context,
|
|
24
|
+
name,
|
|
25
|
+
group: name,
|
|
26
|
+
role: "button",
|
|
27
|
+
tag: "button"
|
|
28
|
+
}), Icon = (0, import_web.styled)(options.Icon, {
|
|
29
|
+
name,
|
|
30
|
+
context
|
|
31
|
+
}), Text = (0, import_web.styled)(options.Text, {
|
|
32
|
+
name,
|
|
33
|
+
context
|
|
34
|
+
});
|
|
35
|
+
return (0, import_helpers.withStaticProperties)(Frame, {
|
|
36
|
+
Apply: context.Provider,
|
|
37
|
+
Text,
|
|
38
|
+
Icon
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
//# sourceMappingURL=createButton.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/createButton.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAqC,6BAMrC,aAA4C;AAErC,MAAM,eAAe,CAAuC,YAM7D;AACJ,QAAM,cAAU,gCAAoB,QAAQ,eAAe,GACrD,OAAO,QAAQ,QAAQ,UAEvB,YAAQ,mBAAO,QAAQ,OAAO;AAAA,IAClC;AAAA,IACA;AAAA,IACA,OAAO;AAAA,IACP,MAAM;AAAA,IACN,KAAK;AAAA,EACP,CAAC,GAEK,WAAO,mBAAO,QAAQ,MAAM;AAAA,IAChC;AAAA,IACA;AAAA,EACF,CAAC,GAEK,WAAO,mBAAO,QAAQ,MAAM;AAAA,IAChC;AAAA,IACA;AAAA,EACF,CAAC;AAED,aAAO,qCAAqB,OAAO;AAAA,IACjC,OAAO,QAAQ;AAAA,IACf;AAAA,IACA;AAAA,EACF,CAAC;AACH;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
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 createButton_exports = {};
|
|
17
|
+
__export(createButton_exports, {
|
|
18
|
+
createButton: () => createButton
|
|
19
|
+
});
|
|
20
|
+
module.exports = __toCommonJS(createButton_exports);
|
|
21
|
+
var import_helpers = require("@tamagui/helpers"), import_web = require("@tamagui/web"), createButton = function(options) {
|
|
22
|
+
var context = (0, import_web.createStyledContext)(options.defaultVariants), _options_name, name = (_options_name = options.name) !== null && _options_name !== void 0 ? _options_name : "button", Frame = (0, import_web.styled)(options.Frame, {
|
|
23
|
+
context,
|
|
24
|
+
name,
|
|
25
|
+
group: name,
|
|
26
|
+
role: "button",
|
|
27
|
+
tag: "button"
|
|
28
|
+
}), Icon = (0, import_web.styled)(options.Icon, {
|
|
29
|
+
name,
|
|
30
|
+
context
|
|
31
|
+
}), Text = (0, import_web.styled)(options.Text, {
|
|
32
|
+
name,
|
|
33
|
+
context
|
|
34
|
+
});
|
|
35
|
+
return (0, import_helpers.withStaticProperties)(Frame, {
|
|
36
|
+
Apply: context.Provider,
|
|
37
|
+
Text,
|
|
38
|
+
Icon
|
|
39
|
+
});
|
|
40
|
+
};
|
|
41
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
42
|
+
0 && (module.exports = {
|
|
43
|
+
createButton
|
|
44
|
+
});
|
|
45
|
+
//# sourceMappingURL=createButton.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/ui/button-next/src/createButton.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;;;;;qBAAqC,6BAMrC,aAA4C,yBAE/BA,eAAe,SAAuCC,SAAAA;AAOjE,MAAMC,cAAUC,gCAAoBF,QAAQG,eAAe,GAC9CH,eAAPI,QAAOJ,gBAAAA,QAAQI,UAAI,QAAZJ,kBAAAA,SAAAA,gBAAgB,UAEvBK,YAAQC,mBAAON,QAAQK,OAAO;IAClCJ;IACAG;IACAG,OAAOH;IACPI,MAAM;IACNC,KAAK;EACP,CAAA,GAEMC,WAAOJ,mBAAON,QAAQU,MAAM;IAChCN;IACAH;EACF,CAAA,GAEMU,WAAOL,mBAAON,QAAQW,MAAM;IAChCP;IACAH;EACF,CAAA;AAEA,aAAOW,qCAAqBP,OAAO;IACjCQ,OAAOZ,QAAQa;IACfH;IACAD;EACF,CAAA;AACF;",
|
|
5
|
+
"names": ["createButton", "options", "context", "createStyledContext", "defaultVariants", "name", "Frame", "styled", "group", "role", "tag", "Icon", "Text", "withStaticProperties", "Apply", "Provider"]
|
|
6
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __copyProps = (to, from, except, desc) => {
|
|
6
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
7
|
+
for (let key of __getOwnPropNames(from))
|
|
8
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
9
|
+
return to;
|
|
10
|
+
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
11
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
12
|
+
var src_exports = {};
|
|
13
|
+
module.exports = __toCommonJS(src_exports);
|
|
14
|
+
__reExport(src_exports, require("./Button"), module.exports);
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from == "object" || typeof from == "function")
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
+
return to;
|
|
11
|
+
}, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
12
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
|
|
13
|
+
var src_exports = {};
|
|
14
|
+
module.exports = __toCommonJS(src_exports);
|
|
15
|
+
__reExport(src_exports, require("./Button"), module.exports);
|
|
16
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
17
|
+
0 && (module.exports = {
|
|
18
|
+
...require("./Button")
|
|
19
|
+
});
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { getButtonSized } from "@tamagui/get-button-sized";
|
|
2
|
+
import { SizableText } from "@tamagui/text";
|
|
3
|
+
import { createStyledContext, styled, View } from "@tamagui/web";
|
|
4
|
+
import { createButton } from "./createButton";
|
|
5
|
+
const Frame = styled(View, {
|
|
6
|
+
variants: {
|
|
7
|
+
unstyled: {
|
|
8
|
+
false: {
|
|
9
|
+
size: "$true",
|
|
10
|
+
justifyContent: "center",
|
|
11
|
+
alignItems: "center",
|
|
12
|
+
flexWrap: "nowrap",
|
|
13
|
+
flexDirection: "row",
|
|
14
|
+
cursor: "pointer",
|
|
15
|
+
hoverTheme: !0,
|
|
16
|
+
pressTheme: !0,
|
|
17
|
+
backgrounded: !0,
|
|
18
|
+
borderWidth: 1,
|
|
19
|
+
borderColor: "transparent",
|
|
20
|
+
focusVisibleStyle: {
|
|
21
|
+
outlineColor: "$outlineColor",
|
|
22
|
+
outlineStyle: "solid",
|
|
23
|
+
outlineWidth: 2
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
variant: {
|
|
28
|
+
outlined: {
|
|
29
|
+
backgroundColor: "transparent",
|
|
30
|
+
borderWidth: 2,
|
|
31
|
+
borderColor: "$borderColor",
|
|
32
|
+
hoverStyle: {
|
|
33
|
+
backgroundColor: "transparent",
|
|
34
|
+
borderColor: "$borderColorHover"
|
|
35
|
+
},
|
|
36
|
+
pressStyle: {
|
|
37
|
+
backgroundColor: "transparent",
|
|
38
|
+
borderColor: "$borderColorPress"
|
|
39
|
+
},
|
|
40
|
+
focusVisibleStyle: {
|
|
41
|
+
backgroundColor: "transparent",
|
|
42
|
+
borderColor: "$borderColorFocus"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
size: {
|
|
47
|
+
"...size": getButtonSized,
|
|
48
|
+
":number": getButtonSized
|
|
49
|
+
},
|
|
50
|
+
disabled: {
|
|
51
|
+
true: {
|
|
52
|
+
pointerEvents: "none"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
defaultVariants: {
|
|
57
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
58
|
+
}
|
|
59
|
+
}), Text = styled(SizableText, {
|
|
60
|
+
variants: {
|
|
61
|
+
unstyled: {
|
|
62
|
+
false: {
|
|
63
|
+
userSelect: "none",
|
|
64
|
+
cursor: "pointer",
|
|
65
|
+
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
66
|
+
flexGrow: 0,
|
|
67
|
+
flexShrink: 1,
|
|
68
|
+
ellipse: !0,
|
|
69
|
+
color: "$color"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
defaultVariants: {
|
|
74
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
75
|
+
}
|
|
76
|
+
}), Icon = styled(SizableText, {
|
|
77
|
+
variants: {
|
|
78
|
+
unstyled: {
|
|
79
|
+
false: {
|
|
80
|
+
userSelect: "none",
|
|
81
|
+
cursor: "pointer",
|
|
82
|
+
// flexGrow 1 leads to inconsistent native style where text pushes to start of view
|
|
83
|
+
flexGrow: 0,
|
|
84
|
+
flexShrink: 1,
|
|
85
|
+
ellipse: !0,
|
|
86
|
+
color: "$color"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
defaultVariants: {
|
|
91
|
+
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
92
|
+
}
|
|
93
|
+
}), ButtonContext = createStyledContext({
|
|
94
|
+
size: void 0,
|
|
95
|
+
variant: void 0
|
|
96
|
+
}), Button = createButton({
|
|
97
|
+
Frame,
|
|
98
|
+
Text,
|
|
99
|
+
Icon,
|
|
100
|
+
defaultVariants: {
|
|
101
|
+
size: void 0,
|
|
102
|
+
variant: void 0
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
export {
|
|
106
|
+
Button,
|
|
107
|
+
ButtonContext
|
|
108
|
+
};
|
|
109
|
+
//# sourceMappingURL=Button.js.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.tsx"],
|
|
4
|
+
"mappings": "AAAA,SAAS,sBAAsB;AAC/B,SAAS,mBAAmB;AAE5B,SAAS,qBAAqB,QAAQ,YAAY;AAClD,SAAS,oBAAoB;AAM7B,MAAM,QAAQ,OAAO,MAAM;AAAA,EACzB,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,MAAM;AAAA,QACN,gBAAgB;AAAA,QAChB,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,eAAe;AAAA,QACf,QAAQ;AAAA,QACR,YAAY;AAAA,QACZ,YAAY;AAAA,QACZ,cAAc;AAAA,QACd,aAAa;AAAA,QACb,aAAa;AAAA,QAEb,mBAAmB;AAAA,UACjB,cAAc;AAAA,UACd,cAAc;AAAA,UACd,cAAc;AAAA,QAChB;AAAA,MACF;AAAA,IACF;AAAA,IAEA,SAAS;AAAA,MACP,UAAU;AAAA,QACR,iBAAiB;AAAA,QACjB,aAAa;AAAA,QACb,aAAa;AAAA,QAEb,YAAY;AAAA,UACV,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACf;AAAA,QAEA,YAAY;AAAA,UACV,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACf;AAAA,QAEA,mBAAmB;AAAA,UACjB,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACf;AAAA,MACF;AAAA,IACF;AAAA,IAEA,MAAM;AAAA,MACJ,WAAW;AAAA,MACX,WAAW;AAAA,IACb;AAAA,IAEA,UAAU;AAAA,MACR,MAAM;AAAA,QACJ,eAAe;AAAA,MACjB;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC7C;AACF,CAAC,GAEK,OAAO,OAAO,aAAa;AAAA,EAC/B,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC7C;AACF,CAAC,GAEK,OAAO,OAAO,aAAa;AAAA,EAC/B,UAAU;AAAA,IACR,UAAU;AAAA,MACR,OAAO;AAAA,QACL,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACT;AAAA,IACF;AAAA,EACF;AAAA,EAEA,iBAAiB;AAAA,IACf,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC7C;AACF,CAAC,GAEY,gBAAgB,oBAG1B;AAAA,EACD,MAAM;AAAA,EACN,SAAS;AACX,CAAC,GAEY,SAAS,aAGnB;AAAA,EACD;AAAA,EACA;AAAA,EACA;AAAA,EACA,iBAAiB;AAAA,IACf,MAAM;AAAA,IACN,SAAS;AAAA,EACX;AACF,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|