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.
- package/dist/bundle.cjs.js +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/etc/ngView.js +2 -2
- package/package.json +1 -1
- package/src/etc/ngView.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -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
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -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
|
|
package/dist/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
|
|
package/package.json
CHANGED
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
|
|