igniteui-webcomponents-grids 5.3.0 → 5.4.0

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 (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -10,31 +10,34 @@ import { NativeUIBuiltInProperties } from "igniteui-webcomponents-core";
10
10
  */
11
11
  export declare class CheckboxListBridge extends XComponentBridge implements INativeUICheckboxListBridge {
12
12
  static $t: Type;
13
- private ab;
14
13
  private ac;
14
+ private af;
15
15
  private ad;
16
+ private ae;
16
17
  private u;
18
+ private x;
17
19
  private v;
18
20
  private w;
19
- private x;
20
- private z;
21
21
  private y;
22
22
  private aa;
23
+ private z;
24
+ private ab;
23
25
  constructor(a: any);
24
26
  getDesiredSize(a: any, b: Size): Size;
25
27
  addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
26
- private ai;
27
- private af;
28
+ private ak;
29
+ private ah;
28
30
  removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
29
- private ae;
30
31
  private ag;
31
- private ah;
32
+ private al;
33
+ private ai;
34
+ private aj;
32
35
  setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
33
36
  getValue(a: any, b: NativeUIBuiltInProperties): any;
34
37
  clearSelectedKeys(a: any): void;
35
38
  addSelectedKey(a: any, b: string[], c: any[]): void;
36
39
  insertSelectedKey(a: any, b: number, c: string[], d: any[]): void;
37
40
  removeSelectedKeyAt(a: any, b: number): void;
38
- ak(a: any): void;
39
- aj(a: any, b: Size): void;
41
+ refresh(a: any): void;
42
+ am(a: any, b: Size): void;
40
43
  }
@@ -3,14 +3,18 @@ import { Type } from "igniteui-webcomponents-core";
3
3
  import { Size } from "igniteui-webcomponents-core";
4
4
  import { ControlDisplayDensity } from "igniteui-webcomponents-core";
5
5
  import { Brush } from "igniteui-webcomponents-core";
6
+ import { DataTemplate } from "igniteui-webcomponents-core";
6
7
  import { CheckboxListExternalIndexType } from "./CheckboxListExternalIndexType";
8
+ import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
7
9
  /**
8
10
  * @hidden
9
11
  */
10
12
  export interface CheckboxListExternal {
11
13
  baseTheme: BaseControlTheme;
14
+ labelClicked: (sender: any, args: CheckedChangedEventArgs) => void;
12
15
  selectedMemberPath: string;
13
16
  dataMemberPath: string;
17
+ subtitleMemberPath: string;
14
18
  itemsSource: any;
15
19
  showSelectAll: boolean;
16
20
  primaryKey: string;
@@ -21,6 +25,14 @@ export interface CheckboxListExternal {
21
25
  rowHoverBackgroundColor: Brush;
22
26
  searchIconColor: Brush;
23
27
  searchTextColor: Brush;
28
+ checkboxAlignedRight: boolean;
29
+ labelClickTriggersChange: boolean;
30
+ defaultIconDataTemplate: DataTemplate;
31
+ defaultIconContext: any;
32
+ dataLegendTarget: any;
33
+ propertyTypeMemberPath: string;
34
+ checkboxCornerRadius: number;
35
+ refresh(): void;
24
36
  indexType: CheckboxListExternalIndexType;
25
37
  getDesiredSize(a: Size): Size;
26
38
  }
@@ -12,6 +12,7 @@ export interface CheckboxListViewExternal {
12
12
  selectedKeyRemoved: (sender: any, args: CheckedChangedEventArgs) => void;
13
13
  indexTypeChanged: (sender: any, args: CheckboxListExternalIndexTypeChangedEventArgs) => void;
14
14
  keysCleared: (sender: any, args: CheckboxListExternalKeysClearedEventArgs) => void;
15
+ labelClicked: (sender: any, args: CheckedChangedEventArgs) => void;
15
16
  getDesiredSize(): Size;
16
17
  }
17
18
  /**
@@ -4,13 +4,14 @@ import { XInputGroup } from "igniteui-webcomponents-inputs";
4
4
  import { XInput } from "igniteui-webcomponents-inputs";
5
5
  import { ControlDisplayDensity } from "igniteui-webcomponents-core";
6
6
  import { FontInfo } from "igniteui-webcomponents-core";
7
+ import { DataTemplate } from "igniteui-webcomponents-core";
8
+ import { Brush } from "igniteui-webcomponents-core";
7
9
  import { Thickness } from "igniteui-webcomponents-core";
8
10
  import { CheckboxListIndexType } from "./CheckboxListIndexType";
9
11
  import { DataGrid } from "./DataGrid";
10
12
  import { GridSelectedKeysCollection } from "./GridSelectedKeysCollection";
11
13
  import { InputGroupDisplayType } from "igniteui-webcomponents-inputs";
12
14
  import { BaseControlTheme } from "igniteui-webcomponents-core";
13
- import { Brush } from "igniteui-webcomponents-core";
14
15
  import { ScrollbarStyle } from "igniteui-webcomponents-core";
15
16
  import { CheckboxListKeysClearedEventArgs } from "./CheckboxListKeysClearedEventArgs";
16
17
  import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
@@ -24,41 +25,46 @@ import { SelectAllCheckboxChangedEventArgs } from "./SelectAllCheckboxChangedEve
24
25
  export declare class CheckboxListView extends Base {
25
26
  static $t: Type;
26
27
  private e;
27
- private j;
28
- private a;
29
- private i;
30
28
  private h;
29
+ private g;
30
+ private f;
31
+ private m;
32
+ private a;
33
+ private l;
34
+ private k;
31
35
  private c;
32
36
  constructor();
33
37
  b: CheckboxList;
34
- n(): void;
35
- f: DomRenderer;
36
- m(a: DomRenderer): void;
37
- v(): void;
38
- w(a: DomRenderer): void;
39
- s(): void;
40
- o(a: DomWrapper, b: any, c: boolean): void;
41
- z(): void;
38
+ q(): void;
39
+ i: DomRenderer;
40
+ p(a: DomRenderer): void;
41
+ aa(): void;
42
+ ab(a: DomRenderer): void;
42
43
  x(): void;
43
- private k;
44
- l(): void;
45
- t(a: number, b: boolean): void;
46
- u(a: boolean): void;
47
- q(a: any): void;
48
- private ah;
49
- af(): void;
50
- ai(): void;
44
+ r(a: DomWrapper, b: any, c: boolean): void;
45
+ s(a: DomWrapper, b: any, c: string, d: string, e: FontInfo, f: string, g: number, h: any, i: DataTemplate, j: any, k: string): void;
51
46
  ae(): void;
47
+ ac(): void;
48
+ private n;
49
+ o(): void;
50
+ y(a: number, b: boolean): void;
51
+ z(a: boolean): void;
52
+ u(a: any): void;
53
+ private am;
54
+ ak(): void;
55
+ an(): void;
56
+ aj(): void;
52
57
  private d;
53
- private g;
54
- ag(a?: boolean): void;
55
- private r;
58
+ private j;
59
+ al(a?: boolean): void;
60
+ private w;
61
+ ai(): void;
62
+ ag(): void;
63
+ ah(): void;
56
64
  ad(): void;
57
- ab(): void;
58
- ac(): void;
59
- y(): void;
60
- aa(a: Thickness): void;
61
- p(a: any): void;
65
+ af(a: Thickness): void;
66
+ t(a: any): void;
67
+ v(): void;
62
68
  }
63
69
  /**
64
70
  * @hidden
@@ -70,22 +76,25 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
70
76
  set view(a: CheckboxListView);
71
77
  f: DataGrid;
72
78
  private j;
73
- private af;
79
+ private ai;
80
+ private ag;
81
+ private aj;
82
+ private ah;
74
83
  private d;
75
- private am;
84
+ private aq;
76
85
  private c;
77
- private s;
78
- private u;
79
- get v(): XInputGroup;
80
- set v(a: XInputGroup);
81
- get t(): XInput;
82
- set t(a: XInput);
83
- private an;
84
- static readonly ef: Brush;
85
- static readonly b0: string;
86
+ private t;
87
+ private v;
88
+ get w(): XInputGroup;
89
+ set w(a: XInputGroup);
90
+ get u(): XInput;
91
+ set u(a: XInput);
92
+ private ar;
93
+ static readonly e6: Brush;
94
+ static readonly cl: string;
86
95
  private get e();
87
- private ak;
88
- private get al();
96
+ private ao;
97
+ private get ap();
89
98
  private g;
90
99
  get keys(): GridSelectedKeysCollection;
91
100
  private a;
@@ -97,152 +106,176 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
97
106
  addSelectedKey(a: string[], b: any[]): void;
98
107
  insertSelectedKey(a: number, b: string[], c: any[]): void;
99
108
  removeSelectedKeyAt(a: number): void;
100
- private c4;
101
- private c5;
109
+ private dt;
110
+ private du;
102
111
  selectedKeyAdded: (sender: any, args: CheckedChangedEventArgs) => void;
103
- private cy;
112
+ private dm;
104
113
  selectedKeyRemoved: (sender: any, args: CheckedChangedEventArgs) => void;
105
- private cz;
114
+ private dn;
106
115
  checkedChanged: (sender: any, args: CheckedChangedEventArgs) => void;
107
- cu(a: number, b: boolean): void;
116
+ labelClicked: (sender: any, args: CheckedChangedEventArgs) => void;
117
+ di(a: number, b: boolean): void;
108
118
  notifySizeChanged(): void;
109
119
  destroy(): void;
110
120
  provideContainer(a: DomRenderer, b: DataGrid, c: any): void;
111
- private cl;
121
+ private c8;
112
122
  provideSelectAllSection(a: any): void;
113
- ck(a: any, b: DataGridCellEventArgs): void;
114
- private cg;
115
- cv(a: string): void;
116
- private a4;
123
+ c7(a: any, b: DataGridCellEventArgs): void;
124
+ private de;
125
+ private c3;
126
+ private d7;
127
+ dj(a: string): void;
128
+ private bg;
117
129
  get itemsSource(): any;
118
130
  set itemsSource(a: any);
119
- private a6;
131
+ private bj;
120
132
  get dataMemberPath(): string;
121
133
  set dataMemberPath(a: string);
122
- private a8;
134
+ private bf;
135
+ get bh(): any;
136
+ set bh(a: any);
137
+ private bn;
138
+ get cw(): string;
139
+ set cw(a: string);
140
+ private bl;
141
+ get cb(): string;
142
+ set cb(a: string);
143
+ private bm;
123
144
  get selectedMemberPath(): string;
124
145
  set selectedMemberPath(a: string);
125
- private a7;
126
- get bm(): string;
127
- set bm(a: string);
128
- private w;
129
- get x(): InputGroupDisplayType;
130
- set x(a: InputGroupDisplayType);
131
- private a0;
132
- get a3(): number;
133
- set a3(a: number);
134
- get a1(): number;
135
- private ag;
136
- get ai(): FontInfo;
137
- set ai(a: FontInfo);
146
+ private bk;
147
+ get b4(): string;
148
+ set b4(a: string);
149
+ private x;
150
+ get y(): InputGroupDisplayType;
151
+ set y(a: InputGroupDisplayType);
152
+ private bb;
153
+ get be(): number;
154
+ set be(a: number);
155
+ get bc(): number;
156
+ private ak;
157
+ get am(): FontInfo;
158
+ set am(a: FontInfo);
138
159
  private k;
139
160
  get indexType(): CheckboxListIndexType;
140
161
  set indexType(a: CheckboxListIndexType);
141
- private ab;
162
+ private ac;
142
163
  get baseTheme(): BaseControlTheme;
143
164
  set baseTheme(a: BaseControlTheme);
144
- private ad;
165
+ private ae;
145
166
  get density(): ControlDisplayDensity;
146
167
  set density(a: ControlDisplayDensity);
147
- private du;
168
+ private el;
148
169
  get searchIconColor(): Brush;
149
170
  set searchIconColor(a: Brush);
150
- private ds;
151
- get ea(): Brush;
152
- set ea(a: Brush);
153
- private dv;
171
+ private ej;
172
+ get e1(): Brush;
173
+ set e1(a: Brush);
174
+ private at;
175
+ get a1(): boolean;
176
+ set a1(a: boolean);
177
+ private em;
154
178
  get searchTextColor(): Brush;
155
179
  set searchTextColor(a: Brush);
156
- private dt;
157
- get eb(): Brush;
158
- set eb(a: Brush);
159
- private ah;
160
- get aj(): FontInfo;
161
- set aj(a: FontInfo);
162
- private dm;
163
- get d2(): Brush;
164
- set d2(a: Brush);
165
- private dk;
166
- get d0(): Brush;
167
- set d0(a: Brush);
168
- private dn;
169
- get d3(): Brush;
170
- set d3(a: Brush);
171
- private dl;
172
- get d1(): Brush;
173
- set d1(a: Brush);
174
- private dp;
175
- get d4(): Brush;
176
- set d4(a: Brush);
177
- private z;
178
- get aa(): ScrollbarStyle;
179
- set aa(a: ScrollbarStyle);
180
- private dr;
181
- get d9(): Brush;
182
- set d9(a: Brush);
183
- protected c0(a: string, b: any, c: any): void;
184
- protected c6(a: string, b: any, c: any): void;
180
+ private ek;
181
+ get e2(): Brush;
182
+ set e2(a: Brush);
183
+ private al;
184
+ get an(): FontInfo;
185
+ set an(a: FontInfo);
186
+ private ee;
187
+ get et(): Brush;
188
+ set et(a: Brush);
189
+ private ec;
190
+ get er(): Brush;
191
+ set er(a: Brush);
192
+ private ef;
193
+ get eu(): Brush;
194
+ set eu(a: Brush);
195
+ private ed;
196
+ get es(): Brush;
197
+ set es(a: Brush);
198
+ private eg;
199
+ get ev(): Brush;
200
+ set ev(a: Brush);
201
+ private a6;
202
+ get a7(): number;
203
+ set a7(a: number);
204
+ private aa;
205
+ get ab(): ScrollbarStyle;
206
+ set ab(a: ScrollbarStyle);
207
+ private ei;
208
+ get e0(): Brush;
209
+ set e0(a: Brush);
210
+ protected dp(a: string, b: any, c: any): void;
211
+ protected dv(a: string, b: any, c: any): void;
212
+ private d8;
185
213
  indexTypeChanged: (sender: any, args: CheckboxListIndexTypeChangedEventArgs) => void;
186
- private cw;
187
- private de;
188
- private df;
189
- private c1;
190
- c3(): void;
191
- dg(): void;
214
+ private dk;
215
+ private d4;
216
+ private d5;
217
+ private dq;
218
+ ds(): void;
219
+ d6(): void;
192
220
  updateHrMargin(a: Thickness): void;
193
221
  provideHrElement(a: any): void;
194
- cx(): void;
195
- private cm;
222
+ dl(): void;
223
+ private c9;
196
224
  private i;
197
- da(a: number): void;
198
- cc(a: number): void;
199
- dd(): void;
200
- ci(): void;
201
- cs(a: number, b: any, c: any): void;
202
- cp(): void;
203
- private co;
204
- cq(a: number, b: any): void;
205
- cr(a: number, b: any): void;
206
- cd(a: any[]): void;
207
- db(a: any[]): void;
225
+ d0(a: number): void;
226
+ cz(a: number): void;
227
+ d3(): void;
228
+ c5(): void;
229
+ dg(a: number, b: any, c: any): void;
230
+ dc(): void;
231
+ private db;
232
+ dd(a: number, b: any): void;
233
+ df(a: number, b: any): void;
234
+ private as;
235
+ refresh(): void;
236
+ c0(a: any[]): void;
237
+ d1(a: any[]): void;
208
238
  getDesiredSize(a: Size): Size;
209
- ay(): number;
210
- private b3;
211
- get b4(): string;
212
- set b4(a: string);
213
- private dw;
214
- get ee(): Brush;
215
- set ee(a: Brush);
216
- private di;
217
- get dy(): Brush;
218
- set dy(a: Brush);
219
- get as(): boolean;
220
- private av;
239
+ a9(): number;
240
+ private co;
241
+ get cp(): string;
242
+ set cp(a: string);
243
+ private en;
244
+ get e5(): Brush;
245
+ set e5(a: Brush);
246
+ private ea;
247
+ get ep(): Brush;
248
+ set ep(a: Brush);
249
+ get a0(): boolean;
250
+ private a4;
221
251
  get showSelectAll(): boolean;
222
252
  set showSelectAll(a: boolean);
223
- static d5: Brush;
224
- private dj;
253
+ static ew: Brush;
254
+ private eb;
225
255
  get backgroundColor(): Brush;
226
256
  set backgroundColor(a: Brush);
227
- static d6: Brush;
228
- private dq;
257
+ static ex: Brush;
258
+ private eh;
229
259
  get rowHoverBackgroundColor(): Brush;
230
260
  set rowHoverBackgroundColor(a: Brush);
231
- static d7: Brush;
232
- private dx;
233
- get eg(): Brush;
234
- set eg(a: Brush);
261
+ static ey: Brush;
262
+ private eo;
263
+ get e7(): Brush;
264
+ set e7(a: Brush);
235
265
  keysCleared: (sender: any, args: CheckboxListKeysClearedEventArgs) => void;
236
266
  selectAllCheckboxChanged: (sender: any, args: SelectAllCheckboxChangedEventArgs) => void;
237
- c2(a: boolean): void;
238
- ap(): boolean;
239
- ao(): boolean;
267
+ dr(a: boolean): void;
268
+ ax(): boolean;
269
+ aw(): boolean;
270
+ private bd;
271
+ c2(): void;
240
272
  private a2;
241
- cf(): void;
242
- private at;
243
- get au(): boolean;
244
- set au(a: boolean);
245
- private aq;
246
- get ar(): boolean;
247
- set ar(a: boolean);
273
+ get a3(): boolean;
274
+ set a3(a: boolean);
275
+ private ay;
276
+ get az(): boolean;
277
+ set az(a: boolean);
278
+ private au;
279
+ get av(): boolean;
280
+ set av(a: boolean);
248
281
  }