igniteui-webcomponents-data-grids 7.1.0-alpha.2 → 7.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -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.lj;
97
+ return this.i.lm;
98
98
  },
99
99
  set: function (v) {
100
- this.i.lj = +v;
101
- this._a("paddingLeft", this.i.lj);
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.ll;
111
+ return this.i.lo;
112
112
  },
113
113
  set: function (v) {
114
- this.i.ll = +v;
115
- this._a("paddingTop", this.i.ll);
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.lk;
125
+ return this.i.ln;
126
126
  },
127
127
  set: function (v) {
128
- this.i.lk = +v;
129
- this._a("paddingRight", this.i.lk);
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.li;
139
+ return this.i.ll;
140
140
  },
141
141
  set: function (v) {
142
- this.i.li = +v;
143
- this._a("paddingBottom", this.i.li);
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.n6;
153
+ return this.i.ob;
154
154
  },
155
155
  set: function (v) {
156
- this.i.n6 = v;
156
+ this.i.ob = 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.nf;
166
+ return this.i.nj;
167
167
  },
168
168
  set: function (v) {
169
- this.i.nf = v;
169
+ this.i.nj = 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.nm;
179
+ return this.i.nq;
180
180
  },
181
181
  set: function (v) {
182
- this.i.nm = v;
182
+ this.i.nq = 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.mi;
192
+ return this.i.ml;
193
193
  },
194
194
  set: function (v) {
195
- this.i.mi = v;
195
+ this.i.ml = 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.rs);
205
+ return brushToString(this.i.r2);
206
206
  },
207
207
  set: function (v) {
208
- this.i.rs = stringToBrush(v);
209
- this._a("selectedBackground", brushToString(this.i.rs));
208
+ this.i.r2 = stringToBrush(v);
209
+ this._a("selectedBackground", brushToString(this.i.r2));
210
210
  },
211
211
  enumerable: false,
212
212
  configurable: true
@@ -216,11 +216,39 @@ 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.rc);
219
+ return brushToString(this.i.rl);
220
220
  },
221
221
  set: function (v) {
222
- this.i.rc = stringToBrush(v);
223
- this._a("actualSelectedBackground", brushToString(this.i.rc));
222
+ this.i.rl = stringToBrush(v);
223
+ this._a("actualSelectedBackground", brushToString(this.i.rl));
224
+ },
225
+ enumerable: false,
226
+ configurable: true
227
+ });
228
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "selectedTextColor", {
229
+ /**
230
+ * Gets or sets the text color to use for the cells when they are selected
231
+ */
232
+ get: function () {
233
+ return brushToString(this.i.r3);
234
+ },
235
+ set: function (v) {
236
+ this.i.r3 = stringToBrush(v);
237
+ this._a("selectedTextColor", brushToString(this.i.r3));
238
+ },
239
+ enumerable: false,
240
+ configurable: true
241
+ });
242
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualSelectedTextColor", {
243
+ /**
244
+ * Gets the actual text color that is used for the cells when they are selected
245
+ */
246
+ get: function () {
247
+ return brushToString(this.i.rm);
248
+ },
249
+ set: function (v) {
250
+ this.i.rm = stringToBrush(v);
251
+ this._a("actualSelectedTextColor", brushToString(this.i.rm));
224
252
  },
225
253
  enumerable: false,
226
254
  configurable: true
@@ -230,11 +258,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
230
258
  * Gets or sets the background color to use for the cells when the row is hovered.
231
259
  */
232
260
  get: function () {
233
- return brushToString(this.i.rq);
261
+ return brushToString(this.i.r0);
234
262
  },
235
263
  set: function (v) {
236
- this.i.rq = stringToBrush(v);
237
- this._a("rowHoverBackground", brushToString(this.i.rq));
264
+ this.i.r0 = stringToBrush(v);
265
+ this._a("rowHoverBackground", brushToString(this.i.r0));
238
266
  },
239
267
  enumerable: false,
240
268
  configurable: true
@@ -244,11 +272,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
244
272
  * Gets the actual background color that is used for the cells when they are hovered.
245
273
  */
246
274
  get: function () {
247
- return brushToString(this.i.ra);
275
+ return brushToString(this.i.rj);
248
276
  },
249
277
  set: function (v) {
250
- this.i.ra = stringToBrush(v);
251
- this._a("actualHoverBackground", brushToString(this.i.ra));
278
+ this.i.rj = stringToBrush(v);
279
+ this._a("actualHoverBackground", brushToString(this.i.rj));
252
280
  },
253
281
  enumerable: false,
254
282
  configurable: true
@@ -258,11 +286,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
258
286
  * Gets or sets the text color to use for the cells when the row is hovered.
259
287
  */
260
288
  get: function () {
261
- return brushToString(this.i.rr);
289
+ return brushToString(this.i.r1);
262
290
  },
263
291
  set: function (v) {
264
- this.i.rr = stringToBrush(v);
265
- this._a("rowHoverTextColor", brushToString(this.i.rr));
292
+ this.i.r1 = stringToBrush(v);
293
+ this._a("rowHoverTextColor", brushToString(this.i.r1));
266
294
  },
267
295
  enumerable: false,
268
296
  configurable: true
@@ -272,11 +300,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
272
300
  * Gets the actual text color that is used for the cells when they are hovered.
273
301
  */
274
302
  get: function () {
275
- return brushToString(this.i.rb);
303
+ return brushToString(this.i.rk);
276
304
  },
277
305
  set: function (v) {
278
- this.i.rb = stringToBrush(v);
279
- this._a("actualRowHoverTextColor", brushToString(this.i.rb));
306
+ this.i.rk = stringToBrush(v);
307
+ this._a("actualRowHoverTextColor", brushToString(this.i.rk));
280
308
  },
281
309
  enumerable: false,
282
310
  configurable: true
@@ -286,7 +314,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
286
314
  * Gets or sets the animation settings to use for this column.
287
315
  */
288
316
  get: function () {
289
- var r = this.i.ic;
317
+ var r = this.i.id;
290
318
  if (r == null) {
291
319
  return null;
292
320
  }
@@ -305,7 +333,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
305
333
  return r.externalObject;
306
334
  },
307
335
  set: function (v) {
308
- v == null ? this.i.ic = null : this.i.ic = v.i;
336
+ v == null ? this.i.id = null : this.i.id = v.i;
309
337
  },
