barsa-sap-ui 1.0.261 → 1.0.262
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.
|
@@ -9231,8 +9231,8 @@ class FormDialogComponent extends BaseComponent {
|
|
|
9231
9231
|
const smallDevice = this.deviceSize === 's' || this.deviceSize === 'm';
|
|
9232
9232
|
const width = smallDevice ? '100vw' : '30vw';
|
|
9233
9233
|
let height = smallDevice ? '100vh' : 'auto';
|
|
9234
|
-
const viewWidth = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.
|
|
9235
|
-
const viewHieght = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.
|
|
9234
|
+
const viewWidth = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.MinSize.width', null);
|
|
9235
|
+
const viewHieght = BarsaApi.Common.Util.TryGetValue(this.formPanelCtrlr, 'Setting.View.MinSize.height', null);
|
|
9236
9236
|
const minWidth = smallDevice ? '100vw' : viewWidth ? viewWidth + 'px' : 'auto';
|
|
9237
9237
|
const minHeight = smallDevice ? '100vw' : viewHieght ? viewHieght + 'px' : 'auto';
|
|
9238
9238
|
if (viewHieght) {
|