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
@@ -94,11 +94,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
94
94
  * Gets or sets the amount of left padding to use for the cell content for this column.
95
95
  */
96
96
  get: function () {
97
- return this.i.lk;
97
+ return this.i.lm;
98
98
  },
99
99
  set: function (v) {
100
- this.i.lk = +v;
101
- this._a("paddingLeft", this.i.lk);
100
+ this.i.lm = +v;
101
+ this._a("paddingLeft", this.i.lm);
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -108,11 +108,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
108
108
  * Gets or sets the amount of top padding to use for the cell content for this column.
109
109
  */
110
110
  get: function () {
111
- return this.i.lm;
111
+ return this.i.lo;
112
112
  },
113
113
  set: function (v) {
114
- this.i.lm = +v;
115
- this._a("paddingTop", this.i.lm);
114
+ this.i.lo = +v;
115
+ this._a("paddingTop", this.i.lo);
116
116
  },
117
117
  enumerable: false,
118
118
  configurable: true
@@ -122,11 +122,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
122
122
  * Gets or sets the amount of right padding to use for the cell content of this column.
123
123
  */
124
124
  get: function () {
125
- return this.i.ll;
125
+ return this.i.ln;
126
126
  },
127
127
  set: function (v) {
128
- this.i.ll = +v;
129
- this._a("paddingRight", this.i.ll);
128
+ this.i.ln = +v;
129
+ this._a("paddingRight", this.i.ln);
130
130
  },
131
131
  enumerable: false,
132
132
  configurable: true
@@ -136,11 +136,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
136
136
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
137
137
  */
138
138
  get: function () {
139
- return this.i.lj;
139
+ return this.i.ll;
140
140
  },
141
141
  set: function (v) {
142
- this.i.lj = +v;
143
- this._a("paddingBottom", this.i.lj);
142
+ this.i.ll = +v;
143
+ this._a("paddingBottom", this.i.ll);
144
144
  },
145
145
  enumerable: false,
146
146
  configurable: true
@@ -150,10 +150,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
150
150
  * Gets or sets an unique name of the Column
151
151
  */
152
152
  get: function () {
153
- return this.i.n8;
153
+ return this.i.od;
154
154
  },
155
155
  set: function (v) {
156
- this.i.n8 = v;
156
+ this.i.od = v;
157
157
  },
158
158
  enumerable: false,
159
159
  configurable: true
@@ -163,10 +163,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
163
163
  * Gets or sets the key used for the column binding
164
164
  */
165
165
  get: function () {
166
- return this.i.nh;
166
+ return this.i.nl;
167
167
  },
168
168
  set: function (v) {
169
- this.i.nh = v;
169
+ this.i.nl = v;
170
170
  },
171
171
  enumerable: false,
172
172
  configurable: true
@@ -176,10 +176,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
176
176
  * Gets or sets the text displayed in the header of the column
177
177
  */
178
178
  get: function () {
179
- return this.i.no;
179
+ return this.i.ns;
180
180
  },
181
181
  set: function (v) {
182
- this.i.no = v;
182
+ this.i.ns = v;
183
183
  },
184
184
  enumerable: false,
185
185
  configurable: true
@@ -189,10 +189,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
189
189
  * Gets the actual text displayed in the header of the column
190
190
  */
191
191
  get: function () {
192
- return this.i.mj;
192
+ return this.i.mm;
193
193
  },
194
194
  set: function (v) {
195
- this.i.mj = v;
195
+ this.i.mm = v;
196
196
  },
197
197
  enumerable: false,
198
198
  configurable: true
@@ -202,11 +202,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
202
202
  * Gets or sets the background color to use for the cells when they are selected
203
203
  */
204
204
  get: function () {
205
- return brushToString(this.i.rz);
205
+ return brushToString(this.i.r9);
206
206
  },
207
207
  set: function (v) {
208
- this.i.rz = stringToBrush(v);
209
- this._a("selectedBackground", brushToString(this.i.rz));
208
+ this.i.r9 = stringToBrush(v);
209
+ this._a("selectedBackground", brushToString(this.i.r9));
210
210
  },
211
211
  enumerable: false,
212
212
  configurable: true
@@ -216,11 +216,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
216
216
  * Gets the actual background color that is used for the cells when they are selected
217
217
  */
218
218
  get: function () {
219
- return brushToString(this.i.ri);
219
+ return brushToString(this.i.rr);
220
220
  },
221
221
  set: function (v) {
222
- this.i.ri = stringToBrush(v);
223
- this._a("actualSelectedBackground", brushToString(this.i.ri));
222
+ this.i.rr = stringToBrush(v);
223
+ this._a("actualSelectedBackground", brushToString(this.i.rr));
224
224
  },
225
225
  enumerable: false,
226
226
  configurable: true
@@ -230,11 +230,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
230
230
  * Gets or sets the text color to use for the cells when they are selected
231
231
  */
232
232
  get: function () {
233
- return brushToString(this.i.r0);
233
+ return brushToString(this.i.sa);
234
234
  },
235
235
  set: function (v) {
236
- this.i.r0 = stringToBrush(v);
237
- this._a("selectedTextColor", brushToString(this.i.r0));
236
+ this.i.sa = stringToBrush(v);
237
+ this._a("selectedTextColor", brushToString(this.i.sa));
238
238
  },
239
239
  enumerable: false,
240
240
  configurable: true
@@ -244,11 +244,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
244
244
  * Gets the actual text color that is used for the cells when they are selected
245
245
  */
246
246
  get: function () {
247
- return brushToString(this.i.rj);
247
+ return brushToString(this.i.rs);
248
248
  },
249
249
  set: function (v) {
250
- this.i.rj = stringToBrush(v);
251
- this._a("actualSelectedTextColor", brushToString(this.i.rj));
250
+ this.i.rs = stringToBrush(v);
251
+ this._a("actualSelectedTextColor", brushToString(this.i.rs));
252
252
  },
253
253
  enumerable: false,
254
254
  configurable: true
@@ -258,11 +258,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
258
258
  * Gets or sets the background color to use for the cells when the row is hovered.
259
259
  */
260
260
  get: function () {
261
- return brushToString(this.i.rx);
261
+ return brushToString(this.i.r7);
262
262
  },
263
263
  set: function (v) {
264
- this.i.rx = stringToBrush(v);
265
- this._a("rowHoverBackground", brushToString(this.i.rx));
264
+ this.i.r7 = stringToBrush(v);
265
+ this._a("rowHoverBackground", brushToString(this.i.r7));
266
266
  },
267
267
  enumerable: false,
268
268
  configurable: true
@@ -272,11 +272,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
272
272
  * Gets the actual background color that is used for the cells when they are hovered.
273
273
  */
274
274
  get: function () {
275
- return brushToString(this.i.rg);
275
+ return brushToString(this.i.rp);
276
276
  },
277
277
  set: function (v) {
278
- this.i.rg = stringToBrush(v);
279
- this._a("actualHoverBackground", brushToString(this.i.rg));
278
+ this.i.rp = stringToBrush(v);
279
+ this._a("actualHoverBackground", brushToString(this.i.rp));
280
280
  },
281
281
  enumerable: false,
282
282
  configurable: true
@@ -286,11 +286,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
286
286
  * Gets or sets the text color to use for the cells when the row is hovered.
287
287
  */
288
288
  get: function () {
289
- return brushToString(this.i.ry);
289
+ return brushToString(this.i.r8);
290
290
  },
291
291
  set: function (v) {
292
- this.i.ry = stringToBrush(v);
293
- this._a("rowHoverTextColor", brushToString(this.i.ry));
292
+ this.i.r8 = stringToBrush(v);
293
+ this._a("rowHoverTextColor", brushToString(this.i.r8));
294
294
  },
295
295
  enumerable: false,
296
296
  configurable: true
@@ -300,11 +300,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
300
300
  * Gets the actual text color that is used for the cells when they are hovered.
301
301
  */
302
302
  get: function () {
303
- return brushToString(this.i.rh);
303
+ return brushToString(this.i.rq);
304
304
  },
305
305
  set: function (v) {
306
- this.i.rh = stringToBrush(v);
307
- this._a("actualRowHoverTextColor", brushToString(this.i.rh));
306
+ this.i.rq = stringToBrush(v);
307
+ this._a("actualRowHoverTextColor", brushToString(this.i.rq));
308
308
  },
309
309
  enumerable: false,
310
310
  configurable: true
@@ -378,11 +378,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
378
378
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
379
379
  */
380
380
  get: function () {
381
- return this.i.kr;
381
+ return this.i.kt;
382
382
  },
383
383
  set: function (v) {
384
- this.i.kr = +v;
385
- this._a("minWidth", this.i.kr);
384
+ this.i.kt = +v;
385
+ this._a("minWidth", this.i.kt);
386
386
  },
387
387
  enumerable: false,
388
388
  configurable: true
@@ -392,11 +392,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
392
392
  * Gets whether this column was projected from markup/templates and is constrained.
393
393
  */
394
394
  get: function () {
395
- return this.i.j9;
395
+ return this.i.ka;
396
396
  },
397
397
  set: function (v) {
398
- this.i.j9 = ensureBool(v);
399
- this._a("isFromMarkup", this.i.j9);
398
+ this.i.ka = ensureBool(v);
399
+ this._a("isFromMarkup", this.i.ka);
400
400
  },
401
401
  enumerable: false,
402
402
  configurable: true
@@ -406,11 +406,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
406
406
  * Gets whether this column was auto generated.
407
407
  */
408
408
  get: function () {
409
- return this.i.j3;
409
+ return this.i.j4;
410
410
  },
411
411
  set: function (v) {
412
- this.i.j3 = ensureBool(v);
413
- this._a("isAutoGenerated", this.i.j3);
412
+ this.i.j4 = ensureBool(v);
413
+ this._a("isAutoGenerated", this.i.j4);
414
414
  },
415
415
  enumerable: false,
416
416
  configurable: true
@@ -472,11 +472,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
472
472
  * Gets or sets whether filtering is enabled for this column.
473
473
  */
474
474
  get: function () {
475
- return this.i.j8;
475
+ return this.i.j9;
476
476
  },
477
477
  set: function (v) {
478
- this.i.j8 = ensureBool(v);
479
- this._a("isFilteringEnabled", this.i.j8);
478
+ this.i.j9 = ensureBool(v);
479
+ this._a("isFilteringEnabled", this.i.j9);
480
480
  },
481
481
  enumerable: false,
482
482
  configurable: true
@@ -486,11 +486,25 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
486
486
  * Gets or sets whether resizing is enabled for this column.
487
487
  */
488
488
  get: function () {
489
- return this.i.kb;
489
+ return this.i.kc;
490
490
  },
491
491
  set: function (v) {
492
- this.i.kb = ensureBool(v);
493
- this._a("isResizingEnabled", this.i.kb);
492
+ this.i.kc = ensureBool(v);
493
+ this._a("isResizingEnabled", this.i.kc);
494
+ },
495
+ enumerable: false,
496
+ configurable: true
497
+ });
498
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "isSortingEnabled", {
499
+ /**
500
+ * Gets or sets whether sorting is enabled for this column from the UI.
501
+ */
502
+ get: function () {
503
+ return this.i.kd;
504
+ },
505
+ set: function (v) {
506
+ this.i.kd = ensureBool(v);
507
+ this._a("isSortingEnabled", this.i.kd);
494
508
  },
495
509
  enumerable: false,
496
510
  configurable: true
@@ -500,11 +514,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
500
514
  * Gets or sets whether or not a column is hidden from the grid
501
515
  */
502
516
  get: function () {
503
- return this.i.ka;
517
+ return this.i.kb;
504
518
  },
505
519
  set: function (v) {
506
- this.i.ka = ensureBool(v);
507
- this._a("isHidden", this.i.ka);
520
+ this.i.kb = ensureBool(v);
521
+ this._a("isHidden", this.i.kb);
508
522
  },
509
523
  enumerable: false,
510
524
  configurable: true
@@ -514,11 +528,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
514
528
  * Gets or sets if a column should be removed from the grid when it is fully hidden
515
529
  */
516
530
  get: function () {
517
- return this.i.ke;
531
+ return this.i.kg;
518
532
  },
519
533
  set: function (v) {
520
- this.i.ke = ensureBool(v);
521
- this._a("shouldRemoveWhenHidden", this.i.ke);
534
+ this.i.kg = ensureBool(v);
535
+ this._a("shouldRemoveWhenHidden", this.i.kg);
522
536
  },
523
537
  enumerable: false,
524
538
  configurable: true
@@ -584,11 +598,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
584
598
  * Gets the actual column options icon color for this column.
585
599
  */
586
600
  get: function () {
587
- return brushToString(this.i.rb);
601
+ return brushToString(this.i.rj);
588
602
  },
589
603
  set: function (v) {
590
- this.i.rb = stringToBrush(v);
591
- this._a("actualColumnOptionsIconColor", brushToString(this.i.rb));
604
+ this.i.rj = stringToBrush(v);
605
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.rj));
592
606
  },