310
338
  enumerable: false,
311
339
  configurable: true
@@ -350,11 +378,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
350
378
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
351
379
  */
352
380
  get: function () {
353
- return this.i.kq;
381
+ return this.i.kt;
354
382
  },
355
383
  set: function (v) {
356
- this.i.kq = +v;
357
- this._a("minWidth", this.i.kq);
384
+ this.i.kt = +v;
385
+ this._a("minWidth", this.i.kt);
358
386
  },
359
387
  enumerable: false,
360
388
  configurable: true
@@ -364,11 +392,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
364
392
  * Gets whether this column was projected from markup/templates and is constrained.
365
393
  */
366
394
  get: function () {
367
- return this.i.j8;
395
+ return this.i.ka;
368
396
  },
369
397
  set: function (v) {
370
- this.i.j8 = ensureBool(v);
371
- this._a("isFromMarkup", this.i.j8);
398
+ this.i.ka = ensureBool(v);
399
+ this._a("isFromMarkup", this.i.ka);
372
400
  },
373
401
  enumerable: false,
374
402
  configurable: true
@@ -378,11 +406,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
378
406
  * Gets whether this column was auto generated.
379
407
  */
380
408
  get: function () {
381
- return this.i.j2;
409
+ return this.i.j4;
382
410
  },
383
411
  set: function (v) {
384
- this.i.j2 = ensureBool(v);
385
- this._a("isAutoGenerated", this.i.j2);
412
+ this.i.j4 = ensureBool(v);
413
+ this._a("isAutoGenerated", this.i.j4);
386
414
  },
387
415
  enumerable: false,
388
416
  configurable: true
@@ -392,10 +420,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
392
420
  * Gets or sets a filter to apply on the values of this column
393
421
  */
394
422
  get: function () {
395
- return this.i.g4;
423
+ return this.i.g5;
396
424
  },
397
425
  set: function (v) {
398
- this.i.g4 = v;
426
+ this.i.g5 = v;
399
427
  },
400
428
  enumerable: false,
401
429
  configurable: true
@@ -405,10 +433,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
405
433
  * Gets or sets a filter to apply to the values of this column.
406
434
  */
407
435
  get: function () {
408
- return this.i.g6;
436
+ return this.i.g7;
409
437
  },
410
438
  set: function (v) {
411
- this.i.g6 = v;
439
+ this.i.g7 = v;
412
440
  },
413
441
  enumerable: false,
414
442
  configurable: true
@@ -444,11 +472,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
444
472
  * Gets or sets whether filtering is enabled for this column.
445
473
  */
446
474
  get: function () {
447
- return this.i.j7;
475
+ return this.i.j9;
448
476
  },
449
477
  set: function (v) {
450
- this.i.j7 = ensureBool(v);
451
- this._a("isFilteringEnabled", this.i.j7);
478
+ this.i.j9 = ensureBool(v);
479
+ this._a("isFilteringEnabled", this.i.j9);
452
480
  },
453
481
  enumerable: false,
454
482
  configurable: true
@@ -458,11 +486,25 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
458
486
  * Gets or sets whether resizing is enabled for this column.
459
487
  */
460
488
  get: function () {
461
- return this.i.ka;
489
+ return this.i.kc;
462
490
  },
463
491
  set: function (v) {
464
- this.i.ka = ensureBool(v);
465
- this._a("isResizingEnabled", this.i.ka);
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);
466
508
  },
467
509
  enumerable: false,
468
510
  configurable: true
@@ -472,11 +514,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
472
514
  * Gets or sets whether or not a column is hidden from the grid
473
515
  */
474
516
  get: function () {
475
- return this.i.j9;
517
+ return this.i.kb;
476
518
  },
477
519
  set: function (v) {
478
- this.i.j9 = ensureBool(v);
479
- this._a("isHidden", this.i.j9);
520
+ this.i.kb = ensureBool(v);
521
+ this._a("isHidden", this.i.kb);
480
522
  },
481
523
  enumerable: false,
482
524
  configurable: true
@@ -486,11 +528,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
486
528
  * Gets or sets if a column should be removed from the grid when it is fully hidden
487
529
  */
488
530
  get: function () {
489
- return this.i.kd;
531
+ return this.i.kg;
490
532
  },
491
533
  set: function (v) {
492
- this.i.kd = ensureBool(v);
493
- this._a("shouldRemoveWhenHidden", this.i.kd);
534
+ this.i.kg = ensureBool(v);
535
+ this._a("shouldRemoveWhenHidden", this.i.kg);
494
536
  },
495
537
  enumerable: false,
496
538
  configurable: true
@@ -500,11 +542,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
500
542
  * Gets the current sort direction (None, Ascending, Descending) for this column.
501
543
  */
502
544
  get: function () {
503
- return this.i.hu;
545
+ return this.i.hv;
504
546
  },
505
547
  set: function (v) {
506
- this.i.hu = ensureEnum(ColumnSortDirection_$type, v);
507
- this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hu));
548
+ this.i.hv = ensureEnum(ColumnSortDirection_$type, v);
549
+ this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hv));
508
550
  },
509
551
  enumerable: false,
510
552
  configurable: true
@@ -514,11 +556,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
514
556
  * Gets or sets the current fixed position for this column.
515
557
  */
516
558
  get: function () {
517
- return this.i.is;
559
+ return this.i.it;
518
560
  },
519
561
  set: function (v) {
520
- this.i.is = ensureEnum(PinnedPositions_$type, v);
521
- this._a("pinned", enumToString(PinnedPositions_$type, this.i.is));
562
+ this.i.it = ensureEnum(PinnedPositions_$type, v);
563
+ this._a("pinned", enumToString(PinnedPositions_$type, this.i.it));
522
564
  },
523
565
  enumerable: false,
524
566
  configurable: true
@@ -528,11 +570,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
528
570
  * Gets the actual column options icon alignment for this column.
529
571
  */
530
572
  get: function () {
531
- return this.i.hl;
573
+ return this.i.hm;
532
574
  },
533
575
  set: function (v) {
534
- this.i.hl = ensureEnum(ColumnOptionsIconAlignment_$type, v);
535
- this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hl));
576
+ this.i.hm = ensureEnum(ColumnOptionsIconAlignment_$type, v);
577
+ this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hm));
536
578
  },
537
579
  enumerable: false,
538
580
  configurable: true
