mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-12-15 12:31:36 -06:00
Latest working copy. GUI cleanup. Need to do inputs, outputs, in cube, type codes and etc. need rendering
This commit is contained in:
55
res/SearchPanes-2.0.0/js/searchPanes.semanticui.js
Normal file
55
res/SearchPanes-2.0.0/js/searchPanes.semanticui.js
Normal file
@@ -0,0 +1,55 @@
|
||||
/*! semantic ui integration for DataTables' SearchPanes
|
||||
* ©2016 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery', 'datatables.net-se', '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-se')(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: 'right floated ui buttons column',
|
||||
disabledButton: 'disabled',
|
||||
narrowSearch: 'dtsp-narrowSearch',
|
||||
narrowSub: 'dtsp-narrow',
|
||||
paneButton: 'basic ui',
|
||||
paneInputButton: 'circular search link icon',
|
||||
topRow: 'row dtsp-topRow'
|
||||
});
|
||||
$.extend(true, dataTable.SearchPanes.classes, {
|
||||
clearAll: 'dtsp-clearAll basic ui button',
|
||||
collapseAll: 'dtsp-collapseAll basic ui button',
|
||||
disabledButton: 'disabled',
|
||||
showAll: 'dtsp-showAll basic ui button'
|
||||
});
|
||||
// This override is required for the integrated search Icon in sematic ui
|
||||
dataTable.SearchPane.prototype._searchContSetup = function () {
|
||||
$('<i class="' + this.classes.paneInputButton + '"></i>').appendTo(this.dom.searchCont);
|
||||
};
|
||||
return dataTable.searchPanes;
|
||||
}));
|
||||
Reference in New Issue
Block a user