igniteui-angular-data-grids 20.0.1 → 20.0.2-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (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 +4 -4
  240. package/public_api.d.ts +5 -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 { IgxGridFilterOperandsCollection } from "./igx-grid-filter-operands-collection";
15
+ import { TextCellDecoration_$type } from "./TextCellDecoration";
15
16
  import { IgxFormatCellEventArgs } from "./igx-format-cell-event-args";
17
+ import { CellPropertyAnimationType_$type } from "./CellPropertyAnimationType";
16
18
  import { IgxDefinitionBaseComponent } from "./igx-definition-base-component";
17
19
  import { brushToString, stringToBrush, ensureBool, ensureEnum } from "igniteui-angular-core";
18
20
  import { ColumnWidth as ColumnWidth_internal } from "./ColumnWidth";
@@ -56,133 +58,133 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
56
58
  * Gets or sets the amount of left padding to use for the cell content for this column.
57
59
  */
58
60
  get paddingLeft() {
59
- return this.i.kl;
61
+ return this.i.ky;
60
62
  }
61
63
  set paddingLeft(v) {
62
- this.i.kl = +v;
64
+ this.i.ky = +v;
63
65
  }
64
66
  /**
65
67
  * Gets or sets the amount of top padding to use for the cell content for this column.
66
68
  */
67
69
  get paddingTop() {
68
- return this.i.kn;
70
+ return this.i.k0;
69
71
  }
70
72
  set paddingTop(v) {
71
- this.i.kn = +v;
73
+ this.i.k0 = +v;
72
74
  }
73
75
  /**
74
76
  * Gets or sets the amount of right padding to use for the cell content of this column.
75
77
  */
76
78
  get paddingRight() {
77
- return this.i.km;
79
+ return this.i.kz;
78
80
  }
79
81
  set paddingRight(v) {
80
- this.i.km = +v;
82
+ this.i.kz = +v;
81
83
  }
82
84
  /**
83
85
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
84
86
  */
85
87
  get paddingBottom() {
86
- return this.i.kk;
88
+ return this.i.kx;
87
89
  }
88
90
  set paddingBottom(v) {
89
- this.i.kk = +v;
91
+ this.i.kx = +v;
90
92
  }
91
93
  /**
92
94
  * Gets or sets an unique name of the Column
93
95
  */
94
96
  get name() {
95
- return this.i.mg;
97
+ return this.i.mw;
96
98
  }
97
99
  set name(v) {
98
- this.i.mg = v;
100
+ this.i.mw = v;
99
101
  }
100
102
  /**
101
103
  * Gets or sets the key used for the column binding
102
104
  */
103
105
  get field() {
104
- return this.i.lp;
106
+ return this.i.l5;
105
107
  }
106
108
  set field(v) {
107
- this.i.lp = v;
109
+ this.i.l5 = v;
108
110
  }
109
111
  /**
110
112
  * Gets or sets the text displayed in the header of the column
111
113
  */
112
114
  get headerText() {
113
- return this.i.lw;
115
+ return this.i.mc;
114
116
  }
115
117
  set headerText(v) {
116
- this.i.lw = v;
118
+ this.i.mc = v;
117
119
  }
118
120
  /**
119
121
  * Gets the actual text displayed in the header of the column
120
122
  */
121
123
  get actualHeaderText() {
122
- return this.i.k4;
124
+ return this.i.lk;
123
125
  }
124
126
  set actualHeaderText(v) {
125
- this.i.k4 = v;
127
+ this.i.lk = v;
126
128
  }
127
129
  /**
128
130
  * Gets or sets the background color to use for the cells when they are selected
129
131
  */
130
132
  get selectedBackground() {
131
- return brushToString(this.i.n4);
133
+ return brushToString(this.i.o2);
132
134
  }
133
135
  set selectedBackground(v) {
134
- this.i.n4 = stringToBrush(v);
136
+ this.i.o2 = stringToBrush(v);
135
137
  }
136
138
  /**
137
139
  * Gets the actual background color that is used for the cells when they are selected
138
140
  */
139
141
  get actualSelectedBackground() {
140
- return brushToString(this.i.nx);
142
+ return brushToString(this.i.ov);
141
143
  }
142
144
  set actualSelectedBackground(v) {
143
- this.i.nx = stringToBrush(v);
145
+ this.i.ov = stringToBrush(v);
144
146
  }
145
147
  /**
146
148
  * Gets or sets the background color to use for the cells when the row is hovered.
147
149
  */
148
150
  get rowHoverBackground() {
149
- return brushToString(this.i.n2);
151
+ return brushToString(this.i.o0);
150
152
  }
151
153
  set rowHoverBackground(v) {
152
- this.i.n2 = stringToBrush(v);
154
+ this.i.o0 = stringToBrush(v);
153
155
  }
154
156
  /**
155
157
  * Gets the actual background color that is used for the cells when they are hovered.
156
158
  */
157
159
  get actualHoverBackground() {
158
- return brushToString(this.i.nv);
160
+ return brushToString(this.i.ot);
159
161
  }
160
162
  set actualHoverBackground(v) {
161
- this.i.nv = stringToBrush(v);
163
+ this.i.ot = stringToBrush(v);
162
164
  }
163
165
  /**
164
166
  * Gets or sets the text color to use for the cells when the row is hovered.
165
167
  */
166
168
  get rowHoverTextColor() {
167
- return brushToString(this.i.n3);
169
+ return brushToString(this.i.o1);
168
170
  }
169
171
  set rowHoverTextColor(v) {
170
- this.i.n3 = stringToBrush(v);
172
+ this.i.o1 = stringToBrush(v);
171
173
  }
172
174
  /**
173
175
  * Gets the actual text color that is used for the cells when they are hovered.
174
176
  */
175
177
  get actualRowHoverTextColor() {
176
- return brushToString(this.i.nw);
178
+ return brushToString(this.i.ou);
177
179
  }
178
180
  set actualRowHoverTextColor(v) {
179
- this.i.nw = stringToBrush(v);
181
+ this.i.ou = stringToBrush(v);
180
182
  }
181
183
  /**
182
184
  * Gets or sets the animation settings to use for this column.
183
185
  */
184
186
  get animationSettings() {
185
- const r = this.i.h7;
187
+ const r = this.i.h8;
186
188
  if (r == null) {
187
189
  return null;
188
190
  }
@@ -201,7 +203,7 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
201
203
  return r.externalObject;
202
204
  }
203
205
  set animationSettings(v) {
204
- v == null ? this.i.h7 = null : this.i.h7 = v.i;
206
+ v == null ? this.i.h8 = null : this.i.h8 = v.i;
205
207
  }
206
208
  /**
207
209
  * Gets or sets the width to use for this column.
@@ -238,46 +240,46 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
238
240
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
239
241
  */
240
242
  get minWidth() {
241
- return this.i.j1;
243
+ return this.i.ka;
242
244
  }
243
245
  set minWidth(v) {
244
- this.i.j1 = +v;
246
+ this.i.ka = +v;
245
247
  }
246
248
  /**
247
249
  * Gets whether this column was projected from markup/templates and is constrained.
248
250
  */
249
251
  get isFromMarkup() {
250
- return this.i.jo;
252
+ return this.i.jt;
251
253
  }
252
254
  set isFromMarkup(v) {
253
- this.i.jo = ensureBool(v);
255
+ this.i.jt = ensureBool(v);
254
256
  }
255
257
  /**
256
258
  * Gets whether this column was auto generated.
257
259
  */
258
260
  get isAutoGenerated() {
259
- return this.i.ji;
261
+ return this.i.jn;
260
262
  }
261
263
  set isAutoGenerated(v) {
262
- this.i.ji = ensureBool(v);
264
+ this.i.jn = ensureBool(v);
263
265
  }
264
266
  /**
265
267
  * Gets or sets a filter to apply on the values of this column
266
268
  */
267
269
  get filter() {
268
- return this.i.g1;
270
+ return this.i.g2;
269
271
  }
270
272
  set filter(v) {
271
- this.i.g1 = v;
273
+ this.i.g2 = v;
272
274
  }
273
275
  /**
274
276
  * Gets or sets a filter to apply to the values of this column.
275
277
  */
276
278
  get filterExpression() {
277
- return this.i.g3;
279
+ return this.i.g4;
278
280
  }
279
281
  set filterExpression(v) {
280
- this.i.g3 = v;
282
+ this.i.g4 = v;
281
283
  }
282
284
  /**
283
285
  * Gets or sets the header definition for this column.
@@ -305,209 +307,209 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
305
307
  * Gets or sets whether filtering is enabled for this column.
306
308
  */
307
309
  get isFilteringEnabled() {
308
- return this.i.jn;
310
+ return this.i.js;
309
311
  }
310
312
  set isFilteringEnabled(v) {
311
- this.i.jn = ensureBool(v);
313
+ this.i.js = ensureBool(v);
312
314
  }
313
315
  /**
314
316
  * Gets or sets whether resizing is enabled for this column.
315
317
  */
316
318
  get isResizingEnabled() {
317
- return this.i.jq;
319
+ return this.i.jv;
318
320
  }
319
321
  set isResizingEnabled(v) {
320
- this.i.jq = ensureBool(v);
322
+ this.i.jv = ensureBool(v);
321
323
  }
322
324
  /**
323
325
  * Gets or sets whether or not a column is hidden from the grid
324
326
  */
325
327
  get isHidden() {
326
- return this.i.jp;
328
+ return this.i.ju;
327
329
  }
328
330
  set isHidden(v) {
329
- this.i.jp = ensureBool(v);
331
+ this.i.ju = ensureBool(v);
330
332
  }
331
333
  /**
332
334
  * Gets or sets if a column should be removed from the grid when it is fully hidden
333
335
  */
334
336
  get shouldRemoveWhenHidden() {
335
- return this.i.jt;
337
+ return this.i.jy;
336
338
  }
337
339
  set shouldRemoveWhenHidden(v) {
338
- this.i.jt = ensureBool(v);
340
+ this.i.jy = ensureBool(v);
339
341
  }
340
342
  /**
341
343
  * Gets the current sort direction (None, Ascending, Descending) for this column.
342
344
  */
343
345
  get sortDirection() {
344
- return this.i.hr;
346
+ return this.i.hs;
345
347
  }
346
348
  set sortDirection(v) {
347
- this.i.hr = ensureEnum(ColumnSortDirection_$type, v);
349
+ this.i.hs = ensureEnum(ColumnSortDirection_$type, v);
348
350
  }
349
351
  /**
350
352
  * Gets or sets the current fixed position for this column.
351
353
  */
352
354
  get pinned() {
353
- return this.i.im;
355
+ return this.i.io;
354
356
  }
355
357
  set pinned(v) {
356
- this.i.im = ensureEnum(PinnedPositions_$type, v);
358
+ this.i.io = ensureEnum(PinnedPositions_$type, v);
357
359
  }
358
360
  /**
359
361
  * Gets the actual column options icon alignment for this column.
360
362
  */
361
363
  get actualColumnOptionsIconAlignment() {
362
- return this.i.hi;
364
+ return this.i.hj;
363
365
  }
364
366
  set actualColumnOptionsIconAlignment(v) {
365
- this.i.hi = ensureEnum(ColumnOptionsIconAlignment_$type, v);
367
+ this.i.hj = ensureEnum(ColumnOptionsIconAlignment_$type, v);
366
368
  }
367
369
  /**
368
370
  * Gets or sets whether the column options icon is aligned opposite the header text or not.
369
371
  */
370
372
  get columnOptionsIconAlignment() {
371
- return this.i.hj;
373
+ return this.i.hk;
372
374
  }
373
375
  set columnOptionsIconAlignment(v) {
374
- this.i.hj = ensureEnum(ColumnOptionsIconAlignment_$type, v);
376
+ this.i.hk = ensureEnum(ColumnOptionsIconAlignment_$type, v);
375
377
  }
376
378
  /**
377
379
  * Gets the actual column options icon color for this column.
378
380
  */
379
381
  get actualColumnOptionsIconColor() {
380
- return brushToString(this.i.nt);
382
+ return brushToString(this.i.or);
381
383
  }
382
384
  set actualColumnOptionsIconColor(v) {
383
- this.i.nt = stringToBrush(v);
385
+ this.i.or = stringToBrush(v);
384
386
  }
385
387
  /**
386
388
  * Gets or sets the column options icon color for this column.
387
389
  */
388
390
  get columnOptionsIconColor() {
389
- return brushToString(this.i.ny);
391
+ return brushToString(this.i.ow);
390
392
  }
391
393
  set columnOptionsIconColor(v) {
392
- this.i.ny = stringToBrush(v);
394
+ this.i.ow = stringToBrush(v);
393
395
  }
394
396
  /**
395
397
  * Gets or sets how the column option icon will behave in the column header.
396
398
  */
397
399
  get columnOptionsIconBehavior() {
398
- return this.i.hn;
400
+ return this.i.ho;
399
401
  }
400
402
  set columnOptionsIconBehavior(v) {
401
- this.i.hn = ensureEnum(ColumnOptionsIconBehavior_$type, v);
403
+ this.i.ho = ensureEnum(ColumnOptionsIconBehavior_$type, v);
402
404
  }
403
405
  /**
404
406
  * Gets or sets how the column option icon will behave in the column header.
405
407
  */
406
408
  get actualColumnOptionsIconBehavior() {
407
- return this.i.hm;
409
+ return this.i.hn;
408
410
  }
409
411
  set actualColumnOptionsIconBehavior(v) {
410
- this.i.hm = ensureEnum(ColumnOptionsIconBehavior_$type, v);
412
+ this.i.hn = ensureEnum(ColumnOptionsIconBehavior_$type, v);
411
413
  }
412
414
  /**
413
415
  * Gets the actual state of the column options for this column.
414
416
  */
415
417
  get actualIsColumnOptionsEnabled() {
416
- return this.i.jb;
418
+ return this.i.jg;
417
419
  }
418
420
  set actualIsColumnOptionsEnabled(v) {
419
- this.i.jb = ensureBool(v);
421
+ this.i.jg = ensureBool(v);
420
422
  }
421
423
  /**
422
424
  * Gets or sets the preferred state of the column options for this column. If the feature is disabled at the grid level
423
425
  * then it will be disabled for the column regardless of what this is set to.
424
426
  */
425
427
  get isColumnOptionsEnabled() {
426
- return this.i.jj;
428
+ return this.i.jo;
427
429
  }
428
430
  set isColumnOptionsEnabled(v) {
429
- this.i.jj = ensureBool(v);
431
+ this.i.jo = ensureBool(v);
430
432
  }
431
433
  /**
432
434
  * Gets the actual state of summaries menu in the column options for this column.
433
435
  */
434
436
  get actualIsColumnOptionsSummariesEnabled() {
435
- return this.i.jd;
437
+ return this.i.ji;
436
438
  }
437
439
  set actualIsColumnOptionsSummariesEnabled(v) {
438
- this.i.jd = ensureBool(v);
440
+ this.i.ji = ensureBool(v);
439
441
  }
440
442
  /**
441
443
  * Gets or sets whether to show the summaries option in the column options menu for this column.
442
444
  */
443
445
  get isColumnOptionsSummariesEnabled() {
444
- return this.i.jl;
446
+ return this.i.jq;
445
447
  }
446
448
  set isColumnOptionsSummariesEnabled(v) {
447
- this.i.jl = ensureBool(v);
449
+ this.i.jq = ensureBool(v);
448
450
  }
449
451
  /**
450
452
  * Gets the actual state of grouping menu in the column options for this column.
451
453
  */
452
454
  get actualIsColumnOptionsGroupingEnabled() {
453
- return this.i.jc;
455
+ return this.i.jh;
454
456
  }
455
457
  set actualIsColumnOptionsGroupingEnabled(v) {
456
- this.i.jc = ensureBool(v);
458
+ this.i.jh = ensureBool(v);
457
459
  }
458
460
  /**
459
461
  * Gets or sets whether to show the grouping option in the column options menu for this column.
460
462
  */
461
463
  get isColumnOptionsGroupingEnabled() {
462
- return this.i.jk;
464
+ return this.i.jp;
463
465
  }
464
466
  set isColumnOptionsGroupingEnabled(v) {
465
- this.i.jk = ensureBool(v);
467
+ this.i.jp = ensureBool(v);
466
468
  }
467
469
  /**
468
470
  * Gets or sets if the column is editable.
469
471
  */
470
472
  get isEditable() {
471
- return this.i.jm;
473
+ return this.i.jr;
472
474
  }
473
475
  set isEditable(v) {
474
- this.i.jm = ensureBool(v);
476
+ this.i.jr = ensureBool(v);
475
477
  }
476
478
  /**
477
479
  * Gets or sets the text color used for deleted rows.
478
480
  */
479
481
  get deletedTextColor() {
480
- return brushToString(this.i.nz);
482
+ return brushToString(this.i.ox);
481
483
  }
482
484
  set deletedTextColor(v) {
483
- this.i.nz = stringToBrush(v);
485
+ this.i.ox = stringToBrush(v);
484
486
  }
485
487
  /**
486
488
  * Gets the actual text color used for deleted rows.
487
489
  */
488
490
  get actualDeletedTextColor() {
489
- return brushToString(this.i.nu);
491
+ return brushToString(this.i.os);
490
492
  }
491
493
  set actualDeletedTextColor(v) {
492
- this.i.nu = stringToBrush(v);
494
+ this.i.os = stringToBrush(v);
493
495
  }
494
496
  /**
495
497
  * Gets or sets the opacity to use for unsaved edited cell values.
496
498
  */
497
499
  get editOpacity() {
498
- return this.i.j0;
500
+ return this.i.j9;
499
501
  }
500
502
  set editOpacity(v) {
501
- this.i.j0 = +v;
503
+ this.i.j9 = +v;
502
504
  }
503
505
  /**
504
506
  * Gets the actual opacity for unsaved edited cell values.
505
507
  */
506
508
  get actualEditOpacity() {
507
- return this.i.jz;
509
+ return this.i.j8;
508
510
  }
509
511
  set actualEditOpacity(v) {
510
- this.i.jz = +v;
512
+ this.i.j8 = +v;
511
513
  }
512
514
  /**
513
515
  * Gets or sets the font style to use for unsaved cell edits.
@@ -527,87 +529,87 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
527
529
  * Gets the actual font style used for unsaved cell edits.
528
530
  */
529
531
  get actualEditFontInfo() {
530
- if (this.i.it == null) {
532
+ if (this.i.ix == null) {
531
533
  return null;
532
534
  }
533
- return this.i.it.fontString;
535
+ return this.i.ix.fontString;
534
536
  }
535
537
  set actualEditFontInfo(v) {
536
538
  let fi = new FontInfo();
537
539
  fi.fontString = v;
538
- this.i.it = fi;
540
+ this.i.ix = fi;
539
541
  }
540
542
  /**
541
543
  * Gets or sets if and how cell merging is performed for this field.
542
544
  */
543
545
  get mergedCellMode() {
544
- return this.i.ii;
546
+ return this.i.ij;
545
547
  }
546
548
  set mergedCellMode(v) {
547
- this.i.ii = ensureEnum(MergedCellMode_$type, v);
549
+ this.i.ij = ensureEnum(MergedCellMode_$type, v);
548
550
  }
549
551
  /**
550
552
  * Gets or sets how cells are evaluated for merging.
551
553
  */
552
554
  get mergedCellEvaluationCriteria() {
553
- return this.i.ie;
555
+ return this.i.ig;
554
556
  }
555
557
  set mergedCellEvaluationCriteria(v) {
556
- this.i.ie = ensureEnum(MergedCellEvaluationCriteria_$type, v);
558
+ this.i.ig = ensureEnum(MergedCellEvaluationCriteria_$type, v);
557
559
  }
558
560
  /**
559
561
  * Gets or sets the vertical alignment to use for the merged cell content.
560
562
  */
561
563
  get mergedCellVerticalAlignment() {
562
- return this.i.ha;
564
+ return this.i.hb;
563
565
  }
564
566
  set mergedCellVerticalAlignment(v) {
565
- this.i.ha = ensureEnum(CellContentVerticalAlignment_$type, v);
567
+ this.i.hb = ensureEnum(CellContentVerticalAlignment_$type, v);
566
568
  }
567
569
  /**
568
570
  * Gets or sets the amount of left padding to use for the cell content for this column.
569
571
  */
570
572
  get mergedCellPaddingLeft() {
571
- return this.i.ke;
573
+ return this.i.kr;
572
574
  }
573
575
  set mergedCellPaddingLeft(v) {
574
- this.i.ke = +v;
576
+ this.i.kr = +v;
575
577
  }
576
578
  /**
577
579
  * Gets or sets the amount of top padding to use for the cell content for this column.
578
580
  */
579
581
  get mergedCellPaddingTop() {
580
- return this.i.kg;
582
+ return this.i.kt;
581
583
  }
582
584
  set mergedCellPaddingTop(v) {
583
- this.i.kg = +v;
585
+ this.i.kt = +v;
584
586
  }
585
587
  /**
586
588
  * Gets or sets the amount of right padding to use for the cell content of this column.
587
589
  */
588
590
  get mergedCellPaddingRight() {
589
- return this.i.kf;
591
+ return this.i.ks;
590
592
  }
591
593
  set mergedCellPaddingRight(v) {
592
- this.i.kf = +v;
594
+ this.i.ks = +v;
593
595
  }
594
596
  /**
595
597
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
596
598
  */
597
599
  get mergedCellPaddingBottom() {
598
- return this.i.kd;
600
+ return this.i.kq;
599
601
  }
600
602
  set mergedCellPaddingBottom(v) {
601
- this.i.kd = +v;
603
+ this.i.kq = +v;
602
604
  }
603
605
  /**
604
606
  * Gets or sets whether UI filters are case sensitive or not.
605
607
  */
606
608
  get filterComparisonType() {
607
- return this.i.h1;
609
+ return this.i.h2;
608
610
  }
609
611
  set filterComparisonType(v) {
610
- this.i.h1 = ensureEnum(FilterComparisonType_$type, v);
612
+ this.i.h2 = ensureEnum(FilterComparisonType_$type, v);
611
613
  }
612
614
  /**
613
615
  * Gets a list of the current custom filters for this column.
@@ -615,7 +617,7 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
615
617
  get filterOperands() {
616
618
  if (this._filterOperands === null) {
617
619
  let coll = new IgxGridFilterOperandsCollection();
618
- let innerColl = this.i.h9;
620
+ let innerColl = this.i.ia;
619
621
  if (!innerColl) {
620
622
  innerColl = new GridFilterOperandsCollection_internal();
621
623
  }
@@ -631,7 +633,7 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
631
633
  let coll = new IgxGridFilterOperandsCollection();
632
634
  this._filterOperands = coll._fromOuter(v);
633
635
  let syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
634
- let innerColl = this.i.h9;
636
+ let innerColl = this.i.ia;
635
637
  if (!innerColl) {
636
638
  innerColl = new GridFilterOperandsCollection_internal();
637
639
  }
@@ -639,6 +641,119 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
639
641
  syncColl.clear();
640
642
  this._filterOperands._setSyncTarget(syncColl);
641
643
  }
644
+ /**
645
+ * Gets or sets the text to display in the suffix area of cells in this column.
646
+ */
647
+ get suffixText() {
648
+ return this.i.nj;
649
+ }
650
+ set suffixText(v) {
651
+ this.i.nj = v;
652
+ }
653
+ /**
654
+ * Gets or sets the color of the text in the suffix area of the cells in this column.
655
+ */
656
+ get suffixTextColor() {
657
+ return brushToString(this.i.o5);
658
+ }
659
+ set suffixTextColor(v) {
660
+ this.i.o5 = stringToBrush(v);
661
+ }
662
+ /**
663
+ * Gets or sets the font of the suffix text.
664
+ */
665
+ get suffixTextStyle() {
666
+ if (this.i.suffixTextStyle == null) {
667
+ return null;
668
+ }
669
+ return this.i.suffixTextStyle.fontString;
670
+ }
671
+ set suffixTextStyle(v) {
672
+ let fi = new FontInfo();
673
+ fi.fontString = v;
674
+ this.i.suffixTextStyle = fi;
675
+ }
676
+ /**
677
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
678
+ */
679
+ get suffixIconName() {
680
+ return this.i.nc;
681
+ }
682
+ set suffixIconName(v) {
683
+ this.i.nc = v;
684
+ }
685
+ /**
686
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
687
+ */
688
+ get suffixIconCollectionName() {
689
+ return this.i.m9;
690
+ }
691
+ set suffixIconCollectionName(v) {
692
+ this.i.m9 = v;
693
+ }
694
+ /**
695
+ * Gets or sets the stroke color of suffix icon.
696
+ */
697
+ get suffixIconStroke() {
698
+ return brushToString(this.i.o4);
699
+ }
700
+ set suffixIconStroke(v) {
701
+ this.i.o4 = stringToBrush(v);
702
+ }
703
+ /**
704
+ * Gets or sets the fill color of suffix icon.
705
+ */
706
+ get suffixIconFill() {
707
+ return brushToString(this.i.o3);
708
+ }
709
+ set suffixIconFill(v) {
710
+ this.i.o3 = stringToBrush(v);
711
+ }
712
+ /**
713
+ * Gets or sets the suffix icon's viewbox x coordinate.
714
+ */
715
+ get suffixIconViewBoxLeft() {
716
+ return this.i.kc;
717
+ }
718
+ set suffixIconViewBoxLeft(v) {
719
+ this.i.kc = +v;
720
+ }
721
+ /**
722
+ * Gets or sets the suffix icon's viewbox y coordinate.
723
+ */
724
+ get suffixIconViewBoxTop() {
725
+ return this.i.kd;
726
+ }
727
+ set suffixIconViewBoxTop(v) {
728
+ this.i.kd = +v;
729
+ }
730
+ /**
731
+ * Gets or sets the suffix icon's viewbox width.
732
+ */
733
+ get suffixIconViewBoxWidth() {
734
+ return this.i.ke;
735
+ }
736
+ set suffixIconViewBoxWidth(v) {
737
+ this.i.ke = +v;
738
+ }
739
+ /**
740
+ * Gets or sets the suffix icon's viewbox height.
741
+ */
742
+ get suffixIconViewBoxHeight() {
743
+ return this.i.kb;
744
+ }
745
+ set suffixIconViewBoxHeight(v) {
746
+ this.i.kb = +v;
747
+ }
748
+ /**
749
+ * Gets or sets the text decoration to apply to cells in this column.
750
+ */
751
+ get textDecoration() {
752
+ return this.i.iq;
753
+ }
754
+ set textDecoration(v) {
755
+ this.i.iq = ensureEnum(TextCellDecoration_$type, v);
756
+ }
642
757
  findByName(name) {
643
758
  var baseResult = super.findByName(name);
644
759
  if (baseResult) {
@@ -671,18 +786,18 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
671
786
 
672
787
  */
673
788
  getUniqueKey() {
674
- let iv = this.i.lu();
789
+ let iv = this.i.ma();
675
790
  return (iv);
676
791
  }
677
792
  setNamedHeaderValue(valueName, animationType, value) {
678
- this.i.m4(valueName, (animationType == null ? null : animationType), value);
793
+ this.i.nz(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
679
794
  }
680
795
  /**
681
796
  * Returns if the column has named header values.
682
797
 
683
798
  */
684
799
  hasNamedHeaderValues() {
685
- let iv = this.i.jg();
800
+ let iv = this.i.jl();
686
801
  return (iv);
687
802
  }
688
803
  /**
@@ -691,7 +806,7 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
691
806
  * @param valueName * The named value to check for.
692
807
  */
693
808
  hasNamedHeaderValue(valueName) {
694
- let iv = this.i.jf(valueName);
809
+ let iv = this.i.jk(valueName);
695
810
  return (iv);
696
811
  }
697
812
  /**
@@ -700,7 +815,7 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
700
815
  * @param valueName * The named header value to remove.
701
816
  */
702
817
  removeNamedHeaderValue(valueName) {
703
- this.i.m3(valueName);
818
+ this.i.ny(valueName);
704
819
  }
705
820
  /**
706
821
  * Gets the value of a named header value for this column by name.
@@ -708,11 +823,11 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
708
823
  * @param valueName * Name of the named header value to retrieve.
709
824
  */
710
825
  getNamedHeaderValue(valueName) {
711
- let iv = this.i.ks(valueName);
826
+ let iv = this.i.k5(valueName);
712
827
  return (iv);
713
828
  }
714
829
  applyCustomFilter(filterID, index, value) {
715
- this.i.mw(filterID, index, value);
830
+ this.i.nr(filterID, index, value);
716
831
  }
717
832
  getDesiredToolbarActions() {
718
833
  let iv = this.i.getDesiredToolbarActions();
@@ -768,7 +883,7 @@ export let IgxDataGridColumnComponent = /*@__PURE__*/ (() => {
768
883
  }
769
884
  }
770
885
  IgxDataGridColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataGridColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
771
- 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 });
886
+ 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 });
772
887
  return IgxDataGridColumnComponent;
773
888
  })();
774
889
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxDataGridColumnComponent, decorators: [{
@@ -888,6 +1003,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
888
1003
  type: Input
889
1004
  }], filterOperands: [{
890
1005
  type: Input
1006
+ }], suffixText: [{
1007
+ type: Input
1008
+ }], suffixTextColor: [{
1009
+ type: Input
1010
+ }], suffixTextStyle: [{
1011
+ type: Input
1012
+ }], suffixIconName: [{
1013
+ type: Input
1014
+ }], suffixIconCollectionName: [{
1015
+ type: Input
1016
+ }], suffixIconStroke: [{
1017
+ type: Input
1018
+ }], suffixIconFill: [{
1019
+ type: Input
1020
+ }], suffixIconViewBoxLeft: [{
1021
+ type: Input
1022
+ }], suffixIconViewBoxTop: [{
1023
+ type: Input
1024
+ }], suffixIconViewBoxWidth: [{
1025
+ type: Input
1026
+ }], suffixIconViewBoxHeight: [{
1027
+ type: Input
1028
+ }], textDecoration: [{
1029
+ type: Input
891
1030
  }], formatCell: [{
892
1031
  type: Output
893
1032
  }], actualHeaderTextChange: [{