@tamagui/core 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
@@ -3295,7 +3295,10 @@ var require_propMapper_native = __commonJS({
3295
3295
  return;
3296
3296
  if (value === "unset") {
3297
3297
  let unsetVal = (_a = styleStateIn.conf.unset) == null ? void 0 : _a[key];
3298
- unsetVal != null && (value = unsetVal);
3298
+ if (unsetVal != null)
3299
+ value = unsetVal;
3300
+ else
3301
+ return;
3299
3302
  }
3300
3303
  let subProps = styleStateIn.styleProps.fallbackProps || subPropsIn, styleState = subProps ? new Proxy(styleStateIn, {
3301
3304
  get(_, k) {
@@ -3626,7 +3629,7 @@ var require_getSplitStyles_native = __commonJS({
3626
3629
  parentStaticConfig
3627
3630
  }), console.groupEnd()), shouldPassThrough && (passDownProp(viewProps, keyInit, valInit, isMediaOrPseudo), !isVariant) || !styleProps.noSkip && keyInit in skipProps)
3628
3631
  continue;
3629
- if (isText && valInit && (keyInit === "fontFamily" || keyInit === shorthands.fontFamily) && valInit in conf.fontsParsed && (styleState.fontFamily = valInit), isValidStyleKeyInit && !variants && (valInitType === "number" || valInitType === "string" && valInit[0] !== "$")) {
3632
+ 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] !== "$")) {
3630
3633
  style[keyInit] = valInit;
3631
3634
  continue;
3632
3635
  }