igniteui-webcomponents-data-grids 6.2.2-alpha.3 → 6.3.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 (192) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +5786 -5636
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +1 -1
  4. package/esm2015/lib/CanvasCellPresenterBase.js +9 -9
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +9 -9
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  7. package/esm2015/lib/CanvasGridCellBase.js +7 -7
  8. package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +3 -3
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +3 -3
  15. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  17. package/esm2015/lib/CellPresenterBase.js +40 -37
  18. package/esm2015/lib/CheckboxListBridge.js +4 -0
  19. package/esm2015/lib/CheckboxListView_combined.js +778 -743
  20. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  21. package/esm2015/lib/ColumnFilterCondition_combined.js +2894 -2867
  22. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  23. package/esm2015/lib/ColumnPinningView_combined.js +7 -7
  24. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  25. package/esm2015/lib/ContentCellModelHelper.js +13 -13
  26. package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
  27. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  28. package/esm2015/lib/EditorCell.js +303 -303
  29. package/esm2015/lib/EditorCellPresenter.js +27 -27
  30. package/esm2015/lib/EditorRowCell.js +1 -1
  31. package/esm2015/lib/FilterCell.js +272 -272
  32. package/esm2015/lib/FilterCellPresenter.js +16 -16
  33. package/esm2015/lib/GridCellBase.js +356 -337
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +9 -9
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +4 -4
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +1 -1
  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 +6 -6
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  43. package/esm2015/lib/GridSortIndicatorView_combined.js +15 -8
  44. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  45. package/esm2015/lib/ImageCell.js +59 -59
  46. package/esm2015/lib/ImageCellPresenter.js +17 -17
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +2 -2
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  51. package/esm2015/lib/SectionHeaderCell.js +15 -15
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SortIndicatorStyle.js +6 -2
  54. package/esm2015/lib/SummaryCell.js +40 -40
  55. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  56. package/esm2015/lib/TemplateCell.js +15 -15
  57. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  58. package/esm2015/lib/TemplateHeader.js +2 -2
  59. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  60. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  61. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  62. package/esm2015/lib/TextCell.js +32 -32
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +153 -153
  65. package/esm2015/lib/TextHeaderCellPresenter.js +25 -25
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +164 -155
  68. package/esm2015/lib/igc-checkbox-list-component.js +103 -87
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +114 -104
  71. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  72. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  73. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  74. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  75. package/esm2015/lib/igc-image-cell-info.js +6 -6
  76. package/esm2015/lib/igc-image-column-component.js +12 -12
  77. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  80. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  81. package/esm2015/lib/igc-template-cell-info.js +2 -2
  82. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  83. package/esm2015/lib/igc-text-cell-info.js +2 -2
  84. package/esm2015/lib/igc-text-column-component.js +9 -9
  85. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  86. package/esm5/lib/AccessibilityRow.js +1 -1
  87. package/esm5/lib/CanvasCellPresenterBase.js +9 -9
  88. package/esm5/lib/CanvasContentCellModelHelper.js +9 -9
  89. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  90. package/esm5/lib/CanvasGridCellBase.js +7 -7
  91. package/esm5/lib/CanvasImageCellPresenter.js +9 -9
  92. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  93. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  94. package/esm5/lib/CanvasSummaryCell.js +1 -1
  95. package/esm5/lib/CanvasSummaryCellPresenter.js +3 -3
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  97. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +3 -3
  98. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  99. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  100. package/esm5/lib/CellPresenterBase.js +40 -37
  101. package/esm5/lib/CheckboxListBridge.js +4 -0
  102. package/esm5/lib/CheckboxListView_combined.js +760 -725
  103. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  104. package/esm5/lib/ColumnFilterCondition_combined.js +2735 -2700
  105. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  106. package/esm5/lib/ColumnPinningView_combined.js +7 -7
  107. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  108. package/esm5/lib/ContentCellModelHelper.js +13 -13
  109. package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
  110. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  111. package/esm5/lib/EditorCell.js +285 -285
  112. package/esm5/lib/EditorCellPresenter.js +27 -27
  113. package/esm5/lib/EditorRowCell.js +1 -1
  114. package/esm5/lib/FilterCell.js +262 -262
  115. package/esm5/lib/FilterCellPresenter.js +16 -16
  116. package/esm5/lib/GridCellBase.js +349 -326
  117. package/esm5/lib/GridColumnFilterOptionsView_combined.js +9 -9
  118. package/esm5/lib/GridColumnGroupOptionsView_combined.js +4 -4
  119. package/esm5/lib/GridColumnHideOptionsView_combined.js +1 -1
  120. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  121. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  122. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  123. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridExternalWrapper.js +6 -6
  125. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  126. package/esm5/lib/GridSortIndicatorView_combined.js +15 -10
  127. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  128. package/esm5/lib/ImageCell.js +59 -59
  129. package/esm5/lib/ImageCellPresenter.js +17 -17
  130. package/esm5/lib/MultiColumnComboBoxView_combined.js +2 -2
  131. package/esm5/lib/NumericCell.js +8 -8
  132. package/esm5/lib/NumericCellPresenter.js +9 -9
  133. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  134. package/esm5/lib/SectionHeaderCell.js +15 -15
  135. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  136. package/esm5/lib/SortIndicatorStyle.js +6 -2
  137. package/esm5/lib/SummaryCell.js +40 -40
  138. package/esm5/lib/SummaryCellPresenter.js +10 -10
  139. package/esm5/lib/TemplateCell.js +15 -15
  140. package/esm5/lib/TemplateCellPresenter.js +5 -5
  141. package/esm5/lib/TemplateHeader.js +2 -2
  142. package/esm5/lib/TemplateHeaderCell.js +5 -5
  143. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  144. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  145. package/esm5/lib/TextCell.js +32 -32
  146. package/esm5/lib/TextCellPresenter.js +10 -10
  147. package/esm5/lib/TextHeaderCell.js +151 -151
  148. package/esm5/lib/TextHeaderCellPresenter.js +25 -25
  149. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  150. package/esm5/lib/igc-cell-info.js +168 -155
  151. package/esm5/lib/igc-checkbox-list-component.js +103 -87
  152. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  153. package/esm5/lib/igc-data-grid-column-component.js +118 -104
  154. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  155. package/esm5/lib/igc-date-time-column-component.js +23 -23
  156. package/esm5/lib/igc-editor-cell-info.js +23 -23
  157. package/esm5/lib/igc-filter-cell-info.js +26 -26
  158. package/esm5/lib/igc-image-cell-info.js +6 -6
  159. package/esm5/lib/igc-image-column-component.js +12 -12
  160. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  161. package/esm5/lib/igc-numeric-column-component.js +35 -35
  162. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  163. package/esm5/lib/igc-summary-cell-info.js +9 -9
  164. package/esm5/lib/igc-template-cell-info.js +2 -2
  165. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  166. package/esm5/lib/igc-text-cell-info.js +2 -2
  167. package/esm5/lib/igc-text-column-component.js +9 -9
  168. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  169. package/fesm2015/igniteui-webcomponents-data-grids.js +5980 -5848
  170. package/fesm5/igniteui-webcomponents-data-grids.js +5788 -5638
  171. package/lib/CheckboxListBridge.d.ts +1 -0
  172. package/lib/CheckboxListViewExternal.d.ts +1 -0
  173. package/lib/CheckboxListView_combined.d.ts +185 -179
  174. package/lib/ColumnFilterCondition_combined.d.ts +820 -813
  175. package/lib/EditorCell.d.ts +67 -67
  176. package/lib/FilterCell.d.ts +55 -55
  177. package/lib/GridCellBase.d.ts +105 -102
  178. package/lib/ImageCell.d.ts +17 -17
  179. package/lib/NumericCell.d.ts +2 -2
  180. package/lib/SectionHeaderCell.d.ts +3 -3
  181. package/lib/SortIndicatorStyle.d.ts +5 -1
  182. package/lib/SummaryCell.d.ts +9 -9
  183. package/lib/TemplateCell.d.ts +5 -5
  184. package/lib/TemplateHeaderCell.d.ts +2 -2
  185. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  186. package/lib/TextCell.d.ts +7 -7
  187. package/lib/TextHeaderCell.d.ts +29 -29
  188. package/lib/VerticalSeparatorCell.d.ts +8 -8
  189. package/lib/igc-cell-info.d.ts +5 -0
  190. package/lib/igc-checkbox-list-component.d.ts +10 -0
  191. package/lib/igc-data-grid-column-component.d.ts +5 -0
  192. package/package.json +4 -4
