@quantlab/handsontable
Version:
Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs
45 lines (43 loc) • 787 B
JavaScript
import Parser from './parser';
import SUPPORTED_FORMULAS from './supported-formulas';
import error, {
ERROR,
ERROR_DIV_ZERO,
ERROR_NAME,
ERROR_NOT_AVAILABLE,
ERROR_NULL,
ERROR_NUM,
ERROR_REF,
ERROR_VALUE,
ERROR_NEED_UPDATE,
ERROR_NO_KERNEL,
} from './error';
import {
extractLabel,
toLabel,
columnIndexToLabel,
columnLabelToIndex,
rowIndexToLabel,
rowLabelToIndex,
} from './helper/cell';
export {
SUPPORTED_FORMULAS,
ERROR,
ERROR_DIV_ZERO,
ERROR_NAME,
ERROR_NOT_AVAILABLE,
ERROR_NULL,
ERROR_NUM,
ERROR_REF,
ERROR_VALUE,
ERROR_NEED_UPDATE,
ERROR_NO_KERNEL,
Parser,
error,
extractLabel,
toLabel,
columnIndexToLabel,
columnLabelToIndex,
rowIndexToLabel,
rowLabelToIndex,
};