UNPKG

handsontable

Version:

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

25 lines (22 loc) 507 B
"use strict"; exports.__esModule = true; /** * Focus scope types. */ const SCOPE_TYPES = exports.SCOPE_TYPES = Object.freeze({ INLINE: 'inline', MODAL: 'modal' }); /** * Focus activation sources. */ const FOCUS_SOURCES = exports.FOCUS_SOURCES = Object.freeze({ UNKNOWN: 'unknown', CLICK: 'click', TAB_FROM_ABOVE: 'tab_from_above', TAB_FROM_BELOW: 'tab_from_below' }); /** * Default shortcuts context name. */ const DEFAULT_SHORTCUTS_CONTEXT = exports.DEFAULT_SHORTCUTS_CONTEXT = 'grid';