igniteui-webcomponents-data-grids 7.1.0-alpha.3 → 7.1.0-beta.1

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 (204) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7956 -7387
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +38 -35
  16. package/esm2015/lib/CheckboxListBridge.js +8 -0
  17. package/esm2015/lib/CheckboxListView_combined.js +369 -335
  18. package/esm2015/lib/ColumnChooserView_combined.js +11 -11
  19. package/esm2015/lib/ColumnFilterCondition_combined.js +5218 -4964
  20. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  21. package/esm2015/lib/ColumnPinningView_combined.js +5 -5
  22. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  23. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  24. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  25. package/esm2015/lib/DataGridLocaleEn.js +8 -0
  26. package/esm2015/lib/DataGridScrollerKeyboardListener.js +16 -16
  27. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  28. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  29. package/esm2015/lib/EditorCell.js +292 -292
  30. package/esm2015/lib/EditorCellPresenter.js +26 -26
  31. package/esm2015/lib/FilterCell.js +269 -269
  32. package/esm2015/lib/FilterCellPresenter.js +15 -15
  33. package/esm2015/lib/GridCellBase.js +167 -150
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +5 -5
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  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 +7 -7
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +188 -173
  43. package/esm2015/lib/GridIconRepository.js +4 -4
  44. package/esm2015/lib/ISummaryChooserView_combined.js +5 -5
  45. package/esm2015/lib/ImageCell.js +57 -57
  46. package/esm2015/lib/ImageCellPresenter.js +15 -15
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +5 -5
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  51. package/esm2015/lib/SectionHeaderCell.js +20 -20
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SummaryCell.js +45 -45
  54. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  55. package/esm2015/lib/TemplateCell.js +15 -15
  56. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  57. package/esm2015/lib/TemplateHeader.js +2 -2
  58. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  59. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  60. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  61. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  62. package/esm2015/lib/TextCell.js +29 -29
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +184 -184
  65. package/esm2015/lib/TextHeaderCellPresenter.js +55 -52
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +90 -81
  68. package/esm2015/lib/igc-checkbox-list-component.js +68 -58
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +238 -214
  71. package/esm2015/lib/igc-data-grid-component.js +31 -0
  72. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +44 -34
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  76. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  77. package/esm2015/lib/igc-image-cell-info.js +6 -6
  78. package/esm2015/lib/igc-image-column-component.js +12 -12
  79. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  80. package/esm2015/lib/igc-numeric-column-component.js +38 -38
  81. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  82. package/esm2015/lib/igc-section-header-component.js +32 -12
  83. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  84. package/esm2015/lib/igc-template-cell-info.js +2 -2
  85. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  86. package/esm2015/lib/igc-text-cell-info.js +2 -2
  87. package/esm2015/lib/igc-text-column-component.js +9 -9
  88. package/esm2015/lib/igc-text-header-cell-info.js +44 -38
  89. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  90. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  91. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  92. package/esm5/lib/CanvasGridCellBase.js +2 -2
  93. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  94. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  95. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  96. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  97. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  99. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  101. package/esm5/lib/CellPresenterBase.js +38 -35
  102. package/esm5/lib/CheckboxListBridge.js +8 -0
  103. package/esm5/lib/CheckboxListView_combined.js +359 -321
  104. package/esm5/lib/ColumnChooserView_combined.js +11 -11
  105. package/esm5/lib/ColumnFilterCondition_combined.js +5068 -4770
  106. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  107. package/esm5/lib/ColumnPinningView_combined.js +5 -5
  108. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  109. package/esm5/lib/ContentCellModelHelper.js +10 -10
  110. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  111. package/esm5/lib/DataGridLocaleEn.js +8 -0
  112. package/esm5/lib/DataGridScrollerKeyboardListener.js +16 -16
  113. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  114. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  115. package/esm5/lib/EditorCell.js +277 -277
  116. package/esm5/lib/EditorCellPresenter.js +26 -26
  117. package/esm5/lib/FilterCell.js +259 -259
  118. package/esm5/lib/FilterCellPresenter.js +15 -15
  119. package/esm5/lib/GridCellBase.js +164 -143
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +5 -5
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  124. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  125. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  127. package/esm5/lib/GridExternalWrapper.js +6 -6
  128. package/esm5/lib/GridFilterDialogView_combined.js +183 -164
  129. package/esm5/lib/GridIconRepository.js +4 -4
  130. package/esm5/lib/ISummaryChooserView_combined.js +5 -5
  131. package/esm5/lib/ImageCell.js +57 -57
  132. package/esm5/lib/ImageCellPresenter.js +15 -15
  133. package/esm5/lib/MultiColumnComboBoxView_combined.js +5 -5
  134. package/esm5/lib/NumericCell.js +8 -8
  135. package/esm5/lib/NumericCellPresenter.js +9 -9
  136. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  137. package/esm5/lib/SectionHeaderCell.js +20 -20
  138. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  139. package/esm5/lib/SummaryCell.js +45 -45
  140. package/esm5/lib/SummaryCellPresenter.js +10 -10
  141. package/esm5/lib/TemplateCell.js +15 -15
  142. package/esm5/lib/TemplateCellPresenter.js +3 -3
  143. package/esm5/lib/TemplateHeader.js +2 -2
  144. package/esm5/lib/TemplateHeaderCell.js +5 -5
  145. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  146. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  147. package/esm5/lib/TemplateSectionHeader.js +1 -1
  148. package/esm5/lib/TextCell.js +29 -29
  149. package/esm5/lib/TextCellPresenter.js +10 -10
  150. package/esm5/lib/TextHeaderCell.js +182 -182
  151. package/esm5/lib/TextHeaderCellPresenter.js +55 -52
  152. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  153. package/esm5/lib/igc-cell-info.js +94 -81
  154. package/esm5/lib/igc-checkbox-list-component.js +72 -58
  155. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  156. package/esm5/lib/igc-data-grid-column-component.js +250 -214
  157. package/esm5/lib/igc-data-grid-component.js +43 -0
  158. package/esm5/lib/igc-data-grid-filter-dialog-component.js +48 -34
  159. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  160. package/esm5/lib/igc-date-time-column-component.js +23 -23
  161. package/esm5/lib/igc-editor-cell-info.js +23 -23
  162. package/esm5/lib/igc-filter-cell-info.js +26 -26
  163. package/esm5/lib/igc-image-cell-info.js +6 -6
  164. package/esm5/lib/igc-image-column-component.js +12 -12
  165. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  166. package/esm5/lib/igc-numeric-column-component.js +38 -38
  167. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  168. package/esm5/lib/igc-section-header-component.js +40 -12
  169. package/esm5/lib/igc-summary-cell-info.js +9 -9
  170. package/esm5/lib/igc-template-cell-info.js +2 -2
  171. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  172. package/esm5/lib/igc-text-cell-info.js +2 -2
  173. package/esm5/lib/igc-text-column-component.js +9 -9
  174. package/esm5/lib/igc-text-header-cell-info.js +48 -38
  175. package/fesm2015/igniteui-webcomponents-data-grids.js +8096 -7635
  176. package/fesm5/igniteui-webcomponents-data-grids.js +7956 -7387
  177. package/lib/CheckboxListExternal.d.ts +2 -0
  178. package/lib/CheckboxListView_combined.d.ts +98 -94
  179. package/lib/ColumnFilterCondition_combined.d.ts +1308 -1267
  180. package/lib/DataGridLocaleEn.d.ts +8 -0
  181. package/lib/EditorCell.d.ts +67 -67
  182. package/lib/FilterCell.d.ts +55 -55
  183. package/lib/GridCellBase.d.ts +64 -61
  184. package/lib/GridFilterDialogView_combined.d.ts +52 -49
  185. package/lib/ImageCell.d.ts +17 -17
  186. package/lib/NumericCell.d.ts +2 -2
  187. package/lib/SectionHeaderCell.d.ts +4 -4
  188. package/lib/SummaryCell.d.ts +10 -10
  189. package/lib/TemplateCell.d.ts +5 -5
  190. package/lib/TemplateHeaderCell.d.ts +2 -2
  191. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  192. package/lib/TemplateSectionHeader.d.ts +1 -1
  193. package/lib/TextCell.d.ts +7 -7
  194. package/lib/TextHeaderCell.d.ts +30 -30
  195. package/lib/VerticalSeparatorCell.d.ts +8 -8
  196. package/lib/igc-cell-info.d.ts +5 -0
  197. package/lib/igc-checkbox-list-component.d.ts +5 -0
  198. package/lib/igc-data-grid-column-component.d.ts +9 -0
  199. package/lib/igc-data-grid-component.d.ts +16 -0
  200. package/lib/igc-data-grid-filter-dialog-component.d.ts +5 -0
  201. package/lib/igc-numeric-cell-info.d.ts +5 -0
  202. package/lib/igc-section-header-component.d.ts +10 -0
  203. package/lib/igc-text-header-cell-info.d.ts +2 -0
  204. package/package.json +4 -4
