igniteui-webcomponents-data-grids 7.1.0-alpha.3 → 7.1.0-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 (204) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7956 -7387
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +38 -35
  16. package/esm2015/lib/CheckboxListBridge.js +8 -0
  17. package/esm2015/lib/CheckboxListView_combined.js +369 -335
  18. package/esm2015/lib/ColumnChooserView_combined.js +11 -11
  19. package/esm2015/lib/ColumnFilterCondition_combined.js +5218 -4964
  20. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  21. package/esm2015/lib/ColumnPinningView_combined.js +5 -5
  22. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  23. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  24. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  25. package/esm2015/lib/DataGridLocaleEn.js +8 -0
  26. package/esm2015/lib/DataGridScrollerKeyboardListener.js +16 -16
  27. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  28. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  29. package/esm2015/lib/EditorCell.js +292 -292
  30. package/esm2015/lib/EditorCellPresenter.js +26 -26
  31. package/esm2015/lib/FilterCell.js +269 -269
  32. package/esm2015/lib/FilterCellPresenter.js +15 -15
  33. package/esm2015/lib/GridCellBase.js +167 -150
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +5 -5
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  37. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  38. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  39. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  40. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +188 -173
  43. package/esm2015/lib/GridIconRepository.js +4 -4
  44. package/esm2015/lib/ISummaryChooserView_combined.js +5 -5
  45. package/esm2015/lib/ImageCell.js +57 -57
  46. package/esm2015/lib/ImageCellPresenter.js +15 -15
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +5 -5
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  51. package/esm2015/lib/SectionHeaderCell.js +20 -20
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SummaryCell.js +45 -45
  54. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  55. package/esm2015/lib/TemplateCell.js +15 -15
  56. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  57. package/esm2015/lib/TemplateHeader.js +2 -2
  58. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  59. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  60. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  61. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  62. package/esm2015/lib/TextCell.js +29 -29
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +184 -184
  65. package/esm2015/lib/TextHeaderCellPresenter.js +55 -52
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +90 -81
  68. package/esm2015/lib/igc-checkbox-list-component.js +68 -58
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +238 -214
  71. package/esm2015/lib/igc-data-grid-component.js +31 -0
  72. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +44 -34
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  76. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  77. package/esm2015/lib/igc-image-cell-info.js +6 -6
  78. package/esm2015/lib/igc-image-column-component.js +12 -12
  79. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  80. package/esm2015/lib/igc-numeric-column-component.js +38 -38
  81. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  82. package/esm2015/lib/igc-section-header-component.js +32 -12
  83. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  84. package/esm2015/lib/igc-template-cell-info.js +2 -2
  85. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  86. package/esm2015/lib/igc-text-cell-info.js +2 -2
  87. package/esm2015/lib/igc-text-column-component.js +9 -9
  88. package/esm2015/lib/igc-text-header-cell-info.js +44 -38
  89. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  90. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  91. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  92. package/esm5/lib/CanvasGridCellBase.js +2 -2
  93. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  94. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  95. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  96. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  97. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  99. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  101. package/esm5/lib/CellPresenterBase.js +38 -35
  102. package/esm5/lib/CheckboxListBridge.js +8 -0
  103. package/esm5/lib/CheckboxListView_combined.js +359 -321
  104. package/esm5/lib/ColumnChooserView_combined.js +11 -11
  105. package/esm5/lib/ColumnFilterCondition_combined.js +5068 -4770
  106. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  107. package/esm5/lib/ColumnPinningView_combined.js +5 -5
  108. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  109. package/esm5/lib/ContentCellModelHelper.js +10 -10
  110. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  111. package/esm5/lib/DataGridLocaleEn.js +8 -0
  112. package/esm5/lib/DataGridScrollerKeyboardListener.js +16 -16
  113. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  114. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  115. package/esm5/lib/EditorCell.js +277 -277
  116. package/esm5/lib/EditorCellPresenter.js +26 -26
  117. package/esm5/lib/FilterCell.js +259 -259
  118. package/esm5/lib/FilterCellPresenter.js +15 -15
  119. package/esm5/lib/GridCellBase.js +164 -143
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +5 -5
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  124. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  125. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  127. package/esm5/lib/GridExternalWrapper.js +6 -6
  128. package/esm5/lib/GridFilterDialogView_combined.js +183 -164
  129. package/esm5/lib/GridIconRepository.js +4 -4
  130. package/esm5/lib/ISummaryChooserView_combined.js +5 -5
  131. package/esm5/lib/ImageCell.js +57 -57
  132. package/esm5/lib/ImageCellPresenter.js +15 -15
  133. package/esm5/lib/MultiColumnComboBoxView_combined.js +5 -5
  134. package/esm5/lib/NumericCell.js +8 -8
  135. package/esm5/lib/NumericCellPresenter.js +9 -9
  136. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  137. package/esm5/lib/SectionHeaderCell.js +20 -20
  138. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  139. package/esm5/lib/SummaryCell.js +45 -45
  140. package/esm5/lib/SummaryCellPresenter.js +10 -10
  141. package/esm5/lib/TemplateCell.js +15 -15
  142. package/esm5/lib/TemplateCellPresenter.js +3 -3
  143. package/esm5/lib/TemplateHeader.js +2 -2
  144. package/esm5/lib/TemplateHeaderCell.js +5 -5
  145. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  146. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  147. package/esm5/lib/TemplateSectionHeader.js +1 -1
  148. package/esm5/lib/TextCell.js +29 -29
  149. package/esm5/lib/TextCellPresenter.js +10 -10
  150. package/esm5/lib/TextHeaderCell.js +182 -182
  151. package/esm5/lib/TextHeaderCellPresenter.js +55 -52
  152. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  153. package/esm5/lib/igc-cell-info.js +94 -81
  154. package/esm5/lib/igc-checkbox-list-component.js +72 -58
  155. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  156. package/esm5/lib/igc-data-grid-column-component.js +250 -214
  157. package/esm5/lib/igc-data-grid-component.js +43 -0
  158. package/esm5/lib/igc-data-grid-filter-dialog-component.js +48 -34
  159. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  160. package/esm5/lib/igc-date-time-column-component.js +23 -23
  161. package/esm5/lib/igc-editor-cell-info.js +23 -23
  162. package/esm5/lib/igc-filter-cell-info.js +26 -26
  163. package/esm5/lib/igc-image-cell-info.js +6 -6
  164. package/esm5/lib/igc-image-column-component.js +12 -12
  165. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  166. package/esm5/lib/igc-numeric-column-component.js +38 -38
  167. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  168. package/esm5/lib/igc-section-header-component.js +40 -12
  169. package/esm5/lib/igc-summary-cell-info.js +9 -9
  170. package/esm5/lib/igc-template-cell-info.js +2 -2
  171. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  172. package/esm5/lib/igc-text-cell-info.js +2 -2
  173. package/esm5/lib/igc-text-column-component.js +9 -9
  174. package/esm5/lib/igc-text-header-cell-info.js +48 -38
  175. package/fesm2015/igniteui-webcomponents-data-grids.js +8096 -7635
  176. package/fesm5/igniteui-webcomponents-data-grids.js +7956 -7387
  177. package/lib/CheckboxListExternal.d.ts +2 -0
  178. package/lib/CheckboxListView_combined.d.ts +98 -94
  179. package/lib/ColumnFilterCondition_combined.d.ts +1308 -1267
  180. package/lib/DataGridLocaleEn.d.ts +8 -0
  181. package/lib/EditorCell.d.ts +67 -67
  182. package/lib/FilterCell.d.ts +55 -55
  183. package/lib/GridCellBase.d.ts +64 -61
  184. package/lib/GridFilterDialogView_combined.d.ts +52 -49
  185. package/lib/ImageCell.d.ts +17 -17
  186. package/lib/NumericCell.d.ts +2 -2
  187. package/lib/SectionHeaderCell.d.ts +4 -4
  188. package/lib/SummaryCell.d.ts +10 -10
  189. package/lib/TemplateCell.d.ts +5 -5
  190. package/lib/TemplateHeaderCell.d.ts +2 -2
  191. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  192. package/lib/TemplateSectionHeader.d.ts +1 -1
  193. package/lib/TextCell.d.ts +7 -7
  194. package/lib/TextHeaderCell.d.ts +30 -30
  195. package/lib/VerticalSeparatorCell.d.ts +8 -8
  196. package/lib/igc-cell-info.d.ts +5 -0
  197. package/lib/igc-checkbox-list-component.d.ts +5 -0
  198. package/lib/igc-data-grid-column-component.d.ts +9 -0
  199. package/lib/igc-data-grid-component.d.ts +16 -0
  200. package/lib/igc-data-grid-filter-dialog-component.d.ts +5 -0
  201. package/lib/igc-numeric-cell-info.d.ts +5 -0
  202. package/lib/igc-section-header-component.d.ts +10 -0
  203. package/lib/igc-text-header-cell-info.d.ts +2 -0
  204. package/package.json +4 -4
