@colisweb/rescript-toolkit 5.7.0 → 5.7.1

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.7.0",
3
+ "version": "5.7.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -83,7 +83,7 @@ let make = (
83
83
  }}
84
84
  value={value->Js.Nullable.fromOption}
85
85
  nullable={true}>
86
- <div className="relative z-0 w-full cursor-default rounded bg-white text-left sm:text-sm">
86
+ <div className="relative z-0 w-full cursor-default rounded bg-white text-left">
87
87
  <HeadlessUi.Combobox.Input
88
88
  ?placeholder
89
89
  ?autoFocus
@@ -91,7 +91,7 @@ let make = (
91
91
  onChange=onInputChange
92
92
  autocomplete="off"
93
93
  className={cx([
94
- "w-full border py-2 rounded pl-3 pr-10 text-sm leading-5 text-gray-900",
94
+ "w-full border py-2 rounded pl-3 pr-10 text-base leading-5 text-gray-900",
95
95
  isInvalid ? "border-danger-500" : "border-gray-300",
96
96
  inputClassName,
97
97
  ])}