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
@@ -2441,6 +2441,20 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
2441
2441
  enumerable: false,
2442
2442
  configurable: true
2443
2443
  });
2444
+ Object.defineProperty(IgcDataGridComponent.prototype, "sectionHeaderExpansionIndicatorIconColor", {
2445
+ /**
2446
+ * Gets or sets the color to use for the expansion indicator icon on section header cells. When unset, the icon defers to the section header text color.
2447
+ */
2448
+ get: function () {
2449
+ return brushToString(this.i.sectionHeaderExpansionIndicatorIconColor);
2450
+ },
2451
+ set: function (v) {
2452
+ this.i.sectionHeaderExpansionIndicatorIconColor = stringToBrush(v);
2453
+ this._a("sectionHeaderExpansionIndicatorIconColor", brushToString(this.i.sectionHeaderExpansionIndicatorIconColor));
2454
+ },
2455
+ enumerable: false,
2456
+ configurable: true
2457
+ });
2444
2458
  Object.defineProperty(IgcDataGridComponent.prototype, "sectionHeaderTextStyle", {
2445
2459
  /**
2446
2460
  * Gets or sets the font to use for section header cells
@@ -3513,6 +3527,21 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
3513
3527
  enumerable: false,
3514
3528
  configurable: true
3515
3529
  });
3530
+ Object.defineProperty(IgcDataGridComponent.prototype, "expandCollapseOnSectionHeaderClick", {
3531
+ /**
3532
+ * Gets or sets whether clicking anywhere inside a section header cell toggles the group's expansion state.
3533
+ * When false (the default), only the expansion indicator toggles the group.
3534
+ */
3535
+ get: function () {
3536
+ return this.i.expandCollapseOnSectionHeaderClick;
3537
+ },
3538
+ set: function (v) {
3539
+ this.i.expandCollapseOnSectionHeaderClick = ensureBool(v);
3540
+ this._a("expandCollapseOnSectionHeaderClick", this.i.expandCollapseOnSectionHeaderClick);
3541
+ },
3542
+ enumerable: false,
3543
+ configurable: true
3544
+ });
3516
3545
  Object.defineProperty(IgcDataGridComponent.prototype, "groupSummaryDisplayMode", {
3517
3546
  /**
3518
3547
  * Gets or sets the display mode summaries will use inside groups.
@@ -4063,6 +4092,20 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
4063
4092
  enumerable: false,
4064
4093
  configurable: true
4065
4094
  });
4095
+ Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsToolTipTextColor", {
4096
+ /**
4097
+ * Gets or sets the tooltip text color inside the column options menu.
4098
+ */
4099
+ get: function () {
4100
+ return brushToString(this.i.columnOptionsToolTipTextColor);
4101
+ },
4102
+ set: function (v) {
4103
+ this.i.columnOptionsToolTipTextColor = stringToBrush(v);
4104
+ this._a("columnOptionsToolTipTextColor", brushToString(this.i.columnOptionsToolTipTextColor));
4105
+ },
4106
+ enumerable: false,
4107
+ configurable: true
4108
+ });
4066
4109
  Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsHighlightColor", {
4067
4110
  /**
4068
4111
  * Gets or sets the highlight color inside the column options menu.
@@ -200,11 +200,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
200
200
  });
201
201
  Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "iconColor", {
202
202
  get: function () {
203
- return brushToString(this.i.c1);
203
+ return brushToString(this.i.c4);
204
204
  },
205
205
  set: function (v) {
206
- this.i.c1 = stringToBrush(v);
207
- this._a("iconColor", brushToString(this.i.c1));
206
+ this.i.c4 = stringToBrush(v);
207
+ this._a("iconColor", brushToString(this.i.c4));
208
208
  },
209
209
  enumerable: false,
210
210
  configurable: true
@@ -225,11 +225,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
225
225
  * Gets or sets the column options dropdown background color.
226
226
  */
227
227
  get: function () {
228
- return brushToString(this.i.ct);
228
+ return brushToString(this.i.cv);
229
229
  },
230
230
  set: function (v) {
231
- this.i.ct = stringToBrush(v);
232
- this._a("columnOptionsBackground", brushToString(this.i.ct));
231
+ this.i.cv = stringToBrush(v);
232
+ this._a("columnOptionsBackground", brushToString(this.i.cv));
233
233
  },
234
234
  enumerable: false,
235
235
  configurable: true
@@ -239,11 +239,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
239
239
  * Gets or sets the text color for text inside the column options menu.
