@tamagui/core 1.125.15 → 1.125.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 CHANGED
@@ -2382,8 +2382,9 @@ var require_constants_native2 = __commonJS({
2382
2382
  alignItems: "stretch",
2383
2383
  flexDirection: "column",
2384
2384
  flexBasis: "auto",
2385
+ // @ts-expect-error
2385
2386
  boxSizing: "border-box",
2386
- position: "relative",
2387
+ position: process.env.TAMAGUI_POSITION_STATIC === "1" ? "static" : "relative",
2387
2388
  minHeight: 0,
2388
2389
  minWidth: 0,
2389
2390
  flexShrink: 0
@@ -5291,8 +5292,8 @@ var require_getSplitStyles_native = __commonJS({
5291
5292
  (isText || isInput) && valInit && (keyInit === "fontFamily" || keyInit === shorthands.fontFamily) && valInit in conf.fontsParsed && (styleState.fontFamily = valInit);
5292
5293
  var disablePropMap = isMediaOrPseudo || !isStyleLikeKey;
5293
5294
  if ((0, import_propMapper.propMapper)(keyInit, valInit, styleState, disablePropMap, function(key4, val2) {
5294
- var _parentStaticConfig_variants;
5295
- if (!isHOC && disablePropMap && !isMediaOrPseudo) {
5295
+ var _parentStaticConfig_variants, isStyledContextProp = styleProps.styledContextProps && key4 in styleProps.styledContextProps;
5296
+ if (!isHOC && disablePropMap && !isStyledContextProp && !isMediaOrPseudo) {
5296
5297
  viewProps[key4] = val2;
5297
5298
  return;
5298
5299
  }
@@ -5486,7 +5487,7 @@ var require_getSplitStyles_native = __commonJS({
5486
5487
  return;
5487
5488
  }
5488
5489
  if (!isVariant) {
5489
- if (styleProps.styledContextProps && key4 in styleProps.styledContextProps) return;
5490
+ if (isStyledContextProp) return;
5490
5491
  viewProps[key4] = val2;
5491
5492
  }
5492
5493
  }