593
607
  enumerable: false,
594
608
  configurable: true
@@ -598,11 +612,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
598
612
  * Gets or sets the column options icon color for this column.
599
613
  */
600
614
  get: function () {
601
- return brushToString(this.i.rq);
615
+ return brushToString(this.i.rz);
602
616
  },
603
617
  set: function (v) {
604
- this.i.rq = stringToBrush(v);
605
- this._a("columnOptionsIconColor", brushToString(this.i.rq));
618
+ this.i.rz = stringToBrush(v);
619
+ this._a("columnOptionsIconColor", brushToString(this.i.rz));
606
620
  },
607
621
  enumerable: false,
608
622
  configurable: true
@@ -640,11 +654,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
640
654
  * Gets the actual state of the column options for this column.
641
655
  */
642
656
  get: function () {
643
- return this.i.jw;
657
+ return this.i.jx;
644
658
  },
645
659
  set: function (v) {
646
- this.i.jw = ensureBool(v);
647
- this._a("actualIsColumnOptionsEnabled", this.i.jw);
660
+ this.i.jx = ensureBool(v);
661
+ this._a("actualIsColumnOptionsEnabled", this.i.jx);
648
662
  },
649
663
  enumerable: false,
650
664
  configurable: true
@@ -655,11 +669,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
655
669
  * then it will be disabled for the column regardless of what this is set to.
