@tamagui/core 1.125.16 → 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 +5 -4
- package/dist/native.js.map +2 -2
- package/dist/test.native.js +5 -4
- package/dist/test.native.js.map +2 -2
- package/package.json +7 -7
package/dist/test.native.js
CHANGED
|
@@ -2117,8 +2117,9 @@ var require_constants_native2 = __commonJS({
|
|
|
2117
2117
|
alignItems: "stretch",
|
|
2118
2118
|
flexDirection: "column",
|
|
2119
2119
|
flexBasis: "auto",
|
|
2120
|
+
// @ts-expect-error
|
|
2120
2121
|
boxSizing: "border-box",
|
|
2121
|
-
position: "relative",
|
|
2122
|
+
position: process.env.TAMAGUI_POSITION_STATIC === "1" ? "static" : "relative",
|
|
2122
2123
|
minHeight: 0,
|
|
2123
2124
|
minWidth: 0,
|
|
2124
2125
|
flexShrink: 0
|
|
@@ -4997,8 +4998,8 @@ var require_getSplitStyles_native = __commonJS({
|
|
|
4997
4998
|
(isText || isInput) && valInit && (keyInit === "fontFamily" || keyInit === shorthands.fontFamily) && valInit in conf.fontsParsed && (styleState.fontFamily = valInit);
|
|
4998
4999
|
var disablePropMap = isMediaOrPseudo || !isStyleLikeKey;
|
|
4999
5000
|
(0, import_propMapper.propMapper)(keyInit, valInit, styleState, disablePropMap, function(key4, val2) {
|
|
5000
|
-
var _parentStaticConfig_variants;
|
|
5001
|
-
if (!isHOC && disablePropMap && !isMediaOrPseudo) {
|
|
5001
|
+
var _parentStaticConfig_variants, isStyledContextProp = styleProps.styledContextProps && key4 in styleProps.styledContextProps;
|
|
5002
|
+
if (!isHOC && disablePropMap && !isStyledContextProp && !isMediaOrPseudo) {
|
|
5002
5003
|
viewProps[key4] = val2;
|
|
5003
5004
|
return;
|
|
5004
5005
|
}
|
|
@@ -5155,7 +5156,7 @@ var require_getSplitStyles_native = __commonJS({
|
|
|
5155
5156
|
return;
|
|
5156
5157
|
}
|
|
5157
5158
|
if (!isVariant) {
|
|
5158
|
-
if (
|
|
5159
|
+
if (isStyledContextProp) return;
|
|
5159
5160
|
viewProps[key4] = val2;
|
|
5160
5161
|
}
|
|
5161
5162
|
}
|