igniteui-angular-data-grids 20.0.1 → 20.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 (240) hide show
  1. package/bundles/igniteui-angular-data-grids.umd.js +10223 -8743
  2. package/bundles/igniteui-angular-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 +6925 -6539
  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 +335 -335
  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 +10 -10
  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 +8 -8
  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 +7 -7
  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/VerticalSeparatorCell.js +37 -37
  74. package/esm2015/lib/igx-cell-info.js +301 -190
  75. package/esm2015/lib/igx-checkbox-list-component.js +1 -1
  76. package/esm2015/lib/igx-column-moving-separator-component.js +6 -6
  77. package/esm2015/lib/igx-column-resizing-separator-component.js +4 -4
  78. package/esm2015/lib/igx-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igx-data-grid-column-component.js +254 -115
  80. package/esm2015/lib/igx-data-grid-component.js +38 -5
  81. package/esm2015/lib/igx-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igx-date-time-column-component.js +20 -20
  83. package/esm2015/lib/igx-definition-base-component.js +46 -45
  84. package/esm2015/lib/igx-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igx-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igx-filter-row-definition-component.js +8 -8
  87. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igx-grid-conditional-style-font-info-component.js +144 -0
  89. package/esm2015/lib/igx-grid-conditional-style-font-info-dynamic-module.js +34 -0
  90. package/esm2015/lib/igx-grid-conditional-style-font-info-module.js +27 -0
  91. package/esm2015/lib/igx-header-component.js +16 -16
  92. package/esm2015/lib/igx-image-cell-info.js +6 -6
  93. package/esm2015/lib/igx-image-column-component.js +10 -10
  94. package/esm2015/lib/igx-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igx-numeric-column-component.js +30 -30
  96. package/esm2015/lib/igx-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igx-section-header-component.js +16 -16
  98. package/esm2015/lib/igx-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igx-summary-row-component.js +16 -16
  100. package/esm2015/lib/igx-template-cell-info.js +2 -2
  101. package/esm2015/lib/igx-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igx-text-cell-info.js +2 -2
  103. package/esm2015/lib/igx-text-column-component.js +8 -8
  104. package/esm2015/lib/igx-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +5 -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 +6754 -6269
  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 +10 -10
  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 +8 -8
  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 +7 -7
  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/VerticalSeparatorCell.js +37 -37
  177. package/esm5/lib/igx-cell-info.js +349 -190
  178. package/esm5/lib/igx-checkbox-list-component.js +1 -1
  179. package/esm5/lib/igx-column-moving-separator-component.js +6 -6
  180. package/esm5/lib/igx-column-resizing-separator-component.js +4 -4
  181. package/esm5/lib/igx-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igx-data-grid-column-component.js +302 -115
  183. package/esm5/lib/igx-data-grid-component.js +42 -5
  184. package/esm5/lib/igx-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igx-date-time-column-component.js +20 -20
  186. package/esm5/lib/igx-definition-base-component.js +46 -45
  187. package/esm5/lib/igx-editor-cell-info.js +23 -23
  188. package/esm5/lib/igx-filter-cell-info.js +26 -26
  189. package/esm5/lib/igx-filter-row-definition-component.js +8 -8
  190. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igx-grid-conditional-style-font-info-component.js +155 -0
  192. package/esm5/lib/igx-grid-conditional-style-font-info-dynamic-module.js +33 -0
  193. package/esm5/lib/igx-grid-conditional-style-font-info-module.js +28 -0
  194. package/esm5/lib/igx-header-component.js +16 -16
  195. package/esm5/lib/igx-image-cell-info.js +6 -6
  196. package/esm5/lib/igx-image-column-component.js +10 -10
  197. package/esm5/lib/igx-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igx-numeric-column-component.js +30 -30
  199. package/esm5/lib/igx-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igx-section-header-component.js +16 -16
  201. package/esm5/lib/igx-summary-cell-info.js +9 -9
  202. package/esm5/lib/igx-summary-row-component.js +16 -16
  203. package/esm5/lib/igx-template-cell-info.js +2 -2
  204. package/esm5/lib/igx-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igx-text-cell-info.js +2 -2
  206. package/esm5/lib/igx-text-column-component.js +8 -8
  207. package/esm5/lib/igx-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +5 -0
  209. package/fesm2015/igniteui-angular-data-grids.js +10236 -9009
  210. package/fesm5/igniteui-angular-data-grids.js +10219 -8745
  211. package/lib/ColumnFilterCondition_combined.d.ts +1784 -1694
  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/ImageCell.d.ts +20 -20
  219. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  220. package/lib/NumericCell.d.ts +2 -1
  221. package/lib/SectionHeaderCell.d.ts +4 -4
  222. package/lib/SummaryCell.d.ts +11 -11
  223. package/lib/TemplateCell.d.ts +6 -6
  224. package/lib/TemplateHeader.d.ts +3 -3
  225. package/lib/TemplateHeaderCell.d.ts +3 -3
  226. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  227. package/lib/TemplateSectionHeader.d.ts +2 -2
  228. package/lib/TextCell.d.ts +10 -8
  229. package/lib/TextCellDecoration.d.ts +26 -0
  230. package/lib/TextHeaderCell.d.ts +37 -35
  231. package/lib/VerticalSeparatorCell.d.ts +9 -9
  232. package/lib/igx-cell-info.d.ts +63 -0
  233. package/lib/igx-data-grid-column-component.d.ts +68 -2
  234. package/lib/igx-data-grid-component.d.ts +9 -2
  235. package/lib/igx-definition-base-component.d.ts +1 -1
  236. package/lib/igx-grid-conditional-style-font-info-component.d.ts +33 -0
  237. package/lib/igx-grid-conditional-style-font-info-dynamic-module.d.ts +9 -0
  238. package/lib/igx-grid-conditional-style-font-info-module.d.ts +8 -0
  239. package/package.json +43 -43
  240. package/public_api.d.ts +5 -0
