Commit de4f2e6d86 for handsontable.com

commit de4f2e6d86bfdd8278293cec186f7fa9deead815
Author: Krzysztof Budnik <571316+budnix@users.noreply.github.com>
Date:   Tue May 19 14:55:24 2026 +0200

    Fix merge conflicts with develop branch

    - Add 'shift' to ignoreScrollSources in core.js to match develop (DEV-1703)
    - Remove JSDoc comment from HotTableModule.version to match develop

diff --git a/handsontable/src/core.js b/handsontable/src/core.js
index cea696860b..80b9b7375c 100644
--- a/handsontable/src/core.js
+++ b/handsontable/src/core.js
@@ -572,7 +572,7 @@ export default function Core(rootContainer, userSettings, rootInstanceSymbol = f
     );

     const selectionSource = selection.getSelectionSource();
-    const ignoreScrollSources = ['loadData', 'updateData', 'deselect'];
+    const ignoreScrollSources = ['loadData', 'updateData', 'deselect', 'shift'];

     if (
       isLastSelectionLayer &&
diff --git a/wrappers/angular-wrapper/projects/hot-table/src/lib/hot-table.module.ts b/wrappers/angular-wrapper/projects/hot-table/src/lib/hot-table.module.ts
index b3e99d404b..3de4290e41 100644
--- a/wrappers/angular-wrapper/projects/hot-table/src/lib/hot-table.module.ts
+++ b/wrappers/angular-wrapper/projects/hot-table/src/lib/hot-table.module.ts
@@ -6,9 +6,5 @@ import { HotTableComponent } from './hot-table.component';
   exports: [HotTableComponent],
 })
 export class HotTableModule {
-  /**
-   * Placeholder for the library version.
-   * Replaced automatically during the pre-build/post-build process.
-   */
   static readonly version = '0.0.0-VERSION';
 }