@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.js +2 -1
- package/native/index.js.map +1 -1
- package/native/index.mjs +2 -1
- package/native/index.mjs.map +1 -1
- package/package.json +5 -5
- package/web/index.js +4 -2
- package/web/index.js.map +1 -1
- package/web/index.mjs +4 -2
- package/web/index.mjs.map +1 -1
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
|
);
|