656
670
  */
657
671
  get: function () {
658
- return this.i.j4;
672
+ return this.i.j5;
659
673
  },
660
674
  set: function (v) {
661
- this.i.j4 = ensureBool(v);
662
- this._a("isColumnOptionsEnabled", this.i.j4);
675
+ this.i.j5 = ensureBool(v);
676
+ this._a("isColumnOptionsEnabled", this.i.j5);
663
677
  },
664
678
  enumerable: false,
665
679
  configurable: true
@@ -669,11 +683,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
669
683
  * Gets the actual state of summaries menu in the column options for this column.
670
684
  */
671
685
  get: function () {
672
- return this.i.jy;
686
+ return this.i.jz;
673
687
  },
674
688
  set: function (v) {
675
- this.i.jy = ensureBool(v);
676
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jy);
689
+ this.i.jz = ensureBool(v);
690
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.jz);
677
691
  },
678
692
  enumerable: false,
679
693
  configurable: true
@@ -683,11 +697,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
683
697
  * Gets or sets whether to show the summaries option in the column options menu for this column.
684
698
  */
685
699
  get: function () {
686
- return this.i.j6;
700
+ return this.i.j7;
687
701
  },
688
702
  set: function (v) {
689
- this.i.j6 = ensureBool(v);
690
- this._a("isColumnOptionsSummariesEnabled", this.i.j6);
703
+ this.i.j7 = ensureBool(v);
704
+ this._a("isColumnOptionsSummariesEnabled", this.i.j7);
691
705
  },
692
706
  enumerable: false,
693
707
  configurable: true
@@ -697,11 +711,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
697
711
  * Gets the actual state of grouping menu in the column options for this column.
698
712
  */
699
713
  get: function () {
700
- return this.i.jx;
714
+ return this.i.jy;
701
715
  },
