ninegrid2 6.256.0 → 6.257.0

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.
@@ -19674,7 +19674,10 @@ class ngMenu extends HTMLElement
19674
19674
  //if (ninegrid.j.querySelectorAll(this.#owner).hasClass("ng-maximize")) {
19675
19675
  $('ng-max-popup', this.#owner.shadowRoot).remove();
19676
19676
  $(this.#owner.shadowRoot).append($('<ng-max-popup></ng-max-popup>'));
19677
- this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
19677
+ setTimeout(() => {
19678
+ this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
19679
+ }, 1000);
19680
+
19678
19681
  //}
19679
19682
  break;
19680
19683
  case "import":
@@ -24686,12 +24689,9 @@ class ninegridContainer extends HTMLElement
24686
24689
  this.columns = new ngColumns(this);
24687
24690
 
24688
24691
  for (var s in this.dataManager) { // 함수 복사
24689
- console.log(s);
24690
-
24691
24692
  if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
24692
24693
  this[s] = this.dataManager[s].bind(this);
24693
24694
  } else if (["data","row","tree"].includes(s)) {
24694
-
24695
24695
  this[s] = this.dataManager[s];
24696
24696
  }
24697
24697
  }
@@ -19672,7 +19672,10 @@ class ngMenu extends HTMLElement
19672
19672
  //if (ninegrid.j.querySelectorAll(this.#owner).hasClass("ng-maximize")) {
19673
19673
  $('ng-max-popup', this.#owner.shadowRoot).remove();
19674
19674
  $(this.#owner.shadowRoot).append($('<ng-max-popup></ng-max-popup>'));
19675
- this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
19675
+ setTimeout(() => {
19676
+ this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
19677
+ }, 1000);
19678
+
19676
19679
  //}
19677
19680
  break;
19678
19681
  case "import":
@@ -24684,12 +24687,9 @@ class ninegridContainer extends HTMLElement
24684
24687
  this.columns = new ngColumns(this);
24685
24688
 
24686
24689
  for (var s in this.dataManager) { // 함수 복사
24687
- console.log(s);
24688
-
24689
24690
  if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
24690
24691
  this[s] = this.dataManager[s].bind(this);
24691
24692
  } else if (["data","row","tree"].includes(s)) {
24692
-
24693
24693
  this[s] = this.dataManager[s];
24694
24694
  }
24695
24695
  }
@@ -133,7 +133,10 @@ class ngMenu extends HTMLElement
133
133
  //if (ninegrid.j.querySelectorAll(this.#owner).hasClass("ng-maximize")) {
134
134
  $('ng-max-popup', this.#owner.shadowRoot).remove();
135
135
  $(this.#owner.shadowRoot).append($('<ng-max-popup></ng-max-popup>'));
136
- this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
136
+ setTimeout(() => {
137
+ this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
138
+ }, 1000);
139
+
137
140
  //}
138
141
  break;
139
142
  case "import":
@@ -661,12 +661,9 @@ class ninegridContainer extends HTMLElement
661
661
  this.columns = new ngColumns(this);
662
662
 
663
663
  for (var s in this.dataManager) { // 함수 복사
664
- console.log(s);
665
-
666
664
  if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
667
665
  this[s] = this.dataManager[s].bind(this);
668
666
  } else if (["data","row","tree"].includes(s)) {
669
-
670
667
  this[s] = this.dataManager[s];
671
668
  }
672
669
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.256.0",
4
+ "version": "6.257.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
package/src/etc/ngMenu.js CHANGED
@@ -133,7 +133,10 @@ class ngMenu extends HTMLElement
133
133
  //if (ninegrid.j.querySelectorAll(this.#owner).hasClass("ng-maximize")) {
134
134
  $('ng-max-popup', this.#owner.shadowRoot).remove();
135
135
  $(this.#owner.shadowRoot).append($('<ng-max-popup></ng-max-popup>'));
136
- this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
136
+ setTimeout(() => {
137
+ this.#owner.shadowRoot.querySelector("ng-max-popup").popup();
138
+ }, 1000);
139
+
137
140
  //}
138
141
  break;
139
142
  case "import":
@@ -661,12 +661,9 @@ class ninegridContainer extends HTMLElement
661
661
  this.columns = new ngColumns(this);
662
662
 
663
663
  for (var s in this.dataManager) { // 함수 복사
664
- console.log(s);
665
-
666
664
  if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
667
665
  this[s] = this.dataManager[s].bind(this);
668
666
  } else if (["data","row","tree"].includes(s)) {
669
-
670
667
  this[s] = this.dataManager[s];
671
668
  }
672
669
  }