igniteui-webcomponents-data-grids 6.0.1 → 6.0.2-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 (241) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +12298 -10495
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +8409 -7998
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +308 -308
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +11 -11
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +326 -205
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +8 -8
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/TextIconSetConditionalStyle.js +14 -9
  74. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  75. package/esm2015/lib/igc-cell-info.js +301 -190
  76. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  77. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  78. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igc-data-grid-column-component.js +284 -160
  80. package/esm2015/lib/igc-data-grid-component.js +64 -4
  81. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  83. package/esm2015/lib/igc-definition-base-component.js +66 -65
  84. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  87. package/esm2015/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igc-grid-conditional-style-font-info-component.js +214 -0
  89. package/esm2015/lib/igc-grid-conditional-style-font-info-module.js +16 -0
  90. package/esm2015/lib/igc-grid-conditional-style-property-component.js +101 -35
  91. package/esm2015/lib/igc-header-component.js +24 -24
  92. package/esm2015/lib/igc-image-cell-info.js +6 -6
  93. package/esm2015/lib/igc-image-column-component.js +12 -12
  94. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  96. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igc-section-header-component.js +24 -24
  98. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igc-summary-row-component.js +24 -24
  100. package/esm2015/lib/igc-template-cell-info.js +2 -2
  101. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igc-text-cell-info.js +2 -2
  103. package/esm2015/lib/igc-text-column-component.js +9 -9
  104. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +4 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +8205 -7695
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +11 -11
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +343 -194
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +8 -8
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/TextIconSetConditionalStyle.js +14 -9
  177. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  178. package/esm5/lib/igc-cell-info.js +349 -190
  179. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  180. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  181. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igc-data-grid-column-component.js +332 -160
  183. package/esm5/lib/igc-data-grid-component.js +68 -4
  184. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igc-date-time-column-component.js +23 -23
  186. package/esm5/lib/igc-definition-base-component.js +66 -65
  187. package/esm5/lib/igc-editor-cell-info.js +23 -23
  188. package/esm5/lib/igc-filter-cell-info.js +26 -26
  189. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  190. package/esm5/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igc-grid-conditional-style-font-info-component.js +232 -0
  192. package/esm5/lib/igc-grid-conditional-style-font-info-module.js +20 -0
  193. package/esm5/lib/igc-grid-conditional-style-property-component.js +128 -34
  194. package/esm5/lib/igc-header-component.js +24 -24
  195. package/esm5/lib/igc-image-cell-info.js +6 -6
  196. package/esm5/lib/igc-image-column-component.js +12 -12
  197. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igc-numeric-column-component.js +35 -35
  199. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igc-section-header-component.js +24 -24
  201. package/esm5/lib/igc-summary-cell-info.js +9 -9
  202. package/esm5/lib/igc-summary-row-component.js +24 -24
  203. package/esm5/lib/igc-template-cell-info.js +2 -2
  204. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igc-text-cell-info.js +2 -2
  206. package/esm5/lib/igc-text-column-component.js +9 -9
  207. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +4 -0
  209. package/fesm2015/igniteui-webcomponents-data-grids.js +12290 -10806
  210. package/fesm5/igniteui-webcomponents-data-grids.js +12295 -10497
  211. package/lib/ColumnFilterCondition_combined.d.ts +1999 -1901
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/GridConditionalStyleProperty.d.ts +84 -61
  219. package/lib/ImageCell.d.ts +20 -20
  220. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  221. package/lib/NumericCell.d.ts +2 -1
  222. package/lib/SectionHeaderCell.d.ts +4 -4
  223. package/lib/SummaryCell.d.ts +11 -11
  224. package/lib/TemplateCell.d.ts +6 -6
  225. package/lib/TemplateHeader.d.ts +3 -3
  226. package/lib/TemplateHeaderCell.d.ts +3 -3
  227. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  228. package/lib/TemplateSectionHeader.d.ts +2 -2
  229. package/lib/TextCell.d.ts +10 -8
  230. package/lib/TextCellDecoration.d.ts +26 -0
  231. package/lib/TextHeaderCell.d.ts +37 -35
  232. package/lib/VerticalSeparatorCell.d.ts +9 -9
  233. package/lib/igc-cell-info.d.ts +58 -0
  234. package/lib/igc-data-grid-column-component.d.ts +62 -1
  235. package/lib/igc-data-grid-component.d.ts +15 -1
  236. package/lib/igc-definition-base-component.d.ts +1 -1
  237. package/lib/igc-grid-conditional-style-font-info-component.d.ts +44 -0
  238. package/lib/igc-grid-conditional-style-font-info-module.d.ts +3 -0
  239. package/lib/igc-grid-conditional-style-property-component.d.ts +17 -2
  240. package/package.json +41 -41
  241. package/public_api.d.ts +4 -0
@@ -12,7 +12,9 @@ import { MergedCellEvaluationCriteria_$type } from "./MergedCellEvaluationCriter
12
12
  import { CellContentVerticalAlignment_$type } from "./CellContentVerticalAlignment";
13
13
  import { FilterComparisonType_$type } from "./FilterComparisonType";
14
14
  import { IgcGridFilterOperandsCollection } from "./igc-grid-filter-operands-collection";
15
+ import { TextCellDecoration_$type } from "./TextCellDecoration";
15
16
  import { IgcFormatCellEventArgs } from "./igc-format-cell-event-args";
17
+ import { CellPropertyAnimationType_$type } from "./CellPropertyAnimationType";
16
18
  import { IgcDefinitionBaseComponent } from "./igc-definition-base-component";