@@ -542,11 +584,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
542
584
  * Gets or sets whether the column options icon is aligned opposite the header text or not.
543
585
  */
544
586
  get: function () {
545
- return this.i.hm;
587
+ return this.i.hn;
546
588
  },
547
589
  set: function (v) {
548
- this.i.hm = ensureEnum(ColumnOptionsIconAlignment_$type, v);
549
- this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hm));
590
+ this.i.hn = ensureEnum(ColumnOptionsIconAlignment_$type, v);
591
+ this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hn));
550
592
  },
551
593
  enumerable: false,
552
594
  configurable: true
@@ -556,11 +598,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
556
598
  * Gets the actual column options icon color for this column.
557
599
  */
558
600
  get: function () {
559
- return brushToString(this.i.q5);
601
+ return brushToString(this.i.re);
560
602
  },
561
603
  set: function (v) {
562
- this.i.q5 = stringToBrush(v);
563
- this._a("actualColumnOptionsIconColor", brushToString(this.i.q5));
604
+ this.i.re = stringToBrush(v);
605
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.re));
564
606
  },
565
607
  enumerable: false,
566
608
  configurable: true
@@ -570,11 +612,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
570
612
  * Gets or sets the column options icon color for this column.
571
613
  */
572
614
  get: function () {
573
- return brushToString(this.i.rj);
615
+ return brushToString(this.i.rt);
574
616
  },
575
617
  set: function (v) {
576
- this.i.rj = stringToBrush(v);
577
- this._a("columnOptionsIconColor", brushToString(this.i.rj));
618
+ this.i.rt = stringToBrush(v);
619
+ this._a("columnOptionsIconColor", brushToString(this.i.rt));
578
620
  },
579
621
  enumerable: false,
580
622
  configurable: true
@@ -584,11 +626,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
584
626
  * Gets or sets how the column option icon will behave in the column header.
585
627
  */
586
628
  get: function () {
587
- return this.i.hq;
629
+ return this.i.hr;
588
630
  },
589
631
  set: function (v) {
590
- this.i.hq = ensureEnum(ColumnOptionsIconBehavior_$type, v);
591
- this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hq));
632
+ this.i.hr = ensureEnum(ColumnOptionsIconBehavior_$type, v);
633
+ this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hr));
592
634
  },
593
635
  enumerable: false,
594
636
  configurable: true
@@ -598,11 +640,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
598
640
  * Gets or sets how the column option icon will behave in the column header.
599
641
  */
600
642
  get: function () {
601
- return this.i.hp;
643
+ return this.i.hq;
602
644
  },
603
645
  set: function (v) {
604
- this.i.hp = ensureEnum(ColumnOptionsIconBehavior_$type, v);
605
- this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hp));
646
+ this.i.hq = ensureEnum(ColumnOptionsIconBehavior_$type, v);
647
+ this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hq));
606
648
  },
607
649
  enumerable: false,
608
650
  configurable: true
@@ -612,11 +654,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
612
654
  * Gets the actual state of the column options for this column.
613
655
  */
614
656
  get: function () {
615
- return this.i.jv;
657
+ return this.i.jx;
616
658
  },
617
659
  set: function (v) {
618
- this.i.jv = ensureBool(v);
619
- this._a("actualIsColumnOptionsEnabled", this.i.jv);
660
+ this.i.jx = ensureBool(v);
661
+ this._a("actualIsColumnOptionsEnabled", this.i.jx);
620
662
  },
621
663
  enumerable: false,
622
664
  configurable: true
@@ -627,11 +669,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
627
669
  * then it will be disabled for the column regardless of what this is set to.
628
670
  */
629
671
  get: function () {
630
- return this.i.j3;
672
+ return this.i.j5;
631
673
  },
632
674
  set: function (v) {
633
- this.i.j3 = ensureBool(v);
634
- this._a("isColumnOptionsEnabled", this.i.j3);
675
+ this.i.j5 = ensureBool(v);
676
+ this._a("isColumnOptionsEnabled", this.i.j5);
635
677
  },
636
678
  enumerable: false,
637
679
  configurable: true
@@ -641,11 +683,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
641
683
  * Gets the actual state of summaries menu in the column options for this column.
642
684
  */
643
685
  get: function () {
644
- return this.i.jx;
686
+ return this.i.jz;
645
687
  },
646
688
  set: function (v) {
647
- this.i.jx = ensureBool(v);
648
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jx);
689
+ this.i.jz = ensureBool(v);
690
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.jz);
649
691
  },
650
692
  enumerable: false,
651
693
  configurable: true
@@ -655,11 +697,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
655
697
  * Gets or sets whether to show the summaries option in the column options menu for this column.
656
698
  */
657
699
  get: function () {
658
- return this.i.j5;
700
+ return this.i.j7;
659
701
  },
660
702
  set: function (v) {
661
- this.i.j5 = ensureBool(v);
662
- this._a("isColumnOptionsSummariesEnabled", this.i.j5);
703
+ this.i.j7 = ensureBool(v);
704
+ this._a("isColumnOptionsSummariesEnabled", this.i.j7);
663
705
  },
664
706
  enumerable: false,
665
707
  configurable: true
@@ -669,11 +711,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
669
711
  * Gets the actual state of grouping menu in the column options for this column.
670
712
  */
671
713
  get: function () {
672
- return this.i.jw;
714
+ return this.i.jy;
673
715
  },
674
716
  set: function (v) {
675
- this.i.jw = ensureBool(v);
676
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jw);
717
+ this.i.jy = ensureBool(v);
718
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jy);
677
719
  },
678
720
  enumerable: false,
679
721
  configurable: true
@@ -683,11 +725,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
683
725
  * Gets or sets whether to show the grouping option in the column options menu for this column.
684
726
  */
685
727
  get: function () {
686
- return this.i.j4;
728
+ return this.i.j6;
687
729
  },
688
730
  set: function (v) {
689
- this.i.j4 = ensureBool(v);
690
- this._a("isColumnOptionsGroupingEnabled", this.i.j4);
731
+ this.i.j6 = ensureBool(v);
732
+ this._a("isColumnOptionsGroupingEnabled", this.i.j6);
691
733
  },
692
734
  enumerable: false,
693
735
  configurable: true
@@ -697,11 +739,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
697
739
  * Gets or sets the column options dropdown background color.
698
740
  */
