mirror of
https://github.com/gosticks/react-bootstrap-table2.git
synced 2025-10-16 11:55:39 +00:00
20 lines
431 B
JavaScript
20 lines
431 B
JavaScript
import createContext from './src/context';
|
|
import bindRowLevelCellEdit from './src/row-binder';
|
|
import createEditingCell from './src/editing-cell-binder';
|
|
import {
|
|
EDITTYPE,
|
|
DBCLICK_TO_CELL_EDIT,
|
|
DELAY_FOR_DBCLICK
|
|
} from './src/const';
|
|
|
|
export default (options = {}) => ({
|
|
createContext,
|
|
createEditingCell,
|
|
bindRowLevelCellEdit,
|
|
DBCLICK_TO_CELL_EDIT,
|
|
DELAY_FOR_DBCLICK,
|
|
options
|
|
});
|
|
|
|
export const Type = EDITTYPE;
|