17
19
  import { getAllPropertyNames, toSpinal, brushToString, stringToBrush, ensureBool, ensureEnum, enumToString } from "igniteui-webcomponents-core";
18
20
  import { ColumnWidth as ColumnWidth_internal } from "./ColumnWidth";
@@ -92,11 +94,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
92
94
  * Gets or sets the amount of left padding to use for the cell content for this column.
93
95
  */
94
96
  get: function () {
95
- return this.i.kl;
97
+ return this.i.ky;
96
98
  },
97
99
  set: function (v) {
98
- this.i.kl = +v;
99
- this._a("paddingLeft", this.i.kl);
100
+ this.i.ky = +v;
101
+ this._a("paddingLeft", this.i.ky);
100
102
  },
101
103
  enumerable: false,
102
104
  configurable: true
@@ -106,11 +108,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
106
108
  * Gets or sets the amount of top padding to use for the cell content for this column.
107
109
  */
108
110
  get: function () {
109
- return this.i.kn;
111
+ return this.i.k0;
110
112
  },
111
113
  set: function (v) {
112
- this.i.kn = +v;
113
- this._a("paddingTop", this.i.kn);
114
+ this.i.k0 = +v;
115
+ this._a("paddingTop", this.i.k0);
114
116
  },
115
117
  enumerable: false,
116
118
  configurable: true
@@ -120,11 +122,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
120
122
  * Gets or sets the amount of right padding to use for the cell content of this column.
121
123
  */
122
124
  get: function () {
123
- return this.i.km;
125
+ return this.i.kz;
124
126
  },
125
127
  set: function (v) {
126
- this.i.km = +v;
127
- this._a("paddingRight", this.i.km);
128
+ this.i.kz = +v;
129
+ this._a("paddingRight", this.i.kz);
128
130
  },
129
131
  enumerable: false,
130
132
  configurable: true
@@ -134,11 +136,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
134
136
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
135
137
  */
136
138
  get: function () {
137
- return this.i.kk;
139
+ return this.i.kx;
138
140
  },
139
141
  set: function (v) {
140
- this.i.kk = +v;
141
- this._a("paddingBottom", this.i.kk);
142
+ this.i.kx = +v;
143
+ this._a("paddingBottom", this.i.kx);
142
144
  },
143
145
  enumerable: false,
144
146
  configurable: true
@@ -148,10 +150,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
148
150
  * Gets or sets an unique name of the Column
149
151
  */
150
152
  get: function () {
151
- return this.i.mg;
153
+ return this.i.mw;
152
154
  },
153
155
  set: function (v) {
154
- this.i.mg = v;
156
+ this.i.mw = v;
155
157
  },
156
158
  enumerable: false,
157
159
  configurable: true
@@ -161,10 +163,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
161
163
  * Gets or sets the key used for the column binding
162
164
  */
163
165
  get: function () {
164
- return this.i.lp;
166
+ return this.i.l5;
165
167
  },
166
168
  set: function (v) {
167
- this.i.lp = v;
169
+ this.i.l5 = v;
168
170
  },
169
171
  enumerable: false,
170
172
  configurable: true
@@ -174,10 +176,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
174
176
  * Gets or sets the text displayed in the header of the column
175
177
  */
176
178
  get: function () {
177
- return this.i.lw;
179
+ return this.i.mc;
178
180
  },
179
181
  set: function (v) {
180
- this.i.lw = v;
182
+ this.i.mc = v;
181
183
  },
182
184
  enumerable: false,
183
185
  configurable: true
@@ -187,10 +189,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
187
189
  * Gets the actual text displayed in the header of the column
188
190
  */
189
191
  get: function () {
190
- return this.i.k4;
192
+ return this.i.lk;
191
193
  },
192
194
  set: function (v) {
193
- this.i.k4 = v;
195
+ this.i.lk = v;
194
196
  },
195
197
  enumerable: false,
196
198
  configurable: true
@@ -200,11 +202,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
200
202
  * Gets or sets the background color to use for the cells when they are selected
201
203
  */
202
204
  get: function () {
203
- return brushToString(this.i.n4);
205
+ return brushToString(this.i.o2);
204
206
  },
205
207
  set: function (v) {
206
- this.i.n4 = stringToBrush(v);
207
- this._a("selectedBackground", brushToString(this.i.n4));
208
+ this.i.o2 = stringToBrush(v);
209
+ this._a("selectedBackground", brushToString(this.i.o2));
208
210
  },
209
211
  enumerable: false,
210
212
  configurable: true
@@ -214,11 +216,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
214
216
  * Gets the actual background color that is used for the cells when they are selected
215
217
  */
216
218
  get: function () {
217
- return brushToString(this.i.nx);
219
+ return brushToString(this.i.ov);
218
220
  },
219
221
  set: function (v) {
220
- this.i.nx = stringToBrush(v);
221
- this._a("actualSelectedBackground", brushToString(this.i.nx));
222
+ this.i.ov = stringToBrush(v);
223
+ this._a("actualSelectedBackground", brushToString(this.i.ov));
222
224
  },
223
225
  enumerable: false,
224
226
  configurable: true
@@ -228,11 +230,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
228
230
  * Gets or sets the background color to use for the cells when the row is hovered.
229
231
  */
230
232
  get: function () {
231
- return brushToString(this.i.n2);
233
+ return brushToString(this.i.o0);
232
234
  },
