igniteui-webcomponents-data-grids 7.1.0-alpha.2 → 7.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  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 +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  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-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -80,143 +80,163 @@ 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.lj;
83
+ return this.i.lm;
84
84
  }
85
85
  set paddingLeft(v) {
86
- this.i.lj = +v;
87
- this._a("paddingLeft", this.i.lj);
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.ll;
93
+ return this.i.lo;
94
94
  }
95
95
  set paddingTop(v) {
96
- this.i.ll = +v;
97
- this._a("paddingTop", this.i.ll);
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.lk;
103
+ return this.i.ln;
104
104
  }
105
105
  set paddingRight(v) {
106
- this.i.lk = +v;
107
- this._a("paddingRight", this.i.lk);
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.li;
113
+ return this.i.ll;
114
114
  }
115
115
  set paddingBottom(v) {
116
- this.i.li = +v;
117
- this._a("paddingBottom", this.i.li);
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.n6;
123
+ return this.i.ob;
124
124
  }
125
125
  set name(v) {
126
- this.i.n6 = v;
126
+ this.i.ob = 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.nf;
132
+ return this.i.nj;
133
133
  }
134
134
  set field(v) {
135
- this.i.nf = v;
135
+ this.i.nj = 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.nm;
141
+ return this.i.nq;
142
142
  }
143
143
  set headerText(v) {
144
- this.i.nm = v;
144
+ this.i.nq = 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.mi;
150
+ return this.i.ml;
151
151
  }
152
152
  set actualHeaderText(v) {
153
- this.i.mi = v;
153
+ this.i.ml = 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.rs);
159
+ return brushToString(this.i.r2);
160
160
  }
161
161
  set selectedBackground(v) {
162
- this.i.rs = stringToBrush(v);
163
- this._a("selectedBackground", brushToString(this.i.rs));
162
+ this.i.r2 = stringToBrush(v);
163
+ this._a("selectedBackground", brushToString(this.i.r2));
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.rc);
169
+ return brushToString(this.i.rl);
170
170
  }
171
171
  set actualSelectedBackground(v) {
172
- this.i.rc = stringToBrush(v);
173
- this._a("actualSelectedBackground", brushToString(this.i.rc));
172
+ this.i.rl = stringToBrush(v);
173
+ this._a("actualSelectedBackground", brushToString(this.i.rl));
174
+ }
175
+ /**
176
+ * Gets or sets the text color to use for the cells when they are selected
177
+ */
178
+ get selectedTextColor() {
179
+ return brushToString(this.i.r3);
180
+ }
181
+ set selectedTextColor(v) {
182
+ this.i.r3 = stringToBrush(v);
183
+ this._a("selectedTextColor", brushToString(this.i.r3));
184
+ }
185
+ /**
186
+ * Gets the actual text color that is used for the cells when they are selected
187
+ */
188
+ get actualSelectedTextColor() {
189
+ return brushToString(this.i.rm);
190
+ }
191
+ set actualSelectedTextColor(v) {
192
+ this.i.rm = stringToBrush(v);
193
+ this._a("actualSelectedTextColor", brushToString(this.i.rm));
174
194
  }
175
195
  /**
176
196
  * Gets or sets the background color to use for the cells when the row is hovered.
177
197
  */
178
198
  get rowHoverBackground() {
179
- return brushToString(this.i.rq);
199
+ return brushToString(this.i.r0);
180
200
  }
181
201
  set rowHoverBackground(v) {
182
- this.i.rq = stringToBrush(v);
183
- this._a("rowHoverBackground", brushToString(this.i.rq));
202
+ this.i.r0 = stringToBrush(v);
203
+ this._a("rowHoverBackground", brushToString(this.i.r0));
184
204
  }
185
205
  /**
186
206
  * Gets the actual background color that is used for the cells when they are hovered.
187
207
  */
188
208
  get actualHoverBackground() {
189
- return brushToString(this.i.ra);
209
+ return brushToString(this.i.rj);
190
210
  }
191
211
  set actualHoverBackground(v) {
192
- this.i.ra = stringToBrush(v);
193
- this._a("actualHoverBackground", brushToString(this.i.ra));
212
+ this.i.rj = stringToBrush(v);
213
+ this._a("actualHoverBackground", brushToString(this.i.rj));
194
214
  }
195
215
  /**
196
216
  * Gets or sets the text color to use for the cells when the row is hovered.
197
217
  */
198
218
  get rowHoverTextColor() {
199
- return brushToString(this.i.rr);
219
+ return brushToString(this.i.r1);
200
220
  }
201
221
  set rowHoverTextColor(v) {
202
- this.i.rr = stringToBrush(v);
203
- this._a("rowHoverTextColor", brushToString(this.i.rr));
222
+ this.i.r1 = stringToBrush(v);
223
+ this._a("rowHoverTextColor", brushToString(this.i.r1));
204
224
  }
205
225
  /**
206
226
  * Gets the actual text color that is used for the cells when they are hovered.
207
227
  */
208
228
  get actualRowHoverTextColor() {
209
- return brushToString(this.i.rb);
229
+ return brushToString(this.i.rk);
210
230
  }
211
231
  set actualRowHoverTextColor(v) {
212
- this.i.rb = stringToBrush(v);
213
- this._a("actualRowHoverTextColor", brushToString(this.i.rb));
232
+ this.i.rk = stringToBrush(v);
233
+ this._a("actualRowHoverTextColor", brushToString(this.i.rk));
214
234
  }
215
235
  /**
216
236
  * Gets or sets the animation settings to use for this column.
217
237
  */
218
238
  get animationSettings() {
219
- const r = this.i.ic;
239
+ const r = this.i.id;
220
240
  if (r == null) {
221
241
  return null;
222
242
  }
@@ -235,7 +255,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
235
255
  return r.externalObject;
236
256
  }
237
257
  set animationSettings(v) {
238
- v == null ? this.i.ic = null : this.i.ic = v.i;
258
+ v == null ? this.i.id = null : this.i.id = v.i;
239
259
  }
