Updated AdminLTE to 3.04 assets, added search to side bar, added company select drop down on sidebar. removed extra delete under edit contact
This commit is contained in:
19
plugins/filterizr/FilterControls.d.ts
vendored
Normal file
19
plugins/filterizr/FilterControls.d.ts
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import Filterizr from './Filterizr';
|
||||
import { Destructible } from './types/interfaces';
|
||||
export default class FilterControls implements Destructible {
|
||||
private filterControls;
|
||||
private filterizr;
|
||||
private multiFilterControls;
|
||||
private searchControls;
|
||||
private selector;
|
||||
private shuffleControls;
|
||||
private sortAscControls;
|
||||
private sortDescControls;
|
||||
/**
|
||||
* @param filterizr keep a ref to the Filterizr object to control actions
|
||||
* @param selector selector of controls in case of multiple Filterizr instances
|
||||
*/
|
||||
constructor(filterizr: Filterizr, selector?: string);
|
||||
destroy(): void;
|
||||
private initialize;
|
||||
}
|
||||
Reference in New Issue
Block a user