@colisweb/rescript-toolkit 5.6.2 → 5.6.4

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.6.2",
3
+ "version": "5.6.4",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -26,6 +26,8 @@ module Location = {
26
26
 
27
27
  @send
28
28
  external replace: (t, string) => unit = "replace"
29
+ @send
30
+ external assign: (t, string) => unit = "assign"
29
31
  }
30
32
 
31
33
  module Document = {
@@ -14,6 +14,7 @@ module Location: {
14
14
  let href: t => string
15
15
  let search: t => string
16
16
  let replace: (t, string) => unit
17
+ let assign: (t, string) => unit
17
18
  }
18
19
 
19
20
  module Document: {
@@ -6162,3 +6162,8 @@ module FaBell = {
6162
6162
  @module("react-icons/fa") @react.component
6163
6163
  external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element = "FaBell"
6164
6164
  }
6165
+
6166
+ module FaPlus = {
6167
+ @module("react-icons/fa") @react.component
6168
+ external make: (~size: int=?, ~color: string=?, ~className: string=?) => React.element = "FaPlus"
6169
+ }