react-dialogger 1.1.36 → 1.1.37
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/components/DialogBase.js +10 -10
- package/package.json +1 -1
package/components/DialogBase.js
CHANGED
|
@@ -994,16 +994,16 @@ var DialogBase = /** @class */ (function (_super) {
|
|
|
994
994
|
this._dom.setAttribute('data-family', 'presentation');
|
|
995
995
|
this._dom.classList.add('appinsource-dialog-root');
|
|
996
996
|
this._dom.style.setProperty('z-index', String(this.highestZ()));
|
|
997
|
-
//
|
|
998
|
-
|
|
999
|
-
//
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
997
|
+
// Find root element
|
|
998
|
+
var rootElement = document.getElementById('root');
|
|
999
|
+
// const AppElement = rootElement.firstElementChild;
|
|
1000
|
+
if (rootElement) {
|
|
1001
|
+
rootElement.appendChild(this._dom);
|
|
1002
|
+
// AppElement.prepend(this._dom);
|
|
1003
|
+
}
|
|
1004
|
+
else {
|
|
1005
|
+
document.body.appendChild(this._dom);
|
|
1006
|
+
}
|
|
1007
1007
|
var root = (0, client_1.createRoot)(this._dom);
|
|
1008
1008
|
var props = {
|
|
1009
1009
|
ref: this._innerRef,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dialogger",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.37",
|
|
4
4
|
"description": "This package is a continuation of the react-araci package. Due to an error, react-araci was removed, and it has been decided to continue under the new package name react-dialogger",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Sueleyman Topaloglu",
|