699
741
  get: function () {
700
- return brushToString(this.i.q0);
742
+ return brushToString(this.i.q9);
701
743
  },
702
744
  set: function (v) {
703
- this.i.q0 = stringToBrush(v);
704
- this._a("actualColumnOptionsBackground", brushToString(this.i.q0));
745
+ this.i.q9 = stringToBrush(v);
746
+ this._a("actualColumnOptionsBackground", brushToString(this.i.q9));
705
747
  },
706
748
  enumerable: false,
707
749
  configurable: true
@@ -711,11 +753,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
711
753
  * Gets or sets the column options dropdown background color.
712
754
  */
713
755
  get: function () {
714
- return brushToString(this.i.re);
756
+ return brushToString(this.i.ro);
715
757
  },
716
758
  set: function (v) {
717
- this.i.re = stringToBrush(v);
718
- this._a("columnOptionsBackground", brushToString(this.i.re));
759
+ this.i.ro = stringToBrush(v);
760
+ this._a("columnOptionsBackground", brushToString(this.i.ro));
719
761
  },
720
762
  enumerable: false,
721
763
  configurable: true
@@ -725,11 +767,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
725
767
  * Gets or sets the text color for text inside the column options menu.
726
768
  */
727
769
  get: function () {
728
- return brushToString(this.i.q7);
770
+ return brushToString(this.i.rg);
729
771
  },
730
772
  set: function (v) {
731
- this.i.q7 = stringToBrush(v);
732
- this._a("actualColumnOptionsTextColor", brushToString(this.i.q7));
773
+ this.i.rg = stringToBrush(v);
774
+ this._a("actualColumnOptionsTextColor", brushToString(this.i.rg));
733
775
  },
734
776
  enumerable: false,
735
777
  configurable: true
@@ -739,11 +781,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
739
781
  * Gets or sets the text color for text inside the column options menu.
740
782
  */
741
783
  get: function () {
742
- return brushToString(this.i.rl);
784
+ return brushToString(this.i.rv);
743
785
  },
744
786
  set: function (v) {
745
- this.i.rl = stringToBrush(v);
746
- this._a("columnOptionsTextColor", brushToString(this.i.rl));
787
+ this.i.rv = stringToBrush(v);
788
+ this._a("columnOptionsTextColor", brushToString(this.i.rv));
747
789
  },
748
790
  enumerable: false,
749
791
  configurable: true
@@ -753,82 +795,82 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
753
795
  * Gets or sets the font settings for text inside the column options menu.
754
796
  */
755
797
  get: function () {
756
- if (this.i.jc == null) {
798
+ if (this.i.jd == null) {
757
799
  return null;
758
800
  }
759
- return this.i.jc.fontString;
801
+ return this.i.jd.fontString;
760
802
  },
761
803
  set: function (v) {
762
804
  var fi = new FontInfo();
763
805
  fi.fontString = v;
764
- this.i.jc = fi;
765
- this._a("columnOptionsTextStyle", this.i.jc != null ? this.i.jc.fontString : "");
806
+ this.i.jd = fi;
807
+ this._a("columnOptionsTextStyle", this.i.jd != null ? this.i.jd.fontString : "");
766
808
  },
767
809
  enumerable: false,
768
810
  configurable: true
769
811
  });
770
812
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsHoverBackgroundColor", {
771
813
  get: function () {
772
- return brushToString(this.i.q4);
814
+ return brushToString(this.i.rd);
773
815
  },
774
816
  set: function (v) {
775
- this.i.q4 = stringToBrush(v);
776
- this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.q4));
817
+ this.i.rd = stringToBrush(v);
818
+ this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.rd));
777
819
  },
778
820
  enumerable: false,
779
821
  configurable: true
780
822
  });
781
823
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsHoverBackgroundColor", {
782
824
  get: function () {
783
- return brushToString(this.i.ri);
825
+ return brushToString(this.i.rs);
784
826
  },
785
827
  set: function (v) {
786
- this.i.ri = stringToBrush(v);
787
- this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.ri));
828
+ this.i.rs = stringToBrush(v);
829
+ this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.rs));
788
830
  },
789
831
  enumerable: false,
790
832
  configurable: true
791
833
  });
792
834
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsToolTipBackgroundColor", {
793
835
  get: function () {
794
- return brushToString(this.i.q8);
836
+ return brushToString(this.i.rh);
795
837
  },
796
838
  set: function (v) {
797
- this.i.q8 = stringToBrush(v);
798
- this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.q8));
839
+ this.i.rh = stringToBrush(v);
840
+ this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.rh));
799
841
  },
800
842
  enumerable: false,
801
843
  configurable: true
802
844
  });
803
845
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsToolTipBackgroundColor", {
804
846
  get: function () {
805
- return brushToString(this.i.rm);
847
+ return brushToString(this.i.rw);
806
848
  },
807
849
  set: function (v) {
808
- this.i.rm = stringToBrush(v);
809
- this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.rm));
850
+ this.i.rw = stringToBrush(v);
851
+ this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.rw));
810
852
  },
811
853
  enumerable: false,
812
854
  configurable: true
813
855
  });
814
856
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsHighlightColor", {
815
857
  get: function () {
816
- return brushToString(this.i.q3);
858
+ return brushToString(this.i.rc);
817
859
  },
818
860
  set: function (v) {
819
- this.i.q3 = stringToBrush(v);
820
- this._a("actualColumnOptionsHighlightColor", brushToString(this.i.q3));
861
+ this.i.rc = stringToBrush(v);
862
+ this._a("actualColumnOptionsHighlightColor", brushToString(this.i.rc));
821
863
  },
822
864
  enumerable: false,
823
865
  configurable: true
824
866
  });
825
867
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsHighlightColor", {
826
868
  get: function () {
827
- return brushToString(this.i.rh);
869
+ return brushToString(this.i.rr);
828
870
  },
829
871
  set: function (v) {
830
- this.i.rh = stringToBrush(v);
831
- this._a("columnOptionsHighlightColor", brushToString(this.i.rh));
872
+ this.i.rr = stringToBrush(v);
873
+ this._a("columnOptionsHighlightColor", brushToString(this.i.rr));
832
874
  },
833
875
  enumerable: false,
834
876
  configurable: true
@@ -838,11 +880,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
838
880
  * Gets or sets the color of separators inside the column options menu.
839
881
  */