@@ -318,10 +318,10 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
318
318
  });
319
319
  Object.defineProperty(IgcCheckboxListComponent.prototype, "dataLegendTarget", {
320
320
  get: function () {
321
- return this.i.bq;
321
+ return this.i.dataLegendTarget;
322
322
  },
323
323
  set: function (v) {
324
- this.i.bq = v;
324
+ this.i.dataLegendTarget = v;
325
325
  },
326
326
  enumerable: false,
327
327
  configurable: true
@@ -331,20 +331,20 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
331
331
  * Gets or Sets the property name that contains the values.
332
332
  */
333
333
  get: function () {
334
- return this.i.c7;
334
+ return this.i.subtitleMemberPath;
335
335
  },
336
336
  set: function (v) {
337
- this.i.c7 = v;
337
+ this.i.subtitleMemberPath = v;
338
338
  },
339
339
  enumerable: false,
340
340
  configurable: true
341
341
  });
342
342
  Object.defineProperty(IgcCheckboxListComponent.prototype, "propertyTypeMemberPath", {
343
343
  get: function () {
344
- return this.i.cm;
344
+ return this.i.propertyTypeMemberPath;
345
345
  },
346
346
  set: function (v) {
347
- this.i.cm = v;
347
+ this.i.propertyTypeMemberPath = v;
348
348
  },
349
349
  enumerable: false,
350
350
  configurable: true
@@ -490,11 +490,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
490
490
  * Gets or sets the search background color.
491
491
  */
492
492
  get: function () {
493
- return brushToString(this.i.fj);
493
+ return brushToString(this.i.fm);
494
494
  },
495
495
  set: function (v) {
496
- this.i.fj = stringToBrush(v);
497
- this._a("searchBackgroundColor", brushToString(this.i.fj));
496
+ this.i.fm = stringToBrush(v);
497
+ this._a("searchBackgroundColor", brushToString(this.i.fm));
498
498
  },
499
499
  enumerable: false,
500
500
  configurable: true
@@ -504,11 +504,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
504
504
  * Gets or sets the search background color.
505
505
  */
506
506
  get: function () {
507
- return this.i.a6;
507
+ return this.i.labelClickTriggersChange;
508
508
  },
509
509
  set: function (v) {
510
- this.i.a6 = ensureBool(v);
511
- this._a("labelClickTriggersChange", this.i.a6);
510
+ this.i.labelClickTriggersChange = ensureBool(v);
511
+ this._a("labelClickTriggersChange", this.i.labelClickTriggersChange);
512
512
  },
513
513
  enumerable: false,
514
514
  configurable: true
@@ -532,11 +532,25 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
532
532
  * Gets or sets the search border color.
533
533
  */
534
534
  get: function () {
535
- return brushToString(this.i.fk);
535
+ return brushToString(this.i.searchBorderColor);
536
536
  },
537
537
  set: function (v) {
538
- this.i.fk = stringToBrush(v);
539
- this._a("searchBorderColor", brushToString(this.i.fk));
538
+ this.i.searchBorderColor = stringToBrush(v);
539
+ this._a("searchBorderColor", brushToString(this.i.searchBorderColor));
540
+ },
541
+ enumerable: false,
542
+ configurable: true
543
+ });
544
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "searchFocusBorderColor", {
545
+ /**
546
+ * Gets or sets the search focus border color.
547
+ */
548
+ get: function () {
549
+ return brushToString(this.i.searchFocusBorderColor);
550
+ },
551
+ set: function (v) {
552
+ this.i.searchFocusBorderColor = stringToBrush(v);
553
+ this._a("searchFocusBorderColor", brushToString(this.i.searchFocusBorderColor));
540
554
  },
541
555
  enumerable: false,
542
556
  configurable: true
@@ -565,11 +579,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
565
579
  * Gets or sets the checkbox tick color.
566
580
  */
567
581
  get: function () {
568
- return brushToString(this.i.e9);
582
+ return brushToString(this.i.fc);
569
583
  },
570
584
  set: function (v) {
571
- this.i.e9 = stringToBrush(v);
572
- this._a("checkboxTickColor", brushToString(this.i.e9));
585
+ this.i.fc = stringToBrush(v);
586
+ this._a("checkboxTickColor", brushToString(this.i.fc));
573
587
  },
574
588
  enumerable: false,
575
589
  configurable: true
@@ -579,11 +593,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
579
593
  * Gets or sets the checkbox background color when checked.
580
594
  */
581
595
  get: function () {
582
- return brushToString(this.i.e7);
596
+ return brushToString(this.i.checkboxCheckedBackgroundColor);
583
597
  },
584
598
  set: function (v) {
585
- this.i.e7 = stringToBrush(v);
586
- this._a("checkboxCheckedBackgroundColor", brushToString(this.i.e7));
599
+ this.i.checkboxCheckedBackgroundColor = stringToBrush(v);
600
+ this._a("checkboxCheckedBackgroundColor", brushToString(this.i.checkboxCheckedBackgroundColor));
587
601
  },
588
602
  enumerable: false,
589
603
  configurable: true
@@ -593,11 +607,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
593
607
  * Gets or sets the checkbox background color when unchecked.
594
608
  */
595
609
  get: function () {
596
- return brushToString(this.i.fa);
610
+ return brushToString(this.i.checkboxUncheckedBackgroundColor);
597
611
  },
598
612
  set: function (v) {
599
- this.i.fa = stringToBrush(v);
600
- this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.fa));
613
+ this.i.checkboxUncheckedBackgroundColor = stringToBrush(v);
614
+ this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.checkboxUncheckedBackgroundColor));
601
615
  },
