slate-edit-table
Version:
A Slate plugin to handle keyboard events in tables.
24 lines (22 loc) • 664 B
Flow
import createCell from './createCell';
import createRow from './createRow';
import createTable from './createTable';
import getPosition from './getPosition';
import isSelectionInTable from './isSelectionInTable';
import isSelectionOutOfTable from './isSelectionOutOfTable';
import TablePosition from './TablePosition';
import forEachCells from './forEachCells';
import getCellsAtRow from './getCellsAtRow';
import getCellsAtColumn from './getCellsAtColumn';
export {
getPosition,
forEachCells,
getCellsAtRow,
getCellsAtColumn,
isSelectionInTable,
isSelectionOutOfTable,
TablePosition,
createCell,
createRow,
createTable
};