@@ -13,7 +13,9 @@ import { MergedCellEvaluationCriteria_$type } from "./MergedCellEvaluationCriter
13
13
  import { CellContentVerticalAlignment_$type } from "./CellContentVerticalAlignment";
14
14
  import { FilterComparisonType_$type } from "./FilterComparisonType";
15
15
  import { IgxGridFilterOperandsCollection } from "./igx-grid-filter-operands-collection";
16
+ import { TextCellDecoration_$type } from "./TextCellDecoration";
16
17
  import { IgxFormatCellEventArgs } from "./igx-format-cell-event-args";
18
+ import { CellPropertyAnimationType_$type } from "./CellPropertyAnimationType";
17
19
  import { IgxDefinitionBaseComponent } from "./igx-definition-base-component";
18
20
  import { brushToString, stringToBrush, ensureBool, ensureEnum } from "igniteui-angular-core";
19
21
  import { ColumnWidth as ColumnWidth_internal } from "./ColumnWidth";
@@ -63,10 +65,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
63
65
  * Gets or sets the amount of left padding to use for the cell content for this column.
64
66
  */
65
67
  get: function () {
66
- return this.i.kl;
68
+ return this.i.ky;
67
69
  },
68
70
  set: function (v) {
69
- this.i.kl = +v;
71
+ this.i.ky = +v;
70
72
  },
71
73
  enumerable: false,
72
74
  configurable: true
@@ -76,10 +78,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
76
78
  * Gets or sets the amount of top padding to use for the cell content for this column.
77
79
  */
78
80
  get: function () {
79
- return this.i.kn;
81
+ return this.i.k0;
80
82
  },
81
83
  set: function (v) {
82
- this.i.kn = +v;
84
+ this.i.k0 = +v;
83
85
  },
84
86
  enumerable: false,
85
87
  configurable: true
@@ -89,10 +91,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
89
91
  * Gets or sets the amount of right padding to use for the cell content of this column.
90
92
  */
91
93
  get: function () {
92
- return this.i.km;
94
+ return this.i.kz;
93
95
  },
94
96
  set: function (v) {
95
- this.i.km = +v;
97
+ this.i.kz = +v;
96
98
  },
97
99
  enumerable: false,
98
100
  configurable: true
@@ -102,10 +104,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
102
104
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
103
105
  */
104
106
  get: function () {
105
- return this.i.kk;
107
+ return this.i.kx;
106
108
  },
107
109
  set: function (v) {
108
- this.i.kk = +v;
110
+ this.i.kx = +v;
109
111
  },
110
112
  enumerable: false,
111
113
  configurable: true
@@ -115,10 +117,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
115
117
  * Gets or sets an unique name of the Column
116
118
  */
117
119
  get: function () {
118
- return this.i.mg;
120
+ return this.i.mw;
119
121
  },
120
122
  set: function (v) {
121
- this.i.mg = v;
123
+ this.i.mw = v;
122
124
  },
123
125
  enumerable: false,
124
126
  configurable: true
@@ -128,10 +130,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
128
130
  * Gets or sets the key used for the column binding
129
131
  */
130
132
  get: function () {
131
- return this.i.lp;
133
+ return this.i.l5;
132
134
  },
133
135
  set: function (v) {
134
- this.i.lp = v;
136
+ this.i.l5 = v;
135
137
  },
136
138
  enumerable: false,
137
139
  configurable: true
@@ -141,10 +143,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
141
143
  * Gets or sets the text displayed in the header of the column
142
144
  */
143
145
  get: function () {
144
- return this.i.lw;
146
+ return this.i.mc;
145
147
  },
146
148
  set: function (v) {
147
- this.i.lw = v;
149
+ this.i.mc = v;
148
150
  },
149
151
  enumerable: false,
150
152
  configurable: true
@@ -154,10 +156,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
154
156
  * Gets the actual text displayed in the header of the column
155
157
  */
156
158
  get: function () {
157
- return this.i.k4;
159
+ return this.i.lk;
158
160
  },
159
161
  set: function (v) {
160
- this.i.k4 = v;
162
+ this.i.lk = v;
161
163
  },
162
164
  enumerable: false,
163
165
  configurable: true
@@ -167,10 +169,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
167
169
  * Gets or sets the background color to use for the cells when they are selected
168
170
  */
169
171
  get: function () {
170
- return brushToString(this.i.n4);
172
+ return brushToString(this.i.o2);
171
173
  },
172
174
  set: function (v) {
173
- this.i.n4 = stringToBrush(v);
175
+ this.i.o2 = stringToBrush(v);
174
176
  },
175
177
  enumerable: false,
176
178
  configurable: true
@@ -180,10 +182,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
180
182
  * Gets the actual background color that is used for the cells when they are selected
181
183
  */
182
184
  get: function () {
183
- return brushToString(this.i.nx);
185
+ return brushToString(this.i.ov);
184
186
  },
185
187
  set: function (v) {
186
- this.i.nx = stringToBrush(v);
188
+ this.i.ov = stringToBrush(v);
187
189
  },
188
190
  enumerable: false,
189
191
  configurable: true
@@ -193,10 +195,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
193
195
  * Gets or sets the background color to use for the cells when the row is hovered.
194
196
  */
195
197
  get: function () {
196
- return brushToString(this.i.n2);
198
+ return brushToString(this.i.o0);
197
199
  },
198
200
  set: function (v) {
199
- this.i.n2 = stringToBrush(v);
201
+ this.i.o0 = stringToBrush(v);
200
202
  },
201
203
  enumerable: false,
202
204
  configurable: true
@@ -206,10 +208,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
206
208
  * Gets the actual background color that is used for the cells when they are hovered.
207
209
  */
