@xsolla/xui-multi-select 0.157.0 → 0.158.0

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/native/index.mjs CHANGED
@@ -1437,7 +1437,8 @@ var Box2 = React22.forwardRef(
1437
1437
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
1438
1438
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
1439
1439
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
1440
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
1440
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
1441
+ ...props.style
1441
1442
  }
1442
1443
  }
1443
1444
  );