@teselagen/ui 0.7.3-beta.2 → 0.7.3-beta.3
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/index.cjs.js +1 -1
- package/index.es.js +2 -2
- package/package.json +1 -1
- package/src/FillWindow.js +2 -1
package/index.cjs.js
CHANGED
|
@@ -72891,7 +72891,7 @@ const _FillWindow = class _FillWindow extends React$1.Component {
|
|
|
72891
72891
|
this.props.children && isFunction$5(this.props.children) ? this.props.children(windowDimensions) : this.props.children
|
|
72892
72892
|
);
|
|
72893
72893
|
if (asPortal)
|
|
72894
|
-
return
|
|
72894
|
+
return require$$2$1(inner, window.document.body);
|
|
72895
72895
|
return inner;
|
|
72896
72896
|
}
|
|
72897
72897
|
};
|
package/index.es.js
CHANGED
|
@@ -57,7 +57,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
57
57
|
});
|
|
58
58
|
};
|
|
59
59
|
import * as React$1 from "react";
|
|
60
|
-
import React__default, { useState, useEffect, forwardRef, useImperativeHandle, Fragment, useMemo, useRef, useReducer, useCallback, createElement, Component, useLayoutEffect, createContext, memo, useContext, isValidElement, PureComponent
|
|
60
|
+
import React__default, { useState, useEffect, forwardRef, useImperativeHandle, Fragment, useMemo, useRef, useReducer, useCallback, createElement, Component, useLayoutEffect, createContext, memo, useContext, isValidElement, PureComponent } from "react";
|
|
61
61
|
import { Icon, Classes, Button, Intent, MenuItem, Keys, Tag, Popover, Tooltip, Spinner, InputGroup, Checkbox, Switch, TextArea, EditableText, NumericInput, RadioGroup, Position, FormGroup, Menu, Toaster, MenuDivider, useHotkeys, ContextMenu, Callout, Dialog, Card, Tabs, Tab, Colors, Overlay, KeyCombo, ProgressBar } from "@blueprintjs/core";
|
|
62
62
|
import { formValueSelector, initialize, change, Field, reduxForm, SubmissionError, destroy, touch, FormName, Fields } from "redux-form";
|
|
63
63
|
import require$$2$1, { unstable_batchedUpdates, createPortal, flushSync } from "react-dom";
|
|
@@ -72873,7 +72873,7 @@ const _FillWindow = class _FillWindow extends React__default.Component {
|
|
|
72873
72873
|
this.props.children && isFunction$5(this.props.children) ? this.props.children(windowDimensions) : this.props.children
|
|
72874
72874
|
);
|
|
72875
72875
|
if (asPortal)
|
|
72876
|
-
return
|
|
72876
|
+
return require$$2$1(inner, window.document.body);
|
|
72877
72877
|
return inner;
|
|
72878
72878
|
}
|
|
72879
72879
|
};
|
package/package.json
CHANGED
package/src/FillWindow.js
CHANGED