208
210
  get: function () {
209
- return brushToString(this.i.nv);
211
+ return brushToString(this.i.ot);
210
212
  },
211
213
  set: function (v) {
212
- this.i.nv = stringToBrush(v);
214
+ this.i.ot = stringToBrush(v);
213
215
  },
214
216
  enumerable: false,
215
217
  configurable: true
@@ -219,10 +221,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
219
221
  * Gets or sets the text color to use for the cells when the row is hovered.
220
222
  */
221
223
  get: function () {
222
- return brushToString(this.i.n3);
224
+ return brushToString(this.i.o1);
223
225
  },
224
226
  set: function (v) {
225
- this.i.n3 = stringToBrush(v);
227
+ this.i.o1 = stringToBrush(v);
226
228
  },
227
229
  enumerable: false,
228
230
  configurable: true
@@ -232,10 +234,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
232
234
  * Gets the actual text color that is used for the cells when they are hovered.
233
235
  */
234
236
  get: function () {
235
- return brushToString(this.i.nw);
237
+ return brushToString(this.i.ou);
236
238
  },
237
239
  set: function (v) {
238
- this.i.nw = stringToBrush(v);
240
+ this.i.ou = stringToBrush(v);
239
241
  },
240
242
  enumerable: false,
241
243
  configurable: true
@@ -245,7 +247,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
245
247
  * Gets or sets the animation settings to use for this column.
246
248
  */
247
249
  get: function () {
248
- var r = this.i.h7;
250
+ var r = this.i.h8;
249
251
  if (r == null) {
250
252
  return null;
251
253
  }
@@ -264,7 +266,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
264
266
  return r.externalObject;
265
267
  },
266
268
  set: function (v) {
267
- v == null ? this.i.h7 = null : this.i.h7 = v.i;
269
+ v == null ? this.i.h8 = null : this.i.h8 = v.i;
268
270
  },
269
271
  enumerable: false,
270
272
  configurable: true
@@ -309,10 +311,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
309
311
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
310
312
  */
311
313
  get: function () {
312
- return this.i.j1;
314
+ return this.i.ka;
313
315
  },
314
316
  set: function (v) {
315
- this.i.j1 = +v;
317
+ this.i.ka = +v;
316
318
  },
317
319
  enumerable: false,
318
320
  configurable: true
@@ -322,10 +324,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
322
324
  * Gets whether this column was projected from markup/templates and is constrained.
323
325
  */
324
326
  get: function () {
325
- return this.i.jo;
327
+ return this.i.jt;
326
328
  },
327
329
  set: function (v) {
328
- this.i.jo = ensureBool(v);
330
+ this.i.jt = ensureBool(v);
329
331
  },
330
332
  enumerable: false,
331
333
  configurable: true
@@ -335,10 +337,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
335
337
  * Gets whether this column was auto generated.
336
338
  */
337
339
  get: function () {
338
- return this.i.ji;
340
+ return this.i.jn;
339
341
  },
340
342
  set: function (v) {
341
- this.i.ji = ensureBool(v);
343
+ this.i.jn = ensureBool(v);
342
344
  },
343
345
  enumerable: false,
344
346
  configurable: true
@@ -348,10 +350,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
348
350
  * Gets or sets a filter to apply on the values of this column
349
351
  */
350
352
  get: function () {
351
- return this.i.g1;
353
+ return this.i.g2;
352
354
  },
353
355
  set: function (v) {
354
- this.i.g1 = v;
356
+ this.i.g2 = v;
355
357
  },
356
358
  enumerable: false,
357
359
  configurable: true
@@ -361,10 +363,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
361
363
  * Gets or sets a filter to apply to the values of this column.
362
364
  */
363
365
  get: function () {
364
- return this.i.g3;
366
+ return this.i.g4;
365
367
  },
366
368
  set: function (v) {
367
- this.i.g3 = v;
369
+ this.i.g4 = v;
368
370
  },
369
371
  enumerable: false,
370
372
  configurable: true
@@ -400,10 +402,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
400
402
  * Gets or sets whether filtering is enabled for this column.
401
403
  */
402
404
  get: function () {
403
- return this.i.jn;
405
+ return this.i.js;
404
406
  },
405
407
  set: function (v) {
406
- this.i.jn = ensureBool(v);
408
+ this.i.js = ensureBool(v);
407
409
  },
408
410
  enumerable: false,
409
411
  configurable: true
@@ -413,10 +415,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
413
415
  * Gets or sets whether resizing is enabled for this column.
414
416
  */
415
417
  get: function () {
416
- return this.i.jq;
418
+ return this.i.jv;
417
419
  },
418
420
  set: function (v) {
419
- this.i.jq = ensureBool(v);
421
+ this.i.jv = ensureBool(v);
420
422
  },
421
423
  enumerable: false,
422
424
  configurable: true
@@ -426,10 +428,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
426
428
  * Gets or sets whether or not a column is hidden from the grid
427
429
  */
428
430
  get: function () {
429
- return this.i.jp;
431
+ return this.i.ju;
430
432
  },
431
433
  set: function (v) {
432
- this.i.jp = ensureBool(v);
434
+ this.i.ju = ensureBool(v);
433
435
  },
434
436
  enumerable: false,
435
437
  configurable: true
@@ -439,10 +441,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
439
441
  * Gets or sets if a column should be removed from the grid when it is fully hidden
440
442
  */
441
443
  get: function () {
442
- return this.i.jt;
444
+ return this.i.jy;
443
445
  },
444
446
  set: function (v) {
445
- this.i.jt = ensureBool(v);
447
+ this.i.jy = ensureBool(v);
446
448
  },
447
449
  enumerable: false,
448
450
  configurable: true
@@ -452,10 +454,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
452
454
  * Gets the current sort direction (None, Ascending, Descending) for this column.
453
455
  */
454
456
  get: function () {
455
- return this.i.hr;
457
+ return this.i.hs;
456
458
  },
