igniteui-webcomponents-data-grids 6.2.2-alpha.2 → 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
@@ -83,137 +83,137 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
83
83
  * Gets or sets the amount of left padding to use for the cell content for this column.
84
84
  */
85
85
  get paddingLeft() {
86
- return this.i.ky;
86
+ return this.i.k0;
87
87
  }
88
88
  set paddingLeft(v) {
89
- this.i.ky = +v;
90
- this._a("paddingLeft", this.i.ky);
89
+ this.i.k0 = +v;
90
+ this._a("paddingLeft", this.i.k0);
91
91
  }
92
92
  /**
93
93
  * Gets or sets the amount of top padding to use for the cell content for this column.
94
94
  */
95
95
  get paddingTop() {
96
- return this.i.k0;
96
+ return this.i.k2;
97
97
  }
98
98
  set paddingTop(v) {
99
- this.i.k0 = +v;
100
- this._a("paddingTop", this.i.k0);
99
+ this.i.k2 = +v;
100
+ this._a("paddingTop", this.i.k2);
101
101
  }
102
102
  /**
103
103
  * Gets or sets the amount of right padding to use for the cell content of this column.
104
104
  */
105
105
  get paddingRight() {
106
- return this.i.kz;
106
+ return this.i.k1;
107
107
  }
108
108
  set paddingRight(v) {
109
- this.i.kz = +v;
110
- this._a("paddingRight", this.i.kz);
109
+ this.i.k1 = +v;
110
+ this._a("paddingRight", this.i.k1);
111
111
  }
112
112
  /**
113
113
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
114
114
  */
115
115
  get paddingBottom() {
116
- return this.i.kx;
116
+ return this.i.kz;
117
117
  }
118
118
  set paddingBottom(v) {
119
- this.i.kx = +v;
120
- this._a("paddingBottom", this.i.kx);
119
+ this.i.kz = +v;
120
+ this._a("paddingBottom", this.i.kz);
121
121
  }
122
122
  /**
123
123
  * Gets or sets an unique name of the Column
124
124
  */
125
125
  get name() {
126
- return this.i.mw;
126
+ return this.i.my;
127
127
  }
128
128
  set name(v) {
129
- this.i.mw = v;
129
+ this.i.my = v;
130
130
  }
131
131
  /**
132
132
  * Gets or sets the key used for the column binding
133
133
  */
134
134
  get field() {
135
- return this.i.l5;
135
+ return this.i.l7;
136
136
  }
137
137
  set field(v) {
138
- this.i.l5 = v;
138
+ this.i.l7 = v;
139
139
  }
140
140
  /**
141
141
  * Gets or sets the text displayed in the header of the column
142
142
  */
143
143
  get headerText() {
144
- return this.i.mc;
144
+ return this.i.me;
145
145
  }
146
146
  set headerText(v) {
147
- this.i.mc = v;
147
+ this.i.me = v;
148
148
  }
149
149
  /**
150
150
  * Gets the actual text displayed in the header of the column
151
151
  */
152
152
  get actualHeaderText() {
153
- return this.i.lk;
153
+ return this.i.lm;
154
154
  }
155
155
  set actualHeaderText(v) {
156
- this.i.lk = v;
156
+ this.i.lm = v;
157
157
  }
158
158
  /**
159
159
  * Gets or sets the background color to use for the cells when they are selected
160
160
  */
161
161
  get selectedBackground() {
162
- return brushToString(this.i.o2);
162
+ return brushToString(this.i.o5);
163
163
  }
164
164
  set selectedBackground(v) {
165
- this.i.o2 = stringToBrush(v);
166
- this._a("selectedBackground", brushToString(this.i.o2));
165
+ this.i.o5 = stringToBrush(v);
166
+ this._a("selectedBackground", brushToString(this.i.o5));
167
167
  }
168
168
  /**
169
169
  * Gets the actual background color that is used for the cells when they are selected
170
170
  */
171
171
  get actualSelectedBackground() {
172
- return brushToString(this.i.ov);
172
+ return brushToString(this.i.oy);
173
173
  }
174
174
  set actualSelectedBackground(v) {
175
- this.i.ov = stringToBrush(v);
176
- this._a("actualSelectedBackground", brushToString(this.i.ov));
175
+ this.i.oy = stringToBrush(v);
176
+ this._a("actualSelectedBackground", brushToString(this.i.oy));
177
177
  }
178
178
  /**
179
179
  * Gets or sets the background color to use for the cells when the row is hovered.
180
180
  */
