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
@@ -5,31 +5,41 @@ https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
7
  import { __extends, __values } from "tslib";
8
- import { Base, runOn, delegateCombine, fromEnum, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, delegateRemove, enumGetBox, EnumUtil } from "igniteui-webcomponents-core";
8
+ import { Base, runOn, delegateCombine, typeCast, fromEnum, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, delegateRemove, EnumUtil, enumGetBox } from "igniteui-webcomponents-core";
9
9
  import { DomWrapper_$type } from "igniteui-webcomponents-core";
10
10
  import { Dictionary$2 } from "igniteui-webcomponents-core";
11
11
  import { XCheckbox } from "igniteui-webcomponents-inputs";
12
+ import { XLabel } from "igniteui-webcomponents-inputs";
13
+ import { XIcon } from "igniteui-webcomponents-inputs";
12
14
  import { XPrefix } from "igniteui-webcomponents-inputs";
13
15
  import { XInputGroup } from "igniteui-webcomponents-inputs";
14
- import { XIcon } from "igniteui-webcomponents-inputs";
15
16
  import { XInput } from "igniteui-webcomponents-inputs";
16
17
  import { ControlDisplayDensity_$type } from "igniteui-webcomponents-core";
18
+ import { FontInfo } from "igniteui-webcomponents-core";
19
+ import { DataContext } from "igniteui-webcomponents-core";
20
+ import { IDataLegendTarget_$type } from "igniteui-webcomponents-core";
21
+ import { BrushUtil } from "igniteui-webcomponents-core";
22
+ import { DeviceUtils } from "igniteui-webcomponents-core";
23
+ import { Brush } from "igniteui-webcomponents-core";
24
+ import { Color } from "igniteui-webcomponents-core";
17
25
  import { NativeUI } from "igniteui-webcomponents-core";
18
26
  import { PrimaryKeyValue } from "./PrimaryKeyValue";
19
27
  import { Thickness } from "igniteui-webcomponents-core";
20
28
  import { CheckboxListIndexType_$type } from "./CheckboxListIndexType";
29
+ import { stringIsNullOrEmpty, stringIsNullOrWhiteSpace } from "igniteui-webcomponents-core";
21
30
  import { SRProvider } from "igniteui-webcomponents-core";
22
31
  import { GridSelectedKeysCollection } from "./GridSelectedKeysCollection";
23
32
  import { InputGroupDisplayType_$type } from "igniteui-webcomponents-inputs";
24
33
  import { GridStyleRepository } from "./GridStyleRepository";
25
34
  import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
26
35
  import { ScrollbarStyle_$type } from "igniteui-webcomponents-core";
27
- import { BrushUtil } from "igniteui-webcomponents-core";
28
36
  import { FilterFactory } from "igniteui-webcomponents-core";
29
37
  import { CheckboxListKeysClearedEventArgs } from "./CheckboxListKeysClearedEventArgs";
30
38
  import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
31
39
  import { TemplateColumn } from "./TemplateColumn";
32
40
  import { FastReflectionHelper } from "igniteui-webcomponents-core";
41
+ import { DataSeriesPropertyType_$type } from "igniteui-webcomponents-core";
42
+ import { SvgIconRegistry } from "igniteui-webcomponents-core";
33
43
  import { DataSourceSchemaPropertyType_$type } from "igniteui-webcomponents-core";
34
44
  import { CheckboxListIndexTypeChangedEventArgs } from "./CheckboxListIndexTypeChangedEventArgs";
35
45
  import { ColumnWidth } from "./ColumnWidth";
@@ -41,7 +51,6 @@ import { Size } from "igniteui-webcomponents-core";
41
51
  import { ComponentSizeHelpers } from "igniteui-webcomponents-core";
42
52
  import { SelectAllCheckboxChangedEventArgs } from "./SelectAllCheckboxChangedEventArgs";
43
53
  import { isPositiveInfinity } from "igniteui-webcomponents-core";
44
- import { stringIsNullOrWhiteSpace } from "igniteui-webcomponents-core";
45
54
  /**
46
55
  * @hidden
47
56
  */
@@ -50,51 +59,54 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
50
59
  function CheckboxListView() {
51
60
  var _this = _super.call(this) || this;
52
61
  _this.e = new Dictionary$2(DomWrapper_$type, XCheckbox.$, 0);
53
- _this.j = null;
62
+ _this.h = new Dictionary$2(DomWrapper_$type, XLabel.$, 0);
63
+ _this.g = new Dictionary$2(DomWrapper_$type, XLabel.$, 0);
64
+ _this.f = new Dictionary$2(DomWrapper_$type, XIcon.$, 0);
65
+ _this.m = null;
54
66
  _this.a = null;
55
- _this.i = null;
56
- _this.h = null;
67
+ _this.l = null;
68
+ _this.k = null;
57
69
  _this.c = null;
58
70
  _this.b = null;
59
- _this.f = null;
71
+ _this.i = null;
60
72
  _this.d = false;
61
- _this.g = null;
73
+ _this.j = null;
62
74
  return _this;
63
75
  }
