ninegrid2 6.1222.0 → 6.1223.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 +1 -4
- package/dist/bundle.esm.js +1 -4
- package/dist/etc/ngView.js +1 -4
- package/package.json +1 -1
- package/src/etc/ngView.js +1 -4
package/dist/bundle.cjs.js
CHANGED
|
@@ -117273,6 +117273,7 @@ class ngView
|
|
|
117273
117273
|
|
|
117274
117274
|
// 1. 스크린에 보여질 TR 갯수 계산
|
|
117275
117275
|
var rowCount = this.#getRowCount();
|
|
117276
|
+
console.log(this.#owner, rowCount);
|
|
117276
117277
|
|
|
117277
117278
|
// 0. TR 생성여부 판단
|
|
117278
117279
|
//if (!this.#owner.body.querySelector(".ng-container-body tbody.bindable tr:not(.nodata)") || this.isLastPage) {
|
|
@@ -117518,16 +117519,12 @@ class ngView
|
|
|
117518
117519
|
|
|
117519
117520
|
#r = () => {
|
|
117520
117521
|
|
|
117521
|
-
console.log("===============================", this.#owner);
|
|
117522
|
-
|
|
117523
117522
|
var rows = [];
|
|
117524
117523
|
this.#owner.body.querySelectorAll(".ng-container-body tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
117525
117524
|
rows.push(this.#rawIndex + parseInt(tr.sectionRowIndex / this.#owner.template.length));
|
|
117526
117525
|
});
|
|
117527
117526
|
|
|
117528
117527
|
rows = [...new Set(rows)];
|
|
117529
|
-
|
|
117530
|
-
console.log(rows);
|
|
117531
117528
|
|
|
117532
117529
|
this.#owner.body.querySelectorAll(".ng-container tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
117533
117530
|
const index = parseInt(tr.sectionRowIndex / this.#owner.template.length);
|
package/dist/bundle.esm.js
CHANGED
|
@@ -117269,6 +117269,7 @@ class ngView
|
|
|
117269
117269
|
|
|
117270
117270
|
// 1. 스크린에 보여질 TR 갯수 계산
|
|
117271
117271
|
var rowCount = this.#getRowCount();
|
|
117272
|
+
console.log(this.#owner, rowCount);
|
|
117272
117273
|
|
|
117273
117274
|
// 0. TR 생성여부 판단
|
|
117274
117275
|
//if (!this.#owner.body.querySelector(".ng-container-body tbody.bindable tr:not(.nodata)") || this.isLastPage) {
|
|
@@ -117514,16 +117515,12 @@ class ngView
|
|
|
117514
117515
|
|
|
117515
117516
|
#r = () => {
|
|
117516
117517
|
|
|
117517
|
-
console.log("===============================", this.#owner);
|
|
117518
|
-
|
|
117519
117518
|
var rows = [];
|
|
117520
117519
|
this.#owner.body.querySelectorAll(".ng-container-body tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
117521
117520
|
rows.push(this.#rawIndex + parseInt(tr.sectionRowIndex / this.#owner.template.length));
|
|
117522
117521
|
});
|
|
117523
117522
|
|
|
117524
117523
|
rows = [...new Set(rows)];
|
|
117525
|
-
|
|
117526
|
-
console.log(rows);
|
|
117527
117524
|
|
|
117528
117525
|
this.#owner.body.querySelectorAll(".ng-container tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
117529
117526
|
const index = parseInt(tr.sectionRowIndex / this.#owner.template.length);
|
package/dist/etc/ngView.js
CHANGED
|
@@ -160,6 +160,7 @@ export class ngView
|
|
|
160
160
|
|
|
161
161
|
// 1. 스크린에 보여질 TR 갯수 계산
|
|
162
162
|
var rowCount = this.#getRowCount();
|
|
163
|
+
console.log(this.#owner, rowCount);
|
|
163
164
|
|
|
164
165
|
// 0. TR 생성여부 판단
|
|
165
166
|
//if (!this.#owner.body.querySelector(".ng-container-body tbody.bindable tr:not(.nodata)") || this.isLastPage) {
|
|
@@ -424,16 +425,12 @@ export class ngView
|
|
|
424
425
|
|
|
425
426
|
#r = () => {
|
|
426
427
|
|
|
427
|
-
console.log("===============================", this.#owner);
|
|
428
|
-
|
|
429
428
|
var rows = [];
|
|
430
429
|
this.#owner.body.querySelectorAll(".ng-container-body tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
431
430
|
rows.push(this.#rawIndex + parseInt(tr.sectionRowIndex / this.#owner.template.length));
|
|
432
431
|
});
|
|
433
432
|
|
|
434
433
|
rows = [...new Set(rows)];
|
|
435
|
-
|
|
436
|
-
console.log(rows);
|
|
437
434
|
|
|
438
435
|
this.#owner.body.querySelectorAll(".ng-container tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
439
436
|
const index = parseInt(tr.sectionRowIndex / this.#owner.template.length);
|
package/package.json
CHANGED
package/src/etc/ngView.js
CHANGED
|
@@ -160,6 +160,7 @@ export class ngView
|
|
|
160
160
|
|
|
161
161
|
// 1. 스크린에 보여질 TR 갯수 계산
|
|
162
162
|
var rowCount = this.#getRowCount();
|
|
163
|
+
console.log(this.#owner, rowCount);
|
|
163
164
|
|
|
164
165
|
// 0. TR 생성여부 판단
|
|
165
166
|
//if (!this.#owner.body.querySelector(".ng-container-body tbody.bindable tr:not(.nodata)") || this.isLastPage) {
|
|
@@ -424,16 +425,12 @@ export class ngView
|
|
|
424
425
|
|
|
425
426
|
#r = () => {
|
|
426
427
|
|
|
427
|
-
console.log("===============================", this.#owner);
|
|
428
|
-
|
|
429
428
|
var rows = [];
|
|
430
429
|
this.#owner.body.querySelectorAll(".ng-container-body tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
431
430
|
rows.push(this.#rawIndex + parseInt(tr.sectionRowIndex / this.#owner.template.length));
|
|
432
431
|
});
|
|
433
432
|
|
|
434
433
|
rows = [...new Set(rows)];
|
|
435
|
-
|
|
436
|
-
console.log(rows);
|
|
437
434
|
|
|
438
435
|
this.#owner.body.querySelectorAll(".ng-container tbody.bindable tr:not(.nodata)").forEach(tr => {
|
|
439
436
|
const index = parseInt(tr.sectionRowIndex / this.#owner.template.length);
|