@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.
@@ -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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "bundles/fc-gui.umd.js",
3
- "version": "3.0.0-alpha.50",
3
+ "version": "3.0.0-alpha.51",
4
4
  "module": "public_api.js",
5
5
  "typings": "public_api.d.ts",
6
6
  "license": "UNLICENSED",