@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
|
@@ -194,7 +194,7 @@ export class NumericalDisplayElement extends ReadableElement {
|
|
|
194
194
|
this.writeValue = writeValue;
|
|
195
195
|
this.showValue = result.showValue;
|
|
196
196
|
if (+this.displayText !== +this.showValue) {
|
|
197
|
-
if (this.numericalOperation) {
|
|
197
|
+
if (this.numericalOperation || result.enableNumericalOperation) {
|
|
198
198
|
this.writeValueMmodalRef.hide();
|
|
199
199
|
}
|
|
200
200
|
else {
|
|
@@ -110,7 +110,7 @@ let WriteValueModalComponent = class WriteValueModalComponent {
|
|
|
110
110
|
value = this.formatWriteValue();
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
|
-
this.onClosed({ value, showValue });
|
|
113
|
+
this.onClosed({ value, showValue, enableNumericalOperation: this.enableNumericalOperation });
|
|
114
114
|
}
|
|
115
115
|
close() {
|
|
116
116
|
this.bsModalRef.hide();
|