handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
10 lines • 363 B
JavaScript
import { TimeEditor } from "../../editors/timeEditor/index.mjs";
import { timeRenderer } from "../../renderers/timeRenderer/index.mjs";
import { timeValidator } from "../../validators/timeValidator/index.mjs";
export const CELL_TYPE = 'time';
export const TimeCellType = {
CELL_TYPE,
editor: TimeEditor,
renderer: timeRenderer,
validator: timeValidator
};