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
@@ -279,25 +279,25 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
279
279
  this.i.dataMemberPath = v;
280
280
  }
281
281
  get dataLegendTarget() {
282
- return this.i.bq;
282
+ return this.i.dataLegendTarget;
283
283
  }
284
284
  set dataLegendTarget(v) {
285
- this.i.bq = v;
285
+ this.i.dataLegendTarget = v;
286
286
  }
287
287
  /**
288
288
  * Gets or Sets the property name that contains the values.
289
289
  */
290
290
  get subtitleMemberPath() {
291
- return this.i.c7;
291
+ return this.i.subtitleMemberPath;
292
292
  }
293
293
  set subtitleMemberPath(v) {
294
- this.i.c7 = v;
294
+ this.i.subtitleMemberPath = v;
295
295
  }
296
296
  get propertyTypeMemberPath() {
297
- return this.i.cm;
297
+ return this.i.propertyTypeMemberPath;
298
298
  }
299
299
  set propertyTypeMemberPath(v) {
300
- this.i.cm = v;
300
+ this.i.propertyTypeMemberPath = v;
301
301
  }
302
302
  /**
303
303
  * Gets or Sets the property name that contains the values.
@@ -399,21 +399,21 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
399
399
  * Gets or sets the search background color.
400
400
  */
401
401
  get searchBackgroundColor() {
402
- return brushToString(this.i.fj);
402
+ return brushToString(this.i.fm);
403
403
  }
404
404
  set searchBackgroundColor(v) {
405
- this.i.fj = stringToBrush(v);
406
- this._a("searchBackgroundColor", brushToString(this.i.fj));
405
+ this.i.fm = stringToBrush(v);
406
+ this._a("searchBackgroundColor", brushToString(this.i.fm));
407
407
  }
408
408
  /**
409
409
  * Gets or sets the search background color.
410
410
  */
411
411
  get labelClickTriggersChange() {
412
- return this.i.a6;
412
+ return this.i.labelClickTriggersChange;
413
413
  }
414
414
  set labelClickTriggersChange(v) {
415
- this.i.a6 = ensureBool(v);
416
- this._a("labelClickTriggersChange", this.i.a6);
415
+ this.i.labelClickTriggersChange = ensureBool(v);
416
+ this._a("labelClickTriggersChange", this.i.labelClickTriggersChange);
417
417
  }
418
418
  /**
419
419
  * Gets or sets the search text color.
@@ -429,11 +429,21 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
429
429
  * Gets or sets the search border color.
430
430
  */
431
431
  get searchBorderColor() {
432
- return brushToString(this.i.fk);
432
+ return brushToString(this.i.searchBorderColor);
433
433
  }
434
434
  set searchBorderColor(v) {
435
- this.i.fk = stringToBrush(v);
436
- this._a("searchBorderColor", brushToString(this.i.fk));
435
+ this.i.searchBorderColor = stringToBrush(v);
436
+ this._a("searchBorderColor", brushToString(this.i.searchBorderColor));
437
+ }
438
+ /**
439
+ * Gets or sets the search focus border color.
440
+ */
441
+ get searchFocusBorderColor() {
442
+ return brushToString(this.i.searchFocusBorderColor);
443
+ }
444
+ set searchFocusBorderColor(v) {
445
+ this.i.searchFocusBorderColor = stringToBrush(v);
446
+ this._a("searchFocusBorderColor", brushToString(this.i.searchFocusBorderColor));
437
447
  }
438
448
  /**
439
449
  * Gets or sets the text style.
@@ -454,61 +464,61 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
454
464
  * Gets or sets the checkbox tick color.
455
465
  */
456
466
  get checkboxTickColor() {
457
- return brushToString(this.i.e9);
467
+ return brushToString(this.i.fc);
458
468
  }
459
469
  set checkboxTickColor(v) {
460
- this.i.e9 = stringToBrush(v);
461
- this._a("checkboxTickColor", brushToString(this.i.e9));
470
+ this.i.fc = stringToBrush(v);
471
+ this._a("checkboxTickColor", brushToString(this.i.fc));
462
472
  }
463
473
  /**
464
474
  * Gets or sets the checkbox background color when checked.
465
475
  */
466
476
  get checkboxCheckedBackgroundColor() {
467
- return brushToString(this.i.e7);
477
+ return brushToString(this.i.checkboxCheckedBackgroundColor);
468
478
  }
469
479
  set checkboxCheckedBackgroundColor(v) {
470
- this.i.e7 = stringToBrush(v);
471
- this._a("checkboxCheckedBackgroundColor", brushToString(this.i.e7));
480
+ this.i.checkboxCheckedBackgroundColor = stringToBrush(v);
481
+ this._a("checkboxCheckedBackgroundColor", brushToString(this.i.checkboxCheckedBackgroundColor));
472
482
  }
473
483
  /**
474
484
  * Gets or sets the checkbox background color when unchecked.
475
485
  */