240
260
  /**
241
261
  * Gets or sets the width to use for this column.
@@ -272,49 +292,49 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
272
292
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
273
293
  */
274
294
  get minWidth() {
275
- return this.i.kq;
295
+ return this.i.kt;
276
296
  }
277
297
  set minWidth(v) {
278
- this.i.kq = +v;
279
- this._a("minWidth", this.i.kq);
298
+ this.i.kt = +v;
299
+ this._a("minWidth", this.i.kt);
280
300
  }
281
301
  /**
282
302
  * Gets whether this column was projected from markup/templates and is constrained.
283
303
  */
284
304
  get isFromMarkup() {
285
- return this.i.j8;
305
+ return this.i.ka;
286
306
  }
287
307
  set isFromMarkup(v) {
288
- this.i.j8 = ensureBool(v);
289
- this._a("isFromMarkup", this.i.j8);
308
+ this.i.ka = ensureBool(v);
309
+ this._a("isFromMarkup", this.i.ka);
290
310
  }
291
311
  /**
292
312
  * Gets whether this column was auto generated.
293
313
  */
294
314
  get isAutoGenerated() {
295
- return this.i.j2;
315
+ return this.i.j4;
296
316
  }
297
317
  set isAutoGenerated(v) {
298
- this.i.j2 = ensureBool(v);
299
- this._a("isAutoGenerated", this.i.j2);
318
+ this.i.j4 = ensureBool(v);
319
+ this._a("isAutoGenerated", this.i.j4);
300
320
  }
301
321
  /**
302
322
  * Gets or sets a filter to apply on the values of this column
303
323
  */
304
324
  get filter() {
305
- return this.i.g4;
325
+ return this.i.g5;
306
326
  }
307
327
  set filter(v) {
308
- this.i.g4 = v;
328
+ this.i.g5 = v;
309
329
  }
310
330
  /**
311
331
  * Gets or sets a filter to apply to the values of this column.
312
332
  */
313
333
  get filterExpression() {
314
- return this.i.g6;
334
+ return this.i.g7;
315
335
  }
316
336
  set filterExpression(v) {
317
- this.i.g6 = v;
337
+ this.i.g7 = v;
318
338
  }
319
339
  /**
320
340
  * Gets or sets the header definition for this column.
@@ -342,429 +362,439 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
342
362
  * Gets or sets whether filtering is enabled for this column.
343
363
  */
344
364
  get isFilteringEnabled() {
345
- return this.i.j7;
365
+ return this.i.j9;
346
366
  }
347
367
  set isFilteringEnabled(v) {
348
- this.i.j7 = ensureBool(v);
349
- this._a("isFilteringEnabled", this.i.j7);
368
+ this.i.j9 = ensureBool(v);
369
+ this._a("isFilteringEnabled", this.i.j9);
350
370
  }
351
371
  /**
352
372
  * Gets or sets whether resizing is enabled for this column.
353
373
  */
354
374
  get isResizingEnabled() {
355
- return this.i.ka;
375
+ return this.i.kc;
356
376
  }
357
377
  set isResizingEnabled(v) {
358
- this.i.ka = ensureBool(v);
359
- this._a("isResizingEnabled", this.i.ka);
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);
360
390
  }
361
391
  /**
362
392
  * Gets or sets whether or not a column is hidden from the grid
363
393
  */
364
394
  get isHidden() {
365
- return this.i.j9;
395
+ return this.i.kb;
366
396
  }
367
397
  set isHidden(v) {
368
- this.i.j9 = ensureBool(v);
369
- this._a("isHidden", this.i.j9);
398
+ this.i.kb = ensureBool(v);
399
+ this._a("isHidden", this.i.kb);
370
400
  }
371
401
  /**
372
402
  * Gets or sets if a column should be removed from the grid when it is fully hidden
373
403
  */
374
404
  get shouldRemoveWhenHidden() {
375
- return this.i.kd;
405
+ return this.i.kg;
376
406
  }
377
407
  set shouldRemoveWhenHidden(v) {
378
- this.i.kd = ensureBool(v);
379
- this._a("shouldRemoveWhenHidden", this.i.kd);
408
+ this.i.kg = ensureBool(v);
409
+ this._a("shouldRemoveWhenHidden", this.i.kg);
380
410
  }
381
411
  /**
382
412
  * Gets the current sort direction (None, Ascending, Descending) for this column.
383
413
  */
384
414
  get sortDirection() {
385
- return this.i.hu;
415
+ return this.i.hv;
386
416
  }
387
417
  set sortDirection(v) {
388
- this.i.hu = ensureEnum(ColumnSortDirection_$type, v);
389
- this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hu));
418
+ this.i.hv = ensureEnum(ColumnSortDirection_$type, v);
419
+ this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hv));
390
420
  }
391
421
  /**
392
422
  * Gets or sets the current fixed position for this column.
393
423
  */
394
424
  get pinned() {
395
- return this.i.is;
425
+ return this.i.it;
396
426
  }
397
427
  set pinned(v) {
398
- this.i.is = ensureEnum(PinnedPositions_$type, v);
399
- this._a("pinned", enumToString(PinnedPositions_$type, this.i.is));
428
+ this.i.it = ensureEnum(PinnedPositions_$type, v);
429
+ this._a("pinned", enumToString(PinnedPositions_$type, this.i.it));
400
430
  }
401
431
  /**
402
432
  * Gets the actual column options icon alignment for this column.
403
433
  */
404
434
  get actualColumnOptionsIconAlignment() {
405
- return this.i.hl;
435
+ return this.i.hm;
406
436
  }
407
437
  set actualColumnOptionsIconAlignment(v) {
408
- this.i.hl = ensureEnum(ColumnOptionsIconAlignment_$type, v);
409
- this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hl));
438
+ this.i.hm = ensureEnum(ColumnOptionsIconAlignment_$type, v);
439
+ this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hm));
410
440
  }
