UNPKG

handsontable

Version:

Handsontable is a JavaScript Spreadsheet Component available for React, Angular and Vue.

10 lines 914 B
export { AutocompleteCellType, CELL_TYPE as AUTOCOMPLETE_TYPE } from "./autocompleteType/index.mjs"; export { CheckboxCellType, CELL_TYPE as CHECKBOX_TYPE } from "./checkboxType/index.mjs"; export { DateCellType, CELL_TYPE as DATE_TYPE } from "./dateType/index.mjs"; export { DropdownCellType, CELL_TYPE as DROPDOWN_TYPE } from "./dropdownType/index.mjs"; export { HandsontableCellType, CELL_TYPE as HANDSONTABLE_TYPE } from "./handsontableType/index.mjs"; export { NumericCellType, CELL_TYPE as NUMERIC_TYPE } from "./numericType/index.mjs"; export { PasswordCellType, CELL_TYPE as PASSWORD_TYPE } from "./passwordType/index.mjs"; export { TextCellType, CELL_TYPE as TEXT_TYPE } from "./textType/index.mjs"; export { TimeCellType, CELL_TYPE as TIME_TYPE } from "./timeType/index.mjs"; export { getCellType, getRegisteredCellTypeNames, getRegisteredCellTypes, hasCellType, registerCellType } from "./registry.mjs";