@tamagui/theme 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/_mutateTheme.native.js +49 -61
- package/dist/esm/_mutateTheme.native.js.map +6 -1
- package/dist/esm/addTheme.native.js +5 -3
- package/dist/esm/addTheme.native.js.map +6 -1
- package/dist/esm/index.native.js +8 -6
- package/dist/esm/index.native.js.map +6 -1
- package/dist/esm/replaceTheme.native.js +11 -13
- package/dist/esm/replaceTheme.native.js.map +6 -1
- package/dist/esm/updateTheme.native.js +6 -7
- package/dist/esm/updateTheme.native.js.map +6 -1
- package/package.json +4 -4
|
@@ -3,32 +3,18 @@ import { isServer } from "@tamagui/constants";
|
|
|
3
3
|
import { activeThemeManagers, ensureThemeVariable, getConfig, getThemeCSSRules, proxyThemeToParents, simpleHash, updateConfig } from "@tamagui/web";
|
|
4
4
|
import { startTransition } from "@tamagui/start-transition";
|
|
5
5
|
function mutateThemes(param) {
|
|
6
|
-
var {
|
|
7
|
-
themes,
|
|
8
|
-
batch,
|
|
9
|
-
insertCSS = !0,
|
|
10
|
-
...props
|
|
11
|
-
} = param,
|
|
12
|
-
allThemesProxied = {},
|
|
13
|
-
allThemesRaw = {},
|
|
14
|
-
_iteratorNormalCompletion = !0,
|
|
15
|
-
_didIteratorError = !1,
|
|
16
|
-
_iteratorError = void 0;
|
|
6
|
+
var { themes, batch, insertCSS = !0, ...props } = param, allThemesProxied = {}, allThemesRaw = {}, _iteratorNormalCompletion = !0, _didIteratorError = !1, _iteratorError = void 0;
|
|
17
7
|
try {
|
|
18
8
|
for (var _iterator = themes[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = !0) {
|
|
19
|
-
var {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
avoidUpdate: !0,
|
|
29
|
-
// always add which also replaces but doesnt fail first time
|
|
30
|
-
mutationType: "add"
|
|
31
|
-
});
|
|
9
|
+
var { name, theme } = _step.value, res = _mutateTheme({
|
|
10
|
+
...props,
|
|
11
|
+
name,
|
|
12
|
+
theme,
|
|
13
|
+
// we'll do one update at the end
|
|
14
|
+
avoidUpdate: !0,
|
|
15
|
+
// always add which also replaces but doesnt fail first time
|
|
16
|
+
mutationType: "add"
|
|
17
|
+
});
|
|
32
18
|
res && (allThemesProxied[name] = res.theme, allThemesRaw[name] = res.themeRaw);
|
|
33
19
|
}
|
|
34
20
|
} catch (err) {
|
|
@@ -37,11 +23,12 @@ function mutateThemes(param) {
|
|
|
37
23
|
try {
|
|
38
24
|
!_iteratorNormalCompletion && _iterator.return != null && _iterator.return();
|
|
39
25
|
} finally {
|
|
40
|
-
if (_didIteratorError)
|
|
26
|
+
if (_didIteratorError)
|
|
27
|
+
throw _iteratorError;
|
|
41
28
|
}
|
|
42
29
|
}
|
|
43
30
|
var cssRules = insertCSS ? insertThemeCSS(allThemesRaw, batch) : [];
|
|
44
|
-
return startTransition(function
|
|
31
|
+
return startTransition(function() {
|
|
45
32
|
for (var themeName in allThemesProxied) {
|
|
46
33
|
var theme2 = allThemesProxied[themeName];
|
|
47
34
|
updateThemeConfig(themeName, theme2), notifyThemeManagersOfUpdate(themeName, theme2);
|
|
@@ -57,30 +44,25 @@ function _mutateTheme(props) {
|
|
|
57
44
|
process.env.NODE_ENV === "development" && console.warn("Theme mutation is not supported on server side");
|
|
58
45
|
return;
|
|
59
46
|
}
|
|
60
|
-
var config = getConfig(),
|
|
61
|
-
{
|
|
62
|
-
name: themeName,
|
|
63
|
-
theme: themeIn,
|
|
64
|
-
insertCSS,
|
|
65
|
-
mutationType
|
|
66
|
-
} = props;
|
|
47
|
+
var config = getConfig(), { name: themeName, theme: themeIn, insertCSS, mutationType } = props;
|
|
67
48
|
if (process.env.NODE_ENV === "development") {
|
|
68
|
-
if (!config)
|
|
49
|
+
if (!config)
|
|
50
|
+
throw new Error("No config");
|
|
69
51
|
var theme = config.themes[props.name];
|
|
70
|
-
if (mutationType !== "add" && !theme)
|
|
52
|
+
if (mutationType !== "add" && !theme)
|
|
53
|
+
throw new Error(`${mutationType === "replace" ? "Replace" : "Update"} theme failed! Theme ${props.name} does not exist`);
|
|
71
54
|
}
|
|
72
|
-
var _config_themes_themeName,
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
var themeProxied = proxyThemeToParents(themeName, theme1),
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
};
|
|
55
|
+
var _config_themes_themeName, theme1 = {
|
|
56
|
+
...mutationType === "update" ? (_config_themes_themeName = config.themes[themeName]) !== null && _config_themes_themeName !== void 0 ? _config_themes_themeName : {} : {},
|
|
57
|
+
...themeIn
|
|
58
|
+
};
|
|
59
|
+
for (var key in theme1)
|
|
60
|
+
ensureThemeVariable(theme1, key);
|
|
61
|
+
var themeProxied = proxyThemeToParents(themeName, theme1), response = {
|
|
62
|
+
themeRaw: theme1,
|
|
63
|
+
theme: themeProxied,
|
|
64
|
+
cssRules: []
|
|
65
|
+
};
|
|
84
66
|
return props.avoidUpdate || (insertCSS && (response.cssRules = insertThemeCSS({
|
|
85
67
|
[themeName]: theme1
|
|
86
68
|
})), updateThemeConfig(themeName, themeProxied), notifyThemeManagersOfUpdate(themeName, themeProxied)), response;
|
|
@@ -90,7 +72,7 @@ function updateThemeConfig(themeName, theme) {
|
|
|
90
72
|
config.themes[themeName] = theme, updateConfig("themes", config.themes);
|
|
91
73
|
}
|
|
92
74
|
function notifyThemeManagersOfUpdate(themeName, theme) {
|
|
93
|
-
activeThemeManagers.forEach(function
|
|
75
|
+
activeThemeManagers.forEach(function(manager) {
|
|
94
76
|
manager.state.name === themeName && manager.updateStateFromProps({
|
|
95
77
|
name: themeName,
|
|
96
78
|
forceTheme: theme
|
|
@@ -102,15 +84,19 @@ function insertThemeCSS(themes) {
|
|
|
102
84
|
return [];
|
|
103
85
|
var config, cssRules;
|
|
104
86
|
for (var themeName in themes) {
|
|
105
|
-
var theme = themes[themeName],
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
87
|
+
var theme = themes[themeName], rules = getThemeCSSRules({
|
|
88
|
+
config,
|
|
89
|
+
themeName,
|
|
90
|
+
names: [
|
|
91
|
+
themeName
|
|
92
|
+
],
|
|
93
|
+
hasDarkLight: !0,
|
|
94
|
+
theme
|
|
95
|
+
});
|
|
96
|
+
cssRules = [
|
|
97
|
+
...cssRules,
|
|
98
|
+
...rules
|
|
99
|
+
], batch || updateStyle(`t_theme_style_${themeName}`, rules);
|
|
114
100
|
}
|
|
115
101
|
if (batch) {
|
|
116
102
|
var id;
|
|
@@ -118,13 +104,15 @@ function insertThemeCSS(themes) {
|
|
|
118
104
|
}
|
|
119
105
|
}
|
|
120
106
|
function updateStyle(id, rules) {
|
|
121
|
-
var existing = document.querySelector(`#${id}`),
|
|
122
|
-
style = document.createElement("style");
|
|
107
|
+
var existing = document.querySelector(`#${id}`), style = document.createElement("style");
|
|
123
108
|
if (style.id = id, style.appendChild(document.createTextNode(rules.join(`
|
|
124
109
|
`))), document.head.appendChild(style), existing) {
|
|
125
110
|
var _existing_parentElement;
|
|
126
111
|
(_existing_parentElement = existing.parentElement) === null || _existing_parentElement === void 0 || _existing_parentElement.removeChild(existing);
|
|
127
112
|
}
|
|
128
113
|
}
|
|
129
|
-
export {
|
|
130
|
-
|
|
114
|
+
export {
|
|
115
|
+
_mutateTheme,
|
|
116
|
+
mutateThemes
|
|
117
|
+
};
|
|
118
|
+
//# sourceMappingURL=_mutateTheme.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/core/theme/src/_mutateTheme.ts"],
|
|
4
|
+
"mappings": "AAAA,OAAkB;AAClB,SAASA,gBAAgB;AAEzB,SACEC,qBACAC,qBACAC,WACAC,kBACAC,qBACAC,YACAC,oBACK;AACP,SAASC,uBAAuB;AAmBzB,SAASC,aAAa;MAAA,EAC3BC,QACAC,OACAC,YAAY,IACZ,GAAGC,MAAAA,IAJwB,OAWrBC,mBAAgD,CAAC,GACjDC,eAA4C,CAAC,GAC9C,4BAAA,IAAA,oBAAA,IAAA,iBAAA;;AAAL,aAAK,YAAyBL,OAAAA,OAAAA,QAAAA,EAAAA,GAAzB,OAAA,EAAA,6BAAA,QAAA,UAAA,KAAA,GAAA,OAAA,4BAAA,IAAiC;AAAjC,UAAM,EAAEM,MAAMC,MAAK,IAAnB,MAAA,OACGC,MAAMC,aAAa;QACvB,GAAGN;QACHG;QACAC;;QAEAG,aAAa;;QAEbC,cAAc;MAChB,CAAA;AACA,MAAIH,QACFJ,iBAAiBE,IAAAA,IAAQE,IAAID,OAC7BF,aAAaC,IAAAA,IAAQE,IAAII;IAE7B;;AAdK,wBAAA,IAAA,iBAAA;;;OAAA,6BAAA,UAAA,UAAA,QAAA,UAAA,OAAA;;UAAA;cAAA;;;AAgBL,MAAMC,WAAWX,YAAYY,eAAeT,cAAcJ,KAAAA,IAAS,CAAA;AAEnEH,yBAAgB,WAAA;AACd,aAAWiB,aAAaX,kBAAkB;AACxC,UAAMG,SAAQH,iBAAiBW,SAAAA;AAC/BC,wBAAkBD,WAAWR,MAAAA,GAC7BU,4BAA4BF,WAAWR,MAAAA;IACzC;EACF,CAAA,GAEO;IACLP,QAAQI;IACRc,WAAWb;IACXQ;EACF;AACF;AAEO,SAASJ,aAAaN,OAA+C;AAC1E,MAAIb,UAAU;AACZ,IAAI6B,QAAQC,IAAIC,aAAa,iBAC3BC,QAAQC,KAAK,gDAAA;AAEf;EACF;AACA,MAAMC,SAAS/B,UAAAA,GACT,EAAEa,MAAMS,WAAWR,OAAOkB,SAASvB,WAAWS,aAAY,IAAKR;AAErE,MAAIgB,QAAQC,IAAIC,aAAa,eAAe;AAC1C,QAAI,CAACG;AACH,YAAM,IAAIE,MAAM,WAAA;AAElB,QAAMnB,QAAQiB,OAAOxB,OAAOG,MAAMG,IAAI;AAEtC,QAAIK,iBAAiB,SAAS,CAACJ;AAC7B,YAAM,IAAImB,MACR,GAAGf,iBAAiB,YAAY,YAAY,QAAA,wBAC1CR,MAAMG,IAAI,iBACK;EAGvB;MAGmCkB,0BAD7BjB,SAAQ;IACZ,GAAII,iBAAiB,YAAYa,2BAAAA,OAAOxB,OAAOe,SAAAA,OAAU,QAAxBS,6BAAAA,SAAAA,2BAA4B,CAAC,IAAK,CAAC;IACpE,GAAGC;EACL;AAEA,WAAWE,OAAOpB;AAChBf,wBAAoBe,QAAOoB,GAAAA;AAG7B,MAAMC,eAAejC,oBAAoBoB,WAAWR,MAAAA,GAE9CsB,WAAW;IACfjB,UAAUL;IACVA,OAAOqB;IACPf,UAAU,CAAA;EACZ;AAEA,SAAIV,MAAMO,gBAINR,cACF2B,SAAShB,WAAWC,eAAe;IACjC,CAACC,SAAAA,GAAYR;EACf,CAAA,IAGFS,kBAAkBD,WAAWa,YAAAA,GAC7BX,4BAA4BF,WAAWa,YAAAA,IAEhCC;AACT;AAEA,SAASb,kBAAkBD,WAAmBR,OAAkB;AAC9D,MAAMiB,SAAS/B,UAAAA;AACf+B,SAAOxB,OAAOe,SAAAA,IAAaR,OAC3BV,aAAa,UAAU2B,OAAOxB,MAAM;AACtC;AAEA,SAASiB,4BAA4BF,WAAmBR,OAAkB;AACxEhB,sBAAoBuC,QAAQ,SAACC,SAAAA;AAC3B,IAAIA,QAAQC,MAAM1B,SAASS,aACzBgB,QAAQE,qBACN;MACE3B,MAAMS;MACNmB,YAAY3B;IACd,GACA,EAAA;EAGN,CAAA;AACF;AAEA,SAASO,eAAed,QAAoC;MAAEC,QAAAA,UAAAA,SAAAA,KAAAA,UAAAA,CAAAA,MAAAA,SAAAA,UAAAA,CAAAA,IAAe;AAEzE,SAAO,CAAA;AAGT,MAAMuB,QACFX;AAEJ,WAAWE,aAAaf,QAAQ;AAC9B,QAAMO,QAAQP,OAAOe,SAAAA,GAEfoB,QAAQzC,iBAAiB;MAC7B8B;MACAT;MACAqB,OAAO;QAACrB;;MACRsB,cAAc;MACd9B;IACF,CAAA;AAEAM,eAAW;SAAIA;SAAasB;OAEvBlC,SACHqC,YAAY,iBAAiBvB,SAAAA,IAAaoB,KAAAA;EAE9C;AAEA,MAAIlC,OAAO;AACT,QAAMsC;AACND,gBAAY,iBAAiBC,EAAAA,IAAM1B,QAAAA;EACrC;AAGF;AAEA,SAASyB,YAAYC,IAAYJ,OAAe;AAC9C,MAAMK,WAAWC,SAASC,cAAc,IAAIH,EAAAA,EAAI,GAC1CI,QAAQF,SAASG,cAAc,OAAA;AAIrC,MAHAD,MAAMJ,KAAKA,IACXI,MAAME,YAAYJ,SAASK,eAAeX,MAAMY,KAAK;CAAA,CAAA,CAAA,GACrDN,SAASO,KAAKH,YAAYF,KAAAA,GACtBH,UAAU;QACZA;KAAAA,0BAAAA,SAASS,mBAAa,QAAtBT,4BAAAA,UAAAA,wBAAwBU,YAAYV,QAAAA;EACtC;AACF;",
|
|
5
|
+
"names": ["isServer", "activeThemeManagers", "ensureThemeVariable", "getConfig", "getThemeCSSRules", "proxyThemeToParents", "simpleHash", "updateConfig", "startTransition", "mutateThemes", "themes", "batch", "insertCSS", "props", "allThemesProxied", "allThemesRaw", "name", "theme", "res", "_mutateTheme", "avoidUpdate", "mutationType", "themeRaw", "cssRules", "insertThemeCSS", "themeName", "updateThemeConfig", "notifyThemeManagersOfUpdate", "themesRaw", "process", "env", "NODE_ENV", "console", "warn", "config", "themeIn", "Error", "key", "themeProxied", "response", "forEach", "manager", "state", "updateStateFromProps", "forceTheme", "rules", "names", "hasDarkLight", "updateStyle", "id", "existing", "document", "querySelector", "style", "createElement", "appendChild", "createTextNode", "join", "head", "parentElement", "removeChild"]
|
|
6
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _mutateTheme } from "./_mutateTheme
|
|
1
|
+
import { _mutateTheme } from "./_mutateTheme";
|
|
2
2
|
function addTheme(props) {
|
|
3
3
|
return _mutateTheme({
|
|
4
4
|
...props,
|
|
@@ -6,5 +6,7 @@ function addTheme(props) {
|
|
|
6
6
|
mutationType: "add"
|
|
7
7
|
});
|
|
8
8
|
}
|
|
9
|
-
export {
|
|
10
|
-
|
|
9
|
+
export {
|
|
10
|
+
addTheme
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=addTheme.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/core/theme/src/addTheme.ts"],
|
|
4
|
+
"mappings": "AAEA,SAASA,oBAAoB;AAEtB,SAASC,SAASC,OAIxB;AACC,SAAOF,aAAa;IAAE,GAAGE;IAAOC,WAAW;IAAMC,cAAc;EAAM,CAAA;AACvE;",
|
|
5
|
+
"names": ["_mutateTheme", "addTheme", "props", "insertCSS", "mutationType"]
|
|
6
|
+
}
|
package/dist/esm/index.native.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export * from "./addTheme
|
|
2
|
-
export * from "./updateTheme
|
|
3
|
-
export * from "./replaceTheme
|
|
4
|
-
import { mutateThemes } from "./_mutateTheme
|
|
5
|
-
export {
|
|
6
|
-
|
|
1
|
+
export * from "./addTheme";
|
|
2
|
+
export * from "./updateTheme";
|
|
3
|
+
export * from "./replaceTheme";
|
|
4
|
+
import { mutateThemes } from "./_mutateTheme";
|
|
5
|
+
export {
|
|
6
|
+
mutateThemes
|
|
7
|
+
};
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/core/theme/src/index.ts"],
|
|
4
|
+
"mappings": "AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,SAASA,oBAAoB;",
|
|
5
|
+
"names": ["mutateThemes"]
|
|
6
|
+
}
|
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
import { _mutateTheme } from "./_mutateTheme
|
|
1
|
+
import { _mutateTheme } from "./_mutateTheme";
|
|
2
2
|
function replaceTheme(param) {
|
|
3
|
-
var {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
theme,
|
|
10
|
-
insertCSS: !0,
|
|
11
|
-
mutationType: "replace"
|
|
12
|
-
});
|
|
3
|
+
var { name, theme } = param, next = _mutateTheme({
|
|
4
|
+
name,
|
|
5
|
+
theme,
|
|
6
|
+
insertCSS: !0,
|
|
7
|
+
mutationType: "replace"
|
|
8
|
+
});
|
|
13
9
|
return next;
|
|
14
10
|
}
|
|
15
|
-
export {
|
|
16
|
-
|
|
11
|
+
export {
|
|
12
|
+
replaceTheme
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=replaceTheme.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/core/theme/src/replaceTheme.ts"],
|
|
4
|
+
"mappings": "AAEA,SAASA,oBAAoB;AAEtB,SAASC,aAAa,OAM5B;MAN4B,EAC3BC,MACAC,MAAK,IAFsB,OAOrBC,OAAOJ,aAAa;IAAEE;IAAMC;IAAOE,WAAW;IAAMC,cAAc;EAAU,CAAA;AAClF,SAAOF;AACT;",
|
|
5
|
+
"names": ["_mutateTheme", "replaceTheme", "name", "theme", "next", "insertCSS", "mutationType"]
|
|
6
|
+
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import { _mutateTheme } from "./_mutateTheme
|
|
1
|
+
import { _mutateTheme } from "./_mutateTheme";
|
|
2
2
|
function updateTheme(param) {
|
|
3
|
-
var {
|
|
4
|
-
name,
|
|
5
|
-
theme
|
|
6
|
-
} = param;
|
|
3
|
+
var { name, theme } = param;
|
|
7
4
|
return _mutateTheme({
|
|
8
5
|
name,
|
|
9
6
|
theme,
|
|
@@ -11,5 +8,7 @@ function updateTheme(param) {
|
|
|
11
8
|
mutationType: "update"
|
|
12
9
|
});
|
|
13
10
|
}
|
|
14
|
-
export {
|
|
15
|
-
|
|
11
|
+
export {
|
|
12
|
+
updateTheme
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=updateTheme.js.map
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Users/n8/tamagui/code/core/theme/src/updateTheme.ts"],
|
|
4
|
+
"mappings": "AAEA,SAASA,oBAAoB;AAEtB,SAASC,YAAY,OAM3B;MAN2B,EAC1BC,MACAC,MAAK,IAFqB;AAO1B,SAAOH,aAAa;IAAEE;IAAMC;IAAOC,WAAW;IAAMC,cAAc;EAAS,CAAA;AAC7E;",
|
|
5
|
+
"names": ["_mutateTheme", "updateTheme", "name", "theme", "insertCSS", "mutationType"]
|
|
6
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/theme",
|
|
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",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"clean:build": "tamagui-build clean:build"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@tamagui/constants": "1.113.
|
|
25
|
-
"@tamagui/web": "1.113.
|
|
24
|
+
"@tamagui/constants": "1.113.2",
|
|
25
|
+
"@tamagui/web": "1.113.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@tamagui/build": "1.113.
|
|
28
|
+
"@tamagui/build": "1.113.2",
|
|
29
29
|
"react": "^18.2.0 || ^19.0.0"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|