702
716
  set: function (v) {
703
- this.i.jx = ensureBool(v);
704
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jx);
717
+ this.i.jy = ensureBool(v);
718
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jy);
705
719
  },
706
720
  enumerable: false,
707
721
  configurable: true
@@ -711,11 +725,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
711
725
  * Gets or sets whether to show the grouping option in the column options menu for this column.
712
726
  */
713
727
  get: function () {
714
- return this.i.j5;
728
+ return this.i.j6;
715
729
  },
716
730
  set: function (v) {
717
- this.i.j5 = ensureBool(v);
718
- this._a("isColumnOptionsGroupingEnabled", this.i.j5);
731
+ this.i.j6 = ensureBool(v);
732
+ this._a("isColumnOptionsGroupingEnabled", this.i.j6);
719
733
  },
720
734
  enumerable: false,
721
735
  configurable: true
@@ -725,11 +739,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
725
739
  * Gets or sets the column options dropdown background color.
726
740
  */
727
741
  get: function () {
728
- return brushToString(this.i.q6);
742
+ return brushToString(this.i.re);
729
743
  },
730
744
  set: function (v) {
731
- this.i.q6 = stringToBrush(v);
732
- this._a("actualColumnOptionsBackground", brushToString(this.i.q6));
745
+ this.i.re = stringToBrush(v);
746
+ this._a("actualColumnOptionsBackground", brushToString(this.i.re));
733
747
  },
734
748
  enumerable: false,
735
749
  configurable: true
@@ -739,11 +753,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
739
753
  * Gets or sets the column options dropdown background color.
740
754
  */
741
755
  get: function () {
742
- return brushToString(this.i.rl);
756
+ return brushToString(this.i.ru);
743
757
  },
744
758
  set: function (v) {
745
- this.i.rl = stringToBrush(v);
746
- this._a("columnOptionsBackground", brushToString(this.i.rl));
759
+ this.i.ru = stringToBrush(v);
760
+ this._a("columnOptionsBackground", brushToString(this.i.ru));
747
761
  },
748
762
  enumerable: false,
749
763
  configurable: true
@@ -753,11 +767,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
753
767
  * Gets or sets the text color for text inside the column options menu.
754
768
  */
755
769
  get: function () {
756
- return brushToString(this.i.rd);
770
+ return brushToString(this.i.rl);
757
771
  },
758
772
  set: function (v) {
759
- this.i.rd = stringToBrush(v);
760
- this._a("actualColumnOptionsTextColor", brushToString(this.i.rd));
773
+ this.i.rl = stringToBrush(v);
774
+ this._a("actualColumnOptionsTextColor", brushToString(this.i.rl));
761
775
  },
762
776
  enumerable: false,
763
777
  configurable: true
@@ -767,11 +781,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
767
781
  * Gets or sets the text color for text inside the column options menu.
768
782
  */
769
783
  get: function () {
770
- return brushToString(this.i.rs);
784
+ return brushToString(this.i.r1);
771
785
  },
772
786
  set: function (v) {
773
- this.i.rs = stringToBrush(v);
774
- this._a("columnOptionsTextColor", brushToString(this.i.rs));
787
+ this.i.r1 = stringToBrush(v);
788
+ this._a("columnOptionsTextColor", brushToString(this.i.r1));
775
789
  },
776
790
  enumerable: false,
777
791
  configurable: true
@@ -797,66 +811,88 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
797
811
  });
798
812
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsHoverBackgroundColor", {
799
813
  get: function () {
800
- return brushToString(this.i.ra);
814
+ return brushToString(this.i.ri);
801
815
  },
802
816
  set: function (v) {
803
- this.i.ra = stringToBrush(v);
804
- this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.ra));
817
+ this.i.ri = stringToBrush(v);
818
+ this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.ri));
805
819
  },
806
820
  enumerable: false,
807
821
  configurable: true
808
822
  });
809
823
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsHoverBackgroundColor", {
810
824
  get: function () {
811
- return brushToString(this.i.rp);
825
+ return brushToString(this.i.ry);
812
826
  },
813
827
  set: function (v) {
814
- this.i.rp = stringToBrush(v);
815
- this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.rp));
828
+ this.i.ry = stringToBrush(v);
829
+ this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.ry));
816
830
  },
817
831
  enumerable: false,
818
832
  configurable: true
819
833
  });
820
834
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsToolTipBackgroundColor", {
821
835
  get: function () {
822
- return brushToString(this.i.re);
836
+ return brushToString(this.i.rm);
823
837
  },
824
838
  set: function (v) {
825
- this.i.re = stringToBrush(v);
826
- this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.re));
839
+ this.i.rm = stringToBrush(v);
840
+ this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.rm));
827
841
  },
828
842
  enumerable: false,
829
843
  configurable: true
830
844
  });
831
845
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsToolTipBackgroundColor", {
832
846
  get: function () {
833
- return brushToString(this.i.rt);
847
+ return brushToString(this.i.r2);
834
848
  },
