@xsolla/xui-multi-select 0.202.3 → 0.202.4

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.202.3",
3
+ "version": "0.202.4",
4
4
  "main": "./web/index.js",
5
5
  "module": "./web/index.mjs",
6
6
  "types": "./web/index.d.ts",
@@ -10,11 +10,11 @@
10
10
  "build:native": "PLATFORM=native tsup"
11
11
  },
12
12
  "dependencies": {
13
- "@xsolla/xui-checkbox": "0.202.3",
14
- "@xsolla/xui-core": "0.202.3",
15
- "@xsolla/xui-dropdown": "0.202.3",
16
- "@xsolla/xui-icons-base": "0.202.3",
17
- "@xsolla/xui-primitives-core": "0.202.3"
13
+ "@xsolla/xui-checkbox": "0.202.4",
14
+ "@xsolla/xui-core": "0.202.4",
15
+ "@xsolla/xui-dropdown": "0.202.4",
16
+ "@xsolla/xui-icons-base": "0.202.4",
17
+ "@xsolla/xui-primitives-core": "0.202.4"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "react": ">=16.8.0",
package/web/index.js CHANGED
@@ -1786,7 +1786,8 @@ var MultiSelect = (0, import_react12.forwardRef)(
1786
1786
  style: {
1787
1787
  maxHeight: searchable ? maxHeight - 60 : maxHeight,
1788
1788
  overflowY: "auto",
1789
- overflowX: optionListOverflowX
1789
+ overflowX: optionListOverflowX,
1790
+ scrollbarWidth: "none"
1790
1791
  },
1791
1792
  children: menuItems.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1792
1793
  Box,