igniteui-webcomponents-data-grids 7.1.0-alpha.2 → 7.1.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 (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  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 +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  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-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -87,7 +87,7 @@ let TextIconSetConditionalStyle = /*@__PURE__*/ (() => {
87
87
  i.cs = "FontInfo";
88
88
  i.aj = ((() => {
89
89
  let $ret = new GridConditionalStyleFontInfo();
90
- $ret.textStyle = GridStyleRepository.d(this.g.grid.theme, 33);
90
+ $ret.textStyle = GridStyleRepository.d(this.g.grid.theme, 34);
91
91
  return $ret;
92
92
  })());
93
93
  h.properties.add(i);
@@ -11,56 +11,56 @@ let VerticalSeparatorCell = /*@__PURE__*/ (() => {
11
11
  class VerticalSeparatorCell extends GridCellBase {
12
12
  constructor(a) {
13
13
  super(a);
14
- this.dx = null;
15
- this.dw = null;
16
- this.dy = 0;
17
- this.dz = 0;
18
- this.dx = a.createElement("div");
19
- this.dx.setRawStyleProperty("position", "absolute");
20
- this.dx.setRawStyleProperty("pointer-events", "none");
21
- this.ar.append(this.dx);
14
+ this.d0 = null;
15
+ this.dz = null;
16
+ this.d1 = 0;
17
+ this.d2 = 0;
18
+ this.d0 = a.createElement("div");
19
+ this.d0.setRawStyleProperty("position", "absolute");
20
+ this.d0.setRawStyleProperty("pointer-events", "none");
21
+ this.ar.append(this.d0);
22
22
  }
23
- cx(a, b, c, d, e) {
23
+ cy(a, b, c, d, e) {
24
24
  if (a == null) {
25
- if (this.dw != null) {
26
- this.dw.remove();
27
- this.dw = null;
25
+ if (this.dz != null) {
26
+ this.dz.remove();
27
+ this.dz = null;
28
28
  }
29
29
  }
30
30
  else {
31
- this.d0();
32
- this.dy = b;
33
- this.dz = d;
31
+ this.d3();
32
+ this.d1 = b;
33
+ this.d2 = d;
34
34
  }
35
- this.d1();
35
+ this.d4();
36
36
  }
37
- dc(a, b) {
38
- super.dc(a, b);
39
- this.d1();
37
+ dd(a, b) {
38
+ super.dd(a, b);
39
+ this.d4();
40
40
  }
41
- cw(a) {
42
- this.dx.setRawStyleProperty("background-color", a.colorString);
41
+ cx(a) {
42
+ this.d0.setRawStyleProperty("background-color", a.colorString);
43
43
  }
44
- d1() {
45
- if (this.dw != null) {
46
- this.dx.setRawStyleProperty("height", "100%");
47
- this.dx.setRawStyleProperty("width", this.ar.width() - (this.dy + this.dz) + "px");
48
- this.dx.setRawStyleProperty("left", intDivide(this.ar.width(), 2) + "px");
49
- this.dw.setRawStyleProperty("width", "100%");
50
- this.dw.setRawStyleProperty("height", "100%");
44
+ d4() {
45
+ if (this.dz != null) {
46
+ this.d0.setRawStyleProperty("height", "100%");
47
+ this.d0.setRawStyleProperty("width", this.ar.width() - (this.d1 + this.d2) + "px");
48
+ this.d0.setRawStyleProperty("left", intDivide(this.ar.width(), 2) + "px");
49
+ this.dz.setRawStyleProperty("width", "100%");
50
+ this.dz.setRawStyleProperty("height", "100%");
51
51
  }
52
52
  else {
53
- this.dx.setRawStyleProperty("height", "100%");
54
- this.dx.setRawStyleProperty("width", this.ar.width() + "px");
55
- this.dx.setRawStyleProperty("left", "0px");
53
+ this.d0.setRawStyleProperty("height", "100%");
54
+ this.d0.setRawStyleProperty("width", this.ar.width() + "px");
55
+ this.d0.setRawStyleProperty("left", "0px");
56
56
  }
57
57
  }
58
- d0() {
59
- if (this.dw == null) {
60
- this.dw = this.am.createElement("div");
61
- this.dw.setRawStyleProperty("position", "absolute");
62
- this.dw.setRawStyleProperty("background-color", "rgba(0,0,0,0)");
63
- this.ar.getNativeElement().insertBefore(this.dw.getNativeElement(), this.dx.getNativeElement());
58
+ d3() {
59
+ if (this.dz == null) {
60
+ this.dz = this.am.createElement("div");
61
+ this.dz.setRawStyleProperty("position", "absolute");
62
+ this.dz.setRawStyleProperty("background-color", "rgba(0,0,0,0)");
63
+ this.ar.getNativeElement().insertBefore(this.dz.getNativeElement(), this.d0.getNativeElement());
64
64
  }
65
65
  }
66
66
  }
@@ -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.k9;
86
+ return this.i.ld;
87
87
  }
88
88
  set styleKey(v) {
89
- this.i.k9 = 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.ih;
242
+ return this.i.ij;
243
243
  }
244
244
  set rowItem(v) {
245
- this.i.ih = 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.hf;
269
+ return this.i.hh;
270
270
  }
271
271
  set snappedX(v) {
272
- this.i.hf = +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.hh;
278
+ return this.i.hj;
279
279
  }
280
280
  set snappedY(v) {
281
- this.i.hh = +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.h6;
341
+ return this.i.h8;
342
342
  }
343
343
  set width(v) {
344
- this.i.h6 = +v;
344
+ this.i.h8 = +v;
345
345
  }
346
346
  /**
347
347
  * Gets if the cell is selected.
@@ -410,127 +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.ng);
413
+ return brushToString(this.i.nm);
414
414
  }
415
415
  set background(v) {
416
- this.i.ng = 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.nj);
422
+ return brushToString(this.i.np);
423
423
  }
424
424
  set border(v) {
425
- this.i.nj = 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.nd);
431
+ return brushToString(this.i.nj);
432
432
  }
433
433
  set actualBackground(v) {
434
- this.i.nd = 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.ne);
440
+ return brushToString(this.i.nk);
441
441
  }
442
442
  set actualBorder(v) {
443
- this.i.ne = 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.nc);
449
+ return brushToString(this.i.ni);
450
450
  }
451
451
  set activationBorder(v) {
452
- this.i.nc = 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.nl);
458
+ return brushToString(this.i.nr);
459
459
  }
460
460
  set errorBorder(v) {
461
- this.i.nl = 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.ns);
467
+ return brushToString(this.i.nz);
468
468
  }
469
469
  set selectedBackground(v) {
470
- this.i.ns = stringToBrush(v);
470
+ this.i.nz = stringToBrush(v);
471
+ }
472
+ /**
473
+ * Gets or sets the selected text color of the cell.
474
+ */
475
+ get selectedTextColor() {
476
+ return brushToString(this.i.n0);
477
+ }
478
+ set selectedTextColor(v) {
479
+ this.i.n0 = stringToBrush(v);
471
480
  }
472
481
  /**
473
482
  * Gets or sets the hover background color of the cell.
474
483
  */
475
484
  get hoverBackground() {
476
- return brushToString(this.i.no);
485
+ return brushToString(this.i.nv);
477
486
  }
478
487
  set hoverBackground(v) {
479
- this.i.no = stringToBrush(v);
488
+ this.i.nv = stringToBrush(v);
480
489
  }
481
490
  /**
482
491
  * Gets or sets the hover text color of the cell.
483
492
  */
484
493
  get hoverTextColor() {
485
- return brushToString(this.i.np);
494
+ return brushToString(this.i.nw);
486
495
  }
487
496
  set hoverTextColor(v) {
488
- this.i.np = stringToBrush(v);
497
+ this.i.nw = stringToBrush(v);
489
498
  }
490
499
  /**
491
500
  * Gets or sets the color for the sort indicator icon.
492
501
  */
493
502
  get sortIndicatorColor() {
494
- return brushToString(this.i.nt);
503
+ return brushToString(this.i.n1);
495
504
  }
496
505
  set sortIndicatorColor(v) {
497
- this.i.nt = stringToBrush(v);
506
+ this.i.n1 = stringToBrush(v);
498
507
  }
499
508
  /**
500
509
  * Gets or sets the background color for the cell when it is stuck to the top of the grid as a pinned row.
501
510
  */
502
511
  get stickyRowBackground() {
503
- return brushToString(this.i.nu);
512
+ return brushToString(this.i.n2);
504
513
  }
505
514
  set stickyRowBackground(v) {
506
- this.i.nu = stringToBrush(v);
515
+ this.i.n2 = stringToBrush(v);
507
516
  }
508
517
  /**
509
518
  * Gets or sets the background color for the cell that has been marked as pinned.
510
519
  */
511
520
  get pinnedRowBackground() {
512
- return brushToString(this.i.nr);
521
+ return brushToString(this.i.ny);
513
522
  }
514
523
  set pinnedRowBackground(v) {
515
- this.i.nr = stringToBrush(v);
524
+ this.i.ny = stringToBrush(v);
516
525
  }
517
526
  /**
518
527
  * Gets or sets the color for the last row in the sticky row area.
519
528
  */
520
529
  get lastStickyRowBackground() {
521
- return brushToString(this.i.nq);
530
+ return brushToString(this.i.nx);
522
531
  }
523
532
  set lastStickyRowBackground(v) {
524
- this.i.nq = stringToBrush(v);
533
+ this.i.nx = stringToBrush(v);
525
534
  }
526
535
  /**
527
536
  * Gets or sets the background color for filter row.
528
537
  */
529
538
  get filterRowBackground() {
530
- return brushToString(this.i.nm);
539
+ return brushToString(this.i.nt);
531
540
  }
532
541
  set filterRowBackground(v) {
533
- this.i.nm = stringToBrush(v);
542
+ this.i.nt = stringToBrush(v);
534
543
  }
535
544
  /**
536
545
  * Gets or sets the color to use for displaying text.
@@ -545,55 +554,55 @@ export class IgcCellInfo {
545
554
  * Gets or sets the original value for the cell, before processing.
546
555
  */
547
556
  get originalValue() {
548
- return this.i.ig;
557
+ return this.i.ii;
549
558
  }
550
559
  set originalValue(v) {
551
- this.i.ig = v;
560
+ this.i.ii = v;
552
561
  }
553
562
  /**
554
563
  * Gets or sets the text value, if any, which was rendered by a text cell.
555
564
  */
556
565
  get renderValue() {
557
- return this.i.ky;
566
+ return this.i.k1;
558
567
  }
559
568
  set renderValue(v) {
560
- this.i.ky = v;
569
+ this.i.k1 = v;
561
570
  }
562
571
  /**
563
572
  * If set, this text will be used when rendering the cell value.
564
573
  */
565
574
  get userFormattedValue() {
566
- return this.i.lu;
575
+ return this.i.ly;
567
576
  }
568
577
  set userFormattedValue(v) {
569
- this.i.lu = v;
578
+ this.i.ly = v;
570
579
  }
571
580
  /**
572
581
  * Gets or sets the color of the text for the cell, if any.
573
582
  */
574
583
  get textColor() {
575
- return brushToString(this.i.ny);
584
+ return brushToString(this.i.n6);
576
585
  }
577
586
  set textColor(v) {
578
- this.i.ny = stringToBrush(v);
587
+ this.i.n6 = stringToBrush(v);
579
588
  }
580
589
  /**
581
590
  * Gets the actual color of the text for the cell, if any.
582
591
  */
583
592
  get actualTextColor() {
584
- return brushToString(this.i.nf);
593
+ return brushToString(this.i.nl);
585
594
  }
586
595
  set actualTextColor(v) {
587
- this.i.nf = stringToBrush(v);
596
+ this.i.nl = stringToBrush(v);
588
597
  }
589
598
  /**
590
599
  * Gets or sets the text color for cells in deleted rows.
591
600
  */
592
601
  get deletedTextColor() {
593
- return brushToString(this.i.nk);
602
+ return brushToString(this.i.nq);
594
603
  }
595
604
  set deletedTextColor(v) {
596
- this.i.nk = stringToBrush(v);
605
+ this.i.nq = stringToBrush(v);
597
606
  }
598
607
  get font() {
599
608
  if (this.i.aj == null) {
@@ -621,19 +630,19 @@ export class IgcCellInfo {
621
630
  * Gets or sets the text to display in the suffix area of the cell.
622
631
  */
623
632
  get suffixText() {
624
- return this.i.ll;
633
+ return this.i.lp;
625
634
  }
626
635
  set suffixText(v) {
627
- this.i.ll = v;
636
+ this.i.lp = v;
628
637
  }
629
638
  /**
630
639
  * Gets or sets the color of the suffix text for the cell, if any.
631
640
  */
632
641
  get suffixTextColor() {
633
- return brushToString(this.i.nx);
642
+ return brushToString(this.i.n5);
634
643
  }
635
644
  set suffixTextColor(v) {
636
- this.i.nx = stringToBrush(v);
645
+ this.i.n5 = stringToBrush(v);
637
646
  }
638
647
  get suffixTextFont() {
639
648
  if (this.i.ak == null) {
@@ -650,37 +659,37 @@ export class IgcCellInfo {
650
659
  * Gets or sets the icon to display in the suffix area of the cell.
651
660
  */
652
661
  get suffixIconName() {
653
- return this.i.ld;
662
+ return this.i.lh;
654
663
  }
655
664
  set suffixIconName(v) {
656
- this.i.ld = v;
665
+ this.i.lh = v;
657
666
  }
658
667
  /**
659
668
  * Gets or sets the icon to display in the suffix area of the cell.
660
669
  */
661
670
  get suffixIconCollectionName() {
662
- return this.i.la;
671
+ return this.i.le;
663
672
  }
664
673
  set suffixIconCollectionName(v) {
665
- this.i.la = v;
674
+ this.i.le = v;
666
675
  }
667
676
  /**
668
677
  * Gets or sets the stroke color of the suffix icon.
669
678
  */
670
679
  get suffixIconStroke() {
671
- return brushToString(this.i.nw);
680
+ return brushToString(this.i.n4);
672
681
  }
673
682
  set suffixIconStroke(v) {
674
- this.i.nw = stringToBrush(v);
683
+ this.i.n4 = stringToBrush(v);
675
684
  }
676
685
  /**
677
686
  * Gets or sets the fill color of the suffix icon.
678
687
  */
679
688
  get suffixIconFill() {
680
- return brushToString(this.i.nv);
689
+ return brushToString(this.i.n3);
681
690
  }
682
691
  set suffixIconFill(v) {
683
- this.i.nv = stringToBrush(v);
692
+ this.i.n3 = stringToBrush(v);
684
693
  }
685
694
  /**
686
695
  * Gets or sets the suffix icon's viewbox x coordinate.
@@ -758,37 +767,37 @@ export class IgcCellInfo {
758
767
  * Gets or sets the left padding to use for the content.
759
768
  */
760
769
  get paddingLeft() {
761
- return this.i.g1;
770
+ return this.i.g2;
762
771
  }
763
772
  set paddingLeft(v) {
764
- this.i.g1 = +v;
773
+ this.i.g2 = +v;
765
774
  }
766
775
  /**
767
776
  * Gets or sets the top padding to use for the content.
768
777
  */
769
778
  get paddingTop() {
770
- return this.i.g5;
779
+ return this.i.g6;
771
780
  }
772
781
  set paddingTop(v) {
773
- this.i.g5 = +v;
782
+ this.i.g6 = +v;
774
783
  }
775
784
  /**
776
785
  * Gets or sets the right padding to use for the content.
777
786
  */
778
787
  get paddingRight() {
779
- return this.i.g3;
788
+ return this.i.g4;
780
789
  }
781
790
  set paddingRight(v) {
782
- this.i.g3 = +v;
791
+ this.i.g4 = +v;
783
792
  }
784
793
  /**
785
794
  * Gets or sets the bottom padding to use for the content.
786
795
  */
787
796
  get paddingBottom() {
788
- return this.i.gz;
797
+ return this.i.g0;
789
798
  }
790
799
  set paddingBottom(v) {
791
- this.i.gz = +v;
800
+ this.i.g0 = +v;
792
801
  }
793
802
  /**
794
803
  * Gets or sets the left padding to use for the content.
@@ -997,6 +1006,15 @@ export class IgcCellInfo {
997
1006
  set isCollapsable(v) {
998
1007
  this.i.a6 = ensureBool(v);
999
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
+ }
1000
1018
  /**
1001
1019
  * Gets the fixed column position of this cell.
1002
1020
  */
@@ -1039,10 +1057,10 @@ export class IgcCellInfo {
1039
1057
  * Gets or sets the error message for the cell.
1040
1058
  */
1041
1059
  get editError() {
1042
- return this.i.jq;
1060
+ return this.i.js;
1043
1061
  }
1044
1062
  set editError(v) {
1045
- this.i.jq = v;
1063
+ this.i.js = v;
1046
1064
  }
1047
1065
  /**
1048
1066
  * Gets whether the cell is in edit mode.
@@ -1090,7 +1108,7 @@ export class IgcCellInfo {
1090
1108
  return (iv);
1091
1109
  }
1092
1110
  setNamedValue(valueName, value) {
1093
- this.i.mo(valueName, value);
1111
+ this.i.ms(valueName, value);
1094
1112
  }
1095
1113
  /**
1096
1114
  * Returns if there is a named value stored for the cell.
@@ -1107,7 +1125,7 @@ export class IgcCellInfo {
1107
1125
  * @param valueName * The name of the value to remove.
1108
1126
  */
1109
1127
  removeNamedValue(valueName) {
1110
- this.i.mk(valueName);
1128
+ this.i.mo(valueName);
1111
1129
  }
1112
1130
  /**
1113
1131
  * Gets a named value from the cell.
@@ -1115,7 +1133,7 @@ export class IgcCellInfo {
1115
1133
  * @param valueName * The name of the value to get.
1116
1134
  */
1117
1135
  getNamedValue(valueName) {
1118
- let iv = this.i.id(valueName);
1136
+ let iv = this.i.ig(valueName);
1119
1137
  return (iv);
1120
1138
  }
1121
1139
  }
@@ -65,25 +65,25 @@ let IgcColumnMovingSeparatorComponent = /*@__PURE__*/ (() => {
65
65
  * Gets or sets the separator width for this column.
66
66
  */
67
67
  get separatorWidth() {
68
- return this.i.g6;
68
+ return this.i.g7;
69
69
  }
70
70
  set separatorWidth(v) {
71
- this.i.g6 = +v;
72
- this._a("separatorWidth", this.i.g6);
71
+ this.i.g7 = +v;
72
+ this._a("separatorWidth", this.i.g7);
73
73
  }
74
74
  get actualOpacity() {
75
- return this.i.g3;
75
+ return this.i.g4;
76
76
  }
77
77
  set actualOpacity(v) {
78
- this.i.g3 = +v;
79
- this._a("actualOpacity", this.i.g3);
78
+ this.i.g4 = +v;
79
+ this._a("actualOpacity", this.i.g4);
80
80
  }
81
81
  get opacity() {
82
- return this.i.g4;
82
+ return this.i.g5;
83
83
  }
84
84
  set opacity(v) {
85
- this.i.g4 = +v;
86
- this._a("opacity", this.i.g4);
85
+ this.i.g5 = +v;
86
+ this._a("opacity", this.i.g5);
87
87
  }
88
88
  }
89
89
  IgcColumnMovingSeparatorComponent._observedAttributesIgcColumnMovingSeparatorComponent = null;
@@ -62,18 +62,18 @@ let IgcColumnResizingSeparatorComponent = /*@__PURE__*/ (() => {
62
62
  }
63
63
  }
64
64
  get actualOpacity() {
65
- return this.i.g3;
65
+ return this.i.g4;
66
66
  }
67
67
  set actualOpacity(v) {
68
- this.i.g3 = +v;
69
- this._a("actualOpacity", this.i.g3);
68
+ this.i.g4 = +v;
69
+ this._a("actualOpacity", this.i.g4);
70
70
  }
71
71
  get opacity() {
72
- return this.i.g4;
72
+ return this.i.g5;
73
73
  }
74
74
  set opacity(v) {
75
- this.i.g4 = +v;
76
- this._a("opacity", this.i.g4);
75
+ this.i.g5 = +v;
76
+ this._a("opacity", this.i.g5);
77
77
  }
78
78
  }
79
79
  IgcColumnResizingSeparatorComponent._observedAttributesIgcColumnResizingSeparatorComponent = null;