@@ -80,157 +80,157 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
80
80
  * Gets or sets the amount of left padding to use for the cell content for this column.
81
81
  */
82
82
  get paddingLeft() {
83
- return this.i.lk;
83
+ return this.i.lm;
84
84
  }
85
85
  set paddingLeft(v) {
86
- this.i.lk = +v;
87
- this._a("paddingLeft", this.i.lk);
86
+ this.i.lm = +v;
87
+ this._a("paddingLeft", this.i.lm);
88
88
  }
89
89
  /**
90
90
  * Gets or sets the amount of top padding to use for the cell content for this column.
91
91
  */
92
92
  get paddingTop() {
93
- return this.i.lm;
93
+ return this.i.lo;
94
94
  }
95
95
  set paddingTop(v) {
96
- this.i.lm = +v;
97
- this._a("paddingTop", this.i.lm);
96
+ this.i.lo = +v;
97
+ this._a("paddingTop", this.i.lo);
98
98
  }
99
99
  /**
100
100
  * Gets or sets the amount of right padding to use for the cell content of this column.
101
101
  */
102
102
  get paddingRight() {
103
- return this.i.ll;
103
+ return this.i.ln;
104
104
  }
105
105
  set paddingRight(v) {
106
- this.i.ll = +v;
107
- this._a("paddingRight", this.i.ll);
106
+ this.i.ln = +v;
107
+ this._a("paddingRight", this.i.ln);
108
108
  }
109
109
  /**
110
110
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
111
111
  */
112
112
  get paddingBottom() {
113
- return this.i.lj;
113
+ return this.i.ll;
114
114
  }
115
115
  set paddingBottom(v) {
116
- this.i.lj = +v;
117
- this._a("paddingBottom", this.i.lj);
116
+ this.i.ll = +v;
117
+ this._a("paddingBottom", this.i.ll);
118
118
  }
119
119
  /**
120
120
  * Gets or sets an unique name of the Column
121
121
  */
122
122
  get name() {
123
- return this.i.n8;
123
+ return this.i.od;
124
124
  }
125
125
  set name(v) {
126
- this.i.n8 = v;
126
+ this.i.od = v;
127
127
  }
128
128
  /**
129
129
  * Gets or sets the key used for the column binding
130
130
  */
131
131
  get field() {
132
- return this.i.nh;
132
+ return this.i.nl;
133
133
  }
134
134
  set field(v) {
135
- this.i.nh = v;
135
+ this.i.nl = v;
136
136
  }
137
137
  /**
138
138
  * Gets or sets the text displayed in the header of the column
139
139
  */
140
140
  get headerText() {
141
- return this.i.no;
141
+ return this.i.ns;
142
142
  }
143
143
  set headerText(v) {
144
- this.i.no = v;
144
+ this.i.ns = v;
145
145
  }
146
146
  /**
147
147
  * Gets the actual text displayed in the header of the column
148
148
  */
149
149
  get actualHeaderText() {
150
- return this.i.mj;
150
+ return this.i.mm;
151
151
  }
152
152
  set actualHeaderText(v) {
153
- this.i.mj = v;
153
+ this.i.mm = v;
154
154
  }
155
155
  /**
156
156
  * Gets or sets the background color to use for the cells when they are selected
157
157
  */
158
158
  get selectedBackground() {
159
- return brushToString(this.i.rz);
159
+ return brushToString(this.i.r9);
160
160
  }
161
161
  set selectedBackground(v) {
162
- this.i.rz = stringToBrush(v);
163
- this._a("selectedBackground", brushToString(this.i.rz));
162
+ this.i.r9 = stringToBrush(v);
163
+ this._a("selectedBackground", brushToString(this.i.r9));
164
164
  }
