ninegrid2 6.1233.0 → 6.1235.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 +3 -1
- package/dist/bundle.esm.js +3 -1
- package/dist/etc/ngView.js +2 -0
- package/package.json +1 -1
- package/src/etc/ngView.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -117221,16 +117221,18 @@ class ngView
|
|
|
117221
117221
|
|
|
117222
117222
|
#getRowCount = () => {
|
|
117223
117223
|
|
|
117224
|
+
/**
|
|
117224
117225
|
if (this.#height.body == 0 && this.#height.thead == 0 && this.#height.tfoot == 0) {
|
|
117225
117226
|
this.#height = {
|
|
117226
117227
|
body : $(".ng-container-body", this.#owner.body).height() || 0,
|
|
117227
117228
|
thead : $(".ng-container-body thead", this.#owner.body).height() || 0,
|
|
117228
117229
|
tfoot : $(".ng-container-body tfoot", this.#owner.body).height() || 0,
|
|
117229
|
-
}
|
|
117230
|
+
}
|
|
117230
117231
|
}
|
|
117231
117232
|
|
|
117232
117233
|
console.log(this.#owner);
|
|
117233
117234
|
console.log($(".ng-container-body", this.#owner.body));
|
|
117235
|
+
*/
|
|
117234
117236
|
|
|
117235
117237
|
|
|
117236
117238
|
const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
|
package/dist/bundle.esm.js
CHANGED
|
@@ -117217,16 +117217,18 @@ class ngView
|
|
|
117217
117217
|
|
|
117218
117218
|
#getRowCount = () => {
|
|
117219
117219
|
|
|
117220
|
+
/**
|
|
117220
117221
|
if (this.#height.body == 0 && this.#height.thead == 0 && this.#height.tfoot == 0) {
|
|
117221
117222
|
this.#height = {
|
|
117222
117223
|
body : $(".ng-container-body", this.#owner.body).height() || 0,
|
|
117223
117224
|
thead : $(".ng-container-body thead", this.#owner.body).height() || 0,
|
|
117224
117225
|
tfoot : $(".ng-container-body tfoot", this.#owner.body).height() || 0,
|
|
117225
|
-
}
|
|
117226
|
+
}
|
|
117226
117227
|
}
|
|
117227
117228
|
|
|
117228
117229
|
console.log(this.#owner);
|
|
117229
117230
|
console.log($(".ng-container-body", this.#owner.body));
|
|
117231
|
+
*/
|
|
117230
117232
|
|
|
117231
117233
|
|
|
117232
117234
|
const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
|
package/dist/etc/ngView.js
CHANGED
|
@@ -108,6 +108,7 @@ export class ngView
|
|
|
108
108
|
|
|
109
109
|
#getRowCount = () => {
|
|
110
110
|
|
|
111
|
+
/**
|
|
111
112
|
if (this.#height.body == 0 && this.#height.thead == 0 && this.#height.tfoot == 0) {
|
|
112
113
|
this.#height = {
|
|
113
114
|
body : $(".ng-container-body", this.#owner.body).height() || 0,
|
|
@@ -118,6 +119,7 @@ export class ngView
|
|
|
118
119
|
|
|
119
120
|
console.log(this.#owner);
|
|
120
121
|
console.log($(".ng-container-body", this.#owner.body));
|
|
122
|
+
*/
|
|
121
123
|
|
|
122
124
|
|
|
123
125
|
const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
|
package/package.json
CHANGED
package/src/etc/ngView.js
CHANGED
|
@@ -108,6 +108,7 @@ export class ngView
|
|
|
108
108
|
|
|
109
109
|
#getRowCount = () => {
|
|
110
110
|
|
|
111
|
+
/**
|
|
111
112
|
if (this.#height.body == 0 && this.#height.thead == 0 && this.#height.tfoot == 0) {
|
|
112
113
|
this.#height = {
|
|
113
114
|
body : $(".ng-container-body", this.#owner.body).height() || 0,
|
|
@@ -118,6 +119,7 @@ export class ngView
|
|
|
118
119
|
|
|
119
120
|
console.log(this.#owner);
|
|
120
121
|
console.log($(".ng-container-body", this.#owner.body));
|
|
122
|
+
*/
|
|
121
123
|
|
|
122
124
|
|
|
123
125
|
const displayRowCount = parseInt(this.#owner.getAttribute("display-row-count"));
|