835
849
  set: function (v) {
836
- this.i.rt = stringToBrush(v);
837
- this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.rt));
850
+ this.i.r2 = stringToBrush(v);
851
+ this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.r2));
852
+ },
853
+ enumerable: false,
854
+ configurable: true
855
+ });
856
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsToolTipTextColor", {
857
+ get: function () {
858
+ return brushToString(this.i.rn);
859
+ },
860
+ set: function (v) {
861
+ this.i.rn = stringToBrush(v);
862
+ this._a("actualColumnOptionsToolTipTextColor", brushToString(this.i.rn));
863
+ },
864
+ enumerable: false,
865
+ configurable: true
866
+ });
867
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsToolTipTextColor", {
868
+ get: function () {
869
+ return brushToString(this.i.r3);
870
+ },
871
+ set: function (v) {
872
+ this.i.r3 = stringToBrush(v);
873
+ this._a("columnOptionsToolTipTextColor", brushToString(this.i.r3));
838
874
  },
839
875
  enumerable: false,
840
876
  configurable: true
841
877
  });
842
878
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsHighlightColor", {
843
879
  get: function () {
844
- return brushToString(this.i.q9);
880
+ return brushToString(this.i.rh);
845
881
  },
846
882
  set: function (v) {
847
- this.i.q9 = stringToBrush(v);
848
- this._a("actualColumnOptionsHighlightColor", brushToString(this.i.q9));
883
+ this.i.rh = stringToBrush(v);
884
+ this._a("actualColumnOptionsHighlightColor", brushToString(this.i.rh));
849
885
  },
850
886
  enumerable: false,
851
887
  configurable: true
852
888
  });
853
889
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsHighlightColor", {
854
890
  get: function () {
855
- return brushToString(this.i.ro);
891
+ return brushToString(this.i.rx);
856
892
  },
857
893
  set: function (v) {
858
- this.i.ro = stringToBrush(v);
859
- this._a("columnOptionsHighlightColor", brushToString(this.i.ro));
894
+ this.i.rx = stringToBrush(v);
895
+ this._a("columnOptionsHighlightColor", brushToString(this.i.rx));
860
896
  },
861
897
  enumerable: false,
862
898
  configurable: true
@@ -866,11 +902,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
866
902
  * Gets or sets the color of separators inside the column options menu.
867
903
  */
868
904
  get: function () {
869
- return brushToString(this.i.rc);
905
+ return brushToString(this.i.rk);
870
906
  },
871
907
  set: function (v) {
872
- this.i.rc = stringToBrush(v);
873
- this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.rc));
908
+ this.i.rk = stringToBrush(v);
909
+ this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.rk));
874
910
  },
875
911
  enumerable: false,
876
912
  configurable: true
@@ -880,11 +916,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
880
916
  * Gets or sets the color of separators inside the column options menu.
881
917
  */
882
918
  get: function () {
883
- return brushToString(this.i.rr);
919
+ return brushToString(this.i.r0);
884
920
  },
885
921
  set: function (v) {
886
- this.i.rr = stringToBrush(v);
887
- this._a("columnOptionsSeparatorColor", brushToString(this.i.rr));
922
+ this.i.r0 = stringToBrush(v);
923
+ this._a("columnOptionsSeparatorColor", brushToString(this.i.r0));
888
924
  },
889
925
  enumerable: false,
890
926
  configurable: true
@@ -894,11 +930,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
894
930
  * Gets or sets the background color for group headers inside the column options menu.
895
931
  */
896
932
  get: function () {
897
- return brushToString(this.i.q7);
933
+ return brushToString(this.i.rf);
898
934
  },
899
935
  set: function (v) {
900
- this.i.q7 = stringToBrush(v);
901
- this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.q7));
936
+ this.i.rf = stringToBrush(v);
937
+ this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.rf));
902
938
  },
903
939
  enumerable: false,
904
940
  configurable: true
@@ -908,11 +944,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
908
944
  * Gets or sets the background color for group headers inside the column options menu.
909
945
  */
910
946
  get: function () {
911
- return brushToString(this.i.rm);
947
+ return brushToString(this.i.rv);
912
948
  },
913
949
  set: function (v) {
914
- this.i.rm = stringToBrush(v);
915
- this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rm));
950
+ this.i.rv = stringToBrush(v);
951
+ this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rv));
916
952
  },
917
953
  enumerable: false,
918
954
  configurable: true
@@ -922,11 +958,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
922
958
  * Gets the actual text color for group headers inside the column options menu.
923
959
  */
924
960
  get: function () {
925
- return brushToString(this.i.q8);
961
+ return brushToString(this.i.rg);
926
962
  },
927
963
  set: function (v) {
928
- this.i.q8 = stringToBrush(v);
929
- this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.q8));
964
+ this.i.rg = stringToBrush(v);
965
+ this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.rg));
930
966
  },
931
967
  enumerable: false,
932
968
  configurable: true
@@ -936,11 +972,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
936
972
  * Gets or sets the text color for group headers inside the column options menu.
937
973
  */
938
974
  get: function () {
939
- return brushToString(this.i.rn);
975
+ return brushToString(this.i.rw);
940
976
  },
941
977
  set: function (v) {
942
- this.i.rn = stringToBrush(v);
943
- this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rn));
978
+ this.i.rw = stringToBrush(v);
979
+ this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rw));
944
980
  },
945
981
  enumerable: false,
946
982
  configurable: true
@@ -963,44 +999,44 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
963
999
  });
964
1000
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsAccentColor", {
965
1001
  get: function () {
966
- return brushToString(this.i.q5);
1002
+ return brushToString(this.i.rd);
967
1003
  },
968
1004
  set: function (v) {
969
- this.i.q5 = stringToBrush(v);
970
- this._a("actualColumnOptionsAccentColor", brushToString(this.i.q5));
1005
+ this.i.rd = stringToBrush(v);
1006
+ this._a("actualColumnOptionsAccentColor", brushToString(this.i.rd));
971
1007
  },
