@xsolla/xui-input-phone 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-input-phone",
3
- "version": "0.157.0",
3
+ "version": "0.158.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.157.0",
17
- "@xsolla/xui-primitives-core": "0.157.0",
16
+ "@xsolla/xui-core": "0.158.0",
17
+ "@xsolla/xui-primitives-core": "0.158.0",
18
18
  "libphonenumber-js": "^1.10.56"
19
19
  },
20
20
  "peerDependencies": {
package/web/index.js CHANGED
@@ -256,8 +256,7 @@ 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,
260
- ...props.style
259
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
261
260
  }
262
261
  }
263
262
  );