840
882
  get: function () {
841
- return brushToString(this.i.q6);
883
+ return brushToString(this.i.rf);
842
884
  },
843
885
  set: function (v) {
844
- this.i.q6 = stringToBrush(v);
845
- this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.q6));
886
+ this.i.rf = stringToBrush(v);
887
+ this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.rf));
846
888
  },
847
889
  enumerable: false,
848
890
  configurable: true
@@ -852,11 +894,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
852
894
  * Gets or sets the color of separators inside the column options menu.
853
895
  */
854
896
  get: function () {
855
- return brushToString(this.i.rk);
897
+ return brushToString(this.i.ru);
856
898
  },
857
899
  set: function (v) {
858
- this.i.rk = stringToBrush(v);
859
- this._a("columnOptionsSeparatorColor", brushToString(this.i.rk));
900
+ this.i.ru = stringToBrush(v);
901
+ this._a("columnOptionsSeparatorColor", brushToString(this.i.ru));
860
902
  },
861
903
  enumerable: false,
862
904
  configurable: true
@@ -866,11 +908,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
866
908
  * Gets or sets the background color for group headers inside the column options menu.
867
909
  */
868
910
  get: function () {
869
- return brushToString(this.i.q1);
911
+ return brushToString(this.i.ra);
870
912
  },
871
913
  set: function (v) {
872
- this.i.q1 = stringToBrush(v);
873
- this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.q1));
914
+ this.i.ra = stringToBrush(v);
915
+ this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.ra));
874
916
  },
875
917
  enumerable: false,
876
918
  configurable: true
@@ -880,11 +922,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
880
922
  * Gets or sets the background color for group headers inside the column options menu.
881
923
  */
882
924
  get: function () {
883
- return brushToString(this.i.rf);
925
+ return brushToString(this.i.rp);
884
926
  },
885
927
  set: function (v) {
886
- this.i.rf = stringToBrush(v);
887
- this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rf));
928
+ this.i.rp = stringToBrush(v);
929
+ this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rp));
888
930
  },
889
931
  enumerable: false,
890
932
  configurable: true
@@ -894,11 +936,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
894
936
  * Gets the actual text color for group headers inside the column options menu.
895
937
  */
896
938
  get: function () {
897
- return brushToString(this.i.q2);
939
+ return brushToString(this.i.rb);
898
940
  },
899
941
  set: function (v) {
900
- this.i.q2 = stringToBrush(v);
901
- this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.q2));
942
+ this.i.rb = stringToBrush(v);
943
+ this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.rb));
902
944
  },
903
945
  enumerable: false,
904
946
  configurable: true
@@ -908,71 +950,71 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
908
950
  * Gets or sets the text color for group headers inside the column options menu.
909
951
  */
910
952
  get: function () {
911
- return brushToString(this.i.rg);
953
+ return brushToString(this.i.rq);
912
954
  },
913
955
  set: function (v) {
914
- this.i.rg = stringToBrush(v);
915
- this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rg));
956
+ this.i.rq = stringToBrush(v);
957
+ this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rq));
916
958
  },
917
959
  enumerable: false,
918
960
  configurable: true
919
961
  });
920
962
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsGroupHeaderTextStyle", {
921
963
  get: function () {
922
- if (this.i.jb == null) {
964
+ if (this.i.jc == null) {
923
965
  return null;
924
966
  }
925
- return this.i.jb.fontString;
967
+ return this.i.jc.fontString;
926
968
  },
927
969
  set: function (v) {
928
970
  var fi = new FontInfo();
929
971
  fi.fontString = v;
930
- this.i.jb = fi;
931
- this._a("columnOptionsGroupHeaderTextStyle", this.i.jb != null ? this.i.jb.fontString : "");
972
+ this.i.jc = fi;
973
+ this._a("columnOptionsGroupHeaderTextStyle", this.i.jc != null ? this.i.jc.fontString : "");
932
974
  },
933
975
  enumerable: false,
934
976
  configurable: true
935
977
  });
936
978
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsAccentColor", {
937
979
  get: function () {
938
- return brushToString(this.i.qz);
980
+ return brushToString(this.i.q8);
939
981
  },
940
982
  set: function (v) {
941
- this.i.qz = stringToBrush(v);
942
- this._a("actualColumnOptionsAccentColor", brushToString(this.i.qz));
983
+ this.i.q8 = stringToBrush(v);
984
+ this._a("actualColumnOptionsAccentColor", brushToString(this.i.q8));
943
985
  },
944
986
  enumerable: false,
945
987
  configurable: true
946
988
  });
947
989
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsAccentColor", {
948
990
  get: function () {
949
- return brushToString(this.i.rd);
991
+ return brushToString(this.i.rn);
950
992
  },
951
993
  set: function (v) {
952
- this.i.rd = stringToBrush(v);
953
- this._a("columnOptionsAccentColor", brushToString(this.i.rd));
994
+ this.i.rn = stringToBrush(v);
995
+ this._a("columnOptionsAccentColor", brushToString(this.i.rn));
954
996
  },
955
997
  enumerable: false,
956
998
  configurable: true
957
999
  });
958
1000
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsRowHeight", {
959
1001
  get: function () {
960
- return this.i.k9;
1002
+ return this.i.lc;
961
1003
  },
962
1004
  set: function (v) {
963
- this.i.k9 = +v;
964
- this._a("actualColumnOptionsRowHeight", this.i.k9);
1005
+ this.i.lc = +v;
1006
+ this._a("actualColumnOptionsRowHeight", this.i.lc);
965
1007
  },
966
1008
  enumerable: false,
967
1009
  configurable: true
968
1010
  });
969
1011
  Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsRowHeight", {
970
1012
  get: function () {
971
- return this.i.la;
1013
+ return this.i.ld;
972
1014
  },
973
1015
  set: function (v) {
974
- this.i.la = +v;
975
- this._a("columnOptionsRowHeight", this.i.la);
1016
+ this.i.ld = +v;
1017
+ this._a("columnOptionsRowHeight", this.i.ld);
976
1018
  },
977
1019
  enumerable: false,
978
1020
  configurable: true
@@ -982,11 +1024,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
982
1024
  * Gets or sets if the column is editable.
983
1025
  */
984
1026
  get: function () {
985
- return this.i.j6;
1027
+ return this.i.j8;
986
1028
  },
