@flexem/fc-gui 3.0.0-alpha.88 → 3.0.0-alpha.89
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 +5 -3
- 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/view-operation/view-operation.element.js +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -396,4 +396,9 @@
|
|
|
396
396
|
## 3.0.0-alpha.88(2023-06-01)
|
|
397
397
|
### Web端
|
|
398
398
|
#### Bug Fix
|
|
399
|
-
1. FLEXCLOUD-2699、FLEXCLOUD-2700 将视频元件还原为在组态外渲染,并且在弹窗时隐藏视频
|
|
399
|
+
1. FLEXCLOUD-2699、FLEXCLOUD-2700 将视频元件还原为在组态外渲染,并且在弹窗时隐藏视频
|
|
400
|
+
|
|
401
|
+
## 3.0.0-alpha.89(2023-06-01)
|
|
402
|
+
### Web端
|
|
403
|
+
#### Bug Fix
|
|
404
|
+
1. FLEXCLOUD-2699、FLEXCLOUD-2700 修改视频元件,优化视频显示逻辑
|
|
@@ -39323,9 +39323,11 @@ class view_operation_element_ViewOperationElement extends conditional_enable_ele
|
|
|
39323
39323
|
}
|
|
39324
39324
|
closeView() {
|
|
39325
39325
|
this.popupViewService.closeView();
|
|
39326
|
-
$(`#${this.hostContainerId}
|
|
39327
|
-
.
|
|
39328
|
-
|
|
39326
|
+
if ($(`#${this.hostContainerId} svg`).length === 1) {
|
|
39327
|
+
$(`#${this.hostContainerId} .video-hidden`)
|
|
39328
|
+
.removeClass('video-hidden')
|
|
39329
|
+
.css('visibility', 'visible');
|
|
39330
|
+
}
|
|
39329
39331
|
this.recordViewOperation();
|
|
39330
39332
|
}
|
|
39331
39333
|
moveView(movementX, movementY) {
|