@colisweb/rescript-toolkit 4.16.1 → 4.16.2

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": "@colisweb/rescript-toolkit",
3
- "version": "4.16.1",
3
+ "version": "4.16.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -91,6 +91,7 @@ let make = (
91
91
  ~validateButtonClassName="",
92
92
  ~cancelButtonClassName="",
93
93
  ~itemClassName="",
94
+ ~optionsClassName="",
94
95
  ~buttonColor=?,
95
96
  ~buttonSize=?,
96
97
  ~buttonVariant=?,
@@ -151,7 +152,7 @@ let make = (
151
152
  : React.null}
152
153
  </div>
153
154
  }}>
154
- <div className="py-2 pl-2 pr-1 max-h-[300px] overflow-y-scroll">
155
+ <div className={cx(["py-2 pl-2 pr-1 max-h-[300px] overflow-y-scroll", optionsClassName])}>
155
156
  {allowFilter
156
157
  ? <div className="mb-3">
157
158
  <Toolkit__Ui_TextInput
@@ -10,6 +10,7 @@ let make: (
10
10
  ~validateButtonClassName: string=?,
11
11
  ~cancelButtonClassName: string=?,
12
12
  ~itemClassName: string=?,
13
+ ~optionsClassName: string=?,
13
14
  ~buttonColor: Toolkit__Ui_Button.color=?,
14
15
  ~buttonSize: Toolkit__Ui_Button.size=?,
15
16
  ~buttonVariant: Toolkit__Ui_Button.variant=?,