181
181
  get rowHoverBackground() {
182
- return brushToString(this.i.o0);
182
+ return brushToString(this.i.o3);
183
183
  }
184
184
  set rowHoverBackground(v) {
185
- this.i.o0 = stringToBrush(v);
186
- this._a("rowHoverBackground", brushToString(this.i.o0));
185
+ this.i.o3 = stringToBrush(v);
186
+ this._a("rowHoverBackground", brushToString(this.i.o3));
187
187
  }
188
188
  /**
189
189
  * Gets the actual background color that is used for the cells when they are hovered.
190
190
  */
191
191
  get actualHoverBackground() {
192
- return brushToString(this.i.ot);
192
+ return brushToString(this.i.ow);
193
193
  }
194
194
  set actualHoverBackground(v) {
195
- this.i.ot = stringToBrush(v);
196
- this._a("actualHoverBackground", brushToString(this.i.ot));
195
+ this.i.ow = stringToBrush(v);
196
+ this._a("actualHoverBackground", brushToString(this.i.ow));
197
197
  }
198
198
  /**
199
199
  * Gets or sets the text color to use for the cells when the row is hovered.
200
200
  */
201
201
  get rowHoverTextColor() {
202
- return brushToString(this.i.o1);
202
+ return brushToString(this.i.o4);
203
203
  }
204
204
  set rowHoverTextColor(v) {
205
- this.i.o1 = stringToBrush(v);
206
- this._a("rowHoverTextColor", brushToString(this.i.o1));
205
+ this.i.o4 = stringToBrush(v);
206
+ this._a("rowHoverTextColor", brushToString(this.i.o4));
207
207
  }
208
208
  /**
209
209
  * Gets the actual text color that is used for the cells when they are hovered.
210
210
  */
211
211
  get actualRowHoverTextColor() {
212
- return brushToString(this.i.ou);
212
+ return brushToString(this.i.ox);
213
213
  }
214
214
  set actualRowHoverTextColor(v) {
215
- this.i.ou = stringToBrush(v);
216
- this._a("actualRowHoverTextColor", brushToString(this.i.ou));
215
+ this.i.ox = stringToBrush(v);
216
+ this._a("actualRowHoverTextColor", brushToString(this.i.ox));
217
217
  }
218
218
  /**
219
219
  * Gets or sets the animation settings to use for this column.
@@ -275,11 +275,11 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
275
275
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
276
276
  */
277
277
  get minWidth() {
278
- return this.i.ka;
278
+ return this.i.kb;
279
279
  }
280
280
  set minWidth(v) {
281
- this.i.ka = +v;
282
- this._a("minWidth", this.i.ka);
281
+ this.i.kb = +v;
282
+ this._a("minWidth", this.i.kb);
283
283
  }
284
284
  /**
285
285
  * Gets whether this column was projected from markup/templates and is constrained.
@@ -425,21 +425,21 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
425
425
  * Gets the actual column options icon color for this column.
426
426
  */
427
427
  get actualColumnOptionsIconColor() {
428
- return brushToString(this.i.or);
428
+ return brushToString(this.i.ou);
429
429
  }
430
430
  set actualColumnOptionsIconColor(v) {
431
- this.i.or = stringToBrush(v);
432
- this._a("actualColumnOptionsIconColor", brushToString(this.i.or));
431
+ this.i.ou = stringToBrush(v);
432
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.ou));
433
433
  }
434
434
  /**
435
435
  * Gets or sets the column options icon color for this column.
436
436
  */
437
437
  get columnOptionsIconColor() {
438
- return brushToString(this.i.ow);
438
+ return brushToString(this.i.oz);
439
439
  }
440
440
  set columnOptionsIconColor(v) {
441
- this.i.ow = stringToBrush(v);
442
- this._a("columnOptionsIconColor", brushToString(this.i.ow));
441
+ this.i.oz = stringToBrush(v);
442
+ this._a("columnOptionsIconColor", brushToString(this.i.oz));
443
443
  }
444
444
  /**
445
445
  * Gets or sets how the column option icon will behave in the column header.
@@ -536,41 +536,41 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
536
536
  * Gets or sets the text color used for deleted rows.
537
537
  */
538
538
  get deletedTextColor() {
539
- return brushToString(this.i.ox);
539
+ return brushToString(this.i.o0);
540
540
  }
541
541
  set deletedTextColor(v) {
542
- this.i.ox = stringToBrush(v);
543
- this._a("deletedTextColor", brushToString(this.i.ox));
542
+ this.i.o0 = stringToBrush(v);
543
+ this._a("deletedTextColor", brushToString(this.i.o0));
544
544
  }