@@ -94,11 +94,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
94
94
  * Gets or sets the amount of left padding to use for the cell content for this column.
95
95
  */
96
96
  get: function () {
97
- return this.i.ky;
97
+ return this.i.k0;
98
98
  },
99
99
  set: function (v) {
100
- this.i.ky = +v;
101
- this._a("paddingLeft", this.i.ky);
100
+ this.i.k0 = +v;
101
+ this._a("paddingLeft", this.i.k0);
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -108,11 +108,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
108
108
  * Gets or sets the amount of top padding to use for the cell content for this column.
109
109
  */
110
110
  get: function () {
111
- return this.i.k0;
111
+ return this.i.k2;
112
112
  },
113
113
  set: function (v) {
114
- this.i.k0 = +v;
115
- this._a("paddingTop", this.i.k0);
114
+ this.i.k2 = +v;
115
+ this._a("paddingTop", this.i.k2);
116
116
  },
117
117
  enumerable: false,
118
118
  configurable: true
@@ -122,11 +122,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
122
122
  * Gets or sets the amount of right padding to use for the cell content of this column.
123
123
  */
124
124
  get: function () {
125
- return this.i.kz;
125
+ return this.i.k1;
126
126
  },
127
127
  set: function (v) {
128
- this.i.kz = +v;
129
- this._a("paddingRight", this.i.kz);
128
+ this.i.k1 = +v;
129
+ this._a("paddingRight", this.i.k1);
130
130
  },
131
131
  enumerable: false,
132
132
  configurable: true
@@ -136,11 +136,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
136
136
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
137
137
  */
138
138
  get: function () {
139
- return this.i.kx;
139
+ return this.i.kz;
140
140
  },
141
141
  set: function (v) {
142
- this.i.kx = +v;
143
- this._a("paddingBottom", this.i.kx);
142
+ this.i.kz = +v;
143
+ this._a("paddingBottom", this.i.kz);
144
144
  },
145
145
  enumerable: false,
146
146
  configurable: true
@@ -150,10 +150,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
150
150
  * Gets or sets an unique name of the Column
151
151
  */
152
152
  get: function () {
153
- return this.i.mw;
153
+ return this.i.my;
154
154
  },
155
155
  set: function (v) {
156
- this.i.mw = v;
156
+ this.i.my = v;
157
157
  },
158
158
  enumerable: false,
159
159
  configurable: true
@@ -163,10 +163,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
163
163
  * Gets or sets the key used for the column binding
164
164
  */
165
165
  get: function () {
166
- return this.i.l5;
166
+ return this.i.l7;
167
167
  },
168
168
  set: function (v) {
169
- this.i.l5 = v;
169
+ this.i.l7 = v;
170
170
  },
171
171
  enumerable: false,
172
172
  configurable: true
@@ -176,10 +176,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
176
176
  * Gets or sets the text displayed in the header of the column
177
177
  */
178
178
  get: function () {
179
- return this.i.mc;
179
+ return this.i.me;
180
180
  },
181
181
  set: function (v) {
182
- this.i.mc = v;
182
+ this.i.me = v;
183
183
  },
184
184
  enumerable: false,
185
185
  configurable: true
@@ -189,10 +189,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
189
189
  * Gets the actual text displayed in the header of the column
190
190
  */
191
191
  get: function () {
192
- return this.i.lk;
192
+ return this.i.lm;
193
193
  },
194
194
  set: function (v) {
195
- this.i.lk = v;
195
+ this.i.lm = v;
196
196
  },
197
197
  enumerable: false,
198
198
  configurable: true
@@ -202,11 +202,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
202
202
  * Gets or sets the background color to use for the cells when they are selected
203
203
  */
204
204
  get: function () {
205
- return brushToString(this.i.o2);
205
+ return brushToString(this.i.o5);
206
206
  },
207
207
  set: function (v) {
208
- this.i.o2 = stringToBrush(v);
209
- this._a("selectedBackground", brushToString(this.i.o2));
208
+ this.i.o5 = stringToBrush(v);
209
+ this._a("selectedBackground", brushToString(this.i.o5));
210
210
  },
211
211
  enumerable: false,
212
212
  configurable: true
@@ -216,11 +216,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
216
216
  * Gets the actual background color that is used for the cells when they are selected
217
217
  */
218
218
  get: function () {
219
- return brushToString(this.i.ov);
219
+ return brushToString(this.i.oy);
220
220
  },
221
221
  set: function (v) {
222
- this.i.ov = stringToBrush(v);
223
- this._a("actualSelectedBackground", brushToString(this.i.ov));
222
+ this.i.oy = stringToBrush(v);
223
+ this._a("actualSelectedBackground", brushToString(this.i.oy));
224
224
  },
225
225
  enumerable: false,
226
226
  configurable: true
@@ -230,11 +230,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
230
230
  * Gets or sets the background color to use for the cells when the row is hovered.
231
231
  */
232
232
  get: function () {
233
- return brushToString(this.i.o0);
233
+ return brushToString(this.i.o3);
234
234
  },
235
235
  set: function (v) {
236
- this.i.o0 = stringToBrush(v);
237
- this._a("rowHoverBackground", brushToString(this.i.o0));
236
+ this.i.o3 = stringToBrush(v);
237
+ this._a("rowHoverBackground", brushToString(this.i.o3));
238
238
  },
239
239
  enumerable: false,
240
240
  configurable: true
@@ -244,11 +244,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
244
244
  * Gets the actual background color that is used for the cells when they are hovered.
245
245
  */
246
246
  get: function () {
247
- return brushToString(this.i.ot);
247
+ return brushToString(this.i.ow);
248
248
  },
249
249
  set: function (v) {
250
- this.i.ot = stringToBrush(v);
251
- this._a("actualHoverBackground", brushToString(this.i.ot));
250
+ this.i.ow = stringToBrush(v);
251
+ this._a("actualHoverBackground", brushToString(this.i.ow));
252
252
  },
253
253
  enumerable: false,
254
254
  configurable: true
@@ -258,11 +258,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
258
258
  * Gets or sets the text color to use for the cells when the row is hovered.
259
259
  */
260
260
  get: function () {
261
- return brushToString(this.i.o1);
261
+ return brushToString(this.i.o4);
262
262
  },
263
263
  set: function (v) {
264
- this.i.o1 = stringToBrush(v);
265
- this._a("rowHoverTextColor", brushToString(this.i.o1));
264
+ this.i.o4 = stringToBrush(v);
265
+ this._a("rowHoverTextColor", brushToString(this.i.o4));
266
266
  },
267
267
  enumerable: false,
268
268
  configurable: true
@@ -272,11 +272,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
272
272
  * Gets the actual text color that is used for the cells when they are hovered.
273
273
  */
274
274
  get: function () {
275
- return brushToString(this.i.ou);
275
+ return brushToString(this.i.ox);
276
276
  },
277
277
  set: function (v) {
278
- this.i.ou = stringToBrush(v);
279
- this._a("actualRowHoverTextColor", brushToString(this.i.ou));
278
+ this.i.ox = stringToBrush(v);
279
+ this._a("actualRowHoverTextColor", brushToString(this.i.ox));
280
280
  },
281
281
  enumerable: false,
282
282
  configurable: true
@@ -350,11 +350,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
350
350
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
351
351
  */
352
352
  get: function () {
353
- return this.i.ka;
353
+ return this.i.kb;
354
354
  },
355
355
  set: function (v) {
356
- this.i.ka = +v;
357
- this._a("minWidth", this.i.ka);
356
+ this.i.kb = +v;
357
+ this._a("minWidth", this.i.kb);
358
358
  },
359
359
  enumerable: false,
360
360
  configurable: true
@@ -556,11 +556,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
556
556
  * Gets the actual column options icon color for this column.
557
557
  */
558
558
  get: function () {
559
- return brushToString(this.i.or);
559
+ return brushToString(this.i.ou);
560
560
  },
561
561
  set: function (v) {
562
- this.i.or = stringToBrush(v);
563
- this._a("actualColumnOptionsIconColor", brushToString(this.i.or));
562
+ this.i.ou = stringToBrush(v);
563
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.ou));
564
564
  },