602
616
  enumerable: false,
603
617
  configurable: true
@@ -607,11 +621,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
607
621
  * Gets or sets the checkbox border color when checked.
608
622
  */
609
623
  get: function () {
610
- return brushToString(this.i.e8);
624
+ return brushToString(this.i.checkboxCheckedBorderColor);
611
625
  },
612
626
  set: function (v) {
613
- this.i.e8 = stringToBrush(v);
614
- this._a("checkboxCheckedBorderColor", brushToString(this.i.e8));
627
+ this.i.checkboxCheckedBorderColor = stringToBrush(v);
628
+ this._a("checkboxCheckedBorderColor", brushToString(this.i.checkboxCheckedBorderColor));
615
629
  },
616
630
  enumerable: false,
617
631
  configurable: true
@@ -621,11 +635,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
621
635
  * Gets or sets the checkbox border color when unchecked.
622
636
  */
623
637
  get: function () {
624
- return brushToString(this.i.fb);
638
+ return brushToString(this.i.checkboxUncheckedBorderColor);
625
639
  },
626
640
  set: function (v) {
627
- this.i.fb = stringToBrush(v);
628
- this._a("checkboxUncheckedBorderColor", brushToString(this.i.fb));
641
+ this.i.checkboxUncheckedBorderColor = stringToBrush(v);
642
+ this._a("checkboxUncheckedBorderColor", brushToString(this.i.checkboxUncheckedBorderColor));
629
643
  },
