@jsenv/navi 0.16.43 → 0.16.45
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/jsenv_navi.js +17 -8
- package/dist/jsenv_navi.js.map +3 -3
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -4891,10 +4891,6 @@ const FLOW_PROPS = {
|
|
|
4891
4891
|
box: () => {},
|
|
4892
4892
|
row: () => {},
|
|
4893
4893
|
column: () => {},
|
|
4894
|
-
|
|
4895
|
-
absolute: applyToCssPropWhenTruthy("position", "absolute", "static"),
|
|
4896
|
-
relative: applyToCssPropWhenTruthy("position", "relative", "static"),
|
|
4897
|
-
fixed: applyToCssPropWhenTruthy("position", "fixed", "static"),
|
|
4898
4894
|
};
|
|
4899
4895
|
const OUTER_SPACING_PROPS = {
|
|
4900
4896
|
margin: PASS_THROUGH,
|
|
@@ -5068,10 +5064,23 @@ const POSITION_PROPS = {
|
|
|
5068
5064
|
}
|
|
5069
5065
|
return undefined;
|
|
5070
5066
|
},
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5067
|
+
position: PASS_THROUGH,
|
|
5068
|
+
absolute: applyToCssPropWhenTruthy("position", "absolute", "static"),
|
|
5069
|
+
relative: applyToCssPropWhenTruthy("position", "relative", "static"),
|
|
5070
|
+
fixed: applyToCssPropWhenTruthy("position", "fixed", "static"),
|
|
5071
|
+
sticky: applyToCssPropWhenTruthy("position", "sticky", "static"),
|
|
5072
|
+
left: (value = 0) => {
|
|
5073
|
+
return { left: value };
|
|
5074
|
+
},
|
|
5075
|
+
top: (value = 0) => {
|
|
5076
|
+
return { top: value };
|
|
5077
|
+
},
|
|
5078
|
+
bottom: (value = 0) => {
|
|
5079
|
+
return { bottom: value };
|
|
5080
|
+
},
|
|
5081
|
+
right: (value = 0) => {
|
|
5082
|
+
return { right: value };
|
|
5083
|
+
},
|
|
5075
5084
|
|
|
5076
5085
|
transform: PASS_THROUGH,
|
|
5077
5086
|
translateX: (value) => {
|