411
441
  /**
412
442
  * Gets or sets whether the column options icon is aligned opposite the header text or not.
413
443
  */
414
444
  get columnOptionsIconAlignment() {
415
- return this.i.hm;
445
+ return this.i.hn;
416
446
  }
417
447
  set columnOptionsIconAlignment(v) {
418
- this.i.hm = ensureEnum(ColumnOptionsIconAlignment_$type, v);
419
- this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hm));
448
+ this.i.hn = ensureEnum(ColumnOptionsIconAlignment_$type, v);
449
+ this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hn));
420
450
  }
421
451
  /**
422
452
  * Gets the actual column options icon color for this column.
423
453
  */
424
454
  get actualColumnOptionsIconColor() {
425
- return brushToString(this.i.q5);
455
+ return brushToString(this.i.re);
426
456
  }
427
457
  set actualColumnOptionsIconColor(v) {
428
- this.i.q5 = stringToBrush(v);
429
- this._a("actualColumnOptionsIconColor", brushToString(this.i.q5));
458
+ this.i.re = stringToBrush(v);
459
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.re));
430
460
  }
431
461
  /**
432
462
  * Gets or sets the column options icon color for this column.
433
463
  */
434
464
  get columnOptionsIconColor() {
435
- return brushToString(this.i.rj);
465
+ return brushToString(this.i.rt);
436
466
  }
437
467
  set columnOptionsIconColor(v) {
438
- this.i.rj = stringToBrush(v);
439
- this._a("columnOptionsIconColor", brushToString(this.i.rj));
468
+ this.i.rt = stringToBrush(v);
469
+ this._a("columnOptionsIconColor", brushToString(this.i.rt));
440
470
  }
441
471
  /**
442
472
  * Gets or sets how the column option icon will behave in the column header.
443
473
  */
444
474
  get columnOptionsIconBehavior() {
445
- return this.i.hq;
475
+ return this.i.hr;
446
476
  }
447
477
  set columnOptionsIconBehavior(v) {
448
- this.i.hq = ensureEnum(ColumnOptionsIconBehavior_$type, v);
449
- this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hq));
478
+ this.i.hr = ensureEnum(ColumnOptionsIconBehavior_$type, v);
479
+ this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hr));
450
480
  }
451
481
  /**
452
482
  * Gets or sets how the column option icon will behave in the column header.
453
483
  */
454
484
  get actualColumnOptionsIconBehavior() {
455
- return this.i.hp;
485
+ return this.i.hq;
456
486
  }
457
487
  set actualColumnOptionsIconBehavior(v) {
458
- this.i.hp = ensureEnum(ColumnOptionsIconBehavior_$type, v);
459
- this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hp));
488
+ this.i.hq = ensureEnum(ColumnOptionsIconBehavior_$type, v);
489
+ this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hq));
460
490
  }
461
491
  /**
462
492
  * Gets the actual state of the column options for this column.
463
493
  */
464
494
  get actualIsColumnOptionsEnabled() {
465
- return this.i.jv;
495
+ return this.i.jx;
466
496
  }
467
497
  set actualIsColumnOptionsEnabled(v) {
468
- this.i.jv = ensureBool(v);
469
- this._a("actualIsColumnOptionsEnabled", this.i.jv);
498
+ this.i.jx = ensureBool(v);
499
+ this._a("actualIsColumnOptionsEnabled", this.i.jx);
470
500
  }
471
501
  /**
472
502
  * Gets or sets the preferred state of the column options for this column. If the feature is disabled at the grid level
473
503
  * then it will be disabled for the column regardless of what this is set to.
474
504
  */
475
505
  get isColumnOptionsEnabled() {
476
- return this.i.j3;
506
+ return this.i.j5;
477
507
  }
478
508
  set isColumnOptionsEnabled(v) {
479
- this.i.j3 = ensureBool(v);
480
- this._a("isColumnOptionsEnabled", this.i.j3);
509
+ this.i.j5 = ensureBool(v);
510
+ this._a("isColumnOptionsEnabled", this.i.j5);
481
511
  }
482
512
  /**
483
513
  * Gets the actual state of summaries menu in the column options for this column.
484
514
  */
485
515
  get actualIsColumnOptionsSummariesEnabled() {
486
- return this.i.jx;
516
+ return this.i.jz;
487
517
  }
488
518
  set actualIsColumnOptionsSummariesEnabled(v) {
489
- this.i.jx = ensureBool(v);
490
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jx);
519
+ this.i.jz = ensureBool(v);
520
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.jz);
491
521
  }
492
522
  /**
493
523
  * Gets or sets whether to show the summaries option in the column options menu for this column.
494
524
  */
495
525
  get isColumnOptionsSummariesEnabled() {
496
- return this.i.j5;
526
+ return this.i.j7;
497
527
  }
498
528
  set isColumnOptionsSummariesEnabled(v) {
499
- this.i.j5 = ensureBool(v);
500
- this._a("isColumnOptionsSummariesEnabled", this.i.j5);
529
+ this.i.j7 = ensureBool(v);
530
+ this._a("isColumnOptionsSummariesEnabled", this.i.j7);
501
531
  }
502
532
  /**
503
533
  * Gets the actual state of grouping menu in the column options for this column.
504
534
  */
505
535
  get actualIsColumnOptionsGroupingEnabled() {
506
- return this.i.jw;
536
+ return this.i.jy;
507
537
  }
508
538
  set actualIsColumnOptionsGroupingEnabled(v) {
509
- this.i.jw = ensureBool(v);
510
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jw);
539
+ this.i.jy = ensureBool(v);
540
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jy);
511
541
  }
512
542
  /**
513
543
  * Gets or sets whether to show the grouping option in the column options menu for this column.
514
544
  */
515
545
  get isColumnOptionsGroupingEnabled() {
516
- return this.i.j4;
546
+ return this.i.j6;
517
547
  }
