Skip to content

Commit cb9cbf1

Browse files
typings
1 parent d2b9704 commit cb9cbf1

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

packages/devextreme/js/__internal/grids/grid_core/keyboard_navigation/m_keyboard_navigation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1702,7 +1702,7 @@ export class KeyboardNavigationController extends KeyboardNavigationControllerCo
17021702
}
17031703
}
17041704

1705-
public _updateFocus(isRenderView?, skipFocusEvent = false, preventScroll = false) {
1705+
public _updateFocus(isRenderView?: boolean, skipFocusEvent = false, preventScroll = false) {
17061706
this._updateFocusTimeout = setTimeout(() => {
17071707
if (this._needFocusEditingCell()) {
17081708
this._editingController._focusEditingCell();

packages/devextreme/js/__internal/grids/grid_core/keyboard_navigation/scrollable_a11y.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,12 @@ export const keyboardNavigationScrollableA11yExtender = (Base: ModuleType<Keyboa
6161
super.renderCompleted(e);
6262
}
6363

64-
public _focus($cell: any, disableFocus?: any, skipFocusEvent?: any, preventScroll?: any): void {
64+
public _focus(
65+
$cell: dxElementWrapper,
66+
disableFocus?: boolean,
67+
skipFocusEvent?: boolean,
68+
preventScroll?: boolean,
69+
): void {
6570
super._focus($cell, disableFocus, skipFocusEvent, preventScroll);
6671

6772
this.makeScrollableFocusableIfNeed();

0 commit comments

Comments
 (0)