630
644
  enumerable: false,
631
645
  configurable: true
@@ -635,11 +649,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
635
649
  * Gets or sets the corner radius to use for the checkbox.
636
650
  */
637
651
  get: function () {
638
- return this.i.bc;
652
+ return this.i.checkboxCornerRadius;
639
653
  },
640
654
  set: function (v) {
641
- this.i.bc = +v;
642
- this._a("checkboxCornerRadius", this.i.bc);
655
+ this.i.checkboxCornerRadius = +v;
656
+ this._a("checkboxCornerRadius", this.i.checkboxCornerRadius);
643
657
  },
644
658
  enumerable: false,
645
659
  configurable: true
@@ -663,11 +677,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
663
677
  * Gets or sets the scrollbar background color.
664
678
  */
665
679
  get: function () {
666
- return brushToString(this.i.fi);
680
+ return brushToString(this.i.fl);
667
681
  },
668
682
  set: function (v) {
669
- this.i.fi = stringToBrush(v);
670
- this._a("scrollbarBackground", brushToString(this.i.fi));
683
+ this.i.fl = stringToBrush(v);
684
+ this._a("scrollbarBackground", brushToString(this.i.fl));
671
685
  },
672
686
  enumerable: false,
673
687
  configurable: true
@@ -677,10 +691,10 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
677
691
  * Gets / sets the caption of the "Select All" checkbox.
