UNPKG

@quantlab/handsontable

Version:

Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs

16 lines (13 loc) 261 B
export const KEY = 'undo'; export default function undoItem() { return { key: KEY, name: 'Undo', callback() { this.undo(); }, disabled() { return this.undoRedo && !this.undoRedo.isUndoAvailable(); } }; }