igniteui-webcomponents-data-grids 6.2.2-alpha.2 → 6.3.0-beta.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 (192) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +5786 -5636
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +1 -1
  4. package/esm2015/lib/CanvasCellPresenterBase.js +9 -9
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +9 -9
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  7. package/esm2015/lib/CanvasGridCellBase.js +7 -7
  8. package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +3 -3
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +3 -3
  15. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  17. package/esm2015/lib/CellPresenterBase.js +40 -37
  18. package/esm2015/lib/CheckboxListBridge.js +4 -0
  19. package/esm2015/lib/CheckboxListView_combined.js +778 -743
  20. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  21. package/esm2015/lib/ColumnFilterCondition_combined.js +2894 -2867
  22. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  23. package/esm2015/lib/ColumnPinningView_combined.js +7 -7
  24. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  25. package/esm2015/lib/ContentCellModelHelper.js +13 -13
  26. package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
  27. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  28. package/esm2015/lib/EditorCell.js +303 -303
  29. package/esm2015/lib/EditorCellPresenter.js +27 -27
  30. package/esm2015/lib/EditorRowCell.js +1 -1
  31. package/esm2015/lib/FilterCell.js +272 -272
  32. package/esm2015/lib/FilterCellPresenter.js +16 -16
  33. package/esm2015/lib/GridCellBase.js +356 -337
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +9 -9
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +4 -4
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  38. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  39. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  40. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +6 -6
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  43. package/esm2015/lib/GridSortIndicatorView_combined.js +15 -8
  44. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  45. package/esm2015/lib/ImageCell.js +59 -59
  46. package/esm2015/lib/ImageCellPresenter.js +17 -17
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +2 -2
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  51. package/esm2015/lib/SectionHeaderCell.js +15 -15
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SortIndicatorStyle.js +6 -2
  54. package/esm2015/lib/SummaryCell.js +40 -40
  55. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  56. package/esm2015/lib/TemplateCell.js +15 -15
  57. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  58. package/esm2015/lib/TemplateHeader.js +2 -2
  59. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  60. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  61. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  62. package/esm2015/lib/TextCell.js +32 -32
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +153 -153
  65. package/esm2015/lib/TextHeaderCellPresenter.js +25 -25
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +164 -155
  68. package/esm2015/lib/igc-checkbox-list-component.js +103 -87
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +114 -104
  71. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  72. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  73. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  74. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  75. package/esm2015/lib/igc-image-cell-info.js +6 -6
  76. package/esm2015/lib/igc-image-column-component.js +12 -12
  77. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  80. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  81. package/esm2015/lib/igc-template-cell-info.js +2 -2
  82. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  83. package/esm2015/lib/igc-text-cell-info.js +2 -2
  84. package/esm2015/lib/igc-text-column-component.js +9 -9
  85. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  86. package/esm5/lib/AccessibilityRow.js +1 -1
  87. package/esm5/lib/CanvasCellPresenterBase.js +9 -9
  88. package/esm5/lib/CanvasContentCellModelHelper.js +9 -9
  89. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  90. package/esm5/lib/CanvasGridCellBase.js +7 -7
  91. package/esm5/lib/CanvasImageCellPresenter.js +9 -9
  92. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  93. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  94. package/esm5/lib/CanvasSummaryCell.js +1 -1
  95. package/esm5/lib/CanvasSummaryCellPresenter.js +3 -3
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  97. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +3 -3
  98. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  99. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  100. package/esm5/lib/CellPresenterBase.js +40 -37
  101. package/esm5/lib/CheckboxListBridge.js +4 -0
  102. package/esm5/lib/CheckboxListView_combined.js +760 -725
  103. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  104. package/esm5/lib/ColumnFilterCondition_combined.js +2735 -2700
  105. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  106. package/esm5/lib/ColumnPinningView_combined.js +7 -7
  107. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  108. package/esm5/lib/ContentCellModelHelper.js +13 -13
  109. package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
  110. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  111. package/esm5/lib/EditorCell.js +285 -285
  112. package/esm5/lib/EditorCellPresenter.js +27 -27
  113. package/esm5/lib/EditorRowCell.js +1 -1
  114. package/esm5/lib/FilterCell.js +262 -262
  115. package/esm5/lib/FilterCellPresenter.js +16 -16
  116. package/esm5/lib/GridCellBase.js +349 -326
  117. package/esm5/lib/GridColumnFilterOptionsView_combined.js +9 -9
  118. package/esm5/lib/GridColumnGroupOptionsView_combined.js +4 -4
  119. package/esm5/lib/GridColumnHideOptionsView_combined.js +1 -1
  120. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  121. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  122. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  123. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridExternalWrapper.js +6 -6
  125. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  126. package/esm5/lib/GridSortIndicatorView_combined.js +15 -10
  127. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  128. package/esm5/lib/ImageCell.js +59 -59
  129. package/esm5/lib/ImageCellPresenter.js +17 -17
  130. package/esm5/lib/MultiColumnComboBoxView_combined.js +2 -2
  131. package/esm5/lib/NumericCell.js +8 -8
  132. package/esm5/lib/NumericCellPresenter.js +9 -9
  133. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  134. package/esm5/lib/SectionHeaderCell.js +15 -15
  135. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  136. package/esm5/lib/SortIndicatorStyle.js +6 -2
  137. package/esm5/lib/SummaryCell.js +40 -40
  138. package/esm5/lib/SummaryCellPresenter.js +10 -10
  139. package/esm5/lib/TemplateCell.js +15 -15
  140. package/esm5/lib/TemplateCellPresenter.js +5 -5
  141. package/esm5/lib/TemplateHeader.js +2 -2
  142. package/esm5/lib/TemplateHeaderCell.js +5 -5
  143. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  144. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  145. package/esm5/lib/TextCell.js +32 -32
  146. package/esm5/lib/TextCellPresenter.js +10 -10
  147. package/esm5/lib/TextHeaderCell.js +151 -151
  148. package/esm5/lib/TextHeaderCellPresenter.js +25 -25
  149. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  150. package/esm5/lib/igc-cell-info.js +168 -155
  151. package/esm5/lib/igc-checkbox-list-component.js +103 -87
  152. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  153. package/esm5/lib/igc-data-grid-column-component.js +118 -104
  154. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  155. package/esm5/lib/igc-date-time-column-component.js +23 -23
  156. package/esm5/lib/igc-editor-cell-info.js +23 -23
  157. package/esm5/lib/igc-filter-cell-info.js +26 -26
  158. package/esm5/lib/igc-image-cell-info.js +6 -6
  159. package/esm5/lib/igc-image-column-component.js +12 -12
  160. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  161. package/esm5/lib/igc-numeric-column-component.js +35 -35
  162. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  163. package/esm5/lib/igc-summary-cell-info.js +9 -9
  164. package/esm5/lib/igc-template-cell-info.js +2 -2
  165. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  166. package/esm5/lib/igc-text-cell-info.js +2 -2
  167. package/esm5/lib/igc-text-column-component.js +9 -9
  168. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  169. package/fesm2015/igniteui-webcomponents-data-grids.js +5980 -5848
  170. package/fesm5/igniteui-webcomponents-data-grids.js +5788 -5638
  171. package/lib/CheckboxListBridge.d.ts +1 -0
  172. package/lib/CheckboxListViewExternal.d.ts +1 -0
  173. package/lib/CheckboxListView_combined.d.ts +185 -179
  174. package/lib/ColumnFilterCondition_combined.d.ts +820 -813
  175. package/lib/EditorCell.d.ts +67 -67
  176. package/lib/FilterCell.d.ts +55 -55
  177. package/lib/GridCellBase.d.ts +105 -102
  178. package/lib/ImageCell.d.ts +17 -17
  179. package/lib/NumericCell.d.ts +2 -2
  180. package/lib/SectionHeaderCell.d.ts +3 -3
  181. package/lib/SortIndicatorStyle.d.ts +5 -1
  182. package/lib/SummaryCell.d.ts +9 -9
  183. package/lib/TemplateCell.d.ts +5 -5
  184. package/lib/TemplateHeaderCell.d.ts +2 -2
  185. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  186. package/lib/TextCell.d.ts +7 -7
  187. package/lib/TextHeaderCell.d.ts +29 -29
  188. package/lib/VerticalSeparatorCell.d.ts +8 -8
  189. package/lib/igc-cell-info.d.ts +5 -0
  190. package/lib/igc-checkbox-list-component.d.ts +10 -0
  191. package/lib/igc-data-grid-column-component.d.ts +5 -0
  192. package/package.json +4 -4
