dateType.js 352 B

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