165
165
  /**
166
166
  * Gets the actual background color that is used for the cells when they are selected
167
167
  */
168
168
  get actualSelectedBackground() {
169
- return brushToString(this.i.ri);
169
+ return brushToString(this.i.rr);
170
170
  }
171
171
  set actualSelectedBackground(v) {
172
- this.i.ri = stringToBrush(v);
173
- this._a("actualSelectedBackground", brushToString(this.i.ri));
172
+ this.i.rr = stringToBrush(v);
173
+ this._a("actualSelectedBackground", brushToString(this.i.rr));
174
174
  }
175
175
  /**
176
176
  * Gets or sets the text color to use for the cells when they are selected
177
177
  */
178
178
  get selectedTextColor() {
179
- return brushToString(this.i.r0);
179
+ return brushToString(this.i.sa);
180
180
  }
181
181
  set selectedTextColor(v) {
182
- this.i.r0 = stringToBrush(v);
183
- this._a("selectedTextColor", brushToString(this.i.r0));
182
+ this.i.sa = stringToBrush(v);
183
+ this._a("selectedTextColor", brushToString(this.i.sa));
184
184
  }
185
185
  /**
186
186
  * Gets the actual text color that is used for the cells when they are selected
187
187
  */
188
188
  get actualSelectedTextColor() {
189
- return brushToString(this.i.rj);
189
+ return brushToString(this.i.rs);
190
190
  }
191
191
  set actualSelectedTextColor(v) {
192
- this.i.rj = stringToBrush(v);
193
- this._a("actualSelectedTextColor", brushToString(this.i.rj));
192
+ this.i.rs = stringToBrush(v);
193
+ this._a("actualSelectedTextColor", brushToString(this.i.rs));
194
194
  }
195
195
  /**
196
196
  * Gets or sets the background color to use for the cells when the row is hovered.
197
197
  */
198
198
  get rowHoverBackground() {
199
- return brushToString(this.i.rx);
199
+ return brushToString(this.i.r7);
200
200
  }
201
201
  set rowHoverBackground(v) {
202
- this.i.rx = stringToBrush(v);
203
- this._a("rowHoverBackground", brushToString(this.i.rx));
202
+ this.i.r7 = stringToBrush(v);
203
+ this._a("rowHoverBackground", brushToString(this.i.r7));
204
204
  }
205
205
  /**
206
206
  * Gets the actual background color that is used for the cells when they are hovered.
207
207
  */
208
208
  get actualHoverBackground() {
209
- return brushToString(this.i.rg);
209
+ return brushToString(this.i.rp);
210
210
  }
211
211
  set actualHoverBackground(v) {
212
- this.i.rg = stringToBrush(v);
213
- this._a("actualHoverBackground", brushToString(this.i.rg));
212
+ this.i.rp = stringToBrush(v);
213
+ this._a("actualHoverBackground", brushToString(this.i.rp));
214
214
  }
215
215
  /**
216
216
  * Gets or sets the text color to use for the cells when the row is hovered.
217
217
  */
218
218
  get rowHoverTextColor() {
219
- return brushToString(this.i.ry);
219
+ return brushToString(this.i.r8);
220
220
  }
221
221
  set rowHoverTextColor(v) {
222
- this.i.ry = stringToBrush(v);
223
- this._a("rowHoverTextColor", brushToString(this.i.ry));
222
+ this.i.r8 = stringToBrush(v);
223
+ this._a("rowHoverTextColor", brushToString(this.i.r8));
224
224
  }
225
225
  /**
226
226
  * Gets the actual text color that is used for the cells when they are hovered.
227
227
  */
228
228
  get actualRowHoverTextColor() {
229
- return brushToString(this.i.rh);
229
+ return brushToString(this.i.rq);
230
230
  }
231
231
  set actualRowHoverTextColor(v) {
232
- this.i.rh = stringToBrush(v);
233
- this._a("actualRowHoverTextColor", brushToString(this.i.rh));
232
+ this.i.rq = stringToBrush(v);
233
+ this._a("actualRowHoverTextColor", brushToString(this.i.rq));
234
234
  }
235
235
  /**
236
236
  * Gets or sets the animation settings to use for this column.
@@ -292,31 +292,31 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
292
292
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
293
293
  */
294
294
  get minWidth() {
295
- return this.i.kr;
295
+ return this.i.kt;
296
296
  }
297
297
  set minWidth(v) {
298
- this.i.kr = +v;
299
- this._a("minWidth", this.i.kr);
298
+ this.i.kt = +v;
299
+ this._a("minWidth", this.i.kt);
300
300
  }
301
301
  /**
302
302
  * Gets whether this column was projected from markup/templates and is constrained.
303
303
  */
304
304
  get isFromMarkup() {
305
- return this.i.j9;
305
+ return this.i.ka;
306
306
  }
307
307
  set isFromMarkup(v) {
308
- this.i.j9 = ensureBool(v);
309
- this._a("isFromMarkup", this.i.j9);
308
+ this.i.ka = ensureBool(v);
309
+ this._a("isFromMarkup", this.i.ka);
310
310
  }
311
311
  /**
312
312
  * Gets whether this column was auto generated.
313
313
  */
314
314
  get isAutoGenerated() {
315
- return this.i.j3;
315
+ return this.i.j4;
316
316
  }
317
317
  set isAutoGenerated(v) {
318
- this.i.j3 = ensureBool(v);
319
- this._a("isAutoGenerated", this.i.j3);
318
+ this.i.j4 = ensureBool(v);
319
+ this._a("isAutoGenerated", this.i.j4);
320
320
  }
321
321
  /**
322
322
  * Gets or sets a filter to apply on the values of this column
@@ -362,41 +362,51 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
362
362
  * Gets or sets whether filtering is enabled for this column.
363
363
  */
364
364
  get isFilteringEnabled() {
365
- return this.i.j8;
365
+ return this.i.j9;
366
366
  }
367
367
  set isFilteringEnabled(v) {
368
- this.i.j8 = ensureBool(v);
369
- this._a("isFilteringEnabled", this.i.j8);
368
+ this.i.j9 = ensureBool(v);
369
+ this._a("isFilteringEnabled", this.i.j9);
370
370
  }
