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:
johnny@pittpc.com
2020-04-04 20:23:44 -04:00
parent abf7a3b381
commit 7a0ef334a3
1519 changed files with 286395 additions and 36690 deletions

16
plugins/filterizr/FilterizrElement.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
import { Destructible, Dimensions, Resizable, Styleable } from './types/interfaces';
import FilterizrOptions from './FilterizrOptions';
import EventReceiver from './EventReceiver';
import StyledFilterizrElement from './StyledFilterizrElement';
export default abstract class FilterizrElement implements Destructible, Resizable, Styleable {
node: Element;
options: FilterizrOptions;
protected eventReceiver: EventReceiver;
constructor(node: Element, options: FilterizrOptions);
readonly dimensions: Dimensions;
destroy(): void | Promise<void>;
trigger(eventType: string): void;
abstract readonly styles: StyledFilterizrElement;
protected abstract bindEvents(): void;
protected abstract unbindEvents(): void;
}