@tamagui/core 1.112.16 → 1.112.17
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/native.js +5 -0
- package/dist/native.js.map +1 -1
- package/dist/test.native.js +5 -0
- package/dist/test.native.js.map +1 -1
- package/package.json +6 -6
package/dist/native.js
CHANGED
|
@@ -1997,6 +1997,9 @@ var require_config_native = __commonJS({
|
|
|
1997
1997
|
getConfig: function() {
|
|
1998
1998
|
return getConfig2;
|
|
1999
1999
|
},
|
|
2000
|
+
getConfigMaybe: function() {
|
|
2001
|
+
return getConfigMaybe;
|
|
2002
|
+
},
|
|
2000
2003
|
getFont: function() {
|
|
2001
2004
|
return getFont;
|
|
2002
2005
|
},
|
|
@@ -2065,6 +2068,8 @@ Haven't called createTamagui yet.
|
|
|
2065
2068
|
}, getConfig2 = function() {
|
|
2066
2069
|
if (!conf) throw new Error(process.env.NODE_ENV !== "production" ? "Missing tamagui config, you either have a duplicate config, or haven't set it up. Be sure createTamagui is called before rendering. Also, make sure all of your tamagui dependencies are on the same version (`tamagui`, `@tamagui/package-name`, etc.) not just in your package.json, but in your lockfile." : "Err0");
|
|
2067
2070
|
return conf;
|
|
2071
|
+
}, getConfigMaybe = function() {
|
|
2072
|
+
return conf;
|
|
2068
2073
|
}, tokensMerged;
|
|
2069
2074
|
function setTokens(_) {
|
|
2070
2075
|
tokensMerged = _;
|