@colisweb/rescript-toolkit 4.4.0 → 4.5.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": "4.4.0",
3
+ "version": "4.5.0",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -192,7 +192,7 @@ module Make = (Config: RouterConfig) => {
192
192
  <React.Fragment key={i->Int.toString}>
193
193
  {i > 0 ? <ReactIcons.MdKeyboardArrowRight size=20 /> : React.null}
194
194
  {links->Toolkit__Primitives.Array.isLastIndex(i)
195
- ? <p className="font-semibold"> text </p>
195
+ ? <div className="font-semibold"> text </div>
196
196
  : <Link route className="hover:underline"> text </Link>}
197
197
  </React.Fragment>
198
198
  })
@@ -6086,3 +6086,28 @@ module FaCalculator = {
6086
6086
  external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6087
6087
  "FaCalculator"
6088
6088
  }
6089
+ module FaBatteryEmpty = {
6090
+ @module("react-icons/fa") @react.component
6091
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6092
+ "FaBatteryEmpty"
6093
+ }
6094
+ module FaBatteryFull = {
6095
+ @module("react-icons/fa") @react.component
6096
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6097
+ "FaBatteryFull"
6098
+ }
6099
+ module FaBatteryHalf = {
6100
+ @module("react-icons/fa") @react.component
6101
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6102
+ "FaBatteryHalf"
6103
+ }
6104
+ module FaBatteryQuarter = {
6105
+ @module("react-icons/fa") @react.component
6106
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6107
+ "FaBatteryQuarter"
6108
+ }
6109
+ module FaBatteryThreeQuarters = {
6110
+ @module("react-icons/fa") @react.component
6111
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
6112
+ "FaBatteryThreeQuarters"
6113
+ }