@gloww/gloww 20.0.0-beta.17 → 20.0.0-beta.18
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/fesm2022/gloww-gloww.mjs
CHANGED
|
@@ -1426,9 +1426,10 @@ class DisplayObjectsComponent {
|
|
|
1426
1426
|
dialogConfig.disableClose = true;
|
|
1427
1427
|
dialogConfig.autoFocus = true;
|
|
1428
1428
|
dialogConfig.closeOnNavigation = false;
|
|
1429
|
-
dialogConfig.
|
|
1430
|
-
dialogConfig.
|
|
1431
|
-
dialogConfig.
|
|
1429
|
+
dialogConfig.panelClass = 'gw-resizable-dialog-panel';
|
|
1430
|
+
dialogConfig.width = '900px';
|
|
1431
|
+
dialogConfig.maxWidth = '100vw';
|
|
1432
|
+
dialogConfig.maxHeight = '100vh';
|
|
1432
1433
|
if (this.dialogConfig) {
|
|
1433
1434
|
Object.keys(this.dialogConfig).forEach(name => {
|
|
1434
1435
|
dialogConfig[name] = this.dialogConfig[name];
|
|
@@ -1516,9 +1517,10 @@ class DisplayObjectsComponent {
|
|
|
1516
1517
|
dialogConfig.disableClose = true;
|
|
1517
1518
|
dialogConfig.autoFocus = true;
|
|
1518
1519
|
dialogConfig.closeOnNavigation = false;
|
|
1519
|
-
dialogConfig.
|
|
1520
|
-
dialogConfig.
|
|
1521
|
-
dialogConfig.
|
|
1520
|
+
dialogConfig.panelClass = 'gw-resizable-dialog-panel';
|
|
1521
|
+
dialogConfig.width = '900px';
|
|
1522
|
+
dialogConfig.maxWidth = '100vw';
|
|
1523
|
+
dialogConfig.maxHeight = '100vh';
|
|
1522
1524
|
if (this.dialogConfig) {
|
|
1523
1525
|
Object.keys(this.dialogConfig).forEach(name => {
|
|
1524
1526
|
dialogConfig[name] = this.dialogConfig[name];
|