233
235
  set: function (v) {
234
- this.i.n2 = stringToBrush(v);
235
- this._a("rowHoverBackground", brushToString(this.i.n2));
236
+ this.i.o0 = stringToBrush(v);
237
+ this._a("rowHoverBackground", brushToString(this.i.o0));
236
238
  },
237
239
  enumerable: false,
238
240
  configurable: true
@@ -242,11 +244,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
242
244
  * Gets the actual background color that is used for the cells when they are hovered.
243
245
  */
244
246
  get: function () {
245
- return brushToString(this.i.nv);
247
+ return brushToString(this.i.ot);
246
248
  },
247
249
  set: function (v) {
248
- this.i.nv = stringToBrush(v);
249
- this._a("actualHoverBackground", brushToString(this.i.nv));
250
+ this.i.ot = stringToBrush(v);
251
+ this._a("actualHoverBackground", brushToString(this.i.ot));
250
252
  },
251
253
  enumerable: false,
252
254
  configurable: true
@@ -256,11 +258,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
256
258
  * Gets or sets the text color to use for the cells when the row is hovered.
257
259
  */
258
260
  get: function () {
259
- return brushToString(this.i.n3);
261
+ return brushToString(this.i.o1);
260
262
  },
261
263
  set: function (v) {
262
- this.i.n3 = stringToBrush(v);
263
- this._a("rowHoverTextColor", brushToString(this.i.n3));
264
+ this.i.o1 = stringToBrush(v);
265
+ this._a("rowHoverTextColor", brushToString(this.i.o1));
264
266
  },
265
267
  enumerable: false,
266
268
  configurable: true
@@ -270,11 +272,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
270
272
  * Gets the actual text color that is used for the cells when they are hovered.
271
273
  */
272
274
  get: function () {
273
- return brushToString(this.i.nw);
275
+ return brushToString(this.i.ou);
274
276
  },
275
277
  set: function (v) {
276
- this.i.nw = stringToBrush(v);
277
- this._a("actualRowHoverTextColor", brushToString(this.i.nw));
278
+ this.i.ou = stringToBrush(v);
279
+ this._a("actualRowHoverTextColor", brushToString(this.i.ou));
278
280
  },
279
281
  enumerable: false,
280
282
  configurable: true
@@ -284,7 +286,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
284
286
  * Gets or sets the animation settings to use for this column.
285
287
  */
286
288
  get: function () {
287
- var r = this.i.h7;
289
+ var r = this.i.h8;
288
290
  if (r == null) {
289
291
  return null;
290
292
  }
@@ -303,7 +305,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
303
305
  return r.externalObject;
304
306
  },
305
307
  set: function (v) {
306
- v == null ? this.i.h7 = null : this.i.h7 = v.i;
308
+ v == null ? this.i.h8 = null : this.i.h8 = v.i;
307
309
  },
308
310
  enumerable: false,
309
311
  configurable: true
@@ -348,11 +350,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
348
350
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
349
351
  */
350
352
  get: function () {
351
- return this.i.j1;
353
+ return this.i.ka;
352
354
  },
353
355
  set: function (v) {
354
- this.i.j1 = +v;
355
- this._a("minWidth", this.i.j1);
356
+ this.i.ka = +v;
357
+ this._a("minWidth", this.i.ka);
356
358
  },
357
359
  enumerable: false,
358
360
  configurable: true
@@ -362,11 +364,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
362
364
  * Gets whether this column was projected from markup/templates and is constrained.
363
365
  */
364
366
  get: function () {
365
- return this.i.jo;
367
+ return this.i.jt;
366
368
  },
367
369
  set: function (v) {
368
- this.i.jo = ensureBool(v);
369
- this._a("isFromMarkup", this.i.jo);
370
+ this.i.jt = ensureBool(v);
371
+ this._a("isFromMarkup", this.i.jt);
370
372
  },
371
373
  enumerable: false,
372
374
  configurable: true
@@ -376,11 +378,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
376
378
  * Gets whether this column was auto generated.
377
379
  */
378
380
  get: function () {
379
- return this.i.ji;
381
+ return this.i.jn;
380
382
  },
381
383
  set: function (v) {
382
- this.i.ji = ensureBool(v);
383
- this._a("isAutoGenerated", this.i.ji);
384
+ this.i.jn = ensureBool(v);
385
+ this._a("isAutoGenerated", this.i.jn);
384
386
  },
385
387
  enumerable: false,
386
388
  configurable: true
@@ -390,10 +392,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
390
392
  * Gets or sets a filter to apply on the values of this column
391
393
  */
392
394
  get: function () {
393
- return this.i.g1;
395
+ return this.i.g2;
394
396
  },
395
397
  set: function (v) {
396
- this.i.g1 = v;
398
+ this.i.g2 = v;
397
399
  },
398
400
  enumerable: false,
399
401
  configurable: true
@@ -403,10 +405,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
403
405
  * Gets or sets a filter to apply to the values of this column.
404
406
  */
405
407
  get: function () {
406
- return this.i.g3;
408
+ return this.i.g4;
407
409
  },
408
410
  set: function (v) {
409
- this.i.g3 = v;
411
+ this.i.g4 = v;
410
412
  },
411
413
  enumerable: false,
412
414
  configurable: true
@@ -442,11 +444,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
442
444
  * Gets or sets whether filtering is enabled for this column.
443
445
  */
444
446
  get: function () {
445
- return this.i.jn;
447
+ return this.i.js;
446
448
  },