987
1029
  set: function (v) {
988
- this.i.j6 = ensureBool(v);
989
- this._a("isEditable", this.i.j6);
1030
+ this.i.j8 = ensureBool(v);
1031
+ this._a("isEditable", this.i.j8);
990
1032
  },
991
1033
  enumerable: false,
992
1034
  configurable: true
@@ -996,11 +1038,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
996
1038
  * Gets or sets the text color used for deleted rows.
997
1039
  */
998
1040
  get: function () {
999
- return brushToString(this.i.rn);
1041
+ return brushToString(this.i.rx);
1000
1042
  },
1001
1043
  set: function (v) {
1002
- this.i.rn = stringToBrush(v);
1003
- this._a("deletedTextColor", brushToString(this.i.rn));
1044
+ this.i.rx = stringToBrush(v);
1045
+ this._a("deletedTextColor", brushToString(this.i.rx));
1004
1046
  },
1005
1047
  enumerable: false,
1006
1048
  configurable: true
@@ -1010,11 +1052,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1010
1052
  * Gets the actual text color used for deleted rows.
1011
1053
  */
1012
1054
  get: function () {
1013
- return brushToString(this.i.q9);
1055
+ return brushToString(this.i.ri);
1014
1056
  },
1015
1057
  set: function (v) {
1016
- this.i.q9 = stringToBrush(v);
1017
- this._a("actualDeletedTextColor", brushToString(this.i.q9));
1058
+ this.i.ri = stringToBrush(v);
1059
+ this._a("actualDeletedTextColor", brushToString(this.i.ri));
1018
1060
  },
1019
1061
  enumerable: false,
1020
1062
  configurable: true
@@ -1024,11 +1066,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1024
1066
  * Gets or sets the opacity to use for unsaved edited cell values.
1025
1067
  */
1026
1068
  get: function () {
1027
- return this.i.kp;
1069
+ return this.i.ks;
1028
1070
  },
1029
1071
  set: function (v) {
1030
- this.i.kp = +v;
1031
- this._a("editOpacity", this.i.kp);
1072
+ this.i.ks = +v;
1073
+ this._a("editOpacity", this.i.ks);
1032
1074
  },
1033
1075
  enumerable: false,
1034
1076
  configurable: true
@@ -1038,11 +1080,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1038
1080
  * Gets the actual opacity for unsaved edited cell values.
1039
1081
  */
1040
1082
  get: function () {
1041
- return this.i.ko;
1083
+ return this.i.kr;
1042
1084
  },
1043
1085
  set: function (v) {
1044
- this.i.ko = +v;
1045
- this._a("actualEditOpacity", this.i.ko);
1086
+ this.i.kr = +v;
1087
+ this._a("actualEditOpacity", this.i.kr);
1046
1088
  },
1047
1089
  enumerable: false,
1048
1090
  configurable: true
@@ -1071,16 +1113,16 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1071
1113
  * Gets the actual font style used for unsaved cell edits.
1072
1114
  */
1073
1115
  get: function () {
1074
- if (this.i.ja == null) {
1116
+ if (this.i.jb == null) {
1075
1117
  return null;
1076
1118
  }
1077
- return this.i.ja.fontString;
1119
+ return this.i.jb.fontString;
1078
1120
  },
1079
1121
  set: function (v) {
1080
1122
  var fi = new FontInfo();
1081
1123
  fi.fontString = v;
1082
- this.i.ja = fi;
1083
- this._a("actualEditFontInfo", this.i.ja != null ? this.i.ja.fontString : "");
1124
+ this.i.jb = fi;
1125
+ this._a("actualEditFontInfo", this.i.jb != null ? this.i.jb.fontString : "");
1084
1126
  },
1085
1127
  enumerable: false,
1086
1128
  configurable: true
@@ -1090,11 +1132,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1090
1132
  * Gets or sets if and how cell merging is performed for this field.
1091
1133
  */
1092
1134
  get: function () {
1093
- return this.i.io;
1135
+ return this.i.ip;
1094
1136
  },
1095
1137
  set: function (v) {
1096
- this.i.io = ensureEnum(MergedCellMode_$type, v);
1097
- this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.io));
1138
+ this.i.ip = ensureEnum(MergedCellMode_$type, v);
1139
+ this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.ip));
1098
1140
  },
1099
1141
  enumerable: false,
1100
1142
  configurable: true
@@ -1104,11 +1146,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1104
1146
  * Gets or sets how cells are evaluated for merging.
1105
1147
  */
1106
1148
  get: function () {
1107
- return this.i.ik;
1149
+ return this.i.il;
1108
1150
  },
1109
1151
  set: function (v) {
1110
- this.i.ik = ensureEnum(MergedCellEvaluationCriteria_$type, v);
1111
- this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.ik));
1152
+ this.i.il = ensureEnum(MergedCellEvaluationCriteria_$type, v);
1153
+ this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.il));
1112
1154
  },
1113
1155
  enumerable: false,
1114
1156
  configurable: true
@@ -1118,11 +1160,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1118
1160
  * Gets or sets the vertical alignment to use for the merged cell content.
1119
1161
  */
1120
1162
  get: function () {
1121
- return this.i.hd;
1163
+ return this.i.he;
1122
1164
  },
1123
1165
  set: function (v) {
1124
- this.i.hd = ensureEnum(CellContentVerticalAlignment_$type, v);
1125
- this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.hd));
1166
+ this.i.he = ensureEnum(CellContentVerticalAlignment_$type, v);
1167
+ this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.he));
1126
1168
  },
1127
1169
  enumerable: false,
1128
1170
  configurable: true
@@ -1132,11 +1174,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1132
1174
  * Gets or sets the amount of left padding to use for the cell content for this column.
1133
1175
  */
1134
1176
  get: function () {
1135
- return this.i.lc;
1177
+ return this.i.lf;
1136
1178
  },
1137
1179
  set: function (v) {
1138
- this.i.lc = +v;
1139
- this._a("mergedCellPaddingLeft", this.i.lc);
1180
+ this.i.lf = +v;
1181
+ this._a("mergedCellPaddingLeft", this.i.lf);
1140
1182
  },
1141
1183
  enumerable: false,
1142
1184
  configurable: true
@@ -1146,11 +1188,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1146
1188
  * Gets or sets the amount of top padding to use for the cell content for this column.
1147
1189
  */
1148
1190
  get: function () {
1149
- return this.i.le;
1191
+ return this.i.lh;
1150
1192
  },
