@magic-xpa/gui 4.900.0-dev490.52 → 4.900.0-dev490.55
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/esm2020/src/management/gui/MgControlBase.mjs +1 -8
- package/fesm2015/magic-xpa-gui.mjs +0 -7
- package/fesm2015/magic-xpa-gui.mjs.map +1 -1
- package/fesm2020/magic-xpa-gui.mjs +0 -7
- package/fesm2020/magic-xpa-gui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/management/gui/MgControlBase.d.ts +0 -2
|
@@ -11567,7 +11567,6 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
11567
11567
|
this._firstRefreshProperties = true;
|
|
11568
11568
|
this._form = null;
|
|
11569
11569
|
this._hasValidItmAndDispVal = false;
|
|
11570
|
-
this._id = -1;
|
|
11571
11570
|
this._controlIsn = -1;
|
|
11572
11571
|
this._linkedParentDitIdx = -1;
|
|
11573
11572
|
this._orgChoiceDisps = null;
|
|
@@ -11610,9 +11609,6 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
11610
11609
|
get Form() {
|
|
11611
11610
|
return this._form;
|
|
11612
11611
|
}
|
|
11613
|
-
get Id() {
|
|
11614
|
-
return this._id;
|
|
11615
|
-
}
|
|
11616
11612
|
get ControlIsn() {
|
|
11617
11613
|
return this._controlIsn;
|
|
11618
11614
|
}
|
|
@@ -11834,9 +11830,6 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
11834
11830
|
case XMLConstants.MG_ATTR_CONTAINER:
|
|
11835
11831
|
this.setContainer(XmlParser.getInt(valueStr));
|
|
11836
11832
|
break;
|
|
11837
|
-
case XMLConstants.MG_ATTR_ID:
|
|
11838
|
-
this._id = XmlParser.getInt(valueStr);
|
|
11839
|
-
break;
|
|
11840
11833
|
case XMLConstants.MG_ATTR_CONTROL_ISN:
|
|
11841
11834
|
this._controlIsn = XmlParser.getInt(valueStr);
|
|
11842
11835
|
break;
|