240
240
  */
241
241
  get: function () {
242
- return brushToString(this.i.cz);
242
+ return brushToString(this.i.c1);
243
243
  },
244
244
  set: function (v) {
245
- this.i.cz = stringToBrush(v);
246
- this._a("columnOptionsTextColor", brushToString(this.i.cz));
245
+ this.i.c1 = stringToBrush(v);
246
+ this._a("columnOptionsTextColor", brushToString(this.i.c1));
247
247
  },
248
248
  enumerable: false,
249
249
  configurable: true
@@ -272,11 +272,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
272
272
  * Gets or sets the hover background color inside the column options menu.
273
273
  */
274
274
  get: function () {
275
- return brushToString(this.i.cx);
275
+ return brushToString(this.i.cz);
276
276
  },
277
277
  set: function (v) {
278
- this.i.cx = stringToBrush(v);
279
- this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.cx));
278
+ this.i.cz = stringToBrush(v);
279
+ this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.cz));
280
280
  },
281
281
  enumerable: false,
282
282
  configurable: true
@@ -286,11 +286,25 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
286
286
  * Gets or sets the tooltip background color inside the column options menu.
287
287
  */
288
288
  get: function () {
289
- return brushToString(this.i.c0);
289
+ return brushToString(this.i.c2);
290
290
  },
291
291
  set: function (v) {
292
- this.i.c0 = stringToBrush(v);
293
- this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.c0));
292
+ this.i.c2 = stringToBrush(v);
293
+ this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.c2));
294
+ },
295
+ enumerable: false,
296
+ configurable: true
297
+ });
298
+ Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "columnOptionsToolTipTextColor", {
299
+ /**
300
+ * Gets or sets the tooltip text color inside the column options menu.
301
+ */
302
+ get: function () {
303
+ return brushToString(this.i.c3);
304
+ },
305
+ set: function (v) {
306
+ this.i.c3 = stringToBrush(v);
307
+ this._a("columnOptionsToolTipTextColor", brushToString(this.i.c3));
294
308
  },
295
309
  enumerable: false,
296
310
  configurable: true
@@ -300,11 +314,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
300
314
  * Gets or sets the highlight color inside the column options menu.
301
315
  */
302
316
  get: function () {
303
- return brushToString(this.i.cw);
317
+ return brushToString(this.i.cy);
304
318
  },
305
319
  set: function (v) {
306
- this.i.cw = stringToBrush(v);
307
- this._a("columnOptionsHighlightColor", brushToString(this.i.cw));
320
+ this.i.cy = stringToBrush(v);
321
+ this._a("columnOptionsHighlightColor", brushToString(this.i.cy));
308
322
  },
309
323
  enumerable: false,
310
324
  configurable: true
@@ -314,11 +328,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
314
328
  * Gets or sets the color of separators inside the column options menu.
315
329
  */
316
330
  get: function () {
317
- return brushToString(this.i.cy);
331
+ return brushToString(this.i.c0);
318
332
  },
319
333
  set: function (v) {
320
- this.i.cy = stringToBrush(v);
321
- this._a("columnOptionsSeparatorColor", brushToString(this.i.cy));
334
+ this.i.c0 = stringToBrush(v);
335
+ this._a("columnOptionsSeparatorColor", brushToString(this.i.c0));
322
336
  },
323
337
  enumerable: false,
324
338
  configurable: true
@@ -328,11 +342,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
328
342
  * Gets or sets the background color for group headers inside the column options menu.
329
343
  */
330
344
  get: function () {
331
- return brushToString(this.i.cu);
345
+ return brushToString(this.i.cw);
332
346
  },
333
347
  set: function (v) {
334
- this.i.cu = stringToBrush(v);
335
- this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.cu));
348
+ this.i.cw = stringToBrush(v);
349
+ this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.cw));
336
350
  },
337
351
  enumerable: false,
338
352
  configurable: true
@@ -342,11 +356,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
342
356
  * Gets or sets the text color for group headers inside the column options menu.
343
357
  */
344
358
  get: function () {
345
- return brushToString(this.i.cv);
359
+ return brushToString(this.i.cx);
346
360
  },
347
361
  set: function (v) {
348
- this.i.cv = stringToBrush(v);
349
- this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.cv));
362
+ this.i.cx = stringToBrush(v);
363
+ this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.cx));
350
364
  },
351
365
  enumerable: false,
352
366
  configurable: true
@@ -372,11 +386,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
372
386
  });