565
565
  enumerable: false,
566
566
  configurable: true
@@ -570,11 +570,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
570
570
  * Gets or sets the column options icon color for this column.
571
571
  */
572
572
  get: function () {
573
- return brushToString(this.i.ow);
573
+ return brushToString(this.i.oz);
574
574
  },
575
575
  set: function (v) {
576
- this.i.ow = stringToBrush(v);
577
- this._a("columnOptionsIconColor", brushToString(this.i.ow));
576
+ this.i.oz = stringToBrush(v);
577
+ this._a("columnOptionsIconColor", brushToString(this.i.oz));
578
578
  },
579
579
  enumerable: false,
580
580
  configurable: true
@@ -711,11 +711,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
711
711
  * Gets or sets the text color used for deleted rows.
712
712
  */
713
713
  get: function () {
714
- return brushToString(this.i.ox);
714
+ return brushToString(this.i.o0);
715
715
  },
716
716
  set: function (v) {
717
- this.i.ox = stringToBrush(v);
718
- this._a("deletedTextColor", brushToString(this.i.ox));
717
+ this.i.o0 = stringToBrush(v);
718
+ this._a("deletedTextColor", brushToString(this.i.o0));
719
719
  },
720
720
  enumerable: false,
721
721
  configurable: true
@@ -725,11 +725,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
725
725
  * Gets the actual text color used for deleted rows.
