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.
Files changed (72) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +1132 -799
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/BaseEditorView.js +30 -14
  4. package/esm2015/lib/CheckboxListView_combined.js +1 -0
  5. package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
  6. package/esm2015/lib/ComboEditorView.js +111 -105
  7. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +400 -343
  8. package/esm2015/lib/DateEditorView.js +94 -87
  9. package/esm2015/lib/EditorCell.js +10 -10
  10. package/esm2015/lib/FilterCell.js +76 -60
  11. package/esm2015/lib/FilterCellPresenter.js +6 -3
  12. package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
  13. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +49 -23
  14. package/esm2015/lib/ISummaryChooserView_combined.js +1 -0
  15. package/esm2015/lib/NumericEditorView.js +3 -3
  16. package/esm2015/lib/TextEditorView.js +82 -75
  17. package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
  18. package/esm2015/lib/igc-grid-column-options-component.js +21 -1
  19. package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
  20. package/esm5/lib/BaseEditorView.js +34 -14
  21. package/esm5/lib/CheckboxListView_combined.js +1 -0
  22. package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
  23. package/esm5/lib/ComboEditorView.js +108 -102
  24. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +407 -342
  25. package/esm5/lib/DateEditorView.js +93 -86
  26. package/esm5/lib/EditorCell.js +10 -10
  27. package/esm5/lib/FilterCell.js +80 -60
  28. package/esm5/lib/FilterCellPresenter.js +6 -3
  29. package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
  30. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +57 -23
  31. package/esm5/lib/ISummaryChooserView_combined.js +1 -0
  32. package/esm5/lib/NumericEditorView.js +3 -3
  33. package/esm5/lib/TextEditorView.js +82 -75
  34. package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
  35. package/esm5/lib/igc-grid-column-options-component.js +29 -1
  36. package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
  37. package/fesm2015/igniteui-webcomponents-grids.js +1076 -804
  38. package/fesm5/igniteui-webcomponents-grids.js +1132 -799
  39. package/grids/3rdpartylicenses.txt +445 -0
  40. package/grids/combined.js +44 -160
  41. package/grids/index.d.ts +2 -0
  42. package/grids/lib/igc-grid-base-directive.d.ts +14 -0
  43. package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
  44. package/grids/lib/igc-grid-selection-range.d.ts +1 -0
  45. package/grids/lib/igc-pivot-date-dimension.d.ts +1 -1
  46. package/grids/lib/igc-pivot-grid-column.d.ts +32 -0
  47. package/grids/lib/igc-pivot-grid-record.d.ts +28 -0
  48. package/grids/lib/igc-row-data-event-args.d.ts +4 -0
  49. package/grids/styles.css +1 -1
  50. package/grids/themes/dark/bootstrap.css +1 -1
  51. package/grids/themes/dark/fluent.css +1 -1
  52. package/grids/themes/dark/indigo.css +1 -1
  53. package/grids/themes/dark/material.css +1 -1
  54. package/grids/themes/light/bootstrap.css +1 -1
  55. package/grids/themes/light/fluent.css +1 -1
  56. package/grids/themes/light/indigo.css +1 -1
  57. package/grids/themes/light/material.css +1 -1
  58. package/lib/BaseEditorView.d.ts +12 -8
  59. package/lib/ColumnFilterCondition_combined.d.ts +2 -0
  60. package/lib/ComboEditorView.d.ts +15 -14
  61. package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
  62. package/lib/ComparisonOperatorSelectorView_combined.d.ts +104 -95
  63. package/lib/DateEditorView.d.ts +13 -12
  64. package/lib/FilterCell.d.ts +23 -20
  65. package/lib/GridColumnOptionsView_combined.d.ts +10 -5
  66. package/lib/GridColumnSummaryOptionsView_combined.d.ts +13 -8
  67. package/lib/IEditorView.d.ts +2 -0
  68. package/lib/TextEditorView.d.ts +10 -9
  69. package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
  70. package/lib/igc-grid-column-options-component.d.ts +8 -0
  71. package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
  72. package/package.json +4 -4
@@ -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 p(a: any, b: boolean): void;
30
+ protected q(a: any, b: boolean): void;
28
31
  userTyping: (sender: IEditorView) => void;
29
- protected o(): void;
32
+ protected p(): void;
30
33
  lostFocus: (sender: IEditorView) => void;
31
- protected n(): void;
34
+ protected o(): void;
32
35
  gotFocus: (sender: IEditorView) => void;
33
- protected m(): void;
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 r(): void;
47
+ protected s(): void;
45
48
  getEditorValue(): any;
46
49
  setEditorValue(a: any): void;