447
449
  set: function (v) {
448
- this.i.jn = ensureBool(v);
449
- this._a("isFilteringEnabled", this.i.jn);
450
+ this.i.js = ensureBool(v);
451
+ this._a("isFilteringEnabled", this.i.js);
450
452
  },
451
453
  enumerable: false,
452
454
  configurable: true
@@ -456,11 +458,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
456
458
  * Gets or sets whether resizing is enabled for this column.
457
459
  */
458
460
  get: function () {
459
- return this.i.jq;
461
+ return this.i.jv;
460
462
  },
461
463
  set: function (v) {
462
- this.i.jq = ensureBool(v);
463
- this._a("isResizingEnabled", this.i.jq);
464
+ this.i.jv = ensureBool(v);
465
+ this._a("isResizingEnabled", this.i.jv);
464
466
  },
465
467
  enumerable: false,
466
468
  configurable: true
@@ -470,11 +472,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
470
472
  * Gets or sets whether or not a column is hidden from the grid
471
473
  */
472
474
  get: function () {
473
- return this.i.jp;
475
+ return this.i.ju;
474
476
  },
475
477
  set: function (v) {
476
- this.i.jp = ensureBool(v);
477
- this._a("isHidden", this.i.jp);
478
+ this.i.ju = ensureBool(v);
479
+ this._a("isHidden", this.i.ju);
478
480
  },
479
481
  enumerable: false,
480
482
  configurable: true
@@ -484,11 +486,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
484
486
  * Gets or sets if a column should be removed from the grid when it is fully hidden
485
487
  */
486
488
  get: function () {
487
- return this.i.jt;
489
+ return this.i.jy;
488
490
  },
489
491
  set: function (v) {
490
- this.i.jt = ensureBool(v);
491
- this._a("shouldRemoveWhenHidden", this.i.jt);
492
+ this.i.jy = ensureBool(v);
493
+ this._a("shouldRemoveWhenHidden", this.i.jy);
492
494
  },
493
495
  enumerable: false,
494
496
  configurable: true
@@ -498,11 +500,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
498
500
  * Gets the current sort direction (None, Ascending, Descending) for this column.
499
501
  */
500
502
  get: function () {
501
- return this.i.hr;
503
+ return this.i.hs;
502
504
  },
503
505
  set: function (v) {
504
- this.i.hr = ensureEnum(ColumnSortDirection_$type, v);
505
- this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hr));
506
+ this.i.hs = ensureEnum(ColumnSortDirection_$type, v);
507
+ this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hs));
506
508
  },
507
509
  enumerable: false,
508
510
  configurable: true
@@ -512,11 +514,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
512
514
  * Gets or sets the current fixed position for this column.
513
515
  */
514
516
  get: function () {
515
- return this.i.im;
517
+ return this.i.io;
516
518
  },
517
519
  set: function (v) {
518
- this.i.im = ensureEnum(PinnedPositions_$type, v);
519
- this._a("pinned", enumToString(PinnedPositions_$type, this.i.im));
520
+ this.i.io = ensureEnum(PinnedPositions_$type, v);
521
+ this._a("pinned", enumToString(PinnedPositions_$type, this.i.io));
520
522
  },
521
523
  enumerable: false,
522
524
  configurable: true
@@ -526,11 +528,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
526
528
  * Gets the actual column options icon alignment for this column.
527
529
  */
528
530
  get: function () {
529
- return this.i.hi;
531
+ return this.i.hj;
530
532
  },
531
533
  set: function (v) {
532
- this.i.hi = ensureEnum(ColumnOptionsIconAlignment_$type, v);
533
- this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hi));
534
+ this.i.hj = ensureEnum(ColumnOptionsIconAlignment_$type, v);
535
+ this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hj));
534
536
  },
535
537
  enumerable: false,
536
538
  configurable: true
@@ -540,11 +542,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
540
542
  * Gets or sets whether the column options icon is aligned opposite the header text or not.
541
543
  */
542
544
  get: function () {
543
- return this.i.hj;
545
+ return this.i.hk;
544
546
  },
545
547
  set: function (v) {
546
- this.i.hj = ensureEnum(ColumnOptionsIconAlignment_$type, v);
547
- this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hj));
548
+ this.i.hk = ensureEnum(ColumnOptionsIconAlignment_$type, v);
549
+ this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hk));
548
550
  },
549
551
  enumerable: false,
550
552
  configurable: true
@@ -554,11 +556,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
554
556
  * Gets the actual column options icon color for this column.
555
557
  */
556
558
  get: function () {
557
- return brushToString(this.i.nt);
559
+ return brushToString(this.i.or);
558
560
  },
559
561
  set: function (v) {
560
- this.i.nt = stringToBrush(v);
561
- this._a("actualColumnOptionsIconColor", brushToString(this.i.nt));
562
+ this.i.or = stringToBrush(v);
563
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.or));
562
564
  },
563
565
  enumerable: false,
564
566
  configurable: true
@@ -568,11 +570,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
568
570
  * Gets or sets the column options icon color for this column.
569
571
  */
570
572
  get: function () {
571
- return brushToString(this.i.ny);
573
+ return brushToString(this.i.ow);
572
574
  },
573
575
  set: function (v) {
574
- this.i.ny = stringToBrush(v);
575
- this._a("columnOptionsIconColor", brushToString(this.i.ny));
576
+ this.i.ow = stringToBrush(v);
577
+ this._a("columnOptionsIconColor", brushToString(this.i.ow));
576
578
  },