518
548
  set isColumnOptionsGroupingEnabled(v) {
519
- this.i.j4 = ensureBool(v);
520
- this._a("isColumnOptionsGroupingEnabled", this.i.j4);
549
+ this.i.j6 = ensureBool(v);
550
+ this._a("isColumnOptionsGroupingEnabled", this.i.j6);
521
551
  }
522
552
  /**
523
553
  * Gets or sets the column options dropdown background color.
524
554
  */
525
555
  get actualColumnOptionsBackground() {
526
- return brushToString(this.i.q0);
556
+ return brushToString(this.i.q9);
527
557
  }
528
558
  set actualColumnOptionsBackground(v) {
529
- this.i.q0 = stringToBrush(v);
530
- this._a("actualColumnOptionsBackground", brushToString(this.i.q0));
559
+ this.i.q9 = stringToBrush(v);
560
+ this._a("actualColumnOptionsBackground", brushToString(this.i.q9));
531
561
  }
532
562
  /**
533
563
  * Gets or sets the column options dropdown background color.
534
564
  */
535
565
  get columnOptionsBackground() {
536
- return brushToString(this.i.re);
566
+ return brushToString(this.i.ro);
537
567
  }
538
568
  set columnOptionsBackground(v) {
539
- this.i.re = stringToBrush(v);
540
- this._a("columnOptionsBackground", brushToString(this.i.re));
569
+ this.i.ro = stringToBrush(v);
570
+ this._a("columnOptionsBackground", brushToString(this.i.ro));
541
571
  }
542
572
  /**
543
573
  * Gets or sets the text color for text inside the column options menu.
544
574
  */
545
575
  get actualColumnOptionsTextColor() {
546
- return brushToString(this.i.q7);
576
+ return brushToString(this.i.rg);
547
577
  }
548
578
  set actualColumnOptionsTextColor(v) {
549
- this.i.q7 = stringToBrush(v);
550
- this._a("actualColumnOptionsTextColor", brushToString(this.i.q7));
579
+ this.i.rg = stringToBrush(v);
580
+ this._a("actualColumnOptionsTextColor", brushToString(this.i.rg));
551
581
  }
552
582
  /**
553
583
  * Gets or sets the text color for text inside the column options menu.
554
584
  */
555
585
  get columnOptionsTextColor() {
556
- return brushToString(this.i.rl);
586
+ return brushToString(this.i.rv);
557
587
  }
558
588
  set columnOptionsTextColor(v) {
559
- this.i.rl = stringToBrush(v);
560
- this._a("columnOptionsTextColor", brushToString(this.i.rl));
589
+ this.i.rv = stringToBrush(v);
590
+ this._a("columnOptionsTextColor", brushToString(this.i.rv));
561
591
  }
562
592
  /**
563
593
  * Gets or sets the font settings for text inside the column options menu.
564
594
  */
565
595
  get columnOptionsTextStyle() {
566
- if (this.i.jc == null) {
596
+ if (this.i.jd == null) {
567
597
  return null;
568
598
  }
569
- return this.i.jc.fontString;
599
+ return this.i.jd.fontString;
570
600
  }
571
601
  set columnOptionsTextStyle(v) {
572
602
  let fi = new FontInfo();
573
603
  fi.fontString = v;
574
- this.i.jc = fi;
575
- this._a("columnOptionsTextStyle", this.i.jc != null ? this.i.jc.fontString : "");
604
+ this.i.jd = fi;
605
+ this._a("columnOptionsTextStyle", this.i.jd != null ? this.i.jd.fontString : "");
576
606
  }
577
607
  get actualColumnOptionsHoverBackgroundColor() {
578
- return brushToString(this.i.q4);
608
+ return brushToString(this.i.rd);
579
609
  }
580
610
  set actualColumnOptionsHoverBackgroundColor(v) {
581
- this.i.q4 = stringToBrush(v);
582
- this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.q4));
611
+ this.i.rd = stringToBrush(v);
612
+ this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.rd));
583
613
  }
584
614
  get columnOptionsHoverBackgroundColor() {
585
- return brushToString(this.i.ri);
615
+ return brushToString(this.i.rs);
586
616
  }
587
617
  set columnOptionsHoverBackgroundColor(v) {
588
- this.i.ri = stringToBrush(v);
589
- this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.ri));
618
+ this.i.rs = stringToBrush(v);
619
+ this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.rs));
590
620
  }
591
621
  get actualColumnOptionsToolTipBackgroundColor() {
592
- return brushToString(this.i.q8);
622
+ return brushToString(this.i.rh);
593
623
  }
594
624
  set actualColumnOptionsToolTipBackgroundColor(v) {
595
- this.i.q8 = stringToBrush(v);
596
- this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.q8));
625
+ this.i.rh = stringToBrush(v);
626
+ this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.rh));
597
627
  }
598
628
  get columnOptionsToolTipBackgroundColor() {
599
- return brushToString(this.i.rm);
629
+ return brushToString(this.i.rw);
600
630
  }
601
631
  set columnOptionsToolTipBackgroundColor(v) {
602
- this.i.rm = stringToBrush(v);
603
- this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.rm));
632
+ this.i.rw = stringToBrush(v);
633
+ this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.rw));
604
634
  }
605
635
  get actualColumnOptionsHighlightColor() {
606
- return brushToString(this.i.q3);
636
+ return brushToString(this.i.rc);
607
637
  }
608
638
  set actualColumnOptionsHighlightColor(v) {
609
- this.i.q3 = stringToBrush(v);
610
- this._a("actualColumnOptionsHighlightColor", brushToString(this.i.q3));
639
+ this.i.rc = stringToBrush(v);
640
+ this._a("actualColumnOptionsHighlightColor", brushToString(this.i.rc));
611
641
  }
612
642
  get columnOptionsHighlightColor() {
613
- return brushToString(this.i.rh);
643
+ return brushToString(this.i.rr);
614
644
  }
