yjz-web-sdk 1.0.11-beta.4 → 1.0.11-beta.5

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.
Files changed (2) hide show
  1. package/lib/uni-sdk.js +2 -2
  2. package/package.json +1 -1
package/lib/uni-sdk.js CHANGED
@@ -566,7 +566,7 @@ class KeyboardControl {
566
566
  this.inputDataUpdateCallback(data);
567
567
  });
568
568
  __publicField(this, "handleKeyboardContainerPointerenter", () => {
569
- if (!this.disabled) {
569
+ if (this.disabled) {
570
570
  return;
571
571
  }
572
572
  if (this.inputMethodEditorElement) {
@@ -576,7 +576,7 @@ class KeyboardControl {
576
576
  }
577
577
  });
578
578
  __publicField(this, "handleKeyboardContainerPointerleave", () => {
579
- if (!this.disabled) {
579
+ if (this.disabled) {
580
580
  return;
581
581
  }
582
582
  if (this.inputMethodEditorElement) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "yjz-web-sdk",
3
3
  "private": false,
4
- "version": "1.0.11-beta.4",
4
+ "version": "1.0.11-beta.5",
5
5
  "type": "module",
6
6
  "description": "针对于亚矩阵项目的云手机投屏和屏幕控制",
7
7
  "license": "Apache-2.0",