ninegrid2 6.416.0 → 6.418.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 +4 -1
- package/dist/bundle.esm.js +4 -1
- package/dist/etc/ngCellTouchEvent.js +2 -0
- package/dist/etc/ngScrollBar.js +1 -0
- package/dist/etc/ngView.js +1 -1
- package/package.json +1 -1
- package/src/etc/ngCellTouchEvent.js +2 -0
- package/src/etc/ngScrollBar.js +1 -0
- package/src/etc/ngView.js +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -13725,6 +13725,8 @@ class ngCellTouchEvent
|
|
|
13725
13725
|
if (e.touches.length > 1 || e.changedTouches.length > 1) return;
|
|
13726
13726
|
|
|
13727
13727
|
e.preventDefault();
|
|
13728
|
+
|
|
13729
|
+
console.log(e);
|
|
13728
13730
|
|
|
13729
13731
|
/**
|
|
13730
13732
|
if (!this.#scrollDirect) {
|
|
@@ -21540,6 +21542,7 @@ class ngVScrollBar extends HTMLElement
|
|
|
21540
21542
|
|
|
21541
21543
|
#thumb_onMouseMove = (e) => {
|
|
21542
21544
|
if (!this.#dragging) return;
|
|
21545
|
+
|
|
21543
21546
|
e.preventDefault();
|
|
21544
21547
|
|
|
21545
21548
|
if (this.#firstThumbMove) {
|
|
@@ -23465,7 +23468,7 @@ class ngView
|
|
|
23465
23468
|
$(".ng-container tbody.bindable tr.nodata", this.#owner.body).height(h);
|
|
23466
23469
|
|
|
23467
23470
|
|
|
23468
|
-
console.log("#resetTR3", this.#owner, h);
|
|
23471
|
+
//console.log("#resetTR3", this.#owner, h);
|
|
23469
23472
|
|
|
23470
23473
|
/**
|
|
23471
23474
|
this.#owner.body.querySelector(".ng-container-body .ng-table").style.top = 0;
|
package/dist/bundle.esm.js
CHANGED
|
@@ -13723,6 +13723,8 @@ class ngCellTouchEvent
|
|
|
13723
13723
|
if (e.touches.length > 1 || e.changedTouches.length > 1) return;
|
|
13724
13724
|
|
|
13725
13725
|
e.preventDefault();
|
|
13726
|
+
|
|
13727
|
+
console.log(e);
|
|
13726
13728
|
|
|
13727
13729
|
/**
|
|
13728
13730
|
if (!this.#scrollDirect) {
|
|
@@ -21538,6 +21540,7 @@ class ngVScrollBar extends HTMLElement
|
|
|
21538
21540
|
|
|
21539
21541
|
#thumb_onMouseMove = (e) => {
|
|
21540
21542
|
if (!this.#dragging) return;
|
|
21543
|
+
|
|
21541
21544
|
e.preventDefault();
|
|
21542
21545
|
|
|
21543
21546
|
if (this.#firstThumbMove) {
|
|
@@ -23463,7 +23466,7 @@ class ngView
|
|
|
23463
23466
|
$(".ng-container tbody.bindable tr.nodata", this.#owner.body).height(h);
|
|
23464
23467
|
|
|
23465
23468
|
|
|
23466
|
-
console.log("#resetTR3", this.#owner, h);
|
|
23469
|
+
//console.log("#resetTR3", this.#owner, h);
|
|
23467
23470
|
|
|
23468
23471
|
/**
|
|
23469
23472
|
this.#owner.body.querySelector(".ng-container-body .ng-table").style.top = 0;
|
package/dist/etc/ngScrollBar.js
CHANGED
package/dist/etc/ngView.js
CHANGED
|
@@ -263,7 +263,7 @@ export class ngView
|
|
|
263
263
|
$(".ng-container tbody.bindable tr.nodata", this.#owner.body).height(h);
|
|
264
264
|
|
|
265
265
|
|
|
266
|
-
console.log("#resetTR3", this.#owner, h);
|
|
266
|
+
//console.log("#resetTR3", this.#owner, h);
|
|
267
267
|
|
|
268
268
|
/**
|
|
269
269
|
this.#owner.body.querySelector(".ng-container-body .ng-table").style.top = 0;
|
package/package.json
CHANGED
package/src/etc/ngScrollBar.js
CHANGED
package/src/etc/ngView.js
CHANGED
|
@@ -263,7 +263,7 @@ export class ngView
|
|
|
263
263
|
$(".ng-container tbody.bindable tr.nodata", this.#owner.body).height(h);
|
|
264
264
|
|
|
265
265
|
|
|
266
|
-
console.log("#resetTR3", this.#owner, h);
|
|
266
|
+
//console.log("#resetTR3", this.#owner, h);
|
|
267
267
|
|
|
268
268
|
/**
|
|
269
269
|
this.#owner.body.querySelector(".ng-container-body .ng-table").style.top = 0;
|