@@ -299,7 +299,7 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
299
299
  });
300
300
  Object.defineProperty(IgcCheckboxListComponent.prototype, "isDetached", {
301
301
  get: function () {
302
- return this.i.ay;
302
+ return this.i.az;
303
303
  },
304
304
  enumerable: false,
305
305
  configurable: true
@@ -319,10 +319,10 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
319
319
  });
320
320
  Object.defineProperty(IgcCheckboxListComponent.prototype, "dataLegendTarget", {
321
321
  get: function () {
322
- return this.i.bk;
322
+ return this.i.bl;
323
323
  },
324
324
  set: function (v) {
325
- this.i.bk = v;
325
+ this.i.bl = v;
326
326
  },
327
327
  enumerable: false,
328
328
  configurable: true
@@ -332,20 +332,20 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
332
332
  * Gets or Sets the property name that contains the values.
333
333
  */
334
334
  get: function () {
335
- return this.i.cz;
335
+ return this.i.c2;
336
336
  },
337
337
  set: function (v) {
338
- this.i.cz = v;
338
+ this.i.c2 = v;
339
339
  },
340
340
  enumerable: false,
341
341
  configurable: true
342
342
  });
343
343
  Object.defineProperty(IgcCheckboxListComponent.prototype, "propertyTypeMemberPath", {
344
344
  get: function () {
345
- return this.i.ce;
345
+ return this.i.ch;
346
346
  },
347
347
  set: function (v) {
348
- this.i.ce = v;
348
+ this.i.ch = v;
349
349
  },
350
350
  enumerable: false,
351
351
  configurable: true
@@ -368,10 +368,10 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
368
368
  * Gets or Sets the property name that contains the values.
369
369
  */
370
370
  get: function () {
371
- return this.i.b7;
371
+ return this.i.ca;
372
372
  },
373
373
  set: function (v) {
374
- this.i.b7 = v;
374
+ this.i.ca = v;
375
375
  },
376
376
  enumerable: false,
377
377
  configurable: true
@@ -381,11 +381,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
381
381
  * Gets or Sets the property name that contains the values.
382
382
  */
383
383
  get: function () {
384
- return this.i.y;
384
+ return this.i.z;
385
385
  },
386
386
  set: function (v) {
387
- this.i.y = ensureEnum(InputGroupDisplayType_$type, v);
388
- this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.y));
387
+ this.i.z = ensureEnum(InputGroupDisplayType_$type, v);
388
+ this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.z));
389
389
  },