726
726
  */
727
727
  get: function () {
728
- return brushToString(this.i.os);
728
+ return brushToString(this.i.ov);
729
729
  },
730
730
  set: function (v) {
731
- this.i.os = stringToBrush(v);
732
- this._a("actualDeletedTextColor", brushToString(this.i.os));
731
+ this.i.ov = stringToBrush(v);
732
+ this._a("actualDeletedTextColor", brushToString(this.i.ov));
733
733
  },
734
734
  enumerable: false,
735
735
  configurable: true
@@ -739,11 +739,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
739
739
  * Gets or sets the opacity to use for unsaved edited cell values.
740
740
  */
741
741
  get: function () {
742
- return this.i.j9;
742
+ return this.i.ka;
743
743
  },
744
744
  set: function (v) {
745
- this.i.j9 = +v;
746
- this._a("editOpacity", this.i.j9);
745
+ this.i.ka = +v;
746
+ this._a("editOpacity", this.i.ka);
747
747
  },
748
748
  enumerable: false,
749
749
  configurable: true
@@ -753,11 +753,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
753
753
  * Gets the actual opacity for unsaved edited cell values.
754
754
  */
755
755
  get: function () {
756
- return this.i.j8;
756
+ return this.i.j9;
757
757
  },
758
758
  set: function (v) {
759
- this.i.j8 = +v;
760
- this._a("actualEditOpacity", this.i.j8);
759
+ this.i.j9 = +v;
760
+ this._a("actualEditOpacity", this.i.j9);
761
761
  },
