tamagui 1.111.12 → 1.111.13

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
@@ -829,6 +829,7 @@ var require_index_native5 = __commonJS({
829
829
  var cache = /* @__PURE__ */ new Map(), simpleHash = function(str) {
830
830
  var hashMin = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 10;
831
831
  if (cache.has(str)) return cache.get(str);
832
+ str[0] === "v" && str.startsWith("var(") && (str = str.slice(6, str.length - 1));
832
833
  for (var hash = 0, valids = "", added = 0, len = str.length, i = 0; i < len; i++) {
833
834
  if (hashMin !== "strict" && added <= hashMin) {
834
835
  var char = str.charCodeAt(i);