390
390
  enumerable: false,
391
391
  configurable: true
@@ -395,18 +395,18 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
395
395
  * Gets or Sets the property name that contains the values.
396
396
  */
397
397
  get: function () {
398
- return this.i.bh;
398
+ return this.i.bi;
399
399
  },
400
400
  set: function (v) {
401
- this.i.bh = +v;
402
- this._a("rowHeight", this.i.bh);
401
+ this.i.bi = +v;
402
+ this._a("rowHeight", this.i.bi);
403
403
  },
404
404
  enumerable: false,
405
405
  configurable: true
406
406
  });
407
407
  Object.defineProperty(IgcCheckboxListComponent.prototype, "actualRowHeight", {
408
408
  get: function () {
409
- return this.i.bf;
409
+ return this.i.bg;
410
410
  },
411
411
  enumerable: false,
412
412
  configurable: true
@@ -416,16 +416,16 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
416
416
  * Gets or Sets the property name that contains the values.
417
417
  */
418
418
  get: function () {
419
- if (this.i.am == null) {
419
+ if (this.i.an == null) {
420
420
  return null;
421
421
  }
422
- return this.i.am.fontString;
422
+ return this.i.an.fontString;
423
423
  },
424
424
  set: function (v) {
425
425
  var fi = new FontInfo();
426
426
  fi.fontString = v;
427
- this.i.am = fi;
428
- this._a("cellTextStyle", this.i.am != null ? this.i.am.fontString : "");
427
+ this.i.an = fi;
428
+ this._a("cellTextStyle", this.i.an != null ? this.i.an.fontString : "");
429
429
  },
430
430
  enumerable: false,
431
431
  configurable: true
@@ -491,11 +491,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
491
491
  * Gets or sets the search background color.
492
492
  */
493
493
  get: function () {
494
- return brushToString(this.i.e8);
494
+ return brushToString(this.i.fb);
495
495
  },
496
496
  set: function (v) {
497
- this.i.e8 = stringToBrush(v);
498
- this._a("searchBackgroundColor", brushToString(this.i.e8));
497
+ this.i.fb = stringToBrush(v);
498
+ this._a("searchBackgroundColor", brushToString(this.i.fb));
499
499
  },
500
500
  enumerable: false,
501
501
  configurable: true
@@ -505,11 +505,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
505
505
  * Gets or sets the search background color.
506
506
  */
507
507
  get: function () {
508
- return this.i.a4;
508
+ return this.i.a5;
509
509
  },
510
510
  set: function (v) {
511
- this.i.a4 = ensureBool(v);
512
- this._a("labelClickTriggersChange", this.i.a4);
511
+ this.i.a5 = ensureBool(v);
512
+ this._a("labelClickTriggersChange", this.i.a5);
513
513
  },
514
514
  enumerable: false,
515
515
  configurable: true
@@ -533,11 +533,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
533
533
  * Gets or sets the search border color.
534
534
  */
535
535
  get: function () {
536
- return brushToString(this.i.e9);
536
+ return brushToString(this.i.fc);
537
537
  },
538
538
  set: function (v) {
539
- this.i.e9 = stringToBrush(v);
540
- this._a("searchBorderColor", brushToString(this.i.e9));
539
+ this.i.fc = stringToBrush(v);
540
+ this._a("searchBorderColor", brushToString(this.i.fc));
541
541
  },
542
542
  enumerable: false,
543
543
  configurable: true
@@ -547,16 +547,16 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
547
547
  * Gets or sets the text style.
548
548
  */
549
549
  get: function () {
550
- if (this.i.an == null) {
550
+ if (this.i.ao == null) {
551
551
  return null;
552
552
  }
553
- return this.i.an.fontString;
553
+ return this.i.ao.fontString;
554
554
  },
555
555
  set: function (v) {
556
556
  var fi = new FontInfo();
557
557
  fi.fontString = v;
558
- this.i.an = fi;
559
- this._a("searchTextStyle", this.i.an != null ? this.i.an.fontString : "");
558
+ this.i.ao = fi;
559
+ this._a("searchTextStyle", this.i.ao != null ? this.i.ao.fontString : "");
560
560
  },
561
561
  enumerable: false,
562
562
  configurable: true
@@ -566,11 +566,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
566
566
  * Gets or sets the checkbox tick color.
567
567
  */
568
568
  get: function () {
569
- return brushToString(this.i.e0);
569
+ return brushToString(this.i.e3);
570
570
  },
571
571
  set: function (v) {
572
- this.i.e0 = stringToBrush(v);
573
- this._a("checkboxTickColor", brushToString(this.i.e0));
572
+ this.i.e3 = stringToBrush(v);
573
+ this._a("checkboxTickColor", brushToString(this.i.e3));
574
574
  },
575
575
  enumerable: false,
576
576
  configurable: true
@@ -580,11 +580,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
580
580
  * Gets or sets the checkbox background color when checked.
581
581
  */
582
582
  get: function () {
583
- return brushToString(this.i.ey);
583
+ return brushToString(this.i.e1);
584
584
  },
585
585
  set: function (v) {
586
- this.i.ey = stringToBrush(v);
587
- this._a("checkboxCheckedBackgroundColor", brushToString(this.i.ey));
586
+ this.i.e1 = stringToBrush(v);
587
+ this._a("checkboxCheckedBackgroundColor", brushToString(this.i.e1));
588
588
  },
589
589
  enumerable: false,
590
590
  configurable: true
@@ -594,11 +594,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
594
594
  * Gets or sets the checkbox background color when unchecked.
595
595
  */
596
596
  get: function () {
597
- return brushToString(this.i.e1);
597
+ return brushToString(this.i.e4);
598
598
  },
599
599
  set: function (v) {
600
- this.i.e1 = stringToBrush(v);
601
- this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.e1));
600
+ this.i.e4 = stringToBrush(v);
601
+ this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.e4));
602
602
  },
