@xsolla/xui-multi-select 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-multi-select",
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",
@@ -10,10 +10,10 @@
10
10
  "build:native": "PLATFORM=native tsup"
11
11
  },
12
12
  "dependencies": {
13
- "@xsolla/xui-checkbox": "0.157.0",
14
- "@xsolla/xui-core": "0.157.0",
15
- "@xsolla/xui-dropdown": "0.157.0",
16
- "@xsolla/xui-primitives-core": "0.157.0"
13
+ "@xsolla/xui-checkbox": "0.158.0",
14
+ "@xsolla/xui-core": "0.158.0",
15
+ "@xsolla/xui-dropdown": "0.158.0",
16
+ "@xsolla/xui-primitives-core": "0.158.0"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "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
  );
@@ -1507,7 +1508,8 @@ var Box2 = import_react6.default.forwardRef(
1507
1508
  top: typeof props.top === "number" ? `${props.top}px` : props.top,
1508
1509
  left: typeof props.left === "number" ? `${props.left}px` : props.left,
1509
1510
  right: typeof props.right === "number" ? `${props.right}px` : props.right,
1510
- bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom
1511
+ bottom: typeof props.bottom === "number" ? `${props.bottom}px` : props.bottom,
1512
+ ...props.style
1511
1513
  }
1512
1514
  }
1513
1515
  );