UNPKG

handsontable

Version:

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

26 lines (25 loc) 964 B
"use strict"; exports.__esModule = true; /* eslint-disable jsdoc/require-description-complete-sentence */ /** * Group name for keyboard shortcuts that are active when the cell is selected. */ const GRID_GROUP = exports.GRID_GROUP = 'gridDefault'; /** * Scope name for the grid. */ const GRID_SCOPE = exports.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). */ const GRID_TAB_NAVIGATION_GROUP = exports.GRID_TAB_NAVIGATION_GROUP = 'grid.tabNavigation'; /** * Group name for keyboard shortcuts that are active when the cell editor is active. */ const EDITOR_EDIT_GROUP = exports.EDITOR_EDIT_GROUP = 'editorManager.handlingEditor'; /** * Scope name for the editor. */ const EDITOR_SCOPE = exports.EDITOR_SCOPE = 'editor';