@xsolla/xui-status-dropdown 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-status-dropdown",
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,11 +13,11 @@
13
13
  "test:coverage": "vitest run --coverage"
14
14
  },
15
15
  "dependencies": {
16
- "@xsolla/xui-context-menu": "0.157.0",
17
- "@xsolla/xui-core": "0.157.0",
18
- "@xsolla/xui-dropdown": "0.157.0",
19
- "@xsolla/xui-primitives-core": "0.157.0",
20
- "@xsolla/xui-status": "0.157.0"
16
+ "@xsolla/xui-context-menu": "0.158.0",
17
+ "@xsolla/xui-core": "0.158.0",
18
+ "@xsolla/xui-dropdown": "0.158.0",
19
+ "@xsolla/xui-primitives-core": "0.158.0",
20
+ "@xsolla/xui-status": "0.158.0"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": ">=16.8.0",
package/web/index.js CHANGED
@@ -249,7 +249,8 @@ var Box = import_react2.default.forwardRef(
249
249
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
250
250
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
251
251
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
252
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
252
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
253
+ ...props.style
253
254
  }
254
255
  }
255
256
  );