373
387
  Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "columnOptionsAccentColor", {
374
388
  get: function () {
375
- return brushToString(this.i.cs);
389
+ return brushToString(this.i.cu);
376
390
  },
377
391
  set: function (v) {
378
- this.i.cs = stringToBrush(v);
379
- this._a("columnOptionsAccentColor", brushToString(this.i.cs));
392
+ this.i.cu = stringToBrush(v);
393
+ this._a("columnOptionsAccentColor", brushToString(this.i.cu));
380
394
  },
381
395
  enumerable: false,
382
396
  configurable: true
@@ -488,16 +502,16 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
488
502
  this._inStyling = false;
489
503
  };
490
504
  IgcDataGridFilterDialogComponent.prototype.notifySizeChanged = function (width, height) {
491
- this.i.b1(width, height);
505
+ this.i.b2(width, height);
492
506
  };
493
507
  IgcDataGridFilterDialogComponent.prototype.notifyCellSizeChanged = function () {
494
- this.i.b0();
508
+ this.i.b1();
495
509
  };
496
510
  IgcDataGridFilterDialogComponent.prototype.showIcon = function () {
497
- this.i.ce();
511
+ this.i.cf();
498
512
  };
499
513
  IgcDataGridFilterDialogComponent.prototype.hideIcon = function () {
500
- this.i.by();
514
+ this.i.bz();
501
515
  };
502
516
  IgcDataGridFilterDialogComponent.prototype.getDesiredToolbarActions = function () {
503
517
  var iv = this.i.getDesiredToolbarActions();
@@ -29,10 +29,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the DateTime value for the cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.of;
32
+ return this.i.oj;
33
33
  },
34
34
  set: function (v) {
35
- this.i.of = v;
35
+ this.i.oj = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,24 +42,24 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * The format string to apply to the value
43
43
  */
44
44
  get: function () {
45
- return this.i.ow;
45
+ return this.i.o0;
46
46
  },
47
47
  set: function (v) {
48
- this.i.ow = v;
48
+ this.i.o0 = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
52
52
  });
53
53
  Object.defineProperty(IgcDateTimeCellInfo.prototype, "formatSpecifiers", {
54
54
  get: function () {
55
- return this.i.n6;
55
+ return this.i.oa;
56
56
  },
57
57
  set: function (v) {
58
58
  if (v && !Array.isArray(v) && typeof (v) == "string") {
59
59
  var re = /\s*(?:,|\s|$)\s*/gm;
60
60
  v = v.split(re);
61
61
  }
62
- this.i.n6 = v;
62
+ this.i.oa = v;
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -69,10 +69,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
69
69
  * The format options to apply to the value
70
70
  */
71
71
  get: function () {
72
- return this.i.op;
72
+ return this.i.ot;
73
73
  },
74
74
  set: function (v) {
75
- this.i.op = v;
75
+ this.i.ot = v;
76
76
  },
77
77
  enumerable: false,
78
78
  configurable: true
@@ -82,10 +82,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
82
82
  * Sets or gets the simple DateTimeFormat to use for the cell.
83
83
  */
84
84
  get: function () {
85
- return this.i.ob;
85
+ return this.i.of;
86
86
  },
87
87
  set: function (v) {
88
- this.i.ob = ensureEnum(DateTimeFormats_$type, v);
88
+ this.i.of = ensureEnum(DateTimeFormats_$type, v);
89
89
  },
90
90
  enumerable: false,
91
91
  configurable: true
@@ -95,10 +95,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
95
95
  * Sets or gets whether the value to use is a DateTimeOffset value.
96
96
  */
97
97
  get: function () {
98
- return this.i.od;
98
+ return this.i.oh;
99
99
  },
100
100
  set: function (v) {
101
- this.i.od = ensureBool(v);
101
+ this.i.oh = ensureBool(v);
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -80,11 +80,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
80
80
  * Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
81
81
  */
82
82
  get: function () {
83
- return this.i.r9;
83
+ return this.i.sj;
84
84
  },
85
85
  set: function (v) {
86
- this.i.r9 = ensureEnum(DateTimeFormats_$type, v);
87
- this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.r9));
86
+ this.i.sj = ensureEnum(DateTimeFormats_$type, v);
87
+ this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.sj));
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,10 +94,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
94
94
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
95
95
  */
96
96
  get: function () {
97
- return this.i.sr;
97
+ return this.i.s1;
98
98
  },
99
99
  set: function (v) {
100
- this.i.sr = v;
100
+ this.i.s1 = v;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
@@ -107,24 +107,24 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
107
107
  * Gets or sets the format string to use when editing dates.
108
108
  */
109
109
  get: function () {
110
- return this.i.sk;
110
+ return this.i.su;
111
111
  },
112
112
  set: function (v) {
113
- this.i.sk = v;
113
+ this.i.su = v;
114
114
  },
115
115
  enumerable: false,
116
116
  configurable: true
117
117
  });
