@flexem/fc-gui 3.0.0-alpha.47 → 3.0.0-alpha.48
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 +6 -1
- package/bundles/@flexem/fc-gui.umd.js +1 -1
- 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/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -199,4 +199,9 @@
|
|
|
199
199
|
## 3.0.0-alpha.47(2022-10-25)
|
|
200
200
|
### Web端
|
|
201
201
|
#### Features
|
|
202
|
-
1. 解决manager设置了数值运算写值失败的问题
|
|
202
|
+
1. 解决manager设置了数值运算写值失败的问题
|
|
203
|
+
|
|
204
|
+
## 3.0.0-alpha.48(2022-10-25)
|
|
205
|
+
### Web端
|
|
206
|
+
#### Features
|
|
207
|
+
1. 解决一个偶发问题,在云组态的元件中设置了增益时,可能出现写完值后会先显示增益后的值并提示超过长度,再关掉弹窗的问题
|
|
@@ -27557,7 +27557,6 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
|
|
|
27557
27557
|
this.writeValue = writeValue;
|
|
27558
27558
|
this.showValue = result.showValue;
|
|
27559
27559
|
if (+this.displayText !== +this.showValue) {
|
|
27560
|
-
this.variableCommunicator.write(this.writeVariableName, writeValue).subscribe();
|
|
27561
27560
|
if (this.numericalOperation) {
|
|
27562
27561
|
this.writeValueMmodalRef.hide();
|
|
27563
27562
|
}
|
|
@@ -27569,6 +27568,7 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
|
|
|
27569
27568
|
}
|
|
27570
27569
|
}, 10000);
|
|
27571
27570
|
}
|
|
27571
|
+
this.variableCommunicator.write(this.writeVariableName, writeValue).subscribe();
|
|
27572
27572
|
}
|
|
27573
27573
|
else {
|
|
27574
27574
|
this.writeValueMmodalRef.hide();
|