@quantlab/handsontable
Version:
Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs
12 lines (10 loc) • 337 B
JavaScript
import { getEditor } from './../editors';
import { getRenderer } from './../renderers';
import { getValidator } from './../validators';
var CELL_TYPE = 'time';
export default {
editor: getEditor('text'),
// displays small gray arrow on right side of the cell
renderer: getRenderer('text'),
validator: getValidator(CELL_TYPE)
};