762
762
  enumerable: false,
763
763
  configurable: true
@@ -847,11 +847,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
847
847
  * Gets or sets the amount of left padding to use for the cell content for this column.
848
848
  */
849
849
  get: function () {
850
- return this.i.kr;
850
+ return this.i.kt;
851
851
  },
852
852
  set: function (v) {
853
- this.i.kr = +v;
854
- this._a("mergedCellPaddingLeft", this.i.kr);
853
+ this.i.kt = +v;
854
+ this._a("mergedCellPaddingLeft", this.i.kt);
855
855
  },
856
856
  enumerable: false,
857
857
  configurable: true
@@ -861,11 +861,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
861
861
  * Gets or sets the amount of top padding to use for the cell content for this column.
862
862
  */
863
863
  get: function () {
864
- return this.i.kt;
864
+ return this.i.kv;
865
865
  },
866
866
  set: function (v) {
867
- this.i.kt = +v;
868
- this._a("mergedCellPaddingTop", this.i.kt);
867
+ this.i.kv = +v;
868
+ this._a("mergedCellPaddingTop", this.i.kv);
869
869
  },
870
870
  enumerable: false,
871
871
  configurable: true
@@ -875,11 +875,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
875
875
  * Gets or sets the amount of right padding to use for the cell content of this column.
