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
@@ -83,10 +83,10 @@ export class IgcCellInfo {
83
83
  * Gets the style key of the current cell, used for recycling.
84
84
  */
85
85
  get styleKey() {
86
- return this.i.lb;
86
+ return this.i.ld;
87
87
  }
88
88
  set styleKey(v) {
89
- this.i.lb = v;
89
+ this.i.ld = v;
90
90
  }
91
91
  /**
92
92
  * Gets the absolute data row for the current cell.
@@ -233,16 +233,16 @@ export class IgcCellInfo {
233
233
  * Gets the indent level of the cell.
234
234
  */
235
235
  get indent() {
236
- return this.i.gf;
236
+ return this.i.gg;
237
237
  }
238
238
  set indent(v) {
239
- this.i.gf = +v;
239
+ this.i.gg = +v;
240
240
  }
241
241
  get rowItem() {
242
- return this.i.ii;
242
+ return this.i.ij;
243
243
  }
244
244
  set rowItem(v) {
245
- this.i.ii = v;
245
+ this.i.ij = v;
246
246
  }
247
247
  /**
248
248
  * Gets the X position of the cell within the content.
@@ -266,19 +266,19 @@ export class IgcCellInfo {
266
266
  * Gets the pixel snapped X position of the cell within the content.
267
267
  */
268
268
  get snappedX() {
269
- return this.i.hg;
269
+ return this.i.hh;
270
270
  }
271
271
  set snappedX(v) {
272
- this.i.hg = +v;
272
+ this.i.hh = +v;
273
273
  }
274
274
  /**
275
275
  * Gets the snapped Y position of the cell within the content.
276
276
  */
277
277
  get snappedY() {
278
- return this.i.hi;
278
+ return this.i.hj;
279
279
  }
280
280
  set snappedY(v) {
281
- this.i.hi = +v;
281
+ this.i.hj = +v;
282
282
  }
283
283
  /**
284
284
  * Gets or sets the opacity for cells that have unsaved edits.
@@ -329,19 +329,19 @@ export class IgcCellInfo {
329
329
  * Gets the height of the cell.
330
330
  */
331
331
  get height() {
332
- return this.i.f9;
332
+ return this.i.ga;
333
333
  }
334
334
  set height(v) {
335
- this.i.f9 = +v;
335
+ this.i.ga = +v;
336
336
  }
337
337
  /**
338
338
  * Gets the width of the cell.
339
339
  */
340
340
  get width() {
341
- return this.i.h7;
341
+ return this.i.h8;
342
342
  }
343
343
  set width(v) {
344
- this.i.h7 = +v;
344
+ this.i.h8 = +v;
345
345
  }
346
346
  /**
347
347
  * Gets if the cell is selected.
@@ -410,136 +410,136 @@ export class IgcCellInfo {
410
410
  * Gets or sets the background color of the cell.
411
411
  */
412
412
  get background() {
413
- return brushToString(this.i.nj);
413
+ return brushToString(this.i.nm);
414
414
  }
415
415
  set background(v) {
416
- this.i.nj = stringToBrush(v);
416
+ this.i.nm = stringToBrush(v);
417
417
  }
418
418
  /**
419
419
  * Gets or sets the border color of the cell.
420
420
  */
421
421
  get border() {
422
- return brushToString(this.i.nm);
422
+ return brushToString(this.i.np);
423
423
  }
424
424
  set border(v) {
425
- this.i.nm = stringToBrush(v);
425
+ this.i.np = stringToBrush(v);
426
426
  }
427
427
  /**
428
428
  * Gets the actual background color of the cell
429
429
  */
430
430
  get actualBackground() {
431
- return brushToString(this.i.ng);
431
+ return brushToString(this.i.nj);
432
432
  }
433
433
  set actualBackground(v) {
434
- this.i.ng = stringToBrush(v);
434
+ this.i.nj = stringToBrush(v);
435
435
  }
436
436
  /**
437
437
  * Gets the actual background color of the cell
438
438
  */
439
439
  get actualBorder() {
440
- return brushToString(this.i.nh);
440
+ return brushToString(this.i.nk);
441
441
  }
442
442
  set actualBorder(v) {
443
- this.i.nh = stringToBrush(v);
443
+ this.i.nk = stringToBrush(v);
444
444
  }
445
445
  /**
446
446
  * Gets the actual background color of the cell
447
447
  */
448
448
  get activationBorder() {
449
- return brushToString(this.i.nf);
449
+ return brushToString(this.i.ni);
450
450
  }
451
451
  set activationBorder(v) {
452
- this.i.nf = stringToBrush(v);
452
+ this.i.ni = stringToBrush(v);
453
453
  }
454
454
  /**
455
455
  * Gets or sets the error border color of the cell.
456
456
  */
457
457
  get errorBorder() {
458
- return brushToString(this.i.no);
458
+ return brushToString(this.i.nr);
459
459
  }
460
460
  set errorBorder(v) {
461
- this.i.no = stringToBrush(v);
461
+ this.i.nr = stringToBrush(v);
462
462
  }
463
463
  /**
464
464
  * Gets or sets the selected background color of the cell.
465
465
  */
466
466
  get selectedBackground() {
467
- return brushToString(this.i.nv);
467
+ return brushToString(this.i.nz);
468
468
  }
469
469
  set selectedBackground(v) {
470
- this.i.nv = stringToBrush(v);
470
+ this.i.nz = stringToBrush(v);
471
471
  }
472
472
  /**
473
473
  * Gets or sets the selected text color of the cell.
474
474
  */
475
475
  get selectedTextColor() {
476
- return brushToString(this.i.nw);
476
+ return brushToString(this.i.n0);
477
477
  }
478
478
  set selectedTextColor(v) {
479
- this.i.nw = stringToBrush(v);
479
+ this.i.n0 = stringToBrush(v);
480
480
  }
481
481
  /**
482
482
  * Gets or sets the hover background color of the cell.
483
483
  */
484
484
  get hoverBackground() {
485
- return brushToString(this.i.nr);
485
+ return brushToString(this.i.nv);
486
486
  }
487
487
  set hoverBackground(v) {
488
- this.i.nr = stringToBrush(v);
488
+ this.i.nv = stringToBrush(v);
489
489
  }
490
490
  /**
491
491
  * Gets or sets the hover text color of the cell.
492
492
  */
493
493
  get hoverTextColor() {
494
- return brushToString(this.i.ns);
494
+ return brushToString(this.i.nw);
495
495
  }
496
496
  set hoverTextColor(v) {
497
- this.i.ns = stringToBrush(v);
497
+ this.i.nw = stringToBrush(v);
498
498
  }
499
499
  /**
500
500
  * Gets or sets the color for the sort indicator icon.
501
501
  */
502
502
  get sortIndicatorColor() {
503
- return brushToString(this.i.nx);
503
+ return brushToString(this.i.n1);
504
504
  }
505
505
  set sortIndicatorColor(v) {
506
- this.i.nx = stringToBrush(v);
506
+ this.i.n1 = stringToBrush(v);
507
507
  }
508
508
  /**
509
509
  * Gets or sets the background color for the cell when it is stuck to the top of the grid as a pinned row.
510
510
  */
511
511
  get stickyRowBackground() {
512
- return brushToString(this.i.ny);
512
+ return brushToString(this.i.n2);
513
513
  }
514
514
  set stickyRowBackground(v) {
515
- this.i.ny = stringToBrush(v);
515
+ this.i.n2 = stringToBrush(v);
516
516
  }
517
517
  /**
518
518
  * Gets or sets the background color for the cell that has been marked as pinned.
519
519
  */
520
520
  get pinnedRowBackground() {
521
- return brushToString(this.i.nu);
521
+ return brushToString(this.i.ny);
522
522
  }
523
523
  set pinnedRowBackground(v) {
524
- this.i.nu = stringToBrush(v);
524
+ this.i.ny = stringToBrush(v);
525
525
  }
526
526
  /**
527
527
  * Gets or sets the color for the last row in the sticky row area.
528
528
  */
529
529
  get lastStickyRowBackground() {
530
- return brushToString(this.i.nt);
530
+ return brushToString(this.i.nx);
531
531
  }
532
532
  set lastStickyRowBackground(v) {
533
- this.i.nt = stringToBrush(v);
533
+ this.i.nx = stringToBrush(v);
534
534
  }
535
535
  /**
536
536
  * Gets or sets the background color for filter row.
537
537
  */
538
538
  get filterRowBackground() {
539
- return brushToString(this.i.np);
539
+ return brushToString(this.i.nt);
540
540
  }
541
541
  set filterRowBackground(v) {
542
- this.i.np = stringToBrush(v);
542
+ this.i.nt = stringToBrush(v);
543
543
  }
544
544
  /**
545
545
  * Gets or sets the color to use for displaying text.
@@ -554,55 +554,55 @@ export class IgcCellInfo {
554
554
  * Gets or sets the original value for the cell, before processing.
555
555
  */
556
556
  get originalValue() {
557
- return this.i.ih;
557
+ return this.i.ii;
558
558
  }
559
559
  set originalValue(v) {
560
- this.i.ih = v;
560
+ this.i.ii = v;
561
561
  }
562
562
  /**
563
563
  * Gets or sets the text value, if any, which was rendered by a text cell.
564
564
  */
565
565
  get renderValue() {
566
- return this.i.kz;
566
+ return this.i.k1;
567
567
  }
568
568
  set renderValue(v) {
569
- this.i.kz = v;
569
+ this.i.k1 = v;
570
570
  }
571
571
  /**
572
572
  * If set, this text will be used when rendering the cell value.
573
573
  */
574
574
  get userFormattedValue() {
575
- return this.i.lw;
575
+ return this.i.ly;
576
576
  }
577
577
  set userFormattedValue(v) {
578
- this.i.lw = v;
578
+ this.i.ly = v;
579
579
  }
580
580
  /**
581
581
  * Gets or sets the color of the text for the cell, if any.
582
582
  */
583
583
  get textColor() {
584
- return brushToString(this.i.n2);
584
+ return brushToString(this.i.n6);
585
585
  }
586
586
  set textColor(v) {
587
- this.i.n2 = stringToBrush(v);
587
+ this.i.n6 = stringToBrush(v);
588
588
  }
589
589
  /**
590
590
  * Gets the actual color of the text for the cell, if any.
591
591
  */
592
592
  get actualTextColor() {
593
- return brushToString(this.i.ni);
593
+ return brushToString(this.i.nl);
594
594
  }
595
595
  set actualTextColor(v) {
596
- this.i.ni = stringToBrush(v);
596
+ this.i.nl = stringToBrush(v);
597
597
  }
598
598
  /**
599
599
  * Gets or sets the text color for cells in deleted rows.
600
600
  */
601
601
  get deletedTextColor() {
602
- return brushToString(this.i.nn);
602
+ return brushToString(this.i.nq);
603
603
  }
604
604
  set deletedTextColor(v) {
605
- this.i.nn = stringToBrush(v);
605
+ this.i.nq = stringToBrush(v);
606
606
  }
607
607
  get font() {
608
608
  if (this.i.aj == null) {
@@ -630,19 +630,19 @@ export class IgcCellInfo {
630
630
  * Gets or sets the text to display in the suffix area of the cell.
631
631
  */
632
632
  get suffixText() {
633
- return this.i.ln;
633
+ return this.i.lp;
634
634
  }
635
635
  set suffixText(v) {
636
- this.i.ln = v;
636
+ this.i.lp = v;
637
637
  }
638
638
  /**
639
639
  * Gets or sets the color of the suffix text for the cell, if any.
640
640
  */
641
641
  get suffixTextColor() {
642
- return brushToString(this.i.n1);
642
+ return brushToString(this.i.n5);
643
643
  }
644
644
  set suffixTextColor(v) {
645
- this.i.n1 = stringToBrush(v);
645
+ this.i.n5 = stringToBrush(v);
646
646
  }
647
647
  get suffixTextFont() {
648
648
  if (this.i.ak == null) {
@@ -659,37 +659,37 @@ export class IgcCellInfo {
659
659
  * Gets or sets the icon to display in the suffix area of the cell.
660
660
  */
661
661
  get suffixIconName() {
662
- return this.i.lf;
662
+ return this.i.lh;
663
663
  }
664
664
  set suffixIconName(v) {
665
- this.i.lf = v;
665
+ this.i.lh = v;
666
666
  }
667
667
  /**
668
668
  * Gets or sets the icon to display in the suffix area of the cell.
669
669
  */
670
670
  get suffixIconCollectionName() {
671
- return this.i.lc;
671
+ return this.i.le;
672
672
  }
673
673
  set suffixIconCollectionName(v) {
674
- this.i.lc = v;
674
+ this.i.le = v;
675
675
  }
676
676
  /**
677
677
  * Gets or sets the stroke color of the suffix icon.
678
678
  */
679
679
  get suffixIconStroke() {
680
- return brushToString(this.i.n0);
680
+ return brushToString(this.i.n4);
681
681
  }
682
682
  set suffixIconStroke(v) {
683
- this.i.n0 = stringToBrush(v);
683
+ this.i.n4 = stringToBrush(v);
684
684
  }
685
685
  /**
686
686
  * Gets or sets the fill color of the suffix icon.
687
687
  */
688
688
  get suffixIconFill() {
689
- return brushToString(this.i.nz);
689
+ return brushToString(this.i.n3);
690
690
  }
691
691
  set suffixIconFill(v) {
692
- this.i.nz = stringToBrush(v);
692
+ this.i.n3 = stringToBrush(v);
693
693
  }
694
694
  /**
695
695
  * Gets or sets the suffix icon's viewbox x coordinate.
@@ -767,37 +767,37 @@ export class IgcCellInfo {
767
767
  * Gets or sets the left padding to use for the content.
768
768
  */
769
769
  get paddingLeft() {
770
- return this.i.g1;
770
+ return this.i.g2;
771
771
  }
772
772
  set paddingLeft(v) {
773
- this.i.g1 = +v;
773
+ this.i.g2 = +v;
774
774
  }
775
775
  /**
776
776
  * Gets or sets the top padding to use for the content.
777
777
  */
778
778
  get paddingTop() {
779
- return this.i.g5;
779
+ return this.i.g6;
780
780
  }
781
781
  set paddingTop(v) {
782
- this.i.g5 = +v;
782
+ this.i.g6 = +v;
783
783
  }
784
784
  /**
785
785
  * Gets or sets the right padding to use for the content.
786
786
  */
787
787
  get paddingRight() {
788
- return this.i.g3;
788
+ return this.i.g4;
789
789
  }
790
790
  set paddingRight(v) {
791
- this.i.g3 = +v;
791
+ this.i.g4 = +v;
792
792
  }
793
793
  /**
794
794
  * Gets or sets the bottom padding to use for the content.
795
795
  */
796
796
  get paddingBottom() {
797
- return this.i.gz;
797
+ return this.i.g0;
798
798
  }
799
799
  set paddingBottom(v) {
800
- this.i.gz = +v;
800
+ this.i.g0 = +v;
801
801
  }
802
802
  /**
803
803
  * Gets or sets the left padding to use for the content.
@@ -1006,6 +1006,15 @@ export class IgcCellInfo {
1006
1006
  set isCollapsable(v) {
1007
1007
  this.i.a6 = ensureBool(v);
1008
1008
  }
1009
+ /**
1010
+ * Gets or sets the color used to render the expansion indicator icon for this cell.
1011
+ */
1012
+ get expansionIndicatorIconColor() {
1013
+ return brushToString(this.i.ns);
1014
+ }
1015
+ set expansionIndicatorIconColor(v) {
1016
+ this.i.ns = stringToBrush(v);
1017
+ }
1009
1018
  /**
1010
1019
  * Gets the fixed column position of this cell.
1011
1020
  */
@@ -1048,10 +1057,10 @@ export class IgcCellInfo {
1048
1057
  * Gets or sets the error message for the cell.
1049
1058
  */
1050
1059
  get editError() {
1051
- return this.i.jr;
1060
+ return this.i.js;
1052
1061
  }
1053
1062
  set editError(v) {
1054
- this.i.jr = v;
1063
+ this.i.js = v;
1055
1064
  }
1056
1065
  /**
1057
1066
  * Gets whether the cell is in edit mode.
@@ -1099,7 +1108,7 @@ export class IgcCellInfo {
1099
1108
  return (iv);
1100
1109
  }
1101
1110
  setNamedValue(valueName, value) {
1102
- this.i.mq(valueName, value);
1111
+ this.i.ms(valueName, value);
1103
1112
  }
1104
1113
  /**
1105
1114
  * Returns if there is a named value stored for the cell.
@@ -1116,7 +1125,7 @@ export class IgcCellInfo {
1116
1125
  * @param valueName * The name of the value to remove.
1117
1126
  */
1118
1127
  removeNamedValue(valueName) {
1119
- this.i.mm(valueName);
1128
+ this.i.mo(valueName);
1120
1129
  }
1121
1130
  /**
1122
1131
  * Gets a named value from the cell.
@@ -1124,7 +1133,7 @@ export class IgcCellInfo {
1124
1133
  * @param valueName * The name of the value to get.
1125
1134
  */
1126
1135
  getNamedValue(valueName) {
1127
- let iv = this.i.ie(valueName);
1136
+ let iv = this.i.ig(valueName);
1128
1137
  return (iv);
1129
1138
  }
1130
1139
  }