UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

23 lines 828 B
/* eslint-disable jsdoc/require-description-complete-sentence */ /** * Group name for keyboard shortcuts that are active when the cell is selected. */ export const GRID_GROUP = 'gridDefault'; /** * Scope name for the grid. */ export const GRID_SCOPE = 'grid'; /** * A special group that is used to group keyboard shortcuts that listen to tab navigation events only to * handle the tab navigation logic and proper focus movement between the grid and other UI elements * provided by the plugin (e.g. dialog or pagination). */ export const GRID_TAB_NAVIGATION_GROUP = 'grid.tabNavigation'; /** * Group name for keyboard shortcuts that are active when the cell editor is active. */ export const EDITOR_EDIT_GROUP = 'editorManager.handlingEditor'; /** * Scope name for the editor. */ export const EDITOR_SCOPE = 'editor';