@xsolla/xui-multi-select 0.156.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/web/index.mjs CHANGED
@@ -213,7 +213,8 @@ var Box = React2.forwardRef(
213
213
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
214
214
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
215
215
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
216
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
216
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
217
+ ...props.style
217
218
  }
218
219
  }
219
220
  );
@@ -1476,7 +1477,8 @@ var Box2 = React22.forwardRef(
1476
1477
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
1477
1478
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
1478
1479
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
1479
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
1480
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
1481
+ ...props.style
1480
1482
  }
1481
1483
  }
1482
1484
  );