603
603
  enumerable: false,
604
604
  configurable: true
@@ -608,11 +608,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
608
608
  * Gets or sets the checkbox border color when checked.
609
609
  */
610
610
  get: function () {
611
- return brushToString(this.i.ez);
611
+ return brushToString(this.i.e2);
612
612
  },
613
613
  set: function (v) {
614
- this.i.ez = stringToBrush(v);
615
- this._a("checkboxCheckedBorderColor", brushToString(this.i.ez));
614
+ this.i.e2 = stringToBrush(v);
615
+ this._a("checkboxCheckedBorderColor", brushToString(this.i.e2));
616
616
  },
617
617
  enumerable: false,
618
618
  configurable: true
@@ -622,11 +622,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
622
622
  * Gets or sets the checkbox border color when unchecked.
623
623
  */
624
624
  get: function () {
625
- return brushToString(this.i.e2);
625
+ return brushToString(this.i.e5);
626
626
  },
627
627
  set: function (v) {
628
- this.i.e2 = stringToBrush(v);
629
- this._a("checkboxUncheckedBorderColor", brushToString(this.i.e2));
628
+ this.i.e5 = stringToBrush(v);
629
+ this._a("checkboxUncheckedBorderColor", brushToString(this.i.e5));
630
630
  },
631
631
  enumerable: false,