615
645
  set columnOptionsHighlightColor(v) {
616
- this.i.rh = stringToBrush(v);
617
- this._a("columnOptionsHighlightColor", brushToString(this.i.rh));
646
+ this.i.rr = stringToBrush(v);
647
+ this._a("columnOptionsHighlightColor", brushToString(this.i.rr));
618
648
  }
619
649
  /**
620
650
  * Gets or sets the color of separators inside the column options menu.
621
651
  */
622
652
  get actualColumnOptionsSeparatorColor() {
623
- return brushToString(this.i.q6);
653
+ return brushToString(this.i.rf);
624
654
  }
625
655
  set actualColumnOptionsSeparatorColor(v) {
626
- this.i.q6 = stringToBrush(v);
627
- this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.q6));
656
+ this.i.rf = stringToBrush(v);
657
+ this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.rf));
628
658
  }
629
659
  /**
630
660
  * Gets or sets the color of separators inside the column options menu.
631
661
  */
632
662
  get columnOptionsSeparatorColor() {
633
- return brushToString(this.i.rk);
663
+ return brushToString(this.i.ru);
634
664
  }
635
665
  set columnOptionsSeparatorColor(v) {
636
- this.i.rk = stringToBrush(v);
637
- this._a("columnOptionsSeparatorColor", brushToString(this.i.rk));
666
+ this.i.ru = stringToBrush(v);
667
+ this._a("columnOptionsSeparatorColor", brushToString(this.i.ru));
638
668
  }
639
669
  /**
640
670
  * Gets or sets the background color for group headers inside the column options menu.
641
671
  */
642
672
  get actualColumnOptionsGroupHeaderBackground() {
643
- return brushToString(this.i.q1);
673
+ return brushToString(this.i.ra);
644
674
  }
645
675
  set actualColumnOptionsGroupHeaderBackground(v) {
646
- this.i.q1 = stringToBrush(v);
647
- this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.q1));
676
+ this.i.ra = stringToBrush(v);
677
+ this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.ra));
648
678
  }
649
679
  /**
650
680
  * Gets or sets the background color for group headers inside the column options menu.
651
681
  */
652
682
  get columnOptionsGroupHeaderBackground() {
653
- return brushToString(this.i.rf);
683
+ return brushToString(this.i.rp);
654
684
  }
655
685
  set columnOptionsGroupHeaderBackground(v) {
656
- this.i.rf = stringToBrush(v);
657
- this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rf));
686
+ this.i.rp = stringToBrush(v);
687
+ this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.rp));
658
688
  }
659
689
  /**
660
690
  * Gets the actual text color for group headers inside the column options menu.
661
691
  */
662
692
  get actualColumnOptionsGroupHeaderTextColor() {
663
- return brushToString(this.i.q2);
693
+ return brushToString(this.i.rb);
664
694
  }
665
695
  set actualColumnOptionsGroupHeaderTextColor(v) {
666
- this.i.q2 = stringToBrush(v);
667
- this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.q2));
696
+ this.i.rb = stringToBrush(v);
697
+ this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.rb));
668
698
  }
669
699
  /**
670
700
  * Gets or sets the text color for group headers inside the column options menu.
671
701
  */
672
702
  get columnOptionsGroupHeaderTextColor() {
673
- return brushToString(this.i.rg);
703
+ return brushToString(this.i.rq);
674
704
  }
675
705
  set columnOptionsGroupHeaderTextColor(v) {
676
- this.i.rg = stringToBrush(v);
677
- this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rg));
706
+ this.i.rq = stringToBrush(v);
707
+ this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.rq));
678
708
  }