371
371
  /**
372
372
  * Gets or sets whether resizing is enabled for this column.
373
373
  */
374
374
  get isResizingEnabled() {
375
- return this.i.kb;
375
+ return this.i.kc;
376
376
  }
377
377
  set isResizingEnabled(v) {
378
- this.i.kb = ensureBool(v);
379
- this._a("isResizingEnabled", this.i.kb);
378
+ this.i.kc = ensureBool(v);
379
+ this._a("isResizingEnabled", this.i.kc);
380
+ }
381
+ /**
382
+ * Gets or sets whether sorting is enabled for this column from the UI.
383
+ */
384
+ get isSortingEnabled() {
385
+ return this.i.kd;
386
+ }
387
+ set isSortingEnabled(v) {
388
+ this.i.kd = ensureBool(v);
389
+ this._a("isSortingEnabled", this.i.kd);
380
390
  }
381
391
  /**
382
392
  * Gets or sets whether or not a column is hidden from the grid
383
393
  */
384
394
  get isHidden() {
385
- return this.i.ka;
395
+ return this.i.kb;
386
396
  }
387
397
  set isHidden(v) {
388
- this.i.ka = ensureBool(v);
389
- this._a("isHidden", this.i.ka);
398
+ this.i.kb = ensureBool(v);
399
+ this._a("isHidden", this.i.kb);
390
400
  }
391
401
  /**
392
402
  * Gets or sets if a column should be removed from the grid when it is fully hidden
393
403
  */
394
404
  get shouldRemoveWhenHidden() {
395
- return this.i.ke;
405
+ return this.i.kg;
396
406
  }
397
407
  set shouldRemoveWhenHidden(v) {
398
- this.i.ke = ensureBool(v);
399
- this._a("shouldRemoveWhenHidden", this.i.ke);
408
+ this.i.kg = ensureBool(v);
409
+ this._a("shouldRemoveWhenHidden", this.i.kg);
400
410
  }
401
411
  /**
402
412
  * Gets the current sort direction (None, Ascending, Descending) for this column.
@@ -442,21 +452,21 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
442
452
  * Gets the actual column options icon color for this column.
443
453
  */
444
454
  get actualColumnOptionsIconColor() {
445
- return brushToString(this.i.rb);
455
+ return brushToString(this.i.rj);
446
456
  }
447
457
  set actualColumnOptionsIconColor(v) {
448
- this.i.rb = stringToBrush(v);
449
- this._a("actualColumnOptionsIconColor", brushToString(this.i.rb));
458
+ this.i.rj = stringToBrush(v);
459
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.rj));
450
460
  }
451
461
  /**
452
462
  * Gets or sets the column options icon color for this column.
453
463
  */
454
464
  get columnOptionsIconColor() {
455
- return brushToString(this.i.rq);
465
+ return brushToString(this.i.rz);
456
466
  }
457
467
  set columnOptionsIconColor(v) {
458
- this.i.rq = stringToBrush(v);
459
- this._a("columnOptionsIconColor", brushToString(this.i.rq));
468
+ this.i.rz = stringToBrush(v);
469
+ this._a("columnOptionsIconColor", brushToString(this.i.rz));
460
470
  }
461
471
  /**
462
472
  * Gets or sets how the column option icon will behave in the column header.
@@ -482,102 +492,102 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
482
492
  * Gets the actual state of the column options for this column.
483
493
  */
484
494
  get actualIsColumnOptionsEnabled() {
485
- return this.i.jw;
495
+ return this.i.jx;
486
496
  }
487
497
  set actualIsColumnOptionsEnabled(v) {
488
- this.i.jw = ensureBool(v);
489
- this._a("actualIsColumnOptionsEnabled", this.i.jw);
498
+ this.i.jx = ensureBool(v);
499
+ this._a("actualIsColumnOptionsEnabled", this.i.jx);
490
500
  }
491
501
  /**
492
502
  * Gets or sets the preferred state of the column options for this column. If the feature is disabled at the grid level
493
503
  * then it will be disabled for the column regardless of what this is set to.
494
504
  */
495
505
  get isColumnOptionsEnabled() {
496
- return this.i.j4;
506
+ return this.i.j5;
497
507
  }
498
508
  set isColumnOptionsEnabled(v) {
499
- this.i.j4 = ensureBool(v);
500
- this._a("isColumnOptionsEnabled", this.i.j4);
509
+ this.i.j5 = ensureBool(v);
510
+ this._a("isColumnOptionsEnabled", this.i.j5);
501
511
  }
502
512
  /**
503
513
  * Gets the actual state of summaries menu in the column options for this column.
504
514
  */
505
515
  get actualIsColumnOptionsSummariesEnabled() {
506
- return this.i.jy;
516
+ return this.i.jz;
507
517
  }
508
518
  set actualIsColumnOptionsSummariesEnabled(v) {
509
- this.i.jy = ensureBool(v);
510
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jy);
519
+ this.i.jz = ensureBool(v);
520
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.jz);
511
521
  }
512
522
  /**
513
523
  * Gets or sets whether to show the summaries option in the column options menu for this column.
514
524
  */
515
525
  get isColumnOptionsSummariesEnabled() {
516
- return this.i.j6;
526
+ return this.i.j7;
517
527
  }
518
528
  set isColumnOptionsSummariesEnabled(v) {
519
- this.i.j6 = ensureBool(v);
520
- this._a("isColumnOptionsSummariesEnabled", this.i.j6);
529
+ this.i.j7 = ensureBool(v);
530
+ this._a("isColumnOptionsSummariesEnabled", this.i.j7);
521
531
  }
522
532
  /**
523
533
  * Gets the actual state of grouping menu in the column options for this column.
524
534
  */
525
535
  get actualIsColumnOptionsGroupingEnabled() {
526
- return this.i.jx;
536
+ return this.i.jy;
527
537
  }
528
538
  set actualIsColumnOptionsGroupingEnabled(v) {
529
- this.i.jx = ensureBool(v);
530
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jx);
539
+ this.i.jy = ensureBool(v);
540
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jy);
531
541
  }
532
542
  /**
533
543
  * Gets or sets whether to show the grouping option in the column options menu for this column.
534
544
  */