632
632
  configurable: true
@@ -636,11 +636,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
636
636
  * Gets or sets the corner radius to use for the checkbox.
637
637
  */
638
638
  get: function () {
639
- return this.i.ba;
639
+ return this.i.bb;
640
640
  },
641
641
  set: function (v) {
642
- this.i.ba = +v;
643
- this._a("checkboxCornerRadius", this.i.ba);
642
+ this.i.bb = +v;
643
+ this._a("checkboxCornerRadius", this.i.bb);
644
644
  },
645
645
  enumerable: false,
646
646
  configurable: true
@@ -650,11 +650,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
650
650
  * Gets or sets the style of scrollbar.
651
651
  */
652
652
  get: function () {
653
- return this.i.ab;
653
+ return this.i.ac;
654
654
  },
655
655
  set: function (v) {
656
- this.i.ab = ensureEnum(ScrollbarStyle_$type, v);
657
- this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.ab));
656
+ this.i.ac = ensureEnum(ScrollbarStyle_$type, v);
657
+ this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.ac));
658
658
  },
659
659
  enumerable: false,
660
660
  configurable: true
@@ -664,11 +664,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
664
664
  * Gets or sets the scrollbar background color.
665
665
  */
666
666
  get: function () {
667
- return brushToString(this.i.e7);
667
+ return brushToString(this.i.fa);
668
668
  },
669
669
  set: function (v) {
670
- this.i.e7 = stringToBrush(v);
671
- this._a("scrollbarBackground", brushToString(this.i.e7));
670
+ this.i.fa = stringToBrush(v);
671
+ this._a("scrollbarBackground", brushToString(this.i.fa));
672
672
  },
673
673
  enumerable: false,
674
674
  configurable: true
@@ -678,10 +678,10 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
678
678
  * Gets / sets the caption of the "Select All" checkbox.
679
679
  */
680
680
  get: function () {
681
- return this.i.cs;
681
+ return this.i.cv;
682
682
  },
683
683
  set: function (v) {
684
- this.i.cs = v;
684
+ this.i.cv = v;
685
685
  },
686
686
  enumerable: false,
687
687
  configurable: true
@@ -691,11 +691,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
691
691
  * Gets or sets the color to use for the "Select All" label.
692
692
  */
693
693
  get: function () {
694
- return brushToString(this.i.fc);
694
+ return brushToString(this.i.ff);
695
695
  },
696
696
  set: function (v) {
697
- this.i.fc = stringToBrush(v);
698
- this._a("selectAllCaptionTextColor", brushToString(this.i.fc));
697
+ this.i.ff = stringToBrush(v);
698
+ this._a("selectAllCaptionTextColor", brushToString(this.i.ff));
699
699
  },
700
700
  enumerable: false,
701
701
  configurable: true
