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