@xsolla/xui-input-phone 0.155.0 → 0.157.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/package.json +3 -3
- package/web/index.js +2 -1
- package/web/index.js.map +1 -1
- package/web/index.mjs +2 -1
- package/web/index.mjs.map +1 -1
package/web/index.mjs
CHANGED
|
@@ -218,7 +218,8 @@ var Box = React2.forwardRef(
|
|
|
218
218
|
top: typeof props.top === "number" ? `${props.top}px` : props.top,
|
|
219
219
|
left: typeof props.left === "number" ? `${props.left}px` : props.left,
|
|
220
220
|
right: typeof props.right === "number" ? `${props.right}px` : props.right,
|
|
221
|
-
bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
|
|
221
|
+
bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
|
|
222
|
+
...props.style
|
|
222
223
|
}
|
|
223
224
|
}
|
|
224
225
|
);
|