876
876
  */
877
877
  get: function () {
878
- return this.i.ks;
878
+ return this.i.ku;
879
879
  },
880
880
  set: function (v) {
881
- this.i.ks = +v;
882
- this._a("mergedCellPaddingRight", this.i.ks);
881
+ this.i.ku = +v;
882
+ this._a("mergedCellPaddingRight", this.i.ku);
883
883
  },
884
884
  enumerable: false,
885
885
  configurable: true
@@ -889,11 +889,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
889
889
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
890
890
  */
891
891
  get: function () {
892
- return this.i.kq;
892
+ return this.i.ks;
893
893
  },
894
894
  set: function (v) {
895
- this.i.kq = +v;
896
- this._a("mergedCellPaddingBottom", this.i.kq);
895
+ this.i.ks = +v;
896
+ this._a("mergedCellPaddingBottom", this.i.ks);
897
897
  },
898
898
  enumerable: false,
899
899
  configurable: true
@@ -951,10 +951,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
951
951
  * Gets or sets the text to display in the suffix area of cells in this column.
952
952
  */
953
953
  get: function () {
954
- return this.i.nj;
954
+ return this.i.nm;
955
955
  },
956
956
  set: function (v) {
957
- this.i.nj = v;
957
+ this.i.nm = v;
958
958
  },
959
959
  enumerable: false,
960
960
  configurable: true
@@ -964,11 +964,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
964
964
  * Gets or sets the color of the text in the suffix area of the cells in this column.
965
965
  */
966
966
  get: function () {
967
- return brushToString(this.i.o5);
967
+ return brushToString(this.i.o8);
968
968
  },
969
969
  set: function (v) {
970
- this.i.o5 = stringToBrush(v);
971
- this._a("suffixTextColor", brushToString(this.i.o5));
970
+ this.i.o8 = stringToBrush(v);
971
+ this._a("suffixTextColor", brushToString(this.i.o8));
972
972
  },
973
973
  enumerable: false,
974
974
  configurable: true
@@ -997,10 +997,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
997
997
  * Gets or sets the icon to use in the suffix area of the cells in this column.
998
998
  */
999
999
  get: function () {
1000
- return this.i.nc;
1000
+ return this.i.ne;
1001
1001
  },
1002
1002
  set: function (v) {
1003
- this.i.nc = v;
1003
+ this.i.ne = v;
1004
1004
  },
1005
1005
  enumerable: false,
1006
1006
  configurable: true
@@ -1010,10 +1010,10 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1010
1010
  * Gets or sets the icon to use in the suffix area of the cells in this column.
1011
1011
  */
1012
1012
  get: function () {
1013
- return this.i.m9;
1013
+ return this.i.nb;
1014
1014
  },
1015
1015
  set: function (v) {
1016
- this.i.m9 = v;
1016
+ this.i.nb = v;
1017
1017
  },
1018
1018
  enumerable: false,
1019
1019
  configurable: true
@@ -1023,11 +1023,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1023
1023
  * Gets or sets the stroke color of suffix icon.
1024
1024
  */
1025
1025
  get: function () {
1026
- return brushToString(this.i.o4);
1026
+ return brushToString(this.i.o7);
1027
1027
  },
1028
1028
  set: function (v) {
1029
- this.i.o4 = stringToBrush(v);
1030
- this._a("suffixIconStroke", brushToString(this.i.o4));
1029
+ this.i.o7 = stringToBrush(v);
1030
+ this._a("suffixIconStroke", brushToString(this.i.o7));
1031
1031
  },
