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
@@ -6,6 +6,7 @@ import { ensureBool, ensureEnum, brushToString, stringToBrush } from "igniteui-a
6
6
  import { FontInfo } from "igniteui-angular-core";
7
7
  import { delegateCombine, delegateRemove, runOn } from "igniteui-angular-core";
8
8
  import { PinnedPositions_$type } from './PinnedPositions';
9
+ import { TextCellDecoration_$type } from "./TextCellDecoration";
9
10
  /**
10
11
  * Represents info about the current cell.
11
12
  */
@@ -95,10 +96,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
95
96
  * Gets the style key of the current cell, used for recycling.
96
97
  */
97
98
  get: function () {
98
- return this.i.ke;
99
+ return this.i.k5;
99
100
  },
100
101
  set: function (v) {
101
- this.i.ke = v;
102
+ this.i.k5 = v;
102
103
  },
103
104
  enumerable: false,
104
105
  configurable: true
@@ -108,10 +109,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
108
109
  * Gets the absolute data row for the current cell.
109
110
  */
110
111
  get: function () {
111
- return this.i.fb;
112
+ return this.i.fn;
112
113
  },
113
114
  set: function (v) {
114
- this.i.fb = +v;
115
+ this.i.fn = +v;
115
116
  },
116
117
  enumerable: false,
117
118
  configurable: true
@@ -121,10 +122,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
121
122
  * Gets if the position of the cell is dirty.
122
123
  */
123
124
  get: function () {
124
- return this.i.bj;
125
+ return this.i.bn;
125
126
  },
126
127
  set: function (v) {
127
- this.i.bj = ensureBool(v);
128
+ this.i.bn = ensureBool(v);
128
129
  },
129
130
  enumerable: false,
130
131
  configurable: true
@@ -134,10 +135,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
134
135
  * Gets if the size of the cell is dirty.
135
136
  */
136
137
  get: function () {
137
- return this.i.bo;
138
+ return this.i.bs;
138
139
  },
139
140
  set: function (v) {
140
- this.i.bo = ensureBool(v);
141
+ this.i.bs = ensureBool(v);
141
142
  },
142
143
  enumerable: false,
143
144
  configurable: true
@@ -147,10 +148,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
147
148
  * Gets if the content of the cell is dirty.
148
149
  */
149
150
  get: function () {
150
- return this.i.a3;
151
+ return this.i.a7;
151
152
  },
152
153
  set: function (v) {
153
- this.i.a3 = ensureBool(v);
154
+ this.i.a7 = ensureBool(v);
154
155
  },
155
156
  enumerable: false,
156
157
  configurable: true
@@ -160,10 +161,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
160
161
  * Gets if the content of the cell is dirty.
161
162
  */
162
163
  get: function () {
163
- return this.i.a1;
164
+ return this.i.a5;
164
165
  },
165
166
  set: function (v) {
166
- this.i.a1 = ensureBool(v);
167
+ this.i.a5 = ensureBool(v);
167
168
  },
168
169
  enumerable: false,
169
170
  configurable: true
@@ -173,10 +174,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
173
174
  * Gets if the layer of the cell is dirty.
174
175
  */
175
176
  get: function () {
176
- return this.i.bh;
177
+ return this.i.bl;
177
178
  },
178
179
  set: function (v) {
179
- this.i.bh = ensureBool(v);
180
+ this.i.bl = ensureBool(v);
180
181
  },
181
182
  enumerable: false,
182
183
  configurable: true
@@ -186,10 +187,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
186
187
  * Gets if the layer of the cell is dirty.
187
188
  */
188
189
  get: function () {
189
- return this.i.bp;
190
+ return this.i.bt;
190
191
  },
191
192
  set: function (v) {
192
- this.i.bp = ensureBool(v);
193
+ this.i.bt = ensureBool(v);
193
194
  },
194
195
  enumerable: false,
195
196
  configurable: true
@@ -199,10 +200,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
199
200
  * Gets if the data of the cell is dirty.
200
201
  */
201
202
  get: function () {
202
- return this.i.a5;
203
+ return this.i.a9;
203
204
  },
204
205
  set: function (v) {
205
- this.i.a5 = ensureBool(v);
206
+ this.i.a9 = ensureBool(v);
206
207
  },
207
208
  enumerable: false,
208
209
  configurable: true
@@ -212,10 +213,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
212
213
  * Gets if placeholder content is needed when virtualized.
213
214
  */
214
215
  get: function () {
215
- return this.i.bi;
216
+ return this.i.bm;
216
217
  },
217
218
  set: function (v) {
218
- this.i.bi = ensureBool(v);
219
+ this.i.bm = ensureBool(v);
219
220
  },
220
221
  enumerable: false,
221
222
  configurable: true
@@ -238,10 +239,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
238
239
  * Gets or sets whether the cell is hit test visible.
239
240
  */
240
241
  get: function () {
241
- return this.i.bd;
242
+ return this.i.bh;
242
243
  },
243
244
  set: function (v) {
244
- this.i.bd = ensureBool(v);
245
+ this.i.bh = ensureBool(v);
245
246
  },
246
247
  enumerable: false,
247
248
  configurable: true
@@ -251,10 +252,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
251
252
  * Gets if this cell belongs to a row that has been marked as pinned.
252
253
  */
253
254
  get: function () {
254
- return this.i.bk;
255
+ return this.i.bo;
255
256
  },
256
257
  set: function (v) {
257
- this.i.bk = ensureBool(v);
258
+ this.i.bo = ensureBool(v);
258
259
  },
259
260
  enumerable: false,
260
261
  configurable: true
@@ -264,10 +265,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
264
265
  * Gets if this cell belongs to a row that will stick to the top of the grid.
265
266
  */
266
267
  get: function () {
267
- return this.i.bl;
268
+ return this.i.bp;
268
269
  },
269
270
  set: function (v) {
270
- this.i.bl = ensureBool(v);
271
+ this.i.bp = ensureBool(v);
271
272
  },
272
273
  enumerable: false,
