ninegrid2 6.255.0 → 6.256.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.
package/dist/bundle.cjs.js
CHANGED
|
@@ -19535,7 +19535,7 @@ class ngMaxPopup extends HTMLElement
|
|
|
19535
19535
|
}
|
|
19536
19536
|
|
|
19537
19537
|
popup = () => {
|
|
19538
|
-
console.log(this.#owner.data);
|
|
19538
|
+
//console.log(this.#owner.data);
|
|
19539
19539
|
this.#grd.data.assign(this.#owner.data.get());
|
|
19540
19540
|
this.shadowRoot.querySelector('dialog').showModal();
|
|
19541
19541
|
};
|
|
@@ -24686,9 +24686,12 @@ class ninegridContainer extends HTMLElement
|
|
|
24686
24686
|
this.columns = new ngColumns(this);
|
|
24687
24687
|
|
|
24688
24688
|
for (var s in this.dataManager) { // 함수 복사
|
|
24689
|
+
console.log(s);
|
|
24690
|
+
|
|
24689
24691
|
if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
|
|
24690
24692
|
this[s] = this.dataManager[s].bind(this);
|
|
24691
24693
|
} else if (["data","row","tree"].includes(s)) {
|
|
24694
|
+
|
|
24692
24695
|
this[s] = this.dataManager[s];
|
|
24693
24696
|
}
|
|
24694
24697
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -19533,7 +19533,7 @@ class ngMaxPopup extends HTMLElement
|
|
|
19533
19533
|
}
|
|
19534
19534
|
|
|
19535
19535
|
popup = () => {
|
|
19536
|
-
console.log(this.#owner.data);
|
|
19536
|
+
//console.log(this.#owner.data);
|
|
19537
19537
|
this.#grd.data.assign(this.#owner.data.get());
|
|
19538
19538
|
this.shadowRoot.querySelector('dialog').showModal();
|
|
19539
19539
|
};
|
|
@@ -24684,9 +24684,12 @@ class ninegridContainer extends HTMLElement
|
|
|
24684
24684
|
this.columns = new ngColumns(this);
|
|
24685
24685
|
|
|
24686
24686
|
for (var s in this.dataManager) { // 함수 복사
|
|
24687
|
+
console.log(s);
|
|
24688
|
+
|
|
24687
24689
|
if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
|
|
24688
24690
|
this[s] = this.dataManager[s].bind(this);
|
|
24689
24691
|
} else if (["data","row","tree"].includes(s)) {
|
|
24692
|
+
|
|
24690
24693
|
this[s] = this.dataManager[s];
|
|
24691
24694
|
}
|
|
24692
24695
|
}
|
package/dist/etc/ngMaximize.js
CHANGED
|
@@ -661,9 +661,12 @@ 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
|
+
|
|
664
666
|
if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
|
|
665
667
|
this[s] = this.dataManager[s].bind(this);
|
|
666
668
|
} else if (["data","row","tree"].includes(s)) {
|
|
669
|
+
|
|
667
670
|
this[s] = this.dataManager[s];
|
|
668
671
|
}
|
|
669
672
|
}
|
package/package.json
CHANGED
package/src/etc/ngMaximize.js
CHANGED
|
@@ -661,9 +661,12 @@ 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
|
+
|
|
664
666
|
if (this.dataManager[s] instanceof Function && !["xxx"].includes(s)) {
|
|
665
667
|
this[s] = this.dataManager[s].bind(this);
|
|
666
668
|
} else if (["data","row","tree"].includes(s)) {
|
|
669
|
+
|
|
667
670
|
this[s] = this.dataManager[s];
|
|
668
671
|
}
|
|
669
672
|
}
|