@flexem/fc-gui 3.0.0-alpha.50 → 3.0.0-alpha.51
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/CHANGELOG.md +1 -1
- package/bundles/@flexem/fc-gui.umd.js +2 -2
- package/bundles/@flexem/fc-gui.umd.js.map +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/elements/numerical-display/numerical-display-element.js +1 -1
- package/modal/write-value/write-value-modal.component.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -27561,7 +27561,7 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
|
|
|
27561
27561
|
this.writeValue = writeValue;
|
|
27562
27562
|
this.showValue = result.showValue;
|
|
27563
27563
|
if (+this.displayText !== +this.showValue) {
|
|
27564
|
-
if (this.numericalOperation) {
|
|
27564
|
+
if (this.numericalOperation || result.enableNumericalOperation) {
|
|
27565
27565
|
this.writeValueMmodalRef.hide();
|
|
27566
27566
|
}
|
|
27567
27567
|
else {
|
|
@@ -41214,7 +41214,7 @@ let WriteValueModalComponent = class WriteValueModalComponent {
|
|
|
41214
41214
|
value = this.formatWriteValue();
|
|
41215
41215
|
}
|
|
41216
41216
|
}
|
|
41217
|
-
this.onClosed({ value, showValue });
|
|
41217
|
+
this.onClosed({ value, showValue, enableNumericalOperation: this.enableNumericalOperation });
|
|
41218
41218
|
}
|
|
41219
41219
|
close() {
|
|
41220
41220
|
this.bsModalRef.hide();
|