273
274
  configurable: true
@@ -277,10 +278,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
277
278
  * Gets if this cell is the last row that can stick to the top of the grid.
278
279
  */
279
280
  get: function () {
280
- return this.i.bg;
281
+ return this.i.bk;
281
282
  },
282
283
  set: function (v) {
283
- this.i.bg = ensureBool(v);
284
+ this.i.bk = ensureBool(v);
284
285
  },
285
286
  enumerable: false,
286
287
  configurable: true
@@ -290,10 +291,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
290
291
  * Gets if this cell is in the filter row.
291
292
  */
292
293
  get: function () {
293
- return this.i.bb;
294
+ return this.i.bf;
294
295
  },
295
296
  set: function (v) {
296
- this.i.bb = ensureBool(v);
297
+ this.i.bf = ensureBool(v);
297
298
  },
298
299
  enumerable: false,
299
300
  configurable: true
@@ -303,20 +304,20 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
303
304
  * Gets the indent level of the cell.
304
305
  */
305
306
  get: function () {
306
- return this.i.f0;
307
+ return this.i.gc;
307
308
  },
308
309
  set: function (v) {
309
- this.i.f0 = +v;
310
+ this.i.gc = +v;
310
311
  },
311
312
  enumerable: false,
312
313
  configurable: true
313
314
  });
