ninegrid2 6.1228.0 → 6.1229.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.
@@ -117143,6 +117143,8 @@ class ngView
117143
117143
  thead : $(".ng-container-body thead", this.#owner.body).height() || 0,
117144
117144
  tfoot : $(".ng-container-body tfoot", this.#owner.body).height() || 0,
117145
117145
  };
117146
+
117147
+ console.log(this.#owner.body, this.#height);
117146
117148
 
117147
117149
  if (this.#ing) return;
117148
117150
 
@@ -117234,10 +117236,8 @@ class ngView
117234
117236
  if (this.#rawIndex + displayRowCount > this.#owner.data.count()) {
117235
117237
  this.#rawIndex = (displayRowCount >= this.#owner.data.count()) ? 0 : this.#owner.data.count() - displayRowCount;
117236
117238
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
117237
-
117238
117239
  }
117239
117240
 
117240
-
117241
117241
  return displayRowCount;
117242
117242
  }
117243
117243
 
@@ -117139,6 +117139,8 @@ class ngView
117139
117139
  thead : $(".ng-container-body thead", this.#owner.body).height() || 0,
117140
117140
  tfoot : $(".ng-container-body tfoot", this.#owner.body).height() || 0,
117141
117141
  };
117142
+
117143
+ console.log(this.#owner.body, this.#height);
117142
117144
 
117143
117145
  if (this.#ing) return;
117144
117146
 
@@ -117230,10 +117232,8 @@ class ngView
117230
117232
  if (this.#rawIndex + displayRowCount > this.#owner.data.count()) {
117231
117233
  this.#rawIndex = (displayRowCount >= this.#owner.data.count()) ? 0 : this.#owner.data.count() - displayRowCount;
117232
117234
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
117233
-
117234
117235
  }
117235
117236
 
117236
-
117237
117237
  return displayRowCount;
117238
117238
  }
117239
117239
 
@@ -30,6 +30,8 @@ export class ngView
30
30
  thead : $(".ng-container-body thead", this.#owner.body).height() || 0,
31
31
  tfoot : $(".ng-container-body tfoot", this.#owner.body).height() || 0,
32
32
  }
33
+
34
+ console.log(this.#owner.body, this.#height);
33
35
 
34
36
  if (this.#ing) return;
35
37
 
@@ -121,10 +123,8 @@ export class ngView
121
123
  if (this.#rawIndex + displayRowCount > this.#owner.data.count()) {
122
124
  this.#rawIndex = (displayRowCount >= this.#owner.data.count()) ? 0 : this.#owner.data.count() - displayRowCount;
123
125
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
124
-
125
126
  }
126
127
 
127
-
128
128
  return displayRowCount;
129
129
  }
130
130
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1228.0",
4
+ "version": "6.1229.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/etc/ngView.js CHANGED
@@ -30,6 +30,8 @@ export class ngView
30
30
  thead : $(".ng-container-body thead", this.#owner.body).height() || 0,
31
31
  tfoot : $(".ng-container-body tfoot", this.#owner.body).height() || 0,
32
32
  }
33
+
34
+ console.log(this.#owner.body, this.#height);
33
35
 
34
36
  if (this.#ing) return;
35
37
 
@@ -121,10 +123,8 @@ export class ngView
121
123
  if (this.#rawIndex + displayRowCount > this.#owner.data.count()) {
122
124
  this.#rawIndex = (displayRowCount >= this.#owner.data.count()) ? 0 : this.#owner.data.count() - displayRowCount;
123
125
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
124
-
125
126
  }
126
127
 
127
-
128
128
  return displayRowCount;
129
129
  }
130
130