476
486
  get checkboxUncheckedBackgroundColor() {
477
- return brushToString(this.i.fa);
487
+ return brushToString(this.i.checkboxUncheckedBackgroundColor);
478
488
  }
479
489
  set checkboxUncheckedBackgroundColor(v) {
480
- this.i.fa = stringToBrush(v);
481
- this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.fa));
490
+ this.i.checkboxUncheckedBackgroundColor = stringToBrush(v);
491
+ this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.checkboxUncheckedBackgroundColor));
482
492
  }
483
493
  /**
484
494
  * Gets or sets the checkbox border color when checked.
485
495
  */
486
496
  get checkboxCheckedBorderColor() {
487
- return brushToString(this.i.e8);
497
+ return brushToString(this.i.checkboxCheckedBorderColor);
488
498
  }
489
499
  set checkboxCheckedBorderColor(v) {
490
- this.i.e8 = stringToBrush(v);
491
- this._a("checkboxCheckedBorderColor", brushToString(this.i.e8));
500
+ this.i.checkboxCheckedBorderColor = stringToBrush(v);
501
+ this._a("checkboxCheckedBorderColor", brushToString(this.i.checkboxCheckedBorderColor));
492
502
  }
493
503
  /**
494
504
  * Gets or sets the checkbox border color when unchecked.
495
505
  */
496
506
  get checkboxUncheckedBorderColor() {
497
- return brushToString(this.i.fb);
507
+ return brushToString(this.i.checkboxUncheckedBorderColor);
498
508
  }
499
509
  set checkboxUncheckedBorderColor(v) {
500
- this.i.fb = stringToBrush(v);
501
- this._a("checkboxUncheckedBorderColor", brushToString(this.i.fb));
510
+ this.i.checkboxUncheckedBorderColor = stringToBrush(v);
511
+ this._a("checkboxUncheckedBorderColor", brushToString(this.i.checkboxUncheckedBorderColor));
502
512
  }
503
513
  /**
504
514
  * Gets or sets the corner radius to use for the checkbox.
505
515
  */
506
516
  get checkboxCornerRadius() {
507
- return this.i.bc;
517
+ return this.i.checkboxCornerRadius;
508
518
  }
509
519
  set checkboxCornerRadius(v) {
510
- this.i.bc = +v;
511
- this._a("checkboxCornerRadius", this.i.bc);
520
+ this.i.checkboxCornerRadius = +v;
521
+ this._a("checkboxCornerRadius", this.i.checkboxCornerRadius);
512
522
  }
513
523
  /**
514
524
  * Gets or sets the style of scrollbar.
@@ -524,40 +534,40 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
524
534
  * Gets or sets the scrollbar background color.
525
535
  */
526
536
  get scrollbarBackground() {
527
- return brushToString(this.i.fi);
537
+ return brushToString(this.i.fl);
528
538
  }
529
539
  set scrollbarBackground(v) {
530
- this.i.fi = stringToBrush(v);
531
- this._a("scrollbarBackground", brushToString(this.i.fi));
540
+ this.i.fl = stringToBrush(v);
541
+ this._a("scrollbarBackground", brushToString(this.i.fl));
532
542
  }
533
543
  /**
534
544
  * Gets / sets the caption of the "Select All" checkbox.
535
545
  */
536
546
  get selectAllCaption() {
537
- return this.i.c0;
547
+ return this.i.c1;
538
548
  }
539
549
  set selectAllCaption(v) {
540
- this.i.c0 = v;
550
+ this.i.c1 = v;
541
551
  }
542
552
  /**
543
553
  * Gets or sets the color to use for the "Select All" label.
544
554
  */
545
555
  get selectAllCaptionTextColor() {
546
- return brushToString(this.i.fn);
556
+ return brushToString(this.i.selectAllCaptionTextColor);
547
557
  }
548
558
  set selectAllCaptionTextColor(v) {
549
- this.i.fn = stringToBrush(v);
550
- this._a("selectAllCaptionTextColor", brushToString(this.i.fn));
559
+ this.i.selectAllCaptionTextColor = stringToBrush(v);
560
+ this._a("selectAllCaptionTextColor", brushToString(this.i.selectAllCaptionTextColor));
551
561
  }
552
562
  /**
553
563
  * Gets or sets the color to use for the actual header selectAllCaption text.
554
564
  */
555
565
  get actualSelectAllCaptionTextColor() {
556
- return brushToString(this.i.e5);
566
+ return brushToString(this.i.e8);
557
567
  }
558
568
  set actualSelectAllCaptionTextColor(v) {
559
- this.i.e5 = stringToBrush(v);
560
- this._a("actualSelectAllCaptionTextColor", brushToString(this.i.e5));
569
+ this.i.e8 = stringToBrush(v);
570
+ this._a("actualSelectAllCaptionTextColor", brushToString(this.i.e8));
561
571
  }
562
572
  /**
563
573
  * Gets / sets whether the "Select all" checkbox is visible.
@@ -593,11 +603,11 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
593
603
  * Gets or sets the color to use for the text of the component.
594
604
  */
