ninegrid2 6.135.0 → 6.136.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 -3
- package/dist/bundle.esm.js +1 -3
- package/dist/etc/ngFiltering.js +1 -3
- package/package.json +1 -1
- package/src/etc/ngFiltering.js +1 -3
package/dist/bundle.cjs.js
CHANGED
|
@@ -18007,8 +18007,6 @@ class ngFiltering
|
|
|
18007
18007
|
|
|
18008
18008
|
#getLastRowIndex = (v = "thead") => {
|
|
18009
18009
|
|
|
18010
|
-
console.log(v);
|
|
18011
|
-
|
|
18012
18010
|
let index = 0;
|
|
18013
18011
|
this.#owner.body.querySelectorAll(`.ng-table ${v}`).forEach((el) => {
|
|
18014
18012
|
index = Math.max(el.rows.length - 1, index);
|
|
@@ -18023,7 +18021,7 @@ class ngFiltering
|
|
|
18023
18021
|
|
|
18024
18022
|
this.#isFiltering = true;
|
|
18025
18023
|
|
|
18026
|
-
const lastRowIndex = this.#getLastRowIndex(
|
|
18024
|
+
const lastRowIndex = this.#getLastRowIndex();
|
|
18027
18025
|
|
|
18028
18026
|
console.log(lastRowIndex);
|
|
18029
18027
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -18005,8 +18005,6 @@ class ngFiltering
|
|
|
18005
18005
|
|
|
18006
18006
|
#getLastRowIndex = (v = "thead") => {
|
|
18007
18007
|
|
|
18008
|
-
console.log(v);
|
|
18009
|
-
|
|
18010
18008
|
let index = 0;
|
|
18011
18009
|
this.#owner.body.querySelectorAll(`.ng-table ${v}`).forEach((el) => {
|
|
18012
18010
|
index = Math.max(el.rows.length - 1, index);
|
|
@@ -18021,7 +18019,7 @@ class ngFiltering
|
|
|
18021
18019
|
|
|
18022
18020
|
this.#isFiltering = true;
|
|
18023
18021
|
|
|
18024
|
-
const lastRowIndex = this.#getLastRowIndex(
|
|
18022
|
+
const lastRowIndex = this.#getLastRowIndex();
|
|
18025
18023
|
|
|
18026
18024
|
console.log(lastRowIndex);
|
|
18027
18025
|
|
package/dist/etc/ngFiltering.js
CHANGED
|
@@ -142,8 +142,6 @@ export class ngFiltering
|
|
|
142
142
|
|
|
143
143
|
#getLastRowIndex = (v = "thead") => {
|
|
144
144
|
|
|
145
|
-
console.log(v);
|
|
146
|
-
|
|
147
145
|
let index = 0;
|
|
148
146
|
this.#owner.body.querySelectorAll(`.ng-table ${v}`).forEach((el) => {
|
|
149
147
|
index = Math.max(el.rows.length - 1, index);
|
|
@@ -158,7 +156,7 @@ export class ngFiltering
|
|
|
158
156
|
|
|
159
157
|
this.#isFiltering = true;
|
|
160
158
|
|
|
161
|
-
const lastRowIndex = this.#getLastRowIndex(
|
|
159
|
+
const lastRowIndex = this.#getLastRowIndex();
|
|
162
160
|
|
|
163
161
|
console.log(lastRowIndex);
|
|
164
162
|
|
package/package.json
CHANGED
package/src/etc/ngFiltering.js
CHANGED
|
@@ -142,8 +142,6 @@ export class ngFiltering
|
|
|
142
142
|
|
|
143
143
|
#getLastRowIndex = (v = "thead") => {
|
|
144
144
|
|
|
145
|
-
console.log(v);
|
|
146
|
-
|
|
147
145
|
let index = 0;
|
|
148
146
|
this.#owner.body.querySelectorAll(`.ng-table ${v}`).forEach((el) => {
|
|
149
147
|
index = Math.max(el.rows.length - 1, index);
|
|
@@ -158,7 +156,7 @@ export class ngFiltering
|
|
|
158
156
|
|
|
159
157
|
this.#isFiltering = true;
|
|
160
158
|
|
|
161
|
-
const lastRowIndex = this.#getLastRowIndex(
|
|
159
|
+
const lastRowIndex = this.#getLastRowIndex();
|
|
162
160
|
|
|
163
161
|
console.log(lastRowIndex);
|
|
164
162
|
|