535
545
  get isColumnOptionsGroupingEnabled() {
536
- return this.i.j5;
546
+ return this.i.j6;
537
547
  }
538
548
  set isColumnOptionsGroupingEnabled(v) {
539
- this.i.j5 = ensureBool(v);
540
- this._a("isColumnOptionsGroupingEnabled", this.i.j5);
549
+ this.i.j6 = ensureBool(v);
550
+ this._a("isColumnOptionsGroupingEnabled", this.i.j6);
541
551
  }
542
552
  /**
543
553
  * Gets or sets the column options dropdown background color.
544
554
  */
545
555
  get actualColumnOptionsBackground() {
546
- return brushToString(this.i.q6);
556
+ return brushToString(this.i.re);
547
557
  }
548
558
  set actualColumnOptionsBackground(v) {
549
- this.i.q6 = stringToBrush(v);
550
- this._a("actualColumnOptionsBackground", brushToString(this.i.q6));
559
+ this.i.re = stringToBrush(v);
560
+ this._a("actualColumnOptionsBackground", brushToString(this.i.re));
551
561
  }
552
562
  /**
553
563
  * Gets or sets the column options dropdown background color.
554
564
  */
555
565
  get columnOptionsBackground() {
556
- return brushToString(this.i.rl);
566
+ return brushToString(this.i.ru);
557
567
  }
558
568
  set columnOptionsBackground(v) {
559
- this.i.rl = stringToBrush(v);
560
- this._a("columnOptionsBackground", brushToString(this.i.rl));
569
+ this.i.ru = stringToBrush(v);
570
+ this._a("columnOptionsBackground", brushToString(this.i.ru));
561
571
  }
562
572
  /**
563
573
  * Gets or sets the text color for text inside the column options menu.
564
574
  */
565
575
  get actualColumnOptionsTextColor() {
566
- return brushToString(this.i.rd);
576
+ return brushToString(this.i.rl);
567
577
  }
568
578
  set actualColumnOptionsTextColor(v) {
569
- this.i.rd = stringToBrush(v);
570
- this._a("actualColumnOptionsTextColor", brushToString(this.i.rd));
579
+ this.i.rl = stringToBrush(v);
580
+ this._a("actualColumnOptionsTextColor", brushToString(this.i.rl));
571
581
  }
572
582
  /**
573
583
  * Gets or sets the text color for text inside the column options menu.
574
584
  */
575
585
  get columnOptionsTextColor() {
576
- return brushToString(this.i.rs);
586
+ return brushToString(this.i.r1);
577
587
  }
578
588
  set columnOptionsTextColor(v) {
579
- this.i.rs = stringToBrush(v);
580
- this._a("columnOptionsTextColor", brushToString(this.i.rs));
589
+ this.i.r1 = stringToBrush(v);
590
+ this._a("columnOptionsTextColor", brushToString(this.i.r1));
581
591
  }
582
592
  /**
583
593
  * Gets or sets the font settings for text inside the column options menu.
@@ -595,106 +605,120 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
595
605
  this._a("columnOptionsTextStyle", this.i.jd != null ? this.i.jd.fontString : "");
596
606
  }
597
607
  get actualColumnOptionsHoverBackgroundColor() {
598
- return brushToString(this.i.ra);
608
+ return brushToString(this.i.ri);
599
609
  }
600
610
  set actualColumnOptionsHoverBackgroundColor(v) {
601
- this.i.ra = stringToBrush(v);
602
- this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.ra));
611
+ this.i.ri = stringToBrush(v);
612
+ this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.ri));
603
613
  }
604
614
  get columnOptionsHoverBackgroundColor() {
605
- return brushToString(this.i.rp);
615
+ return brushToString(this.i.ry);
606
616
  }
607
617
  set columnOptionsHoverBackgroundColor(v) {
608
- this.i.rp = stringToBrush(v);
609
- this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.rp));
618
+ this.i.ry = stringToBrush(v);
619
+ this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.ry));
610
620
  }
611
621
  get actualColumnOptionsToolTipBackgroundColor() {
612
- return brushToString(this.i.re);
622
+ return brushToString(this.i.rm);
613
623
  }
614
624
  set actualColumnOptionsToolTipBackgroundColor(v) {
615
- this.i.re = stringToBrush(v);
616
- this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.re));
625
+ this.i.rm = stringToBrush(v);
626
+ this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.rm));
617
627
  }
618
628
  get columnOptionsToolTipBackgroundColor() {
619
- return brushToString(this.i.rt);
629
+ return brushToString(this.i.r2);
620
630
  }
621
631
  set columnOptionsToolTipBackgroundColor(v) {
622
- this.i.rt = stringToBrush(v);
623
- this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.rt));
632
+ this.i.r2 = stringToBrush(v);
633
+ this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.r2));
634
+ }
635
+ get actualColumnOptionsToolTipTextColor() {
636
+ return brushToString(this.i.rn);
637
+ }
638
+ set actualColumnOptionsToolTipTextColor(v) {
639
+ this.i.rn = stringToBrush(v);
640
+ this._a("actualColumnOptionsToolTipTextColor", brushToString(this.i.rn));
641
+ }
642
+ get columnOptionsToolTipTextColor() {
643
+ return brushToString(this.i.r3);
644
+ }
645
+ set columnOptionsToolTipTextColor(v) {
646
+ this.i.r3 = stringToBrush(v);
647
+ this._a("columnOptionsToolTipTextColor", brushToString(this.i.r3));
624
648
  }
625
649
  get actualColumnOptionsHighlightColor() {
626
- return brushToString(this.i.q9);
650
+ return brushToString(this.i.rh);
627
651
  }
628
652
  set actualColumnOptionsHighlightColor(v) {
629
- this.i.q9 = stringToBrush(v);
630
- this._a("actualColumnOptionsHighlightColor", brushToString(this.i.q9));
653
+ this.i.rh = stringToBrush(v);
654
+ this._a("actualColumnOptionsHighlightColor", brushToString(this.i.rh));
631
655
  }
632
656
  get columnOptionsHighlightColor() {
633
- return brushToString(this.i.ro);
657
+ return brushToString(this.i.rx);
634
658
  }
635
659
  set columnOptionsHighlightColor(v) {
636
- this.i.ro = stringToBrush(v);
637
- this._a("columnOptionsHighlightColor", brushToString(this.i.ro));
660
+ this.i.rx = stringToBrush(v);
661
+ this._a("columnOptionsHighlightColor", brushToString(this.i.rx));
638
662
  }
639
663
  /**
640
664
  * Gets or sets the color of separators inside the column options menu.
641
665
  */