@@ -705,11 +705,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
705
705
  * Gets or sets the color to use for the actual header selectAllCaption text.
706
706
  */
707
707
  get: function () {
708
- return brushToString(this.i.ew);
708
+ return brushToString(this.i.ez);
709
709
  },
710
710
  set: function (v) {
711
- this.i.ew = stringToBrush(v);
712
- this._a("actualSelectAllCaptionTextColor", brushToString(this.i.ew));
711
+ this.i.ez = stringToBrush(v);
712
+ this._a("actualSelectAllCaptionTextColor", brushToString(this.i.ez));
713
713
  },
714
714
  enumerable: false,
715
715
  configurable: true
@@ -761,11 +761,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
761
761
  * Gets or sets the color to use for the text of the component.
762
762
  */
763
763
  get: function () {
764
- return brushToString(this.i.fe);
764
+ return brushToString(this.i.fh);
765
765
  },
766
766
  set: function (v) {
767
- this.i.fe = stringToBrush(v);
768
- this._a("textColor", brushToString(this.i.fe));
767
+ this.i.fh = stringToBrush(v);
768
+ this._a("textColor", brushToString(this.i.fh));
769
769
  },
770
770
  enumerable: false,
771
771
  configurable: true
@@ -775,11 +775,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
775
775
  * Gets or sets whether the filter input is visible.
776
776
  */
777
777
  get: function () {
778
- return this.i.a6;
778
+ return this.i.a7;
779
779
  },
780
780
  set: function (v) {
781
- this.i.a6 = ensureBool(v);
782
- this._a("showFilter", this.i.a6);
781
+ this.i.a7 = ensureBool(v);
782
+ this._a("showFilter", this.i.a7);
783
783
  },
784
784
  enumerable: false,
785
785
  configurable: true
@@ -789,11 +789,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
789
789
  * Gets or sets whether row hover highlighting is enabled.
790
790
  */
791
791
  get: function () {
792
- return this.i.a2;
792
+ return this.i.a3;
793
793
  },
794
794
  set: function (v) {
795
- this.i.a2 = ensureBool(v);
796
- this._a("isRowHoverEnabled", this.i.a2);
795
+ this.i.a3 = ensureBool(v);
796
+ this._a("isRowHoverEnabled", this.i.a3);
797
797
  },
798
798
  enumerable: false,
799
799
  configurable: true
@@ -803,11 +803,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
803
803
  * Gets or sets whether checkbox should be displayed to the right.
804
804
  */
805
805
  get: function () {
806
- return this.i.ax;
806
+ return this.i.ay;
807
807
  },
808
808
  set: function (v) {
809
- this.i.ax = ensureBool(v);
810
- this._a("checkboxAlignedRight", this.i.ax);
809
+ this.i.ay = ensureBool(v);
810
+ this._a("checkboxAlignedRight", this.i.ay);
811
811
  },
812
812
  enumerable: false,
813
813
  configurable: true
@@ -885,17 +885,17 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
885
885
 
886
886
  */
887
887
  IgcCheckboxListComponent.prototype.selectAll = function () {
888
- this.i.ea();
888
+ this.i.ed();
889
889
  };
890
890
  /**
891
891
  * Deselects all the items in the checkbox list.
892
892
 
893
893
  */
894
894
  IgcCheckboxListComponent.prototype.deselectAll = function () {
895
- this.i.c8();
895
+ this.i.db();
896
896
  };
897
897
  IgcCheckboxListComponent.prototype.notifySetItem = function (index, oldItem, newItem) {
898
- this.i.dl(index, oldItem, newItem);
898
+ this.i.dp(index, oldItem, newItem);
899
899
  };
900
900
  /**
901
901
  * Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
@@ -903,33 +903,49 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
903
903
 
904
904
  */
905
905
  IgcCheckboxListComponent.prototype.notifyClearItems = function () {
906
- this.i.dh();
906
+ this.i.dk();
907
907
  };
908
908
  IgcCheckboxListComponent.prototype.notifyInsertItem = function (index, newItem) {
909
- this.i.di(index, newItem);
909
+ this.i.dl(index, newItem);
910
910
  };
911
911
  IgcCheckboxListComponent.prototype.notifyRemoveItem = function (index, oldItem) {
912
- this.i.dk(index, oldItem);
912
+ this.i.dn(index, oldItem);
913
913
  };
