ninegrid2 6.409.0 → 6.410.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.
@@ -23566,7 +23566,7 @@ class ngView
23566
23566
 
23567
23567
  console.log(this.#owner, this.#owner.dataManager.viewRecords, this.#owner.getAttribute("display-row-count"));
23568
23568
  if (this.#owner.getAttribute("display-row-count")) {
23569
- if (this.#owner.viewRecords.dataManager.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
23569
+ if (this.#owner.dataManager.viewRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
23570
23570
  h = 0;
23571
23571
  }
23572
23572
  }
@@ -23564,7 +23564,7 @@ class ngView
23564
23564
 
23565
23565
  console.log(this.#owner, this.#owner.dataManager.viewRecords, this.#owner.getAttribute("display-row-count"));
23566
23566
  if (this.#owner.getAttribute("display-row-count")) {
23567
- if (this.#owner.viewRecords.dataManager.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
23567
+ if (this.#owner.dataManager.viewRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
23568
23568
  h = 0;
23569
23569
  }
23570
23570
  }
@@ -367,7 +367,7 @@ export class ngView
367
367
 
368
368
  console.log(this.#owner, this.#owner.dataManager.viewRecords, this.#owner.getAttribute("display-row-count"))
369
369
  if (this.#owner.getAttribute("display-row-count")) {
370
- if (this.#owner.viewRecords.dataManager.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
370
+ if (this.#owner.dataManager.viewRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
371
371
  h = 0;
372
372
  }
373
373
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.409.0",
4
+ "version": "6.410.0",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
7
7
  "import": "./dist/index.js",
package/src/etc/ngView.js CHANGED
@@ -367,7 +367,7 @@ export class ngView
367
367
 
368
368
  console.log(this.#owner, this.#owner.dataManager.viewRecords, this.#owner.getAttribute("display-row-count"))
369
369
  if (this.#owner.getAttribute("display-row-count")) {
370
- if (this.#owner.viewRecords.dataManager.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
370
+ if (this.#owner.dataManager.viewRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
371
371
  h = 0;
372
372
  }
373
373
  }