| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*! Bootstrap integration for DataTables' SearchPanes
- * © SpryMedia Ltd - datatables.net/license
- */
- import $ from 'jquery';
- import DataTable from 'datatables.net-bs4';
- import SearchPanes from 'datatables.net-searchpanes';
- $.extend(true, DataTable.SearchPane.classes, {
- buttonGroup: 'btn-group',
- disabledButton: 'disabled',
- narrow: 'col',
- pane: {
- container: 'table'
- },
- paneButton: 'btn btn-light',
- pill: 'pill badge badge-pill badge-secondary',
- search: 'form-control search',
- searchCont: 'input-group',
- searchLabelCont: 'input-group-append',
- subRow1: 'dtsp-subRow1',
- subRow2: 'dtsp-subRow2',
- table: 'table table-sm table-borderless',
- topRow: 'dtsp-topRow'
- });
- $.extend(true, DataTable.SearchPanes.classes, {
- clearAll: 'dtsp-clearAll btn btn-light',
- collapseAll: 'dtsp-collapseAll btn btn-light',
- container: 'dtsp-searchPanes',
- disabledButton: 'disabled',
- panes: 'dtsp-panes dtsp-panesContainer',
- showAll: 'dtsp-showAll btn btn-light',
- title: 'dtsp-title',
- titleRow: 'dtsp-titleRow'
- });
- export default DataTable;
|