neo.mjs 8.28.0 → 8.28.1
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/apps/ServiceWorker.mjs
CHANGED
package/package.json
CHANGED
package/src/DefaultConfig.mjs
CHANGED
@@ -263,12 +263,12 @@ const DefaultConfig = {
|
|
263
263
|
useVdomWorker: true,
|
264
264
|
/**
|
265
265
|
* buildScripts/injectPackageVersion.mjs will update this value
|
266
|
-
* @default '8.28.
|
266
|
+
* @default '8.28.1'
|
267
267
|
* @memberOf! module:Neo
|
268
268
|
* @name config.version
|
269
269
|
* @type String
|
270
270
|
*/
|
271
|
-
version: '8.28.
|
271
|
+
version: '8.28.1'
|
272
272
|
};
|
273
273
|
|
274
274
|
Object.assign(DefaultConfig, {
|
@@ -96,7 +96,7 @@ class ScrollManager extends Base {
|
|
96
96
|
|
97
97
|
me.gridContainer.headerToolbar.scrollLeft = scrollLeft;
|
98
98
|
|
99
|
-
if (touches) {
|
99
|
+
if (touches && !me.gridContainer.headerToolbar.cls.includes('neo-is-dragging')) {
|
100
100
|
if (me.touchMoveOwner !== 'view') {
|
101
101
|
me.touchMoveOwner = 'container'
|
102
102
|
}
|
package/src/selection/Model.mjs
CHANGED
@@ -278,11 +278,11 @@ class Model extends Base {
|
|
278
278
|
*/
|
279
279
|
unregister() {
|
280
280
|
let me = this,
|
281
|
-
cls = me.view.
|
281
|
+
cls = me.view.wrapperCls || [];
|
282
282
|
|
283
283
|
if (me.cls && cls.includes(me.cls)) {
|
284
284
|
NeoArray.remove(cls, me.cls);
|
285
|
-
me.view.
|
285
|
+
me.view.wrapperCls = cls
|
286
286
|
}
|
287
287
|
|
288
288
|
me.deselectAll();
|