@tamagui/button-next 1.135.4-1761749240853 → 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/Button.native.js +103 -113
- package/dist/cjs/Button.native.js.map +6 -1
- package/dist/cjs/Button.test.native.js +4 -8
- package/dist/cjs/Button.test.native.js.map +6 -1
- package/dist/cjs/createButton.native.js +34 -44
- package/dist/cjs/createButton.native.js.map +6 -1
- package/dist/cjs/index.native.js +12 -13
- package/dist/cjs/index.native.js.map +6 -1
- package/dist/jsx/Button.native.js +97 -125
- package/dist/jsx/Button.native.js.map +6 -1
- package/dist/jsx/Button.test.native.js +8 -10
- package/dist/jsx/Button.test.native.js.map +6 -1
- package/dist/jsx/createButton.native.js +26 -55
- package/dist/jsx/createButton.native.js.map +6 -1
- package/dist/jsx/index.native.js +2 -21
- package/dist/jsx/index.native.js.map +6 -1
- package/package.json +11 -12
|
@@ -1,137 +1,127 @@
|
|
|
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 Button_exports = {};
|
|
24
17
|
__export(Button_exports, {
|
|
25
18
|
Button: () => Button,
|
|
26
19
|
ButtonContext: () => ButtonContext
|
|
27
20
|
});
|
|
28
21
|
module.exports = __toCommonJS(Button_exports);
|
|
29
|
-
var import_get_button_sized = require("@tamagui/get-button-sized"),
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
focusVisibleStyle: {
|
|
49
|
-
outlineColor: "$outlineColor",
|
|
50
|
-
outlineStyle: "solid",
|
|
51
|
-
outlineWidth: 2
|
|
52
|
-
}
|
|
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
|
|
53
41
|
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
variant: {
|
|
45
|
+
outlined: {
|
|
46
|
+
backgroundColor: "transparent",
|
|
47
|
+
borderWidth: 2,
|
|
48
|
+
borderColor: "$borderColor",
|
|
49
|
+
hoverStyle: {
|
|
57
50
|
backgroundColor: "transparent",
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
},
|
|
68
|
-
focusVisibleStyle: {
|
|
69
|
-
backgroundColor: "transparent",
|
|
70
|
-
borderColor: "$borderColorFocus"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
size: {
|
|
75
|
-
"...size": import_get_button_sized.getButtonSized,
|
|
76
|
-
":number": import_get_button_sized.getButtonSized
|
|
77
|
-
},
|
|
78
|
-
disabled: {
|
|
79
|
-
true: {
|
|
80
|
-
pointerEvents: "none"
|
|
51
|
+
borderColor: "$borderColorHover"
|
|
52
|
+
},
|
|
53
|
+
pressStyle: {
|
|
54
|
+
backgroundColor: "transparent",
|
|
55
|
+
borderColor: "$borderColorPress"
|
|
56
|
+
},
|
|
57
|
+
focusVisibleStyle: {
|
|
58
|
+
backgroundColor: "transparent",
|
|
59
|
+
borderColor: "$borderColorFocus"
|
|
81
60
|
}
|
|
82
61
|
}
|
|
83
62
|
},
|
|
84
|
-
|
|
85
|
-
|
|
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
|
+
}
|
|
86
71
|
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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"
|
|
100
87
|
}
|
|
101
|
-
},
|
|
102
|
-
defaultVariants: {
|
|
103
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
104
88
|
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
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"
|
|
118
104
|
}
|
|
119
|
-
},
|
|
120
|
-
defaultVariants: {
|
|
121
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
122
105
|
}
|
|
123
|
-
}
|
|
124
|
-
|
|
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: {
|
|
125
118
|
size: void 0,
|
|
126
119
|
variant: void 0
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
}
|
|
136
|
-
});
|
|
137
|
-
//# sourceMappingURL=Button.native.js.map
|
|
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
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,8BAA+B,sCAC/B,cAA4B,0BAC5B,aAAkD,yBAClD,sBAA6B,2BACzB,YAAQ,mBAAO,iBAAM;AAAA,EACrB,UAAU;AAAA,IACN,UAAU;AAAA,MACN,OAAO;AAAA,QACH,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,QACb,mBAAmB;AAAA,UACf,cAAc;AAAA,UACd,cAAc;AAAA,UACd,cAAc;AAAA,QAClB;AAAA,MACJ;AAAA,IACJ;AAAA,IACA,SAAS;AAAA,MACL,UAAU;AAAA,QACN,iBAAiB;AAAA,QACjB,aAAa;AAAA,QACb,aAAa;AAAA,QACb,YAAY;AAAA,UACR,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACjB;AAAA,QACA,YAAY;AAAA,UACR,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACjB;AAAA,QACA,mBAAmB;AAAA,UACf,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACjB;AAAA,MACJ;AAAA,IACJ;AAAA,IACA,MAAM;AAAA,MACF,WAAW;AAAA,MACX,WAAW;AAAA,IACf;AAAA,IACA,UAAU;AAAA,MACN,MAAM;AAAA,QACF,eAAe;AAAA,MACnB;AAAA,IACJ;AAAA,EACJ;AAAA,EACA,iBAAiB;AAAA,IACb,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC/C;AACJ,CAAC,GACG,WAAO,mBAAO,yBAAa;AAAA,EAC3B,UAAU;AAAA,IACN,UAAU;AAAA,MACN,OAAO;AAAA,QACH,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACX;AAAA,IACJ;AAAA,EACJ;AAAA,EACA,iBAAiB;AAAA,IACb,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC/C;AACJ,CAAC,GACG,WAAO,mBAAO,yBAAa;AAAA,EAC3B,UAAU;AAAA,IACN,UAAU;AAAA,MACN,OAAO;AAAA,QACH,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACX;AAAA,IACJ;AAAA,EACJ;AAAA,EACA,iBAAiB;AAAA,IACb,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC/C;AACJ,CAAC,GACU,oBAAgB,gCAAoB;AAAA,EAC3C,MAAM;AAAA,EACN,SAAS;AACb,CAAC,GACU,aAAS,kCAAa;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AAAA,EACA,iBAAiB;AAAA,IACb,MAAM;AAAA,IACN,SAAS;AAAA,EACb;AACJ,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import_vitest = require("vitest"),
|
|
6
|
-
conf = (0, import_core.createTamagui)((0, import_config_default.getDefaultTamaguiConfig)());
|
|
7
|
-
(0, import_vitest.describe)("Button", function () {
|
|
8
|
-
(0, import_vitest.test)("123", function () {
|
|
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() {
|
|
9
5
|
(0, import_vitest.expect)(!0).toBeTruthy();
|
|
10
6
|
});
|
|
11
7
|
});
|
|
12
|
-
//# sourceMappingURL=Button.test.
|
|
8
|
+
//# sourceMappingURL=Button.test.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.test.tsx"],
|
|
4
|
+
"mappings": ";AAAA,4BAAwC,oCACxC,cAA8B,0BAC9B,gBAAuC,mBACnC,WAAO,+BAAc,+CAAwB,CAAC;AAAA,IAClD,wBAAS,UAAU,WAAW;AAC1B,0BAAK,OAAO,WAAW;AACnB,8BAAO,EAAI,EAAE,WAAW;AAAA,EAC5B,CAAC;AACL,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -1,55 +1,45 @@
|
|
|
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 createButton_exports = {};
|
|
24
17
|
__export(createButton_exports, {
|
|
25
18
|
createButton: () => createButton
|
|
26
19
|
});
|
|
27
20
|
module.exports = __toCommonJS(createButton_exports);
|
|
28
|
-
var import_helpers = require("@tamagui/helpers"),
|
|
29
|
-
import_web =
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
});
|
|
54
|
-
};
|
|
55
|
-
//# sourceMappingURL=createButton.native.js.map
|
|
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
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/createButton.tsx"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,qBAAqC,6BACrC,aAA4C,yBACjC,eAAe,SAAS,SAAS;AACxC,MAAI,cAAU,gCAAoB,QAAQ,eAAe,GACrD,eACA,QAAQ,gBAAgB,QAAQ,UAAU,QAAQ,kBAAkB,SAAS,gBAAgB,UAC7F,YAAQ,mBAAO,QAAQ,OAAO;AAAA,IAC9B;AAAA,IACA;AAAA,IACA,OAAO;AAAA,IACP,MAAM;AAAA,IACN,KAAK;AAAA,EACT,CAAC,GACG,WAAO,mBAAO,QAAQ,MAAM;AAAA,IAC5B;AAAA,IACA;AAAA,EACJ,CAAC,GACG,WAAO,mBAAO,QAAQ,MAAM;AAAA,IAC5B;AAAA,IACA;AAAA,EACJ,CAAC;AACD,aAAO,qCAAqB,OAAO;AAAA,IAC/B,OAAO,QAAQ;AAAA,IACf;AAAA,IACA;AAAA,EACJ,CAAC;AACL;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/dist/cjs/index.native.js
CHANGED
|
@@ -1,21 +1,20 @@
|
|
|
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 __copyProps = (to, from, except, desc) => {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
__reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
16
|
-
value: !0
|
|
17
|
-
}), mod);
|
|
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);
|
|
18
13
|
var index_exports = {};
|
|
19
14
|
module.exports = __toCommonJS(index_exports);
|
|
20
|
-
__reExport(index_exports, require("./Button
|
|
21
|
-
|
|
15
|
+
__reExport(index_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
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/index.ts"],
|
|
4
|
+
"mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,0BAAc,qBAAd;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -1,137 +1,109 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
__export(Button_exports, {
|
|
25
|
-
Button: () => Button,
|
|
26
|
-
ButtonContext: () => ButtonContext
|
|
27
|
-
});
|
|
28
|
-
module.exports = __toCommonJS(Button_exports);
|
|
29
|
-
var import_get_button_sized = require("@tamagui/get-button-sized"),
|
|
30
|
-
import_text = require("@tamagui/text"),
|
|
31
|
-
import_web = require("@tamagui/web"),
|
|
32
|
-
import_createButton = require("./createButton.native.js"),
|
|
33
|
-
Frame = (0, import_web.styled)(import_web.View, {
|
|
34
|
-
variants: {
|
|
35
|
-
unstyled: {
|
|
36
|
-
false: {
|
|
37
|
-
size: "$true",
|
|
38
|
-
justifyContent: "center",
|
|
39
|
-
alignItems: "center",
|
|
40
|
-
flexWrap: "nowrap",
|
|
41
|
-
flexDirection: "row",
|
|
42
|
-
cursor: "pointer",
|
|
43
|
-
hoverTheme: !0,
|
|
44
|
-
pressTheme: !0,
|
|
45
|
-
backgrounded: !0,
|
|
46
|
-
borderWidth: 1,
|
|
47
|
-
borderColor: "transparent",
|
|
48
|
-
focusVisibleStyle: {
|
|
49
|
-
outlineColor: "$outlineColor",
|
|
50
|
-
outlineStyle: "solid",
|
|
51
|
-
outlineWidth: 2
|
|
52
|
-
}
|
|
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
|
+
var 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
|
|
53
24
|
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
variant: {
|
|
28
|
+
outlined: {
|
|
29
|
+
backgroundColor: "transparent",
|
|
30
|
+
borderWidth: 2,
|
|
31
|
+
borderColor: "$borderColor",
|
|
32
|
+
hoverStyle: {
|
|
57
33
|
backgroundColor: "transparent",
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
},
|
|
68
|
-
focusVisibleStyle: {
|
|
69
|
-
backgroundColor: "transparent",
|
|
70
|
-
borderColor: "$borderColorFocus"
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
size: {
|
|
75
|
-
"...size": import_get_button_sized.getButtonSized,
|
|
76
|
-
":number": import_get_button_sized.getButtonSized
|
|
77
|
-
},
|
|
78
|
-
disabled: {
|
|
79
|
-
true: {
|
|
80
|
-
pointerEvents: "none"
|
|
34
|
+
borderColor: "$borderColorHover"
|
|
35
|
+
},
|
|
36
|
+
pressStyle: {
|
|
37
|
+
backgroundColor: "transparent",
|
|
38
|
+
borderColor: "$borderColorPress"
|
|
39
|
+
},
|
|
40
|
+
focusVisibleStyle: {
|
|
41
|
+
backgroundColor: "transparent",
|
|
42
|
+
borderColor: "$borderColorFocus"
|
|
81
43
|
}
|
|
82
44
|
}
|
|
83
45
|
},
|
|
84
|
-
|
|
85
|
-
|
|
46
|
+
size: {
|
|
47
|
+
"...size": getButtonSized,
|
|
48
|
+
":number": getButtonSized
|
|
49
|
+
},
|
|
50
|
+
disabled: {
|
|
51
|
+
true: {
|
|
52
|
+
pointerEvents: "none"
|
|
53
|
+
}
|
|
86
54
|
}
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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"
|
|
100
70
|
}
|
|
101
|
-
},
|
|
102
|
-
defaultVariants: {
|
|
103
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
104
71
|
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
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"
|
|
118
87
|
}
|
|
119
|
-
},
|
|
120
|
-
defaultVariants: {
|
|
121
|
-
unstyled: process.env.TAMAGUI_HEADLESS === "1"
|
|
122
88
|
}
|
|
123
|
-
}
|
|
124
|
-
|
|
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: {
|
|
125
101
|
size: void 0,
|
|
126
102
|
variant: void 0
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
variant: void 0
|
|
135
|
-
}
|
|
136
|
-
});
|
|
137
|
-
//# sourceMappingURL=Button.native.js.map
|
|
103
|
+
}
|
|
104
|
+
});
|
|
105
|
+
export {
|
|
106
|
+
Button,
|
|
107
|
+
ButtonContext
|
|
108
|
+
};
|
|
109
|
+
//# sourceMappingURL=Button.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.tsx"],
|
|
4
|
+
"mappings": "AAAA,SAAS,sBAAsB;AAC/B,SAAS,mBAAmB;AAC5B,SAAS,qBAAqB,QAAQ,YAAY;AAClD,SAAS,oBAAoB;AAC7B,IAAI,QAAQ,OAAO,MAAM;AAAA,EACrB,UAAU;AAAA,IACN,UAAU;AAAA,MACN,OAAO;AAAA,QACH,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,QACb,mBAAmB;AAAA,UACf,cAAc;AAAA,UACd,cAAc;AAAA,UACd,cAAc;AAAA,QAClB;AAAA,MACJ;AAAA,IACJ;AAAA,IACA,SAAS;AAAA,MACL,UAAU;AAAA,QACN,iBAAiB;AAAA,QACjB,aAAa;AAAA,QACb,aAAa;AAAA,QACb,YAAY;AAAA,UACR,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACjB;AAAA,QACA,YAAY;AAAA,UACR,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACjB;AAAA,QACA,mBAAmB;AAAA,UACf,iBAAiB;AAAA,UACjB,aAAa;AAAA,QACjB;AAAA,MACJ;AAAA,IACJ;AAAA,IACA,MAAM;AAAA,MACF,WAAW;AAAA,MACX,WAAW;AAAA,IACf;AAAA,IACA,UAAU;AAAA,MACN,MAAM;AAAA,QACF,eAAe;AAAA,MACnB;AAAA,IACJ;AAAA,EACJ;AAAA,EACA,iBAAiB;AAAA,IACb,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC/C;AACJ,CAAC,GACG,OAAO,OAAO,aAAa;AAAA,EAC3B,UAAU;AAAA,IACN,UAAU;AAAA,MACN,OAAO;AAAA,QACH,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACX;AAAA,IACJ;AAAA,EACJ;AAAA,EACA,iBAAiB;AAAA,IACb,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC/C;AACJ,CAAC,GACG,OAAO,OAAO,aAAa;AAAA,EAC3B,UAAU;AAAA,IACN,UAAU;AAAA,MACN,OAAO;AAAA,QACH,YAAY;AAAA,QACZ,QAAQ;AAAA;AAAA,QAER,UAAU;AAAA,QACV,YAAY;AAAA,QACZ,SAAS;AAAA,QACT,OAAO;AAAA,MACX;AAAA,IACJ;AAAA,EACJ;AAAA,EACA,iBAAiB;AAAA,IACb,UAAU,QAAQ,IAAI,qBAAqB;AAAA,EAC/C;AACJ,CAAC,GACU,gBAAgB,oBAAoB;AAAA,EAC3C,MAAM;AAAA,EACN,SAAS;AACb,CAAC,GACU,SAAS,aAAa;AAAA,EAC7B;AAAA,EACA;AAAA,EACA;AAAA,EACA,iBAAiB;AAAA,IACb,MAAM;AAAA,IACN,SAAS;AAAA,EACb;AACJ,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
(0
|
|
8
|
-
(0, import_vitest.test)("123", function () {
|
|
9
|
-
(0, import_vitest.expect)(!0).toBeTruthy();
|
|
1
|
+
import { getDefaultTamaguiConfig } from "@tamagui/config-default";
|
|
2
|
+
import { createTamagui } from "@tamagui/core";
|
|
3
|
+
import { describe, expect, test } from "vitest";
|
|
4
|
+
var conf = createTamagui(getDefaultTamaguiConfig());
|
|
5
|
+
describe("Button", function() {
|
|
6
|
+
test("123", function() {
|
|
7
|
+
expect(!0).toBeTruthy();
|
|
10
8
|
});
|
|
11
9
|
});
|
|
12
|
-
//# sourceMappingURL=Button.test.
|
|
10
|
+
//# sourceMappingURL=Button.test.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Button.test.tsx"],
|
|
4
|
+
"mappings": "AAAA,SAAS,+BAA+B;AACxC,SAAS,qBAAqB;AAC9B,SAAS,UAAU,QAAQ,YAAY;AACvC,IAAI,OAAO,cAAc,wBAAwB,CAAC;AAClD,SAAS,UAAU,WAAW;AAC1B,OAAK,OAAO,WAAW;AACnB,WAAO,EAAI,EAAE,WAAW;AAAA,EAC5B,CAAC;AACL,CAAC;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
|
@@ -1,55 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
module.exports = __toCommonJS(createButton_exports);
|
|
28
|
-
var import_helpers = require("@tamagui/helpers"),
|
|
29
|
-
import_web = require("@tamagui/web"),
|
|
30
|
-
createButton = function (options) {
|
|
31
|
-
var context = (0, import_web.createStyledContext)(options.defaultVariants),
|
|
32
|
-
_options_name,
|
|
33
|
-
name = (_options_name = options.name) !== null && _options_name !== void 0 ? _options_name : "button",
|
|
34
|
-
Frame = (0, import_web.styled)(options.Frame, {
|
|
35
|
-
context,
|
|
36
|
-
name,
|
|
37
|
-
group: name,
|
|
38
|
-
role: "button",
|
|
39
|
-
tag: "button"
|
|
40
|
-
}),
|
|
41
|
-
Icon = (0, import_web.styled)(options.Icon, {
|
|
42
|
-
name,
|
|
43
|
-
context
|
|
44
|
-
}),
|
|
45
|
-
Text = (0, import_web.styled)(options.Text, {
|
|
46
|
-
name,
|
|
47
|
-
context
|
|
48
|
-
});
|
|
49
|
-
return (0, import_helpers.withStaticProperties)(Frame, {
|
|
50
|
-
Apply: context.Provider,
|
|
51
|
-
Text,
|
|
52
|
-
Icon
|
|
53
|
-
});
|
|
54
|
-
};
|
|
55
|
-
//# sourceMappingURL=createButton.native.js.map
|
|
1
|
+
import { withStaticProperties } from "@tamagui/helpers";
|
|
2
|
+
import { createStyledContext, styled } from "@tamagui/web";
|
|
3
|
+
var createButton = function(options) {
|
|
4
|
+
var context = createStyledContext(options.defaultVariants), _options_name, name = (_options_name = options.name) !== null && _options_name !== void 0 ? _options_name : "button", Frame = styled(options.Frame, {
|
|
5
|
+
context,
|
|
6
|
+
name,
|
|
7
|
+
group: name,
|
|
8
|
+
role: "button",
|
|
9
|
+
tag: "button"
|
|
10
|
+
}), Icon = styled(options.Icon, {
|
|
11
|
+
name,
|
|
12
|
+
context
|
|
13
|
+
}), Text = styled(options.Text, {
|
|
14
|
+
name,
|
|
15
|
+
context
|
|
16
|
+
});
|
|
17
|
+
return withStaticProperties(Frame, {
|
|
18
|
+
Apply: context.Provider,
|
|
19
|
+
Text,
|
|
20
|
+
Icon
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
export {
|
|
24
|
+
createButton
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=createButton.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/createButton.tsx"],
|
|
4
|
+
"mappings": "AAAA,SAAS,4BAA4B;AACrC,SAAS,qBAAqB,cAAc;AACrC,IAAI,eAAe,SAAS,SAAS;AACxC,MAAI,UAAU,oBAAoB,QAAQ,eAAe,GACrD,eACA,QAAQ,gBAAgB,QAAQ,UAAU,QAAQ,kBAAkB,SAAS,gBAAgB,UAC7F,QAAQ,OAAO,QAAQ,OAAO;AAAA,IAC9B;AAAA,IACA;AAAA,IACA,OAAO;AAAA,IACP,MAAM;AAAA,IACN,KAAK;AAAA,EACT,CAAC,GACG,OAAO,OAAO,QAAQ,MAAM;AAAA,IAC5B;AAAA,IACA;AAAA,EACJ,CAAC,GACG,OAAO,OAAO,QAAQ,MAAM;AAAA,IAC5B;AAAA,IACA;AAAA,EACJ,CAAC;AACD,SAAO,qBAAqB,OAAO;AAAA,IAC/B,OAAO,QAAQ;AAAA,IACf;AAAA,IACA;AAAA,EACJ,CAAC;AACL;",
|
|
5
|
+
"names": []
|
|
6
|
+
}
|
package/dist/jsx/index.native.js
CHANGED
|
@@ -1,21 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __copyProps = (to, from, except, desc) => {
|
|
8
|
-
if (from && typeof from == "object" || typeof from == "function") for (let key of __getOwnPropNames(from)) !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, {
|
|
9
|
-
get: () => from[key],
|
|
10
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
11
|
-
});
|
|
12
|
-
return to;
|
|
13
|
-
},
|
|
14
|
-
__reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
-
var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
|
|
16
|
-
value: !0
|
|
17
|
-
}), mod);
|
|
18
|
-
var index_exports = {};
|
|
19
|
-
module.exports = __toCommonJS(index_exports);
|
|
20
|
-
__reExport(index_exports, require("./Button.native.js"), module.exports);
|
|
21
|
-
//# sourceMappingURL=index.native.js.map
|
|
1
|
+
export * from "./Button";
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/button-next",
|
|
3
|
-
"version": "1.135.4
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "1.135.4",
|
|
5
4
|
"sideEffects": [
|
|
6
5
|
"*.css"
|
|
7
6
|
],
|
|
@@ -37,19 +36,19 @@
|
|
|
37
36
|
}
|
|
38
37
|
},
|
|
39
38
|
"dependencies": {
|
|
40
|
-
"@tamagui/config-default": "1.135.4
|
|
41
|
-
"@tamagui/core": "1.135.4
|
|
42
|
-
"@tamagui/get-button-sized": "1.135.4
|
|
43
|
-
"@tamagui/helpers": "1.135.4
|
|
44
|
-
"@tamagui/helpers-tamagui": "1.135.4
|
|
45
|
-
"@tamagui/stacks": "1.135.4
|
|
46
|
-
"@tamagui/text": "1.135.4
|
|
47
|
-
"@tamagui/web": "1.135.4
|
|
39
|
+
"@tamagui/config-default": "1.135.4",
|
|
40
|
+
"@tamagui/core": "1.135.4",
|
|
41
|
+
"@tamagui/get-button-sized": "1.135.4",
|
|
42
|
+
"@tamagui/helpers": "1.135.4",
|
|
43
|
+
"@tamagui/helpers-tamagui": "1.135.4",
|
|
44
|
+
"@tamagui/stacks": "1.135.4",
|
|
45
|
+
"@tamagui/text": "1.135.4",
|
|
46
|
+
"@tamagui/web": "1.135.4"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@tamagui/build": "1.135.4
|
|
49
|
+
"@tamagui/build": "1.135.4",
|
|
51
50
|
"react": "*",
|
|
52
|
-
"vitest": "^
|
|
51
|
+
"vitest": "^3.2.4"
|
|
53
52
|
},
|
|
54
53
|
"publishConfig": {
|
|
55
54
|
"access": "public"
|