577
579
  enumerable: false,
578
580
  configurable: true
@@ -582,11 +584,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
582
584
  * Gets or sets how the column option icon will behave in the column header.
583
585
  */
584
586
  get: function () {
585
- return this.i.hn;
587
+ return this.i.ho;
586
588
  },
587
589
  set: function (v) {
588
- this.i.hn = ensureEnum(ColumnOptionsIconBehavior_$type, v);
589
- this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hn));
590
+ this.i.ho = ensureEnum(ColumnOptionsIconBehavior_$type, v);
591
+ this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.ho));
590
592
  },
591
593
  enumerable: false,
592
594
  configurable: true
@@ -596,11 +598,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
596
598
  * Gets or sets how the column option icon will behave in the column header.
597
599
  */
598
600
  get: function () {
599
- return this.i.hm;
601
+ return this.i.hn;
600
602
  },
601
603
  set: function (v) {
602
- this.i.hm = ensureEnum(ColumnOptionsIconBehavior_$type, v);
603
- this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hm));
604
+ this.i.hn = ensureEnum(ColumnOptionsIconBehavior_$type, v);
605
+ this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hn));
604
606
  },
605
607
  enumerable: false,
606
608
  configurable: true
@@ -610,11 +612,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
610
612
  * Gets the actual state of the column options for this column.
611
613
  */
612
614
  get: function () {
613
- return this.i.jb;
615
+ return this.i.jg;
614
616
  },
615
617
  set: function (v) {
616
- this.i.jb = ensureBool(v);
617
- this._a("actualIsColumnOptionsEnabled", this.i.jb);
618
+ this.i.jg = ensureBool(v);
619
+ this._a("actualIsColumnOptionsEnabled", this.i.jg);
618
620
  },
619
621
  enumerable: false,
620
622
  configurable: true
@@ -625,11 +627,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
625
627
  * then it will be disabled for the column regardless of what this is set to.
626
628
  */
627
629
  get: function () {
628
- return this.i.jj;
630
+ return this.i.jo;
629
631
  },
630
632
  set: function (v) {
631
- this.i.jj = ensureBool(v);
632
- this._a("isColumnOptionsEnabled", this.i.jj);
633
+ this.i.jo = ensureBool(v);
634
+ this._a("isColumnOptionsEnabled", this.i.jo);
633
635
  },
634
636
  enumerable: false,
635
637
  configurable: true
@@ -639,11 +641,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
639
641
  * Gets the actual state of summaries menu in the column options for this column.
640
642
  */
641
643
  get: function () {
642
- return this.i.jd;
644
+ return this.i.ji;
643
645
  },
644
646
  set: function (v) {
645
- this.i.jd = ensureBool(v);
646
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jd);
647
+ this.i.ji = ensureBool(v);
648
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.ji);
647
649
  },
648
650
  enumerable: false,
649
651
  configurable: true
@@ -653,11 +655,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
653
655
  * Gets or sets whether to show the summaries option in the column options menu for this column.
654
656
  */
655
657
  get: function () {
656
- return this.i.jl;
658
+ return this.i.jq;
657
659
  },
658
660
  set: function (v) {
659
- this.i.jl = ensureBool(v);
660
- this._a("isColumnOptionsSummariesEnabled", this.i.jl);
661
+ this.i.jq = ensureBool(v);
662
+ this._a("isColumnOptionsSummariesEnabled", this.i.jq);
661
663
  },
662
664
  enumerable: false,
663
665
  configurable: true
@@ -667,11 +669,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
667
669
  * Gets the actual state of grouping menu in the column options for this column.
668
670
  */
669
671
  get: function () {
670
- return this.i.jc;
672
+ return this.i.jh;
671
673
  },
672
674
  set: function (v) {
673
- this.i.jc = ensureBool(v);
674
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jc);
675
+ this.i.jh = ensureBool(v);
676
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jh);
675
677
  },
676
678
  enumerable: false,
677
679
  configurable: true
@@ -681,11 +683,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
681
683
  * Gets or sets whether to show the grouping option in the column options menu for this column.
682
684
  */
683
685
  get: function () {
684
- return this.i.jk;
686
+ return this.i.jp;
685
687
  },
686
688
  set: function (v) {
687
- this.i.jk = ensureBool(v);
688
- this._a("isColumnOptionsGroupingEnabled", this.i.jk);
689
+ this.i.jp = ensureBool(v);
690
+ this._a("isColumnOptionsGroupingEnabled", this.i.jp);
689
691
  },
690
692
  enumerable: false,
691
693
  configurable: true
@@ -695,11 +697,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
695
697
  * Gets or sets if the column is editable.
696
698
  */
697
699
  get: function () {
698
- return this.i.jm;
700
+ return this.i.jr;
699
701
  },
700
702
  set: function (v) {
701
- this.i.jm = ensureBool(v);
702
- this._a("isEditable", this.i.jm);
703
+ this.i.jr = ensureBool(v);
704
+ this._a("isEditable", this.i.jr);
703
705
  },
704
706
  enumerable: false,
705
707
  configurable: true
@@ -709,11 +711,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
709
711
  * Gets or sets the text color used for deleted rows.
710
712
  */
711
713
  get: function () {
712
- return brushToString(this.i.nz);
714
+ return brushToString(this.i.ox);
713
715
  },
714
716
  set: function (v) {
715
- this.i.nz = stringToBrush(v);
716
- this._a("deletedTextColor", brushToString(this.i.nz));
717
+ this.i.ox = stringToBrush(v);
718
+ this._a("deletedTextColor", brushToString(this.i.ox));
717
719
  },