457
459
  set: function (v) {
458
- this.i.hr = ensureEnum(ColumnSortDirection_$type, v);
460
+ this.i.hs = ensureEnum(ColumnSortDirection_$type, v);
459
461
  },
460
462
  enumerable: false,
461
463
  configurable: true
@@ -465,10 +467,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
465
467
  * Gets or sets the current fixed position for this column.
466
468
  */
467
469
  get: function () {
468
- return this.i.im;
470
+ return this.i.io;
469
471
  },
470
472
  set: function (v) {
471
- this.i.im = ensureEnum(PinnedPositions_$type, v);
473
+ this.i.io = ensureEnum(PinnedPositions_$type, v);
472
474
  },
473
475
  enumerable: false,
474
476
  configurable: true
@@ -478,10 +480,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
478
480
  * Gets the actual column options icon alignment for this column.
479
481
  */
480
482
  get: function () {
481
- return this.i.hi;
483
+ return this.i.hj;
482
484
  },
483
485
  set: function (v) {
484
- this.i.hi = ensureEnum(ColumnOptionsIconAlignment_$type, v);
486
+ this.i.hj = ensureEnum(ColumnOptionsIconAlignment_$type, v);
485
487
  },
486
488
  enumerable: false,
487
489
  configurable: true
@@ -491,10 +493,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
491
493
  * Gets or sets whether the column options icon is aligned opposite the header text or not.
492
494
  */
493
495
  get: function () {
494
- return this.i.hj;
496
+ return this.i.hk;
495
497
  },
496
498
  set: function (v) {
497
- this.i.hj = ensureEnum(ColumnOptionsIconAlignment_$type, v);
499
+ this.i.hk = ensureEnum(ColumnOptionsIconAlignment_$type, v);
498
500
  },
499
501
  enumerable: false,
500
502
  configurable: true
@@ -504,10 +506,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
504
506
  * Gets the actual column options icon color for this column.
505
507
  */
506
508
  get: function () {
507
- return brushToString(this.i.nt);
509
+ return brushToString(this.i.or);
508
510
  },
509
511
  set: function (v) {
510
- this.i.nt = stringToBrush(v);
512
+ this.i.or = stringToBrush(v);
511
513
  },
512
514
  enumerable: false,
513
515
  configurable: true
@@ -517,10 +519,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
517
519
  * Gets or sets the column options icon color for this column.
518
520
  */
519
521
  get: function () {
520
- return brushToString(this.i.ny);
522
+ return brushToString(this.i.ow);
521
523
  },
522
524
  set: function (v) {
523
- this.i.ny = stringToBrush(v);
525
+ this.i.ow = stringToBrush(v);
524
526
  },
525
527
  enumerable: false,
526
528
  configurable: true
@@ -530,10 +532,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
530
532
  * Gets or sets how the column option icon will behave in the column header.
531
533
  */
532
534
  get: function () {
533
- return this.i.hn;
535
+ return this.i.ho;
534
536
  },
535
537
  set: function (v) {
536
- this.i.hn = ensureEnum(ColumnOptionsIconBehavior_$type, v);
538
+ this.i.ho = ensureEnum(ColumnOptionsIconBehavior_$type, v);
537
539
  },
538
540
  enumerable: false,
539
541
  configurable: true
@@ -543,10 +545,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
543
545
  * Gets or sets how the column option icon will behave in the column header.
544
546
  */
545
547
  get: function () {
546
- return this.i.hm;
548
+ return this.i.hn;
547
549
  },
548
550
  set: function (v) {
549
- this.i.hm = ensureEnum(ColumnOptionsIconBehavior_$type, v);
551
+ this.i.hn = ensureEnum(ColumnOptionsIconBehavior_$type, v);
550
552
  },
551
553
  enumerable: false,
552
554
  configurable: true
@@ -556,10 +558,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
556
558
  * Gets the actual state of the column options for this column.
557
559
  */
558
560
  get: function () {
559
- return this.i.jb;
561
+ return this.i.jg;
560
562
  },
561
563
  set: function (v) {
562
- this.i.jb = ensureBool(v);
564
+ this.i.jg = ensureBool(v);
563
565
  },
564
566
  enumerable: false,
565
567
  configurable: true
@@ -570,10 +572,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
570
572
  * then it will be disabled for the column regardless of what this is set to.
571
573
  */
572
574
  get: function () {
573
- return this.i.jj;
575
+ return this.i.jo;
574
576
  },
575
577
  set: function (v) {
576
- this.i.jj = ensureBool(v);
578
+ this.i.jo = ensureBool(v);
577
579
  },
578
580
  enumerable: false,
579
581
  configurable: true
@@ -583,10 +585,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
583
585
  * Gets the actual state of summaries menu in the column options for this column.
584
586
  */
585
587
  get: function () {
586
- return this.i.jd;
588
+ return this.i.ji;
587
589
  },
588
590
  set: function (v) {
589
- this.i.jd = ensureBool(v);
591
+ this.i.ji = ensureBool(v);
590
592
  },
591
593
  enumerable: false,
592
594
  configurable: true
@@ -596,10 +598,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
596
598
  * Gets or sets whether to show the summaries option in the column options menu for this column.
597
599
  */
598
600
  get: function () {
599
- return this.i.jl;
601
+ return this.i.jq;
600
602
  },
601
603
  set: function (v) {
602
- this.i.jl = ensureBool(v);
604
+ this.i.jq = ensureBool(v);
603
605
  },
604
606
  enumerable: false,
605
607
  configurable: true
@@ -609,10 +611,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
609
611
  * Gets the actual state of grouping menu in the column options for this column.
610
612
  */
611
613
  get: function () {
612
- return this.i.jc;
614
+ return this.i.jh;
613
615
  },
614
616
  set: function (v) {
615
- this.i.jc = ensureBool(v);
617
+ this.i.jh = ensureBool(v);
616
618
  },