914
914
  IgcCheckboxListComponent.prototype.refresh = function () {
915
915
  this.i.refresh();
916
916
  };
917
917
  IgcCheckboxListComponent.prototype.addKeyValue = function (value) {
918
- this.i.c3(value);
918
+ this.i.c6(value);
919
919
  };
920
920
  IgcCheckboxListComponent.prototype.removeKeyValue = function (value) {
921
- this.i.d8(value);
921
+ this.i.eb(value);
922
922
  };
923
923
  IgcCheckboxListComponent.prototype.getDesiredSize = function (availableSize) {
924
924
  var iv = this.i.getDesiredSize(toSize(availableSize));
925
925
  return fromSize(iv);
926
926
  };
927
+ /**
928
+ * Exports visual information about the current state of the grid.
929
+
930
+ */
931
+ IgcCheckboxListComponent.prototype.exportVisualModel = function () {
932
+ var iv = this.i.bm();
933
+ return (iv);
934
+ };
935
+ /**
936
+ * Returns a serialized copy of the exported visual model
937
+
938
+ */
939
+ IgcCheckboxListComponent.prototype.exportSerializedVisualModel = function () {
940
+ var iv = this.i.b9();
941
+ return (iv);
942
+ };
927
943
  /**
928
944
  * Returns true if no items are selected / checked; otherwise false.
929
945
 
930
946
  */
931
947
  IgcCheckboxListComponent.prototype.isNothingSelected = function () {
932
- var iv = this.i.a0();
948
+ var iv = this.i.a1();
933
949
  return (iv);
934
950
  };
935
951
  /**
@@ -937,7 +953,7 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
937
953
 
938
954
  */
939
955
  IgcCheckboxListComponent.prototype.isEverythingSelected = function () {
940
- var iv = this.i.az();
956
+ var iv = this.i.a0();
941
957
  return (iv);
942
958
  };
943
959
  Object.defineProperty(IgcCheckboxListComponent.prototype, "selectedKeyAdded", {
@@ -78,10 +78,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
78
78
  * Gets the actual data source that is being used by the combo. If a collection was provided for the combobox data, an implicit LocalDataSource is created, and this is available via this property.
79
79
  */
80
80
  get: function () {
81
- return this.i.o8;
81
+ return this.i.pb;
82
82
  },
83
83
  set: function (v) {
84
- this.i.o8 = v;
84
+ this.i.pb = v;
85
85
  },
86
86
  enumerable: false,
87
87
  configurable: true
@@ -91,10 +91,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
91
91
  * Gets or sets the ComboBox data source.
92
92
  */
93
93
  get: function () {
94
- return this.i.o9;
94
+ return this.i.pc;
95
95
  },
96
96
  set: function (v) {
97
- this.i.o9 = v;
97
+ this.i.pc = v;
98
98
  },
99
99
  enumerable: false,
100
100
  configurable: true
@@ -104,10 +104,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
104
104
  * Gets or sets the ComboBox text field.
105
105
  */
106
106
  get: function () {
107
- return this.i.pd;
107
+ return this.i.pg;
108
108
  },
109
109
  set: function (v) {
110
- this.i.pd = v;
110
+ this.i.pg = v;
111
111
  },
112
112
  enumerable: false,
113
113
  configurable: true
@@ -117,10 +117,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
117
117
  * Gets or sets the ComboBox value field.
118
118
  */
119
119
  get: function () {
120
- return this.i.pe;
120
+ return this.i.ph;
121
121
  },
122
122
  set: function (v) {
123
- this.i.pe = v;
123
+ this.i.ph = v;
124
124
  },
125
125
  enumerable: false,
126
126
  configurable: true
@@ -130,14 +130,14 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
130
130
  * Gets or sets the ComboBox value field.
131
131
  */
132
132
  get: function () {
133
- return this.i.o6;
133
+ return this.i.o9;
134
134
  },
135
135
  set: function (v) {
136
136
  if (v && !Array.isArray(v) && typeof (v) == "string") {
137
137
  var re = /\s*(?:,|\s|$)\s*/gm;
138
138
  v = v.split(re);
139
139
  }
140
- this.i.o6 = v;
140
+ this.i.o9 = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true