@tamagui/core 1.111.12 → 1.112.0

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 CHANGED
@@ -1008,6 +1008,7 @@ var require_index_native2 = __commonJS({
1008
1008
  var cache = /* @__PURE__ */ new Map(), simpleHash = function(str) {
1009
1009
  var hashMin = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 10;
1010
1010
  if (cache.has(str)) return cache.get(str);
1011
+ str[0] === "v" && str.startsWith("var(") && (str = str.slice(6, str.length - 1));
1011
1012
  for (var hash = 0, valids = "", added = 0, len = str.length, i = 0; i < len; i++) {
1012
1013
  if (hashMin !== "strict" && added <= hashMin) {
1013
1014
  var char = str.charCodeAt(i);