@flexem/fc-gui 3.0.0-alpha.57 → 3.0.0-alpha.59
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 +11 -1
- package/bundles/@flexem/fc-gui.umd.js +4 -4
- 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/gui/gui.component.d.ts +1 -1
- package/gui/gui.component.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -230,4 +230,14 @@
|
|
|
230
230
|
## 3.0.0-alpha.57(2023-01-04)
|
|
231
231
|
### Web端
|
|
232
232
|
#### Features
|
|
233
|
-
1. FLEXCLOUD-2403模板中设置网页端启动画面后,刷新后运营仪表盘、 设备仪表盘不应展示原有的启动画面
|
|
233
|
+
1. FLEXCLOUD-2403 模板中设置网页端启动画面后,刷新后运营仪表盘、 设备仪表盘不应展示原有的启动画面
|
|
234
|
+
|
|
235
|
+
## 3.0.0-alpha.58(2023-01-09)
|
|
236
|
+
### Web端
|
|
237
|
+
#### Features
|
|
238
|
+
1. FLEXCLOUD-2447 通讯问题
|
|
239
|
+
|
|
240
|
+
## 3.0.0-alpha.59(2023-01-19)
|
|
241
|
+
### Web端
|
|
242
|
+
#### Features
|
|
243
|
+
1. FLEXCLOUD-2461 manager变量属性为只写,云组态组件属性为读写,无法写值“0”
|
|
@@ -27562,7 +27562,7 @@ class numerical_display_element_NumericalDisplayElement extends readable_element
|
|
|
27562
27562
|
const writeValue = this.dataTypeService.formatToDecimal(this.model.version, result.value, this.model.dataType);
|
|
27563
27563
|
this.writeValue = writeValue;
|
|
27564
27564
|
this.showValue = result.showValue;
|
|
27565
|
-
if (+this.displayText !== +this.showValue) {
|
|
27565
|
+
if (+this.displayText !== +this.showValue || result.variableRwType === variableRwTypeEnum.witer) {
|
|
27566
27566
|
if (this.numericalOperation || result.enableNumericalOperation || result.isNumericalOperation || result.variableRwType === variableRwTypeEnum.witer) {
|
|
27567
27567
|
this.writeValueMmodalRef.hide();
|
|
27568
27568
|
}
|
|
@@ -41065,14 +41065,14 @@ let gui_component_GuiComponent = class GuiComponent {
|
|
|
41065
41065
|
}
|
|
41066
41066
|
refreshCurrentPage() {
|
|
41067
41067
|
if (this.host.currentViewIndex === undefined) {
|
|
41068
|
-
|
|
41069
|
-
return;
|
|
41068
|
+
return false;
|
|
41070
41069
|
}
|
|
41071
41070
|
const toggleView = this.viewService.toggleViews.get(this.el);
|
|
41072
41071
|
if (!toggleView) {
|
|
41073
|
-
return;
|
|
41072
|
+
return false;
|
|
41074
41073
|
}
|
|
41075
41074
|
toggleView(this.host.currentViewIndex, this.hostContainerId, this.el).subscribe();
|
|
41075
|
+
return true;
|
|
41076
41076
|
}
|
|
41077
41077
|
};
|
|
41078
41078
|
__decorate([
|