@colisweb/rescript-toolkit 2.13.4 → 2.13.5

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": "2.13.4",
3
+ "version": "2.13.5",
4
4
  "scripts": {
5
5
  "clean": "rescript clean",
6
6
  "build": "rescript build",
@@ -147,6 +147,7 @@ module ReactSelectMultipleCreateInput = {
147
147
  ~isDisabled: option<bool>=?,
148
148
  ~isLoading: option<bool>=?,
149
149
  ~className: option<string>=?,
150
+ ~id: option<string>=?,
150
151
  ) => React.element = "CreatableSelect"
151
152
  }
152
153
 
@@ -160,7 +161,8 @@ module ReactSelectMultipleCreateInput = {
160
161
  ~placeholder="",
161
162
  ~isDisabled=false,
162
163
  ~isLoading=false,
163
- ~className="",
164
+ ~className: option<string>=?,
165
+ ~id: option<string>=?,
164
166
  ) =>
165
167
  <ReactSelect
166
168
  components={"DropDownIndicator": React.null}
@@ -189,6 +191,7 @@ module ReactSelectMultipleCreateInput = {
189
191
  value
190
192
  isDisabled
191
193
  isLoading
192
- className
194
+ ?className
195
+ ?id
193
196
  />
194
197
  }