678
692
  */
679
693
  get: function () {
680
- return this.i.c0;
694
+ return this.i.c1;
681
695
  },
682
696
  set: function (v) {
683
- this.i.c0 = v;
697
+ this.i.c1 = v;
684
698
  },
685
699
  enumerable: false,
686
700
  configurable: true
@@ -690,11 +704,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
690
704
  * Gets or sets the color to use for the "Select All" label.
691
705
  */
692
706
  get: function () {
693
- return brushToString(this.i.fn);
707
+ return brushToString(this.i.selectAllCaptionTextColor);
694
708
  },
695
709
  set: function (v) {
696
- this.i.fn = stringToBrush(v);
697
- this._a("selectAllCaptionTextColor", brushToString(this.i.fn));
710
+ this.i.selectAllCaptionTextColor = stringToBrush(v);
711
+ this._a("selectAllCaptionTextColor", brushToString(this.i.selectAllCaptionTextColor));
698
712
  },
699
713
  enumerable: false,
700
714
  configurable: true
@@ -704,11 +718,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
704
718
  * Gets or sets the color to use for the actual header selectAllCaption text.
705
719
  */
706
720
  get: function () {
707
- return brushToString(this.i.e5);
721
+ return brushToString(this.i.e8);
708
722
  },
709
723
  set: function (v) {
710
- this.i.e5 = stringToBrush(v);
711
- this._a("actualSelectAllCaptionTextColor", brushToString(this.i.e5));
724
+ this.i.e8 = stringToBrush(v);
725
+ this._a("actualSelectAllCaptionTextColor", brushToString(this.i.e8));
712
726
  },
713
727
  enumerable: false,
714
728
  configurable: true
@@ -760,11 +774,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
760
774
  * Gets or sets the color to use for the text of the component.
761
775
  */
762
776
  get: function () {
763
- return brushToString(this.i.fp);
777
+ return brushToString(this.i.textColor);
764
778
  },
765
779
  set: function (v) {
766
- this.i.fp = stringToBrush(v);
767
- this._a("textColor", brushToString(this.i.fp));
780
+ this.i.textColor = stringToBrush(v);
781
+ this._a("textColor", brushToString(this.i.textColor));
768
782
  },
769
783
  enumerable: false,
770
784
  configurable: true
@@ -802,11 +816,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
802
816
  * Gets or sets whether checkbox should be displayed to the right.
803
817
  */
804
818
  get: function () {
805
- return this.i.az;
819
+ return this.i.checkboxAlignedRight;
806
820
  },