718
720
  enumerable: false,
719
721
  configurable: true
@@ -723,11 +725,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
723
725
  * Gets the actual text color used for deleted rows.
724
726
  */
725
727
  get: function () {
726
- return brushToString(this.i.nu);
728
+ return brushToString(this.i.os);
727
729
  },
728
730
  set: function (v) {
729
- this.i.nu = stringToBrush(v);
730
- this._a("actualDeletedTextColor", brushToString(this.i.nu));
731
+ this.i.os = stringToBrush(v);
732
+ this._a("actualDeletedTextColor", brushToString(this.i.os));
731
733
  },
732
734
  enumerable: false,
733
735
  configurable: true
@@ -737,11 +739,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
737
739
  * Gets or sets the opacity to use for unsaved edited cell values.
738
740
  */
739
741
  get: function () {
740
- return this.i.j0;
742
+ return this.i.j9;
741
743
  },
742
744
  set: function (v) {
743
- this.i.j0 = +v;
744
- this._a("editOpacity", this.i.j0);
745
+ this.i.j9 = +v;
746
+ this._a("editOpacity", this.i.j9);
745
747
  },
746
748
  enumerable: false,
747
749
  configurable: true
@@ -751,11 +753,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
751
753
  * Gets the actual opacity for unsaved edited cell values.
752
754
  */
753
755
  get: function () {
754
- return this.i.jz;
756
+ return this.i.j8;
755
757
  },
756
758
  set: function (v) {
757
- this.i.jz = +v;
758
- this._a("actualEditOpacity", this.i.jz);
759
+ this.i.j8 = +v;
760
+ this._a("actualEditOpacity", this.i.j8);
759
761
  },
760
762
  enumerable: false,
761
763
  configurable: true
@@ -784,16 +786,16 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
784
786
  * Gets the actual font style used for unsaved cell edits.
785
787
  */
786
788
  get: function () {
787
- if (this.i.it == null) {
789
+ if (this.i.ix == null) {
788
790
  return null;
789
791
  }
790
- return this.i.it.fontString;
792
+ return this.i.ix.fontString;
791
793
  },
792
794
  set: function (v) {
793
795
  var fi = new FontInfo();
794
796
  fi.fontString = v;
795
- this.i.it = fi;
796
- this._a("actualEditFontInfo", this.i.it != null ? this.i.it.fontString : "");
797
+ this.i.ix = fi;
798
+ this._a("actualEditFontInfo", this.i.ix != null ? this.i.ix.fontString : "");
797
799
  },
798
800
  enumerable: false,
799
801
  configurable: true
@@ -803,11 +805,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
803
805
  * Gets or sets if and how cell merging is performed for this field.
804
806
  */
805
807
  get: function () {
806
- return this.i.ii;
808
+ return this.i.ij;
807
809
  },
808
810
  set: function (v) {
809
- this.i.ii = ensureEnum(MergedCellMode_$type, v);
810
- this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.ii));
811
+ this.i.ij = ensureEnum(MergedCellMode_$type, v);
812
+ this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.ij));
811
813
  },
812
814
  enumerable: false,
813
815
  configurable: true
@@ -817,11 +819,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
817
819
  * Gets or sets how cells are evaluated for merging.
818
820
  */
819
821
  get: function () {
820
- return this.i.ie;
822
+ return this.i.ig;
821
823
  },
822
824
  set: function (v) {
823
- this.i.ie = ensureEnum(MergedCellEvaluationCriteria_$type, v);
824
- this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.ie));
825
+ this.i.ig = ensureEnum(MergedCellEvaluationCriteria_$type, v);
826
+ this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.ig));
825
827
  },
826
828
  enumerable: false,
827
829
  configurable: true
@@ -831,11 +833,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
831
833
  * Gets or sets the vertical alignment to use for the merged cell content.
832
834
  */
833
835
  get: function () {
834
- return this.i.ha;
836
+ return this.i.hb;
835
837
  },
836
838
  set: function (v) {
837
- this.i.ha = ensureEnum(CellContentVerticalAlignment_$type, v);
838
- this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.ha));
839
+ this.i.hb = ensureEnum(CellContentVerticalAlignment_$type, v);
840
+ this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.hb));
839
841
  },
840
842
  enumerable: false,
841
843
  configurable: true
@@ -845,11 +847,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
845
847
  * Gets or sets the amount of left padding to use for the cell content for this column.
846
848
  */
847
849
  get: function () {
848
- return this.i.ke;
850
+ return this.i.kr;
849
851
  },
850
852
  set: function (v) {
851
- this.i.ke = +v;
852
- this._a("mergedCellPaddingLeft", this.i.ke);
853
+ this.i.kr = +v;
854
+ this._a("mergedCellPaddingLeft", this.i.kr);
853
855
  },
854
856
  enumerable: false,
855
857
  configurable: true
@@ -859,11 +861,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
859
861
  * Gets or sets the amount of top padding to use for the cell content for this column.
860
862
  */
861
863
  get: function () {
862
- return this.i.kg;
864
+ return this.i.kt;
863
865
  },
864
866
  set: function (v) {
865
- this.i.kg = +v;
866
- this._a("mergedCellPaddingTop", this.i.kg);
867
+ this.i.kt = +v;
868
+ this._a("mergedCellPaddingTop", this.i.kt);
867
869
  },
868
870
  enumerable: false,