617
619
  enumerable: false,
618
620
  configurable: true
@@ -622,10 +624,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
622
624
  * Gets or sets whether to show the grouping option in the column options menu for this column.
623
625
  */
624
626
  get: function () {
625
- return this.i.jk;
627
+ return this.i.jp;
626
628
  },
627
629
  set: function (v) {
628
- this.i.jk = ensureBool(v);
630
+ this.i.jp = ensureBool(v);
629
631
  },
630
632
  enumerable: false,
631
633
  configurable: true
@@ -635,10 +637,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
635
637
  * Gets or sets if the column is editable.
636
638
  */
637
639
  get: function () {
638
- return this.i.jm;
640
+ return this.i.jr;
639
641
  },
640
642
  set: function (v) {
641
- this.i.jm = ensureBool(v);
643
+ this.i.jr = ensureBool(v);
642
644
  },
643
645
  enumerable: false,
644
646
  configurable: true
@@ -648,10 +650,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
648
650
  * Gets or sets the text color used for deleted rows.
649
651
  */
650
652
  get: function () {
651
- return brushToString(this.i.nz);
653
+ return brushToString(this.i.ox);
652
654
  },
653
655
  set: function (v) {
654
- this.i.nz = stringToBrush(v);
656
+ this.i.ox = stringToBrush(v);
655
657
  },
656
658
  enumerable: false,
657
659
  configurable: true
@@ -661,10 +663,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
661
663
  * Gets the actual text color used for deleted rows.
662
664
  */
663
665
  get: function () {
664
- return brushToString(this.i.nu);
666
+ return brushToString(this.i.os);
665
667
  },
666
668
  set: function (v) {
667
- this.i.nu = stringToBrush(v);
669
+ this.i.os = stringToBrush(v);
668
670
  },
669
671
  enumerable: false,
670
672
  configurable: true
@@ -674,10 +676,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
674
676
  * Gets or sets the opacity to use for unsaved edited cell values.
675
677
  */
676
678
  get: function () {
677
- return this.i.j0;
679
+ return this.i.j9;
678
680
  },
679
681
  set: function (v) {
680
- this.i.j0 = +v;
682
+ this.i.j9 = +v;
681
683
  },
682
684
  enumerable: false,
683
685
  configurable: true
@@ -687,10 +689,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
687
689
  * Gets the actual opacity for unsaved edited cell values.
688
690
  */
689
691
  get: function () {
690
- return this.i.jz;
692
+ return this.i.j8;
691
693
  },
692
694
  set: function (v) {
693
- this.i.jz = +v;
695
+ this.i.j8 = +v;
694
696
  },
695
697
  enumerable: false,
696
698
  configurable: true
@@ -718,15 +720,15 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
718
720
  * Gets the actual font style used for unsaved cell edits.
719
721
  */
