@colisweb/rescript-toolkit 4.10.9 → 4.10.11
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
|
@@ -123,7 +123,7 @@ let make = (
|
|
|
123
123
|
let {label, value} = item
|
|
124
124
|
|
|
125
125
|
<div
|
|
126
|
-
key={`multiselectoption-${label}-${value}`}
|
|
126
|
+
key={`multiselectoption-${label}-${value}-${i->Int.toString}`}
|
|
127
127
|
className={cx([
|
|
128
128
|
"group flex flex-row items-center gap-2 pt-3 text-left relative",
|
|
129
129
|
i > 0 ? "mt-3" : "",
|
|
@@ -6111,3 +6111,9 @@ module FaBatteryThreeQuarters = {
|
|
|
6111
6111
|
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6112
6112
|
"FaBatteryThreeQuarters"
|
|
6113
6113
|
}
|
|
6114
|
+
|
|
6115
|
+
module FaExternalLinkAlt = {
|
|
6116
|
+
@module("react-icons/fa") @react.component
|
|
6117
|
+
external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element =
|
|
6118
|
+
"FaExternalLinkAlt"
|
|
6119
|
+
}
|