869
871
  configurable: true
@@ -873,11 +875,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
873
875
  * Gets or sets the amount of right padding to use for the cell content of this column.
874
876
  */
875
877
  get: function () {
876
- return this.i.kf;
878
+ return this.i.ks;
877
879
  },
878
880
  set: function (v) {
879
- this.i.kf = +v;
880
- this._a("mergedCellPaddingRight", this.i.kf);
881
+ this.i.ks = +v;
882
+ this._a("mergedCellPaddingRight", this.i.ks);
881
883
  },
882
884
  enumerable: false,
883
885
  configurable: true
@@ -887,11 +889,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
887
889
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
888
890
  */
889
891
  get: function () {
890
- return this.i.kd;
892
+ return this.i.kq;
891
893
  },
892
894
  set: function (v) {
893
- this.i.kd = +v;
894
- this._a("mergedCellPaddingBottom", this.i.kd);
895
+ this.i.kq = +v;
896
+ this._a("mergedCellPaddingBottom", this.i.kq);
895
897
  },
896
898
  enumerable: false,
897
899
  configurable: true
@@ -901,11 +903,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
901
903
  * Gets or sets whether UI filters are case sensitive or not.
902
904
  */
903
905
  get: function () {
904
- return this.i.h1;
906
+ return this.i.h2;
905
907
  },
906
908
  set: function (v) {
907
- this.i.h1 = ensureEnum(FilterComparisonType_$type, v);
908
- this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h1));
909
+ this.i.h2 = ensureEnum(FilterComparisonType_$type, v);
910
+ this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h2));
909
911
  },
910
912
  enumerable: false,
911
913
  configurable: true
@@ -917,7 +919,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
917
919
  get: function () {
918
920
  if (this._filterOperands === null) {
919
921
  var coll = new IgcGridFilterOperandsCollection();
920
- var innerColl = this.i.h9;
922
+ var innerColl = this.i.ia;
921
923
  if (!innerColl) {
922
924
  innerColl = new GridFilterOperandsCollection_internal();
923
925
  }
@@ -933,7 +935,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
933
935
  var coll = new IgcGridFilterOperandsCollection();
934
936
  this._filterOperands = coll._fromOuter(v);
935
937
  var syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
936
- var innerColl = this.i.h9;
938
+ var innerColl = this.i.ia;
937
939
  if (!innerColl) {
938
940
  innerColl = new GridFilterOperandsCollection_internal();
939
941
  }
@@ -944,6 +946,176 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
944
946
  enumerable: false,
945
947
  configurable: true
946
948
  });