314
315
  Object.defineProperty(IgxCellInfo.prototype, "rowItem", {
315
316
  get: function () {
316
- return this.i.ho;
317
+ return this.i.ic;
317
318
  },
318
319
  set: function (v) {
319
- this.i.ho = v;
320
+ this.i.ic = v;
320
321
  },
321
322
  enumerable: false,
322
323
  configurable: true
@@ -326,10 +327,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
326
327
  * Gets the X position of the cell within the content.
327
328
  */
328
329
  get: function () {
329
- return this.i.cu;
330
+ return this.i.c6;
330
331
  },
331
332
  set: function (v) {
332
- this.i.cu = +v;
333
+ this.i.c6 = +v;
333
334
  },
334
335
  enumerable: false,
335
336
  configurable: true
@@ -339,10 +340,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
339
340
  * Gets the Y position of the cell within the content.
340
341
  */
341
342
  get: function () {
342
- return this.i.cv;
343
+ return this.i.c7;
343
344
  },
344
345
  set: function (v) {
345
- this.i.cv = +v;
346
+ this.i.c7 = +v;
346
347
  },
347
348
  enumerable: false,
348
349
  configurable: true
@@ -352,10 +353,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
352
353
  * Gets the pixel snapped X position of the cell within the content.
353
354
  */
354
355
  get: function () {
355
- return this.i.g0;
356
+ return this.i.hc;
356
357
  },
357
358
  set: function (v) {
358
- this.i.g0 = +v;
359
+ this.i.hc = +v;
359
360
  },
360
361
  enumerable: false,
361
362
  configurable: true
@@ -365,10 +366,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
365
366
  * Gets the snapped Y position of the cell within the content.
366
367
  */
367
368
  get: function () {
368
- return this.i.g2;
369
+ return this.i.he;
369
370
  },
370
371
  set: function (v) {
371
- this.i.g2 = +v;
372
+ this.i.he = +v;
372
373
  },
373
374
  enumerable: false,
374
375
  configurable: true
@@ -378,10 +379,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
378
379
  * Gets or sets the opacity for cells that have unsaved edits.
379
380
  */
380
381
  get: function () {
381
- return this.i.ck;
382
+ return this.i.cs;
382
383
  },
383
384
  set: function (v) {
384
- this.i.ck = +v;
385
+ this.i.cs = +v;
385
386
  },
386
387
  enumerable: false,
387
388
  configurable: true
@@ -391,10 +392,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
391
392
  * Gets or sets the opacity of the content of the cell.
392
393
  */
393
394
  get: function () {
394
- return this.i.cj;
395
+ return this.i.cr;
395
396
  },
396
397
  set: function (v) {
397
- this.i.cj = +v;
398
+ this.i.cr = +v;
398
399
  },
399
400
  enumerable: false,
400
401
  configurable: true
@@ -404,10 +405,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
404
405
  * Gets the actual content opacity of the cell.
405
406
  */
406
407
  get: function () {
407
- return this.i.cg;
408
+ return this.i.co;
408
409
  },
409
410
  set: function (v) {
410
- this.i.cg = +v;
411
+ this.i.co = +v;
411
412
  },
412
413
  enumerable: false,
413
414
  configurable: true
@@ -417,10 +418,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
417
418
  * Gets or sets the opacity of the cell.
418
419
  */
419
420
  get: function () {
420
- return this.i.co;
421
+ return this.i.cw;
421
422
  },
422
423
  set: function (v) {
423
- this.i.co = +v;
424
+ this.i.cw = +v;
424
425
  },
425
426
  enumerable: false,
426
427
  configurable: true
@@ -430,10 +431,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
430
431
  * Gets the actual opacity of the cell.
431
432
  */
432
433
  get: function () {
433
- return this.i.ch;
434
+ return this.i.cp;
434
435
  },
435
436
  set: function (v) {
436
- this.i.ch = +v;
437
+ this.i.cp = +v;
437
438
  },
438
439
  enumerable: false,
439
440
  configurable: true
@@ -443,10 +444,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
443
444
  * Gets the height of the cell.
444
445
  */
445
446
  get: function () {
446
- return this.i.fu;
447
+ return this.i.f6;
447
448
  },
448
449
  set: function (v) {
449
- this.i.fu = +v;
450
+ this.i.f6 = +v;
450
451
  },
451
452
  enumerable: false,
452
453
  configurable: true
@@ -456,10 +457,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
456
457
  * Gets the width of the cell.
457
458
  */
458
459
  get: function () {
459
- return this.i.he;
460
+ return this.i.h2;
460
461
  },
461
462
  set: function (v) {
462
- this.i.he = +v;
463
+ this.i.h2 = +v;
463
464
  },
464
465
  enumerable: false,
465
466
  configurable: true
@@ -469,10 +470,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
469
470
  * Gets if the cell is selected.
470
471
  */
471
472
  get: function () {
472
- return this.i.bn;
473
+ return this.i.br;
473
474
  },
474
475
  set: function (v) {
475
- this.i.bn = ensureBool(v);
476
+ this.i.br = ensureBool(v);
476
477
  },
477
478
  enumerable: false,
478
479
  configurable: true
@@ -482,10 +483,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
482
483
  * Gets the amount that the cell is selected. This is a value between 0 and 1.
483
484
  */
484
485
  get: function () {
485
- return this.i.cq;
486
+ return this.i.cy;
486
487
  },
487
488
  set: function (v) {
488
- this.i.cq = +v;
489
+ this.i.cy = +v;
489
490
  },
490
491
  enumerable: false,
491
492
  configurable: true
@@ -495,10 +496,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
495
496
  * Gets the amount that the cell is activated. This is a value between 0 and 1.
496
497
  */
497
498
  get: function () {
498
- return this.i.cf;
499
+ return this.i.cn;
499
500
  },
500
501
  set: function (v) {
501
- this.i.cf = +v;
502
+ this.i.cn = +v;
502
503
  },
503
504
  enumerable: false,
504
505
  configurable: true
@@ -508,10 +509,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
508
509
  * Gets the amount that the cell is hovered. This is a value between 0 and 1.
509
510
  */
510
511
  get: function () {
511
- return this.i.cl;
512
+ return this.i.ct;
512
513
  },
513
514
  set: function (v) {
514
- this.i.cl = +v;
515
+ this.i.ct = +v;
515
516
  },
516
517
  enumerable: false,
517
518
  configurable: true
@@ -521,10 +522,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
521
522
  * Gets whether the cell is hoverable or not.
522
523
  */
523
524
  get: function () {
524
- return this.i.be;
525
+ return this.i.bi;
525
526
  },
526
527
  set: function (v) {
527
- this.i.be = ensureBool(v);
528
+ this.i.bi = ensureBool(v);
528
529
  },
529
530
  enumerable: false,
530
531
  configurable: true
@@ -560,10 +561,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
560
561
  * Gets or sets the background color of the cell.
561
562
  */
562
563
  get: function () {
563
- return brushToString(this.i.l1);
564
+ return brushToString(this.i.nb);
564
565
  },
565
566
  set: function (v) {
566
- this.i.l1 = stringToBrush(v);
567
+ this.i.nb = stringToBrush(v);
567
568
  },
568
569
  enumerable: false,
569
570
  configurable: true
@@ -573,10 +574,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
573
574
  * Gets or sets the border color of the cell.
574
575
  */
575
576
  get: function () {
576
- return brushToString(this.i.l4);
577
+ return brushToString(this.i.ne);
577
578
  },
578
579
  set: function (v) {
579
- this.i.l4 = stringToBrush(v);
580
+ this.i.ne = stringToBrush(v);
580
581
  },
581
582
  enumerable: false,
582
583
  configurable: true
@@ -586,10 +587,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
586
587
  * Gets the actual background color of the cell
587
588
  */
588
589
  get: function () {
589
- return brushToString(this.i.ly);
590
+ return brushToString(this.i.m8);
590
591
  },
591
592
  set: function (v) {
592
- this.i.ly = stringToBrush(v);
593
+ this.i.m8 = stringToBrush(v);
593
594
  },
594
595
  enumerable: false,
595
596
  configurable: true
@@ -599,10 +600,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
599
600
  * Gets the actual background color of the cell
600
601
  */
601
602
  get: function () {
602
- return brushToString(this.i.lz);
603
+ return brushToString(this.i.m9);
603
604
  },
604
605
  set: function (v) {
605
- this.i.lz = stringToBrush(v);
606
+ this.i.m9 = stringToBrush(v);
606
607
  },
607
608
  enumerable: false,
608
609
  configurable: true
@@ -612,10 +613,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
612
613
  * Gets the actual background color of the cell
613
614
  */
614
615
  get: function () {
615
- return brushToString(this.i.lx);
616
+ return brushToString(this.i.m7);
616
617
  },
617
618
  set: function (v) {
618
- this.i.lx = stringToBrush(v);
619
+ this.i.m7 = stringToBrush(v);
619
620
  },
620
621
  enumerable: false,
621
622
  configurable: true
@@ -625,10 +626,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
625
626
  * Gets or sets the error border color of the cell.
626
627
  */
627
628
  get: function () {
628
- return brushToString(this.i.l6);
629
+ return brushToString(this.i.ng);
629
630
  },
630
631
  set: function (v) {
631
- this.i.l6 = stringToBrush(v);
632
+ this.i.ng = stringToBrush(v);
632
633
  },
633
634
  enumerable: false,
634
635
  configurable: true
@@ -638,10 +639,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
638
639
  * Gets or sets the selected background color of the cell.
639
640
  */
640
641
  get: function () {
641
- return brushToString(this.i.md);
642
+ return brushToString(this.i.nn);
642
643
  },
643
644
  set: function (v) {
644
- this.i.md = stringToBrush(v);
645
+ this.i.nn = stringToBrush(v);
645
646
  },
646
647
  enumerable: false,
647
648
  configurable: true
@@ -651,10 +652,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
651
652
  * Gets or sets the hover background color of the cell.
652
653
  */
653
654
  get: function () {
654
- return brushToString(this.i.l9);
655
+ return brushToString(this.i.nj);
655
656
  },
656
657
  set: function (v) {
657
- this.i.l9 = stringToBrush(v);
658
+ this.i.nj = stringToBrush(v);
658
659
  },
659
660
  enumerable: false,
660
661
  configurable: true
@@ -664,10 +665,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
664
665
  * Gets or sets the hover text color of the cell.
665
666
  */
666
667
  get: function () {
667
- return brushToString(this.i.ma);
668
+ return brushToString(this.i.nk);
668
669
  },
669
670
  set: function (v) {
670
- this.i.ma = stringToBrush(v);
671
+ this.i.nk = stringToBrush(v);
671
672
  },
672
673
  enumerable: false,
673
674
  configurable: true
@@ -677,10 +678,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
677
678
  * Gets or sets the color for the sort indicator icon.
678
679
  */
679
680
  get: function () {
680
- return brushToString(this.i.me);
681
+ return brushToString(this.i.no);
681
682
  },
682
683
  set: function (v) {
683
- this.i.me = stringToBrush(v);
684
+ this.i.no = stringToBrush(v);
684
685
  },
685
686
  enumerable: false,
686
687
  configurable: true
@@ -690,10 +691,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
690
691
  * Gets or sets the background color for the cell when it is stuck to the top of the grid as a pinned row.
691
692
  */
692
693
  get: function () {
693
- return brushToString(this.i.mf);
694
+ return brushToString(this.i.np);
694
695
  },
695
696
  set: function (v) {
696
- this.i.mf = stringToBrush(v);
697
+ this.i.np = stringToBrush(v);
697
698
  },
698
699
  enumerable: false,
699
700
  configurable: true
@@ -703,10 +704,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
703
704
  * Gets or sets the background color for the cell that has been marked as pinned.
704
705
  */
705
706
  get: function () {
706
- return brushToString(this.i.mc);
707
+ return brushToString(this.i.nm);
707
708
  },
708
709
  set: function (v) {
709
- this.i.mc = stringToBrush(v);
710
+ this.i.nm = stringToBrush(v);
710
711
  },
711
712
  enumerable: false,
712
713
  configurable: true
@@ -716,10 +717,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
716
717
  * Gets or sets the color for the last row in the sticky row area.
717
718
  */
718
719
  get: function () {
719
- return brushToString(this.i.mb);
720
+ return brushToString(this.i.nl);
720
721
  },
721
722
  set: function (v) {
722
- this.i.mb = stringToBrush(v);
723
+ this.i.nl = stringToBrush(v);
723
724
  },
724
725
  enumerable: false,
725
726
  configurable: true
@@ -729,10 +730,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
729
730
  * Gets or sets the background color for filter row.
730
731
  */
731
732
  get: function () {
732
- return brushToString(this.i.l7);
733
+ return brushToString(this.i.nh);
733
734
  },
734
735
  set: function (v) {
735
- this.i.l7 = stringToBrush(v);
736
+ this.i.nh = stringToBrush(v);
736
737
  },
737
738
  enumerable: false,
738
739
  configurable: true
@@ -742,10 +743,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
742
743
  * Gets or sets the color to use for displaying text.
743
744
  */
744
745
  get: function () {
745
- return this.i.cp;
746
+ return this.i.cx;
746
747
  },
747
748
  set: function (v) {
748
- this.i.cp = +v;
749
+ this.i.cx = +v;
749
750
  },
750
751
  enumerable: false,
751
752
  configurable: true
@@ -755,10 +756,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
755
756
  * Gets or sets the original value for the cell, before processing.
756
757
  */
757
758
  get: function () {
758
- return this.i.hn;
759
+ return this.i.ib;
759
760
  },
760
761
  set: function (v) {
761
- this.i.hn = v;
762
+ this.i.ib = v;
762
763
  },
763
764
  enumerable: false,
764
765
  configurable: true
@@ -768,10 +769,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
768
769
  * Gets or sets the text value, if any, which was rendered by a text cell.
769
770
  */
770
771
  get: function () {
771
- return this.i.j3;
772
+ return this.i.ku;
772
773
  },
773
774
  set: function (v) {
774
- this.i.j3 = v;
775
+ this.i.ku = v;
775
776
  },
776
777
  enumerable: false,
777
778
  configurable: true
@@ -781,10 +782,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
781
782
  * If set, this text will be used when rendering the cell value.
782
783
  */
783
784
  get: function () {
784
- return this.i.ki;
785
+ return this.i.lp;
785
786
  },
786
787
  set: function (v) {
787
- this.i.ki = v;
788
+ this.i.lp = v;
788
789
  },
789
790
  enumerable: false,
790
791
  configurable: true
@@ -794,10 +795,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
794
795
  * Gets or sets the color of the text for the cell, if any.
795
796
  */
796
797
  get: function () {
797
- return brushToString(this.i.mg);
798
+ return brushToString(this.i.nt);
798
799
  },
799
800
  set: function (v) {
800
- this.i.mg = stringToBrush(v);
801
+ this.i.nt = stringToBrush(v);
801
802
  },
802
803
  enumerable: false,
803
804
  configurable: true
@@ -807,10 +808,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
807
808
  * Gets the actual color of the text for the cell, if any.
808
809
  */
809
810
  get: function () {
810
- return brushToString(this.i.l0);
811
+ return brushToString(this.i.na);
811
812
  },
812
813
  set: function (v) {
813
- this.i.l0 = stringToBrush(v);
814
+ this.i.na = stringToBrush(v);
814
815
  },
815
816
  enumerable: false,
816
817
  configurable: true
@@ -820,40 +821,198 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
820
821
  * Gets or sets the text color for cells in deleted rows.
821
822
  */
822
823
  get: function () {
823
- return brushToString(this.i.l5);
824
+ return brushToString(this.i.nf);
824
825
  },
825
826
  set: function (v) {
826
- this.i.l5 = stringToBrush(v);
827
+ this.i.nf = stringToBrush(v);
827
828
  },
828
829
  enumerable: false,
829
830
  configurable: true
830
831
  });
