73 lines
1.7 KiB
JavaScript
73 lines
1.7 KiB
JavaScript
/*! Bulma ui integration for DataTables' SearchBuilder
|
|
* © SpryMedia Ltd - datatables.net/license
|
|
*/
|
|
|
|
(function( factory ){
|
|
if ( typeof define === 'function' && define.amd ) {
|
|
// AMD
|
|
define( ['jquery', 'datatables.net-bm', 'datatables.net-searchbuilder'], function ( $ ) {
|
|
return factory( $, window, document );
|
|
} );
|
|
}
|
|
else if ( typeof exports === 'object' ) {
|
|
// CommonJS
|
|
var jq = require('jquery');
|
|
var cjsRequires = function (root, $) {
|
|
if ( ! $.fn.dataTable ) {
|
|
require('datatables.net-bm')(root, $);
|
|
}
|
|
|
|
if ( ! $.fn.dataTable.SearchBuilder ) {
|
|
require('datatables.net-searchbuilder')(root, $);
|
|
}
|
|
};
|
|
|
|
if (typeof window === 'undefined') {
|
|
module.exports = function (root, $) {
|
|
if ( ! root ) {
|
|
// CommonJS environments without a window global must pass a
|
|
// root. This will give an error otherwise
|
|
root = window;
|
|
}
|
|
|
|
if ( ! $ ) {
|
|
$ = jq( root );
|
|
}
|
|
|
|
cjsRequires( root, $ );
|
|
return factory( $, root, root.document );
|
|
};
|
|
}
|
|
else {
|
|
cjsRequires( window, jq );
|
|
module.exports = factory( jq, window, window.document );
|
|
}
|
|
}
|
|
else {
|
|
// Browser
|
|
factory( jQuery, window, document );
|
|
}
|
|
}(function( $, window, document, undefined ) {
|
|
'use strict';
|
|
var DataTable = $.fn.dataTable;
|
|
|
|
|
|
$.extend(true, DataTable.SearchBuilder.classes, {
|
|
clearAll: 'button dtsb-clearAll'
|
|
});
|
|
$.extend(true, DataTable.Group.classes, {
|
|
add: 'button dtsb-add',
|
|
clearGroup: 'button dtsb-clearGroup is-light',
|
|
logic: 'button dtsb-logic is-light'
|
|
});
|
|
$.extend(true, DataTable.Criteria.classes, {
|
|
container: 'dtsb-criteria',
|
|
"delete": 'button dtsb-delete',
|
|
left: 'button dtsb-left',
|
|
right: 'button dtsb-right'
|
|
});
|
|
|
|
|
|
return DataTable;
|
|
}));
|