react-bootstrap-table2/packages/react-bootstrap-table2-editor/index.js
2018-10-09 00:18:17 +08:00

20 lines
435 B
JavaScript

import createContext from './src/context';
import withRowLevelCellEdit from './src/row-consumer';
import createEditingCell from './src/editing-cell-consumer';
import {
EDITTYPE,
DBCLICK_TO_CELL_EDIT,
DELAY_FOR_DBCLICK
} from './src/const';
export default (options = {}) => ({
createContext,
createEditingCell,
withRowLevelCellEdit,
DBCLICK_TO_CELL_EDIT,
DELAY_FOR_DBCLICK,
options
});
export const Type = EDITTYPE;