@colisweb/rescript-toolkit 3.1.1 → 3.1.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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -64,7 +64,7 @@ module ReactSelectMultiple = {
64
64
  ~placeholder: option<string>=?,
65
65
  ~className: option<string>=?,
66
66
  ~classNamePrefix: option<string>=?,
67
- ~defaultValue: array<labelOption<'value>>,
67
+ ~defaultValue: option<array<labelOption<'value>>>=?,
68
68
  ~value: option<array<labelOption<'value>>>=?,
69
69
  ~onChange: array<labelOption<'value>> => unit,
70
70
  ~options: array<labelOption<'value>>,
@@ -82,7 +82,7 @@ module ReactSelectMultiple = {
82
82
  ?className
83
83
  ?classNamePrefix
84
84
  ?value
85
- defaultValue
85
+ ?defaultValue
86
86
  onChange
87
87
  options
88
88
  ?noOptionsMessage