1151
1193
  set: function (v) {
1152
- this.i.le = +v;
1153
- this._a("mergedCellPaddingTop", this.i.le);
1194
+ this.i.lh = +v;
1195
+ this._a("mergedCellPaddingTop", this.i.lh);
1154
1196
  },
1155
1197
  enumerable: false,
1156
1198
  configurable: true
@@ -1160,11 +1202,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1160
1202
  * Gets or sets the amount of right padding to use for the cell content of this column.
1161
1203
  */
1162
1204
  get: function () {
1163
- return this.i.ld;
1205
+ return this.i.lg;
1164
1206
  },
1165
1207
  set: function (v) {
1166
- this.i.ld = +v;
1167
- this._a("mergedCellPaddingRight", this.i.ld);
1208
+ this.i.lg = +v;
1209
+ this._a("mergedCellPaddingRight", this.i.lg);
1168
1210
  },
1169
1211
  enumerable: false,
1170
1212
  configurable: true
@@ -1174,11 +1216,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1174
1216
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
1175
1217
  */
1176
1218
  get: function () {
1177
- return this.i.lb;
1219
+ return this.i.le;
1178
1220
  },
1179
1221
  set: function (v) {
1180
- this.i.lb = +v;
1181
- this._a("mergedCellPaddingBottom", this.i.lb);
1222
+ this.i.le = +v;
1223
+ this._a("mergedCellPaddingBottom", this.i.le);
1182
1224
  },
1183
1225
  enumerable: false,
1184
1226
  configurable: true
@@ -1188,11 +1230,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1188
1230
  * Gets or sets whether UI filters are case sensitive or not.
1189
1231
  */
1190
1232
  get: function () {
1191
- return this.i.h6;
1233
+ return this.i.h7;
1192
1234
  },
1193
1235
  set: function (v) {
1194
- this.i.h6 = ensureEnum(FilterComparisonType_$type, v);
1195
- this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h6));
1236
+ this.i.h7 = ensureEnum(FilterComparisonType_$type, v);
1237
+ this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h7));
1196
1238
  },
1197
1239
  enumerable: false,
1198
1240
  configurable: true
@@ -1204,7 +1246,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1204
1246
  get: function () {
1205
1247
  if (this._filterOperands === null) {
1206
1248
  var coll = new IgcGridFilterOperandsCollection();
1207
- var innerColl = this.i.ie;
1249
+ var innerColl = this.i.ig;
1208
1250
  if (!innerColl) {
1209
1251
  innerColl = new GridFilterOperandsCollection_internal();
1210
1252
  }
@@ -1220,7 +1262,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1220
1262
  var coll = new IgcGridFilterOperandsCollection();
1221
1263
  this._filterOperands = coll._fromOuter(v);
1222
1264
  var syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
1223
- var innerColl = this.i.ie;
1265
+ var innerColl = this.i.ig;
1224
1266
  if (!innerColl) {
1225
1267
  innerColl = new GridFilterOperandsCollection_internal();
1226
1268
  }
@@ -1236,10 +1278,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1236
1278
  * Gets or sets the text to display in the suffix area of cells in this column.
1237
1279
  */
1238
1280
  get: function () {
1239
- return this.i.ou;
1281
+ return this.i.o0;
1240
1282
  },
1241
1283
  set: function (v) {
1242
- this.i.ou = v;
1284
+ this.i.o0 = v;
1243
1285
  },
1244
1286
  enumerable: false,
1245
1287
  configurable: true
@@ -1249,11 +1291,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1249
1291
  * Gets or sets the color of the text in the suffix area of the cells in this column.
1250
1292
  */
1251
1293
  get: function () {
1252
- return brushToString(this.i.rv);
1294
+ return brushToString(this.i.r6);
1253
1295
  },
1254
1296
  set: function (v) {
1255
- this.i.rv = stringToBrush(v);
1256
- this._a("suffixTextColor", brushToString(this.i.rv));
1297
+ this.i.r6 = stringToBrush(v);
1298
+ this._a("suffixTextColor", brushToString(this.i.r6));
1257
1299
  },
1258
1300
  enumerable: false,
1259
1301
  configurable: true
@@ -1282,10 +1324,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1282
1324
  * Gets or sets the icon to use in the suffix area of the cells in this column.
1283
1325
  */
1284
1326
  get: function () {
1285
- return this.i.om;
1327
+ return this.i.os;
1286
1328
  },
1287
1329
  set: function (v) {
1288
- this.i.om = v;
1330
+ this.i.os = v;
1289
1331
  },
1290
1332
  enumerable: false,
1291
1333
  configurable: true
@@ -1295,10 +1337,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1295
1337
  * Gets or sets the icon to use in the suffix area of the cells in this column.
1296
1338
  */
1297
1339
  get: function () {
1298
- return this.i.oj;
1340
+ return this.i.op;
1299
1341
  },
1300
1342
  set: function (v) {
1301
- this.i.oj = v;
1343
+ this.i.op = v;
1302
1344
  },
1303
1345
  enumerable: false,
1304
1346
  configurable: true
@@ -1308,11 +1350,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1308
1350
  * Gets or sets the stroke color of suffix icon.
1309
1351
  */
1310
1352
  get: function () {
1311
- return brushToString(this.i.ru);
1353
+ return brushToString(this.i.r5);
1312
1354
  },
1313
1355
  set: function (v) {
1314
- this.i.ru = stringToBrush(v);
1315
- this._a("suffixIconStroke", brushToString(this.i.ru));
1356
+ this.i.r5 = stringToBrush(v);
1357
+ this._a("suffixIconStroke", brushToString(this.i.r5));
1316
1358
  },
1317
1359
  enumerable: false,
1318
1360
  configurable: true
@@ -1322,11 +1364,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1322
1364
  * Gets or sets the fill color of suffix icon.
1323
1365
  */
1324
1366
  get: function () {
1325
- return brushToString(this.i.rt);
1367
+ return brushToString(this.i.r4);
1326
1368
  },
1327
1369
  set: function (v) {
1328
- this.i.rt = stringToBrush(v);
1329
- this._a("suffixIconFill", brushToString(this.i.rt));
1370
+ this.i.r4 = stringToBrush(v);
1371
+ this._a("suffixIconFill", brushToString(this.i.r4));
1330
1372
  },
1331
1373
  enumerable: false,
1332
1374
  configurable: true
@@ -1336,11 +1378,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1336
1378
  * Gets or sets the suffix icon's viewbox x coordinate.
1337
1379
  */
1338
1380
  get: function () {
1339
- return this.i.ks;
1381
+ return this.i.kv;
1340
1382
  },
1341
1383
  set: function (v) {
1342
- this.i.ks = +v;
1343
- this._a("suffixIconViewBoxLeft", this.i.ks);
1384
+ this.i.kv = +v;
1385
+ this._a("suffixIconViewBoxLeft", this.i.kv);
1344
1386
  },
1345
1387
  enumerable: false,
1346
1388
  configurable: true
@@ -1350,11 +1392,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1350
1392
  * Gets or sets the suffix icon's viewbox y coordinate.
1351
1393
  */
1352
1394
  get: function () {
1353
- return this.i.kt;
1395
+ return this.i.kw;
1354
1396
  },
1355
1397
  set: function (v) {
1356
- this.i.kt = +v;
1357
- this._a("suffixIconViewBoxTop", this.i.kt);
1398
+ this.i.kw = +v;
1399
+ this._a("suffixIconViewBoxTop", this.i.kw);
1358
1400
  },
1359
1401
  enumerable: false,
1360
1402
  configurable: true
@@ -1364,11 +1406,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1364
1406
  * Gets or sets the suffix icon's viewbox width.
1365
1407
  */
1366
1408
  get: function () {
1367
- return this.i.ku;
1409
+ return this.i.kx;
1368
1410
  },
1369
1411
  set: function (v) {
1370
- this.i.ku = +v;
1371
- this._a("suffixIconViewBoxWidth", this.i.ku);
1412
+ this.i.kx = +v;
1413
+ this._a("suffixIconViewBoxWidth", this.i.kx);
1372
1414
  },
1373
1415
  enumerable: false,
1374
1416
  configurable: true
@@ -1378,11 +1420,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1378
1420
  * Gets or sets the suffix icon's viewbox height.
1379
1421
  */
1380
1422
  get: function () {
1381
- return this.i.kr;
1423
+ return this.i.ku;
1382
1424
  },
1383
1425
  set: function (v) {
1384
- this.i.kr = +v;
1385
- this._a("suffixIconViewBoxHeight", this.i.kr);
1426
+ this.i.ku = +v;
1427
+ this._a("suffixIconViewBoxHeight", this.i.ku);
1386
1428
  },
1387
1429
  enumerable: false,
1388
1430
  configurable: true
@@ -1392,11 +1434,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1392
1434
  * Gets or sets the suffix margin.
1393
1435
  */
1394
1436
  get: function () {
1395
- return this.i.kv;
1437
+ return this.i.ky;
1396
1438
  },
1397
1439
  set: function (v) {
1398
- this.i.kv = +v;
1399
- this._a("suffixMargin", this.i.kv);
1440
+ this.i.ky = +v;
1441
+ this._a("suffixMargin", this.i.ky);
1400
1442
  },
1401
1443
  enumerable: false,
1402
1444
  configurable: true
@@ -1406,11 +1448,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1406
1448
  * Gets or sets the text decoration to apply to cells in this column.
1407
1449
  */
1408
1450
  get: function () {
1409
- return this.i.iu;
1451
+ return this.i.iv;
1410
1452
  },
1411
1453
  set: function (v) {
1412
- this.i.iu = ensureEnum(TextCellDecoration_$type, v);
1413
- this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.iu));
1454
+ this.i.iv = ensureEnum(TextCellDecoration_$type, v);
1455
+ this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.iv));
1414
1456
  },