949
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixText", {
950
+ /**
951
+ * Gets or sets the text to display in the suffix area of cells in this column.
952
+ */
953
+ get: function () {
954
+ return this.i.nj;
955
+ },
956
+ set: function (v) {
957
+ this.i.nj = v;
958
+ },
959
+ enumerable: false,
960
+ configurable: true
961
+ });
962
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixTextColor", {
963
+ /**
964
+ * Gets or sets the color of the text in the suffix area of the cells in this column.
965
+ */
966
+ get: function () {
967
+ return brushToString(this.i.o5);
968
+ },
969
+ set: function (v) {
970
+ this.i.o5 = stringToBrush(v);
971
+ this._a("suffixTextColor", brushToString(this.i.o5));
972
+ },
973
+ enumerable: false,
974
+ configurable: true
975
+ });
976
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixTextStyle", {
977
+ /**
978
+ * Gets or sets the font of the suffix text.
979
+ */
980
+ get: function () {
981
+ if (this.i.suffixTextStyle == null) {
982
+ return null;
983
+ }
984
+ return this.i.suffixTextStyle.fontString;
985
+ },
986
+ set: function (v) {
987
+ var fi = new FontInfo();
988
+ fi.fontString = v;
989
+ this.i.suffixTextStyle = fi;
990
+ this._a("suffixTextStyle", this.i.suffixTextStyle != null ? this.i.suffixTextStyle.fontString : "");
991
+ },
992
+ enumerable: false,
993
+ configurable: true
994
+ });
995
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconName", {
996
+ /**
997
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
998
+ */
999
+ get: function () {
1000
+ return this.i.nc;
1001
+ },
1002
+ set: function (v) {
1003
+ this.i.nc = v;
1004
+ },
1005
+ enumerable: false,
1006
+ configurable: true
1007
+ });
1008
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconCollectionName", {
1009
+ /**
1010
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
1011
+ */
1012
+ get: function () {
1013
+ return this.i.m9;
1014
+ },
1015
+ set: function (v) {
1016
+ this.i.m9 = v;
1017
+ },
1018
+ enumerable: false,
1019
+ configurable: true
1020
+ });
1021
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconStroke", {
1022
+ /**
1023
+ * Gets or sets the stroke color of suffix icon.
1024
+ */
1025
+ get: function () {
1026
+ return brushToString(this.i.o4);
1027
+ },
1028
+ set: function (v) {
1029
+ this.i.o4 = stringToBrush(v);
1030
+ this._a("suffixIconStroke", brushToString(this.i.o4));
1031
+ },
1032
+ enumerable: false,
1033
+ configurable: true
1034
+ });
1035
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconFill", {
1036
+ /**
1037
+ * Gets or sets the fill color of suffix icon.
1038
+ */
1039
+ get: function () {
1040
+ return brushToString(this.i.o3);
1041
+ },
1042
+ set: function (v) {
1043
+ this.i.o3 = stringToBrush(v);
1044
+ this._a("suffixIconFill", brushToString(this.i.o3));
1045
+ },
1046
+ enumerable: false,
1047
+ configurable: true
1048
+ });
1049
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconViewBoxLeft", {
1050
+ /**
1051
+ * Gets or sets the suffix icon's viewbox x coordinate.
1052
+ */
1053
+ get: function () {
1054
+ return this.i.kc;
1055
+ },
1056
+ set: function (v) {
1057
+ this.i.kc = +v;
1058
+ this._a("suffixIconViewBoxLeft", this.i.kc);
1059
+ },
1060
+ enumerable: false,
1061
+ configurable: true
1062
+ });
1063
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconViewBoxTop", {
1064
+ /**
1065
+ * Gets or sets the suffix icon's viewbox y coordinate.
1066
+ */
1067
+ get: function () {
1068
+ return this.i.kd;
1069
+ },
1070
+ set: function (v) {
1071
+ this.i.kd = +v;
1072
+ this._a("suffixIconViewBoxTop", this.i.kd);
1073
+ },
1074
+ enumerable: false,
1075
+ configurable: true
1076
+ });
1077
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconViewBoxWidth", {
1078
+ /**
1079
+ * Gets or sets the suffix icon's viewbox width.
1080
+ */
1081
+ get: function () {
1082
+ return this.i.ke;
1083
+ },
1084
+ set: function (v) {
1085
+ this.i.ke = +v;
1086
+ this._a("suffixIconViewBoxWidth", this.i.ke);
1087
+ },
1088
+ enumerable: false,
1089
+ configurable: true
1090
+ });
1091
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixIconViewBoxHeight", {
1092
+ /**
1093
+ * Gets or sets the suffix icon's viewbox height.
1094
+ */
1095
+ get: function () {
1096
+ return this.i.kb;
1097
+ },
1098
+ set: function (v) {
1099
+ this.i.kb = +v;
1100
+ this._a("suffixIconViewBoxHeight", this.i.kb);
1101
+ },
1102
+ enumerable: false,
1103
+ configurable: true
1104
+ });
1105
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "textDecoration", {
1106
+ /**
1107
+ * Gets or sets the text decoration to apply to cells in this column.
1108
+ */
1109
+ get: function () {
1110
+ return this.i.iq;
1111
+ },
1112
+ set: function (v) {
1113
+ this.i.iq = ensureEnum(TextCellDecoration_$type, v);
1114
+ this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.iq));
1115
+ },
1116
+ enumerable: false,
1117
+ configurable: true
1118
+ });
947
1119
  IgcDataGridColumnComponent.prototype.findByName = function (name) {
948
1120
  var baseResult = _super.prototype.findByName.call(this, name);
949
1121
  if (baseResult) {
@@ -976,18 +1148,18 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
976
1148
 
977
1149
  */
978
1150
  IgcDataGridColumnComponent.prototype.getUniqueKey = function () {
979
- var iv = this.i.lu();
1151
+ var iv = this.i.ma();
980
1152
  return (iv);
981
1153
  };
982
1154
  IgcDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
983
- this.i.m4(valueName, (animationType == null ? null : animationType), value);
1155
+ this.i.nz(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
984
1156
  };
985
1157
  /**
986
1158
  * Returns if the column has named header values.
987
1159
 
988
1160
  */
989
1161
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValues = function () {
990
- var iv = this.i.jg();
1162
+ var iv = this.i.jl();
991
1163
  return (iv);
992
1164
  };
993
1165
  /**
@@ -996,7 +1168,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
996
1168
  * @param valueName * The named value to check for.
997
1169
  */
998
1170
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValue = function (valueName) {
999
- var iv = this.i.jf(valueName);
1171
+ var iv = this.i.jk(valueName);
1000
1172
  return (iv);
1001
1173
  };
1002
1174
  /**
@@ -1005,7 +1177,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1005
1177
  * @param valueName * The named header value to remove.
1006
1178
  */
1007
1179
  IgcDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
1008
- this.i.m3(valueName);
1180
+ this.i.ny(valueName);
1009
1181
  };
1010
1182
  /**
1011
1183
  * Gets the value of a named header value for this column by name.
@@ -1013,11 +1185,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1013
1185
  * @param valueName * Name of the named header value to retrieve.
1014
1186
  */
1015
1187
  IgcDataGridColumnComponent.prototype.getNamedHeaderValue = function (valueName) {
1016
- var iv = this.i.ks(valueName);
1188
+ var iv = this.i.k5(valueName);
1017
1189
  return (iv);
1018
1190
  };
1019
1191
  IgcDataGridColumnComponent.prototype.applyCustomFilter = function (filterID, index, value) {
1020
- this.i.mw(filterID, index, value);
1192
+ this.i.nr(filterID, index, value);
1021
1193
  };
1022
1194
  IgcDataGridColumnComponent.prototype.getDesiredToolbarActions = function () {
1023
1195
  var iv = this.i.getDesiredToolbarActions();
@@ -1080,7 +1252,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1080
1252
  this._actualHeaderTextChange = ev;
1081
1253
  this._actualHeaderTextChange_wrapped = function (o, e) {
1082
1254
  var ext = _this.actualHeaderText;
1083
- if (e.propertyName == 'K4') {
1255
+ if (e.propertyName == 'Lk') {
1084
1256
  if (_this.beforeActualHeaderTextChange) {
1085
1257
  _this.beforeActualHeaderTextChange(_this, ext);
1086
1258
  }