642
666
  get actualColumnOptionsSeparatorColor() {
643
- return brushToString(this.i.rc);
667
+ return brushToString(this.i.rk);
644
668
  }
645
669
  set actualColumnOptionsSeparatorColor(v) {
646
- this.i.rc = stringToBrush(v);
647
- this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.rc));
670
+ this.i.rk = stringToBrush(v);
671
+ this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.rk));
648
672
  }
649
673
  /**
650
674
  * Gets or sets the color of separators inside the column options menu.
651
675
  */
652
676
  get columnOptionsSeparatorColor() {
653
- return brushToString(this.i.rr);
677
+ return brushToString(this.i.r0);
654
678
  }
655
679
  set columnOptionsSeparatorColor(v) {
656
- this.i.rr = stringToBrush(v);
657
- this._a("columnOptionsSeparatorColor", brushToString(this.i.rr));
680
+ this.i.r0 = stringToBrush(v);
681
+ this._a("columnOptionsSeparatorColor", brushToString(this.i.r0));
658
682
  }
659
683
  /**
660
684
  * Gets or sets the background color for group headers inside the column options menu.
661
685
  */
662
686
  get actualColumnOptionsGroupHeaderBackground() {
663
- return brushToString(this.i.q7);
687
+ return brushToString(this.i.rf);
664
688
  }
665
689
  set actualColumnOptionsGroupHeaderBackground(v) {
666
- this.i.q7 = stringToBrush(v);
667
- this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.q7));
690
+ this.i.rf = stringToBrush(v);
691
+ this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.rf));
668
692
  }
669
693
  /**
670
694
  * Gets or sets the background color for group headers inside the column options menu.
671
695
  */
672
696
  get columnOptionsGroupHeaderBackground() {
673
- return brushToString(this.i.rm);
697
+ return brushToString(this.i.rv);
674
698
  }
675
699
  set columnOptionsGroupHeaderBackground(v) {
676
- this.i.rm = stringToBrush(v);
677
- this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rm));
700
+ this.i.rv = stringToBrush(v);
701
+ this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rv));
678
702
  }
679
703
  /**
680
704
  * Gets the actual text color for group headers inside the column options menu.
681
705
  */
682
706
  get actualColumnOptionsGroupHeaderTextColor() {
683
- return brushToString(this.i.q8);
707
+ return brushToString(this.i.rg);
684
708
  }
685
709
  set actualColumnOptionsGroupHeaderTextColor(v) {
686
- this.i.q8 = stringToBrush(v);
687
- this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.q8));
710
+ this.i.rg = stringToBrush(v);
711
+ this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.rg));
688
712
  }
689
713
  /**
690
714
  * Gets or sets the text color for group headers inside the column options menu.
691
715
  */
692
716
  get columnOptionsGroupHeaderTextColor() {
693
- return brushToString(this.i.rn);
717
+ return brushToString(this.i.rw);
694
718
  }
695
719
  set columnOptionsGroupHeaderTextColor(v) {
696
- this.i.rn = stringToBrush(v);
697
- this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rn));
720
+ this.i.rw = stringToBrush(v);
721
+ this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rw));
698
722
  }
