@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xsolla/xui-input-phone",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.157.0",
|
|
4
4
|
"main": "./web/index.js",
|
|
5
5
|
"module": "./web/index.mjs",
|
|
6
6
|
"types": "./web/index.d.ts",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"test:coverage": "vitest run --coverage"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@xsolla/xui-core": "0.
|
|
17
|
-
"@xsolla/xui-primitives-core": "0.
|
|
16
|
+
"@xsolla/xui-core": "0.157.0",
|
|
17
|
+
"@xsolla/xui-primitives-core": "0.157.0",
|
|
18
18
|
"libphonenumber-js": "^1.10.56"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
package/web/index.js
CHANGED
|
@@ -256,7 +256,8 @@ var Box = import_react2.default.forwardRef(
|
|
|
256
256
|
top: typeof props.top === "number" ? `${props.top}px` : props.top,
|
|
257
257
|
left: typeof props.left === "number" ? `${props.left}px` : props.left,
|
|
258
258
|
right: typeof props.right === "number" ? `${props.right}px` : props.right,
|
|
259
|
-
bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
|
|
259
|
+
bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
|
|
260
|
+
...props.style
|
|
260
261
|
}
|
|
261
262
|
}
|
|
262
263
|
);
|