@flexem/fc-gui 3.0.0-alpha.53 → 3.0.0-alpha.54
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 +7 -1
- package/bundles/@flexem/fc-gui.umd.js +2 -3
- package/bundles/@flexem/fc-gui.umd.js.map +1 -1
- package/bundles/@flexem/fc-gui.umd.min.js +4 -4
- package/bundles/@flexem/fc-gui.umd.min.js.map +1 -1
- package/modal/write-value/write-value-modal.component.js +2 -3
- package/package.json +1 -1
- package/service/released-variable/released-variable.service.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -214,4 +214,10 @@
|
|
|
214
214
|
## 3.0.0-alpha.53(2022-11-04)
|
|
215
215
|
### Web端
|
|
216
216
|
#### Features
|
|
217
|
-
1. FLEXCLOUD-2347【Web端】组态页面:组态页面监控点比较多,导致组态页面切换不生效问题
|
|
217
|
+
1. FLEXCLOUD-2347【Web端】组态页面:组态页面监控点比较多,导致组态页面切换不生效问题
|
|
218
|
+
|
|
219
|
+
## 3.0.0-alpha.54(2022-11-07)
|
|
220
|
+
### Web端
|
|
221
|
+
#### Features
|
|
222
|
+
1. FLEXCLOUD-2347【Web端】组态页面:组态页面监控点比较多,导致组态页面切换不生效问题
|
|
223
|
+
-- 接口变更,请求变量是否缩放使用另外一个接口
|
|
@@ -41210,9 +41210,8 @@ let WriteValueModalComponent = class WriteValueModalComponent {
|
|
|
41210
41210
|
value = this.formatWriteValue();
|
|
41211
41211
|
}
|
|
41212
41212
|
}
|
|
41213
|
-
this.args.releasedVariableService.
|
|
41214
|
-
|
|
41215
|
-
if (variablesTransform && variablesTransform.length && JSON.parse(variablesTransform[0].valueTransform).Type !== 0) {
|
|
41213
|
+
this.args.releasedVariableService.getVariableWithValueTransform(this.variableName).subscribe(result => {
|
|
41214
|
+
if (JSON.parse(result).Type !== 0) {
|
|
41216
41215
|
this.isNumericalOperation = true;
|
|
41217
41216
|
}
|
|
41218
41217
|
this.onClosed({ value, showValue, enableNumericalOperation: this.enableNumericalOperation, isNumericalOperation: this.isNumericalOperation });
|