679
709
  get columnOptionsGroupHeaderTextStyle() {
680
- if (this.i.jb == null) {
710
+ if (this.i.jc == null) {
681
711
  return null;
682
712
  }
683
- return this.i.jb.fontString;
713
+ return this.i.jc.fontString;
684
714
  }
685
715
  set columnOptionsGroupHeaderTextStyle(v) {
686
716
  let fi = new FontInfo();
687
717
  fi.fontString = v;
688
- this.i.jb = fi;
689
- this._a("columnOptionsGroupHeaderTextStyle", this.i.jb != null ? this.i.jb.fontString : "");
718
+ this.i.jc = fi;
719
+ this._a("columnOptionsGroupHeaderTextStyle", this.i.jc != null ? this.i.jc.fontString : "");
690
720
  }
691
721
  get actualColumnOptionsAccentColor() {
692
- return brushToString(this.i.qz);
722
+ return brushToString(this.i.q8);
693
723
  }
694
724
  set actualColumnOptionsAccentColor(v) {
695
- this.i.qz = stringToBrush(v);
696
- this._a("actualColumnOptionsAccentColor", brushToString(this.i.qz));
725
+ this.i.q8 = stringToBrush(v);
726
+ this._a("actualColumnOptionsAccentColor", brushToString(this.i.q8));
697
727
  }
698
728
  get columnOptionsAccentColor() {
699
- return brushToString(this.i.rd);
729
+ return brushToString(this.i.rn);
700
730
  }
701
731
  set columnOptionsAccentColor(v) {
702
- this.i.rd = stringToBrush(v);
703
- this._a("columnOptionsAccentColor", brushToString(this.i.rd));
732
+ this.i.rn = stringToBrush(v);
733
+ this._a("columnOptionsAccentColor", brushToString(this.i.rn));
704
734
  }
705
735
  get actualColumnOptionsRowHeight() {
706
- return this.i.k9;
736
+ return this.i.lc;
707
737
  }
708
738
  set actualColumnOptionsRowHeight(v) {
709
- this.i.k9 = +v;
710
- this._a("actualColumnOptionsRowHeight", this.i.k9);
739
+ this.i.lc = +v;
740
+ this._a("actualColumnOptionsRowHeight", this.i.lc);
711
741
  }
712
742
  get columnOptionsRowHeight() {
713
- return this.i.la;
743
+ return this.i.ld;
714
744
  }
715
745
  set columnOptionsRowHeight(v) {
716
- this.i.la = +v;
717
- this._a("columnOptionsRowHeight", this.i.la);
746
+ this.i.ld = +v;
747
+ this._a("columnOptionsRowHeight", this.i.ld);
718
748
  }
719
749
  /**
720
750
  * Gets or sets if the column is editable.
721
751
  */
722
752
  get isEditable() {
723
- return this.i.j6;
753
+ return this.i.j8;
724
754
  }
725
755
  set isEditable(v) {
726
- this.i.j6 = ensureBool(v);
727
- this._a("isEditable", this.i.j6);
756
+ this.i.j8 = ensureBool(v);
757
+ this._a("isEditable", this.i.j8);
728
758
  }
729
759
  /**
730
760
  * Gets or sets the text color used for deleted rows.
731
761
  */
732
762
  get deletedTextColor() {
733
- return brushToString(this.i.rn);
763
+ return brushToString(this.i.rx);
734
764
  }
735
765
  set deletedTextColor(v) {
736
- this.i.rn = stringToBrush(v);
737
- this._a("deletedTextColor", brushToString(this.i.rn));
766
+ this.i.rx = stringToBrush(v);
767
+ this._a("deletedTextColor", brushToString(this.i.rx));
738
768
  }
739
769
  /**
740
770
  * Gets the actual text color used for deleted rows.
741
771
  */
742
772
  get actualDeletedTextColor() {
743
- return brushToString(this.i.q9);
773
+ return brushToString(this.i.ri);
744
774
  }
745
775
  set actualDeletedTextColor(v) {
746
- this.i.q9 = stringToBrush(v);
747
- this._a("actualDeletedTextColor", brushToString(this.i.q9));
776
+ this.i.ri = stringToBrush(v);
777
+ this._a("actualDeletedTextColor", brushToString(this.i.ri));
748
778
  }
749
779
  /**
750
780
  * Gets or sets the opacity to use for unsaved edited cell values.
751
781
  */
752
782
  get editOpacity() {
753
- return this.i.kp;
783
+ return this.i.ks;
754
784
  }
755
785
  set editOpacity(v) {
756
- this.i.kp = +v;
757
- this._a("editOpacity", this.i.kp);
786
+ this.i.ks = +v;
787
+ this._a("editOpacity", this.i.ks);
758
788
  }
759
789
  /**
760
790
  * Gets the actual opacity for unsaved edited cell values.
761
791
  */
762
792
  get actualEditOpacity() {
763
- return this.i.ko;
793
+ return this.i.kr;
764
794
  }
765
795
  set actualEditOpacity(v) {
766
- this.i.ko = +v;
767
- this._a("actualEditOpacity", this.i.ko);
796
+ this.i.kr = +v;
797
+ this._a("actualEditOpacity", this.i.kr);
768
798
  }
769
799
  /**
770
800
  * Gets or sets the font style to use for unsaved cell edits.
@@ -785,96 +815,96 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
785
815
  * Gets the actual font style used for unsaved cell edits.
786
816
  */
787
817
  get actualEditFontInfo() {
788
- if (this.i.ja == null) {
818
+ if (this.i.jb == null) {
789
819
  return null;
790
820
  }
791
- return this.i.ja.fontString;
821
+ return this.i.jb.fontString;
792
822
  }
793
823
  set actualEditFontInfo(v) {
794
824
  let fi = new FontInfo();
795
825
  fi.fontString = v;
796
- this.i.ja = fi;
797
- this._a("actualEditFontInfo", this.i.ja != null ? this.i.ja.fontString : "");
826
+ this.i.jb = fi;
827
+ this._a("actualEditFontInfo", this.i.jb != null ? this.i.jb.fontString : "");
798
828
  }
799
829
  /**
800
830
  * Gets or sets if and how cell merging is performed for this field.
801
831
  */
802
832
  get mergedCellMode() {
803
- return this.i.io;
833
+ return this.i.ip;
804
834
  }
805
835
  set mergedCellMode(v) {
806
- this.i.io = ensureEnum(MergedCellMode_$type, v);
807
- this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.io));
836
+ this.i.ip = ensureEnum(MergedCellMode_$type, v);
837
+ this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.ip));
808
838
  }
809
839
  /**
810
840
  * Gets or sets how cells are evaluated for merging.
811
841
  */
812
842
  get mergedCellEvaluationCriteria() {
813
- return this.i.ik;
843
+ return this.i.il;
814
844
  }
815
845
  set mergedCellEvaluationCriteria(v) {
816
- this.i.ik = ensureEnum(MergedCellEvaluationCriteria_$type, v);
817
- this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.ik));
846
+ this.i.il = ensureEnum(MergedCellEvaluationCriteria_$type, v);
847
+ this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.il));
818
848
  }
819
849
  /**
820
850
  * Gets or sets the vertical alignment to use for the merged cell content.
821
851
  */
822
852
  get mergedCellVerticalAlignment() {
823
- return this.i.hd;
853
+ return this.i.he;
824
854
  }
825
855
  set mergedCellVerticalAlignment(v) {
826
- this.i.hd = ensureEnum(CellContentVerticalAlignment_$type, v);
827
- this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.hd));
856
+ this.i.he = ensureEnum(CellContentVerticalAlignment_$type, v);
857
+ this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.he));
828
858
  }
829
859
  /**
830
860
  * Gets or sets the amount of left padding to use for the cell content for this column.
831
861
  */
832
862
  get mergedCellPaddingLeft() {
833
- return this.i.lc;
863
+ return this.i.lf;
834
864
  }
835
865
  set mergedCellPaddingLeft(v) {
836
- this.i.lc = +v;
837
- this._a("mergedCellPaddingLeft", this.i.lc);
866
+ this.i.lf = +v;
867
+ this._a("mergedCellPaddingLeft", this.i.lf);
838
868
  }
839
869
  /**
840
870
  * Gets or sets the amount of top padding to use for the cell content for this column.
841
871
  */