595
605
  get textColor() {
596
- return brushToString(this.i.fp);
606
+ return brushToString(this.i.textColor);
597
607
  }
598
608
  set textColor(v) {
599
- this.i.fp = stringToBrush(v);
600
- this._a("textColor", brushToString(this.i.fp));
609
+ this.i.textColor = stringToBrush(v);
610
+ this._a("textColor", brushToString(this.i.textColor));
601
611
  }
602
612
  /**
603
613
  * Gets or sets whether the filter input is visible.
@@ -623,11 +633,11 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
623
633
  * Gets or sets whether checkbox should be displayed to the right.
624
634
  */
625
635
  get checkboxAlignedRight() {
626
- return this.i.az;
636
+ return this.i.checkboxAlignedRight;
627
637
  }
628
638
  set checkboxAlignedRight(v) {
629
- this.i.az = ensureBool(v);
630
- this._a("checkboxAlignedRight", this.i.az);
639
+ this.i.checkboxAlignedRight = ensureBool(v);
640
+ this._a("checkboxAlignedRight", this.i.checkboxAlignedRight);
631
641
  }
632
642
  findByName(name) {
633
643
  if (this.findEphemera) {
@@ -698,17 +708,17 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
698
708
 
699
709
  */
700
710
  selectAll() {
701
- this.i.ej();
711
+ this.i.el();
702
712
  }
703
713
  /**
704
714
  * Deselects all the items in the checkbox list.
705
715
 
706
716
  */
707
717
  deselectAll() {
708
- this.i.dg();
718
+ this.i.dh();
709
719
  }
710
720
  notifySetItem(index, oldItem, newItem) {
711
- this.i.dv(index, oldItem, newItem);
721
+ this.i.dw(index, oldItem, newItem);
712
722
  }
713
723
  /**
714
724
  * Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
@@ -716,22 +726,22 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
716
726
 
717
727
  */
718
728
  notifyClearItems() {
719
- this.i.dr();
729
+ this.i.ds();
720
730
  }
721
731
  notifyInsertItem(index, newItem) {
722
- this.i.ds(index, newItem);
732
+ this.i.dt(index, newItem);
723
733
  }
724
734
  notifyRemoveItem(index, oldItem) {
725
- this.i.du(index, oldItem);
735
+ this.i.dv(index, oldItem);
726
736
  }
727
737
  refresh() {
728
738
  this.i.refresh();
729
739
  }
730
740
  addKeyValue(value) {
731
- this.i.db(value);
741
+ this.i.dc(value);
732
742
  }
733
743
  removeKeyValue(value) {
734
- this.i.eh(value);
744
+ this.i.ej(value);
735
745
  }
736
746
  getDesiredSize(availableSize) {
737
747
  let iv = this.i.getDesiredSize(toSize(availableSize));
@@ -65,50 +65,50 @@ let IgcComboBoxColumnComponent = /*@__PURE__*/ (() => {
65
65
  * 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.
66
66
  */
67
67
  get actualDataSource() {
68
- return this.i.r6;
68
+ return this.i.sg;
69
69
  }
70
70
  set actualDataSource(v) {
71
- this.i.r6 = v;
71
+ this.i.sg = v;
72
72
  }
73
73
  /**
74
74
  * Gets or sets the ComboBox data source.
75
75
  */
76
76
  get dataSource() {
77
- return this.i.r7;
77
+ return this.i.sh;
78
78
  }
79
79
  set dataSource(v) {
80
- this.i.r7 = v;
80
+ this.i.sh = v;
81
81
  }
82
82
  /**
83
83
  * Gets or sets the ComboBox text field.
84
84
  */
85
85
  get textField() {
86
- return this.i.sb;
86
+ return this.i.sl;
87
87
  }
88
88
  set textField(v) {
89
- this.i.sb = v;
89
+ this.i.sl = v;
90
90
  }
91
91
  /**
92
92
  * Gets or sets the ComboBox value field.
93
93
  */
94
94
  get valueField() {
95
- return this.i.sc;
95
+ return this.i.sm;
96
96
  }
97
97
  set valueField(v) {
98
- this.i.sc = v;
98
+ this.i.sm = v;
99
99
  }
100
100
  /**
101
101
  * Gets or sets the ComboBox value field.
102
102
  */
103
103
  get valueMultiField() {
104
- return this.i.r4;
104
+ return this.i.se;
105
105
  }
106
106
  set valueMultiField(v) {
107
107
  if (v && !Array.isArray(v) && typeof (v) == "string") {
108
108
  const re = /\s*(?:,|\s|$)\s*/gm;
109
109
  v = v.split(re);
110
110
  }
111
- this.i.r4 = v;
111
+ this.i.se = v;
112
112
  }
113
113
  }
114
114
  IgcComboBoxColumnComponent._observedAttributesIgcComboBoxColumnComponent = null;