| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- (function (factory) {
- if (typeof define === 'function' && define.amd) {
- // AMD
- define(['jquery', 'datatables.net-bs', 'datatables.net-searchpanes'], function ($) {
- return factory($);
- });
- }
- else if (typeof exports === 'object') {
- // CommonJS
- module.exports = function (root, $) {
- if (!root) {
- root = window;
- }
- if (!$ || !$.fn.dataTable) {
- // eslint-disable-next-line @typescript-eslint/no-var-requires
- $ = require('datatables.net-bs')(root, $).$;
- }
- if (!$.fn.dataTable.SearchPanes) {
- // eslint-disable-next-line @typescript-eslint/no-var-requires
- require('datatables.net-searchpanes')(root, $);
- }
- return factory($);
- };
- }
- else {
- // Browser
- factory(jQuery);
- }
- }(function ($) {
- 'use strict';
- var dataTable = $.fn.dataTable;
- $.extend(true, dataTable.SearchPane.classes, {
- buttonGroup: 'btn-group',
- disabledButton: 'disabled',
- narrow: 'col narrow',
- narrowSub: 'row',
- pane: {
- container: 'table'
- },
- paneButton: 'btn btn-light',
- pill: 'badge badge-pill badge-light pill',
- search: 'col-sm form-control search',
- searchCont: 'input-group dtsp-searchCont',
- searchLabelCont: 'input-group-btn',
- subRow1: 'dtsp-subRow1 text-right',
- subRow2: 'dtsp-subRow2 text-right',
- table: 'table table-condensed'
- });
- $.extend(true, dataTable.SearchPanes.classes, {
- clearAll: 'dtsp-clearAll btn btn-light',
- collapseAll: 'dtsp-collapseAll btn btn-light',
- disabledButton: 'disabled',
- showAll: 'dtsp-showAll btn btn-light'
- });
- return dataTable.searchPanes;
- }));
|