ohctechv3/.svn/pristine/c0/c0b571edc879da8fe6870ca548e0f86c25f9b766.svn-base

19 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
import { Column } from '../entities/column';
import { ColumnGroup } from '../entities/columnGroup';
import { GridOptionsService } from '../gridOptionsService';
import { IRowNode } from '../interfaces/iRowNode';
export declare function isEventFromPrintableCharacter(event: KeyboardEvent): boolean;
/**
* Allows user to tell the grid to skip specific keyboard events
* @param {GridOptionsService} gridOptionsService
* @param {KeyboardEvent} keyboardEvent
* @param {IRowNode} rowNode
* @param {Column} column
* @param {boolean} editing
* @returns {boolean}
*/
export declare function isUserSuppressingKeyboardEvent(gridOptionsService: GridOptionsService, keyboardEvent: KeyboardEvent, rowNode: IRowNode, column: Column, editing: boolean): boolean;
export declare function isUserSuppressingHeaderKeyboardEvent(gridOptionsService: GridOptionsService, keyboardEvent: KeyboardEvent, headerRowIndex: number, column: Column | ColumnGroup): boolean;
export declare function normaliseQwertyAzerty(keyboardEvent: KeyboardEvent): string;
export declare function isDeleteKey(key: string, alwaysReturnFalseOnBackspace?: boolean): boolean;