-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagemdv1c.txt
24 lines (17 loc) · 841 Bytes
/
agemdv1c.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
::ng-deep .ag-cell-label-container{flex-direction: row}
::ng-deep .ag-header-cell-label { flex-direction: row-reverse; }
// ag-grid
export type OrbAgGridFilterType = 'text' | 'number';
export type OrbAgGridCompareType = string;
export type OrbAgGridFilterStringType = 'startsWith' | 'endsWith' | 'equals' | 'notEqual' | 'contains' | 'notContains' ;
export type OrbAgGridFilterNumberType = 'equals' | 'lessThan' | 'lessThanOrEqual' | 'greaterThan' | 'greaterThanOrEqual' | 'inRange';
export interface OrbAgGridFilterValue {
filterType: string;
type: OrbAgGridFilterStringType | OrbAgGridFilterNumberType | OrbAgGridCompareType;
filter: string;
}
export type OrbAgGridFilterModel = { [column in string]: OrbAgGridFilterValue}
export interface OrgAgGridFilter {
agGridColumn: string;
agGridFilterModel: OrbAgGridFilterValue;
}