720
722
  get: function () {
721
- if (this.i.it == null) {
723
+ if (this.i.ix == null) {
722
724
  return null;
723
725
  }
724
- return this.i.it.fontString;
726
+ return this.i.ix.fontString;
725
727
  },
726
728
  set: function (v) {
727
729
  var fi = new FontInfo();
728
730
  fi.fontString = v;
729
- this.i.it = fi;
731
+ this.i.ix = fi;
730
732
  },
731
733
  enumerable: false,
732
734
  configurable: true
@@ -736,10 +738,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
736
738
  * Gets or sets if and how cell merging is performed for this field.
737
739
  */
738
740
  get: function () {
739
- return this.i.ii;
741
+ return this.i.ij;
740
742
  },
741
743
  set: function (v) {
742
- this.i.ii = ensureEnum(MergedCellMode_$type, v);
744
+ this.i.ij = ensureEnum(MergedCellMode_$type, v);
743
745
  },
744
746
  enumerable: false,
745
747
  configurable: true
@@ -749,10 +751,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
749
751
  * Gets or sets how cells are evaluated for merging.
750
752
  */
751
753
  get: function () {
752
- return this.i.ie;
754
+ return this.i.ig;
753
755
  },
754
756
  set: function (v) {
755
- this.i.ie = ensureEnum(MergedCellEvaluationCriteria_$type, v);
757
+ this.i.ig = ensureEnum(MergedCellEvaluationCriteria_$type, v);
756
758
  },
757
759
  enumerable: false,
758
760
  configurable: true
@@ -762,10 +764,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
762
764
  * Gets or sets the vertical alignment to use for the merged cell content.
763
765
  */
764
766
  get: function () {
765
- return this.i.ha;
767
+ return this.i.hb;
766
768
  },
767
769
  set: function (v) {
768
- this.i.ha = ensureEnum(CellContentVerticalAlignment_$type, v);
770
+ this.i.hb = ensureEnum(CellContentVerticalAlignment_$type, v);
769
771
  },
770
772
  enumerable: false,
771
773
  configurable: true
@@ -775,10 +777,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
775
777
  * Gets or sets the amount of left padding to use for the cell content for this column.
776
778
  */
777
779
  get: function () {
778
- return this.i.ke;
780
+ return this.i.kr;
779
781
  },
780
782
  set: function (v) {
781
- this.i.ke = +v;
783
+ this.i.kr = +v;
782
784
  },
783
785
  enumerable: false,
784
786
  configurable: true
@@ -788,10 +790,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
788
790
  * Gets or sets the amount of top padding to use for the cell content for this column.
789
791
  */
790
792
  get: function () {
791
- return this.i.kg;
793
+ return this.i.kt;
792
794
  },
793
795
  set: function (v) {
794
- this.i.kg = +v;
796
+ this.i.kt = +v;
795
797
  },
796
798
  enumerable: false,
797
799
  configurable: true
@@ -801,10 +803,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
801
803
  * Gets or sets the amount of right padding to use for the cell content of this column.
802
804
  */
803
805
  get: function () {
804
- return this.i.kf;
806
+ return this.i.ks;
805
807
  },
806
808
  set: function (v) {
807
- this.i.kf = +v;
809
+ this.i.ks = +v;
808
810
  },
809
811
  enumerable: false,
810
812
  configurable: true
@@ -814,10 +816,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
814
816
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
815
817
  */
816
818
  get: function () {
817
- return this.i.kd;
819
+ return this.i.kq;
818
820
  },
819
821
  set: function (v) {
820
- this.i.kd = +v;
822
+ this.i.kq = +v;
821
823
  },
822
824
  enumerable: false,
823
825
  configurable: true
@@ -827,10 +829,10 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
827
829
  * Gets or sets whether UI filters are case sensitive or not.
828
830
  */
829
831
  get: function () {
830
- return this.i.h1;
832
+ return this.i.h2;
831
833
  },
832
834
  set: function (v) {
833
- this.i.h1 = ensureEnum(FilterComparisonType_$type, v);
835
+ this.i.h2 = ensureEnum(FilterComparisonType_$type, v);
834
836
  },
835
837
  enumerable: false,
836
838
  configurable: true
@@ -842,7 +844,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
842
844
  get: function () {
843
845
  if (this._filterOperands === null) {
844
846
  var coll = new IgxGridFilterOperandsCollection();
845
- var innerColl = this.i.h9;
847
+ var innerColl = this.i.ia;
846
848
  if (!innerColl) {
847
849
  innerColl = new GridFilterOperandsCollection_internal();
848
850
  }
@@ -858,7 +860,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
858
860
  var coll = new IgxGridFilterOperandsCollection();
859
861
  this._filterOperands = coll._fromOuter(v);
860
862
  var syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
861
- var innerColl = this.i.h9;
863
+ var innerColl = this.i.ia;
862
864
  if (!innerColl) {
863
865
  innerColl = new GridFilterOperandsCollection_internal();
864
866
  }
@@ -869,6 +871,167 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
869
871
  enumerable: false,
870
872
  configurable: true
871
873
  });
874
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixText", {
875
+ /**
876
+ * Gets or sets the text to display in the suffix area of cells in this column.
877
+ */
878
+ get: function () {
879
+ return this.i.nj;
880
+ },
881
+ set: function (v) {
882
+ this.i.nj = v;
883
+ },
884
+ enumerable: false,
885
+ configurable: true
886
+ });
887
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixTextColor", {
888
+ /**
889
+ * Gets or sets the color of the text in the suffix area of the cells in this column.
890
+ */
891
+ get: function () {
892
+ return brushToString(this.i.o5);
893
+ },
894
+ set: function (v) {
895
+ this.i.o5 = stringToBrush(v);
896
+ },
897
+ enumerable: false,
898
+ configurable: true
899
+ });
900
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixTextStyle", {
901
+ /**
902
+ * Gets or sets the font of the suffix text.
903
+ */
904
+ get: function () {
905
+ if (this.i.suffixTextStyle == null) {
906
+ return null;
907
+ }
908
+ return this.i.suffixTextStyle.fontString;
909
+ },
910
+ set: function (v) {
911
+ var fi = new FontInfo();
912
+ fi.fontString = v;
913
+ this.i.suffixTextStyle = fi;
914
+ },
915
+ enumerable: false,
916
+ configurable: true
917
+ });
918
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconName", {
919
+ /**
920
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
921
+ */
922
+ get: function () {
923
+ return this.i.nc;
924
+ },
925
+ set: function (v) {
926
+ this.i.nc = v;
927
+ },
928
+ enumerable: false,
929
+ configurable: true
930
+ });
931
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconCollectionName", {
932
+ /**
933
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
934
+ */
935
+ get: function () {
936
+ return this.i.m9;
937
+ },
938
+ set: function (v) {
939
+ this.i.m9 = v;
940
+ },
941
+ enumerable: false,
942
+ configurable: true
943
+ });
944
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconStroke", {
945
+ /**
946
+ * Gets or sets the stroke color of suffix icon.
947
+ */
948
+ get: function () {
949
+ return brushToString(this.i.o4);
950
+ },
951
+ set: function (v) {
952
+ this.i.o4 = stringToBrush(v);
953
+ },
954
+ enumerable: false,
955
+ configurable: true
956
+ });
957
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconFill", {
958
+ /**
959
+ * Gets or sets the fill color of suffix icon.
960
+ */
961
+ get: function () {
962
+ return brushToString(this.i.o3);
963
+ },
964
+ set: function (v) {
965
+ this.i.o3 = stringToBrush(v);
966
+ },
967
+ enumerable: false,
968
+ configurable: true
969
+ });
970
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconViewBoxLeft", {
971
+ /**
972
+ * Gets or sets the suffix icon's viewbox x coordinate.
973
+ */
974
+ get: function () {
975
+ return this.i.kc;
976
+ },
977
+ set: function (v) {
978
+ this.i.kc = +v;
979
+ },
980
+ enumerable: false,
981
+ configurable: true
982
+ });
983
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconViewBoxTop", {
984
+ /**
985
+ * Gets or sets the suffix icon's viewbox y coordinate.
986
+ */
987
+ get: function () {
988
+ return this.i.kd;
989
+ },
990
+ set: function (v) {
991
+ this.i.kd = +v;
992
+ },
993
+ enumerable: false,
994
+ configurable: true
995
+ });
996
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconViewBoxWidth", {
997
+ /**
998
+ * Gets or sets the suffix icon's viewbox width.
999
+ */
1000
+ get: function () {
1001
+ return this.i.ke;
1002
+ },
1003
+ set: function (v) {
1004
+ this.i.ke = +v;
1005
+ },
1006
+ enumerable: false,
1007
+ configurable: true
1008
+ });
1009
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "suffixIconViewBoxHeight", {
1010
+ /**
1011
+ * Gets or sets the suffix icon's viewbox height.
1012
+ */
1013
+ get: function () {
1014
+ return this.i.kb;
1015
+ },
1016
+ set: function (v) {
1017
+ this.i.kb = +v;
1018
+ },
1019
+ enumerable: false,
1020
+ configurable: true
1021
+ });
1022
+ Object.defineProperty(IgxDataGridColumnComponent.prototype, "textDecoration", {
1023
+ /**
1024
+ * Gets or sets the text decoration to apply to cells in this column.
1025
+ */
1026
+ get: function () {
1027
+ return this.i.iq;
1028
+ },
1029
+ set: function (v) {
1030
+ this.i.iq = ensureEnum(TextCellDecoration_$type, v);
1031
+ },
1032
+ enumerable: false,
1033
+ configurable: true
1034
+ });
872
1035
  IgxDataGridColumnComponent.prototype.findByName = function (name) {
873
1036
  var baseResult = _super.prototype.findByName.call(this, name);
874
1037
  if (baseResult) {
@@ -901,18 +1064,18 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
901
1064
 
902
1065
  */
903
1066
  IgxDataGridColumnComponent.prototype.getUniqueKey = function () {
904
- var iv = this.i.lu();
1067
+ var iv = this.i.ma();
905
1068
  return (iv);
906
1069
  };
907
1070
  IgxDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
908
- this.i.m4(valueName, (animationType == null ? null : animationType), value);
1071
+ this.i.nz(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
909
1072
  };
910
1073
  /**
911
1074
  * Returns if the column has named header values.
912
1075
 
913
1076
  */
914
1077
  IgxDataGridColumnComponent.prototype.hasNamedHeaderValues = function () {
915
- var iv = this.i.jg();
1078
+ var iv = this.i.jl();
916
1079
  return (iv);
917
1080
  };
918
1081
  /**
@@ -921,7 +1084,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
921
1084
  * @param valueName * The named value to check for.
922
1085
  */
923
1086
  IgxDataGridColumnComponent.prototype.hasNamedHeaderValue = function (valueName) {
924
- var iv = this.i.jf(valueName);
1087
+ var iv = this.i.jk(valueName);
925
1088
  return (iv);
926
1089
  };
927
1090
  /**
@@ -930,7 +1093,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
930
1093
  * @param valueName * The named header value to remove.
931
1094
  */
932
1095
  IgxDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
933
- this.i.m3(valueName);
1096
+ this.i.ny(valueName);
934
1097
  };
935
1098
  /**
936
1099
  * Gets the value of a named header value for this column by name.
@@ -938,11 +1101,11 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
938
1101
  * @param valueName * Name of the named header value to retrieve.
939
1102
  */
940
1103
  IgxDataGridColumnComponent.prototype.getNamedHeaderValue = function (valueName) {
941
- var iv = this.i.ks(valueName);
1104
+ var iv = this.i.k5(valueName);
942
1105
  return (iv);
943
1106
  };
944
1107
  IgxDataGridColumnComponent.prototype.applyCustomFilter = function (filterID, index, value) {
945
- this.i.mw(filterID, index, value);
1108
+ this.i.nr(filterID, index, value);
946
1109
  };
947
1110
  IgxDataGridColumnComponent.prototype.getDesiredToolbarActions = function () {
948
1111
  var iv = this.i.getDesiredToolbarActions();
@@ -1007,7 +1170,7 @@ var IgxDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1007
1170
  configurable: true
1008
1171
  });