545
545
  /**
546
546
  * Gets the actual text color used for deleted rows.
547
547
  */
548
548
  get actualDeletedTextColor() {
549
- return brushToString(this.i.os);
549
+ return brushToString(this.i.ov);
550
550
  }
551
551
  set actualDeletedTextColor(v) {
552
- this.i.os = stringToBrush(v);
553
- this._a("actualDeletedTextColor", brushToString(this.i.os));
552
+ this.i.ov = stringToBrush(v);
553
+ this._a("actualDeletedTextColor", brushToString(this.i.ov));
554
554
  }
555
555
  /**
556
556
  * Gets or sets the opacity to use for unsaved edited cell values.
557
557
  */
558
558
  get editOpacity() {
559
- return this.i.j9;
559
+ return this.i.ka;
560
560
  }
561
561
  set editOpacity(v) {
562
- this.i.j9 = +v;
563
- this._a("editOpacity", this.i.j9);
562
+ this.i.ka = +v;
563
+ this._a("editOpacity", this.i.ka);
564
564
  }
565
565
  /**
566
566
  * Gets the actual opacity for unsaved edited cell values.
567
567
  */
568
568
  get actualEditOpacity() {
569
- return this.i.j8;
569
+ return this.i.j9;
570
570
  }
571
571
  set actualEditOpacity(v) {
572
- this.i.j8 = +v;
573
- this._a("actualEditOpacity", this.i.j8);
572
+ this.i.j9 = +v;
573
+ this._a("actualEditOpacity", this.i.j9);
574
574
  }
575
575
  /**
576
576
  * Gets or sets the font style to use for unsaved cell edits.
@@ -636,41 +636,41 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
636
636
  * Gets or sets the amount of left padding to use for the cell content for this column.
637
637
  */
638
638
  get mergedCellPaddingLeft() {
639
- return this.i.kr;
639
+ return this.i.kt;
640
640
  }
641
641
  set mergedCellPaddingLeft(v) {
642
- this.i.kr = +v;
643
- this._a("mergedCellPaddingLeft", this.i.kr);
642
+ this.i.kt = +v;
643
+ this._a("mergedCellPaddingLeft", this.i.kt);
644
644
  }
645
645
  /**
646
646
  * Gets or sets the amount of top padding to use for the cell content for this column.
647
647
  */
648
648
  get mergedCellPaddingTop() {
649
- return this.i.kt;
649
+ return this.i.kv;
650
650
  }
651
651
  set mergedCellPaddingTop(v) {
652
- this.i.kt = +v;
653
- this._a("mergedCellPaddingTop", this.i.kt);
652
+ this.i.kv = +v;
653
+ this._a("mergedCellPaddingTop", this.i.kv);
654
654
  }
655
655
  /**
656
656
  * Gets or sets the amount of right padding to use for the cell content of this column.
657
657
  */
658
658
  get mergedCellPaddingRight() {
659
- return this.i.ks;
659
+ return this.i.ku;
660
660
  }
661
661
  set mergedCellPaddingRight(v) {
662
- this.i.ks = +v;
663
- this._a("mergedCellPaddingRight", this.i.ks);
662
+ this.i.ku = +v;
663
+ this._a("mergedCellPaddingRight", this.i.ku);
664
664
  }
665
665
  /**
666
666
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
667
667
  */
668
668
  get mergedCellPaddingBottom() {
669
- return this.i.kq;
669
+ return this.i.ks;
670
670
  }
671
671
  set mergedCellPaddingBottom(v) {
672
- this.i.kq = +v;
673
- this._a("mergedCellPaddingBottom", this.i.kq);
672
+ this.i.ks = +v;
673
+ this._a("mergedCellPaddingBottom", this.i.ks);
674
674
  }
675
675
  /**
676
676
  * Gets or sets whether UI filters are case sensitive or not.
@@ -716,20 +716,20 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
716
716
  * Gets or sets the text to display in the suffix area of cells in this column.
717
717
  */
718
718
  get suffixText() {
719
- return this.i.nj;
719
+ return this.i.nm;
720
720
  }
721
721
  set suffixText(v) {
722
- this.i.nj = v;
722
+ this.i.nm = v;
723
723
  }
724
724
  /**
725
725
  * Gets or sets the color of the text in the suffix area of the cells in this column.
726
726
  */
727
727
  get suffixTextColor() {
728
- return brushToString(this.i.o5);
728
+ return brushToString(this.i.o8);
729
729
  }
