@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.
@@ -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
- left: PASS_THROUGH,
5072
- top: PASS_THROUGH,
5073
- bottom: PASS_THROUGH,
5074
- right: PASS_THROUGH,
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) => {