47
- protected t(a: string, b: any, c: any): void;
48
- protected u(): void;
49
- protected q(): void;
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
@@ -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 v;
19
- private z;
20
- ac: any;
21
- af: string;
22
- w: string[];
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 r(): void;
31
- ai(): void;
32
- protected t(a: string, b: any, c: any): void;
33
- protected u(): void;
34
- private al;
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 ap;
38
+ private as;
38
39
  protected onInputChanging(a: any, b: InputChangeEventArgs): void;
39
40
  private onComboLostFocus;
40
41
  private onComboGotFocus;
@@ -15,6 +15,7 @@ export interface ComboEditorView_ComboExternal {
15
15
  textField: string;
16
16
  text: string;
17
17
  textStyle: string;
18
+ textColor: string;
18
19
  valueField: string[];
19
20
  fields: string[];
20
21
  density: ControlDisplayDensity;
@@ -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
- t(a: any): void;
37
- v(): Rect;
38
- s(a: any, b: OperatorModel): void;
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
- u(a: any): void;
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 eb(a: string, b: any, c: any): void;
53
- protected ed(a: string, b: any, c: any): void;
54
- protected static readonly dt: string;
55
- protected static readonly br: string;
56
- protected static readonly b8: string;
57
- protected static readonly ab: string;
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 bm: string;
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 dm: string;
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 dw: string;
85
- protected static readonly df: string;
86
- protected static readonly dg: string;
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 b2: string;
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 dr: string;
92
- protected static readonly z: string;
93
- protected static readonly ds: string;
94
- protected static readonly aa: string;
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
- p: Popup;
100
- o: XIcon;
101
- n: XButton;
101
+ q: Popup;
102
+ p: XIcon;
103
+ o: XButton;
102
104
  f: Grid;
103
- m: TemplateColumn;
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 s;
110
+ private t;
109
111
  private a;
110
112
  b: ColumnComparisonConditionOperatorType;
111
- ac: string;
112
- w: number;
113
+ ae: string;
114
+ x: number;
113
115
  private c;
114
116
  d: DataSourceSchemaPropertyType;
115
- private v;
116
- y: number;
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 db: string;
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 ca: string;
141
+ readonly dg: string;
132
142
  readonly c7: string;
133
- readonly c8: string;
134
- readonly de: string;
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 dd: string;
148
- readonly cy: string;
149
- readonly cz: string;
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 ce: string;
158
+ readonly c3: string;
159
+ readonly ct: string;
160
+ readonly de: string;
161
+ readonly c4: string;
156
162
  readonly cg: string;
157
- readonly cd: string;
158
- readonly cb: string;
159
- readonly cc: string;
163
+ readonly ci: string;
160
164
  readonly cf: string;
161
- readonly cw: string;
165
+ readonly cd: string;
166
+ readonly ce: string;
167
+ readonly ch: string;
168
+ readonly cy: string;
162
169
  constructor();
163
- ee(a: any): void;
164
- d7(): void;
165
- d8(a: Popup, b: XIcon, c: Grid): void;
166
- private ec;
167
- private ea;
168
- private bt;
169
- private bs;
170
- private d1;
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 d0;
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
- private eg;
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
  }
@@ -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
- ad(): void;
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 aj;
36
+ private am;
36
37
  protected onInputChanging(a: any, b: InputChangeEventArgs): void;
37
38
  private onDatePickerLostFocus;
38
39
  private onDatePickerGotFocus;
@@ -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 d0;
25
- private dl;
26
- private dt;
27
- private dr;
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 d1;
31
- private dn;
32
- private dx;
31
+ private d2;
32
+ private dp;
33
+ private dy;
33
34
  private cn;
34
- private d3;
35
- private dh;
35
+ private d4;
36
36
  private di;
37
- private dz;
38
- private du;
39
- private dp;
40
- private dq;
37
+ private dj;
38
+ private d0;
41
39
  private dv;
42
- private ds;
43
- dw(): void;
44
- private dy;
45
- private dm;
46
- private d2;
47
- d4(a: number, b: number, c: number, d: number): void;
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 fg;
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
- ff(): void;
138
- private fe;
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
- ch(): void;
53
- ci(a: XButton): void;
54
- cj(a: Popup): void;
55
- cm(a: SummaryChooser): void;
56
- private co;
57
- private cn;
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 ck;
60
- private cl;
63
+ private cr;
64
+ private cm;
65
+ private cn;
61
66
  }
@@ -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;
@@ -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 x;
16
- protected w: XInputGroup;
17
- protected v: XInput;
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 u(): void;
27
- protected q(): void;
28
- protected z(a: any, b: InputChangeEventArgs): void;
29
- protected y(a: any, b: InputChangeEventArgs): void;
30
- private ab;
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;