1032
1032
  enumerable: false,
1033
1033
  configurable: true
@@ -1037,11 +1037,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1037
1037
  * Gets or sets the fill color of suffix icon.
1038
1038
  */
1039
1039
  get: function () {
1040
- return brushToString(this.i.o3);
1040
+ return brushToString(this.i.o6);
1041
1041
  },
1042
1042
  set: function (v) {
1043
- this.i.o3 = stringToBrush(v);
1044
- this._a("suffixIconFill", brushToString(this.i.o3));
1043
+ this.i.o6 = stringToBrush(v);
1044
+ this._a("suffixIconFill", brushToString(this.i.o6));
1045
1045
  },
1046
1046
  enumerable: false,
1047
1047
  configurable: true
@@ -1051,11 +1051,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1051
1051
  * Gets or sets the suffix icon's viewbox x coordinate.
1052
1052
  */
1053
1053
  get: function () {
1054
- return this.i.kc;
1054
+ return this.i.kd;
1055
1055
  },
1056
1056
  set: function (v) {
1057
- this.i.kc = +v;
1058
- this._a("suffixIconViewBoxLeft", this.i.kc);
1057
+ this.i.kd = +v;
1058
+ this._a("suffixIconViewBoxLeft", this.i.kd);
1059
1059
  },
1060
1060
  enumerable: false,
1061
1061
  configurable: true
@@ -1065,11 +1065,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1065
1065
  * Gets or sets the suffix icon's viewbox y coordinate.
1066
1066
  */
1067
1067
  get: function () {
1068
- return this.i.kd;
1068
+ return this.i.ke;
1069
1069
  },
1070
1070
  set: function (v) {
1071
- this.i.kd = +v;
1072
- this._a("suffixIconViewBoxTop", this.i.kd);
1071
+ this.i.ke = +v;
1072
+ this._a("suffixIconViewBoxTop", this.i.ke);
1073
1073
  },
1074
1074
  enumerable: false,
1075
1075
  configurable: true
@@ -1079,11 +1079,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1079
1079
  * Gets or sets the suffix icon's viewbox width.
1080
1080
  */
1081
1081
  get: function () {
1082
- return this.i.ke;
1082
+ return this.i.kf;
1083
1083
  },
1084
1084
  set: function (v) {
1085
- this.i.ke = +v;
1086
- this._a("suffixIconViewBoxWidth", this.i.ke);
1085
+ this.i.kf = +v;
1086
+ this._a("suffixIconViewBoxWidth", this.i.kf);
1087
1087
  },
1088
1088
  enumerable: false,
1089
1089
  configurable: true
@@ -1093,11 +1093,25 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1093
1093
  * Gets or sets the suffix icon's viewbox height.
1094
1094
  */
1095
1095
  get: function () {
1096
- return this.i.kb;
1096
+ return this.i.kc;
1097
1097
  },
