@xsolla/xui-quest-card 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-quest-card",
3
- "version": "0.155.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",
@@ -14,8 +14,8 @@
14
14
  "test:coverage": "vitest run --coverage"
15
15
  },
16
16
  "dependencies": {
17
- "@xsolla/xui-core": "0.155.0",
18
- "@xsolla/xui-primitives-core": "0.155.0"
17
+ "@xsolla/xui-core": "0.157.0",
18
+ "@xsolla/xui-primitives-core": "0.157.0"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": ">=16.8.0",
package/web/index.js CHANGED
@@ -246,7 +246,8 @@ var Box = import_react2.default.forwardRef(
246
246
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
247
247
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
248
248
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
249
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
249
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
250
+ ...props.style
250
251
  }
251
252
  }
252
253
  );