tamagui 1.79.8 → 1.79.9

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
@@ -2654,7 +2654,10 @@ var require_propMapper_native = __commonJS({
2654
2654
  return;
2655
2655
  if (value === "unset") {
2656
2656
  let unsetVal = (_a = styleStateIn.conf.unset) == null ? void 0 : _a[key];
2657
- unsetVal != null && (value = unsetVal);
2657
+ if (unsetVal != null)
2658
+ value = unsetVal;
2659
+ else
2660
+ return;
2658
2661
  }
2659
2662
  let subProps = styleStateIn.styleProps.fallbackProps || subPropsIn, styleState = subProps ? new Proxy(styleStateIn, {
2660
2663
  get(_, k) {
@@ -2985,7 +2988,7 @@ var require_getSplitStyles_native = __commonJS({
2985
2988
  parentStaticConfig
2986
2989
  }), console.groupEnd()), shouldPassThrough && (passDownProp(viewProps, keyInit, valInit, isMediaOrPseudo), !isVariant) || !styleProps.noSkip && keyInit in skipProps)
2987
2990
  continue;
2988
- if (isText && valInit && (keyInit === "fontFamily" || keyInit === shorthands.fontFamily) && valInit in conf.fontsParsed && (styleState.fontFamily = valInit), isValidStyleKeyInit && !variants && (valInitType === "number" || valInitType === "string" && valInit[0] !== "$")) {
2991
+ if (isText && valInit && (keyInit === "fontFamily" || keyInit === shorthands.fontFamily) && valInit in conf.fontsParsed && (styleState.fontFamily = valInit), isValidStyleKeyInit && !variants && valInit !== "unset" && (valInitType === "number" || valInitType === "string" && valInit[0] !== "$")) {
2989
2992
  style[keyInit] = valInit;
2990
2993
  continue;
2991
2994
  }