react-ui89 0.8.1 → 0.8.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.
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -31114,7 +31114,7 @@ function ScrollContainer({ children, }) {
|
|
|
31114
31114
|
return React__default.createElement("span", { className: styles$5.scrollContainer }, children);
|
|
31115
31115
|
}
|
|
31116
31116
|
|
|
31117
|
-
const portalRoot = typeof document !== undefined ? document.body : null;
|
|
31117
|
+
const portalRoot = typeof document !== "undefined" ? document.body : null;
|
|
31118
31118
|
function Ui89ModalDialog({ open, size = "medium", children, topCenter, onRequestClose, }) {
|
|
31119
31119
|
const dialogClass = useMemo(() => {
|
|
31120
31120
|
return [styles$8.dialog, open ? styles$8["dialog--open"] : ""].join(" ");
|