ninegrid2 6.419.0 → 6.421.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
CHANGED
|
@@ -12824,6 +12824,8 @@ class ngCellManager
|
|
|
12824
12824
|
if (e.altKey || e.shiftKey || e.ctrlKey) return;
|
|
12825
12825
|
|
|
12826
12826
|
e.preventDefault();
|
|
12827
|
+
|
|
12828
|
+
console.log(e);
|
|
12827
12829
|
|
|
12828
12830
|
if (e.originalEvent.deltaY > 0) {
|
|
12829
12831
|
this.#owner.pageDown();
|
|
@@ -13726,8 +13728,6 @@ class ngCellTouchEvent
|
|
|
13726
13728
|
|
|
13727
13729
|
e.preventDefault();
|
|
13728
13730
|
|
|
13729
|
-
console.log(e);
|
|
13730
|
-
|
|
13731
13731
|
/**
|
|
13732
13732
|
if (!this.#scrollDirect) {
|
|
13733
13733
|
if (Math.abs(e.changedTouches[0].pageY - this.#touchStartY) > 10) {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -12822,6 +12822,8 @@ class ngCellManager
|
|
|
12822
12822
|
if (e.altKey || e.shiftKey || e.ctrlKey) return;
|
|
12823
12823
|
|
|
12824
12824
|
e.preventDefault();
|
|
12825
|
+
|
|
12826
|
+
console.log(e);
|
|
12825
12827
|
|
|
12826
12828
|
if (e.originalEvent.deltaY > 0) {
|
|
12827
12829
|
this.#owner.pageDown();
|
|
@@ -13724,8 +13726,6 @@ class ngCellTouchEvent
|
|
|
13724
13726
|
|
|
13725
13727
|
e.preventDefault();
|
|
13726
13728
|
|
|
13727
|
-
console.log(e);
|
|
13728
|
-
|
|
13729
13729
|
/**
|
|
13730
13730
|
if (!this.#scrollDirect) {
|
|
13731
13731
|
if (Math.abs(e.changedTouches[0].pageY - this.#touchStartY) > 10) {
|
package/package.json
CHANGED
package/src/etc/ngCellManager.js
CHANGED