@colisweb/rescript-toolkit 2.18.1 → 2.19.0

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.18.1",
3
+ "version": "2.19.0",
4
4
  "scripts": {
5
5
  "clean": "rescript clean",
6
6
  "build": "rescript build",
@@ -24,6 +24,7 @@ let make = (
24
24
  ~checked=?,
25
25
  ~className="",
26
26
  ~size: size=#sm,
27
+ ~checkboxClassName="",
27
28
  ) =>
28
29
  <label
29
30
  className={cx([
@@ -58,6 +59,7 @@ let make = (
58
59
  | #md => "w-8 h-8"
59
60
  | #lg => "w-10 h-10"
60
61
  },
62
+ checkboxClassName,
61
63
  ])}>
62
64
  <BsReactIcons.FaCheck
63
65
  className="transform transition-all ease-in-out"
@@ -10,4 +10,5 @@ let make: (
10
10
  ~checked: bool=?,
11
11
  ~className: string=?,
12
12
  ~size: size=?,
13
+ ~checkboxClassName: string=?,
13
14
  ) => React.element