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
@@ -79,10 +79,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
79
79
  * Gets or sets the string to prefix a negative value. If FormatString is specificied this value is ignored.
80
80
  */
81
81
  get: function () {
82
- return this.i.sr;
82
+ return this.i.s5;
83
83
  },
84
84
  set: function (v) {
85
- this.i.sr = v;
85
+ this.i.s5 = v;
86
86
  },
87
87
  enumerable: false,
88
88
  configurable: true
@@ -92,10 +92,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
92
92
  * Gets or sets the string to prefix a positive value. If FormatString is specificied this value is ignored.
93
93
  */
94
94
  get: function () {
95
- return this.i.sv;
95
+ return this.i.s9;
96
96
  },
97
97
  set: function (v) {
98
- this.i.sv = v;
98
+ this.i.s9 = v;
99
99
  },
100
100
  enumerable: false,
101
101
  configurable: true
@@ -105,10 +105,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
105
105
  * Gets or sets the string to suffix a negative value. If FormatString is specificied this value is ignored.
106
106
  */
107
107
  get: function () {
108
- return this.i.st;
108
+ return this.i.s7;
109
109
  },
110
110
  set: function (v) {
111
- this.i.st = v;
111
+ this.i.s7 = v;
112
112
  },
113
113
  enumerable: false,
114
114
  configurable: true
@@ -118,10 +118,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
118
118
  * Gets or sets the string to suffix a positive value. If FormatString is specificied this value is ignored.
119
119
  */
120
120
  get: function () {
121
- return this.i.sx;
121
+ return this.i.tb;
122
122
  },
123
123
  set: function (v) {
124
- this.i.sx = v;
124
+ this.i.tb = v;
125
125
  },
126
126
  enumerable: false,
127
127
  configurable: true
@@ -131,11 +131,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
131
131
  * Gets or sets the maximum fraction digits. If FormatString is specificied this value is ignored.
132
132
  */
133
133
  get: function () {
134
- return this.i.r6;
134
+ return this.i.sj;
135
135
  },
136
136
  set: function (v) {
137
- this.i.r6 = +v;
138
- this._a("maxFractionDigits", this.i.r6);
137
+ this.i.sj = +v;
138
+ this._a("maxFractionDigits", this.i.sj);
139
139
  },
140
140
  enumerable: false,
141
141
  configurable: true
@@ -145,11 +145,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
145
145
  * Gets or sets the minimum fraction digits. If FormatString is specificied this value is ignored.
146
146
  */
147
147
  get: function () {
148
- return this.i.r7;
148
+ return this.i.sk;
149
149
  },
150
150
  set: function (v) {
151
- this.i.r7 = +v;
152
- this._a("minFractionDigits", this.i.r7);
151
+ this.i.sk = +v;
152
+ this._a("minFractionDigits", this.i.sk);
153
153
  },
154
154
  enumerable: false,
155
155
  configurable: true
@@ -159,11 +159,26 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
159
159
  * Gets or sets the minimum integer digits. If FormatString is specificied this value is ignored.
160
160
  */
161
161
  get: function () {
162
- return this.i.r8;
162
+ return this.i.sl;
163
163
  },
164
164
  set: function (v) {
165
- this.i.r8 = +v;
166
- this._a("minIntegerDigits", this.i.r8);
165
+ this.i.sl = +v;
166
+ this._a("minIntegerDigits", this.i.sl);
167
+ },
168
+ enumerable: false,
169
+ configurable: true
170
+ });
171
+ Object.defineProperty(IgcNumericColumnComponent.prototype, "isPercent", {
172
+ /**
173
+ * Gets or sets whether the column's values are displayed as percentages.
174
+ * When true, the raw numeric value is multiplied by 100 before it is formatted for display.
175
+ */
176
+ get: function () {
177
+ return this.i.sd;
178
+ },
179
+ set: function (v) {
180
+ this.i.sd = ensureBool(v);
181
+ this._a("isPercent", this.i.sd);
167
182
  },
168
183
  enumerable: false,
169
184
  configurable: true
@@ -173,11 +188,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
173
188
  * Gets or sets whether to show a grouping separator. If FormatString is specificied this value is ignored.
174
189
  */
175
190
  get: function () {
176
- return this.i.r1;
191
+ return this.i.se;
177
192
  },
178
193
  set: function (v) {
179
- this.i.r1 = ensureBool(v);
180
- this._a("showGroupingSeparator", this.i.r1);
194
+ this.i.se = ensureBool(v);
195
+ this._a("showGroupingSeparator", this.i.se);
181
196
  },
182
197
  enumerable: false,
183
198
  configurable: true
@@ -187,24 +202,24 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
187
202
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
188
203
  */
189
204
  get: function () {
190
- return this.i.sm;
205
+ return this.i.sz;
191
206
  },
192
207
  set: function (v) {
193
- this.i.sm = v;
208
+ this.i.sz = v;
194
209
  },
195
210
  enumerable: false,
196
211
  configurable: true
197
212
  });