972
1008
  enumerable: false,
973
1009
  configurable: true
974
1010
  });
975
1011
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsAccentColor", {
976
1012
  get: function () {
977
- return brushToString(this.i.rk);
1013
+ return brushToString(this.i.rt);
978
1014
  },
979
1015
  set: function (v) {
980
- this.i.rk = stringToBrush(v);
981
- this._a("columnOptionsAccentColor", brushToString(this.i.rk));
1016
+ this.i.rt = stringToBrush(v);
1017
+ this._a("columnOptionsAccentColor", brushToString(this.i.rt));
982
1018
  },
983
1019
  enumerable: false,
984
1020
  configurable: true
985
1021
  });
986
1022
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsRowHeight", {
987
1023
  get: function () {
988
- return this.i.la;
1024
+ return this.i.lc;
989
1025
  },
990
1026
  set: function (v) {
991
- this.i.la = +v;
992
- this._a("actualColumnOptionsRowHeight", this.i.la);
1027
+ this.i.lc = +v;
1028
+ this._a("actualColumnOptionsRowHeight", this.i.lc);
993
1029
  },
994
1030
  enumerable: false,
995
1031
  configurable: true
996
1032
  });
997
1033
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsRowHeight", {
998
1034
  get: function () {
999
- return this.i.lb;
1035
+ return this.i.ld;
1000
1036
  },
1001
1037
  set: function (v) {
1002
- this.i.lb = +v;
1003
- this._a("columnOptionsRowHeight", this.i.lb);
1038
+ this.i.ld = +v;
1039
+ this._a("columnOptionsRowHeight", this.i.ld);
1004
1040
  },
1005
1041
  enumerable: false,
1006
1042
  configurable: true
@@ -1010,11 +1046,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1010
1046
  * Gets or sets if the column is editable.
1011
1047
  */
1012
1048
  get: function () {
1013
- return this.i.j7;
1049
+ return this.i.j8;
1014
1050
  },
1015
1051
  set: function (v) {
1016
- this.i.j7 = ensureBool(v);
1017
- this._a("isEditable", this.i.j7);
1052
+ this.i.j8 = ensureBool(v);
1053
+ this._a("isEditable", this.i.j8);
1018
1054
  },
1019
1055
  enumerable: false,
1020
1056
  configurable: true
@@ -1024,11 +1060,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1024
1060
  * Gets or sets the text color used for deleted rows.
1025
1061
  */
1026
1062
  get: function () {
1027
- return brushToString(this.i.ru);
1063
+ return brushToString(this.i.r4);
1028
1064
  },
1029
1065
  set: function (v) {
1030
- this.i.ru = stringToBrush(v);
1031
- this._a("deletedTextColor", brushToString(this.i.ru));
1066
+ this.i.r4 = stringToBrush(v);
1067
+ this._a("deletedTextColor", brushToString(this.i.r4));
1032
1068
  },
1033
1069
  enumerable: false,
1034
1070
  configurable: true
@@ -1038,11 +1074,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1038
1074
  * Gets the actual text color used for deleted rows.
1039
1075
  */
1040
1076
  get: function () {
1041
- return brushToString(this.i.rf);
1077
+ return brushToString(this.i.ro);
1042
1078
  },
1043
1079
  set: function (v) {
1044
- this.i.rf = stringToBrush(v);
1045
- this._a("actualDeletedTextColor", brushToString(this.i.rf));
1080
+ this.i.ro = stringToBrush(v);
1081
+ this._a("actualDeletedTextColor", brushToString(this.i.ro));
1046
1082
  },
1047
1083
  enumerable: false,
1048
1084
  configurable: true
@@ -1052,11 +1088,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1052
1088
  * Gets or sets the opacity to use for unsaved edited cell values.
1053
1089
  */
1054
1090
  get: function () {
1055
- return this.i.kq;
1091
+ return this.i.ks;
1056
1092
  },
1057
1093
  set: function (v) {
1058
- this.i.kq = +v;
1059
- this._a("editOpacity", this.i.kq);
1094
+ this.i.ks = +v;
1095
+ this._a("editOpacity", this.i.ks);
1060
1096
  },
1061
1097
  enumerable: false,
1062
1098
  configurable: true
@@ -1066,11 +1102,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1066
1102
  * Gets the actual opacity for unsaved edited cell values.
1067
1103
  */
1068
1104
  get: function () {
1069
- return this.i.kp;
1105
+ return this.i.kr;
1070
1106
  },
1071
1107
  set: function (v) {
1072
- this.i.kp = +v;
1073
- this._a("actualEditOpacity", this.i.kp);
1108
+ this.i.kr = +v;
1109
+ this._a("actualEditOpacity", this.i.kr);
1074
1110
  },
1075
1111
  enumerable: false,
1076
1112
  configurable: true
@@ -1160,11 +1196,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1160
1196
  * Gets or sets the amount of left padding to use for the cell content for this column.
1161
1197
  */
1162
1198
  get: function () {
1163
- return this.i.ld;
1199
+ return this.i.lf;
1164
1200
  },
1165
1201
  set: function (v) {
1166
- this.i.ld = +v;
1167
- this._a("mergedCellPaddingLeft", this.i.ld);
1202
+ this.i.lf = +v;
1203
+ this._a("mergedCellPaddingLeft", this.i.lf);
1168
1204
  },
1169
1205
  enumerable: false,
1170
1206
  configurable: true
