/*! Bootstrap 5 ui integration for DataTables' SearchBuilder * © SpryMedia Ltd - datatables.net/license */ (function( factory ){ if ( typeof define === 'function' && define.amd ) { // AMD define( ['jquery', 'datatables.net-bs5', '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-bs5')(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: 'btn btn-secondary dtsb-clearAll' }); $.extend(true, DataTable.Group.classes, { add: 'btn btn-secondary dtsb-add', clearGroup: 'btn btn-secondary dtsb-clearGroup', logic: 'btn btn-secondary dtsb-logic' }); $.extend(true, DataTable.Criteria.classes, { condition: 'form-select dtsb-condition', data: 'dtsb-data form-select', "delete": 'btn btn-secondary dtsb-delete', input: 'form-control dtsb-input', left: 'btn btn-secondary dtsb-left', right: 'btn btn-secondary dtsb-right', select: 'form-select', value: 'dtsb-value' }); return DataTable; }));