ninegrid2 6.1230.0 → 6.1231.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.
@@ -117229,6 +117229,8 @@ class ngView
117229
117229
  };
117230
117230
  }
117231
117231
 
117232
+ console.log(this.#height);
117233
+
117232
117234
 
117233
117235
  const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
117234
117236
  //console.log("=======displayRowCount: ", displayRowCount, this.#owner.data.count());
@@ -117249,7 +117251,7 @@ class ngView
117249
117251
  }
117250
117252
 
117251
117253
  const totalHeight = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getPinHeight();
117252
- console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
117254
+ //console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
117253
117255
 
117254
117256
  var rowCount = 0;
117255
117257
  var h = 0;
@@ -117257,7 +117259,7 @@ class ngView
117257
117259
  h += this.getRowHeight(this.#rawIndex + rowCount++);
117258
117260
  }
117259
117261
 
117260
- console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
117262
+ //console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
117261
117263
  if (this.#rawIndex + rowCount > this.#owner.data.count()) {
117262
117264
 
117263
117265
  rowCount = 0;
@@ -117274,7 +117276,7 @@ class ngView
117274
117276
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
117275
117277
  }
117276
117278
 
117277
- console.log("=======rowCount: ", rowCount);
117279
+ //console.log("=======rowCount: ", rowCount);
117278
117280
 
117279
117281
  return rowCount;
117280
117282
  };
@@ -117225,6 +117225,8 @@ class ngView
117225
117225
  };
117226
117226
  }
117227
117227
 
117228
+ console.log(this.#height);
117229
+
117228
117230
 
117229
117231
  const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
117230
117232
  //console.log("=======displayRowCount: ", displayRowCount, this.#owner.data.count());
@@ -117245,7 +117247,7 @@ class ngView
117245
117247
  }
117246
117248
 
117247
117249
  const totalHeight = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getPinHeight();
117248
- console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
117250
+ //console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
117249
117251
 
117250
117252
  var rowCount = 0;
117251
117253
  var h = 0;
@@ -117253,7 +117255,7 @@ class ngView
117253
117255
  h += this.getRowHeight(this.#rawIndex + rowCount++);
117254
117256
  }
117255
117257
 
117256
- console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
117258
+ //console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
117257
117259
  if (this.#rawIndex + rowCount > this.#owner.data.count()) {
117258
117260
 
117259
117261
  rowCount = 0;
@@ -117270,7 +117272,7 @@ class ngView
117270
117272
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
117271
117273
  }
117272
117274
 
117273
- console.log("=======rowCount: ", rowCount);
117275
+ //console.log("=======rowCount: ", rowCount);
117274
117276
 
117275
117277
  return rowCount;
117276
117278
  };
@@ -116,6 +116,8 @@ export class ngView
116
116
  }
117
117
  }
118
118
 
119
+ console.log(this.#height);
120
+
119
121
 
120
122
  const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
121
123
  //console.log("=======displayRowCount: ", displayRowCount, this.#owner.data.count());
@@ -136,7 +138,7 @@ export class ngView
136
138
  }
137
139
 
138
140
  const totalHeight = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getPinHeight();
139
- console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
141
+ //console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
140
142
 
141
143
  var rowCount = 0;
142
144
  var h = 0;
@@ -144,7 +146,7 @@ export class ngView
144
146
  h += this.getRowHeight(this.#rawIndex + rowCount++);
145
147
  }
146
148
 
147
- console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
149
+ //console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
148
150
  if (this.#rawIndex + rowCount > this.#owner.data.count()) {
149
151
 
150
152
  rowCount = 0;
@@ -161,7 +163,7 @@ export class ngView
161
163
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
162
164
  }
163
165
 
164
- console.log("=======rowCount: ", rowCount);
166
+ //console.log("=======rowCount: ", rowCount);
165
167
 
166
168
  return rowCount;
167
169
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1230.0",
4
+ "version": "6.1231.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/etc/ngView.js CHANGED
@@ -116,6 +116,8 @@ export class ngView
116
116
  }
117
117
  }
118
118
 
119
+ console.log(this.#height);
120
+
119
121
 
120
122
  const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
121
123
  //console.log("=======displayRowCount: ", displayRowCount, this.#owner.data.count());
@@ -136,7 +138,7 @@ export class ngView
136
138
  }
137
139
 
138
140
  const totalHeight = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getPinHeight();
139
- console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
141
+ //console.log("=======totalHeight: ", this.#height, this.#getPinHeight());
140
142
 
141
143
  var rowCount = 0;
142
144
  var h = 0;
@@ -144,7 +146,7 @@ export class ngView
144
146
  h += this.getRowHeight(this.#rawIndex + rowCount++);
145
147
  }
146
148
 
147
- console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
149
+ //console.log("=======: ", this.#rawIndex, rowCount, this.#owner.data.count());
148
150
  if (this.#rawIndex + rowCount > this.#owner.data.count()) {
149
151
 
150
152
  rowCount = 0;
@@ -161,7 +163,7 @@ export class ngView
161
163
  this.#owner.dataManager.viewRecords.rawIndex = this.#rawIndex;
162
164
  }
163
165
 
164
- console.log("=======rowCount: ", rowCount);
166
+ //console.log("=======rowCount: ", rowCount);
165
167
 
166
168
  return rowCount;
167
169
  };