831
832
  Object.defineProperty(IgxCellInfo.prototype, "font", {
832
833
  get: function () {
833
- if (this.i.ag == null) {
834
+ if (this.i.aj == null) {
834
835
  return null;
835
836
  }
836
- return this.i.ag.fontString;
837
+ return this.i.aj.fontString;
837
838
  },
838
839
  set: function (v) {
839
840
  var fi = new FontInfo();
840
841
  fi.fontString = v;
841
- this.i.ag = fi;
842
+ this.i.aj = fi;
842
843
  },
843
844
  enumerable: false,
844
845
  configurable: true
845
846
  });
846
847
  Object.defineProperty(IgxCellInfo.prototype, "actualFont", {
847
848
  get: function () {
848
- if (this.i.ae == null) {
849
+ if (this.i.ah == null) {
849
850
  return null;
850
851
  }
851
- return this.i.ae.fontString;
852
+ return this.i.ah.fontString;
852
853
  },
853
854
  set: function (v) {
854
855
  var fi = new FontInfo();
855
856
  fi.fontString = v;
856
- this.i.ae = fi;
857
+ this.i.ah = fi;
858
+ },
859
+ enumerable: false,
860
+ configurable: true
861
+ });
862
+ Object.defineProperty(IgxCellInfo.prototype, "suffixText", {
863
+ /**
864
+ * Gets or sets the text to display in the suffix area of the cell.
865
+ */
866
+ get: function () {
867
+ return this.i.lg;
868
+ },
869
+ set: function (v) {
870
+ this.i.lg = v;
871
+ },
872
+ enumerable: false,
873
+ configurable: true
874
+ });
875
+ Object.defineProperty(IgxCellInfo.prototype, "suffixTextColor", {
876
+ /**
877
+ * Gets or sets the color of the suffix text for the cell, if any.
878
+ */
879
+ get: function () {
880
+ return brushToString(this.i.ns);
881
+ },
882
+ set: function (v) {
883
+ this.i.ns = stringToBrush(v);
884
+ },
885
+ enumerable: false,
886
+ configurable: true
887
+ });
888
+ Object.defineProperty(IgxCellInfo.prototype, "suffixTextFont", {
889
+ get: function () {
890
+ if (this.i.ak == null) {
891
+ return null;
892
+ }
893
+ return this.i.ak.fontString;
894
+ },
895
+ set: function (v) {
896
+ var fi = new FontInfo();
897
+ fi.fontString = v;
898
+ this.i.ak = fi;
899
+ },
900
+ enumerable: false,
901
+ configurable: true
902
+ });
903
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconName", {
904
+ /**
905
+ * Gets or sets the icon to display in the suffix area of the cell.
906
+ */
907
+ get: function () {
908
+ return this.i.k9;
909
+ },
910
+ set: function (v) {
911
+ this.i.k9 = v;
912
+ },
913
+ enumerable: false,
914
+ configurable: true
915
+ });
916
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconCollectionName", {
917
+ /**
918
+ * Gets or sets the icon to display in the suffix area of the cell.
919
+ */
920
+ get: function () {
921
+ return this.i.k6;
922
+ },
923
+ set: function (v) {
924
+ this.i.k6 = v;
925
+ },
926
+ enumerable: false,
927
+ configurable: true
928
+ });
929
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconStroke", {
930
+ /**
931
+ * Gets or sets the stroke color of the suffix icon.
932
+ */
933
+ get: function () {
934
+ return brushToString(this.i.nr);
935
+ },
936
+ set: function (v) {
937
+ this.i.nr = stringToBrush(v);
938
+ },
939
+ enumerable: false,
940
+ configurable: true
941
+ });
942
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconFill", {
943
+ /**
944
+ * Gets or sets the fill color of the suffix icon.
945
+ */
946
+ get: function () {
947
+ return brushToString(this.i.nq);
948
+ },
949
+ set: function (v) {
950
+ this.i.nq = stringToBrush(v);
951
+ },
952
+ enumerable: false,
953
+ configurable: true
954
+ });
955
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconViewBoxLeft", {
956
+ /**
957
+ * Gets or sets the suffix icon's viewbox x coordinate.
958
+ */
959
+ get: function () {
960
+ return this.i.c0;
961
+ },
962
+ set: function (v) {
963
+ this.i.c0 = +v;
964
+ },
965
+ enumerable: false,
966
+ configurable: true
967
+ });
968
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconViewBoxTop", {
969
+ /**
970
+ * Gets or sets the suffix icon's viewbox y coordinate.
971
+ */
972
+ get: function () {
973
+ return this.i.c1;
974
+ },
975
+ set: function (v) {
976
+ this.i.c1 = +v;
977
+ },
978
+ enumerable: false,
979
+ configurable: true
980
+ });
981
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconViewBoxWidth", {
982
+ /**
983
+ * Gets or sets the suffix icon's viewbox width.
984
+ */
985
+ get: function () {
986
+ return this.i.c2;
987
+ },
988
+ set: function (v) {
989
+ this.i.c2 = +v;
990
+ },
991
+ enumerable: false,
992
+ configurable: true
993
+ });
994
+ Object.defineProperty(IgxCellInfo.prototype, "suffixIconViewBoxHeight", {
995
+ /**
996
+ * Gets or sets the suffix icon's viewbox height.
997
+ */
998
+ get: function () {
999
+ return this.i.cz;
1000
+ },
1001
+ set: function (v) {
1002
+ this.i.cz = +v;
1003
+ },
1004
+ enumerable: false,
1005
+ configurable: true
1006
+ });
1007
+ Object.defineProperty(IgxCellInfo.prototype, "textDecoration", {
1008
+ /**
1009
+ * Gets or sets the text decorations to apply to the cell text.
1010
+ */
1011
+ get: function () {
1012
+ return this.i.aa;
1013
+ },
1014
+ set: function (v) {
1015
+ this.i.aa = ensureEnum(TextCellDecoration_$type, v);
857
1016
  },
858
1017
  enumerable: false,
859
1018
  configurable: true
@@ -863,10 +1022,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
863
1022
  * Gets or sets the line break mode to use if text is present in the cell.
864
1023
  */
865
1024
  get: function () {
866
- return this.i.aa;
1025
+ return this.i.ac;
867
1026
  },
868
1027
  set: function (v) {
869
- this.i.aa = ensureEnum(TextCellLineBreakMode_$type, v);
1028
+ this.i.ac = ensureEnum(TextCellLineBreakMode_$type, v);
870
1029
  },
871
1030
  enumerable: false,
872
1031
  configurable: true
@@ -876,10 +1035,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
876
1035
  * Gets or sets the virtualization percentage value. This is between 0 an 1, and indicates how virtual the content is at present.
877
1036
  */
878
1037
  get: function () {
879
- return this.i.ct;
1038
+ return this.i.c5;
880
1039
  },
881
1040
  set: function (v) {
882
- this.i.ct = +v;
1041
+ this.i.c5 = +v;
883
1042
  },
884
1043
  enumerable: false,
885
1044
  configurable: true
@@ -889,10 +1048,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
889
1048
  * Gets or sets the left padding to use for the content.
890
1049
  */
891
1050
  get: function () {
892
- return this.i.gm;
1051
+ return this.i.gy;
893
1052
  },
894
1053
  set: function (v) {
895
- this.i.gm = +v;
1054
+ this.i.gy = +v;
896
1055
  },
897
1056
  enumerable: false,
898
1057
  configurable: true
@@ -902,10 +1061,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
902
1061
  * Gets or sets the top padding to use for the content.
903
1062
  */
904
1063
  get: function () {
905
- return this.i.gq;
1064
+ return this.i.g2;
906
1065
  },
907
1066
  set: function (v) {
908
- this.i.gq = +v;
1067
+ this.i.g2 = +v;
909
1068
  },
910
1069
  enumerable: false,
911
1070
  configurable: true
@@ -915,10 +1074,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
915
1074
  * Gets or sets the right padding to use for the content.
916
1075
  */
917
1076
  get: function () {
918
- return this.i.go;
1077
+ return this.i.g0;
919
1078
  },
920
1079
  set: function (v) {
921
- this.i.go = +v;
1080
+ this.i.g0 = +v;
922
1081
  },
923
1082
  enumerable: false,
924
1083
  configurable: true
@@ -928,10 +1087,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
928
1087
  * Gets or sets the bottom padding to use for the content.
929
1088
  */
930
1089
  get: function () {
931
- return this.i.gk;
1090
+ return this.i.gw;
932
1091
  },
933
1092
  set: function (v) {
934
- this.i.gk = +v;
1093
+ this.i.gw = +v;
935
1094
  },
936
1095
  enumerable: false,
937
1096
  configurable: true
@@ -941,10 +1100,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
941
1100
  * Gets or sets the left padding to use for the content.
942
1101
  */
943
1102
  get: function () {
944
- return this.i.el;
1103
+ return this.i.ex;
945
1104
  },
946
1105
  set: function (v) {
947
- this.i.el = +v;
1106
+ this.i.ex = +v;
948
1107
  },
949
1108
  enumerable: false,
950
1109
  configurable: true
@@ -954,10 +1113,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
954
1113
  * Gets or sets the top padding to use for the content.
955
1114
  */
956
1115
  get: function () {
957
- return this.i.ep;
1116
+ return this.i.e1;
958
1117
  },
959
1118
  set: function (v) {
960
- this.i.ep = +v;
1119
+ this.i.e1 = +v;
961
1120
  },
962
1121
  enumerable: false,
963
1122
  configurable: true
@@ -967,10 +1126,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
967
1126
  * Gets or sets the right padding to use for the content.
968
1127
  */
969
1128
  get: function () {
970
- return this.i.en;
1129
+ return this.i.ez;
971
1130
  },
972
1131
  set: function (v) {
973
- this.i.en = +v;
1132
+ this.i.ez = +v;
974
1133
  },
975
1134
  enumerable: false,
976
1135
  configurable: true
@@ -980,10 +1139,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
980
1139
  * Gets or sets the bottom padding to use for the content.
981
1140
  */
982
1141
  get: function () {
983
- return this.i.ej;
1142
+ return this.i.ev;
984
1143
  },
985
1144
  set: function (v) {
986
- this.i.ej = +v;
1145
+ this.i.ev = +v;
987
1146
  },
988
1147
  enumerable: false,
989
1148
  configurable: true
@@ -993,10 +1152,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
993
1152
  * Gets or sets the left border to use for the content.
994
1153
  */
995
1154
  get: function () {
996
- return this.i.e2;
1155
+ return this.i.fe;
997
1156
  },
998
1157
  set: function (v) {
999
- this.i.e2 = +v;
1158
+ this.i.fe = +v;
1000
1159
  },
1001
1160
  enumerable: false,
1002
1161
  configurable: true
@@ -1006,10 +1165,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1006
1165
  * Gets or sets the top border to use for the content.
1007
1166
  */
1008
1167
  get: function () {
1009
- return this.i.e7;
1168
+ return this.i.fj;
1010
1169
  },
1011
1170
  set: function (v) {
1012
- this.i.e7 = +v;
1171
+ this.i.fj = +v;
1013
1172
  },
1014
1173
  enumerable: false,
1015
1174
  configurable: true
@@ -1019,10 +1178,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1019
1178
  * Gets or sets the right border to use for the content.
1020
1179
  */
1021
1180
  get: function () {
1022
- return this.i.e5;
1181
+ return this.i.fh;
1023
1182
  },
1024
1183
  set: function (v) {
1025
- this.i.e5 = +v;
1184
+ this.i.fh = +v;
1026
1185
  },
1027
1186
  enumerable: false,
1028
1187
  configurable: true
@@ -1032,10 +1191,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1032
1191
  * Gets or sets the bottom border to use for the content.
1033
1192
  */
1034
1193
  get: function () {
1035
- return this.i.e0;
1194
+ return this.i.fc;
1036
1195
  },
1037
1196
  set: function (v) {
1038
- this.i.e0 = +v;
1197
+ this.i.fc = +v;
1039
1198
  },
1040
1199
  enumerable: false,
1041
1200
  configurable: true
@@ -1045,10 +1204,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1045
1204
  * Gets or sets the left activation border to use for the content.
1046
1205
  */
1047
1206
  get: function () {
1048
- return this.i.dy;
1207
+ return this.i.ea;
1049
1208
  },
1050
1209
  set: function (v) {
1051
- this.i.dy = +v;
1210
+ this.i.ea = +v;
1052
1211
  },
1053
1212
  enumerable: false,
1054
1213
  configurable: true
@@ -1058,10 +1217,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1058
1217
  * Gets or sets the top activation border to use for the content.
1059
1218
  */
1060
1219
  get: function () {
1061
- return this.i.d3;
1220
+ return this.i.ef;
1062
1221
  },
1063
1222
  set: function (v) {
1064
- this.i.d3 = +v;
1223
+ this.i.ef = +v;
1065
1224
  },
1066
1225
  enumerable: false,
1067
1226
  configurable: true
@@ -1071,10 +1230,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1071
1230
  * Gets or sets the right activation border to use for the content.
1072
1231
  */
1073
1232
  get: function () {
1074
- return this.i.d1;
1233
+ return this.i.ed;
1075
1234
  },
1076
1235
  set: function (v) {
1077
- this.i.d1 = +v;
1236
+ this.i.ed = +v;
1078
1237
  },
1079
1238
  enumerable: false,
1080
1239
  configurable: true
@@ -1084,10 +1243,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1084
1243
  * Gets or sets the bottom activation border to use for the content.
1085
1244
  */
1086
1245
  get: function () {
1087
- return this.i.dw;
1246
+ return this.i.d8;
1088
1247
  },
1089
1248
  set: function (v) {
1090
- this.i.dw = +v;
1249
+ this.i.d8 = +v;
1091
1250
  },
1092
1251
  enumerable: false,
1093
1252
  configurable: true
@@ -1097,10 +1256,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1097
1256
  * Gets or sets the left error border to use for the content.
1098
1257
  */
1099
1258
  get: function () {
1100
- return this.i.fk;
1259
+ return this.i.fw;
1101
1260
  },
1102
1261
  set: function (v) {
1103
- this.i.fk = +v;
1262
+ this.i.fw = +v;
1104
1263
  },
1105
1264
  enumerable: false,
1106
1265
  configurable: true
@@ -1110,10 +1269,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1110
1269
  * Gets or sets the top error border to use for the content.
1111
1270
  */
1112
1271
  get: function () {
1113
- return this.i.fp;
1272
+ return this.i.f1;
1114
1273
  },
1115
1274
  set: function (v) {
1116
- this.i.fp = +v;
1275
+ this.i.f1 = +v;
1117
1276
  },
1118
1277
  enumerable: false,
1119
1278
  configurable: true
@@ -1123,10 +1282,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1123
1282
  * Gets or sets the right error border to use for the content.
1124
1283
  */
1125
1284
  get: function () {
1126
- return this.i.fn;
1285
+ return this.i.fz;
1127
1286
  },
1128
1287
  set: function (v) {
1129
- this.i.fn = +v;
1288
+ this.i.fz = +v;
1130
1289
  },
1131
1290
  enumerable: false,
1132
1291
  configurable: true
@@ -1136,10 +1295,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1136
1295
  * Gets or sets the bottom error border to use for the content.
1137
1296
  */
1138
1297
  get: function () {
1139
- return this.i.fi;
1298
+ return this.i.fu;
1140
1299
  },
1141
1300
  set: function (v) {
1142
- this.i.fi = +v;
1301
+ this.i.fu = +v;
1143
1302
  },
1144
1303
  enumerable: false,
1145
1304
  configurable: true
@@ -1149,10 +1308,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1149
1308
  * Gets or sets the actual left border to use for the content.
1150
1309
  */
1151
1310
  get: function () {
1152
- return this.i.d9;
1311
+ return this.i.el;
1153
1312
  },
1154
1313
  set: function (v) {
1155
- this.i.d9 = +v;
1314
+ this.i.el = +v;
1156
1315
  },
1157
1316
  enumerable: false,
1158
1317
  configurable: true
@@ -1162,10 +1321,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1162
1321
  * Gets or sets the actual top border to use for the content.
1163
1322
  */
1164
1323
  get: function () {
1165
- return this.i.ee;
1324
+ return this.i.eq;
1166
1325
  },
1167
1326
  set: function (v) {
1168
- this.i.ee = +v;
1327
+ this.i.eq = +v;
1169
1328
  },
1170
1329
  enumerable: false,
1171
1330
  configurable: true
@@ -1175,10 +1334,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1175
1334
  * Gets or sets the actual right border to use for the content.
1176
1335
  */
1177
1336
  get: function () {
1178
- return this.i.ec;
1337
+ return this.i.eo;
1179
1338
  },
1180
1339
  set: function (v) {
1181
- this.i.ec = +v;
1340
+ this.i.eo = +v;
1182
1341
  },
1183
1342
  enumerable: false,
1184
1343
  configurable: true
@@ -1188,10 +1347,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1188
1347
  * Gets or sets the actual bottom border to use for the content.
1189
1348
  */
1190
1349
  get: function () {
1191
- return this.i.d7;
1350
+ return this.i.ej;
1192
1351
  },
1193
1352
  set: function (v) {
1194
- this.i.d7 = +v;
1353
+ this.i.ej = +v;
1195
1354
  },
1196
1355
  enumerable: false,
1197
1356
  configurable: true
@@ -1214,10 +1373,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1214
1373
  * Gets the expansion state of the cell.
1215
1374
  */
1216
1375
  get: function () {
1217
- return this.i.ba;
1376
+ return this.i.be;
1218
1377
  },
1219
1378
  set: function (v) {
1220
- this.i.ba = ensureBool(v);
1379
+ this.i.be = ensureBool(v);
1221
1380
  },
1222
1381
  enumerable: false,
1223
1382
  configurable: true
@@ -1227,10 +1386,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1227
1386
  * Gets if the cell needs to display an expansion indicator.
1228
1387
  */
1229
1388
  get: function () {
1230
- return this.i.a2;
1389
+ return this.i.a6;
1231
1390
  },
1232
1391
  set: function (v) {
1233
- this.i.a2 = ensureBool(v);
1392
+ this.i.a6 = ensureBool(v);
1234
1393
  },
1235
1394
  enumerable: false,
1236
1395
  configurable: true
@@ -1250,15 +1409,15 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1250
1409
  });