@@ -1174,11 +1210,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1174
1210
  * Gets or sets the amount of top padding to use for the cell content for this column.
1175
1211
  */
1176
1212
  get: function () {
1177
- return this.i.lf;
1213
+ return this.i.lh;
1178
1214
  },
1179
1215
  set: function (v) {
1180
- this.i.lf = +v;
1181
- this._a("mergedCellPaddingTop", this.i.lf);
1216
+ this.i.lh = +v;
1217
+ this._a("mergedCellPaddingTop", this.i.lh);
1182
1218
  },
1183
1219
  enumerable: false,
1184
1220
  configurable: true
@@ -1188,11 +1224,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1188
1224
  * Gets or sets the amount of right padding to use for the cell content of this column.
1189
1225
  */
1190
1226
  get: function () {
1191
- return this.i.le;
1227
+ return this.i.lg;
1192
1228
  },
1193
1229
  set: function (v) {
1194
- this.i.le = +v;
1195
- this._a("mergedCellPaddingRight", this.i.le);
1230
+ this.i.lg = +v;
1231
+ this._a("mergedCellPaddingRight", this.i.lg);
1196
1232
  },
1197
1233
  enumerable: false,
1198
1234
  configurable: true
@@ -1202,11 +1238,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1202
1238
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
1203
1239
  */
1204
1240
  get: function () {
1205
- return this.i.lc;
1241
+ return this.i.le;
1206
1242
  },
1207
1243
  set: function (v) {
1208
- this.i.lc = +v;
1209
- this._a("mergedCellPaddingBottom", this.i.lc);
1244
+ this.i.le = +v;
1245
+ this._a("mergedCellPaddingBottom", this.i.le);
1210
1246
  },
1211
1247
  enumerable: false,
1212
1248
  configurable: true
@@ -1264,10 +1300,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1264
1300
  * Gets or sets the text to display in the suffix area of cells in this column.
1265
1301
  */
1266
1302
  get: function () {
1267
- return this.i.ox;
1303
+ return this.i.o2;
1268
1304
  },
1269
1305
  set: function (v) {
1270
- this.i.ox = v;
1306
+ this.i.o2 = v;
1271
1307
  },
1272
1308
  enumerable: false,
1273
1309
  configurable: true
@@ -1277,11 +1313,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1277
1313
  * Gets or sets the color of the text in the suffix area of the cells in this column.
1278
1314
  */
1279
1315
  get: function () {
1280
- return brushToString(this.i.r3);
1316
+ return brushToString(this.i.sd);
1281
1317
  },
1282
1318
  set: function (v) {
1283
- this.i.r3 = stringToBrush(v);
1284
- this._a("suffixTextColor", brushToString(this.i.r3));
1319
+ this.i.sd = stringToBrush(v);
1320
+ this._a("suffixTextColor", brushToString(this.i.sd));
1285
1321
  },
1286
1322
  enumerable: false,
1287
1323
  configurable: true
@@ -1310,10 +1346,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1310
1346
  * Gets or sets the icon to use in the suffix area of the cells in this column.
1311
1347
  */
1312
1348
  get: function () {
1313
- return this.i.op;
1349
+ return this.i.ou;
1314
1350
  },
1315
1351
  set: function (v) {
1316
- this.i.op = v;
1352
+ this.i.ou = v;
1317
1353
  },
1318
1354
  enumerable: false,
1319
1355
  configurable: true
@@ -1323,10 +1359,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1323
1359
  * Gets or sets the icon to use in the suffix area of the cells in this column.
1324
1360
  */
1325
1361
  get: function () {
1326
- return this.i.om;
1362
+ return this.i.or;
1327
1363
  },
1328
1364
  set: function (v) {
1329
- this.i.om = v;
1365
+ this.i.or = v;
1330
1366
  },
1331
1367
  enumerable: false,
1332
1368
  configurable: true
@@ -1336,11 +1372,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1336
1372
  * Gets or sets the stroke color of suffix icon.
1337
1373
  */
1338
1374
  get: function () {
1339
- return brushToString(this.i.r2);
1375
+ return brushToString(this.i.sc);
1340
1376
  },
1341
1377
  set: function (v) {
1342
- this.i.r2 = stringToBrush(v);
1343
- this._a("suffixIconStroke", brushToString(this.i.r2));
1378
+ this.i.sc = stringToBrush(v);
1379
+ this._a("suffixIconStroke", brushToString(this.i.sc));
1344
1380
  },
1345
1381
  enumerable: false,
1346
1382
  configurable: true
@@ -1350,11 +1386,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1350
1386
  * Gets or sets the fill color of suffix icon.
1351
1387
  */
1352
1388
  get: function () {
1353
- return brushToString(this.i.r1);
1389
+ return brushToString(this.i.sb);
1354
1390
  },
1355
1391
  set: function (v) {
1356
- this.i.r1 = stringToBrush(v);
1357
- this._a("suffixIconFill", brushToString(this.i.r1));
1392
+ this.i.sb = stringToBrush(v);
1393
+ this._a("suffixIconFill", brushToString(this.i.sb));
1358
1394
  },
1359
1395
  enumerable: false,
1360
1396
  configurable: true
@@ -1364,11 +1400,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1364
1400
  * Gets or sets the suffix icon's viewbox x coordinate.
1365
1401
  */
1366
1402
  get: function () {
1367
- return this.i.kt;
1403
+ return this.i.kv;
1368
1404
  },
