@magic-xpa/angular 4.1300.0-dev4130.222 → 4.1300.0-dev4130.224

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.
@@ -1005,57 +1005,57 @@ class GuiInteractiveExecutor {
1005
1005
  }
1006
1006
 
1007
1007
  class MagicModalProperties {
1008
- static formName = "overlay";
1009
- static showTitleBar = true;
1010
- static x = 0;
1011
- static y = 0;
1012
- static width = "300px";
1013
- static height = "300px";
1014
- static isCenteredToWindow = true;
1015
- static shouldCloseOnBackgroundClick = true;
1016
- static isResizable = true;
1017
- static isMovable = true;
1008
+ formName = "overlay";
1009
+ showTitleBar = true;
1010
+ x = 0;
1011
+ y = 0;
1012
+ width = "300px";
1013
+ height = "300px";
1014
+ isCenteredToWindow = true;
1015
+ shouldCloseOnBackgroundClick = true;
1016
+ isResizable = true;
1017
+ isMovable = true;
1018
1018
  constructor(formName, showTitleBar, x, y, width, height, isCenteredToWindow, shouldCloseOnBackgroundClick, isResizable, isMovable) {
1019
- MagicModalProperties.formName = formName;
1020
- MagicModalProperties.showTitleBar = showTitleBar;
1021
- MagicModalProperties.x = x;
1022
- MagicModalProperties.y = y;
1023
- MagicModalProperties.width = width;
1024
- MagicModalProperties.height = height;
1025
- MagicModalProperties.isCenteredToWindow = isCenteredToWindow;
1026
- MagicModalProperties.shouldCloseOnBackgroundClick = shouldCloseOnBackgroundClick;
1027
- MagicModalProperties.isResizable = isResizable;
1028
- MagicModalProperties.isMovable = isMovable;
1019
+ this.formName = formName;
1020
+ this.showTitleBar = showTitleBar;
1021
+ this.x = x;
1022
+ this.y = y;
1023
+ this.width = width;
1024
+ this.height = height;
1025
+ this.isCenteredToWindow = isCenteredToWindow;
1026
+ this.shouldCloseOnBackgroundClick = shouldCloseOnBackgroundClick;
1027
+ this.isResizable = isResizable;
1028
+ this.isMovable = isMovable;
1029
1029
  }
1030
1030
  X() {
1031
- return MagicModalProperties.x;
1031
+ return this.x;
1032
1032
  }
1033
1033
  Y() {
1034
- return MagicModalProperties.y;
1034
+ return this.y;
1035
1035
  }
1036
1036
  Width() {
1037
- return MagicModalProperties.width;
1037
+ return this.width;
1038
1038
  }
1039
1039
  Height() {
1040
- return MagicModalProperties.height;
1040
+ return this.height;
1041
1041
  }
1042
1042
  IsCenteredToWindow() {
1043
- return MagicModalProperties.isCenteredToWindow;
1043
+ return this.isCenteredToWindow;
1044
1044
  }
1045
1045
  FormName() {
1046
- return MagicModalProperties.formName;
1046
+ return this.formName;
1047
1047
  }
1048
1048
  ShowTitleBar() {
1049
- return MagicModalProperties.showTitleBar;
1049
+ return this.showTitleBar;
1050
1050
  }
1051
1051
  ShouldCloseOnBackgroundClick() {
1052
- return MagicModalProperties.shouldCloseOnBackgroundClick;
1052
+ return this.shouldCloseOnBackgroundClick;
1053
1053
  }
1054
1054
  IsResizable() {
1055
- return MagicModalProperties.isResizable;
1055
+ return this.isResizable;
1056
1056
  }
1057
1057
  IsMovable() {
1058
- return MagicModalProperties.isMovable;
1058
+ return this.isMovable;
1059
1059
  }
1060
1060
  }
1061
1061