1009
1172
  IgxDataGridColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataGridColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1010
- IgxDataGridColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxDataGridColumnComponent, selector: "ng-component", inputs: { paddingLeft: "paddingLeft", paddingTop: "paddingTop", paddingRight: "paddingRight", paddingBottom: "paddingBottom", name: "name", field: "field", headerText: "headerText", actualHeaderText: "actualHeaderText", selectedBackground: "selectedBackground", actualSelectedBackground: "actualSelectedBackground", rowHoverBackground: "rowHoverBackground", actualHoverBackground: "actualHoverBackground", rowHoverTextColor: "rowHoverTextColor", actualRowHoverTextColor: "actualRowHoverTextColor", animationSettings: "animationSettings", width: "width", minWidth: "minWidth", isFromMarkup: "isFromMarkup", isAutoGenerated: "isAutoGenerated", filter: "filter", filterExpression: "filterExpression", header: "header", isFilteringEnabled: "isFilteringEnabled", isResizingEnabled: "isResizingEnabled", isHidden: "isHidden", shouldRemoveWhenHidden: "shouldRemoveWhenHidden", sortDirection: "sortDirection", pinned: "pinned", actualColumnOptionsIconAlignment: "actualColumnOptionsIconAlignment", columnOptionsIconAlignment: "columnOptionsIconAlignment", actualColumnOptionsIconColor: "actualColumnOptionsIconColor", columnOptionsIconColor: "columnOptionsIconColor", columnOptionsIconBehavior: "columnOptionsIconBehavior", actualColumnOptionsIconBehavior: "actualColumnOptionsIconBehavior", actualIsColumnOptionsEnabled: "actualIsColumnOptionsEnabled", isColumnOptionsEnabled: "isColumnOptionsEnabled", actualIsColumnOptionsSummariesEnabled: "actualIsColumnOptionsSummariesEnabled", isColumnOptionsSummariesEnabled: "isColumnOptionsSummariesEnabled", actualIsColumnOptionsGroupingEnabled: "actualIsColumnOptionsGroupingEnabled", isColumnOptionsGroupingEnabled: "isColumnOptionsGroupingEnabled", isEditable: "isEditable", deletedTextColor: "deletedTextColor", actualDeletedTextColor: "actualDeletedTextColor", editOpacity: "editOpacity", actualEditOpacity: "actualEditOpacity", textEditStyle: "textEditStyle", actualEditFontInfo: "actualEditFontInfo", mergedCellMode: "mergedCellMode", mergedCellEvaluationCriteria: "mergedCellEvaluationCriteria", mergedCellVerticalAlignment: "mergedCellVerticalAlignment", mergedCellPaddingLeft: "mergedCellPaddingLeft", mergedCellPaddingTop: "mergedCellPaddingTop", mergedCellPaddingRight: "mergedCellPaddingRight", mergedCellPaddingBottom: "mergedCellPaddingBottom", filterComparisonType: "filterComparisonType", filterOperands: "filterOperands" }, outputs: { formatCell: "formatCell", actualHeaderTextChange: "actualHeaderTextChange" }, usesInheritance: true, ngImport: i0, template: "", isInline: true });
1173
+ IgxDataGridColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxDataGridColumnComponent, selector: "ng-component", inputs: { paddingLeft: "paddingLeft", paddingTop: "paddingTop", paddingRight: "paddingRight", paddingBottom: "paddingBottom", name: "name", field: "field", headerText: "headerText", actualHeaderText: "actualHeaderText", selectedBackground: "selectedBackground", actualSelectedBackground: "actualSelectedBackground", rowHoverBackground: "rowHoverBackground", actualHoverBackground: "actualHoverBackground", rowHoverTextColor: "rowHoverTextColor", actualRowHoverTextColor: "actualRowHoverTextColor", animationSettings: "animationSettings", width: "width", minWidth: "minWidth", isFromMarkup: "isFromMarkup", isAutoGenerated: "isAutoGenerated", filter: "filter", filterExpression: "filterExpression", header: "header", isFilteringEnabled: "isFilteringEnabled", isResizingEnabled: "isResizingEnabled", isHidden: "isHidden", shouldRemoveWhenHidden: "shouldRemoveWhenHidden", sortDirection: "sortDirection", pinned: "pinned", actualColumnOptionsIconAlignment: "actualColumnOptionsIconAlignment", columnOptionsIconAlignment: "columnOptionsIconAlignment", actualColumnOptionsIconColor: "actualColumnOptionsIconColor", columnOptionsIconColor: "columnOptionsIconColor", columnOptionsIconBehavior: "columnOptionsIconBehavior", actualColumnOptionsIconBehavior: "actualColumnOptionsIconBehavior", actualIsColumnOptionsEnabled: "actualIsColumnOptionsEnabled", isColumnOptionsEnabled: "isColumnOptionsEnabled", actualIsColumnOptionsSummariesEnabled: "actualIsColumnOptionsSummariesEnabled", isColumnOptionsSummariesEnabled: "isColumnOptionsSummariesEnabled", actualIsColumnOptionsGroupingEnabled: "actualIsColumnOptionsGroupingEnabled", isColumnOptionsGroupingEnabled: "isColumnOptionsGroupingEnabled", isEditable: "isEditable", deletedTextColor: "deletedTextColor", actualDeletedTextColor: "actualDeletedTextColor", editOpacity: "editOpacity", actualEditOpacity: "actualEditOpacity", textEditStyle: "textEditStyle", actualEditFontInfo: "actualEditFontInfo", mergedCellMode: "mergedCellMode", mergedCellEvaluationCriteria: "mergedCellEvaluationCriteria", mergedCellVerticalAlignment: "mergedCellVerticalAlignment", mergedCellPaddingLeft: "mergedCellPaddingLeft", mergedCellPaddingTop: "mergedCellPaddingTop", mergedCellPaddingRight: "mergedCellPaddingRight", mergedCellPaddingBottom: "mergedCellPaddingBottom", filterComparisonType: "filterComparisonType", filterOperands: "filterOperands", suffixText: "suffixText", suffixTextColor: "suffixTextColor", suffixTextStyle: "suffixTextStyle", suffixIconName: "suffixIconName", suffixIconCollectionName: "suffixIconCollectionName", suffixIconStroke: "suffixIconStroke", suffixIconFill: "suffixIconFill", suffixIconViewBoxLeft: "suffixIconViewBoxLeft", suffixIconViewBoxTop: "suffixIconViewBoxTop", suffixIconViewBoxWidth: "suffixIconViewBoxWidth", suffixIconViewBoxHeight: "suffixIconViewBoxHeight", textDecoration: "textDecoration" }, outputs: { formatCell: "formatCell", actualHeaderTextChange: "actualHeaderTextChange" }, usesInheritance: true, ngImport: i0, template: "", isInline: true });
1011
1174
  return IgxDataGridColumnComponent;