1415
1457
  enumerable: false,
1416
1458
  configurable: true
@@ -1447,18 +1489,18 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1447
1489
 
1448
1490
  */
1449
1491
  IgcDataGridColumnComponent.prototype.getUniqueKey = function () {
1450
- var iv = this.i.nk();
1492
+ var iv = this.i.no();
1451
1493
  return (iv);
1452
1494
  };
1453
1495
  IgcDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
1454
- this.i.pc(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1496
+ this.i.pi(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1455
1497
  };
1456
1498
  /**
1457
1499
  * Returns if the column has named header values.
1458
1500
 
1459
1501
  */
1460
1502
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValues = function () {
1461
- var iv = this.i.j0();
1503
+ var iv = this.i.j2();
1462
1504
  return (iv);
1463
1505
  };
1464
1506
  /**
@@ -1467,7 +1509,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1467
1509
  * @param valueName * The named value to check for.
1468
1510
  */
1469
1511
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValue = function (valueName) {
1470
- var iv = this.i.jz(valueName);
1512
+ var iv = this.i.j1(valueName);
1471
1513
  return (iv);
1472
1514
  };
1473
1515
  /**
@@ -1476,7 +1518,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1476
1518
  * @param valueName * The named header value to remove.
1477
1519
  */
1478
1520
  IgcDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
1479
- this.i.pb(valueName);
1521
+ this.i.ph(valueName);
1480
1522
  };
1481
1523
  /**
1482
1524
  * Gets the value of a named header value for this column by name.
@@ -1484,11 +1526,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1484
1526
  * @param valueName * Name of the named header value to retrieve.
1485
1527
  */
1486
1528
  IgcDataGridColumnComponent.prototype.getNamedHeaderValue = function (valueName) {
1487
- var iv = this.i.lq(valueName);
1529
+ var iv = this.i.lt(valueName);
1488
1530
  return (iv);
1489
1531
  };
1490
1532
  IgcDataGridColumnComponent.prototype.applyCustomFilter = function (filterID, index, value) {
1491
- this.i.o2(filterID, index, value);
1533
+ this.i.o8(filterID, index, value);
1492
1534
  };
1493
1535
  IgcDataGridColumnComponent.prototype.getDesiredToolbarActions = function () {
1494
1536
  var iv = this.i.getDesiredToolbarActions();
@@ -1551,7 +1593,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
1551
1593
  this._actualHeaderTextChange = ev;
1552
1594
  this._actualHeaderTextChange_wrapped = function (o, e) {
1553
1595
  var ext = _this.actualHeaderText;
1554
- if (e.propertyName == 'Mi') {
1596
+ if (e.propertyName == 'Ml') {
1555
1597
  if (_this.beforeActualHeaderTextChange) {
1556
1598
  _this.beforeActualHeaderTextChange(_this, ext);
1557
1599
  }