699
723
  get columnOptionsGroupHeaderTextStyle() {
700
724
  if (this.i.jc == null) {
@@ -709,82 +733,82 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
709
733
  this._a("columnOptionsGroupHeaderTextStyle", this.i.jc != null ? this.i.jc.fontString : "");
710
734
  }
711
735
  get actualColumnOptionsAccentColor() {
712
- return brushToString(this.i.q5);
736
+ return brushToString(this.i.rd);
713
737
  }
714
738
  set actualColumnOptionsAccentColor(v) {
715
- this.i.q5 = stringToBrush(v);
716
- this._a("actualColumnOptionsAccentColor", brushToString(this.i.q5));
739
+ this.i.rd = stringToBrush(v);
740
+ this._a("actualColumnOptionsAccentColor", brushToString(this.i.rd));
717
741
  }
718
742
  get columnOptionsAccentColor() {
719
- return brushToString(this.i.rk);
743
+ return brushToString(this.i.rt);
720
744
  }
721
745
  set columnOptionsAccentColor(v) {
722
- this.i.rk = stringToBrush(v);
723
- this._a("columnOptionsAccentColor", brushToString(this.i.rk));
746
+ this.i.rt = stringToBrush(v);
747
+ this._a("columnOptionsAccentColor", brushToString(this.i.rt));
724
748
  }
725
749
  get actualColumnOptionsRowHeight() {
726
- return this.i.la;
750
+ return this.i.lc;
727
751
  }
728
752
  set actualColumnOptionsRowHeight(v) {
729
- this.i.la = +v;
730
- this._a("actualColumnOptionsRowHeight", this.i.la);
753
+ this.i.lc = +v;
754
+ this._a("actualColumnOptionsRowHeight", this.i.lc);
731
755
  }
732
756
  get columnOptionsRowHeight() {
733
- return this.i.lb;
757
+ return this.i.ld;
734
758
  }
735
759
  set columnOptionsRowHeight(v) {
736
- this.i.lb = +v;
737
- this._a("columnOptionsRowHeight", this.i.lb);
760
+ this.i.ld = +v;
761
+ this._a("columnOptionsRowHeight", this.i.ld);
738
762
  }
739
763
  /**
740
764
  * Gets or sets if the column is editable.
741
765
  */
742
766
  get isEditable() {
743
- return this.i.j7;
767
+ return this.i.j8;
744
768
  }
745
769
  set isEditable(v) {
746
- this.i.j7 = ensureBool(v);
747
- this._a("isEditable", this.i.j7);
770
+ this.i.j8 = ensureBool(v);
771
+ this._a("isEditable", this.i.j8);
748
772
  }
749
773
  /**
750
774
  * Gets or sets the text color used for deleted rows.
751
775
  */
752
776
  get deletedTextColor() {
753
- return brushToString(this.i.ru);
777
+ return brushToString(this.i.r4);
754
778
  }
755
779
  set deletedTextColor(v) {
756
- this.i.ru = stringToBrush(v);
757
- this._a("deletedTextColor", brushToString(this.i.ru));
780
+ this.i.r4 = stringToBrush(v);
781
+ this._a("deletedTextColor", brushToString(this.i.r4));
758
782
  }
759
783
  /**
760
784
  * Gets the actual text color used for deleted rows.
761
785
  */
762
786
  get actualDeletedTextColor() {
763
- return brushToString(this.i.rf);
787
+ return brushToString(this.i.ro);
764
788
  }
765
789
  set actualDeletedTextColor(v) {
766
- this.i.rf = stringToBrush(v);
767
- this._a("actualDeletedTextColor", brushToString(this.i.rf));
790
+ this.i.ro = stringToBrush(v);
791
+ this._a("actualDeletedTextColor", brushToString(this.i.ro));
768
792
  }
769
793
  /**
770
794
  * Gets or sets the opacity to use for unsaved edited cell values.
771
795
  */
772
796
  get editOpacity() {
773
- return this.i.kq;
797
+ return this.i.ks;
774
798
  }
775
799
  set editOpacity(v) {
776
- this.i.kq = +v;
777
- this._a("editOpacity", this.i.kq);
800
+ this.i.ks = +v;
801
+ this._a("editOpacity", this.i.ks);
778
802
  }
779
803
  /**
780
804
  * Gets the actual opacity for unsaved edited cell values.
781
805
  */
782
806
  get actualEditOpacity() {
783
- return this.i.kp;
807
+ return this.i.kr;
784
808
  }
785
809
  set actualEditOpacity(v) {
786
- this.i.kp = +v;
787
- this._a("actualEditOpacity", this.i.kp);
810
+ this.i.kr = +v;
811
+ this._a("actualEditOpacity", this.i.kr);
788
812
  }
789
813
  /**
790
814
  * Gets or sets the font style to use for unsaved cell edits.
@@ -850,41 +874,41 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
850
874
  * Gets or sets the amount of left padding to use for the cell content for this column.
851
875
  */
852
876
  get mergedCellPaddingLeft() {
853
- return this.i.ld;
877
+ return this.i.lf;
854
878
  }
855
879
  set mergedCellPaddingLeft(v) {
856
- this.i.ld = +v;
857
- this._a("mergedCellPaddingLeft", this.i.ld);
880
+ this.i.lf = +v;
881
+ this._a("mergedCellPaddingLeft", this.i.lf);
858
882
  }
859
883
  /**
860
884
  * Gets or sets the amount of top padding to use for the cell content for this column.
861
885
  */
862
886
  get mergedCellPaddingTop() {
863
- return this.i.lf;
887
+ return this.i.lh;
864
888
  }
865
889
  set mergedCellPaddingTop(v) {
866
- this.i.lf = +v;
867
- this._a("mergedCellPaddingTop", this.i.lf);
890
+ this.i.lh = +v;
891
+ this._a("mergedCellPaddingTop", this.i.lh);
868
892
  }
869
893
  /**
870
894
  * Gets or sets the amount of right padding to use for the cell content of this column.
871
895
  */
872
896
  get mergedCellPaddingRight() {
873
- return this.i.le;
897
+ return this.i.lg;
874
898
  }
875
899
  set mergedCellPaddingRight(v) {
876
- this.i.le = +v;
877
- this._a("mergedCellPaddingRight", this.i.le);
900
+ this.i.lg = +v;
901
+ this._a("mergedCellPaddingRight", this.i.lg);
878
902
  }
879
903
  /**
880
904
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
881
905
  */
882
906
  get mergedCellPaddingBottom() {
883
- return this.i.lc;
907
+ return this.i.le;
884
908
  }
885
909
  set mergedCellPaddingBottom(v) {
886
- this.i.lc = +v;
887
- this._a("mergedCellPaddingBottom", this.i.lc);
910
+ this.i.le = +v;
911
+ this._a("mergedCellPaddingBottom", this.i.le);
888
912
  }
889
913
  /**
890
914
  * Gets or sets whether UI filters are case sensitive or not.
@@ -930,20 +954,20 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
930
954
  * Gets or sets the text to display in the suffix area of cells in this column.
931
955
  */
932
956
  get suffixText() {
933
- return this.i.ox;
957
+ return this.i.o2;
934
958
  }
935
959
  set suffixText(v) {
936
- this.i.ox = v;
960
+ this.i.o2 = v;
937
961
  }
938
962
  /**
939
963
  * Gets or sets the color of the text in the suffix area of the cells in this column.
940
964
  */
941
965
  get suffixTextColor() {
942
- return brushToString(this.i.r3);
966
+ return brushToString(this.i.sd);
943
967
  }
944
968
  set suffixTextColor(v) {
945
- this.i.r3 = stringToBrush(v);
946
- this._a("suffixTextColor", brushToString(this.i.r3));
969
+ this.i.sd = stringToBrush(v);
970
+ this._a("suffixTextColor", brushToString(this.i.sd));
947
971
  }
948
972
  /**
949
973
  * Gets or sets the font of the suffix text.
@@ -964,89 +988,89 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
964
988
  * Gets or sets the icon to use in the suffix area of the cells in this column.
965
989
  */
966
990
  get suffixIconName() {
967
- return this.i.op;
991
+ return this.i.ou;
968
992
  }
969
993
  set suffixIconName(v) {
970
- this.i.op = v;
994
+ this.i.ou = v;
971
995
  }
972
996
  /**
973
997
  * Gets or sets the icon to use in the suffix area of the cells in this column.
974
998
  */
975
999
  get suffixIconCollectionName() {
976
- return this.i.om;
1000
+ return this.i.or;
977
1001
  }
978
1002
  set suffixIconCollectionName(v) {
979
- this.i.om = v;
1003
+ this.i.or = v;
980
1004
  }
981
1005
  /**
982
1006
  * Gets or sets the stroke color of suffix icon.
983
1007
  */
984
1008
  get suffixIconStroke() {
985
- return brushToString(this.i.r2);
1009
+ return brushToString(this.i.sc);
986
1010
  }
987
1011
  set suffixIconStroke(v) {
988
- this.i.r2 = stringToBrush(v);
989
- this._a("suffixIconStroke", brushToString(this.i.r2));
1012
+ this.i.sc = stringToBrush(v);
1013
+ this._a("suffixIconStroke", brushToString(this.i.sc));
990
1014
  }
991
1015
  /**
992
1016
  * Gets or sets the fill color of suffix icon.
993
1017
  */
994
1018
  get suffixIconFill() {
995
- return brushToString(this.i.r1);
1019
+ return brushToString(this.i.sb);
996
1020
  }
997
1021
  set suffixIconFill(v) {
998
- this.i.r1 = stringToBrush(v);
999
- this._a("suffixIconFill", brushToString(this.i.r1));
1022
+ this.i.sb = stringToBrush(v);
1023
+ this._a("suffixIconFill", brushToString(this.i.sb));
1000
1024
  }
1001
1025
  /**
1002
1026
  * Gets or sets the suffix icon's viewbox x coordinate.
1003
1027
  */
1004
1028
  get suffixIconViewBoxLeft() {
1005
- return this.i.kt;
1029
+ return this.i.kv;
1006
1030
  }
1007
1031
  set suffixIconViewBoxLeft(v) {
1008
- this.i.kt = +v;
1009
- this._a("suffixIconViewBoxLeft", this.i.kt);
1032
+ this.i.kv = +v;
1033
+ this._a("suffixIconViewBoxLeft", this.i.kv);
1010
1034
  }
1011
1035
  /**
1012
1036
  * Gets or sets the suffix icon's viewbox y coordinate.
1013
1037
  */
1014
1038
  get suffixIconViewBoxTop() {
1015
- return this.i.ku;
1039
+ return this.i.kw;
1016
1040
  }
1017
1041
  set suffixIconViewBoxTop(v) {
1018
- this.i.ku = +v;
1019
- this._a("suffixIconViewBoxTop", this.i.ku);
1042
+ this.i.kw = +v;
1043
+ this._a("suffixIconViewBoxTop", this.i.kw);
1020
1044
  }
1021
1045
  /**
1022
1046
  * Gets or sets the suffix icon's viewbox width.
1023
1047
  */
1024
1048
  get suffixIconViewBoxWidth() {
1025
- return this.i.kv;
1049
+ return this.i.kx;
1026
1050
  }
1027
1051
  set suffixIconViewBoxWidth(v) {
1028
- this.i.kv = +v;
1029
- this._a("suffixIconViewBoxWidth", this.i.kv);
1052
+ this.i.kx = +v;
1053
+ this._a("suffixIconViewBoxWidth", this.i.kx);
1030
1054
  }
1031
1055
  /**
1032
1056
  * Gets or sets the suffix icon's viewbox height.
1033
1057
  */
1034
1058
  get suffixIconViewBoxHeight() {
1035
- return this.i.ks;
1059
+ return this.i.ku;
1036
1060
  }
1037
1061
  set suffixIconViewBoxHeight(v) {
1038
- this.i.ks = +v;
1039
- this._a("suffixIconViewBoxHeight", this.i.ks);
1062
+ this.i.ku = +v;
1063
+ this._a("suffixIconViewBoxHeight", this.i.ku);
1040
1064
  }
1041
1065
  /**
1042
1066
  * Gets or sets the suffix margin.
1043
1067
  */
1044
1068
  get suffixMargin() {
1045
- return this.i.kw;
1069
+ return this.i.ky;
1046
1070
  }
1047
1071
  set suffixMargin(v) {
1048
- this.i.kw = +v;
1049
- this._a("suffixMargin", this.i.kw);
1072
+ this.i.ky = +v;
1073
+ this._a("suffixMargin", this.i.ky);
1050
1074
  }
1051
1075
  /**
1052
1076
  * Gets or sets the text decoration to apply to cells in this column.
@@ -1090,18 +1114,18 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1090
1114
 
1091
1115
  */
1092
1116
  getUniqueKey() {
1093
- let iv = this.i.nm();
1117
+ let iv = this.i.nq();
1094
1118
  return (iv);
1095
1119
  }
1096
1120
  setNamedHeaderValue(valueName, animationType, value) {
1097
- this.i.pf(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1121
+ this.i.pk(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1098
1122
  }
1099
1123
  /**
1100
1124
  * Returns if the column has named header values.
1101
1125
 
1102
1126
  */
1103
1127
  hasNamedHeaderValues() {
1104
- let iv = this.i.j1();
1128
+ let iv = this.i.j2();
1105
1129
  return (iv);
1106
1130
  }
1107
1131
  /**
@@ -1110,7 +1134,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1110
1134
  * @param valueName * The named value to check for.
1111
1135
  */
1112
1136
  hasNamedHeaderValue(valueName) {
1113
- let iv = this.i.j0(valueName);
1137
+ let iv = this.i.j1(valueName);
1114
1138
  return (iv);
1115
1139
  }
1116
1140
  /**
@@ -1119,7 +1143,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1119
1143
  * @param valueName * The named header value to remove.
1120
1144
  */
1121
1145
  removeNamedHeaderValue(valueName) {
1122
- this.i.pe(valueName);
1146
+ this.i.pj(valueName);
1123
1147
  }
1124
1148
  /**
1125
1149
  * Gets the value of a named header value for this column by name.
@@ -1127,11 +1151,11 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1127
1151
  * @param valueName * Name of the named header value to retrieve.
1128
1152
  */
1129
1153
  getNamedHeaderValue(valueName) {
1130
- let iv = this.i.lr(valueName);
1154
+ let iv = this.i.lt(valueName);
1131
1155
  return (iv);
1132
1156
  }
1133
1157
  applyCustomFilter(filterID, index, value) {
1134
- this.i.o5(filterID, index, value);
1158
+ this.i.pa(filterID, index, value);
1135
1159
  }
1136
1160
  getDesiredToolbarActions() {
1137
1161
  let iv = this.i.getDesiredToolbarActions();
@@ -1187,7 +1211,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1187
1211
  this._actualHeaderTextChange = ev;
1188
1212
  this._actualHeaderTextChange_wrapped = (o, e) => {
1189
1213
  let ext = this.actualHeaderText;
1190
- if (e.propertyName == 'Mj') {
1214
+ if (e.propertyName == 'Mm') {
1191
1215
  if (this.beforeActualHeaderTextChange) {
1192
1216
  this.beforeActualHeaderTextChange(this, ext);
1193
1217
  }