730
730
  set suffixTextColor(v) {
731
- this.i.o5 = stringToBrush(v);
732
- this._a("suffixTextColor", brushToString(this.i.o5));
731
+ this.i.o8 = stringToBrush(v);
732
+ this._a("suffixTextColor", brushToString(this.i.o8));
733
733
  }
734
734
  /**
735
735
  * Gets or sets the font of the suffix text.
@@ -750,79 +750,89 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
750
750
  * Gets or sets the icon to use in the suffix area of the cells in this column.
751
751
  */
752
752
  get suffixIconName() {
753
- return this.i.nc;
753
+ return this.i.ne;
754
754
  }
755
755
  set suffixIconName(v) {
756
- this.i.nc = v;
756
+ this.i.ne = v;
757
757
  }
758
758
  /**
759
759
  * Gets or sets the icon to use in the suffix area of the cells in this column.
760
760
  */
761
761
  get suffixIconCollectionName() {
762
- return this.i.m9;
762
+ return this.i.nb;
763
763
  }
764
764
  set suffixIconCollectionName(v) {
765
- this.i.m9 = v;
765
+ this.i.nb = v;
766
766
  }
767
767
  /**
768
768
  * Gets or sets the stroke color of suffix icon.
769
769
  */
770
770
  get suffixIconStroke() {
771
- return brushToString(this.i.o4);
771
+ return brushToString(this.i.o7);
772
772
  }
773
773
  set suffixIconStroke(v) {
774
- this.i.o4 = stringToBrush(v);
775
- this._a("suffixIconStroke", brushToString(this.i.o4));
774
+ this.i.o7 = stringToBrush(v);
775
+ this._a("suffixIconStroke", brushToString(this.i.o7));
776
776
  }
777
777
  /**
778
778
  * Gets or sets the fill color of suffix icon.
779
779
  */
780
780
  get suffixIconFill() {
781
- return brushToString(this.i.o3);
781
+ return brushToString(this.i.o6);
782
782
  }
783
783
  set suffixIconFill(v) {
784
- this.i.o3 = stringToBrush(v);
785
- this._a("suffixIconFill", brushToString(this.i.o3));
784
+ this.i.o6 = stringToBrush(v);
785
+ this._a("suffixIconFill", brushToString(this.i.o6));
786
786
  }
787
787
  /**
788
788
  * Gets or sets the suffix icon's viewbox x coordinate.
789
789
  */
790
790
  get suffixIconViewBoxLeft() {
791
- return this.i.kc;
791
+ return this.i.kd;
792
792
  }
793
793
  set suffixIconViewBoxLeft(v) {
794
- this.i.kc = +v;
795
- this._a("suffixIconViewBoxLeft", this.i.kc);
794
+ this.i.kd = +v;
795
+ this._a("suffixIconViewBoxLeft", this.i.kd);
796
796
  }
797
797
  /**
798
798
  * Gets or sets the suffix icon's viewbox y coordinate.
799
799
  */
800
800
  get suffixIconViewBoxTop() {
801
- return this.i.kd;
801
+ return this.i.ke;
802
802
  }
803
803
  set suffixIconViewBoxTop(v) {
804
- this.i.kd = +v;
805
- this._a("suffixIconViewBoxTop", this.i.kd);
804
+ this.i.ke = +v;
805
+ this._a("suffixIconViewBoxTop", this.i.ke);
806
806
  }
807
807
  /**
808
808
  * Gets or sets the suffix icon's viewbox width.
809
809
  */
810
810
  get suffixIconViewBoxWidth() {
811
- return this.i.ke;
811
+ return this.i.kf;
812
812
  }
813
813
  set suffixIconViewBoxWidth(v) {
814
- this.i.ke = +v;
815
- this._a("suffixIconViewBoxWidth", this.i.ke);
814
+ this.i.kf = +v;
815
+ this._a("suffixIconViewBoxWidth", this.i.kf);
816
816
  }
817
817
  /**
818
818
  * Gets or sets the suffix icon's viewbox height.
819
819
  */
820
820
  get suffixIconViewBoxHeight() {
821
- return this.i.kb;
821
+ return this.i.kc;
822
822
  }
823
823
  set suffixIconViewBoxHeight(v) {
824
- this.i.kb = +v;
825
- this._a("suffixIconViewBoxHeight", this.i.kb);
824
+ this.i.kc = +v;
825
+ this._a("suffixIconViewBoxHeight", this.i.kc);
826
+ }
827
+ /**
828
+ * Gets or sets the suffix margin.
829
+ */
830
+ get suffixMargin() {
831
+ return this.i.kg;
832
+ }
833
+ set suffixMargin(v) {
834
+ this.i.kg = +v;
835
+ this._a("suffixMargin", this.i.kg);
826
836
  }
