@colisweb/rescript-toolkit 3.2.0 → 3.2.2
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.
|
Binary file
|
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colisweb/rescript-toolkit",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rescript clean",
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"react-helmet": "6.1.0",
|
|
70
70
|
"react-icons": "4.7.1",
|
|
71
71
|
"react-intl": "6.2.5",
|
|
72
|
+
"react-portal": "^4.2.2",
|
|
72
73
|
"react-select": "5.7.0",
|
|
73
74
|
"react-table": "7.8.0",
|
|
74
75
|
"react-use": "17.4.0",
|
|
@@ -18,7 +18,7 @@ let make = (~title, ~description=?, ~status, ~className=?) =>
|
|
|
18
18
|
| #error => <ReactIcons.MdWarning size=28 className="text-danger-600 flex-shrink-0" />
|
|
19
19
|
| #warning =>
|
|
20
20
|
<ReactIcons.FaExclamationTriangle size=28 className="text-warning-600 flex-shrink-0" />
|
|
21
|
-
| #info => <ReactIcons.
|
|
21
|
+
| #info => <ReactIcons.FaInfoCircle size=28 className="text-info-600 flex-shrink-0" />
|
|
22
22
|
}}
|
|
23
23
|
<div className="mx-3">
|
|
24
24
|
<div
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@module("
|
|
1
|
+
@module("react-portal") @react.component
|
|
2
2
|
external make: (~children: React.element) => React.element = "Portal"
|