1098
1098
  set: function (v) {
1099
- this.i.kb = +v;
1100
- this._a("suffixIconViewBoxHeight", this.i.kb);
1099
+ this.i.kc = +v;
1100
+ this._a("suffixIconViewBoxHeight", this.i.kc);
1101
+ },
1102
+ enumerable: false,
1103
+ configurable: true
1104
+ });
1105
+ Object.defineProperty(IgcDataGridColumnComponent.prototype, "suffixMargin", {
1106
+ /**
1107
+ * Gets or sets the suffix margin.
1108
+ */
1109
+ get: function () {
1110
+ return this.i.kg;
1111
+ },
1112
+ set: function (v) {
1113
+ this.i.kg = +v;
1114
+ this._a("suffixMargin", this.i.kg);
1101
1115
  },
1102
1116
  enumerable: false,
1103
1117
  configurable: true
@@ -1148,11 +1162,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1148
1162
 
1149
1163
  */
1150
1164
  IgcDataGridColumnComponent.prototype.getUniqueKey = function () {
1151
- var iv = this.i.ma();
1165
+ var iv = this.i.mc();
1152
1166
  return (iv);
1153
1167
  };
1154
1168
  IgcDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
1155
- this.i.nz(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1169
+ this.i.n2(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
1156
1170
  };
1157
1171
  /**
1158
1172
  * Returns if the column has named header values.
@@ -1177,7 +1191,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1177
1191
  * @param valueName * The named header value to remove.
1178
1192
  */
1179
1193
  IgcDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
1180
- this.i.ny(valueName);
1194
+ this.i.n1(valueName);
1181
1195
  };
1182
1196
  /**
1183
1197
  * Gets the value of a named header value for this column by name.
@@ -1185,11 +1199,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1185
1199
  * @param valueName * Name of the named header value to retrieve.
1186
1200
  */
1187
1201
  IgcDataGridColumnComponent.prototype.getNamedHeaderValue = function (valueName) {
1188
- var iv = this.i.k5(valueName);
1202
+ var iv = this.i.k7(valueName);
1189
1203
  return (iv);
1190
1204
  };
1191
1205
  IgcDataGridColumnComponent.prototype.applyCustomFilter = function (filterID, index, value) {
1192
- this.i.nr(filterID, index, value);
1206
+ this.i.nu(filterID, index, value);
1193
1207
  };
1194
1208
  IgcDataGridColumnComponent.prototype.getDesiredToolbarActions = function () {
1195
1209
  var iv = this.i.getDesiredToolbarActions();
@@ -1252,7 +1266,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1252
1266
  this._actualHeaderTextChange = ev;
1253
1267
  this._actualHeaderTextChange_wrapped = function (o, e) {
1254
1268
  var ext = _this.actualHeaderText;
1255
- if (e.propertyName == 'Lk') {
1269
+ if (e.propertyName == 'Lm') {
1256
1270
  if (_this.beforeActualHeaderTextChange) {
1257
1271
  _this.beforeActualHeaderTextChange(_this, ext);
1258
1272
  }
@@ -29,10 +29,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the DateTime value for the cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.n6;
32
+ return this.i.oa;
33
33
  },
34
34
  set: function (v) {
35
- this.i.n6 = v;
35
+ this.i.oa = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,24 +42,24 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * The format string to apply to the value
43
43
  */
44
44
  get: function () {
45
- return this.i.on;
45
+ return this.i.or;
46
46
  },
47
47
  set: function (v) {
48
- this.i.on = v;
48
+ this.i.or = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
52
52
  });
53
53
  Object.defineProperty(IgcDateTimeCellInfo.prototype, "formatSpecifiers", {
54
54
  get: function () {
55
- return this.i.nx;
55
+ return this.i.n1;
56
56
  },
57
57
  set: function (v) {
58
58
  if (v && !Array.isArray(v) && typeof (v) == "string") {
59
59
  var re = /\s*(?:,|\s|$)\s*/gm;
60
60
  v = v.split(re);
61
61
  }
62
- this.i.nx = v;
62
+ this.i.n1 = v;
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -69,10 +69,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
69
69
  * The format options to apply to the value
70
70
  */
71
71
  get: function () {
72
- return this.i.og;
72
+ return this.i.ok;
73
73
  },
74
74
  set: function (v) {
75
- this.i.og = v;
75
+ this.i.ok = v;
76
76
  },
77
77
  enumerable: false,
78
78
  configurable: true
@@ -82,10 +82,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
82
82
  * Sets or gets the simple DateTimeFormat to use for the cell.
83
83
  */
84
84
  get: function () {
85
- return this.i.n2;
85
+ return this.i.n6;
86
86
  },
87
87
  set: function (v) {
88
- this.i.n2 = ensureEnum(DateTimeFormats_$type, v);
88
+ this.i.n6 = ensureEnum(DateTimeFormats_$type, v);
89
89
  },
90
90
  enumerable: false,
91
91
  configurable: true
@@ -95,10 +95,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
95
95
  * Sets or gets whether the value to use is a DateTimeOffset value.
96
96
  */
97
97
  get: function () {
98
- return this.i.n4;
98
+ return this.i.n8;
99
99
  },
100
100
  set: function (v) {
101
- this.i.n4 = ensureBool(v);
101
+ this.i.n8 = ensureBool(v);
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true