1012
1175
  }(IgxDefinitionBaseComponent));
1013
1176
  export { IgxDataGridColumnComponent };
@@ -1128,6 +1291,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
1128
1291
  type: Input
1129
1292
  }], filterOperands: [{
1130
1293
  type: Input
1294
+ }], suffixText: [{
1295
+ type: Input
1296
+ }], suffixTextColor: [{
1297
+ type: Input
1298
+ }], suffixTextStyle: [{
1299
+ type: Input
1300
+ }], suffixIconName: [{
1301
+ type: Input
1302
+ }], suffixIconCollectionName: [{
1303
+ type: Input
1304
+ }], suffixIconStroke: [{
1305
+ type: Input
1306
+ }], suffixIconFill: [{
1307
+ type: Input
1308
+ }], suffixIconViewBoxLeft: [{
1309
+ type: Input
1310
+ }], suffixIconViewBoxTop: [{
1311
+ type: Input
1312
+ }], suffixIconViewBoxWidth: [{
1313
+ type: Input
1314
+ }], suffixIconViewBoxHeight: [{
1315
+ type: Input
1316
+ }], textDecoration: [{
1317
+ type: Input
1131
1318
  }], formatCell: [{
1132
1319
  type: Output
1133
1320
  }], actualHeaderTextChange: [{