@magic-xpa/cli 4.1200.0-dev4120.127 → 4.1200.0-dev4120.130

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-xpa/cli",
3
- "version": "4.1200.0-dev4120.127",
3
+ "version": "4.1200.0-dev4120.130",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "description": "Magic CLI for MagicWeb applications",
6
6
  "keywords": [
@@ -63,7 +63,9 @@ export class <%- id %> extends <% if(useMatGrid) { %> BaseMatTableMagicComponen
63
63
  private static readonly width: string = "300px";
64
64
  private static readonly height: string = "300px";
65
65
  private static readonly isCenteredToWindow: boolean = true;
66
- private static readonly shouldCloseOnBackgroundClick = true;
66
+ private static readonly shouldCloseOnBackgroundClick: boolean = true;
67
+ private static readonly isResizable: boolean = true;
68
+ private static readonly isMovable: boolean = true;
67
69
 
68
70
  X() {
69
71
  return <%- id %>.x;
@@ -96,6 +98,14 @@ export class <%- id %> extends <% if(useMatGrid) { %> BaseMatTableMagicComponen
96
98
  ShouldCloseOnBackgroundClick() {
97
99
  return <%- id %>.shouldCloseOnBackgroundClick;
98
100
  }
101
+
102
+ IsResizable() {
103
+ return <%- id %>.isResizable;
104
+ }
105
+
106
+ IsMovable() {
107
+ return <%- id %>.isMovable;
108
+ }
99
109
  <%}-%>
100
110
  <% if(useMatGrid) { -%>
101
111
  override displayedColumns = this.mgdp;