1251
1410
  Object.defineProperty(IgxCellInfo.prototype, "editFont", {
1252
1411
  get: function () {
1253
- if (this.i.af == null) {
1412
+ if (this.i.ai == null) {
1254
1413
  return null;
1255
1414
  }
1256
- return this.i.af.fontString;
1415
+ return this.i.ai.fontString;
1257
1416
  },
1258
1417
  set: function (v) {
1259
1418
  var fi = new FontInfo();
1260
1419
  fi.fontString = v;
1261
- this.i.af = fi;
1420
+ this.i.ai = fi;
1262
1421
  },
1263
1422
  enumerable: false,
1264
1423
  configurable: true
@@ -1268,10 +1427,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1268
1427
  * Gets whether the cell has been edited.
1269
1428
  */
1270
1429
  get: function () {
1271
- return this.i.a9;
1430
+ return this.i.bd;
1272
1431
  },
1273
1432
  set: function (v) {
1274
- this.i.a9 = ensureBool(v);
1433
+ this.i.bd = ensureBool(v);
1275
1434
  },
1276
1435
  enumerable: false,
1277
1436
  configurable: true
@@ -1281,10 +1440,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1281
1440
  * Gets whether the cell is part of a deleted row.
1282
1441
  */
1283
1442
  get: function () {
1284
- return this.i.a6;
1443
+ return this.i.ba;
1285
1444
  },
1286
1445
  set: function (v) {
1287
- this.i.a6 = ensureBool(v);
1446
+ this.i.ba = ensureBool(v);
1288
1447
  },
1289
1448
  enumerable: false,
1290
1449
  configurable: true
@@ -1294,10 +1453,10 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1294
1453
  * Gets or sets the error message for the cell.
1295
1454
  */
1296
1455
  get: function () {
1297
- return this.i.iv;
1456
+ return this.i.jm;
1298
1457
  },
1299
1458
  set: function (v) {
1300
- this.i.iv = v;
1459
+ this.i.jm = v;
1301
1460
  },
1302
1461
  enumerable: false,
1303
1462
  configurable: true
@@ -1307,20 +1466,20 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1307
1466
  * Gets whether the cell is in edit mode.
1308
1467
  */
1309
1468
  get: function () {
1310
- return this.i.bf;
1469
+ return this.i.bj;
1311
1470
  },
1312
1471
  set: function (v) {
1313
- this.i.bf = ensureBool(v);
1472
+ this.i.bj = ensureBool(v);
1314
1473
  },
1315
1474
  enumerable: false,
1316
1475
  configurable: true
1317
1476
  });
1318
1477
  Object.defineProperty(IgxCellInfo.prototype, "editID", {
1319
1478
  get: function () {
1320
- return this.i.fg;
1479
+ return this.i.fs;
1321
1480
  },
1322
1481
  set: function (v) {
1323
- this.i.fg = +v;
1482
+ this.i.fs = +v;
1324
1483
  },
1325
1484
  enumerable: false,
1326
1485
  configurable: true
@@ -1334,7 +1493,7 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1334
1493
  return null;
1335
1494
  };
1336
1495
  IgxCellInfo.prototype.isCustomFieldDirty = function (propertyName) {
1337
- var iv = this.i.a4(propertyName);
1496
+ var iv = this.i.a8(propertyName);
1338
1497
  return (iv);
1339
1498
  };
1340
1499
  /**
@@ -1343,7 +1502,7 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1343
1502
  * @param propertyId * The property id to check.
1344
1503
  */
1345
1504
  IgxCellInfo.prototype.isDirtyById = function (propertyId_) {
1346
- var iv = this.i.a8(propertyId_);
1505
+ var iv = this.i.bc(propertyId_);
1347
1506
  return (iv);
1348
1507
  };
1349
1508
  /**
@@ -1352,11 +1511,11 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1352
1511
  * @param propertyName * The property name to check.
1353
1512
  */
1354
1513
  IgxCellInfo.prototype.isDirty = function (propertyName) {
1355
- var iv = this.i.a7(propertyName);
1514
+ var iv = this.i.bb(propertyName);
1356
1515
  return (iv);
1357
1516
  };
1358
1517
  IgxCellInfo.prototype.setNamedValue = function (valueName, value) {
1359
- this.i.lc(valueName, value);
1518
+ this.i.mj(valueName, value);
1360
1519
  };
1361
1520
  /**
1362
1521
  * Returns if there is a named value stored for the cell.
@@ -1364,7 +1523,7 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1364
1523
  * @param valueName * The name of the value to check.
1365
1524
  */
1366
1525
  IgxCellInfo.prototype.hasNamedValue = function (valueName) {
1367
- var iv = this.i.az(valueName);
1526
+ var iv = this.i.a3(valueName);
1368
1527
  return (iv);
1369
1528
  };
1370
1529
  /**
@@ -1373,7 +1532,7 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1373
1532
  * @param valueName * The name of the value to remove.
1374
1533
  */
1375
1534
  IgxCellInfo.prototype.removeNamedValue = function (valueName) {
1376
- this.i.k8(valueName);
1535
+ this.i.mf(valueName);
1377
1536
  };
1378
1537
  /**
1379
1538
  * Gets a named value from the cell.
@@ -1381,7 +1540,7 @@ var IgxCellInfo = /** @class */ /*@__PURE__*/ (function () {
1381
1540
  * @param valueName * The name of the value to get.
1382
1541
  */
1383
1542
  IgxCellInfo.prototype.getNamedValue = function (valueName) {
1384
- var iv = this.i.hl(valueName);
1543
+ var iv = this.i.h9(valueName);
1385
1544
  return (iv);
1386
1545
  };
1387
1546
  return IgxCellInfo;