@colisweb/rescript-toolkit 5.23.0 → 5.23.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": "5.23.0",
3
+ "version": "5.23.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -77,6 +77,7 @@ let make = (
77
77
  className={"absolute right-1 z-20 bg-info-100 text-info-600 text-sm rounded px-1.5 py-0.5 inline-flex items-center gap-2"}
78
78
  onClick={event => {
79
79
  event->JsxEventC.Mouse.stopPropagation
80
+ onChange([])
80
81
  setSelectedOptions(_ => [])
81
82
  }}>
82
83
  {options->Array.length->React.int}
@@ -142,7 +142,7 @@ let make = (
142
142
  | options =>
143
143
  <>
144
144
  <div
145
- className="table table-fixed w-full"
145
+ className="table table-fixed w-full pr-8"
146
146
  title={options->Array.map(({label}) => label)->Js.Array2.joinWith(", ")}>
147
147
  <span className="table-cell truncate text-left">
148
148
  {options->Array.map(({label}) => label)->Js.Array2.joinWith(", ")->React.string}
@@ -152,6 +152,7 @@ let make = (
152
152
  className={"absolute right-1 z-20 bg-info-100 text-info-600 text-sm rounded px-1.5 py-0.5 inline-flex items-center gap-2"}
153
153
  onClick={event => {
154
154
  event->JsxEventC.Mouse.stopPropagation
155
+ onValidate([])
155
156
  setSelectedOptions(_ => [])
156
157
  }}>
157
158
  {options->Array.length->React.int}