827
837
  /**
828
838
  * Gets or sets the text decoration to apply to cells in this column.
@@ -866,11 +876,11 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
866
876
 
867
877
  */
868
878
  getUniqueKey() {
869
- let iv = this.i.ma();
879
+ let iv = this.i.mc();
870
880
  return (iv);
871
881
  }
872
882
  setNamedHeaderValue(valueName, animationType, value) {
873
- this.i.nz(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
883
+ this.i.n2(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
874
884
  }
875
885
  /**
876
886
  * Returns if the column has named header values.
@@ -895,7 +905,7 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
895
905
  * @param valueName * The named header value to remove.
896
906
  */
897
907
  removeNamedHeaderValue(valueName) {
898
- this.i.ny(valueName);
908
+ this.i.n1(valueName);
899
909
  }
900
910
  /**
901
911
  * Gets the value of a named header value for this column by name.
@@ -903,11 +913,11 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
903
913
  * @param valueName * Name of the named header value to retrieve.
904
914
  */
905
915
  getNamedHeaderValue(valueName) {
906
- let iv = this.i.k5(valueName);
916
+ let iv = this.i.k7(valueName);
907
917
  return (iv);
908
918
  }
909
919
  applyCustomFilter(filterID, index, value) {
910
- this.i.nr(filterID, index, value);
920
+ this.i.nu(filterID, index, value);
911
921
  }
912
922
  getDesiredToolbarActions() {
913
923
  let iv = this.i.getDesiredToolbarActions();
@@ -963,7 +973,7 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
963
973
  this._actualHeaderTextChange = ev;
964
974
  this._actualHeaderTextChange_wrapped = (o, e) => {
965
975
  let ext = this.actualHeaderText;
966
- if (e.propertyName == 'Lk') {
976
+ if (e.propertyName == 'Lm') {
967
977
  if (this.beforeActualHeaderTextChange) {
968
978
  this.beforeActualHeaderTextChange(this, ext);
969
979
  }
@@ -22,56 +22,56 @@ export class IgcDateTimeCellInfo extends IgcCellInfo {
22
22
  * Sets or gets the DateTime value for the cell.
23
23
  */
24
24
  get dateTimeValue() {
25
- return this.i.n6;
25
+ return this.i.oa;
26
26
  }
27
27
  set dateTimeValue(v) {
28
- this.i.n6 = v;
28
+ this.i.oa = v;
29
29
  }
30
30
  /**
31
31
  * The format string to apply to the value
32
32
  */
33
33
  get formatStringOverride() {
34
- return this.i.on;
34
+ return this.i.or;
35
35
  }
36
36
  set formatStringOverride(v) {
37
- this.i.on = v;
37
+ this.i.or = v;
38
38
  }
39
39
  get formatSpecifiers() {
40
- return this.i.nx;
40
+ return this.i.n1;
41
41
  }
42
42
  set formatSpecifiers(v) {
43
43
  if (v && !Array.isArray(v) && typeof (v) == "string") {
44
44
  const re = /\s*(?:,|\s|$)\s*/gm;
45
45
  v = v.split(re);
46
46
  }
47
- this.i.nx = v;
47
+ this.i.n1 = v;
48
48
  }
49
49
  /**
50
50
  * The format options to apply to the value
51
51
  */
52
52
  get formatOverride() {
53
- return this.i.og;
53
+ return this.i.ok;
54
54
  }
55
55
  set formatOverride(v) {
56
- this.i.og = v;
56
+ this.i.ok = v;
57
57
  }
58
58
  /**
59
59
  * Sets or gets the simple DateTimeFormat to use for the cell.
60
60
  */
61
61
  get dateTimeFormat() {
62
- return this.i.n2;
62
+ return this.i.n6;
63
63
  }
64
64
  set dateTimeFormat(v) {
65
- this.i.n2 = ensureEnum(DateTimeFormats_$type, v);
65
+ this.i.n6 = ensureEnum(DateTimeFormats_$type, v);
66
66
  }
67
67
  /**
68
68
  * Sets or gets whether the value to use is a DateTimeOffset value.
69
69
  */
70
70
  get isOffsetValue() {
71
- return this.i.n4;
71
+ return this.i.n8;
72
72
  }
73
73
  set isOffsetValue(v) {
74
- this.i.n4 = ensureBool(v);
74
+ this.i.n8 = ensureBool(v);
75
75
  }
76
76
  findByName(name) {
77
77
  var baseResult = super.findByName(name);