@stenajs-webui/grid 17.10.0 → 17.10.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/CHANGELOG.md +12 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v17.10.1 (Thu Aug 11 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Fix keyboard navigation in StandardTable [#484](https://github.com/StenaIT/stenajs-webui/pull/484) ([@esepato](https://github.com/esepato))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Markus Patoka ([@esepato](https://github.com/esepato))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v17.8.0 (Fri Jul 01 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
package/dist/index.es.js
CHANGED
|
@@ -666,7 +666,7 @@ const createKeyDownHandler = (moveHandler) => (e) => {
|
|
|
666
666
|
}
|
|
667
667
|
};
|
|
668
668
|
const focusOnCell = (tableId, pos) => {
|
|
669
|
-
const el = document.
|
|
669
|
+
const el = document.getElementById(createCellId(tableId, pos.rowIndex, pos.colIndex));
|
|
670
670
|
if (el) {
|
|
671
671
|
el.focus();
|
|
672
672
|
}
|