@colisweb/rescript-toolkit 4.10.8 → 4.10.10
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
package/src/vendors/Lodash.res
CHANGED
|
@@ -13,3 +13,7 @@ external orderBy: (array<'a>, 'a => 'b, ~orders: array<string>=?, unit) => array
|
|
|
13
13
|
@module("lodash/difference")
|
|
14
14
|
external difference: (array<'a>, array<'a>) => array<'a> = "default"
|
|
15
15
|
@module("lodash") external capitalize: string => string = "capitalize"
|
|
16
|
+
@module("lodash")
|
|
17
|
+
external cloneDeep: 'a => 'a = "cloneDeep"
|
|
18
|
+
@module("lodash")
|
|
19
|
+
external chunk: (array<'a>, int) => array<array<'a>> = "chunk"
|
|
@@ -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
|
+
}
|