842
872
  get mergedCellPaddingTop() {
843
- return this.i.le;
873
+ return this.i.lh;
844
874
  }
845
875
  set mergedCellPaddingTop(v) {
846
- this.i.le = +v;
847
- this._a("mergedCellPaddingTop", this.i.le);
876
+ this.i.lh = +v;
877
+ this._a("mergedCellPaddingTop", this.i.lh);
848
878
  }
849
879
  /**
850
880
  * Gets or sets the amount of right padding to use for the cell content of this column.
851
881
  */
852
882
  get mergedCellPaddingRight() {
853
- return this.i.ld;
883
+ return this.i.lg;
854
884
  }
855
885
  set mergedCellPaddingRight(v) {
856
- this.i.ld = +v;
857
- this._a("mergedCellPaddingRight", this.i.ld);
886
+ this.i.lg = +v;
887
+ this._a("mergedCellPaddingRight", this.i.lg);
858
888
  }
859
889
  /**
860
890
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
861
891
  */
862
892
  get mergedCellPaddingBottom() {
863
- return this.i.lb;
893
+ return this.i.le;
864
894
  }
865
895
  set mergedCellPaddingBottom(v) {
866
- this.i.lb = +v;
867
- this._a("mergedCellPaddingBottom", this.i.lb);
896
+ this.i.le = +v;
897
+ this._a("mergedCellPaddingBottom", this.i.le);
868
898
  }
869
899
  /**
870
900
  * Gets or sets whether UI filters are case sensitive or not.
871
901
  */
872
902
  get filterComparisonType() {
873
- return this.i.h6;
903
+ return this.i.h7;
874
904
  }
875
905
  set filterComparisonType(v) {
876
- this.i.h6 = ensureEnum(FilterComparisonType_$type, v);
877
- this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h6));
906
+ this.i.h7 = ensureEnum(FilterComparisonType_$type, v);
907
+ this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h7));
878
908
  }
879
909
  /**
880
910
  * Gets a list of the current custom filters for this column.
@@ -882,7 +912,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
882
912
  get filterOperands() {
883
913
  if (this._filterOperands === null) {
884
914
  let coll = new IgcGridFilterOperandsCollection();
885
- let innerColl = this.i.ie;
915
+ let innerColl = this.i.ig;
886
916
  if (!innerColl) {
887
917
  innerColl = new GridFilterOperandsCollection_internal();
888
918
  }
@@ -898,7 +928,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
898
928
  let coll = new IgcGridFilterOperandsCollection();
899
929
  this._filterOperands = coll._fromOuter(v);
900
930
  let syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
901
- let innerColl = this.i.ie;
931
+ let innerColl = this.i.ig;
902
932
  if (!innerColl) {
903
933
  innerColl = new GridFilterOperandsCollection_internal();
904
934
  }
@@ -910,20 +940,20 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
910
940
  * Gets or sets the text to display in the suffix area of cells in this column.
911
941
  */
912
942
  get suffixText() {
913
- return this.i.ou;
943
+ return this.i.o0;
914
944
  }
915
945
  set suffixText(v) {
916
- this.i.ou = v;
946
+ this.i.o0 = v;
917
947
  }
918
948
  /**
919
949
  * Gets or sets the color of the text in the suffix area of the cells in this column.
920
950
  */
921
951
  get suffixTextColor() {
922
- return brushToString(this.i.rv);
952
+ return brushToString(this.i.r6);
923
953
  }
924
954
  set suffixTextColor(v) {
925
- this.i.rv = stringToBrush(v);
926
- this._a("suffixTextColor", brushToString(this.i.rv));
955
+ this.i.r6 = stringToBrush(v);
956
+ this._a("suffixTextColor", brushToString(this.i.r6));
927
957
  }
928
958
  /**
929
959
  * Gets or sets the font of the suffix text.
@@ -944,99 +974,99 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
944
974
  * Gets or sets the icon to use in the suffix area of the cells in this column.
945
975
  */
946
976
  get suffixIconName() {
947
- return this.i.om;
977
+ return this.i.os;
948
978
  }
949
979
  set suffixIconName(v) {
950
- this.i.om = v;
980
+ this.i.os = v;
951
981
  }
952
982
  /**
953
983
  * Gets or sets the icon to use in the suffix area of the cells in this column.
954
984
  */
955
985
  get suffixIconCollectionName() {
956
- return this.i.oj;
986
+ return this.i.op;
957
987
  }
958
988
  set suffixIconCollectionName(v) {
959
- this.i.oj = v;
989
+ this.i.op = v;
960
990
  }
961
991
  /**
962
992
  * Gets or sets the stroke color of suffix icon.
963
993
  */
964
994
  get suffixIconStroke() {
965
- return brushToString(this.i.ru);
995
+ return brushToString(this.i.r5);
966
996
  }
967
997
  set suffixIconStroke(v) {
968
- this.i.ru = stringToBrush(v);
969
- this._a("suffixIconStroke", brushToString(this.i.ru));
998
+ this.i.r5 = stringToBrush(v);
999
+ this._a("suffixIconStroke", brushToString(this.i.r5));
970
1000
  }
971
1001
  /**
972
1002
  * Gets or sets the fill color of suffix icon.
973
1003
  */
974
1004
  get suffixIconFill() {
975
- return brushToString(this.i.rt);
1005
+ return brushToString(this.i.r4);
976
1006
  }
977
1007
  set suffixIconFill(v) {
978
- this.i.rt = stringToBrush(v);
979
- this._a("suffixIconFill", brushToString(this.i.rt));
1008
+ this.i.r4 = stringToBrush(v);
1009
+ this._a("suffixIconFill", brushToString(this.i.r4));
980
1010
  }
981
1011
  /**
982
1012
  * Gets or sets the suffix icon's viewbox x coordinate.
983
1013
  */