198
213
  Object.defineProperty(IgcNumericColumnComponent.prototype, "formatSpecifiers", {
199
214
  get: function () {
200
- return this.i.rx;
215
+ return this.i.r8;
201
216
  },
202
217
  set: function (v) {
203
218
  if (v && !Array.isArray(v) && typeof (v) == "string") {
204
219
  var re = /\s*(?:,|\s|$)\s*/gm;
205
220
  v = v.split(re);
206
221
  }
207
- this.i.rx = v;
222
+ this.i.r8 = v;
208
223
  },
209
224
  enumerable: false,
210
225
  configurable: true
@@ -214,10 +229,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
214
229
  * Gets or sets the INTL NumericFormat object to use for formatting the date values.
215
230
  */
216
231
  get: function () {
217
- return this.i.sb;
232
+ return this.i.so;
218
233
  },
219
234
  set: function (v) {
220
- this.i.sb = v;
235
+ this.i.so = v;
221
236
  },
222
237
  enumerable: false,
223
238
  configurable: true
@@ -227,11 +242,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
227
242
  * Gets or sets the editor type used for editing cells in this column.
228
243
  */
229
244
  get: function () {
230
- return this.i.rz;
245
+ return this.i.sa;
231
246
  },
232
247
  set: function (v) {
233
- this.i.rz = ensureEnum(EditorType_$type, v);
234
- this._a("editorType", enumToString(EditorType_$type, this.i.rz));
248
+ this.i.sa = ensureEnum(EditorType_$type, v);
249
+ this._a("editorType", enumToString(EditorType_$type, this.i.sa));
235
250
  },
236
251
  enumerable: false,
237
252
  configurable: true
@@ -241,10 +256,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
241
256
  * Gets or sets the ComboBox data source.
242
257
  */
243
258
  get: function () {
244
- return this.i.sa;
259
+ return this.i.sn;
245
260
  },
246
261
  set: function (v) {
247
- this.i.sa = v;
262
+ this.i.sn = v;
248
263
  },
249
264
  enumerable: false,
250
265
  configurable: true
@@ -254,10 +269,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
254
269
  * Gets or sets the ComboBox text field.
255
270
  */
256
271
  get: function () {
257
- return this.i.sh;
272
+ return this.i.su;
258
273
  },
259
274
  set: function (v) {
260
- this.i.sh = v;
275
+ this.i.su = v;
261
276
  },
262
277
  enumerable: false,
263
278
  configurable: true
@@ -267,10 +282,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
267
282
  * Gets or sets the ComboBox value field.
268
283
  */
269
284
  get: function () {
270
- return this.i.si;
285
+ return this.i.sv;
271
286
  },
272
287
  set: function (v) {
273
- this.i.si = v;
288
+ this.i.sv = v;
274
289
  },
275
290
  enumerable: false,
276
291
  configurable: true
@@ -29,10 +29,10 @@ var IgcSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the resolved text for the section header cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.oh;
32
+ return this.i.op;
33
33
  },
34
34
  set: function (v) {
35
- this.i.oh = v;
35
+ this.i.op = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,10 +42,10 @@ var IgcSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * Sets or gets the resolved summary text for the section header cell.
43
43
  */
44
44
  get: function () {
45
- return this.i.of;
45
+ return this.i.on;
46
46
  },
47
47
  set: function (v) {
48
- this.i.of = v;
48
+ this.i.on = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
@@ -55,10 +55,10 @@ var IgcSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
55
55
  * Sets or gets how summaries are displayed in the section header cell.
56
56
  */
57
57
  get: function () {
58
- return this.i.n6;
58
+ return this.i.oe;
59
59
  },
60
60
  set: function (v) {
61
- this.i.n6 = ensureEnum(GroupSummaryDisplayMode_$type, v);
61
+ this.i.oe = ensureEnum(GroupSummaryDisplayMode_$type, v);
62
62
  },
63
63
  enumerable: false,
64
64
  configurable: true
@@ -76,22 +76,72 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
76
76
  };
77
77
  Object.defineProperty(IgcSectionHeaderComponent.prototype, "selectedBackground", {
78
78
  get: function () {
79
- return brushToString(this.i.hv);
79
+ return brushToString(this.i.h9);
80
80
  },
81
81
  set: function (v) {
82
- this.i.hv = stringToBrush(v);
83
- this._a("selectedBackground", brushToString(this.i.hv));
82
+ this.i.h9 = stringToBrush(v);
83
+ this._a("selectedBackground", brushToString(this.i.h9));
84
84
  },
85
85
  enumerable: false,
86
86
  configurable: true
87
87
  });
88
88
  Object.defineProperty(IgcSectionHeaderComponent.prototype, "actualSelectedBackground", {
89
89
  get: function () {
90
- return brushToString(this.i.hu);
90
+ return brushToString(this.i.h6);
91
91
  },
92
92
  set: function (v) {
93
- this.i.hu = stringToBrush(v);
94
- this._a("actualSelectedBackground", brushToString(this.i.hu));
93
+ this.i.h6 = stringToBrush(v);
94
+ this._a("actualSelectedBackground", brushToString(this.i.h6));
95
+ },
96
+ enumerable: false,
97
+ configurable: true
98
+ });
99
+ Object.defineProperty(IgcSectionHeaderComponent.prototype, "selectedTextColor", {
100
+ get: function () {
101
+ return brushToString(this.i.ia);
102
+ },
103
+ set: function (v) {
104
+ this.i.ia = stringToBrush(v);
105
+ this._a("selectedTextColor", brushToString(this.i.ia));
106
+ },
107
+ enumerable: false,
108
+ configurable: true
109
+ });
110
+ Object.defineProperty(IgcSectionHeaderComponent.prototype, "actualSelectedTextColor", {
111
+ get: function () {
112
+ return brushToString(this.i.h7);
113
+ },
114
+ set: function (v) {
115
+ this.i.h7 = stringToBrush(v);
116
+ this._a("actualSelectedTextColor", brushToString(this.i.h7));
117
+ },
118
+ enumerable: false,
119
+ configurable: true
120
+ });
121
+ Object.defineProperty(IgcSectionHeaderComponent.prototype, "expansionIndicatorIconColor", {
122
+ /**
123
+ * Gets or sets the color of the section header's expansion indicator icon. When unset, the icon defers to the grid-level color or the resolved section header text color.
124
+ */
125
+ get: function () {
126
+ return brushToString(this.i.h8);
127
+ },
128
+ set: function (v) {
129
+ this.i.h8 = stringToBrush(v);
130
+ this._a("expansionIndicatorIconColor", brushToString(this.i.h8));
131
+ },
132
+ enumerable: false,
133
+ configurable: true
134
+ });
135
+ Object.defineProperty(IgcSectionHeaderComponent.prototype, "actualExpansionIndicatorIconColor", {
136
+ /**
137
+ * Gets the resolved color of the section header's expansion indicator icon.
138
+ */
139
+ get: function () {
140
+ return brushToString(this.i.h5);
141
+ },
142
+ set: function (v) {
143
+ this.i.h5 = stringToBrush(v);
144
+ this._a("actualExpansionIndicatorIconColor", brushToString(this.i.h5));
95
145
  },
96
146
  enumerable: false,
97
147
  configurable: true
@@ -101,11 +151,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
101
151
  * Gets or sets the amount of left padding to use for the cell content for this column.
102
152
  */
103
153
  get: function () {
104
- return this.i.hd;
154
+ return this.i.he;
105
155
  },
106
156
  set: function (v) {
107
- this.i.hd = +v;
108
- this._a("paddingLeft", this.i.hd);
157
+ this.i.he = +v;
158
+ this._a("paddingLeft", this.i.he);
109
159
  },
110
160
  enumerable: false,
111
161
  configurable: true
@@ -115,11 +165,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
115
165
  * Gets or sets the amount of top padding to use for the cell content for this column.
116
166
  */
117
167
  get: function () {
118
- return this.i.hf;
168
+ return this.i.hg;
119
169
  },
120
170
  set: function (v) {
121
- this.i.hf = +v;
122
- this._a("paddingTop", this.i.hf);
171
+ this.i.hg = +v;
172
+ this._a("paddingTop", this.i.hg);
123
173
  },
124
174
  enumerable: false,
125
175
  configurable: true
@@ -129,11 +179,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
129
179
  * Gets or sets the amount of right padding to use for the cell content of this column.
130
180
  */
131
181
  get: function () {
132
- return this.i.he;
182
+ return this.i.hf;
133
183
  },
134
184
  set: function (v) {
135
- this.i.he = +v;
136
- this._a("paddingRight", this.i.he);
185
+ this.i.hf = +v;
186
+ this._a("paddingRight", this.i.hf);
137
187
  },
138
188
  enumerable: false,
139
189
  configurable: true
@@ -143,33 +193,33 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
143
193
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
144
194
  */
145
195
  get: function () {
146
- return this.i.hc;
196
+ return this.i.hd;
147
197
  },
148
198
  set: function (v) {
149
- this.i.hc = +v;
150
- this._a("paddingBottom", this.i.hc);
199
+ this.i.hd = +v;
200
+ this._a("paddingBottom", this.i.hd);
151
201
  },
152
202
  enumerable: false,
153
203
  configurable: true
154
204
  });
155
205
  Object.defineProperty(IgcSectionHeaderComponent.prototype, "isCollapsable", {
156
206
  get: function () {
157
- return this.i.g6;
207
+ return this.i.g7;
158
208
  },
159
209
  set: function (v) {
160
- this.i.g6 = ensureBool(v);
161
- this._a("isCollapsable", this.i.g6);
210
+ this.i.g7 = ensureBool(v);
211
+ this._a("isCollapsable", this.i.g7);
162
212
  },
163
213
  enumerable: false,
164
214
  configurable: true
165
215
  });
166
216
  Object.defineProperty(IgcSectionHeaderComponent.prototype, "summaryDisplayMode", {
167
217
  get: function () {
168
- return this.i.g3;
218
+ return this.i.g4;
169
219
  },
170
220
  set: function (v) {
171
- this.i.g3 = ensureEnum(GroupSummaryDisplayMode_$type, v);
172
- this._a("summaryDisplayMode", enumToString(GroupSummaryDisplayMode_$type, this.i.g3));
221
+ this.i.g4 = ensureEnum(GroupSummaryDisplayMode_$type, v);
222
+ this._a("summaryDisplayMode", enumToString(GroupSummaryDisplayMode_$type, this.i.g4));
173
223
  },
174
224
  enumerable: false,
175
225
  configurable: true
@@ -29,10 +29,10 @@ var IgcSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the resolved summary label for the summary cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.n9;
32
+ return this.i.oh;
33
33
  },
34
34
  set: function (v) {
35
- this.i.n9 = v;
35
+ this.i.oh = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,10 +42,10 @@ var IgcSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * Sets or gets the resolved summary value for the sumamry cell.
43
43
  */
44
44
  get: function () {
45
- return this.i.ob;
45
+ return this.i.oj;
46
46
  },
47
47
  set: function (v) {
48
- this.i.ob = v;
48
+ this.i.oj = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
@@ -55,25 +55,25 @@ var IgcSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
55
55
  * Gets or sets the color of the text for the summary label in the cell.
56
56
  */
57
57
  get: function () {
58
- return brushToString(this.i.og);
58
+ return brushToString(this.i.oo);
59
59
  },
60
60
  set: function (v) {
61
- this.i.og = stringToBrush(v);
61
+ this.i.oo = stringToBrush(v);
62
62
  },
63
63
  enumerable: false,
64
64
  configurable: true
65
65
  });
66
66
  Object.defineProperty(IgcSummaryCellInfo.prototype, "font", {
67
67
  get: function () {
68
- if (this.i.n2 == null) {
68
+ if (this.i.oa == null) {
69
69
  return null;
70
70
  }
71
- return this.i.n2.fontString;
71
+ return this.i.oa.fontString;
72
72
  },
73
73
  set: function (v) {
74
74
  var fi = new FontInfo();
75
75
  fi.fontString = v;
76
- this.i.n2 = fi;
76
+ this.i.oa = fi;
77
77
  },
78
78
  enumerable: false,
79
79
  configurable: true
@@ -65,11 +65,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
65
65
  * Gets or sets the background color for summary cells when selected.
66
66
  */
67
67
  get: function () {
68
- return brushToString(this.i.hy);
68
+ return brushToString(this.i.hz);
69
69
  },
70
70
  set: function (v) {
71
- this.i.hy = stringToBrush(v);
72
- this._a("selectedBackground", brushToString(this.i.hy));
71
+ this.i.hz = stringToBrush(v);
72
+ this._a("selectedBackground", brushToString(this.i.hz));
73
73
  },
74
74
  enumerable: false,
75
75
  configurable: true
@@ -79,11 +79,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
79
79
  * Gets the actual background color for summary cells when selected.
80
80
  */
81
81
  get: function () {
82
- return brushToString(this.i.hv);
82
+ return brushToString(this.i.hw);
83
83
  },
84
84
  set: function (v) {
85
- this.i.hv = stringToBrush(v);
86
- this._a("actualSelectedBackground", brushToString(this.i.hv));
85
+ this.i.hw = stringToBrush(v);
86
+ this._a("actualSelectedBackground", brushToString(this.i.hw));
87
87
  },
88
88
  enumerable: false,
89
89
  configurable: true
@@ -93,11 +93,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
93
93
  * Gets or sets the text color for the summary labels.
94
94
  */
95
95
  get: function () {
96
- return brushToString(this.i.hz);
96
+ return brushToString(this.i.h0);
97
97
  },
98
98
  set: function (v) {
99
- this.i.hz = stringToBrush(v);
100
- this._a("summaryLabelTextColor", brushToString(this.i.hz));
99
+ this.i.h0 = stringToBrush(v);
100
+ this._a("summaryLabelTextColor", brushToString(this.i.h0));
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
@@ -107,11 +107,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
107
107
  * Gets the actual text color for the summary labels.
108
108
  */
109
109
  get: function () {
110
- return brushToString(this.i.hw);
110
+ return brushToString(this.i.hx);
111
111
  },
112
112
  set: function (v) {
113
- this.i.hw = stringToBrush(v);
114
- this._a("actualSummaryLabelTextColor", brushToString(this.i.hw));
113
+ this.i.hx = stringToBrush(v);
114
+ this._a("actualSummaryLabelTextColor", brushToString(this.i.hx));
115
115
  },
116
116
  enumerable: false,
117
117
  configurable: true
@@ -140,11 +140,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
140
140
  * Gets or sets the amount of left padding to use for the cell content for this column.
141
141
  */
142
142
  get: function () {
143
- return this.i.hb;
143
+ return this.i.hc;
144
144
  },
145
145
  set: function (v) {
146
- this.i.hb = +v;
147
- this._a("paddingLeft", this.i.hb);
146
+ this.i.hc = +v;
147
+ this._a("paddingLeft", this.i.hc);
148
148
  },
149
149
  enumerable: false,
150
150
  configurable: true
@@ -154,11 +154,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
154
154
  * Gets or sets the amount of top padding to use for the cell content for this column.
155
155
  */
156
156
  get: function () {
157
- return this.i.hd;
157
+ return this.i.he;
158
158
  },
159
159
  set: function (v) {
160
- this.i.hd = +v;
161
- this._a("paddingTop", this.i.hd);
160
+ this.i.he = +v;
161
+ this._a("paddingTop", this.i.he);
162
162
  },
163
163
  enumerable: false,
164
164
  configurable: true
@@ -168,11 +168,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
168
168
  * Gets or sets the amount of right padding to use for the cell content of this column.
169
169
  */
170
170
  get: function () {
171
- return this.i.hc;
171
+ return this.i.hd;
172
172
  },
173
173
  set: function (v) {
174
- this.i.hc = +v;
175
- this._a("paddingRight", this.i.hc);
174
+ this.i.hd = +v;
175
+ this._a("paddingRight", this.i.hd);
176
176
  },
177
177
  enumerable: false,
178
178
  configurable: true
@@ -182,11 +182,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
182
182
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
183
183
  */
184
184
  get: function () {
185
- return this.i.ha;
185
+ return this.i.hb;
186
186
  },
187
187
  set: function (v) {
188
- this.i.ha = +v;
189
- this._a("paddingBottom", this.i.ha);
188
+ this.i.hb = +v;
189
+ this._a("paddingBottom", this.i.hb);
190
190
  },
191
191
  enumerable: false,
192
192
  configurable: true
@@ -27,10 +27,10 @@ var IgcTemplateCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
27
27
  * Sets or gets the value to provide to the template.
28
28
  */
29
29
  get: function () {
30
- return this.i.n3;
30
+ return this.i.ob;
31
31
  },
32
32
  set: function (v) {
33
- this.i.n3 = v;
33
+ this.i.ob = v;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -28,10 +28,10 @@ var IgcTemplateHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
28
28
  * Sets or gets whether the filter UI should be visible in the header.
29
29
  */
30
30
  get: function () {
31
- return this.i.n6;
31
+ return this.i.oe;
32
32
  },
33
33
  set: function (v) {
34
- this.i.n6 = ensureBool(v);
34
+ this.i.oe = ensureBool(v);
35
35
  },
36
36
  enumerable: false,
37
37
  configurable: true
@@ -27,10 +27,10 @@ var IgcTextCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
27
27
  * Sets or gets the text value for the cell.
28
28
  */
29
29
  get: function () {
30
- return this.i.n3;
30
+ return this.i.ob;
31
31
  },
32
32
  set: function (v) {
33
- this.i.n3 = v;
33
+ this.i.ob = v;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true