datatables.net-searchbuilder-bs4
Advanced tools
Comparing version 1.2.2 to 1.3.0
@@ -1,49 +0,56 @@ | ||
(function (factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
// AMD | ||
define(['jquery', 'datatables.net-bs4', 'datatables.net-searchbuilder'], function ($) { | ||
return factory($); | ||
/*! SearchBuilder 1.3.0 | ||
* ©SpryMedia Ltd - datatables.net/license/mit | ||
*/ | ||
(function () { | ||
'use strict'; | ||
(function (factory) { | ||
if (typeof define === 'function' && define.amd) { | ||
// AMD | ||
define(['jquery', 'datatables.net-bs4', 'datatables.net-searchbuilder'], 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-bs4')(root, $).$; | ||
} | ||
if (!$.fn.dataTable.searchBuilder) { | ||
// eslint-disable-next-line @typescript-eslint/no-var-requires | ||
require('datatables.net-searchbuilder')(root, $); | ||
} | ||
return factory($); | ||
}; | ||
} | ||
else { | ||
// Browser | ||
factory(jQuery); | ||
} | ||
}(function ($) { | ||
var dataTable = $.fn.dataTable; | ||
$.extend(true, dataTable.SearchBuilder.classes, { | ||
clearAll: 'btn btn-light dtsb-clearAll' | ||
}); | ||
} | ||
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-bs4')(root, $).$; | ||
} | ||
if (!$.fn.dataTable.searchBuilder) { | ||
// eslint-disable-next-line @typescript-eslint/no-var-requires | ||
require('datatables.net-searchbuilder')(root, $); | ||
} | ||
return factory($); | ||
}; | ||
} | ||
else { | ||
// Browser | ||
factory(jQuery); | ||
} | ||
}(function ($) { | ||
'use strict'; | ||
var dataTable = $.fn.dataTable; | ||
$.extend(true, dataTable.SearchBuilder.classes, { | ||
clearAll: 'btn btn-light dtsb-clearAll' | ||
}); | ||
$.extend(true, dataTable.Group.classes, { | ||
add: 'btn btn-light dtsb-add', | ||
clearGroup: 'btn btn-light dtsb-clearGroup', | ||
logic: 'btn btn-light dtsb-logic' | ||
}); | ||
$.extend(true, dataTable.Criteria.classes, { | ||
condition: 'form-control dtsb-condition', | ||
data: 'form-control dtsb-data', | ||
"delete": 'btn btn-light dtsb-delete', | ||
left: 'btn btn-light dtsb-left', | ||
right: 'btn btn-light dtsb-right', | ||
value: 'form-control dtsb-value' | ||
}); | ||
return dataTable.searchPanes; | ||
})); | ||
$.extend(true, dataTable.Group.classes, { | ||
add: 'btn btn-light dtsb-add', | ||
clearGroup: 'btn btn-light dtsb-clearGroup', | ||
logic: 'btn btn-light dtsb-logic' | ||
}); | ||
$.extend(true, dataTable.Criteria.classes, { | ||
condition: 'form-control dtsb-condition', | ||
data: 'form-control dtsb-data', | ||
"delete": 'btn btn-light dtsb-delete', | ||
left: 'btn btn-light dtsb-left', | ||
right: 'btn btn-light dtsb-right', | ||
value: 'form-control dtsb-value' | ||
}); | ||
return dataTable.searchPanes; | ||
})); | ||
}()); |
@@ -7,3 +7,3 @@ { | ||
"types": "./types/searchBuilder.bootstrap4.d.ts", | ||
"version": "1.2.2", | ||
"version": "1.3.0", | ||
"files": [ | ||
@@ -27,4 +27,4 @@ "css/**/*.css", | ||
"dependencies": { | ||
"datatables.net-searchbuilder": ">=1.1.0", | ||
"datatables.net-bs4": ">=1.10.25", | ||
"datatables.net-searchbuilder": ">=1.2.2", | ||
"datatables.net-bs4": ">=1.11.3", | ||
"jquery": ">=1.7" | ||
@@ -31,0 +31,0 @@ }, |
16441
223