1369
1405
  set: function (v) {
1370
- this.i.kt = +v;
1371
- this._a("suffixIconViewBoxLeft", this.i.kt);
1406
+ this.i.kv = +v;
1407
+ this._a("suffixIconViewBoxLeft", this.i.kv);
1372
1408
  },
1373
1409
  enumerable: false,
1374
1410
  configurable: true
@@ -1378,11 +1414,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1378
1414
  * Gets or sets the suffix icon's viewbox y coordinate.
1379
1415
  */
1380
1416
  get: function () {
1381
- return this.i.ku;
1417
+ return this.i.kw;
1382
1418
  },
1383
1419
  set: function (v) {
1384
- this.i.ku = +v;
1385
- this._a("suffixIconViewBoxTop", this.i.ku);
1420
+ this.i.kw = +v;
1421
+ this._a("suffixIconViewBoxTop", this.i.kw);
1386
1422
  },
1387
1423
  enumerable: false,
1388
1424
  configurable: true
@@ -1392,11 +1428,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1392
1428
  * Gets or sets the suffix icon's viewbox width.
1393
1429
  */
1394
1430
  get: function () {
1395
- return this.i.kv;
1431
+ return this.i.kx;
1396
1432
  },
1397
1433
  set: function (v) {
1398
- this.i.kv = +v;
1399
- this._a("suffixIconViewBoxWidth", this.i.kv);
1434
+ this.i.kx = +v;
1435
+ this._a("suffixIconViewBoxWidth", this.i.kx);
1400
1436
  },
1401
1437
  enumerable: false,
1402
1438
  configurable: true
@@ -1406,11 +1442,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1406
1442
  * Gets or sets the suffix icon's viewbox height.
1407
1443
  */
1408
1444
  get: function () {
1409
- return this.i.ks;
1445
+ return this.i.ku;
1410
1446
  },
1411
1447
  set: function (v) {
1412
- this.i.ks = +v;
1413
- this._a("suffixIconViewBoxHeight", this.i.ks);
1448
+ this.i.ku = +v;
1449
+ this._a("suffixIconViewBoxHeight", this.i.ku);
1414
1450
  },
1415
1451
  enumerable: false,
1416
1452
  configurable: true
@@ -1420,11 +1456,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1420
1456
  * Gets or sets the suffix margin.
1421
1457
  */
1422
1458
  get: function () {
1423
- return this.i.kw;
1459
+ return this.i.ky;
1424
1460
  },
1425
1461
  set: function (v) {
1426
- this.i.kw = +v;
1427
- this._a("suffixMargin", this.i.kw);
1462
+ this.i.ky = +v;
1463
+ this._a("suffixMargin", this.i.ky);
1428
1464
  },
1429
1465
  enumerable: false,
1430
1466
  configurable: true
@@ -1475,18 +1511,18 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1475
1511
 
1476
1512
  */
1477
1513
  IgcDataGridColumnComponent.prototype.getUniqueKey = function () {
1478
- var iv = this.i.nm();
1514
+ var iv = this.i.nq();
1479
1515
  return (iv);
1480
1516
  };
1481
1517
  IgcDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
1482
- this.i.pf(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1518
+ this.i.pk(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1483
1519
  };
1484
1520
  /**
1485
1521
  * Returns if the column has named header values.
1486
1522
 
1487
1523
  */
1488
1524
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValues = function () {
1489
- var iv = this.i.j1();
1525
+ var iv = this.i.j2();
1490
1526
  return (iv);
1491
1527
  };
1492
1528
  /**
@@ -1495,7 +1531,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1495
1531
  * @param valueName * The named value to check for.
1496
1532
  */
1497
1533
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValue = function (valueName) {
1498
- var iv = this.i.j0(valueName);
1534
+ var iv = this.i.j1(valueName);
1499
1535
  return (iv);
1500
1536
  };
1501
1537
  /**
@@ -1504,7 +1540,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1504
1540
  * @param valueName * The named header value to remove.
1505
1541
  */
1506
1542
  IgcDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
1507
- this.i.pe(valueName);
1543
+ this.i.pj(valueName);
1508
1544
  };
1509
1545
  /**
1510
1546
  * Gets the value of a named header value for this column by name.
@@ -1512,11 +1548,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1512
1548
  * @param valueName * Name of the named header value to retrieve.
1513
1549
  */
1514
1550
  IgcDataGridColumnComponent.prototype.getNamedHeaderValue = function (valueName) {
1515
- var iv = this.i.lr(valueName);
1551
+ var iv = this.i.lt(valueName);
1516
1552
  return (iv);
1517
1553
  };
1518
1554
  IgcDataGridColumnComponent.prototype.applyCustomFilter = function (filterID, index, value) {
1519
- this.i.o5(filterID, index, value);
1555
+ this.i.pa(filterID, index, value);
1520
1556
  };
1521
1557
  IgcDataGridColumnComponent.prototype.getDesiredToolbarActions = function () {
1522
1558
  var iv = this.i.getDesiredToolbarActions();
@@ -1579,7 +1615,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1579
1615
  this._actualHeaderTextChange = ev;
1580
1616
  this._actualHeaderTextChange_wrapped = function (o, e) {
1581
1617
  var ext = _this.actualHeaderText;
1582
- if (e.propertyName == 'Mj') {
1618
+ if (e.propertyName == 'Mm') {
1583
1619
  if (_this.beforeActualHeaderTextChange) {
1584
1620
  _this.beforeActualHeaderTextChange(_this, ext);
1585
1621
  }