984
1014
  get suffixIconViewBoxLeft() {
985
- return this.i.ks;
1015
+ return this.i.kv;
986
1016
  }
987
1017
  set suffixIconViewBoxLeft(v) {
988
- this.i.ks = +v;
989
- this._a("suffixIconViewBoxLeft", this.i.ks);
1018
+ this.i.kv = +v;
1019
+ this._a("suffixIconViewBoxLeft", this.i.kv);
990
1020
  }
991
1021
  /**
992
1022
  * Gets or sets the suffix icon's viewbox y coordinate.
993
1023
  */
994
1024
  get suffixIconViewBoxTop() {
995
- return this.i.kt;
1025
+ return this.i.kw;
996
1026
  }
997
1027
  set suffixIconViewBoxTop(v) {
998
- this.i.kt = +v;
999
- this._a("suffixIconViewBoxTop", this.i.kt);
1028
+ this.i.kw = +v;
1029
+ this._a("suffixIconViewBoxTop", this.i.kw);
1000
1030
  }
1001
1031
  /**
1002
1032
  * Gets or sets the suffix icon's viewbox width.
1003
1033
  */
1004
1034
  get suffixIconViewBoxWidth() {
1005
- return this.i.ku;
1035
+ return this.i.kx;
1006
1036
  }
1007
1037
  set suffixIconViewBoxWidth(v) {
1008
- this.i.ku = +v;
1009
- this._a("suffixIconViewBoxWidth", this.i.ku);
1038
+ this.i.kx = +v;
1039
+ this._a("suffixIconViewBoxWidth", this.i.kx);
1010
1040
  }
1011
1041
  /**
1012
1042
  * Gets or sets the suffix icon's viewbox height.
1013
1043
  */
1014
1044
  get suffixIconViewBoxHeight() {
1015
- return this.i.kr;
1045
+ return this.i.ku;
1016
1046
  }
1017
1047
  set suffixIconViewBoxHeight(v) {
1018
- this.i.kr = +v;
1019
- this._a("suffixIconViewBoxHeight", this.i.kr);
1048
+ this.i.ku = +v;
1049
+ this._a("suffixIconViewBoxHeight", this.i.ku);
1020
1050
  }
1021
1051
  /**
1022
1052
  * Gets or sets the suffix margin.
1023
1053
  */
1024
1054
  get suffixMargin() {
1025
- return this.i.kv;
1055
+ return this.i.ky;
1026
1056
  }
1027
1057
  set suffixMargin(v) {
1028
- this.i.kv = +v;
1029
- this._a("suffixMargin", this.i.kv);
1058
+ this.i.ky = +v;
1059
+ this._a("suffixMargin", this.i.ky);
1030
1060
  }
1031
1061
  /**
1032
1062
  * Gets or sets the text decoration to apply to cells in this column.
1033
1063
  */
1034
1064
  get textDecoration() {
1035
- return this.i.iu;
1065
+ return this.i.iv;
1036
1066
  }
1037
1067
  set textDecoration(v) {
1038
- this.i.iu = ensureEnum(TextCellDecoration_$type, v);
1039
- this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.iu));
1068
+ this.i.iv = ensureEnum(TextCellDecoration_$type, v);
1069
+ this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.iv));
1040
1070
  }
1041
1071
  findByName(name) {
1042
1072
  var baseResult = super.findByName(name);
@@ -1070,18 +1100,18 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1070
1100
 
1071
1101
  */
1072
1102
  getUniqueKey() {
1073
- let iv = this.i.nk();
1103
+ let iv = this.i.no();
1074
1104
  return (iv);
1075
1105
  }
1076
1106
  setNamedHeaderValue(valueName, animationType, value) {
1077
- this.i.pc(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1107
+ this.i.pi(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1078
1108
  }
1079
1109
  /**
1080
1110
  * Returns if the column has named header values.
1081
1111
 
1082
1112
  */
1083
1113
  hasNamedHeaderValues() {
1084
- let iv = this.i.j0();
1114
+ let iv = this.i.j2();
1085
1115
  return (iv);
1086
1116
  }
1087
1117
  /**
@@ -1090,7 +1120,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1090
1120
  * @param valueName * The named value to check for.
1091
1121
  */
1092
1122
  hasNamedHeaderValue(valueName) {
1093
- let iv = this.i.jz(valueName);
1123
+ let iv = this.i.j1(valueName);
1094
1124
  return (iv);
1095
1125
  }
1096
1126
  /**
@@ -1099,7 +1129,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1099
1129
  * @param valueName * The named header value to remove.
1100
1130
  */
1101
1131
  removeNamedHeaderValue(valueName) {
1102
- this.i.pb(valueName);
1132
+ this.i.ph(valueName);
1103
1133
  }
1104
1134
  /**
1105
1135
  * Gets the value of a named header value for this column by name.
@@ -1107,11 +1137,11 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1107
1137
  * @param valueName * Name of the named header value to retrieve.
1108
1138
  */
1109
1139
  getNamedHeaderValue(valueName) {
1110
- let iv = this.i.lq(valueName);
1140
+ let iv = this.i.lt(valueName);
1111
1141
  return (iv);
1112
1142
  }
1113
1143
  applyCustomFilter(filterID, index, value) {
1114
- this.i.o2(filterID, index, value);
1144
+ this.i.o8(filterID, index, value);
1115
1145
  }
1116
1146
  getDesiredToolbarActions() {
1117
1147
  let iv = this.i.getDesiredToolbarActions();
@@ -1167,7 +1197,7 @@ let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
1167
1197
  this._actualHeaderTextChange = ev;
1168
1198
  this._actualHeaderTextChange_wrapped = (o, e) => {
1169
1199
  let ext = this.actualHeaderText;
1170
- if (e.propertyName == 'Mi') {
1200
+ if (e.propertyName == 'Ml') {
1171
1201
  if (this.beforeActualHeaderTextChange) {
1172
1202
  this.beforeActualHeaderTextChange(this, ext);
1173
1203
  }