64
- CheckboxListView.prototype.n = function () {
76
+ CheckboxListView.prototype.q = function () {
65
77
  };
66
- CheckboxListView.prototype.m = function (a) {
78
+ CheckboxListView.prototype.p = function (a) {
67
79
  if (a == null) {
68
- this.f = null;
80
+ this.i = null;
69
81
  this.e.clear();
70
82
  return;
71
83
  }
72
- this.f = a;
73
- this.v();
74
- this.ae();
75
- this.ah();
76
- this.s();
84
+ this.i = a;
85
+ this.aa();
86
+ this.aj();
87
+ this.am();
88
+ this.x();
77
89
  var b = Math.round(a.rootWrapper.width());
78
90
  var c = Math.round(a.rootWrapper.height());
79
- this.f.rootWrapper.setStyleProperty("position", "relative");
80
- this.f.rootWrapper.setStyleProperty("padding-bottom", "4px");
81
- this.ag();
91
+ this.i.rootWrapper.setStyleProperty("position", "relative");
92
+ this.i.rootWrapper.setStyleProperty("padding-bottom", "4px");
93
+ this.al();
82
94
  };
83
- CheckboxListView.prototype.v = function () {
84
- if (this.f != null) {
85
- this.w(this.f);
95
+ CheckboxListView.prototype.aa = function () {
96
+ if (this.i != null) {
97
+ this.ab(this.i);
86
98
  }
87
99
  };
88
- CheckboxListView.prototype.w = function (a) {
100
+ CheckboxListView.prototype.ab = function (a) {
89
101
  var b = a.rootWrapper.getChildAt(0);
90
- this.h = b;
91
- this.b.v = new XInputGroup();
102
+ this.k = b;
103
+ this.b.w = new XInputGroup();
92
104
  var c = a.getSubRenderer(b);
93
- this.b.v.provideContainer(c);
94
- var d = c.getExternal(this.b.v, c.rootWrapper, c.getExternal(this.b, null, null));
95
- this.b.v.d = this.b.x;
96
- this.b.v.p = this.b.baseTheme;
97
- this.b.v.t = this.b.density;
105
+ this.b.w.provideContainer(c);
106
+ var d = c.getExternal(this.b.w, c.rootWrapper, c.getExternal(this.b, null, null));
107
+ this.b.w.d = this.b.y;
108
+ this.b.w.p = this.b.baseTheme;
109
+ this.b.w.t = this.b.density;
98
110
  var e = a.createElement("div");
99
111
  var f = a.getSubRenderer(e);
100
112
  var g = new XPrefix();
@@ -105,51 +117,51 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
105
117
  this.c = new XIcon();
106
118
  this.c.provideContainer(j);
107
119
  this.c.fill = this.b.searchIconColor;
108
- this.c.svgPath = CheckboxList.b0;
120
+ this.c.svgPath = CheckboxList.cl;
109
121
  var k = f.getExternal(this.c, j.rootWrapper, j.getExternal(this.b, null, null));
110
122
  g.appendContentChild(i);
111
- this.b.v.appendContentChild(e);
112
- this.b.v.inputs.add(g);
123
+ this.b.w.appendContentChild(e);
124
+ this.b.w.inputs.add(g);
113
125
  var l = a.createElement("div");
114
126
  l.setRawStyleProperty("flex-grow", "1");
115
127
  var m = a.getSubRenderer(l);
116
- this.b.t = new XInput();
117
- this.b.t.provideContainer(m);
118
- this.b.t.b8 = "text";
119
- var n = m.getExternal(this.b.t, m.rootWrapper, m.getExternal(this.b, null, null));
120
- if (this.b.bm != null) {
121
- this.b.t.cg = this.b.bm;
122
- }
123
- this.b.v.appendContentChild(l);
124
- this.b.v.inputs.add(this.b.t);
125
- this.b.cx();
126
- };
127
- CheckboxListView.prototype.s = function () {
128
- if (this.f != null) {
129
- var a = this.f.rootWrapper.getChildAt(3);
128
+ this.b.u = new XInput();
129
+ this.b.u.provideContainer(m);
130
+ this.b.u.b8 = "text";
131
+ var n = m.getExternal(this.b.u, m.rootWrapper, m.getExternal(this.b, null, null));
132
+ if (this.b.b4 != null) {
133
+ this.b.u.cg = this.b.b4;
134
+ }
135
+ this.b.w.appendContentChild(l);
136
+ this.b.w.inputs.add(this.b.u);
137
+ this.b.dl();
138
+ };
139
+ CheckboxListView.prototype.x = function () {
140
+ if (this.i != null) {
141
+ var a = this.i.rootWrapper.getChildAt(3);
130
142
  a.setStyleProperty("width", "100%");
131
143
  a.setStyleProperty("margin", "4px 0px 0px 0px");
132
- if (!this.b.au && !this.b.showSelectAll) {
144
+ if (!this.b.a3 && !this.b.showSelectAll) {
133
145
  a.setStyleProperty("height", "100%");
134
146
  }
135
147
  else {
136
- var b = this.b.ay();
148
+ var b = this.b.a9();
137
149
  a.setStyleProperty("height", "calc(100% - " + b + "px");
138
150
  }
139
151
  }
140
152
  };
141
- CheckboxListView.prototype.o = function (a, b, c) {
153
+ CheckboxListView.prototype.r = function (a, b, c) {
142
154
  var d = null;
143
155
  if (a.getChildCount() == 0) {
144
156
  d = new XCheckbox();
145
- var e = this.f.getSubRenderer(a);
157
+ var e = this.i.getSubRenderer(a);
146
158
  d.provideContainer(e);
147
- var f = this.f.getExternal(d, e.rootWrapper, this.f.getExternal(this.b, null, null));
159
+ var f = this.i.getExternal(d, e.rootWrapper, this.i.getExternal(this.b, null, null));
148
160
  this.e.addItem(a, d);
149
161
  d.n = this.b.baseTheme;
150
162
  d.y = true;
151
- d.change = delegateCombine(d.change, runOn(this, this.k));
152
- var g = this.f.createElement("div");
163
+ d.change = delegateCombine(d.change, runOn(this, this.n));
164
+ var g = this.i.createElement("div");
153
165
  a.setStyleProperty("display", "flex");
154
166
  a.setStyleProperty("height", "100%");
155
167
  a.setStyleProperty("align-items", "center");
@@ -174,6 +186,7 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
174
186
  var h = d.z;
175
187
  try {
176
188
  d.z = true;
189
+ d.ar = this.b.a7;
177
190
  d.a4 = b;
178
191
  if (c) {
179
192
  if (this.b.indexType == 0) {
@@ -195,14 +208,170 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
195
208
  finally {
196
209
  d.z = h;
197
210
  }
198
- d.dk = this.b.d2;
199
- d.dd = this.b.d0;
200
- d.dl = this.b.d3;
201
- d.de = this.b.d1;
202
- d.dm = this.b.d4;
211
+ d.dk = this.b.et;
212
+ d.dd = this.b.er;
213
+ d.dl = this.b.eu;
214
+ d.de = this.b.es;
215
+ d.dm = this.b.ev;
203
216
  }
204
217
  };
205
- CheckboxListView.prototype.z = function () {
218
+ CheckboxListView.prototype.s = function (a, b, c, d, e, f, g, h, i, j, k) {
219
+ var _this = this;
220
+ var l = null;
221
+ var m = null;
222
+ var n = null;
223
+ var o = null;
224
+ if (a.getChildCount() == 0) {
225
+ o = new XIcon();
226
+ l = new XLabel();
227
+ m = new XLabel();
228
+ a.setStyleProperty("display", "flex");
229
+ a.setStyleProperty("align-items", "center");
230
+ a.setStyleProperty("height", "100%");
231
+ var p = this.i.createElement("div");
232
+ var q = this.i.getSubRenderer(p);
233
+ o.provideContainer(q);
234
+ o.ap = 24;
235
+ o.as = 24;
236
+ p.setStyleProperty("margin-right", "10px");
237
+ var r = this.i.createElement("div");
238
+ var s = this.i.getSubRenderer(r);
239
+ l.provideContainer(s);
240
+ var t = this.i.createElement("div");
241
+ var u = this.i.getSubRenderer(t);
242
+ m.provideContainer(u);
243
+ this.h.addItem(a, l);
244
+ this.g.addItem(a, m);
245
+ this.f.addItem(a, o);
246
+ n = new XIcon();
247
+ var v = this.i.createElement("div");
248
+ var w = this.i.getSubRenderer(v);
249
+ n.provideContainer(w);
250
+ v.setStyleProperty("height", "100%");
251
+ v.setStyleProperty("margin-left", "-4px");
252
+ n.al = 16;
253
+ n.at = 16;
254
+ n.ap = 16;
255
+ n.as = 16;
256
+ n.ar = 2;
257
+ n.svgPath = "<svg width=\"16\" height=\"16\" viewBox=\"0 2 24 24\" fill=\"none\" stroke=\"rgba(0, 0, 0, 255)\" xmlns=\"http://www.w3.org/2000/svg\">\r\n" + "<path d=\"M20 11.1205L16.2166 14.8795L12.4575 11.1205\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n" + "</svg>\r\n";
258
+ n.dp = BrushUtil.h(120, 0, 0, 0);
259
+ n.ao = DeviceUtils.g(1);
260
+ r.setStyleProperty("display", "flex");
261
+ r.setStyleProperty("height", "100%");
262
+ r.setStyleProperty("align-items", "center");
263
+ r.setStyleProperty("justify-content", "start");
264
+ r.setStyleProperty("flex", "auto");
265
+ t.setStyleProperty("display", "flex");
266
+ t.setStyleProperty("height", "100%");
267
+ t.setStyleProperty("align-items", "center");
268
+ t.setStyleProperty("justify-content", "center");
269
+ t.setStyleProperty("flex-direction", "column");
270
+ a.append(p);
271
+ a.append(r);
272
+ a.append(t);
273
+ a.append(v);
274
+ }
275
+ else {
276
+ l = this.h.item(a);
277
+ m = this.g.item(a);
278
+ o = this.f.item(a);
279
+ }
280
+ if (l != null) {
281
+ try {
282
+ o.svg = null;
283
+ o.cu = null;
284
+ o.az = null;
285
+ var x = e != null ? e : ((function () {
286
+ var $ret = new FontInfo();
287
+ $ret.f = g;
288
+ $ret.q = f;
289
+ return $ret;
290
+ })());
291
+ l.ak = true;
292
+ l.p = this.b.baseTheme;
293
+ l.y = x;
294
+ l.text = c;
295
+ l.l = 0;
296
+ var y = a.getChildAt(0);
297
+ var z = h != null || i != null || k != null;
298
+ var aa = false;
299
+ y.setStyleProperty("width", z ? "24px" : "0px");
300
+ if (i != null) {
301
+ aa = true;
302
+ o.cu = i;
303
+ var ab = ((function () {
304
+ var $ret = new DataContext();
305
+ $ret.series = _this;
306
+ $ret.item = null;
307
+ $ret.itemBrush = ((function () {
308
+ var $ret = new Brush();
309
+ $ret.color = Color.u(255, 0, 0, 0);
310
+ $ret.fill = "black";
311
+ return $ret;
312
+ })());
313
+ return $ret;
314
+ })());
315
+ o.az = ab;
316
+ }
317
+ else if (h != null) {
318
+ var ac = typeCast(IDataLegendTarget_$type, h);
319
+ var ad = ac.getDataLegendSeries();
320
+ if (ad != null) {
321
+ for (var ae = 0; ae < ad.length; ae++) {
322
+ var af = ad[ae];
323
+ var ag = af.getDataLegendSeriesTitle();
324
+ if (c == ag || c + " " + d == ag) {
325
+ aa = true;
326
+ o.cu = af.getDataLegendBadge();
327
+ o.az = af.getDataLegendBadgeContext();
328
+ break;
329
+ }
330
+ }
331
+ }
332
+ y.setStyleProperty("padding-bottom", "6px");
333
+ }
334
+ else if (k != null) {
335
+ aa = true;
336
+ o.aq = 0;
337
+ o.ar = 0;
338
+ o.al = 24;
339
+ o.at = 24;
340
+ o.ap = 24;
341
+ o.as = 24;
342
+ o.dh = BrushUtil.h(0, 255, 255, 255);
343
+ o.fill = BrushUtil.h(0, 255, 255, 255);
344
+ o.dp = BrushUtil.h(0, 255, 255, 255);
345
+ o.di = BrushUtil.h(0, 255, 255, 255);
346
+ o.svg = k;
347
+ }
348
+ if (!aa) {
349
+ o.view.af();
350
+ }
351
+ var ah = a.getChildAt(2);
352
+ var ai = a.getChildAt(3);
353
+ if (stringIsNullOrEmpty(d)) {
354
+ ah.setStyleProperty("display", "none");
355
+ ai.setStyleProperty("display", "none");
356
+ return;
357
+ }
358
+ else {
359
+ ah.setStyleProperty("display", "flex");
360
+ ai.setStyleProperty("display", "flex");
361
+ }
362
+ m.p = this.b.baseTheme;
363
+ x.f = x.f - 2;
364
+ m.ak = true;
365
+ m.y = x;
366
+ m.text = d;
367
+ m.dj = BrushUtil.h(180, 0, 0, 0);
368
+ m.l = 0;
369
+ }
370
+ finally {
371
+ }
372
+ }
373
+ };
374
+ CheckboxListView.prototype.ae = function () {
206
375
  var e_1, _a;
207
376
  if (this.e != null) {
208
377
  try {
@@ -230,34 +399,34 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
230
399
  this.a.n = this.b.baseTheme;
231
400
  }
232
401
  };
233
- CheckboxListView.prototype.x = function () {
402
+ CheckboxListView.prototype.ac = function () {
234
403
  };
235
- CheckboxListView.prototype.k = function (a, b) {
404
+ CheckboxListView.prototype.n = function (a, b) {
236
405
  var c = a;
237
406
  var d = parseInt(c.a4.toString());
238
407
  var e = c.checked;
239
408
  if (e == true) {
240
409
  if (this.b.indexType == 0) {
241
- this.b.da(d);
410
+ this.b.d0(d);
242
411
  }
243
412
  else {
244
- this.b.cc(d);
413
+ this.b.cz(d);
245
414
  }
246
415
  }
247
416
  else {
248
417
  if (this.b.indexType == 0) {
249
- this.b.cc(d);
418
+ this.b.cz(d);
250
419
  }
251
420
  else {
252
- this.b.da(d);
421
+ this.b.d0(d);
253
422
  }
254
423
  }
255
- this.b.cu(d, e);
256
- this.ag(false);
424
+ this.b.di(d, e);
425
+ this.al(false);
257
426
  };
258
- CheckboxListView.prototype.l = function () {
427
+ CheckboxListView.prototype.o = function () {
259
428
  };
260
- CheckboxListView.prototype.t = function (a, b) {
429
+ CheckboxListView.prototype.y = function (a, b) {
261
430
  var e_2, _a;
262
431
  try {
263
432
  for (var _b = __values(fromEnum(this.e)), _c = _b.next(); !_c.done; _c = _b.next()) {
@@ -266,7 +435,7 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
266
435
  var e = parseInt(d.a4.toString());
267
436
  if (e == a) {
268
437
  d.checked = b;
269
- this.b.cu(e, b);
438
+ this.b.di(e, b);
270
439
  }
271
440
  }
272
441
  }
@@ -283,9 +452,9 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
283
452
  throw e_2.error;
284
453
  }
285
454
  }
286
- this.ag();
455
+ this.al();
287
456
  };
288
- CheckboxListView.prototype.u = function (a) {
457
+ CheckboxListView.prototype.z = function (a) {
289
458
  var e_3, _a;
290
459
  try {
291
460
  for (var _b = __values(fromEnum(this.e)), _c = _b.next(); !_c.done; _c = _b.next()) {
@@ -308,59 +477,59 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
308
477
  }
309
478
  }
310
479
  };
311
- CheckboxListView.prototype.q = function (a) {
312
- this.j = a;
313
- if (null != this.j) {
314
- this.j.setStyleProperty("margin", "5px 0px 4px 0px");
480
+ CheckboxListView.prototype.u = function (a) {
481
+ this.m = a;
482
+ if (null != this.m) {
483
+ this.m.setStyleProperty("margin", "5px 0px 4px 0px");
315
484
  }
316
485
  };
317
- CheckboxListView.prototype.ah = function () {
318
- var a = this.f;
319
- if (null == a || null == this.j) {
486
+ CheckboxListView.prototype.am = function () {
487
+ var a = this.i;
488
+ if (null == a || null == this.m) {
320
489
  return;
321
490
  }
322
491
  var b = a.createElement("div");
323
492
  var c = a.getSubRenderer(b);
324
493
  this.a = new XCheckbox();
325
494
  this.a.provideContainer(c);
326
- var d = this.f.getExternal(this.a, c.rootWrapper, this.f.getExternal(this.b, null, null));
495
+ var d = this.i.getExternal(this.a, c.rootWrapper, this.i.getExternal(this.b, null, null));
327
496
  this.a.n = this.b.baseTheme;
328
- this.i = a.createElement("label");
329
- this.i.setRawText(this.b.b4);
330
- this.i.setStyleProperty("font-size", "13px");
331
- this.j.setStyleProperty("display", "flex");
332
- this.j.setStyleProperty("flex-direction", "row");
333
- this.j.setStyleProperty("font-family", "Verdana");
334
- this.j.setStyleProperty("align-items", "center");
335
- this.j.append(b);
336
- this.j.append(this.i);
337
- this.ai();
338
- this.af();
497
+ this.l = a.createElement("label");
498
+ this.l.setRawText(this.b.cp);
499
+ this.l.setStyleProperty("font-size", "13px");
500
+ this.m.setStyleProperty("display", "flex");
501
+ this.m.setStyleProperty("flex-direction", "row");
502
+ this.m.setStyleProperty("font-family", "Verdana");
503
+ this.m.setStyleProperty("align-items", "center");
504
+ this.m.append(b);
505
+ this.m.append(this.l);
506
+ this.an();
507
+ this.ak();
339
508
  var e = this.a;
340
- e.change = delegateCombine(e.change, runOn(this, this.r));
509
+ e.change = delegateCombine(e.change, runOn(this, this.w));
341
510
  this.a.y = true;
342
511
  };
343
- CheckboxListView.prototype.af = function () {
344
- if (null != this.i) {
345
- this.i.setRawText(this.b.b4);
346
- NativeUI.q(this.i, this.b.dy);
512
+ CheckboxListView.prototype.ak = function () {
513
+ if (null != this.l) {
514
+ this.l.setRawText(this.b.cp);
515
+ NativeUI.q(this.l, this.b.ep);
347
516
  }
348
517
  };
349
- CheckboxListView.prototype.ai = function () {
350
- if (null != this.i) {
518
+ CheckboxListView.prototype.an = function () {
519
+ if (null != this.l) {
351
520
  var a = this.b.showSelectAll ? "flex" : "none";
352
- this.j.setStyleProperty("display", a);
521
+ this.m.setStyleProperty("display", a);
353
522
  }
354
523
  };
355
- CheckboxListView.prototype.ae = function () {
356
- if (this.h != null) {
357
- this.h.setStyleProperty("display", this.b.au ? "block" : "none");
524
+ CheckboxListView.prototype.aj = function () {
525
+ if (this.k != null) {
526
+ this.k.setStyleProperty("display", this.b.a3 ? "block" : "none");
358
527
  }
359
- if (this.g != null) {
360
- this.g.setStyleProperty("display", this.b.au ? "block" : "none");
528
+ if (this.j != null) {
529
+ this.j.setStyleProperty("display", this.b.a3 ? "block" : "none");
361
530
  }
362
531
  };
363
- CheckboxListView.prototype.ag = function (a) {
532
+ CheckboxListView.prototype.al = function (a) {
364
533
  if (a === void 0) {
365
534
  a = true;
366
535
  }
@@ -372,7 +541,7 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
372
541
  var c = this.a.z;
373
542
  this.a.z = a;
374
543
  try {
375
- if (this.b.as) {
544
+ if (this.b.a0) {
376
545
  this.a.indeterminate = true;
377
546
  return;
378
547
  }
@@ -389,58 +558,84 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
389
558
  this.d = b;
390
559
  }
391
560
  };
392
- CheckboxListView.prototype.r = function (a, b) {
561
+ CheckboxListView.prototype.w = function (a, b) {
393
562
  if (this.d || b.isIndeterminate) {
394
563
  return;
395
564
  }
396
565
  if (b.isChecked) {
397
- this.b.dd();
398
- this.b.c2(b.isChecked);
566
+ this.b.d3();
567
+ this.b.dr(b.isChecked);
399
568
  }
400
569
  else {
401
- this.b.ci();
402
- this.b.c2(b.isChecked);
570
+ this.b.c5();
571
+ this.b.dr(b.isChecked);
403
572
  }
404
573
  };
405
- CheckboxListView.prototype.ad = function () {
406
- var a = this.f;
574
+ CheckboxListView.prototype.ai = function () {
575
+ var a = this.i;
407
576
  if (null == a) {
408
577
  return;
409
578
  }
410
579
  var b = a.rootWrapper;
411
580
  if (null != b) {
412
- NativeUI.q(b, this.b.eg);
581
+ NativeUI.q(b, this.b.e7);
413
582
  NativeUI.m(b, this.b.backgroundColor);
414
583
  }
415
584
  };
416
- CheckboxListView.prototype.ab = function () {
585
+ CheckboxListView.prototype.ag = function () {
417
586
  if (this.c != null) {
418
587
  this.c.fill = this.b.searchIconColor;
419
588
  }
420
589
  };
421
- CheckboxListView.prototype.ac = function () {
422
- if (this.b.ai != null) {
423
- this.i.setStyleProperty("font", this.b.ai.fontString);
590
+ CheckboxListView.prototype.ah = function () {
591
+ if (this.b.am != null) {
592
+ this.l.setStyleProperty("font", this.b.am.fontString);
424
593
  }
425
594
  else {
426
- this.i.setStyleProperty("font-family", "Verdana");
427
- this.i.setStyleProperty("font-size", 13 + "px");
595
+ this.l.setStyleProperty("font-family", "Verdana");
596
+ this.l.setStyleProperty("font-size", 13 + "px");
428
597
  }
429
598
  };
430
- CheckboxListView.prototype.y = function () {
431
- this.a.dk = this.b.d2;
432
- this.a.dd = this.b.d0;
433
- this.a.dl = this.b.d3;
434
- this.a.de = this.b.d1;
435
- this.a.dm = this.b.d4;
599
+ CheckboxListView.prototype.ad = function () {
600
+ if (this.a == null) {
601
+ return;
602
+ }
603
+ this.a.dk = this.b.et;
604
+ this.a.dd = this.b.er;
605
+ this.a.dl = this.b.eu;
606
+ this.a.de = this.b.es;
607
+ this.a.dm = this.b.ev;
436
608
  };
437
- CheckboxListView.prototype.aa = function (a) {
438
- if (this.g != null) {
439
- NativeUI.w(this.g, a);
609
+ CheckboxListView.prototype.af = function (a) {
610
+ if (this.j != null) {
611
+ NativeUI.w(this.j, a);
440
612
  }
441
613
  };
442
- CheckboxListView.prototype.p = function (a) {
443
- this.g = a;
614
+ CheckboxListView.prototype.t = function (a) {
615
+ this.j = a;
616
+ };
617
+ CheckboxListView.prototype.v = function () {
618
+ var e_4, _a;
619
+ try {
620
+ for (var _b = __values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
621
+ var a = _c.value;
622
+ a.value.cu = null;
623
+ a.value.az = null;
624
+ }
625
+ }
626
+ catch (e_4_1) {
627
+ e_4 = { error: e_4_1 };
628
+ }
629
+ finally {
630
+ try {
631
+ if (_c && !_c.done && (_a = _b.return))
632
+ _a.call(_b);
633
+ }
634
+ finally {
635
+ if (e_4)
636
+ throw e_4.error;
637
+ }
638
+ }
444
639
  };
445
640
  CheckboxListView.$t = markType(CheckboxListView, 'CheckboxListView');
446
641
  return CheckboxListView;
@@ -456,63 +651,74 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
456
651
  _this._view = null;
457
652
  _this.f = null;
458
653
  _this.j = null;
459
- _this.af = null;
654
+ _this.ai = null;
655
+ _this.ag = null;
656
+ _this.aj = null;
657
+ _this.ah = null;
460
658
  _this.d = null;
461
- _this.am = false;
659
+ _this.aq = false;
462
660
  _this.c = null;
463
- _this.s = null;
464
- _this.u = null;
465
- _this.an = false;
466
- _this.ak = null;
661
+ _this.t = null;
662
+ _this.v = null;
663
+ _this.ar = false;
664
+ _this.ao = null;
467
665
  _this.g = new GridSelectedKeysCollection();
468
666
  _this.a = null;
469
667
  _this.propertyChanged = null;
470
668
  _this.selectedKeyAdded = null;
471
669
  _this.selectedKeyRemoved = null;
472
670
  _this.checkedChanged = null;
473
- _this.a4 = null;
474
- _this.a6 = null;
475
- _this.a8 = null;
476
- _this.a7 = null;
477
- _this.w = 3;
478
- _this.a0 = -1;
479
- _this.ag = null;
671
+ _this.labelClicked = null;
672
+ _this.bg = null;
673
+ _this.bj = null;
674
+ _this.bf = null;
675
+ _this.bn = null;
676
+ _this.bl = null;
677
+ _this.bm = null;
678
+ _this.bk = null;
679
+ _this.x = 3;
680
+ _this.bb = -1;
681
+ _this.ak = null;
480
682
  _this.k = 1;
481
- _this.ab = 1;
482
- _this.ad = 2;
483
- _this.du = BrushUtil.h(255, 24, 29, 31);
484
- _this.ds = null;
485
- _this.dv = null;
486
- _this.dt = null;
487
- _this.ah = null;
488
- _this.dm = null;
489
- _this.dk = null;
490
- _this.dn = null;
491
- _this.dl = null;
492
- _this.dp = null;
493
- _this.z = 0;
494
- _this.dr = null;
683
+ _this.ac = 1;
684
+ _this.ae = 2;
685
+ _this.el = BrushUtil.h(255, 24, 29, 31);
686
+ _this.ej = null;
687
+ _this.at = true;
688
+ _this.em = null;
689
+ _this.ek = null;
690
+ _this.al = null;
691
+ _this.ee = null;
692
+ _this.ec = null;
693
+ _this.ef = null;
694
+ _this.ed = null;
695
+ _this.eg = null;
696
+ _this.a6 = NaN;
697
+ _this.aa = 0;
698
+ _this.ei = null;
495
699
  _this.indexTypeChanged = null;
496
- _this.b3 = null;
497
- _this.dw = null;
498
- _this.di = CheckboxList.d7;
499
- _this.av = true;
500
- _this.dj = CheckboxList.d5;
501
- _this.dq = CheckboxList.d6;
502
- _this.dx = CheckboxList.d7;
700
+ _this.as = false;
701
+ _this.co = null;
702
+ _this.en = null;
703
+ _this.ea = CheckboxList.ey;
704
+ _this.a4 = true;
705
+ _this.eb = CheckboxList.ew;
706
+ _this.eh = CheckboxList.ex;
707
+ _this.eo = CheckboxList.ey;
503
708
  _this.keysCleared = null;
504
709
  _this.selectAllCheckboxChanged = null;
505
- _this.a2 = -1;
506
- _this.at = true;
507
- _this.aq = true;
710
+ _this.bd = -1;
711
+ _this.a2 = true;
712
+ _this.ay = true;
713
+ _this.au = false;
508
714
  var a = _this.g;
509
- a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.c5));
510
- _this.g.am(runOn(_this, _this.c4));
715
+ a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.du));
716
+ _this.g.am(runOn(_this, _this.dt));
511
717
  _this.d = new FilterFactory();
512
718
  var b = new CheckboxListView();
513
719
  b.b = _this;
514
720
  _this.view = b;
515
- _this.view.n();
721
+ _this.view.q();
516
722
  return _this;
517
723
  }
518
724
  Object.defineProperty(CheckboxList.prototype, "view", {
@@ -525,22 +731,22 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
525
731
  enumerable: false,
526
732
  configurable: true
527
733
  });
528
- Object.defineProperty(CheckboxList.prototype, "v", {
734
+ Object.defineProperty(CheckboxList.prototype, "w", {
529
735
  get: function () {
530
- return this.u;
736
+ return this.v;
531
737
  },
532
738
  set: function (a) {
533
- this.u = a;
739
+ this.v = a;
534
740
  },
535
741
  enumerable: false,
536
742
  configurable: true
537
743
  });
538
- Object.defineProperty(CheckboxList.prototype, "t", {
744
+ Object.defineProperty(CheckboxList.prototype, "u", {
539
745
  get: function () {
540
- return this.s;
746
+ return this.t;
541
747
  },
542
748
  set: function (a) {
543
- this.s = a;
749
+ this.t = a;
544
750
  },
545
751
  enumerable: false,
546
752
  configurable: true
@@ -555,13 +761,13 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
555
761
  enumerable: false,
556
762
  configurable: true
557
763
  });
558
- Object.defineProperty(CheckboxList.prototype, "al", {
764
+ Object.defineProperty(CheckboxList.prototype, "ap", {
559
765
  get: function () {
560
- if (this.ak == null) {
561
- this.ak = new SRProvider(this.view.f);
562
- this.ak.cb("DataGrid");
766
+ if (this.ao == null) {
767
+ this.ao = new SRProvider(this.view.i);
768
+ this.ao.cb("DataGrid");
563
769
  }
564
- return this.ak;
770
+ return this.ao;
565
771
  },
566
772
  enumerable: false,
567
773
  configurable: true
@@ -581,7 +787,7 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
581
787
  var b = this.a;
582
788
  this.a = a;
583
789
  if (b != this.a) {
584
- this.c0("PrimaryKey", b, this.a);
790
+ this.dp("PrimaryKey", b, this.a);
585
791
  }
586
792
  },
587
793
  enumerable: false,
@@ -602,48 +808,48 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
602
808
  CheckboxList.prototype.removeSelectedKeyAt = function (a) {
603
809
  this.keys.removeAt(a);
604
810
  };
605
- CheckboxList.prototype.c4 = function () {
606
- this.co();
811
+ CheckboxList.prototype.dt = function () {
812
+ this.db();
607
813
  if (this.keysCleared != null) {
608
814
  this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
609
815
  }
610
816
  };
611
- CheckboxList.prototype.c5 = function (a, b) {
612
- if (this.e == null || this.e.actualSchema == null || this.am) {
817
+ CheckboxList.prototype.du = function (a, b) {
818
+ if (this.e == null || this.e.actualSchema == null || this.aq) {
613
819
  return;
614
820
  }
615
821
  switch (b.action) {
616
822
  case 0:
617
823
  for (var c = 0; c < b.newItems.count; c++) {
618
- this.cy(b.newItems.item(c));
824
+ this.dm(b.newItems.item(c));
619
825
  }
620
826
  break;
621
827
  case 1:
622
828
  for (var d = 0; d < b.oldItems.count; d++) {
623
- this.cz(b.oldItems.item(d));
829
+ this.dn(b.oldItems.item(d));
624
830
  }
625
831
  break;
626
832
  case 2:
627
833
  for (var e = 0; e < b.oldItems.count; e++) {
628
- this.cz(b.oldItems.item(e));
834
+ this.dn(b.oldItems.item(e));
629
835
  }
630
836
  for (var f = 0; f < b.newItems.count; f++) {
631
- this.cy(b.newItems.item(f));
837
+ this.dm(b.newItems.item(f));
632
838
  }
633
839
  break;
634
840
  case 4:
635
- this.view.u(this.indexType == 0);
841
+ this.view.z(this.indexType == 0);
636
842
  for (var g = 0; g < this.keys.ae.count; g++) {
637
- this.cy(this.keys.ae._inner[g]);
843
+ this.dm(this.keys.ae._inner[g]);
638
844
  }
639
845
  break;
640
846
  }
641
847
  };
642
- CheckboxList.prototype.cy = function (a) {
848
+ CheckboxList.prototype.dm = function (a) {
643
849
  var _this = this;
644
850
  var b = this.e.indexOfKey(a.value);
645
851
  if (b >= 0) {
646
- this.view.t(b, this.indexType == 1);
852
+ this.view.y(b, this.indexType == 1);
647
853
  }
648
854
  if (this.selectedKeyAdded == null) {
649
855
  return;
@@ -656,11 +862,11 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
656
862
  return $ret;
657
863
  })()));
658
864
  };
659
- CheckboxList.prototype.cz = function (a) {
865
+ CheckboxList.prototype.dn = function (a) {
660
866
  var _this = this;
661
867
  var b = this.e.indexOfKey(a.value);
662
868
  if (b >= 0) {
663
- this.view.t(b, this.indexType == 0);
869
+ this.view.y(b, this.indexType == 0);
664
870
  }
665
871
  if (this.selectedKeyRemoved == null) {
666
872
  return;
@@ -673,8 +879,8 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
673
879
  return $ret;
674
880
  })()));
675
881
  };
676
- CheckboxList.prototype.cu = function (a, b) {
677
- if (this.checkedChanged != null && this.an == false) {
882
+ CheckboxList.prototype.di = function (a, b) {
883
+ if (this.checkedChanged != null && this.ar == false) {
678
884
  var c_1 = null;
679
885
  if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
680
886
  c_1 = new Array(this.e.actualPrimaryKey.length);
@@ -692,27 +898,27 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
692
898
  }
693
899
  };
694
900
  CheckboxList.prototype.notifySizeChanged = function () {
695
- this.view.l();
901
+ this.view.o();
696
902
  };
697
903
  CheckboxList.prototype.destroy = function () {
698
904
  if (this.f != null) {
699
905
  var a = this.f;
700
- a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.ck));
906
+ a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.c7));
701
907
  var b = this.f;
702
- b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.cl));
908
+ b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.c8));
703
909
  if (this.f.actualDataSource != null) {
704
910
  var c = this.f.actualDataSource;
705
- c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.c1));
911
+ c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.dq));
706
912
  }
707
913
  }
708
- if (this.s != null) {
709
- var d = this.s;
710
- d.change = delegateRemove(d.change, runOn(this, this.cm));
914
+ if (this.t != null) {
915
+ var d = this.t;
916
+ d.change = delegateRemove(d.change, runOn(this, this.c9));
711
917
  }
712
918
  this.provideContainer(null, null, null);
713
919
  if (this.j != null) {
714
920
  var e = this.j;
715
- e.cellUpdating = delegateRemove(e.cellUpdating, runOn(this, this.cg));
921
+ e.cellUpdating = delegateRemove(e.cellUpdating, runOn(this, this.c3));
716
922
  }
717
923
  };
718
924
  CheckboxList.prototype.provideContainer = function (a, b, c) {
@@ -720,8 +926,8 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
720
926
  if (null != this.f) {
721
927
  this.f.scrollbarStyle = 1;
722
928
  var d = this.f;
723
- d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.cl));
724
- this.f.scrollbarBackground = this.d9;
929
+ d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.c8));
930
+ this.f.scrollbarBackground = this.e0;
725
931
  this.f.headerHeight = 0;
726
932
  this.f.rowSeparatorHeight = 0;
727
933
  this.f.defaultColumnMinWidth = NaN;
@@ -729,28 +935,31 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
729
935
  this.f.activationMode = 0;
730
936
  this.f.editMode = 0;
731
937
  var e = this.f;
732
- e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.ck));
733
- if (this.a4 != null) {
734
- this.f.itemsSource = this.a4;
735
- this.cf();
736
- this.c3();
938
+ e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.c7));
939
+ if (this.bg != null) {
940
+ this.f.itemsSource = this.bg;
941
+ this.c2();
942
+ this.ds();
737
943
  }
738
- if (this.a6 != null) {
739
- this.c3();
740
- this.dg();
944
+ if (this.bj != null) {
945
+ this.ds();
946
+ this.d6();
741
947
  }
742
948
  }
743
- this.view.q(c);
744
- this.view.m(a);
949
+ this.view.u(c);
950
+ if (this.av) {
951
+ this.d8();
952
+ }
953
+ this.view.p(a);
745
954
  };
746
- CheckboxList.prototype.cl = function (a, b) {
747
- this.f.scrollbarStyle = this.aa;
955
+ CheckboxList.prototype.c8 = function (a, b) {
956
+ this.f.scrollbarStyle = this.ab;
748
957
  };
749
958
  CheckboxList.prototype.provideSelectAllSection = function (a) {
750
- this.view.q(a);
959
+ this.view.u(a);
751
960
  };
752
- CheckboxList.prototype.ck = function (a, b) {
753
- if (b.cellInfo.l.a5 == 0) {
961
+ CheckboxList.prototype.c7 = function (a, b) {
962
+ if (!this.av && b.cellInfo.l.a5 == 0 || this.av && b.cellInfo.l.a5 == 1) {
754
963
  return;
755
964
  }
756
965
  var c = b.cellInfo.l.x;
@@ -759,20 +968,42 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
759
968
  }
760
969
  var d = b.cellInfo.hn;
761
970
  var e = this.i(d);
762
- if (this.keys.contains(e)) {
763
- if (this.af != null) {
764
- this.af.setPropertyValue(d, false);
971
+ if (this.a1) {
972
+ if (this.keys.contains(e)) {
973
+ if (this.ai != null) {
974
+ this.ai.setPropertyValue(d, false);
975
+ }
976
+ this.keys.remove(e);
977
+ }
978
+ else {
979
+ if (this.ai != null) {
980
+ this.ai.setPropertyValue(d, true);
981
+ }
982
+ this.keys.add(e);
765
983
  }
766
- this.keys.remove(e);
767
984
  }
768
- else {
769
- if (this.af != null) {
770
- this.af.setPropertyValue(d, true);
985
+ this.de(c, this.keys.contains(e));
986
+ };
987
+ CheckboxList.prototype.de = function (a, b) {
988
+ var c = null;
989
+ if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
990
+ c = new Array(this.e.actualPrimaryKey.length);
991
+ for (var d = 0; d < this.e.actualPrimaryKey.length; d++) {
992
+ c[d] = this.e.getItemPropertyAtIndex(a, this.e.actualPrimaryKey[d]);
771
993
  }
772
- this.keys.add(e);
773
994
  }
995
+ if (this.labelClicked == null) {
996
+ return;
997
+ }
998
+ this.labelClicked(this, ((function () {
999
+ var $ret = new CheckedChangedEventArgs();
1000
+ $ret.c = a;
1001
+ $ret.b = b;
1002
+ $ret.a = c;
1003
+ return $ret;
1004
+ })()));
774
1005
  };
775
- CheckboxList.prototype.cg = function (a, b) {
1006
+ CheckboxList.prototype.c3 = function (a, b) {
776
1007
  var c = b.cellInfo.l.x;
777
1008
  if (-1 == c) {
778
1009
  return;
@@ -784,11 +1015,41 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
784
1015
  d = true;
785
1016
  }
786
1017
  }
787
- this.view.o(b.content.element, c, d);
1018
+ this.view.r(b.content.element, c, d);
1019
+ };
1020
+ CheckboxList.prototype.d7 = function (a, b) {
1021
+ var c = b.cellInfo.l.x;
1022
+ if (-1 == c) {
1023
+ return;
1024
+ }
1025
+ var d = null;
1026
+ var e = null;
1027
+ var f = null;
1028
+ var g = null;
1029
+ var h = null;
1030
+ if (b.cellInfo.hn != null) {
1031
+ d = this.ag.getPropertyValue(b.cellInfo.hn);
1032
+ if (this.aj != null) {
1033
+ e = this.aj.getPropertyValue(b.cellInfo.hn);
1034
+ }
1035
+ if (this.ah != null) {
1036
+ var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.ah.getPropertyValue(b.cellInfo.hn));
1037
+ if (i == 0) {
1038
+ h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
1039
+ }
1040
+ else if (i == 2) {
1041
+ h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "numeric-field");
1042
+ }
1043
+ else if (i == 1) {
1044
+ h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "date-time-field");
1045
+ }
1046
+ }
1047
+ }
1048
+ this.view.s(b.content.element, c, d, e, this.ak, "Verdana", 13, this.bf, f, g, h);
788
1049
  };
789
- CheckboxList.prototype.cv = function (a) {
790
- if (this.a6 != null) {
791
- var b = this.d.property(this.a6).cast(enumGetBox(DataSourceSchemaPropertyType_$type, 0)).toLower();
1050
+ CheckboxList.prototype.dj = function (a) {
1051
+ if (this.bj != null) {
1052
+ var b = this.d.property(this.bj).cast(enumGetBox(DataSourceSchemaPropertyType_$type, 0)).toLower();
792
1053
  var c = b.contains(a);
793
1054
  if (!this.f.filterExpressions.k.contains(this.c)) {
794
1055
  this.c = c;
@@ -802,13 +1063,13 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
802
1063
  };
803
1064
  Object.defineProperty(CheckboxList.prototype, "itemsSource", {
804
1065
  get: function () {
805
- return this.a4;
1066
+ return this.bg;
806
1067
  },
807
1068
  set: function (a) {
808
- var b = this.a4;
809
- this.a4 = a;
810
- if (b != this.a4) {
811
- this.c0("ItemsSource", b, this.a4);
1069
+ var b = this.bg;
1070
+ this.bg = a;
1071
+ if (b != this.bg) {
1072
+ this.dp("ItemsSource", b, this.bg);
812
1073
  }
813
1074
  },
814
1075
  enumerable: false,
@@ -816,13 +1077,55 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
816
1077
  });
817
1078
  Object.defineProperty(CheckboxList.prototype, "dataMemberPath", {
818
1079
  get: function () {
819
- return this.a6;
1080
+ return this.bj;
820
1081
  },
821
1082
  set: function (a) {
822
- var b = this.a6;
823
- this.a6 = a;
824
- if (b != this.a6) {
825
- this.c0("DataMemberPath", b, this.a6);
1083
+ var b = this.bj;
1084
+ this.bj = a;
1085
+ if (b != this.bj) {
1086
+ this.dp("DataMemberPath", b, this.bj);
1087
+ }
1088
+ },
1089
+ enumerable: false,
1090
+ configurable: true
1091
+ });
1092
+ Object.defineProperty(CheckboxList.prototype, "bh", {
1093
+ get: function () {
1094
+ return this.bf;
1095
+ },
1096
+ set: function (a) {
1097
+ var b = this.bf;
1098
+ this.bf = a;
1099
+ if (b != this.bf) {
1100
+ this.dp("DataLegendTarget", b, this.bf);
1101
+ }
1102
+ },
1103
+ enumerable: false,
1104
+ configurable: true
1105
+ });
1106
+ Object.defineProperty(CheckboxList.prototype, "cw", {
1107
+ get: function () {
1108
+ return this.bn;
1109
+ },
1110
+ set: function (a) {
1111
+ var b = this.bn;
1112
+ this.bn = a;
1113
+ if (b != this.bn) {
1114
+ this.dp("SubtitleMemberPath", b, this.bn);
1115
+ }
1116
+ },
1117
+ enumerable: false,
1118
+ configurable: true
1119
+ });
1120
+ Object.defineProperty(CheckboxList.prototype, "cb", {
1121
+ get: function () {
1122
+ return this.bl;
1123
+ },
1124
+ set: function (a) {
1125
+ var b = this.bl;
1126
+ this.bl = a;
1127
+ if (b != this.bl) {
1128
+ this.dp("PropertyTypeMemberPath", b, this.bl);
826
1129
  }
827
1130
  },
828
1131
  enumerable: false,
@@ -830,67 +1133,67 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
830
1133
  });
831
1134
  Object.defineProperty(CheckboxList.prototype, "selectedMemberPath", {
832
1135
  get: function () {
833
- return this.a8;
1136
+ return this.bm;
834
1137
  },
835
1138
  set: function (a) {
836
- var b = this.a8;
837
- this.a8 = a;
838
- if (b != this.a8) {
839
- this.c0("SelectedMemberPath", b, this.a8);
1139
+ var b = this.bm;
1140
+ this.bm = a;
1141
+ if (b != this.bm) {
1142
+ this.dp("SelectedMemberPath", b, this.bm);
840
1143
  }
841
1144
  },
842
1145
  enumerable: false,
843
1146
  configurable: true
844
1147
  });
845
- Object.defineProperty(CheckboxList.prototype, "bm", {
1148
+ Object.defineProperty(CheckboxList.prototype, "b4", {
846
1149
  get: function () {
847
- return this.a7;
1150
+ return this.bk;
848
1151
  },
849
1152
  set: function (a) {
850
- var b = this.a7;
851
- this.a7 = a;
852
- if (b != this.a7) {
853
- this.c0("FilterPlaceholderText", b, this.a7);
1153
+ var b = this.bk;
1154
+ this.bk = a;
1155
+ if (b != this.bk) {
1156
+ this.dp("FilterPlaceholderText", b, this.bk);
854
1157
  }
855
1158
  },
856
1159
  enumerable: false,
857
1160
  configurable: true
858
1161
  });
859
- Object.defineProperty(CheckboxList.prototype, "x", {
1162
+ Object.defineProperty(CheckboxList.prototype, "y", {
860
1163
  get: function () {
861
- return this.w;
1164
+ return this.x;
862
1165
  },
863
1166
  set: function (a) {
864
- var b = this.w;
865
- this.w = a;
866
- if (b != this.w) {
867
- this.c0("SearchInputType", enumGetBox(InputGroupDisplayType_$type, b), enumGetBox(InputGroupDisplayType_$type, this.w));
1167
+ var b = this.x;
1168
+ this.x = a;
1169
+ if (b != this.x) {
1170
+ this.dp("SearchInputType", enumGetBox(InputGroupDisplayType_$type, b), enumGetBox(InputGroupDisplayType_$type, this.x));
868
1171
  }
869
1172
  },
870
1173
  enumerable: false,
871
1174
  configurable: true
872
1175
  });
873
- Object.defineProperty(CheckboxList.prototype, "a3", {
1176
+ Object.defineProperty(CheckboxList.prototype, "be", {
874
1177
  get: function () {
875
- return this.a0;
1178
+ return this.bb;
876
1179
  },
877
1180
  set: function (a) {
878
- var b = this.a0;
879
- this.a0 = a;
880
- if (b != this.a0) {
881
- this.c0("RowHeight", b, this.a0);
1181
+ var b = this.bb;
1182
+ this.bb = a;
1183
+ if (b != this.bb) {
1184
+ this.dp("RowHeight", b, this.bb);
882
1185
  }
883
1186
  },
884
1187
  enumerable: false,
885
1188
  configurable: true
886
1189
  });
887
- Object.defineProperty(CheckboxList.prototype, "a1", {
1190
+ Object.defineProperty(CheckboxList.prototype, "bc", {
888
1191
  get: function () {
889
1192
  if (this.f != null) {
890
1193
  return this.f.actualRowHeight;
891
1194
  }
892
- else if (this.a0 != -1) {
893
- return this.a0;
1195
+ else if (this.bb != -1) {
1196
+ return this.bb;
894
1197
  }
895
1198
  else {
896
1199
  switch (this.density) {
@@ -906,15 +1209,15 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
906
1209
  enumerable: false,
907
1210
  configurable: true
908
1211
  });
909
- Object.defineProperty(CheckboxList.prototype, "ai", {
1212
+ Object.defineProperty(CheckboxList.prototype, "am", {
910
1213
  get: function () {
911
- return this.ag;
1214
+ return this.ak;
912
1215
  },
913
1216
  set: function (a) {
914
- var b = this.ag;
915
- this.ag = a;
916
- if (b != this.ag) {
917
- this.c0("CellTextStyle", b, this.ag);
1217
+ var b = this.ak;
1218
+ this.ak = a;
1219
+ if (b != this.ak) {
1220
+ this.dp("CellTextStyle", b, this.ak);
918
1221
  }
919
1222
  },
920
1223
  enumerable: false,
@@ -928,7 +1231,7 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
928
1231
  var b = this.k;
929
1232
  this.k = a;
930
1233
  if (b != this.k) {
931
- this.c0("IndexType", enumGetBox(CheckboxListIndexType_$type, b), enumGetBox(CheckboxListIndexType_$type, this.k));
1234
+ this.dp("IndexType", enumGetBox(CheckboxListIndexType_$type, b), enumGetBox(CheckboxListIndexType_$type, this.k));
932
1235
  }
933
1236
  },
934
1237
  enumerable: false,
@@ -936,13 +1239,13 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
936
1239
  });
937
1240
  Object.defineProperty(CheckboxList.prototype, "baseTheme", {
938
1241
  get: function () {
939
- return this.ab;
1242
+ return this.ac;
940
1243
  },
941
1244
  set: function (a) {
942
- var b = this.ab;
943
- this.ab = a;
944
- if (b != this.ab) {
945
- this.c0("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.ab));
1245
+ var b = this.ac;
1246
+ this.ac = a;
1247
+ if (b != this.ac) {
1248
+ this.dp("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.ac));
946
1249
  }
947
1250
  },
948
1251
  enumerable: false,
@@ -950,13 +1253,13 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
950
1253
  });
951
1254
  Object.defineProperty(CheckboxList.prototype, "density", {
952
1255
  get: function () {
953
- return this.ad;
1256
+ return this.ae;
954
1257
  },
955
1258
  set: function (a) {
956
- var b = this.ad;
957
- this.ad = a;
958
- if (b != this.ad) {
959
- this.c0("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.ad));
1259
+ var b = this.ae;
1260
+ this.ae = a;
1261
+ if (b != this.ae) {
1262
+ this.dp("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.ae));
960
1263
  }
961
1264
  },
962
1265
  enumerable: false,
@@ -964,27 +1267,41 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
964
1267
  });
965
1268
  Object.defineProperty(CheckboxList.prototype, "searchIconColor", {
966
1269
  get: function () {
967
- return this.du;
1270
+ return this.el;
1271
+ },
1272
+ set: function (a) {
1273
+ var b = this.el;
1274
+ this.el = a;
1275
+ if (b != this.el) {
1276
+ this.dp("SearchIconColor", b, this.el);
1277
+ }
1278
+ },
1279
+ enumerable: false,
1280
+ configurable: true
1281
+ });
1282
+ Object.defineProperty(CheckboxList.prototype, "e1", {
1283
+ get: function () {
1284
+ return this.ej;
968
1285
  },
969
1286
  set: function (a) {
970
- var b = this.du;
971
- this.du = a;
972
- if (b != this.du) {
973
- this.c0("SearchIconColor", b, this.du);
1287
+ var b = this.ej;
1288
+ this.ej = a;
1289
+ if (b != this.ej) {
1290
+ this.dp("SearchBackgroundColor", b, this.ej);
974
1291
  }
975
1292
  },
976
1293
  enumerable: false,
977
1294
  configurable: true
978
1295
  });
979
- Object.defineProperty(CheckboxList.prototype, "ea", {
1296
+ Object.defineProperty(CheckboxList.prototype, "a1", {
980
1297
  get: function () {
981
- return this.ds;
1298
+ return this.at;
982
1299
  },
983
1300
  set: function (a) {
984
- var b = this.ds;
985
- this.ds = a;
986
- if (b != this.ds) {
987
- this.c0("SearchBackgroundColor", b, this.ds);
1301
+ var b = this.at;
1302
+ this.at = a;
1303
+ if (b != this.at) {
1304
+ this.dp("LabelClickTriggersChange", b, this.at);
988
1305
  }
989
1306
  },
990
1307
  enumerable: false,
@@ -992,160 +1309,174 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
992
1309
  });
993
1310
  Object.defineProperty(CheckboxList.prototype, "searchTextColor", {
994
1311
  get: function () {
995
- return this.dv;
1312
+ return this.em;
996
1313
  },
997
1314
  set: function (a) {
998
- var b = this.dv;
999
- this.dv = a;
1000
- if (b != this.dv) {
1001
- this.c0("SearchTextColor", b, this.dv);
1315
+ var b = this.em;
1316
+ this.em = a;
1317
+ if (b != this.em) {
1318
+ this.dp("SearchTextColor", b, this.em);
1002
1319
  }
1003
1320
  },
1004
1321
  enumerable: false,
1005
1322
  configurable: true
1006
1323
  });
1007
- Object.defineProperty(CheckboxList.prototype, "eb", {
1324
+ Object.defineProperty(CheckboxList.prototype, "e2", {
1008
1325
  get: function () {
1009
- return this.dt;
1326
+ return this.ek;
1010
1327
  },
1011
1328
  set: function (a) {
1012
- var b = this.dt;
1013
- this.dt = a;
1014
- if (b != this.dt) {
1015
- this.c0("SearchBorderColor", b, this.dt);
1329
+ var b = this.ek;
1330
+ this.ek = a;
1331
+ if (b != this.ek) {
1332
+ this.dp("SearchBorderColor", b, this.ek);
1016
1333
  }
1017
1334
  },
1018
1335
  enumerable: false,
1019
1336
  configurable: true
1020
1337
  });
1021
- Object.defineProperty(CheckboxList.prototype, "aj", {
1338
+ Object.defineProperty(CheckboxList.prototype, "an", {
1022
1339
  get: function () {
1023
- return this.ah;
1340
+ return this.al;
1024
1341
  },
1025
1342
  set: function (a) {
1026
- var b = this.ah;
1027
- this.ah = a;
1028
- if (b != this.ah) {
1029
- this.c0("SearchTextStyle", b, this.ah);
1343
+ var b = this.al;
1344
+ this.al = a;
1345
+ if (b != this.al) {
1346
+ this.dp("SearchTextStyle", b, this.al);
1030
1347
  }
1031
1348
  },
1032
1349
  enumerable: false,
1033
1350
  configurable: true
1034
1351
  });
1035
- Object.defineProperty(CheckboxList.prototype, "d2", {
1352
+ Object.defineProperty(CheckboxList.prototype, "et", {
1036
1353
  get: function () {
1037
- return this.dm;
1354
+ return this.ee;
1038
1355
  },
1039
1356
  set: function (a) {
1040
- var b = this.dm;
1041
- this.dm = a;
1042
- if (b != this.dm) {
1043
- this.c0("CheckboxTickColor", b, this.dm);
1357
+ var b = this.ee;
1358
+ this.ee = a;
1359
+ if (b != this.ee) {
1360
+ this.dp("CheckboxTickColor", b, this.ee);
1044
1361
  }
1045
1362
  },
1046
1363
  enumerable: false,
1047
1364
  configurable: true
1048
1365
  });
1049
- Object.defineProperty(CheckboxList.prototype, "d0", {
1366
+ Object.defineProperty(CheckboxList.prototype, "er", {
1050
1367
  get: function () {
1051
- return this.dk;
1368
+ return this.ec;
1052
1369
  },
1053
1370
  set: function (a) {
1054
- var b = this.dk;
1055
- this.dk = a;
1056
- if (b != this.dk) {
1057
- this.c0("CheckboxCheckedBackgroundColor", b, this.dk);
1371
+ var b = this.ec;
1372
+ this.ec = a;
1373
+ if (b != this.ec) {
1374
+ this.dp("CheckboxCheckedBackgroundColor", b, this.ec);
1058
1375
  }
1059
1376
  },
1060
1377
  enumerable: false,
1061
1378
  configurable: true
1062
1379
  });
1063
- Object.defineProperty(CheckboxList.prototype, "d3", {
1380
+ Object.defineProperty(CheckboxList.prototype, "eu", {
1064
1381
  get: function () {
1065
- return this.dn;
1382
+ return this.ef;
1066
1383
  },
1067
1384
  set: function (a) {
1068
- var b = this.dn;
1069
- this.dn = a;
1070
- if (b != this.dn) {
1071
- this.c0("CheckboxUncheckedBackgroundColor", b, this.dn);
1385
+ var b = this.ef;
1386
+ this.ef = a;
1387
+ if (b != this.ef) {
1388
+ this.dp("CheckboxUncheckedBackgroundColor", b, this.ef);
1072
1389
  }
1073
1390
  },
1074
1391
  enumerable: false,
1075
1392
  configurable: true
1076
1393
  });
1077
- Object.defineProperty(CheckboxList.prototype, "d1", {
1394
+ Object.defineProperty(CheckboxList.prototype, "es", {
1078
1395
  get: function () {
1079
- return this.dl;
1396
+ return this.ed;
1080
1397
  },
1081
1398
  set: function (a) {
1082
- var b = this.dl;
1083
- this.dl = a;
1084
- if (b != this.dl) {
1085
- this.c0("CheckboxCheckedBorderColor", b, this.dl);
1399
+ var b = this.ed;
1400
+ this.ed = a;
1401
+ if (b != this.ed) {
1402
+ this.dp("CheckboxCheckedBorderColor", b, this.ed);
1086
1403
  }
1087
1404
  },
1088
1405
  enumerable: false,
1089
1406
  configurable: true
1090
1407
  });
1091
- Object.defineProperty(CheckboxList.prototype, "d4", {
1408
+ Object.defineProperty(CheckboxList.prototype, "ev", {
1092
1409
  get: function () {
1093
- return this.dp;
1410
+ return this.eg;
1094
1411
  },
1095
1412
  set: function (a) {
1096
- var b = this.dp;
1097
- this.dp = a;
1098
- if (b != this.dp) {
1099
- this.c0("CheckboxUncheckedBorderColor", b, this.dp);
1413
+ var b = this.eg;
1414
+ this.eg = a;
1415
+ if (b != this.eg) {
1416
+ this.dp("CheckboxUncheckedBorderColor", b, this.eg);
1100
1417
  }
1101
1418
  },
1102
1419
  enumerable: false,
1103
1420
  configurable: true
1104
1421
  });
1105
- Object.defineProperty(CheckboxList.prototype, "aa", {
1422
+ Object.defineProperty(CheckboxList.prototype, "a7", {
1106
1423
  get: function () {
1107
- return this.z;
1424
+ return this.a6;
1108
1425
  },
1109
1426
  set: function (a) {
1110
- var b = this.z;
1111
- this.z = a;
1112
- if (b != this.z) {
1113
- this.c0("ScrollbarStyle", enumGetBox(ScrollbarStyle_$type, b), enumGetBox(ScrollbarStyle_$type, this.z));
1427
+ var b = this.a6;
1428
+ this.a6 = a;
1429
+ if (b != this.a6) {
1430
+ this.dp("CheckboxCornerRadius", b, this.a6);
1431
+ }
1432
+ },
1433
+ enumerable: false,
1434
+ configurable: true
1435
+ });
1436
+ Object.defineProperty(CheckboxList.prototype, "ab", {
1437
+ get: function () {
1438
+ return this.aa;
1439
+ },
1440
+ set: function (a) {
1441
+ var b = this.aa;
1442
+ this.aa = a;
1443
+ if (b != this.aa) {
1444
+ this.dp("ScrollbarStyle", enumGetBox(ScrollbarStyle_$type, b), enumGetBox(ScrollbarStyle_$type, this.aa));
1114
1445
  }
1115
1446
  },
1116
1447
  enumerable: false,
1117
1448
  configurable: true
1118
1449
  });
1119
- Object.defineProperty(CheckboxList.prototype, "d9", {
1450
+ Object.defineProperty(CheckboxList.prototype, "e0", {
1120
1451
  get: function () {
1121
- return this.dr;
1452
+ return this.ei;
1122
1453
  },
1123
1454
  set: function (a) {
1124
- var b = this.dr;
1125
- this.dr = a;
1126
- if (b != this.dr) {
1127
- this.c0("ScrollbarBackground", b, this.dr);
1455
+ var b = this.ei;
1456
+ this.ei = a;
1457
+ if (b != this.ei) {
1458
+ this.dp("ScrollbarBackground", b, this.ei);
1128
1459
  }
1129
1460
  },
1130
1461
  enumerable: false,
1131
1462
  configurable: true
1132
1463
  });
1133
- CheckboxList.prototype.c0 = function (a, b, c) {
1464
+ CheckboxList.prototype.dp = function (a, b, c) {
1134
1465
  if (this.propertyChanged != null) {
1135
1466
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
1136
1467
  }
1137
- this.c6(a, b, c);
1468
+ this.dv(a, b, c);
1138
1469
  };
1139
- CheckboxList.prototype.c6 = function (a, b, c) {
1470
+ CheckboxList.prototype.dv = function (a, b, c) {
1140
1471
  switch (a) {
1141
1472
  case "IndexType":
1142
1473
  this.keys.clear();
1143
- this.co();
1474
+ this.db();
1144
1475
  if (this.keysCleared != null) {
1145
1476
  this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
1146
1477
  }
1147
- this.view.ag();
1148
- this.cw(b, c);
1478
+ this.view.al();
1479
+ this.dk(b, c);
1149
1480
  break;
1150
1481
  case "ItemsSource":
1151
1482
  if (this.f != null) {
@@ -1158,26 +1489,28 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1158
1489
  }
1159
1490
  if (this.f.actualDataSource != null) {
1160
1491
  var d = this.f.actualDataSource;
1161
- d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.c1));
1492
+ d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.dq));
1162
1493
  }
1163
- this.f.itemsSource = this.a4;
1164
- this.cf();
1494
+ this.f.itemsSource = this.bg;
1495
+ this.c2();
1165
1496
  if (this.f.actualDataSource != null) {
1166
1497
  var e = this.f.actualDataSource;
1167
- e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.c1));
1498
+ e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.dq));
1168
1499
  }
1169
- this.an = true;
1170
- this.c3();
1171
- this.an = false;
1172
- this.view.ag();
1500
+ this.ar = true;
1501
+ this.ds();
1502
+ this.ar = false;
1503
+ this.view.al();
1173
1504
  }
1174
1505
  break;
1175
1506
  case "DataMemberPath":
1176
1507
  case "SelectedMemberPath":
1508
+ case "SubtitleMemberPath":
1509
+ case "PropertyTypeMemberPath":
1177
1510
  if (this.f != null) {
1178
- if (this.a6 != null) {
1179
- this.c3();
1180
- this.dg();
1511
+ if (this.bj != null) {
1512
+ this.ds();
1513
+ this.d6();
1181
1514
  }
1182
1515
  }
1183
1516
  break;
@@ -1187,104 +1520,133 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1187
1520
  }
1188
1521
  break;
1189
1522
  case "SelectAllCaptionTextColor":
1190
- this.dy = null != this.ee ? this.ee : CheckboxList.d7;
1523
+ this.ep = null != this.e5 ? this.e5 : CheckboxList.ey;
1191
1524
  break;
1192
1525
  case "SelectAllCaption":
1193
1526
  case "ActualSelectAllCaptionTextColor":
1194
- this.view.af();
1527
+ this.view.ak();
1195
1528
  break;
1196
1529
  case "showSelectAll":
1197
- this.view.ai();
1198
- this.view.s();
1530
+ this.view.an();
1531
+ this.view.x();
1199
1532
  break;
1200
1533
  case "ShowFilter":
1201
- this.view.ae();
1202
- this.view.s();
1534
+ this.view.aj();
1535
+ this.view.x();
1203
1536
  break;
1204
1537
  case "FilterPlaceholderText":
1205
- if (this.s != null) {
1206
- this.s.cg = this.bm;
1538
+ if (this.t != null) {
1539
+ this.t.cg = this.b4;
1207
1540
  }
1208
1541
  break;
1209
1542
  case "SearchInputType":
1210
- if (this.u != null) {
1211
- this.u.d = this.x;
1543
+ if (this.v != null) {
1544
+ this.v.d = this.y;
1212
1545
  }
1213
1546
  break;
1214
1547
  case "RowHeight":
1215
1548
  if (this.f != null) {
1216
- this.f.rowHeight = this.a3;
1549
+ this.f.rowHeight = this.be;
1217
1550
  }
1218
1551
  break;
1219
1552
  case "CellTextStyle":
1220
1553
  if (this.f != null) {
1221
- this.f.cellTextStyle = this.ai;
1554
+ this.f.cellTextStyle = this.am;
1222
1555
  }
1223
- this.view.ac();
1556
+ this.view.ah();
1224
1557
  break;
1225
1558
  case "BackgroundColor":
1226
1559
  case "TextColor":
1227
1560
  case "RowHoverBackgroundColor":
1228
1561
  var f = this.f;
1229
1562
  if (null != f) {
1230
- f.cellTextColor = this.eg;
1563
+ f.cellTextColor = this.e7;
1231
1564
  f.cellBackground = this.backgroundColor;
1232
1565
  f.cellSelectedBackground = this.backgroundColor;
1233
1566
  f.rowHoverBackground = this.rowHoverBackgroundColor;
1234
1567
  }
1235
- this.view.ad();
1568
+ this.view.ai();
1236
1569
  break;
1237
1570
  case "BaseTheme":
1238
- this.df();
1571
+ this.d5();
1239
1572
  break;
1240
1573
  case "Density":
1241
- this.de();
1574
+ this.d4();
1242
1575
  break;
1243
1576
  case "IsRowHoverEnabled":
1244
1577
  if (this.f != null) {
1245
- this.f.isRowHoverEnabled = this.ar;
1578
+ this.f.isRowHoverEnabled = this.az;
1246
1579
  }
1247
1580
  break;
1248
1581
  case "ScrollbarStyle":
1249
1582
  if (this.f != null) {
1250
- this.f.scrollbarStyle = this.aa;
1583
+ this.f.scrollbarStyle = this.ab;
1251
1584
  }
1252
1585
  break;
1253
1586
  case "ScrollbarBackground":
1254
1587
  if (this.f != null) {
1255
- this.f.scrollbarBackground = this.d9;
1588
+ this.f.scrollbarBackground = this.e0;
1256
1589
  }
1257
1590
  break;
1258
1591
  case "SearchIconColor":
1259
- this.view.ab();
1592
+ this.view.ag();
1260
1593
  break;
1261
1594
  case "SearchBackgroundColor":
1262
- this.v.mc = this.ea;
1595
+ this.w.mc = this.e1;
1263
1596
  break;
1264
1597
  case "SearchBorderColor":
1265
- this.v.md = this.eb;
1598
+ this.w.md = this.e2;
1266
1599
  break;
1267
1600
  case "SearchTextColor":
1268
- if (this.t != null) {
1269
- this.t.d8 = this.searchTextColor;
1601
+ if (this.u != null) {
1602
+ this.u.d8 = this.searchTextColor;
1270
1603
  }
1271
1604
  break;
1272
1605
  case "SearchTextStyle":
1273
- this.t.af = this.aj;
1606
+ this.u.af = this.an;
1274
1607
  break;
1275
1608
  case "CheckboxTickColor":
1276
1609
  case "CheckboxCheckedBackgroundColor":
1277
1610
  case "CheckboxUncheckedBackgroundColor":
1278
1611
  case "CheckboxCheckedBorderColor":
1279
1612
  case "CheckboxUncheckedBorderColor":
1280
- this.view.y();
1613
+ case "CheckboxCornerRadius":
1614
+ this.view.ad();
1615
+ if (this.f != null) {
1616
+ this.f.xq();
1617
+ }
1618
+ break;
1619
+ case "CheckboxAlignedRight":
1620
+ if (this.f != null) {
1621
+ this.d8();
1622
+ }
1623
+ break;
1624
+ case "DataLegendTarget":
1281
1625
  if (this.f != null) {
1282
1626
  this.f.xq();
1283
1627
  }
1284
1628
  break;
1285
1629
  }
1286
1630
  };
1287
- CheckboxList.prototype.cw = function (a, b) {
1631
+ CheckboxList.prototype.d8 = function () {
1632
+ if (this.f.actualColumns.count == 0) {
1633
+ return;
1634
+ }
1635
+ var a = this.f.actualColumns._inner[0];
1636
+ var b = this.f.actualColumns._inner[1];
1637
+ var c = this.f.actualColumns._inner[2];
1638
+ this.f.actualColumns.clear();
1639
+ if (this.av) {
1640
+ this.f.columns.add(b);
1641
+ this.f.columns.add(a);
1642
+ }
1643
+ else {
1644
+ this.f.columns.add(a);
1645
+ this.f.columns.add(b);
1646
+ }
1647
+ this.f.columns.add(c);
1648
+ };
1649
+ CheckboxList.prototype.dk = function (a, b) {
1288
1650
  if (this.indexTypeChanged != null) {
1289
1651
  this.indexTypeChanged(this, ((function () {
1290
1652
  var $ret = new CheckboxListIndexTypeChangedEventArgs();
@@ -1294,79 +1656,100 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1294
1656
  })()));
1295
1657
  }
1296
1658
  };
1297
- CheckboxList.prototype.de = function () {
1659
+ CheckboxList.prototype.d4 = function () {
1298
1660
  if (this.f != null) {
1299
1661
  this.f.density = this.density;
1300
1662
  }
1301
- if (this.u != null) {
1302
- this.u.t = this.density;
1663
+ if (this.v != null) {
1664
+ this.v.t = this.density;
1303
1665
  }
1304
- this.view.x();
1666
+ this.view.ac();
1305
1667
  };
1306
- CheckboxList.prototype.df = function () {
1307
- if (this.u != null) {
1308
- this.u.p = this.baseTheme;
1668
+ CheckboxList.prototype.d5 = function () {
1669
+ if (this.v != null) {
1670
+ this.v.p = this.baseTheme;
1309
1671
  }
1310
- if (this.t != null) {
1311
- this.t.d8 = this.searchTextColor;
1672
+ if (this.u != null) {
1673
+ this.u.d8 = this.searchTextColor;
1312
1674
  }
1313
1675
  if (this.f != null) {
1314
- this.f.cellTextColor = this.eg;
1676
+ this.f.cellTextColor = this.e7;
1315
1677
  this.f.cellBackground = this.backgroundColor;
1316
1678
  this.f.cellSelectedBackground = this.backgroundColor;
1317
1679
  this.f.rowHoverBackground = this.rowHoverBackgroundColor;
1318
1680
  }
1319
- this.view.z();
1681
+ this.view.ae();
1320
1682
  };
1321
- CheckboxList.prototype.c1 = function (a, b) {
1322
- this.an = true;
1323
- this.cf();
1683
+ CheckboxList.prototype.dq = function (a, b) {
1684
+ this.ar = true;
1685
+ this.c2();
1324
1686
  if (b.schema != null) {
1325
- this.c3();
1687
+ this.ds();
1326
1688
  for (var c = 0; c < this.keys.count; c++) {
1327
- this.cy(this.keys._inner[c]);
1689
+ this.dm(this.keys._inner[c]);
1328
1690
  }
1329
- this.view.ag();
1691
+ this.view.al();
1330
1692
  }
1331
- this.an = false;
1693
+ this.ar = false;
1332
1694
  };
1333
- CheckboxList.prototype.c3 = function () {
1334
- if (this.af == null && this.a8 != null && this.a8 != "") {
1335
- this.af = new FastReflectionHelper(false, this.a8);
1695
+ CheckboxList.prototype.ds = function () {
1696
+ if (this.ai == null && this.bm != null && this.bm != "") {
1697
+ this.ai = new FastReflectionHelper(false, this.bm);
1336
1698
  }
1337
- if (this.a4 != null && this.af != null && this.f.actualDataSource.actualSchema != null) {
1338
- this.af.propertyName = this.a8;
1699
+ if (this.ag == null && this.bj != null && this.bj != "") {
1700
+ this.ag = new FastReflectionHelper(false, this.bj);
1701
+ }
1702
+ if (this.aj == null && this.bn != null && this.bn != "") {
1703
+ this.aj = new FastReflectionHelper(false, this.bn);
1704
+ }
1705
+ if (this.ah == null && this.bl != null && this.bl != "") {
1706
+ this.ah = new FastReflectionHelper(false, this.bl);
1707
+ }
1708
+ if (this.ag != null) {
1709
+ this.ag.propertyName = this.bj;
1710
+ }
1711
+ if (this.aj != null) {
1712
+ this.aj.propertyName = this.bn;
1713
+ }
1714
+ if (this.ah != null) {
1715
+ this.ah.propertyName = this.bl;
1716
+ }
1717
+ if (this.bg != null && this.ai != null && this.f.actualDataSource.actualSchema != null) {
1718
+ this.ai.propertyName = this.bm;
1339
1719
  var a = this.f.actualDataSource.actualCount;
1340
1720
  for (var b = 0; b < a; b++) {
1341
1721
  var c = this.f.actualDataSource.getItemAtIndex(b);
1342
- var d = this.af.getPropertyValue(c);
1343
- if (d == true) {
1344
- var e = this.i(c);
1345
- if (!this.keys.contains(e)) {
1346
- this.keys.add(e);
1722
+ var d = this.i(c);
1723
+ var e = this.ai.getPropertyValue(c);
1724
+ if (e == true) {
1725
+ if (!this.keys.contains(d)) {
1726
+ this.keys.add(d);
1347
1727
  }
1348
1728
  }
1729
+ else if (this.keys.contains(d)) {
1730
+ this.keys.remove(d);
1731
+ }
1349
1732
  }
1350
1733
  }
1351
1734
  };
1352
- CheckboxList.prototype.dg = function () {
1735
+ CheckboxList.prototype.d6 = function () {
1353
1736
  this.f.actualColumns.clear();
1354
1737
  this.f.primaryKey = this.primaryKey;
1355
1738
  this.f.isGroupRowSticky = false;
1356
- this.f.rowHeight = this.a3;
1739
+ this.f.rowHeight = this.be;
1357
1740
  this.f.cellBackground = this.backgroundColor;
1358
1741
  this.f.cellSelectedBackground = this.backgroundColor;
1359
1742
  this.f.density = this.density;
1360
- this.f.isRowHoverEnabled = this.ar;
1743
+ this.f.isRowHoverEnabled = this.az;
1361
1744
  this.f.borderWidth = new Thickness(0, 0);
1362
- if (this.ai != null) {
1363
- this.f.cellTextStyle = this.ai;
1745
+ if (this.am != null) {
1746
+ this.f.cellTextStyle = this.am;
1364
1747
  }
1365
1748
  var a = new TemplateColumn();
1366
- if (this.a8 == null) {
1367
- this.a8 = "";
1749
+ if (this.bm == null) {
1750
+ this.bm = "";
1368
1751
  }
1369
- a.lo = this.a8;
1752
+ a.lo = this.bm;
1370
1753
  a.mf = "CheckboxColumn";
1371
1754
  var b = new ColumnWidth();
1372
1755
  b.c = false;
@@ -1374,52 +1757,72 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1374
1757
  a.width = b;
1375
1758
  a.kk = 0;
1376
1759
  a.kl = 0;
1377
- a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.cg));
1378
- this.f.columns.add(a);
1760
+ a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.c3));
1379
1761
  this.j = a;
1380
- var c = this.f.actualDataSource.resolveSchemaPropertyType(this.a6);
1381
- var d;
1382
- switch (c) {
1383
- case 8:
1384
- case 9:
1385
- d = new DateTimeColumn();
1386
- break;
1387
- case 1:
1388
- case 3:
1389
- case 4:
1390
- case 5:
1391
- case 6:
1392
- case 7:
1393
- case 10:
1394
- d = new NumericColumn();
1395
- break;
1396
- case 2:
1397
- case 11:
1398
- case 0:
1399
- default:
1400
- d = new TextColumn();
1401
- break;
1762
+ this.f.columns.add(a);
1763
+ var c = this.f.actualDataSource.resolveSchemaPropertyType(this.bj);
1764
+ if ((this.bn != null || this.bl != null) && (c == 0 || c == 11 || c == 2)) {
1765
+ var d = new TemplateColumn();
1766
+ d.lo = this.bj;
1767
+ d.mf = "DataColumn";
1768
+ d.kk = 0;
1769
+ d.g = 0;
1770
+ d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.d7));
1771
+ this.f.columns.add(d);
1402
1772
  }
1403
- d.lo = this.a6;
1404
- d.mf = "DataColumn";
1405
- d.kk = 0;
1406
- d.g = 0;
1407
- this.f.columns.add(d);
1773
+ else {
1774
+ var e = void 0;
1775
+ switch (c) {
1776
+ case 8:
1777
+ case 9:
1778
+ e = new DateTimeColumn();
1779
+ break;
1780
+ case 1:
1781
+ case 3:
1782
+ case 4:
1783
+ case 5:
1784
+ case 6:
1785
+ case 7:
1786
+ case 10:
1787
+ e = new NumericColumn();
1788
+ break;
1789
+ case 2:
1790
+ case 11:
1791
+ case 0:
1792
+ default:
1793
+ e = new TextColumn();
1794
+ break;
1795
+ }
1796
+ e.lo = this.bj;
1797
+ e.mf = "DataColumn";
1798
+ e.kk = 0;
1799
+ e.g = 0;
1800
+ this.f.columns.add(e);
1801
+ }
1802
+ var f = new TemplateColumn();
1803
+ var g = new ColumnWidth();
1804
+ g.c = false;
1805
+ g.f = 10;
1806
+ f.lo = "PaddingColumn";
1807
+ f.mf = "PaddingColumn";
1808
+ f.kk = 0;
1809
+ f.width = g;
1810
+ this.f.columns.add(f);
1408
1811
  };
1409
1812
  CheckboxList.prototype.updateHrMargin = function (a) {
1410
- this.view.aa(a);
1813
+ this.view.af(a);
1411
1814
  };
1412
1815
  CheckboxList.prototype.provideHrElement = function (a) {
1413
- this.view.p(a);
1816
+ this.view.t(a);
1414
1817
  };
1415
- CheckboxList.prototype.cx = function () {
1416
- var a = this.t;
1417
- a.changing = delegateCombine(a.changing, runOn(this, this.cm));
1418
- this.df();
1818
+ CheckboxList.prototype.dl = function () {
1819
+ var a = this.u;
1820
+ a.changing = delegateCombine(a.changing, runOn(this, this.c9));
1821
+ this.d5();
1419
1822
  };
1420
- CheckboxList.prototype.cm = function (a, b) {
1823
+ CheckboxList.prototype.c9 = function (a, b) {
1421
1824
  var c = b.value.toLowerCase();
1422
- this.cv(c);
1825
+ this.dj(c);
1423
1826
  };
1424
1827
  CheckboxList.prototype.i = function (a) {
1425
1828
  if (this.primaryKey == null) {
@@ -1433,70 +1836,81 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1433
1836
  }
1434
1837
  return new PrimaryKeyValue(b, c);
1435
1838
  };
1436
- CheckboxList.prototype.da = function (a) {
1437
- this.am = true;
1839
+ CheckboxList.prototype.d0 = function (a) {
1840
+ this.aq = true;
1438
1841
  var b = this.e.getItemAtIndex(a);
1439
- if (this.af != null) {
1440
- this.af.setPropertyValue(b, false);
1842
+ if (this.ai != null) {
1843
+ this.ai.setPropertyValue(b, false);
1441
1844
  }
1442
1845
  var c = this.i(b);
1443
1846
  this.keys.remove(c);
1444
- this.am = false;
1847
+ this.aq = false;
1445
1848
  };
1446
- CheckboxList.prototype.cc = function (a) {
1447
- this.am = true;
1849
+ CheckboxList.prototype.cz = function (a) {
1850
+ this.aq = true;
1448
1851
  var b = this.e.getItemAtIndex(a);
1449
- if (this.af != null) {
1450
- this.af.setPropertyValue(b, true);
1852
+ if (this.ai != null) {
1853
+ this.ai.setPropertyValue(b, true);
1451
1854
  }
1452
1855
  var c = this.i(b);
1453
1856
  this.keys.add(c);
1454
- this.am = false;
1857
+ this.aq = false;
1455
1858
  };
1456
- CheckboxList.prototype.dd = function () {
1859
+ CheckboxList.prototype.d3 = function () {
1457
1860
  this.indexType = 0;
1458
1861
  this.keys.clear();
1459
- this.co();
1862
+ this.db();
1460
1863
  if (this.keysCleared != null) {
1461
1864
  this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
1462
1865
  }
1463
1866
  };
1464
- CheckboxList.prototype.ci = function () {
1867
+ CheckboxList.prototype.c5 = function () {
1465
1868
  this.indexType = 1;
1466
1869
  this.keys.clear();
1467
- this.co();
1870
+ this.db();
1468
1871
  if (this.keysCleared != null) {
1469
1872
  this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
1470
1873
  }
1471
1874
  };
1472
- CheckboxList.prototype.cs = function (a, b, c) {
1875
+ CheckboxList.prototype.dg = function (a, b, c) {
1473
1876
  if (this.f != null) {
1474
1877
  this.f.notifySetItem(a, b, c);
1475
1878
  }
1476
1879
  };
1477
- CheckboxList.prototype.cp = function () {
1880
+ CheckboxList.prototype.dc = function () {
1478
1881
  if (this.f != null) {
1479
1882
  this.f.notifyClearItems();
1480
1883
  }
1481
1884
  };
1482
- CheckboxList.prototype.co = function () {
1885
+ CheckboxList.prototype.db = function () {
1483
1886
  if (this.f != null) {
1484
1887
  this.f.invalidateVisibleRows();
1485
1888
  }
1486
1889
  };
1487
- CheckboxList.prototype.cq = function (a, b) {
1890
+ CheckboxList.prototype.dd = function (a, b) {
1488
1891
  if (this.f != null) {
1489
1892
  this.f.notifyInsertItem(a, b);
1490
1893
  }
1491
1894
  ;
1492
1895
  };
1493
- CheckboxList.prototype.cr = function (a, b) {
1896
+ CheckboxList.prototype.df = function (a, b) {
1494
1897
  if (this.f != null) {
1495
1898
  this.f.notifyRemoveItem(a, b);
1496
1899
  }
1497
1900
  ;
1498
1901
  };
1499
- CheckboxList.prototype.cd = function (a) {
1902
+ CheckboxList.prototype.refresh = function () {
1903
+ if (this.as) {
1904
+ return;
1905
+ }
1906
+ if (this.f != null) {
1907
+ this.as = true;
1908
+ this.view.v();
1909
+ this.f.refresh();
1910
+ this.as = false;
1911
+ }
1912
+ };
1913
+ CheckboxList.prototype.c0 = function (a) {
1500
1914
  var b = null;
1501
1915
  if (this.primaryKey == null || this.primaryKey.length == 0) {
1502
1916
  b = new PrimaryKeyValue(null, a);
@@ -1508,15 +1922,15 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1508
1922
  throw new ArgumentException(1, "value length must match PrimaryKey length");
1509
1923
  }
1510
1924
  if (b != null) {
1511
- if (this.af != null) {
1925
+ if (this.ai != null) {
1512
1926
  var c = this.e.indexOfKey(a);
1513
1927
  var d = this.e.getItemAtIndex(c);
1514
- this.af.setPropertyValue(d, true);
1928
+ this.ai.setPropertyValue(d, true);
1515
1929
  }
1516
1930
  this.keys.add(b);
1517
1931
  }
1518
1932
  };
1519
- CheckboxList.prototype.db = function (a) {
1933
+ CheckboxList.prototype.d1 = function (a) {
1520
1934
  var b = null;
1521
1935
  if (this.primaryKey == null || this.primaryKey.length == 0) {
1522
1936
  b = new PrimaryKeyValue(null, a);
@@ -1528,10 +1942,10 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1528
1942
  throw new ArgumentException(1, "value length must match PrimaryKey length");
1529
1943
  }
1530
1944
  if (this.keys.contains(b)) {
1531
- if (this.af != null) {
1945
+ if (this.ai != null) {
1532
1946
  var c = this.e.indexOfKey(a);
1533
1947
  var d = this.e.getItemAtIndex(c);
1534
- this.af.setPropertyValue(d, false);
1948
+ this.ai.setPropertyValue(d, false);
1535
1949
  }
1536
1950
  this.keys.remove(b);
1537
1951
  }
@@ -1539,13 +1953,13 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1539
1953
  CheckboxList.prototype.getDesiredSize = function (a) {
1540
1954
  var b = 248;
1541
1955
  var c = 0;
1542
- var d = this.ay();
1956
+ var d = this.a9();
1543
1957
  var e = 5;
1544
1958
  if (this.f != null && this.f.actualDataSource != null && this.f.actualDataSource.actualCount > 0) {
1545
1959
  e = this.f.actualDataSource.actualCount;
1546
1960
  }
1547
- var f = this.a1 * e;
1548
- var g = this.a1 * (this.showSelectAll ? 4 : 5);
1961
+ var f = this.bc * e;
1962
+ var g = this.bc * (this.showSelectAll ? 4 : 5);
1549
1963
  var h = f > g ? g : f;
1550
1964
  var i = d + h;
1551
1965
  if (isPositiveInfinity(a.height)) {
@@ -1562,71 +1976,71 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1562
1976
  }
1563
1977
  return new Size(1, b, c);
1564
1978
  };
1565
- CheckboxList.prototype.ay = function () {
1979
+ CheckboxList.prototype.a9 = function () {
1566
1980
  var a = 0;
1567
1981
  a += ComponentSizeHelpers.d(this.density, this.baseTheme);
1568
1982
  a += ComponentSizeHelpers.c(this.density, this.baseTheme);
1569
1983
  a += (0.8 + 6);
1570
1984
  a += 4;
1571
1985
  if (this.showSelectAll) {
1572
- a += this.a1;
1986
+ a += this.bc;
1573
1987
  }
1574
1988
  a += 4;
1575
1989
  return a;
1576
1990
  };
1577
- Object.defineProperty(CheckboxList.prototype, "b4", {
1991
+ Object.defineProperty(CheckboxList.prototype, "cp", {
1578
1992
  get: function () {
1579
- return this.b3 != null ? this.b3 : !stringIsNullOrWhiteSpace(this.al.b1("Select_All")) ? this.al.b1("Select_All") : "(Select All)";
1993
+ return this.co != null ? this.co : !stringIsNullOrWhiteSpace(this.ap.b1("Select_All")) ? this.ap.b1("Select_All") : "(Select All)";
1580
1994
  },
1581
1995
  set: function (a) {
1582
- if (a == this.b3) {
1996
+ if (a == this.co) {
1583
1997
  return;
1584
1998
  }
1585
- var b = this.b3;
1586
- this.b3 = a;
1587
- this.c0("SelectAllCaption", b, this.b3);
1999
+ var b = this.co;
2000
+ this.co = a;
2001
+ this.dp("SelectAllCaption", b, this.co);
1588
2002
  },
1589
2003
  enumerable: false,
1590
2004
  configurable: true
1591
2005
  });
1592
- Object.defineProperty(CheckboxList.prototype, "ee", {
2006
+ Object.defineProperty(CheckboxList.prototype, "e5", {
1593
2007
  get: function () {
1594
- return this.dw;
2008
+ return this.en;
1595
2009
  },
1596
2010
  set: function (a) {
1597
- var b = this.dw;
1598
- this.dw = a;
1599
- if (b != this.dw) {
1600
- this.c0("SelectAllCaptionTextColor", b, a);
2011
+ var b = this.en;
2012
+ this.en = a;
2013
+ if (b != this.en) {
2014
+ this.dp("SelectAllCaptionTextColor", b, a);
1601
2015
  }
1602
2016
  },
1603
2017
  enumerable: false,
1604
2018
  configurable: true
1605
2019
  });
1606
- Object.defineProperty(CheckboxList.prototype, "dy", {
2020
+ Object.defineProperty(CheckboxList.prototype, "ep", {
1607
2021
  get: function () {
1608
- return this.di;
2022
+ return this.ea;
1609
2023
  },
1610
2024
  set: function (a) {
1611
- var b = this.di;
1612
- this.di = a;
1613
- if (b != this.di) {
1614
- this.c0("ActualSelectAllCaptionTextColor", b, a);
2025
+ var b = this.ea;
2026
+ this.ea = a;
2027
+ if (b != this.ea) {
2028
+ this.dp("ActualSelectAllCaptionTextColor", b, a);
1615
2029
  }
1616
2030
  },
1617
2031
  enumerable: false,
1618
2032
  configurable: true
1619
2033
  });
1620
- Object.defineProperty(CheckboxList.prototype, "as", {
2034
+ Object.defineProperty(CheckboxList.prototype, "a0", {
1621
2035
  get: function () {
1622
- if (-1 == this.a2) {
2036
+ if (-1 == this.bd) {
1623
2037
  return false;
1624
2038
  }
1625
2039
  var a = this.keys.count;
1626
2040
  if (0 == a) {
1627
2041
  return false;
1628
2042
  }
1629
- if (a == this.a2) {
2043
+ if (a == this.bd) {
1630
2044
  return false;
1631
2045
  }
1632
2046
  return true;
@@ -1636,28 +2050,28 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1636
2050
  });
1637
2051
  Object.defineProperty(CheckboxList.prototype, "showSelectAll", {
1638
2052
  get: function () {
1639
- return this.av;
2053
+ return this.a4;
1640
2054
  },
1641
2055
  set: function (a) {
1642
- if (a == this.av) {
2056
+ if (a == this.a4) {
1643
2057
  return;
1644
2058
  }
1645
- var b = this.av;
1646
- this.av = a;
1647
- this.c0("showSelectAll", b, this.av);
2059
+ var b = this.a4;
2060
+ this.a4 = a;
2061
+ this.dp("showSelectAll", b, this.a4);
1648
2062
  },
1649
2063
  enumerable: false,
1650
2064
  configurable: true
1651
2065
  });
1652
2066
  Object.defineProperty(CheckboxList.prototype, "backgroundColor", {
1653
2067
  get: function () {
1654
- return this.dj;
2068
+ return this.eb;
1655
2069
  },
1656
2070
  set: function (a) {
1657
- var b = this.dj;
1658
- this.dj = a;
1659
- if (b != this.dj) {
1660
- this.c0("BackgroundColor", b, a);
2071
+ var b = this.eb;
2072
+ this.eb = a;
2073
+ if (b != this.eb) {
2074
+ this.dp("BackgroundColor", b, a);
1661
2075
  }
1662
2076
  },
1663
2077
  enumerable: false,
@@ -1665,33 +2079,33 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1665
2079
  });
1666
2080
  Object.defineProperty(CheckboxList.prototype, "rowHoverBackgroundColor", {
1667
2081
  get: function () {
1668
- return this.dq;
2082
+ return this.eh;
1669
2083
  },
1670
2084
  set: function (a) {
1671
- var b = this.dq;
1672
- this.dq = a;
1673
- if (b != this.dq) {
1674
- this.c0("RowHoverBackgroundColor", b, a);
2085
+ var b = this.eh;
2086
+ this.eh = a;
2087
+ if (b != this.eh) {
2088
+ this.dp("RowHoverBackgroundColor", b, a);
1675
2089
  }
1676
2090
  },
1677
2091
  enumerable: false,
1678
2092
  configurable: true
1679
2093
  });
1680
- Object.defineProperty(CheckboxList.prototype, "eg", {
2094
+ Object.defineProperty(CheckboxList.prototype, "e7", {
1681
2095
  get: function () {
1682
- return this.dx;
2096
+ return this.eo;
1683
2097
  },
1684
2098
  set: function (a) {
1685
- var b = this.dx;
1686
- this.dx = a;
1687
- if (b != this.dx) {
1688
- this.c0("TextColor", b, a);
2099
+ var b = this.eo;
2100
+ this.eo = a;
2101
+ if (b != this.eo) {
2102
+ this.dp("TextColor", b, a);
1689
2103
  }
1690
2104
  },
1691
2105
  enumerable: false,
1692
2106
  configurable: true
1693
2107
  });
1694
- CheckboxList.prototype.c2 = function (a) {
2108
+ CheckboxList.prototype.dr = function (a) {
1695
2109
  if (this.selectAllCheckboxChanged != null) {
1696
2110
  this.selectAllCheckboxChanged(this, ((function () {
1697
2111
  var $ret = new SelectAllCheckboxChangedEventArgs();
@@ -1700,78 +2114,93 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1700
2114
  })()));
1701
2115
  }
1702
2116
  };
1703
- CheckboxList.prototype.ap = function () {
1704
- if (-1 == this.a2) {
2117
+ CheckboxList.prototype.ax = function () {
2118
+ if (-1 == this.bd) {
1705
2119
  return true;
1706
2120
  }
1707
2121
  var a = this.keys.count;
1708
2122
  switch (this.indexType) {
1709
- case 0: return this.a2 == a;
2123
+ case 0: return this.bd == a;
1710
2124
  case 1: return 0 == a;
1711
2125
  default: return false;
1712
2126
  }
1713
2127
  };
1714
- CheckboxList.prototype.ao = function () {
1715
- if (-1 == this.a2) {
2128
+ CheckboxList.prototype.aw = function () {
2129
+ if (-1 == this.bd) {
1716
2130
  return false;
1717
2131
  }
1718
2132
  var a = this.keys.count;
1719
2133
  switch (this.indexType) {
1720
2134
  case 0: return 0 == a;
1721
- case 1: return this.a2 == a;
2135
+ case 1: return this.bd == a;
1722
2136
  default: return false;
1723
2137
  }
1724
2138
  };
1725
- CheckboxList.prototype.cf = function () {
2139
+ CheckboxList.prototype.c2 = function () {
1726
2140
  var a = this.f.actualDataSource;
1727
2141
  if (null != a) {
1728
2142
  if (null == a.actualSchema) {
1729
- this.a2 = -1;
2143
+ this.bd = -1;
1730
2144
  return;
1731
2145
  }
1732
2146
  var b = a.actualCount;
1733
- this.a2 = b;
2147
+ this.bd = b;
1734
2148
  }
1735
2149
  else {
1736
- this.a2 = -1;
2150
+ this.bd = -1;
1737
2151
  }
1738
2152
  };
1739
- Object.defineProperty(CheckboxList.prototype, "au", {
2153
+ Object.defineProperty(CheckboxList.prototype, "a3", {
1740
2154
  get: function () {
1741
- return this.at;
2155
+ return this.a2;
1742
2156
  },
1743
2157
  set: function (a) {
1744
- if (a == this.at) {
2158
+ if (a == this.a2) {
1745
2159
  return;
1746
2160
  }
1747
- var b = this.at;
1748
- this.at = a;
1749
- this.c0("ShowFilter", b, this.at);
2161
+ var b = this.a2;
2162
+ this.a2 = a;
2163
+ this.dp("ShowFilter", b, this.a2);
2164
+ },
2165
+ enumerable: false,
2166
+ configurable: true
2167
+ });
2168
+ Object.defineProperty(CheckboxList.prototype, "az", {
2169
+ get: function () {
2170
+ return this.ay;
2171
+ },
2172
+ set: function (a) {
2173
+ if (a == this.ay) {
2174
+ return;
2175
+ }
2176
+ var b = this.ay;
2177
+ this.ay = a;
2178
+ this.dp("IsRowHoverEnabled", b, this.ay);
1750
2179
  },
1751
2180
  enumerable: false,
1752
2181
  configurable: true
1753
2182
  });
1754
- Object.defineProperty(CheckboxList.prototype, "ar", {
2183
+ Object.defineProperty(CheckboxList.prototype, "av", {
1755
2184
  get: function () {
1756
- return this.aq;
2185
+ return this.au;
1757
2186
  },
1758
2187
  set: function (a) {
1759
- if (a == this.aq) {
2188
+ if (a == this.au) {
1760
2189
  return;
1761
2190
  }
1762
- var b = this.aq;
1763
- this.aq = a;
1764
- this.c0("IsRowHoverEnabled", b, this.aq);
2191
+ var b = this.au;
2192
+ this.au = a;
2193
+ this.dp("CheckboxAlignedRight", b, this.au);
1765
2194
  },
1766
2195
  enumerable: false,
1767
2196
  configurable: true
1768
2197
  });
1769
2198
  CheckboxList.$t = markType(CheckboxList, 'CheckboxList', Base.$, [INotifyPropertyChanged_$type]);
1770
- CheckboxList.ef = BrushUtil.h(255, 24, 29, 31);
1771
- CheckboxList.b0 = "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z";
1772
- CheckboxList.d5 = BrushUtil.h(255, 248, 248, 248);
1773
- CheckboxList.d6 = null;
1774
- CheckboxList.d7 = BrushUtil.h(255, 24, 29, 31);
2199
+ CheckboxList.e6 = BrushUtil.h(255, 24, 29, 31);
2200
+ CheckboxList.cl = "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z";
2201
+ CheckboxList.ew = BrushUtil.h(255, 248, 248, 248);
2202
+ CheckboxList.ex = null;
2203
+ CheckboxList.ey = BrushUtil.h(255, 24, 29, 31);
1775
2204
  return CheckboxList;
1776
2205
  }(Base));
1777
2206
  export { CheckboxList };