@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
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
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
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
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
|
|
1031
|
+
return this.x;
|
|
1032
1032
|
}
|
|
1033
1033
|
Y() {
|
|
1034
|
-
return
|
|
1034
|
+
return this.y;
|
|
1035
1035
|
}
|
|
1036
1036
|
Width() {
|
|
1037
|
-
return
|
|
1037
|
+
return this.width;
|
|
1038
1038
|
}
|
|
1039
1039
|
Height() {
|
|
1040
|
-
return
|
|
1040
|
+
return this.height;
|
|
1041
1041
|
}
|
|
1042
1042
|
IsCenteredToWindow() {
|
|
1043
|
-
return
|
|
1043
|
+
return this.isCenteredToWindow;
|
|
1044
1044
|
}
|
|
1045
1045
|
FormName() {
|
|
1046
|
-
return
|
|
1046
|
+
return this.formName;
|
|
1047
1047
|
}
|
|
1048
1048
|
ShowTitleBar() {
|
|
1049
|
-
return
|
|
1049
|
+
return this.showTitleBar;
|
|
1050
1050
|
}
|
|
1051
1051
|
ShouldCloseOnBackgroundClick() {
|
|
1052
|
-
return
|
|
1052
|
+
return this.shouldCloseOnBackgroundClick;
|
|
1053
1053
|
}
|
|
1054
1054
|
IsResizable() {
|
|
1055
|
-
return
|
|
1055
|
+
return this.isResizable;
|
|
1056
1056
|
}
|
|
1057
1057
|
IsMovable() {
|
|
1058
|
-
return
|
|
1058
|
+
return this.isMovable;
|
|
1059
1059
|
}
|
|
1060
1060
|
}
|
|
1061
1061
|
|