timeType.js 341 B

123456789101112
  1. import { getEditor } from './../editors';
  2. import { getRenderer } from './../renderers';
  3. import { getValidator } from './../validators';
  4. const CELL_TYPE = 'time';
  5. export default {
  6. editor: getEditor('text'),
  7. // displays small gray arrow on right side of the cell
  8. renderer: getRenderer('text'),
  9. validator: getValidator(CELL_TYPE),
  10. };