@hubee/hubee-ui-table
Version:
Hubee UI Table é uma biblioteca que faz abstração da implementação de data tables para o React
19 lines (18 loc) • 840 B
TypeScript
export default class NavigatingService {
static getCurrentIndex(): number;
static getRowId(): string;
static getRowIdByIndex(index: number): string;
static isQuantityOnFocus: () => boolean;
static quantityIncrement(): void;
static quantityDecrement(): void;
static focusToActive(onMouseDown: boolean): void;
static getIndexOnMouseDown(element: any): number;
static navigateToOnMouseDown(element: any): number;
static makeQuerySelectorByRowIndex: (index: number) => string;
static getNextInputFocus: () => HTMLInputElement;
static getTabIndexByInputFocus: () => number;
static navigateTo(index: number, focusToActive?: boolean, onMouseDown?: boolean): boolean;
static tabNavidateTo(): void;
static toggleSelectionByRowActive(): void;
static remove(): void;
}