@magic-xpa/gui 4.900.0-dev490.280 → 4.900.0-dev490.282
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 +3 -1
- package/esm2020/src/management/gui/PIC.mjs +8 -1
- package/fesm2015/magic-xpa-gui.mjs +9 -0
- package/fesm2015/magic-xpa-gui.mjs.map +1 -1
- package/fesm2020/magic-xpa-gui.mjs +9 -0
- package/fesm2020/magic-xpa-gui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/management/gui/PIC.d.ts +3 -0
|
@@ -2023,6 +2023,7 @@ class PIC {
|
|
|
2023
2023
|
this._maskChars = 0;
|
|
2024
2024
|
this._maskSize = 0;
|
|
2025
2025
|
this._mixed = false;
|
|
2026
|
+
this._formatExp = false;
|
|
2026
2027
|
this._msk = null;
|
|
2027
2028
|
this._needLength = false;
|
|
2028
2029
|
this._negative = false;
|
|
@@ -2110,6 +2111,12 @@ class PIC {
|
|
|
2110
2111
|
decInFirstPos() {
|
|
2111
2112
|
return this._decPointIsFirst;
|
|
2112
2113
|
}
|
|
2114
|
+
setFormatExp(val) {
|
|
2115
|
+
this._formatExp = val;
|
|
2116
|
+
}
|
|
2117
|
+
isFormatExp() {
|
|
2118
|
+
return this._formatExp;
|
|
2119
|
+
}
|
|
2113
2120
|
getPosPref_() {
|
|
2114
2121
|
return this._posPref.ToString();
|
|
2115
2122
|
}
|
|
@@ -11964,6 +11971,8 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
11964
11971
|
}
|
|
11965
11972
|
}
|
|
11966
11973
|
getPIC() {
|
|
11974
|
+
if (this._picExpExists)
|
|
11975
|
+
this._pic.setFormatExp(this._picExpExists);
|
|
11967
11976
|
return this._pic;
|
|
11968
11977
|
}
|
|
11969
11978
|
getParent() {
|