mirror of
https://github.com/itflow-org/itflow
synced 2026-03-02 03:44:53 +00:00
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:
4
plugins/filterizr/config/cssEasingValuesRegexp.d.ts
vendored
Normal file
4
plugins/filterizr/config/cssEasingValuesRegexp.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/**
|
||||
* A Regexp to validate potential values for the CSS easing property of transitions.
|
||||
*/
|
||||
export declare const cssEasingValuesRegexp: RegExp;
|
||||
11
plugins/filterizr/config/filterizrState.d.ts
vendored
Normal file
11
plugins/filterizr/config/filterizrState.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
interface FilterizrState {
|
||||
IDLE: 'IDLE';
|
||||
FILTERING: 'FILTERING';
|
||||
SORTING: 'SORTING';
|
||||
SHUFFLING: 'SHUFFLING';
|
||||
}
|
||||
/**
|
||||
* Possible animation states for Filterizr
|
||||
*/
|
||||
export declare const FILTERIZR_STATE: FilterizrState;
|
||||
export {};
|
||||
3
plugins/filterizr/config/index.d.ts
vendored
Normal file
3
plugins/filterizr/config/index.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { FILTERIZR_STATE } from './filterizrState';
|
||||
export { LAYOUT } from './layout';
|
||||
export { cssEasingValuesRegexp } from './cssEasingValuesRegexp';
|
||||
13
plugins/filterizr/config/layout.d.ts
vendored
Normal file
13
plugins/filterizr/config/layout.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
interface Layout {
|
||||
SAME_SIZE: 'sameSize';
|
||||
SAME_HEIGHT: 'sameHeight';
|
||||
SAME_WIDTH: 'sameWidth';
|
||||
PACKED: 'packed';
|
||||
HORIZONTAL: 'horizontal';
|
||||
VERTICAL: 'vertical';
|
||||
}
|
||||
/**
|
||||
* Possible grid layout modes
|
||||
*/
|
||||
export declare const LAYOUT: Layout;
|
||||
export {};
|
||||
Reference in New Issue
Block a user