@newview/ui 1.1.32 → 1.1.33
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/README.md +4 -1
- package/dist/newview-ui.js +24 -24
- package/dist/newview-ui.umd.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/newview-ui.js
CHANGED
|
@@ -212026,6 +212026,16 @@ let Instance$1 = class Instance2 extends BaseInstance {
|
|
|
212026
212026
|
console.log("销毁完成");
|
|
212027
212027
|
});
|
|
212028
212028
|
});
|
|
212029
|
+
__publicField2(this, "HideWnd", () => {
|
|
212030
|
+
if (this.vedioHandle) {
|
|
212031
|
+
this.vedioHandle.JS_HideWnd();
|
|
212032
|
+
}
|
|
212033
|
+
});
|
|
212034
|
+
__publicField2(this, "ShowWnd", () => {
|
|
212035
|
+
if (this.vedioHandle) {
|
|
212036
|
+
this.vedioHandle.JS_ShowWnd();
|
|
212037
|
+
}
|
|
212038
|
+
});
|
|
212029
212039
|
__publicField2(this, "initialsWall", () => {
|
|
212030
212040
|
if (this.configDataNew.encryptedFields == "") {
|
|
212031
212041
|
this.configDataNew.appkey = this.setEncrypt(this.configDataNew.appkey);
|
|
@@ -212136,16 +212146,6 @@ let Instance$1 = class Instance2 extends BaseInstance {
|
|
|
212136
212146
|
this.appendMultipCameraInPanel();
|
|
212137
212147
|
}
|
|
212138
212148
|
}
|
|
212139
|
-
HideWnd() {
|
|
212140
|
-
if (this.vedioHandle) {
|
|
212141
|
-
this.vedioHandle.JS_HideWnd();
|
|
212142
|
-
}
|
|
212143
|
-
}
|
|
212144
|
-
ShowWnd() {
|
|
212145
|
-
if (this.vedioHandle) {
|
|
212146
|
-
this.vedioHandle.JS_ShowWnd();
|
|
212147
|
-
}
|
|
212148
|
-
}
|
|
212149
212149
|
resize() {
|
|
212150
212150
|
this.setVideoCrl();
|
|
212151
212151
|
this.CameraRefreshPosition();
|
|
@@ -212355,6 +212355,20 @@ class Instance extends BaseInstance {
|
|
|
212355
212355
|
console.log("销毁完成");
|
|
212356
212356
|
});
|
|
212357
212357
|
});
|
|
212358
|
+
__publicField2(this, "HideWnd", () => {
|
|
212359
|
+
if (this.vedioHandle) {
|
|
212360
|
+
this.vedioHandle.JS_HideWnd();
|
|
212361
|
+
}
|
|
212362
|
+
});
|
|
212363
|
+
__publicField2(this, "ShowWnd", () => {
|
|
212364
|
+
if (this.vedioHandle) {
|
|
212365
|
+
this.vedioHandle.JS_ShowWnd();
|
|
212366
|
+
}
|
|
212367
|
+
});
|
|
212368
|
+
__publicField2(this, "destroyed", () => {
|
|
212369
|
+
this.HideWnd();
|
|
212370
|
+
this.disposeHandle();
|
|
212371
|
+
});
|
|
212358
212372
|
__publicField2(this, "initialsWall", () => {
|
|
212359
212373
|
if (this.configDataNew.encryptedFields == "") {
|
|
212360
212374
|
this.configDataNew.appkey = this.setEncrypt(this.configDataNew.appkey);
|
|
@@ -212481,20 +212495,6 @@ class Instance extends BaseInstance {
|
|
|
212481
212495
|
this.disposeHandle();
|
|
212482
212496
|
});
|
|
212483
212497
|
}
|
|
212484
|
-
HideWnd() {
|
|
212485
|
-
if (this.vedioHandle) {
|
|
212486
|
-
this.vedioHandle.JS_HideWnd();
|
|
212487
|
-
}
|
|
212488
|
-
}
|
|
212489
|
-
ShowWnd() {
|
|
212490
|
-
if (this.vedioHandle) {
|
|
212491
|
-
this.vedioHandle.JS_ShowWnd();
|
|
212492
|
-
}
|
|
212493
|
-
}
|
|
212494
|
-
destroyed() {
|
|
212495
|
-
this.HideWnd();
|
|
212496
|
-
this.disposeHandle();
|
|
212497
|
-
}
|
|
212498
212498
|
// 响应式方法 | xxx = () => {}
|
|
212499
212499
|
initialHandle() {
|
|
212500
212500
|
this.vedioHandle = new window["WebControl"]({
|