igniteui-webcomponents-grids 4.2.2 → 4.2.4-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-grids.umd.js +1132 -799
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/BaseEditorView.js +30 -14
- package/esm2015/lib/CheckboxListView_combined.js +1 -0
- package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm2015/lib/ComboEditorView.js +111 -105
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +400 -343
- package/esm2015/lib/DateEditorView.js +94 -87
- package/esm2015/lib/EditorCell.js +10 -10
- package/esm2015/lib/FilterCell.js +76 -60
- package/esm2015/lib/FilterCellPresenter.js +6 -3
- package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +49 -23
- package/esm2015/lib/ISummaryChooserView_combined.js +1 -0
- package/esm2015/lib/NumericEditorView.js +3 -3
- package/esm2015/lib/TextEditorView.js +82 -75
- package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
- package/esm2015/lib/igc-grid-column-options-component.js +21 -1
- package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
- package/esm5/lib/BaseEditorView.js +34 -14
- package/esm5/lib/CheckboxListView_combined.js +1 -0
- package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm5/lib/ComboEditorView.js +108 -102
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +407 -342
- package/esm5/lib/DateEditorView.js +93 -86
- package/esm5/lib/EditorCell.js +10 -10
- package/esm5/lib/FilterCell.js +80 -60
- package/esm5/lib/FilterCellPresenter.js +6 -3
- package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +57 -23
- package/esm5/lib/ISummaryChooserView_combined.js +1 -0
- package/esm5/lib/NumericEditorView.js +3 -3
- package/esm5/lib/TextEditorView.js +82 -75
- package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
- package/esm5/lib/igc-grid-column-options-component.js +29 -1
- package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
- package/fesm2015/igniteui-webcomponents-grids.js +1076 -804
- package/fesm5/igniteui-webcomponents-grids.js +1132 -799
- package/grids/3rdpartylicenses.txt +445 -0
- package/grids/combined.js +44 -160
- package/grids/index.d.ts +2 -0
- package/grids/lib/igc-grid-base-directive.d.ts +14 -0
- package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
- package/grids/lib/igc-grid-selection-range.d.ts +1 -0
- package/grids/lib/igc-pivot-date-dimension.d.ts +1 -1
- package/grids/lib/igc-pivot-grid-column.d.ts +32 -0
- package/grids/lib/igc-pivot-grid-record.d.ts +28 -0
- package/grids/lib/igc-row-data-event-args.d.ts +4 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/BaseEditorView.d.ts +12 -8
- package/lib/ColumnFilterCondition_combined.d.ts +2 -0
- package/lib/ComboEditorView.d.ts +15 -14
- package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView_combined.d.ts +104 -95
- package/lib/DateEditorView.d.ts +13 -12
- package/lib/FilterCell.d.ts +23 -20
- package/lib/GridColumnOptionsView_combined.d.ts +10 -5
- package/lib/GridColumnSummaryOptionsView_combined.d.ts +13 -8
- package/lib/IEditorView.d.ts +2 -0
- package/lib/TextEditorView.d.ts +10 -9
- package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
- package/lib/igc-grid-column-options-component.d.ts +8 -0
- package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
- package/package.json +4 -4
package/lib/BaseEditorView.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Base, Type } from "igniteui-webcomponents-core";
|
|
2
2
|
import { IEditorView } from "./IEditorView";
|
|
3
3
|
import { DomRenderer } from "igniteui-webcomponents-core";
|
|
4
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
4
5
|
import { ICellActionManager } from "./ICellActionManager";
|
|
5
6
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
6
7
|
import { KeyEventArgs } from "igniteui-webcomponents-core";
|
|
@@ -23,14 +24,16 @@ export declare class BaseEditorView extends Base implements IEditorView {
|
|
|
23
24
|
isEnabled: boolean;
|
|
24
25
|
focusOnValueChanged: boolean;
|
|
25
26
|
showClearButton: boolean;
|
|
27
|
+
private x;
|
|
28
|
+
textColor: Brush;
|
|
26
29
|
valueProvided: (sender: IEditorView, value: any, ignoreValue: boolean) => void;
|
|
27
|
-
protected
|
|
30
|
+
protected q(a: any, b: boolean): void;
|
|
28
31
|
userTyping: (sender: IEditorView) => void;
|
|
29
|
-
protected
|
|
32
|
+
protected p(): void;
|
|
30
33
|
lostFocus: (sender: IEditorView) => void;
|
|
31
|
-
protected
|
|
34
|
+
protected o(): void;
|
|
32
35
|
gotFocus: (sender: IEditorView) => void;
|
|
33
|
-
protected
|
|
36
|
+
protected n(): void;
|
|
34
37
|
protected a: ICellActionManager;
|
|
35
38
|
constructor(a: DomRenderer, b: ICellActionManager);
|
|
36
39
|
setFont(a: FontInfo): void;
|
|
@@ -41,11 +44,12 @@ export declare class BaseEditorView extends Base implements IEditorView {
|
|
|
41
44
|
onEditStarted(): void;
|
|
42
45
|
cleanUp(): void;
|
|
43
46
|
focus(): void;
|
|
44
|
-
protected
|
|
47
|
+
protected s(): void;
|
|
45
48
|
getEditorValue(): any;
|
|
46
49
|
setEditorValue(a: any): void;
|
|
47
|
-
protected
|
|
48
|
-
protected
|
|
49
|
-
protected
|
|
50
|
+
protected u(a: string, b: any, c: any): void;
|
|
51
|
+
protected w(): void;
|
|
52
|
+
protected r(): void;
|
|
53
|
+
protected v(): void;
|
|
50
54
|
protected onInputKeyDown(a: any, b: KeyEventArgs): void;
|
|
51
55
|
}
|
|
@@ -3141,6 +3141,8 @@ export declare class FilterRowDefinition extends DefinitionBase {
|
|
|
3141
3141
|
protected c2(a: any, b: PropertyChangedEventArgs): void;
|
|
3142
3142
|
cx(a: CellModel, b: Grid, c: any, d: any): void;
|
|
3143
3143
|
cz(a: CellModel, b: Grid, c: any, d: any): void;
|
|
3144
|
+
protected dg(): void;
|
|
3145
|
+
protected c9(): void;
|
|
3144
3146
|
}
|
|
3145
3147
|
/**
|
|
3146
3148
|
* @hidden
|
package/lib/ComboEditorView.d.ts
CHANGED
|
@@ -10,16 +10,16 @@ import { InputChangeEventArgs } from "igniteui-webcomponents-inputs";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class ComboEditorView extends BaseEditorView {
|
|
12
12
|
static $t: Type;
|
|
13
|
-
private y;
|
|
14
|
-
private x;
|
|
15
|
-
private aa;
|
|
16
13
|
private ab;
|
|
14
|
+
private aa;
|
|
17
15
|
private ad;
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
private ae;
|
|
17
|
+
private ag;
|
|
18
|
+
private y;
|
|
19
|
+
private ac;
|
|
20
|
+
af: any;
|
|
21
|
+
ai: string;
|
|
22
|
+
z: string[];
|
|
23
23
|
constructor(a: DomRenderer, b: BaseControlTheme, c: ICellActionManager);
|
|
24
24
|
setFont(a: FontInfo): void;
|
|
25
25
|
attachEvents(): void;
|
|
@@ -27,14 +27,15 @@ export declare class ComboEditorView extends BaseEditorView {
|
|
|
27
27
|
onTargetChanged(): void;
|
|
28
28
|
onEditStarted(): void;
|
|
29
29
|
onEditEnded(): void;
|
|
30
|
-
protected
|
|
31
|
-
|
|
32
|
-
protected
|
|
33
|
-
protected
|
|
34
|
-
private
|
|
30
|
+
protected s(): void;
|
|
31
|
+
al(): void;
|
|
32
|
+
protected u(a: string, b: any, c: any): void;
|
|
33
|
+
protected w(): void;
|
|
34
|
+
private ao;
|
|
35
|
+
protected v(): void;
|
|
35
36
|
private onComboValueChanged;
|
|
36
37
|
private onComboTextChanged;
|
|
37
|
-
private
|
|
38
|
+
private as;
|
|
38
39
|
protected onInputChanging(a: any, b: InputChangeEventArgs): void;
|
|
39
40
|
private onComboLostFocus;
|
|
40
41
|
private onComboGotFocus;
|
|
@@ -13,6 +13,7 @@ import { TemplateColumn } from "./TemplateColumn";
|
|
|
13
13
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
14
14
|
import { ColumnComparisonConditionOperatorType } from "./ColumnComparisonConditionOperatorType";
|
|
15
15
|
import { DataSourceSchemaPropertyType } from "igniteui-webcomponents-core";
|
|
16
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
16
17
|
import { OperatorSelectorValueChangedEventArgs } from "./OperatorSelectorValueChangedEventArgs";
|
|
17
18
|
/**
|
|
18
19
|
* @hidden
|
|
@@ -33,15 +34,16 @@ export declare class ComparisonOperatorSelectorView extends Base {
|
|
|
33
34
|
g: DomRenderer;
|
|
34
35
|
a: ComparisonOperatorSelector;
|
|
35
36
|
constructor(a: ComparisonOperatorSelector);
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
u(a: any): void;
|
|
38
|
+
w(): Rect;
|
|
39
|
+
t(a: any, b: OperatorModel): void;
|
|
39
40
|
private q;
|
|
41
|
+
private s;
|
|
40
42
|
private r;
|
|
41
43
|
private n;
|
|
42
44
|
private onDocumentKeyDown;
|
|
43
45
|
private onDocumentMouseDown;
|
|
44
|
-
|
|
46
|
+
v(a: any): void;
|
|
45
47
|
}
|
|
46
48
|
/**
|
|
47
49
|
* @hidden
|
|
@@ -49,137 +51,144 @@ export declare class ComparisonOperatorSelectorView extends Base {
|
|
|
49
51
|
export declare class ComparisonOperatorSelector extends Base implements INotifyPropertyChanged {
|
|
50
52
|
static $t: Type;
|
|
51
53
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
52
|
-
protected
|
|
53
|
-
protected
|
|
54
|
-
protected static readonly
|
|
55
|
-
protected static readonly
|
|
56
|
-
protected static readonly
|
|
57
|
-
protected static readonly
|
|
58
|
-
protected static readonly bl: string;
|
|
59
|
-
protected static readonly dj: string;
|
|
54
|
+
protected eg(a: string, b: any, c: any): void;
|
|
55
|
+
protected ei(a: string, b: any, c: any): void;
|
|
56
|
+
protected static readonly dw: string;
|
|
57
|
+
protected static readonly bt: string;
|
|
58
|
+
protected static readonly ca: string;
|
|
59
|
+
protected static readonly ad: string;
|
|
60
60
|
protected static readonly bn: string;
|
|
61
|
+
protected static readonly dl: string;
|
|
61
62
|
protected static readonly bp: string;
|
|
62
|
-
protected static readonly
|
|
63
|
-
protected static readonly bu: string;
|
|
64
|
-
protected static readonly bv: string;
|
|
65
|
-
protected static readonly b0: string;
|
|
66
|
-
protected static readonly b1: string;
|
|
63
|
+
protected static readonly br: string;
|
|
67
64
|
protected static readonly bo: string;
|
|
68
|
-
protected static readonly b7: string;
|
|
69
|
-
protected static readonly dp: string;
|
|
70
|
-
protected static readonly dq: string;
|
|
71
|
-
protected static readonly dx: string;
|
|
72
|
-
protected static readonly dk: string;
|
|
73
|
-
protected static readonly b3: string;
|
|
74
65
|
protected static readonly bw: string;
|
|
75
|
-
protected static readonly dn: string;
|
|
76
|
-
protected static readonly b6: string;
|
|
77
|
-
protected static readonly bz: string;
|
|
78
|
-
protected static readonly dl: string;
|
|
79
|
-
protected static readonly b4: string;
|
|
80
66
|
protected static readonly bx: string;
|
|
81
|
-
protected static readonly
|
|
67
|
+
protected static readonly b2: string;
|
|
68
|
+
protected static readonly b3: string;
|
|
69
|
+
protected static readonly bq: string;
|
|
70
|
+
protected static readonly b9: string;
|
|
71
|
+
protected static readonly ds: string;
|
|
72
|
+
protected static readonly dt: string;
|
|
73
|
+
protected static readonly d0: string;
|
|
74
|
+
protected static readonly dn: string;
|
|
82
75
|
protected static readonly b5: string;
|
|
83
76
|
protected static readonly by: string;
|
|
84
|
-
protected static readonly
|
|
85
|
-
protected static readonly
|
|
86
|
-
protected static readonly
|
|
77
|
+
protected static readonly dr: string;
|
|
78
|
+
protected static readonly b8: string;
|
|
79
|
+
protected static readonly b1: string;
|
|
80
|
+
protected static readonly dp: string;
|
|
81
|
+
protected static readonly b6: string;
|
|
82
|
+
protected static readonly bz: string;
|
|
83
|
+
protected static readonly dq: string;
|
|
84
|
+
protected static readonly b7: string;
|
|
85
|
+
protected static readonly b0: string;
|
|
86
|
+
protected static readonly dz: string;
|
|
87
87
|
protected static readonly dh: string;
|
|
88
88
|
protected static readonly di: string;
|
|
89
|
-
protected static readonly
|
|
89
|
+
protected static readonly dj: string;
|
|
90
|
+
protected static readonly dk: string;
|
|
91
|
+
protected static readonly b4: string;
|
|
92
|
+
protected static readonly dy: string;
|
|
93
|
+
protected static readonly du: string;
|
|
94
|
+
protected static readonly ab: string;
|
|
90
95
|
protected static readonly dv: string;
|
|
91
|
-
protected static readonly
|
|
92
|
-
protected static readonly
|
|
93
|
-
|
|
94
|
-
protected
|
|
95
|
-
protected static readonly ad: string;
|
|
96
|
-
private q;
|
|
97
|
-
protected readonly r: SRProvider;
|
|
96
|
+
protected static readonly ac: string;
|
|
97
|
+
protected static readonly af: string;
|
|
98
|
+
private r;
|
|
99
|
+
protected readonly s: SRProvider;
|
|
98
100
|
protected e: ComparisonOperatorSelectorView;
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
101
|
+
q: Popup;
|
|
102
|
+
p: XIcon;
|
|
103
|
+
o: XButton;
|
|
102
104
|
f: Grid;
|
|
103
|
-
|
|
105
|
+
n: TemplateColumn;
|
|
106
|
+
v: List$1<OperatorModel>;
|
|
104
107
|
u: List$1<OperatorModel>;
|
|
105
|
-
t: List$1<OperatorModel>;
|
|
106
108
|
private g;
|
|
107
109
|
i: OperatorModel;
|
|
108
|
-
private
|
|
110
|
+
private t;
|
|
109
111
|
private a;
|
|
110
112
|
b: ColumnComparisonConditionOperatorType;
|
|
111
|
-
|
|
112
|
-
|
|
113
|
+
ae: string;
|
|
114
|
+
x: number;
|
|
113
115
|
private c;
|
|
114
116
|
d: DataSourceSchemaPropertyType;
|
|
115
|
-
private
|
|
116
|
-
|
|
117
|
+
private w;
|
|
118
|
+
z: number;
|
|
119
|
+
private eo;
|
|
120
|
+
eq: Brush;
|
|
121
|
+
private en;
|
|
122
|
+
ep: Brush;
|
|
117
123
|
valueChanged: (sender: any, args: OperatorSelectorValueChangedEventArgs) => void;
|
|
118
124
|
opening: (sender: any, args: OperatorSelectorOpeningEventArgs) => void;
|
|
125
|
+
opened: (sender: any, args: OperatorSelectorOpeningEventArgs) => void;
|
|
119
126
|
closing: (sender: any, args: OperatorSelectorClosingEventArgs) => void;
|
|
120
|
-
readonly
|
|
121
|
-
readonly ci: string;
|
|
122
|
-
readonly ch: string;
|
|
123
|
-
readonly cx: string;
|
|
124
|
-
readonly cp: string;
|
|
125
|
-
readonly cq: string;
|
|
126
|
-
readonly cj: string;
|
|
127
|
+
readonly dd: string;
|
|
127
128
|
readonly ck: string;
|
|
129
|
+
readonly cj: string;
|
|
130
|
+
readonly cz: string;
|
|
131
|
+
readonly cr: string;
|
|
132
|
+
readonly cs: string;
|
|
133
|
+
readonly cl: string;
|
|
134
|
+
readonly cm: string;
|
|
135
|
+
readonly db: string;
|
|
136
|
+
readonly cb: string;
|
|
137
|
+
readonly dc: string;
|
|
138
|
+
readonly cc: string;
|
|
128
139
|
readonly c9: string;
|
|
129
|
-
readonly b9: string;
|
|
130
140
|
readonly da: string;
|
|
131
|
-
readonly
|
|
141
|
+
readonly dg: string;
|
|
132
142
|
readonly c7: string;
|
|
133
|
-
readonly
|
|
134
|
-
readonly
|
|
143
|
+
readonly cw: string;
|
|
144
|
+
readonly cp: string;
|
|
135
145
|
readonly c5: string;
|
|
136
146
|
readonly cu: string;
|
|
137
147
|
readonly cn: string;
|
|
138
|
-
readonly c3: string;
|
|
139
|
-
readonly cs: string;
|
|
140
|
-
readonly cl: string;
|
|
141
|
-
readonly c4: string;
|
|
142
|
-
readonly ct: string;
|
|
143
|
-
readonly cm: string;
|
|
144
148
|
readonly c6: string;
|
|
145
149
|
readonly cv: string;
|
|
146
150
|
readonly co: string;
|
|
147
|
-
readonly
|
|
148
|
-
readonly
|
|
149
|
-
readonly
|
|
151
|
+
readonly c8: string;
|
|
152
|
+
readonly cx: string;
|
|
153
|
+
readonly cq: string;
|
|
154
|
+
readonly df: string;
|
|
150
155
|
readonly c0: string;
|
|
151
156
|
readonly c1: string;
|
|
152
|
-
readonly cr: string;
|
|
153
|
-
readonly dc: string;
|
|
154
157
|
readonly c2: string;
|
|
155
|
-
readonly
|
|
158
|
+
readonly c3: string;
|
|
159
|
+
readonly ct: string;
|
|
160
|
+
readonly de: string;
|
|
161
|
+
readonly c4: string;
|
|
156
162
|
readonly cg: string;
|
|
157
|
-
readonly
|
|
158
|
-
readonly cb: string;
|
|
159
|
-
readonly cc: string;
|
|
163
|
+
readonly ci: string;
|
|
160
164
|
readonly cf: string;
|
|
161
|
-
readonly
|
|
165
|
+
readonly cd: string;
|
|
166
|
+
readonly ce: string;
|
|
167
|
+
readonly ch: string;
|
|
168
|
+
readonly cy: string;
|
|
162
169
|
constructor();
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
private
|
|
167
|
-
private
|
|
168
|
-
private
|
|
169
|
-
private
|
|
170
|
-
private
|
|
170
|
+
ej(a: any): void;
|
|
171
|
+
ea(): void;
|
|
172
|
+
eb(a: Popup, b: XIcon, c: Grid): void;
|
|
173
|
+
private eh;
|
|
174
|
+
private ed;
|
|
175
|
+
private ef;
|
|
176
|
+
private ee;
|
|
177
|
+
private bv;
|
|
178
|
+
private bu;
|
|
179
|
+
private d4;
|
|
171
180
|
private h;
|
|
172
|
-
private dz;
|
|
173
181
|
private d2;
|
|
174
|
-
private
|
|
182
|
+
private d5;
|
|
175
183
|
private d3;
|
|
176
|
-
x(): number;
|
|
177
|
-
eh(): void;
|
|
178
|
-
d5(): void;
|
|
179
|
-
dy(a: string, b: string, c: string, d: number): void;
|
|
180
|
-
d4(): void;
|
|
181
|
-
ef(a: string, b: number): void;
|
|
182
|
-
private d9;
|
|
183
184
|
private d6;
|
|
184
|
-
|
|
185
|
+
y(): number;
|
|
186
|
+
em(): void;
|
|
187
|
+
d8(): void;
|
|
188
|
+
d1(a: string, b: string, c: string, d: number): void;
|
|
189
|
+
d7(): void;
|
|
190
|
+
ek(a: string, b: number): void;
|
|
191
|
+
private ec;
|
|
192
|
+
private d9;
|
|
193
|
+
private el;
|
|
185
194
|
}
|
package/lib/DateEditorView.d.ts
CHANGED
|
@@ -11,13 +11,13 @@ import { InputChangeEventArgs } from "igniteui-webcomponents-inputs";
|
|
|
11
11
|
*/
|
|
12
12
|
export declare class DateEditorView extends BaseEditorView {
|
|
13
13
|
static $t: Type;
|
|
14
|
+
private ad;
|
|
15
|
+
ae: string;
|
|
16
|
+
ac: boolean;
|
|
17
|
+
protected y: DatePicker;
|
|
18
|
+
private z;
|
|
19
|
+
private ab;
|
|
14
20
|
private aa;
|
|
15
|
-
ab: string;
|
|
16
|
-
z: boolean;
|
|
17
|
-
protected v: DatePicker;
|
|
18
|
-
private w;
|
|
19
|
-
private y;
|
|
20
|
-
private x;
|
|
21
21
|
constructor(a: DomRenderer, b: BaseControlTheme, c: ICellActionManager);
|
|
22
22
|
setFont(a: FontInfo): void;
|
|
23
23
|
attachEvents(): void;
|
|
@@ -25,14 +25,15 @@ export declare class DateEditorView extends BaseEditorView {
|
|
|
25
25
|
onTargetChanged(): void;
|
|
26
26
|
onEditStarted(): void;
|
|
27
27
|
onEditEnded(): void;
|
|
28
|
+
protected s(): void;
|
|
29
|
+
ag(): void;
|
|
30
|
+
protected u(a: string, b: any, c: any): void;
|
|
31
|
+
private ak;
|
|
32
|
+
protected w(): void;
|
|
28
33
|
protected r(): void;
|
|
29
|
-
|
|
30
|
-
protected t(a: string, b: any, c: any): void;
|
|
31
|
-
private ah;
|
|
32
|
-
protected u(): void;
|
|
33
|
-
protected q(): void;
|
|
34
|
+
protected v(): void;
|
|
34
35
|
private onDatePickerValueChanged;
|
|
35
|
-
private
|
|
36
|
+
private am;
|
|
36
37
|
protected onInputChanging(a: any, b: InputChangeEventArgs): void;
|
|
37
38
|
private onDatePickerLostFocus;
|
|
38
39
|
private onDatePickerGotFocus;
|
package/lib/FilterCell.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { GridFilterOperandsCollection } from "./GridFilterOperandsCollection";
|
|
|
5
5
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
6
6
|
import { Type } from "igniteui-webcomponents-core";
|
|
7
7
|
import { ColumnFilterCondition } from "./ColumnFilterCondition";
|
|
8
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
8
9
|
import { DomRenderer } from "igniteui-webcomponents-core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
@@ -21,33 +22,33 @@ export declare class FilterCell extends GridCellBase {
|
|
|
21
22
|
private ct;
|
|
22
23
|
constructor(a: DomRenderer);
|
|
23
24
|
private cs;
|
|
24
|
-
private
|
|
25
|
-
private
|
|
26
|
-
private
|
|
27
|
-
private
|
|
25
|
+
private d1;
|
|
26
|
+
private dm;
|
|
27
|
+
private du;
|
|
28
|
+
private ds;
|
|
28
29
|
protected bp(a: string, b: any, c: any): void;
|
|
29
30
|
bo(): void;
|
|
30
|
-
private
|
|
31
|
-
private
|
|
32
|
-
private
|
|
31
|
+
private d2;
|
|
32
|
+
private dp;
|
|
33
|
+
private dy;
|
|
33
34
|
private cn;
|
|
34
|
-
private
|
|
35
|
-
private dh;
|
|
35
|
+
private d4;
|
|
36
36
|
private di;
|
|
37
|
-
private
|
|
38
|
-
private
|
|
39
|
-
private dp;
|
|
40
|
-
private dq;
|
|
37
|
+
private dj;
|
|
38
|
+
private d0;
|
|
41
39
|
private dv;
|
|
42
|
-
private
|
|
43
|
-
|
|
44
|
-
private
|
|
45
|
-
private
|
|
46
|
-
|
|
47
|
-
|
|
40
|
+
private dq;
|
|
41
|
+
private dr;
|
|
42
|
+
private dw;
|
|
43
|
+
private dt;
|
|
44
|
+
dx(): void;
|
|
45
|
+
private dz;
|
|
46
|
+
private dn;
|
|
47
|
+
private d3;
|
|
48
|
+
d5(a: number, b: number, c: number, d: number): void;
|
|
48
49
|
private co;
|
|
50
|
+
dl(): void;
|
|
49
51
|
dk(): void;
|
|
50
|
-
dj(): void;
|
|
51
52
|
private static readonly c9;
|
|
52
53
|
private ck;
|
|
53
54
|
private cw;
|
|
@@ -66,4 +67,6 @@ export declare class FilterCell extends GridCellBase {
|
|
|
66
67
|
c8: any;
|
|
67
68
|
private ch;
|
|
68
69
|
ci: ColumnFilterCondition;
|
|
70
|
+
private d6;
|
|
71
|
+
d7: Brush;
|
|
69
72
|
}
|
|
@@ -11,6 +11,7 @@ import { GridColumnFilterOptions } from "./GridColumnFilterOptions";
|
|
|
11
11
|
import { GridColumnSummaryOptions } from "./GridColumnSummaryOptions";
|
|
12
12
|
import { GridColumnButtonOptions } from "./GridColumnButtonOptions";
|
|
13
13
|
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
|
|
14
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
14
15
|
import { ApplyButtonClickEventArgs } from "./ApplyButtonClickEventArgs";
|
|
15
16
|
import { CancelButtonClickEventArgs } from "./CancelButtonClickEventArgs";
|
|
16
17
|
/**
|
|
@@ -56,7 +57,7 @@ export declare class GridColumnOptions extends GridColumnOptionsBase {
|
|
|
56
57
|
protected a6(): void;
|
|
57
58
|
protected bb(a: any, b: PropertyChangedEventArgs): void;
|
|
58
59
|
protected be(a: string, b: any, c: any): void;
|
|
59
|
-
private
|
|
60
|
+
private fi;
|
|
60
61
|
readonly dx: string;
|
|
61
62
|
private ch;
|
|
62
63
|
private readonly ci;
|
|
@@ -131,14 +132,18 @@ export declare class GridColumnOptions extends GridColumnOptionsBase {
|
|
|
131
132
|
b7: ControlDisplayDensity;
|
|
132
133
|
private d0;
|
|
133
134
|
d1: string;
|
|
135
|
+
private fk;
|
|
136
|
+
fm: Brush;
|
|
137
|
+
private fj;
|
|
138
|
+
fl: Brush;
|
|
134
139
|
notifySizeChanged(): void;
|
|
135
140
|
provideContent(a: any, b: any, c: any, d: any, e: any, f: any, g: any, h: any, i: any, j: any, k: any, l: GridColumnSortOptions, m: GridColumnMoveOptions, n: GridColumnPinOptions, o: GridColumnHideOptions, p: GridColumnGroupOptions, q: GridColumnFilterOptions, r: GridColumnSummaryOptions, s: GridColumnButtonOptions): void;
|
|
136
141
|
d5(): string;
|
|
137
|
-
|
|
138
|
-
private
|
|
142
|
+
fh(): void;
|
|
143
|
+
private fg;
|
|
139
144
|
applyButtonClick: (sender: any, args: ApplyButtonClickEventArgs) => void;
|
|
140
145
|
cancelButtonClick: (sender: any, args: CancelButtonClickEventArgs) => void;
|
|
146
|
+
private fd;
|
|
147
|
+
private fe;
|
|
141
148
|
private fb;
|
|
142
|
-
private fc;
|
|
143
|
-
private e9;
|
|
144
149
|
}
|
|
@@ -6,6 +6,7 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
6
6
|
import { ControlDisplayDensity } from "igniteui-webcomponents-core";
|
|
7
7
|
import { Rect } from "igniteui-webcomponents-core";
|
|
8
8
|
import { GridColumnOptionsSectionBase } from "./GridColumnOptionsSectionBase";
|
|
9
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
11
12
|
*/
|
|
@@ -49,13 +50,17 @@ export declare class GridColumnSummaryOptions extends GridColumnOptionsSectionBa
|
|
|
49
50
|
b3: ControlDisplayDensity;
|
|
50
51
|
private b6;
|
|
51
52
|
b7: number;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
private ct;
|
|
54
|
+
cv: Brush;
|
|
55
|
+
private cs;
|
|
56
|
+
cu: Brush;
|
|
57
|
+
cj(): void;
|
|
58
|
+
ck(a: XButton): void;
|
|
59
|
+
cl(a: Popup): void;
|
|
60
|
+
co(a: SummaryChooser): void;
|
|
61
|
+
private cq;
|
|
58
62
|
private cp;
|
|
59
|
-
private
|
|
60
|
-
private
|
|
63
|
+
private cr;
|
|
64
|
+
private cm;
|
|
65
|
+
private cn;
|
|
61
66
|
}
|
package/lib/IEditorView.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Type } from "igniteui-webcomponents-core";
|
|
2
|
+
import { Brush } from "igniteui-webcomponents-core";
|
|
2
3
|
import { FontInfo } from "igniteui-webcomponents-core";
|
|
3
4
|
/**
|
|
4
5
|
* @hidden
|
|
@@ -9,6 +10,7 @@ export interface IEditorView {
|
|
|
9
10
|
isEnabled: boolean;
|
|
10
11
|
focusOnValueChanged: boolean;
|
|
11
12
|
showClearButton: boolean;
|
|
13
|
+
textColor: Brush;
|
|
12
14
|
setFont(a: FontInfo): void;
|
|
13
15
|
attachEvents(): void;
|
|
14
16
|
detachEvents(): void;
|
package/lib/TextEditorView.d.ts
CHANGED
|
@@ -12,9 +12,9 @@ import { InputChangeEventArgs } from "igniteui-webcomponents-inputs";
|
|
|
12
12
|
*/
|
|
13
13
|
export declare class TextEditorView extends BaseEditorView {
|
|
14
14
|
static $t: Type;
|
|
15
|
-
private
|
|
16
|
-
protected
|
|
17
|
-
protected
|
|
15
|
+
private aa;
|
|
16
|
+
protected z: XInputGroup;
|
|
17
|
+
protected y: XInput;
|
|
18
18
|
constructor(a: DomRenderer, b: BaseControlTheme, c: ICellActionManager);
|
|
19
19
|
setFont(a: FontInfo): void;
|
|
20
20
|
attachEvents(): void;
|
|
@@ -22,13 +22,14 @@ export declare class TextEditorView extends BaseEditorView {
|
|
|
22
22
|
onTargetChanged(): void;
|
|
23
23
|
onEditStarted(): void;
|
|
24
24
|
onEditEnded(): void;
|
|
25
|
+
protected s(): void;
|
|
26
|
+
protected w(): void;
|
|
25
27
|
protected r(): void;
|
|
26
|
-
protected
|
|
27
|
-
protected
|
|
28
|
-
protected
|
|
29
|
-
|
|
30
|
-
private
|
|
31
|
-
private aa;
|
|
28
|
+
protected v(): void;
|
|
29
|
+
protected ac(a: any, b: InputChangeEventArgs): void;
|
|
30
|
+
protected ab(a: any, b: InputChangeEventArgs): void;
|
|
31
|
+
private ae;
|
|
32
|
+
private ad;
|
|
32
33
|
getEditorValue(): any;
|
|
33
34
|
setEditorValue(a: any): void;
|
|
34
35
|
}
|
|
@@ -52,6 +52,14 @@ export declare class IgcDataGridComparisonOperatorSelectorComponent extends IgcH
|
|
|
52
52
|
*/
|
|
53
53
|
dataType: DataSourceSchemaPropertyType;
|
|
54
54
|
maxHeight: number;
|
|
55
|
+
/**
|
|
56
|
+
* Gets or sets the text color.
|
|
57
|
+
*/
|
|
58
|
+
textColor: string;
|
|
59
|
+
/**
|
|
60
|
+
* Gets or sets the background color.
|
|
61
|
+
*/
|
|
62
|
+
background: string;
|
|
55
63
|
readonly operatorCaptionTrue: string;
|
|
56
64
|
readonly operatorCaptionFalse: string;
|
|
57
65
|
readonly operatorCaptionEquals: string;
|
|
@@ -117,6 +125,9 @@ export declare class IgcDataGridComparisonOperatorSelectorComponent extends IgcH
|
|
|
117
125
|
private _opening;
|
|
118
126
|
private _opening_wrapped;
|
|
119
127
|
opening: (s: IgcDataGridComparisonOperatorSelectorComponent, e: IgcOperatorSelectorOpeningEventArgs) => void;
|
|
128
|
+
private _opened;
|
|
129
|
+
private _opened_wrapped;
|
|
130
|
+
opened: (s: IgcDataGridComparisonOperatorSelectorComponent, e: IgcOperatorSelectorOpeningEventArgs) => void;
|
|
120
131
|
private _closing;
|
|
121
132
|
private _closing_wrapped;
|
|
122
133
|
closing: (s: IgcDataGridComparisonOperatorSelectorComponent, e: IgcOperatorSelectorClosingEventArgs) => void;
|
|
@@ -89,6 +89,14 @@ export declare class IgcGridColumnOptionsComponent extends IgcGridColumnOptionsB
|
|
|
89
89
|
*/
|
|
90
90
|
actualFilterListDensity: ControlDisplayDensity;
|
|
91
91
|
filterListPlaceholderText: string;
|
|
92
|
+
/**
|
|
93
|
+
* Gets or sets the text color for the summary options menu.
|
|
94
|
+
*/
|
|
95
|
+
summaryListTextColor: string;
|
|
96
|
+
/**
|
|
97
|
+
* Gets or sets the background color for the summary options menu.
|
|
98
|
+
*/
|
|
99
|
+
summaryListBackground: string;
|
|
92
100
|
private _applyButtonClick;
|
|
93
101
|
private _applyButtonClick_wrapped;
|
|
94
102
|
applyButtonClick: (s: IgcGridColumnOptionsComponent, e: IgcApplyButtonClickEventArgs) => void;
|
|
@@ -36,6 +36,8 @@ export declare class IgcGridColumnSummaryOptionsComponent extends IgcGridColumnO
|
|
|
36
36
|
*/
|
|
37
37
|
actualSummaryListDensity: ControlDisplayDensity;
|
|
38
38
|
activeCount: number;
|
|
39
|
+
summaryListTextColor: string;
|
|
40
|
+
summaryListBackground: string;
|
|
39
41
|
onApply(): void;
|
|
40
42
|
onCancel(): void;
|
|
41
43
|
closeMenu(): void;
|