@xh/hoist 76.0.0-SNAPSHOT.1758751683536 → 76.0.0-SNAPSHOT.1758755408459
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/cmp/grid/GridModel.ts +4 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/cmp/grid/GridModel.ts
CHANGED
|
@@ -1498,9 +1498,11 @@ export class GridModel extends HoistModel {
|
|
|
1498
1498
|
// If the rowIndex has moved since we started edit, sorting might have caused the wrong row
|
|
1499
1499
|
// to be focused. In this (rare) case, just conservatively keep focus on what was edited
|
|
1500
1500
|
if (
|
|
1501
|
+
origCell &&
|
|
1502
|
+
focusedCell &&
|
|
1501
1503
|
!isUndefined(e.rowIndex) &&
|
|
1502
|
-
origCell
|
|
1503
|
-
focusedCell
|
|
1504
|
+
origCell.rowIndex != e.rowIndex &&
|
|
1505
|
+
focusedCell.rowIndex != e.rowIndex
|
|
1504
1506
|
) {
|
|
1505
1507
|
agApi.setFocusedCell(e.rowIndex, origCell.colId);
|
|
1506
1508
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "76.0.0-SNAPSHOT.
|
|
3
|
+
"version": "76.0.0-SNAPSHOT.1758755408459",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|