807
821
  set: function (v) {
808
- this.i.az = ensureBool(v);
809
- this._a("checkboxAlignedRight", this.i.az);
822
+ this.i.checkboxAlignedRight = ensureBool(v);
823
+ this._a("checkboxAlignedRight", this.i.checkboxAlignedRight);
810
824
  },
811
825
  enumerable: false,
812
826
  configurable: true
@@ -884,17 +898,17 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
884
898
 
885
899
  */
886
900
  IgcCheckboxListComponent.prototype.selectAll = function () {
887
- this.i.ej();
901
+ this.i.el();
888
902
  };
889
903
  /**
890
904
  * Deselects all the items in the checkbox list.
891
905
 
892
906
  */
893
907
  IgcCheckboxListComponent.prototype.deselectAll = function () {
894
- this.i.dg();
908
+ this.i.dh();
895
909
  };
896
910
  IgcCheckboxListComponent.prototype.notifySetItem = function (index, oldItem, newItem) {
897
- this.i.dv(index, oldItem, newItem);
911
+ this.i.dw(index, oldItem, newItem);
898
912
  };
899
913
  /**
900
914
  * Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
@@ -902,22 +916,22 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
902
916
 
903
917
  */
904
918
  IgcCheckboxListComponent.prototype.notifyClearItems = function () {
905
- this.i.dr();
919
+ this.i.ds();
906
920
  };
907
921
  IgcCheckboxListComponent.prototype.notifyInsertItem = function (index, newItem) {
908
- this.i.ds(index, newItem);
922
+ this.i.dt(index, newItem);
909
923
  };
910
924
  IgcCheckboxListComponent.prototype.notifyRemoveItem = function (index, oldItem) {
911
- this.i.du(index, oldItem);
925
+ this.i.dv(index, oldItem);
912
926
  };
913
927
  IgcCheckboxListComponent.prototype.refresh = function () {
914
928
  this.i.refresh();
915
929
  };
916
930
  IgcCheckboxListComponent.prototype.addKeyValue = function (value) {
917
- this.i.db(value);
931
+ this.i.dc(value);
918
932
  };
919
933
  IgcCheckboxListComponent.prototype.removeKeyValue = function (value) {
920
- this.i.eh(value);
934
+ this.i.ej(value);
921
935
  };
922
936
  IgcCheckboxListComponent.prototype.getDesiredSize = function (availableSize) {
923
937
  var iv = this.i.getDesiredSize(toSize(availableSize));
@@ -78,10 +78,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
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.r6;
81
+ return this.i.sg;
82
82
  },
83
83
  set: function (v) {
84
- this.i.r6 = v;
84
+ this.i.sg = v;
85
85
  },
86
86
  enumerable: false,
87
87
  configurable: true
@@ -91,10 +91,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
91
91
  * Gets or sets the ComboBox data source.
92
92
  */
93
93
  get: function () {
94
- return this.i.r7;
94
+ return this.i.sh;
95
95
  },
96
96
  set: function (v) {
97
- this.i.r7 = v;
97
+ this.i.sh = v;
98
98
  },
99
99
  enumerable: false,
100
100
  configurable: true
@@ -104,10 +104,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
104
104
  * Gets or sets the ComboBox text field.
105
105
  */
106
106
  get: function () {
107
- return this.i.sb;
107
+ return this.i.sl;
108
108
  },
109
109
  set: function (v) {
110
- this.i.sb = v;
110
+ this.i.sl = v;
111
111
  },
112
112
  enumerable: false,
113
113
  configurable: true
@@ -117,10 +117,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
117
117
  * Gets or sets the ComboBox value field.
118
118
  */
119
119
  get: function () {
120
- return this.i.sc;
120
+ return this.i.sm;
121
121
  },
122
122
  set: function (v) {
123
- this.i.sc = v;
123
+ this.i.sm = v;
124
124
  },
125
125
  enumerable: false,
126
126
  configurable: true
@@ -130,14 +130,14 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
130
130
  * Gets or sets the ComboBox value field.
131
131
  */
132
132
  get: function () {
133
- return this.i.r4;
133
+ return this.i.se;
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.r4 = v;
140
+ this.i.se = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true