@xsolla/xui-b2b-sidebar 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-b2b-sidebar",
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-core": "0.157.0",
17
- "@xsolla/xui-icons-base": "0.157.0",
18
- "@xsolla/xui-primitives-core": "0.157.0",
19
- "@xsolla/xui-tooltip": "0.157.0",
20
- "@xsolla/xui-typography": "0.157.0"
16
+ "@xsolla/xui-core": "0.158.0",
17
+ "@xsolla/xui-icons-base": "0.158.0",
18
+ "@xsolla/xui-primitives-core": "0.158.0",
19
+ "@xsolla/xui-tooltip": "0.158.0",
20
+ "@xsolla/xui-typography": "0.158.0"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": ">=16.8.0",
package/web/index.js CHANGED
@@ -1153,7 +1153,8 @@ var Box = import_react4.default.forwardRef(
1153
1153
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
1154
1154
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
1155
1155
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
1156
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
1156
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
1157
+ ...props.style
1157
1158
  }
1158
1159
  }
1159
1160
  );