handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
14 lines • 656 B
JavaScript
import { command as closeAndSave } from "./closeAndSave.mjs";
import { command as closeAndSaveByArrowKeys } from "./closeAndSaveByArrowKeys.mjs";
import { command as closeAndSaveByEnter } from "./closeAndSaveByEnter.mjs";
import { command as closeWithoutSaving } from "./closeWithoutSaving.mjs";
import { command as fastOpen } from "./fastOpen.mjs";
import { command as open } from "./open.mjs";
/**
* Returns complete list of the shortcut commands for the cells editing feature.
*
* @returns {Function[]}
*/
export function getAllCommands() {
return [closeAndSave, closeAndSaveByArrowKeys, closeAndSaveByEnter, closeWithoutSaving, fastOpen, open];
}