118
118
  Object.defineProperty(IgcDateTimeColumnComponent.prototype, "formatSpecifiers", {
119
119
  get: function () {
120
- return this.i.r5;
120
+ return this.i.sf;
121
121
  },
122
122
  set: function (v) {
123
123
  if (v && !Array.isArray(v) && typeof (v) == "string") {
124
124
  var re = /\s*(?:,|\s|$)\s*/gm;
125
125
  v = v.split(re);
126
126
  }
127
- this.i.r5 = v;
127
+ this.i.sf = v;
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,10 +134,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
134
134
  * Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
135
135
  */
136
136
  get: function () {
137
- return this.i.sg;
137
+ return this.i.sq;
138
138
  },
139
139
  set: function (v) {
140
- this.i.sg = v;
140
+ this.i.sq = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
@@ -147,11 +147,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
147
147
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
148
148
  */
149
149
  get: function () {
150
- return this.i.sc;
150
+ return this.i.sm;
151
151
  },
152
152
  set: function (v) {
153
- this.i.sc = ensureBool(v);
154
- this._a("showTodayButton", this.i.sc);
153
+ this.i.sm = ensureBool(v);
154
+ this._a("showTodayButton", this.i.sm);
155
155
  },
156
156
  enumerable: false,
157
157
  configurable: true
@@ -161,11 +161,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
161
161
  * Gets or sets the editor type used for editing cells in this column.
162
162
  */
163
163
  get: function () {
164
- return this.i.sa;
164
+ return this.i.sk;
165
165
  },
166
166
  set: function (v) {
167
- this.i.sa = ensureEnum(EditorType_$type, v);
168
- this._a("editorType", enumToString(EditorType_$type, this.i.sa));
167
+ this.i.sk = ensureEnum(EditorType_$type, v);
168
+ this._a("editorType", enumToString(EditorType_$type, this.i.sk));
169
169
  },
170
170
  enumerable: false,
171
171
  configurable: true
@@ -175,10 +175,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
175
175
  * Gets or sets the ComboBox data source.
176
176
  */
177
177
  get: function () {
178
- return this.i.sf;
178
+ return this.i.sp;
179
179
  },
180
180
  set: function (v) {
181
- this.i.sf = v;
181
+ this.i.sp = v;
182
182
  },
183
183
  enumerable: false,
184
184
  configurable: true
@@ -188,10 +188,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
188
188
  * Gets or sets the ComboBox text field.
189
189
  */
190
190
  get: function () {
191
- return this.i.sm;
191
+ return this.i.sw;
192
192
  },
193
193
  set: function (v) {
194
- this.i.sm = v;
194
+ this.i.sw = v;
195
195
  },
196
196
  enumerable: false,
197
197
  configurable: true
@@ -201,10 +201,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
201
201
  * Gets or sets the ComboBox value field.
202
202
  */
203
203
  get: function () {
204
- return this.i.sn;
204
+ return this.i.sx;
205
205
  },
206
206
  set: function (v) {
207
- this.i.sn = v;
207
+ this.i.sx = v;
208
208
  },
209
209
  enumerable: false,
210
210
  configurable: true
@@ -30,7 +30,7 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
30
30
  * Gets whether the editor cell is hidden or not.
31
31
  */
32
32
  get: function () {
33
- return this.i.oh;
33
+ return this.i.ol;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -40,14 +40,14 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
40
40
  * Gets or sets the edit target for this cell.
41
41
  */
42
42
  get: function () {
43
- var r = this.i.oa;
43
+ var r = this.i.oe;
44
44
  if (r == null) {
45
45
  return null;
46
46
  }
47
47
  return r.externalObject;
48
48
  },
49
49
  set: function (v) {
50
- v == null ? this.i.oa = null : this.i.oa = v.i;
50
+ v == null ? this.i.oe = null : this.i.oe = v.i;
51
51
  },
52
52
  enumerable: false,
53
53
  configurable: true
@@ -57,10 +57,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
57
57
  * Gets or sets the data type associated with the cell being edited.
58
58
  */
59
59
  get: function () {
60
- return this.i.n8;
60
+ return this.i.oc;
61
61
  },
62
62
  set: function (v) {
63
- this.i.n8 = ensureEnum(DataSourceSchemaPropertyType_$type, v);
63
+ this.i.oc = ensureEnum(DataSourceSchemaPropertyType_$type, v);
64
64
  },
65
65
  enumerable: false,
66
66
  configurable: true
@@ -70,10 +70,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
70
70
  * Gets or sets the error message to display in the editor cell.
71
71
  */
72
72
  get: function () {
73
- return this.i.pd;
73
+ return this.i.ph;
74
74
  },
75
75
  set: function (v) {
76
- this.i.pd = v;
76
+ this.i.ph = v;
77
77
  },
78
78
  enumerable: false,
79
79
  configurable: true
@@ -83,10 +83,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
83
83
  * Gets or sets the user selected value.
84
84
  */
85
85
  get: function () {
86
- return this.i.o0;
86
+ return this.i.o4;
87
87
  },
88
88
  set: function (v) {
89
- this.i.o0 = v;
89
+ this.i.o4 = v;
90
90
  },
91
91
  enumerable: false,
92
92
  configurable: true
@@ -96,10 +96,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
96
96
  * Gets or sets the type of editor to use while cell editing.
97
97
  */
98
98
  get: function () {
99
- return this.i.oc;
99
+ return this.i.og;
100
100
  },
101
101
  set: function (v) {
102
- this.i.oc = ensureEnum(EditorType_$type, v);
102
+ this.i.og = ensureEnum(EditorType_$type, v);
103
103
  },
104
104
  enumerable: false,
105
105
  configurable: true
@@ -109,10 +109,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
109
109
  * Gets or sets the data source to use for the editor where it makes sense.
110
110
  */
111
111
  get: function () {
112
- return this.i.oz;
112
+ return this.i.o3;
113
113
  },
114
114
  set: function (v) {
115
- this.i.oz = v;
115
+ this.i.o3 = v;
116
116
  },
117
117
  enumerable: false,
118
118
  configurable: true
@@ -122,10 +122,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
122
122
  * Gets or sets the editors display member.
123
123
  */
124
124
  get: function () {
125
- return this.i.o8;
125
+ return this.i.pc;
126
126
  },
127
127
  set: function (v) {
128
- this.i.o8 = v;
128
+ this.i.pc = v;
129
129
  },
130
130
  enumerable: false,
131
131
  configurable: true
@@ -135,34 +135,34 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
135
135
  * Gets or sets the editors value member.
136
136
  */
137
137
  get: function () {
138
- return this.i.n6;
138
+ return this.i.oa;
139
139
  },
140
140
  set: function (v) {
141
141
  if (v && !Array.isArray(v) && typeof (v) == "string") {
142
142
  var re = /\s*(?:,|\s|$)\s*/gm;
143
143
  v = v.split(re);
144
144
  }
145
- this.i.n6 = v;
145
+ this.i.oa = v;
146
146
  },
147
147
  enumerable: false,
148
148
  configurable: true
149
149
  });
150
150
  Object.defineProperty(IgcEditorCellInfo.prototype, "dateFormatString", {
151
151
  get: function () {
152
- return this.i.o5;
152
+ return this.i.o9;
153
153
  },
154
154
  set: function (v) {
155
- this.i.o5 = v;
155
+ this.i.o9 = v;
156
156
  },
157
157
  enumerable: false,
158
158
  configurable: true
159
159
  });
160
160
  Object.defineProperty(IgcEditorCellInfo.prototype, "showTodayButton", {
161
161
  get: function () {
162
- return this.i.oi;
162
+ return this.i.om;
163
163
  },
164
164
  set: function (v) {
165
- this.i.oi = ensureBool(v);
165
+ this.i.om = ensureBool(v);
166
166
  },
167
167
  enumerable: false,
168
168
  configurable: true
@@ -172,7 +172,7 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
172
172
  * Gets the row index that the editor cell is targeting for edit.
173
173
  */
174
174
  get: function () {
175
- return this.i.ox;
175
+ return this.i.o1;
176
176
  },
177
177
  enumerable: false,
178
178
  configurable: true
@@ -182,7 +182,7 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
182
182
  * Gets the column index that the editor cell is targeting for edit.
183
183
  */
184
184
  get: function () {
185
- return this.i.ow;
185
+ return this.i.o0;
186
186
  },
187
187
  enumerable: false,
188
188
  configurable: true