-
Notifications
You must be signed in to change notification settings - Fork 775
/
Copy pathindex.js
44 lines (43 loc) · 1.58 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import BootstrapTable from './BootstrapTable';
import TableHeaderColumn from './TableHeaderColumn';
import InsertModalHeader from './toolbar/InsertModalHeader';
import InsertModalBody from './toolbar/InsertModalBody';
import InsertModalFooter from './toolbar/InsertModalFooter';
import InsertButton from './toolbar/InsertButton';
import DeleteButton from './toolbar/DeleteButton';
import ExportCSVButton from './toolbar/ExportCSVButton';
import ShowSelectedOnlyButton from './toolbar/ShowSelectedOnlyButton';
import ClearSearchButton from './toolbar/ClearSearchButton';
import SearchField from './toolbar/SearchField';
import ButtonGroup from './toolbar/ButtonGroup';
import SizePerPageDropDown from './pagination/SizePerPageDropDown';
if (typeof window !== 'undefined') {
window.BootstrapTable = BootstrapTable;
window.TableHeaderColumn = TableHeaderColumn;
window.InsertModalHeader = InsertModalHeader;
window.InsertModalBody = InsertModalBody;
window.InsertModalFooter = InsertModalFooter;
window.InsertButton = InsertButton;
window.DeleteButton = DeleteButton;
window.ShowSelectedOnlyButton = ShowSelectedOnlyButton;
window.ExportCSVButton = ExportCSVButton;
window.ClearSearchButton = ClearSearchButton;
window.SearchField = SearchField;
window.ButtonGroup = ButtonGroup;
window.SizePerPageDropDown = SizePerPageDropDown;
}
export {
BootstrapTable,
TableHeaderColumn,
InsertModalHeader,
InsertModalBody,
InsertModalFooter,
InsertButton,
DeleteButton,
ShowSelectedOnlyButton,
ExportCSVButton,
ClearSearchButton,
SearchField,
ButtonGroup,
SizePerPageDropDown
};