igniteui-webcomponents-data-grids 6.0.1 → 6.0.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (241) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +12298 -10495
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +8409 -7998
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +308 -308
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +11 -11
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +326 -205
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +8 -8
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/TextIconSetConditionalStyle.js +14 -9
  74. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  75. package/esm2015/lib/igc-cell-info.js +301 -190
  76. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  77. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  78. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igc-data-grid-column-component.js +284 -160
  80. package/esm2015/lib/igc-data-grid-component.js +64 -4
  81. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  83. package/esm2015/lib/igc-definition-base-component.js +66 -65
  84. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  87. package/esm2015/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igc-grid-conditional-style-font-info-component.js +214 -0
  89. package/esm2015/lib/igc-grid-conditional-style-font-info-module.js +16 -0
  90. package/esm2015/lib/igc-grid-conditional-style-property-component.js +101 -35
  91. package/esm2015/lib/igc-header-component.js +24 -24
  92. package/esm2015/lib/igc-image-cell-info.js +6 -6
  93. package/esm2015/lib/igc-image-column-component.js +12 -12
  94. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  96. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igc-section-header-component.js +24 -24
  98. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igc-summary-row-component.js +24 -24
  100. package/esm2015/lib/igc-template-cell-info.js +2 -2
  101. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igc-text-cell-info.js +2 -2
  103. package/esm2015/lib/igc-text-column-component.js +9 -9
  104. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +4 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +8205 -7695
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +11 -11
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +343 -194
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +8 -8
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/TextIconSetConditionalStyle.js +14 -9
  177. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  178. package/esm5/lib/igc-cell-info.js +349 -190
  179. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  180. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  181. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igc-data-grid-column-component.js +332 -160
  183. package/esm5/lib/igc-data-grid-component.js +68 -4
  184. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igc-date-time-column-component.js +23 -23
  186. package/esm5/lib/igc-definition-base-component.js +66 -65
  187. package/esm5/lib/igc-editor-cell-info.js +23 -23
  188. package/esm5/lib/igc-filter-cell-info.js +26 -26
  189. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  190. package/esm5/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igc-grid-conditional-style-font-info-component.js +232 -0
  192. package/esm5/lib/igc-grid-conditional-style-font-info-module.js +20 -0
  193. package/esm5/lib/igc-grid-conditional-style-property-component.js +128 -34
  194. package/esm5/lib/igc-header-component.js +24 -24
  195. package/esm5/lib/igc-image-cell-info.js +6 -6
  196. package/esm5/lib/igc-image-column-component.js +12 -12
  197. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igc-numeric-column-component.js +35 -35
  199. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igc-section-header-component.js +24 -24
  201. package/esm5/lib/igc-summary-cell-info.js +9 -9
  202. package/esm5/lib/igc-summary-row-component.js +24 -24
  203. package/esm5/lib/igc-template-cell-info.js +2 -2
  204. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igc-text-cell-info.js +2 -2
  206. package/esm5/lib/igc-text-column-component.js +9 -9
  207. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +4 -0
  209. package/fesm2015/igniteui-webcomponents-data-grids.js +12290 -10806
  210. package/fesm5/igniteui-webcomponents-data-grids.js +12295 -10497
  211. package/lib/ColumnFilterCondition_combined.d.ts +1999 -1901
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/GridConditionalStyleProperty.d.ts +84 -61
  219. package/lib/ImageCell.d.ts +20 -20
  220. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  221. package/lib/NumericCell.d.ts +2 -1
  222. package/lib/SectionHeaderCell.d.ts +4 -4
  223. package/lib/SummaryCell.d.ts +11 -11
  224. package/lib/TemplateCell.d.ts +6 -6
  225. package/lib/TemplateHeader.d.ts +3 -3
  226. package/lib/TemplateHeaderCell.d.ts +3 -3
  227. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  228. package/lib/TemplateSectionHeader.d.ts +2 -2
  229. package/lib/TextCell.d.ts +10 -8
  230. package/lib/TextCellDecoration.d.ts +26 -0
  231. package/lib/TextHeaderCell.d.ts +37 -35
  232. package/lib/VerticalSeparatorCell.d.ts +9 -9
  233. package/lib/igc-cell-info.d.ts +58 -0
  234. package/lib/igc-data-grid-column-component.d.ts +62 -1
  235. package/lib/igc-data-grid-component.d.ts +15 -1
  236. package/lib/igc-definition-base-component.d.ts +1 -1
  237. package/lib/igc-grid-conditional-style-font-info-component.d.ts +44 -0
  238. package/lib/igc-grid-conditional-style-font-info-module.d.ts +3 -0
  239. package/lib/igc-grid-conditional-style-property-component.d.ts +17 -2
  240. package/package.json +41 -41
  241. package/public_api.d.ts +4 -0
@@ -2,6 +2,7 @@ import { IgcHTMLElement } from "igniteui-webcomponents-core";
2
2
  import { delegateCombine, delegateRemove } from "igniteui-webcomponents-core";
3
3
  import { GridConditionalStylePropertyStylingType_$type } from "./GridConditionalStylePropertyStylingType";
4
4
  import { GridConditionalStyleBoundType_$type } from "./GridConditionalStyleBoundType";
5
+ import { IgcGridConditionalStyleFontInfoComponent } from "./igc-grid-conditional-style-font-info-component";
5
6
  import { IgcGridConditionFilterStringErrorsParsingEventArgs } from "./igc-grid-condition-filter-string-errors-parsing-event-args";
6
7
  import { GridConditionalStyleProperty } from "./GridConditionalStyleProperty";
7
8
  import { TypeRegistrar } from "igniteui-webcomponents-core";
@@ -136,11 +137,11 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
136
137
  }
137
138
  }
138
139
  get stylingType() {
139
- return this.i.aj;
140
+ return this.i.al;
140
141
  }
141
142
  set stylingType(v) {
142
- this.i.aj = ensureEnum(GridConditionalStylePropertyStylingType_$type, v);
143
- this._a("stylingType", enumToString(GridConditionalStylePropertyStylingType_$type, this.i.aj));
143
+ this.i.al = ensureEnum(GridConditionalStylePropertyStylingType_$type, v);
144
+ this._a("stylingType", enumToString(GridConditionalStylePropertyStylingType_$type, this.i.al));
144
145
  }
145
146
  get minimumType() {
146
147
  return this.i.ah;
@@ -157,10 +158,10 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
157
158
  this._a("maximumType", enumToString(GridConditionalStyleBoundType_$type, this.i.ag));
158
159
  }
159
160
  get propertyName() {
160
- return this.i.b9;
161
+ return this.i.cs;
161
162
  }
162
163
  set propertyName(v) {
163
- this.i.b9 = v;
164
+ this.i.cs = v;
164
165
  }
165
166
  get inputValueExpression() {
166
167
  return this.i.w;
@@ -169,10 +170,10 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
169
170
  this.i.w = v;
170
171
  }
171
172
  get inputValueExpressionString() {
172
- return this.i.bo;
173
+ return this.i.b5;
173
174
  }
174
175
  set inputValueExpressionString(v) {
175
- this.i.bo = v;
176
+ this.i.b5 = v;
176
177
  }
177
178
  get actualInputValueExpression() {
178
179
  return this.i.s;
@@ -187,10 +188,10 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
187
188
  this.i.y = v;
188
189
  }
189
190
  get minimumInputValueExpressionString() {
190
- return this.i.b5;
191
+ return this.i.cn;
191
192
  }
192
193
  set minimumInputValueExpressionString(v) {
193
- this.i.b5 = v;
194
+ this.i.cn = v;
194
195
  }
195
196
  get actualMinimumInputValueExpression() {
196
197
  return this.i.u;
@@ -205,10 +206,10 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
205
206
  this.i.x = v;
206
207
  }
207
208
  get maximumInputValueExpressionString() {
208
- return this.i.bz;
209
+ return this.i.ch;
209
210
  }
210
211
  set maximumInputValueExpressionString(v) {
211
- this.i.bz = v;
212
+ this.i.ch = v;
212
213
  }
213
214
  get actualMaximumInputValueExpression() {
214
215
  return this.i.t;
@@ -223,10 +224,10 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
223
224
  this.i.ad = v;
224
225
  }
225
226
  get sumInputValueExpressionString() {
226
- return this.i.ce;
227
+ return this.i.cz;
227
228
  }
228
229
  set sumInputValueExpressionString(v) {
229
- this.i.ce = v;
230
+ this.i.cz = v;
230
231
  }
231
232
  get actualSumInputValueExpression() {
232
233
  return this.i.v;
@@ -234,50 +235,109 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
234
235
  set actualSumInputValueExpression(v) {
235
236
  this.i.v = v;
236
237
  }
237
- get value() {
238
+ get doubleValue() {
239
+ return this.i.a7;
240
+ }
241
+ set doubleValue(v) {
242
+ this.i.a7 = +v;
243
+ this._a("doubleValue", this.i.a7);
244
+ }
245
+ get intValue() {
238
246
  return this.i.bc;
239
247
  }
240
- set value(v) {
241
- this.i.bc = v;
248
+ set intValue(v) {
249
+ this.i.bc = +v;
250
+ this._a("intValue", this.i.bc);
251
+ }
252
+ get boolValue() {
253
+ return this.i.ap;
254
+ }
255
+ set boolValue(v) {
256
+ this.i.ap = ensureBool(v);
257
+ this._a("boolValue", this.i.ap);
258
+ }
259
+ get dateValue() {
260
+ return this.i.a0;
261
+ }
262
+ set dateValue(v) {
263
+ this.i.a0 = v;
264
+ }
265
+ get fontValue() {
266
+ const r = this.i.aj;
267
+ if (r == null) {
268
+ return null;
269
+ }
270
+ if (!r.externalObject) {
271
+ let e = IgcGridConditionalStyleFontInfoComponent._createFromInternal(r);
272
+ if (e) {
273
+ e._implementation = r;
274
+ }
275
+ r.externalObject = e;
276
+ }
277
+ return r.externalObject;
278
+ }
279
+ set fontValue(v) {
280
+ if (v != null && this._stylingContainer && v._styling)
281
+ v._styling(this._stylingContainer, this, this);
282
+ v == null ? this.i.aj = null : this.i.aj = v.i;
283
+ }
284
+ get objectValue() {
285
+ return this.i.bm;
286
+ }
287
+ set objectValue(v) {
288
+ this.i.bm = v;
289
+ }
290
+ get stringValue() {
291
+ return this.i.cv;
292
+ }
293
+ set stringValue(v) {
294
+ this.i.cv = v;
295
+ }
296
+ get brushValue() {
297
+ return brushToString(this.i.c8);
298
+ }
299
+ set brushValue(v) {
300
+ this.i.c8 = stringToBrush(v);
301
+ this._a("brushValue", brushToString(this.i.c8));
242
302
  }
243
303
  get shouldSetValue() {
244
- return this.i.as;
304
+ return this.i.aw;
245
305
  }
246
306
  set shouldSetValue(v) {
247
- this.i.as = ensureBool(v);
248
- this._a("shouldSetValue", this.i.as);
307
+ this.i.aw = ensureBool(v);
308
+ this._a("shouldSetValue", this.i.aw);
249
309
  }
250
310
  get minimumColor() {
251
- return brushToString(this.i.co);
311
+ return brushToString(this.i.da);
252
312
  }
253
313
  set minimumColor(v) {
254
- this.i.co = stringToBrush(v);
255
- this._a("minimumColor", brushToString(this.i.co));
314
+ this.i.da = stringToBrush(v);
315
+ this._a("minimumColor", brushToString(this.i.da));
256
316
  }
257
317
  get maximumColor() {
258
- return brushToString(this.i.cn);
318
+ return brushToString(this.i.c9);
259
319
  }
260
320
  set maximumColor(v) {
261
- this.i.cn = stringToBrush(v);
262
- this._a("maximumColor", brushToString(this.i.cn));
321
+ this.i.c9 = stringToBrush(v);
322
+ this._a("maximumColor", brushToString(this.i.c9));
263
323
  }
264
324
  get minimumInputValue() {
265
- return this.i.ba;
325
+ return this.i.bl;
266
326
  }
267
327
  set minimumInputValue(v) {
268
- this.i.ba = v;
328
+ this.i.bl = v;
269
329
  }
270
330
  get maximumInputValue() {
271
- return this.i.a9;
331
+ return this.i.bk;
272
332
  }
273
333
  set maximumInputValue(v) {
274
- this.i.a9 = v;
334
+ this.i.bk = v;
275
335
  }
276
336
  get sumInputValue() {
277
- return this.i.bb;
337
+ return this.i.bn;
278
338
  }
279
339
  set sumInputValue(v) {
280
- this.i.bb = v;
340
+ this.i.bn = v;
281
341
  }
282
342
  get colorCollection() {
283
343
  return fromBrushCollection(this.i.f);
@@ -297,16 +357,16 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
297
357
  this.i.d = v;
298
358
  }
299
359
  get requiresGlobalValues() {
300
- return this.i.ar;
360
+ return this.i.av;
301
361
  }
302
362
  get needsGlobalMinimum() {
303
- return this.i.ap;
363
+ return this.i.at;
304
364
  }
305
365
  get needsGlobalMaximum() {
306
- return this.i.ao;
366
+ return this.i.as;
307
367
  }
308
368
  get needsGlobalSum() {
309
- return this.i.aq;
369
+ return this.i.au;
310
370
  }
311
371
  findByName(name) {
312
372
  if (this.findEphemera) {
@@ -314,6 +374,9 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
314
374
  return this.findEphemera(name);
315
375
  }
316
376
  }
377
+ if (this.fontValue && this.fontValue.name && this.fontValue.name == name) {
378
+ return this.fontValue;
379
+ }
317
380
  return null;
318
381
  }
319
382
  get hasUserValues() {
@@ -364,6 +427,9 @@ export let IgcGridConditionalStylePropertyComponent = /*@__PURE__*/ (() => {
364
427
  additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
365
428
  }
366
429
  initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
430
+ if (this.fontValue && this.fontValue._styling) {
431
+ this.fontValue._styling(container, component, this);
432
+ }
367
433
  if (this._otherStyling) {
368
434
  this._otherStyling(container, component, parent);
369
435
  }
@@ -58,75 +58,75 @@ export let IgcHeaderComponent = /*@__PURE__*/ (() => {
58
58
  * Gets or sets the color to use for the sort indicator icon
59
59
  */
60
60
  get sortIndicatorColor() {
61
- return brushToString(this.i.ho);
61
+ return brushToString(this.i.hp);
62
62
  }
63
63
  set sortIndicatorColor(v) {
64
- this.i.ho = stringToBrush(v);
65
- this._a("sortIndicatorColor", brushToString(this.i.ho));
64
+ this.i.hp = stringToBrush(v);
65
+ this._a("sortIndicatorColor", brushToString(this.i.hp));
66
66
  }
67
67
  /**
68
68
  * Gets the actual background color that is used for the cells when they are selected
69
69
  */
70
70
  get actualSortIndicatorColor() {
71
- return brushToString(this.i.hm);
71
+ return brushToString(this.i.hn);
72
72
  }
73
73
  set actualSortIndicatorColor(v) {
74
- this.i.hm = stringToBrush(v);
75
- this._a("actualSortIndicatorColor", brushToString(this.i.hm));
74
+ this.i.hn = stringToBrush(v);
75
+ this._a("actualSortIndicatorColor", brushToString(this.i.hn));
76
76
  }
77
77
  get sortIndicatorStyle() {
78
- return this.i.g1;
78
+ return this.i.g2;
79
79
  }
80
80
  set sortIndicatorStyle(v) {
81
- this.i.g1 = ensureEnum(SortIndicatorStyle_$type, v);
82
- this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g1));
81
+ this.i.g2 = ensureEnum(SortIndicatorStyle_$type, v);
82
+ this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g2));
83
83
  }
84
84
  get actualSortIndicatorStyle() {
85
- return this.i.g0;
85
+ return this.i.g1;
86
86
  }
87
87
  set actualSortIndicatorStyle(v) {
88
- this.i.g0 = ensureEnum(SortIndicatorStyle_$type, v);
89
- this._a("actualSortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g0));
88
+ this.i.g1 = ensureEnum(SortIndicatorStyle_$type, v);
89
+ this._a("actualSortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g1));
90
90
  }
91
91
  /**
92
92
  * Gets or sets the amount of left padding to use for the cell content.
93
93
  */
94
94
  get paddingLeft() {
95
- return this.i.g7;
95
+ return this.i.g8;
96
96
  }
97
97
  set paddingLeft(v) {
98
- this.i.g7 = +v;
99
- this._a("paddingLeft", this.i.g7);
98
+ this.i.g8 = +v;
99
+ this._a("paddingLeft", this.i.g8);
100
100
  }
101
101
  /**
102
102
  * Gets or sets the amount of top padding to use for the cell content.
103
103
  */
104
104
  get paddingTop() {
105
- return this.i.g9;
105
+ return this.i.ha;
106
106
  }
107
107
  set paddingTop(v) {
108
- this.i.g9 = +v;
109
- this._a("paddingTop", this.i.g9);
108
+ this.i.ha = +v;
109
+ this._a("paddingTop", this.i.ha);
110
110
  }
111
111
  /**
112
112
  * Gets or sets the amount of right padding to use for the cell content.
113
113
  */
114
114
  get paddingRight() {
115
- return this.i.g8;
115
+ return this.i.g9;
116
116
  }
117
117
  set paddingRight(v) {
118
- this.i.g8 = +v;
119
- this._a("paddingRight", this.i.g8);
118
+ this.i.g9 = +v;
119
+ this._a("paddingRight", this.i.g9);
120
120
  }
121
121
  /**
122
122
  * Gets or sets the amount of bottom padding to use for the cell content.
123
123
  */
124
124
  get paddingBottom() {
125
- return this.i.g6;
125
+ return this.i.g7;
126
126
  }
127
127
  set paddingBottom(v) {
128
- this.i.g6 = +v;
129
- this._a("paddingBottom", this.i.g6);
128
+ this.i.g7 = +v;
129
+ this._a("paddingBottom", this.i.g7);
130
130
  }
131
131
  }
132
132
  IgcHeaderComponent._observedAttributesIgcHeaderComponent = null;
@@ -23,27 +23,27 @@ export class IgcImageCellInfo extends IgcCellInfo {
23
23
  * Sets or gets the resource path to use to get the image for the cell.
24
24
  */
25
25
  get imagePath() {
26
- return this.i.mr;
26
+ return this.i.n4;
27
27
  }
28
28
  set imagePath(v) {
29
- this.i.mr = v;
29
+ this.i.n4 = v;
30
30
  }
31
31
  /**
32
32
  * Sets or gets the image stretching behavior for the image.
33
33
  */
34
34
  get imageStretchOption() {
35
- return this.i.mm;
35
+ return this.i.nz;
36
36
  }
37
37
  set imageStretchOption(v) {
38
- this.i.mm = ensureEnum(ImageStretchOptions_$type, v);
38
+ this.i.nz = ensureEnum(ImageStretchOptions_$type, v);
39
39
  }
40
40
  /**
41
41
  * Sets or gets the image resource type. Indicates which type of resource should be fetched and how ImagePath should be interpreted.
42
42
  */
43
43
  get imageResourceType() {
44
- return this.i.mk;
44
+ return this.i.nx;
45
45
  }
46
46
  set imageResourceType(v) {
47
- this.i.mk = ensureEnum(ImageResourceType_$type, v);
47
+ this.i.nx = ensureEnum(ImageResourceType_$type, v);
48
48
  }
49
49
  }
@@ -70,48 +70,48 @@ export let IgcImageColumnComponent = /*@__PURE__*/ (() => {
70
70
  * Gets or sets the stretch option to use when rendering images
71
71
  */
72
72
  get imageStretchOption() {
73
- return this.i.n9;
73
+ return this.i.pa;
74
74
  }
75
75
  set imageStretchOption(v) {
76
- this.i.n9 = ensureEnum(ImageStretchOptions_$type, v);
77
- this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.n9));
76
+ this.i.pa = ensureEnum(ImageStretchOptions_$type, v);
77
+ this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.pa));
78
78
  }
79
79
  /**
80
80
  * Gets or sets the editor type used for editing cells in this column.
81
81
  */
82
82
  get editorType() {
83
- return this.i.n5;
83
+ return this.i.o6;
84
84
  }
85
85
  set editorType(v) {
86
- this.i.n5 = ensureEnum(EditorType_$type, v);
87
- this._a("editorType", enumToString(EditorType_$type, this.i.n5));
86
+ this.i.o6 = ensureEnum(EditorType_$type, v);
87
+ this._a("editorType", enumToString(EditorType_$type, this.i.o6));
88
88
  }
89
89
  /**
90
90
  * Gets or sets the ComboBox data source.
91
91
  */
92
92
  get editorDataSource() {
93
- return this.i.oa;
93
+ return this.i.pb;
94
94
  }
95
95
  set editorDataSource(v) {
96
- this.i.oa = v;
96
+ this.i.pb = v;
97
97
  }
98
98
  /**
99
99
  * Gets or sets the ComboBox text field.
100
100
  */
101
101
  get editorTextField() {
102
- return this.i.ob;
102
+ return this.i.pc;
103
103
  }
104
104
  set editorTextField(v) {
105
- this.i.ob = v;
105
+ this.i.pc = v;
106
106
  }
107
107
  /**
108
108
  * Gets or sets the ComboBox value field.
109
109
  */
110
110
  get editorValueField() {
111
- return this.i.oc;
111
+ return this.i.pd;
112
112
  }
113
113
  set editorValueField(v) {
114
- this.i.oc = v;
114
+ this.i.pd = v;
115
115
  }
116
116
  }
117
117
  IgcImageColumnComponent._observedAttributesIgcImageColumnComponent = null;
@@ -21,119 +21,119 @@ export class IgcNumericCellInfo extends IgcCellInfo {
21
21
  * Sets or gets the numeric value to use for the cell.
22
22
  */
23
23
  get numericValue() {
24
- return this.i.ms;
24
+ return this.i.n5;
25
25
  }
26
26
  set numericValue(v) {
27
- this.i.ms = +v;
27
+ this.i.n5 = +v;
28
28
  }
29
29
  /**
30
30
  * Sets or gets whether there is a decimal numeric value to use for the cell.
31
31
  */
32
32
  get hasDecimalValue() {
33
- return this.i.mo;
33
+ return this.i.n1;
34
34
  }
35
35
  set hasDecimalValue(v) {
36
- this.i.mo = ensureBool(v);
36
+ this.i.n1 = ensureBool(v);
37
37
  }
38
38
  /**
39
39
  * The format string to apply to the value
40
40
  */
41
41
  get formatStringOverride() {
42
- return this.i.nm;
42
+ return this.i.oz;
43
43
  }
44
44
  set formatStringOverride(v) {
45
- this.i.nm = v;
45
+ this.i.oz = v;
46
46
  }
47
47
  get formatSpecifiers() {
48
- return this.i.mk;
48
+ return this.i.nx;
49
49
  }
50
50
  set formatSpecifiers(v) {
51
51
  if (v && !Array.isArray(v) && typeof (v) == "string") {
52
52
  const re = /\s*(?:,|\s|$)\s*/gm;
53
53
  v = v.split(re);
54
54
  }
55
- this.i.mk = v;
55
+ this.i.nx = v;
56
56
  }
57
57
  /**
58
58
  * The format options to apply to the value
59
59
  */
60
60
  get formatOverride() {
61
- return this.i.ne;
61
+ return this.i.or;
62
62
  }
63
63
  set formatOverride(v) {
64
- this.i.ne = v;
64
+ this.i.or = v;
65
65
  }
66
66
  /**
67
67
  * Sets or gets the text prepended to a negative numeric value
68
68
  */
69
69
  get negativePrefix() {
70
- return this.i.ns;
70
+ return this.i.o5;
71
71
  }
72
72
  set negativePrefix(v) {
73
- this.i.ns = v;
73
+ this.i.o5 = v;
74
74
  }
75
75
  /**
76
76
  * Sets or gets the text prepended to a positive numeric value
77
77
  */
78
78
  get positivePrefix() {
79
- return this.i.nx;
79
+ return this.i.pa;
80
80
  }
81
81
  set positivePrefix(v) {
82
- this.i.nx = v;
82
+ this.i.pa = v;
83
83
  }
84
84
  /**
85
85
  * Sets or gets the text appended to a negative numeric value
86
86
  */
87
87
  get negativeSuffix() {
88
- return this.i.nu;
88
+ return this.i.o7;
89
89
  }
90
90
  set negativeSuffix(v) {
91
- this.i.nu = v;
91
+ this.i.o7 = v;
92
92
  }
93
93
  /**
94
94
  * Sets or gets the text appended to a positive numeric value
95
95
  */
96
96
  get positiveSuffix() {
97
- return this.i.nz;
97
+ return this.i.pc;
98
98
  }
99
99
  set positiveSuffix(v) {
100
- this.i.nz = v;
100
+ this.i.pc = v;
101
101
  }
102
102
  /**
103
103
  * The maximum number of decimal places to display when formatting
104
104
  */
105
105
  get maxFractionDigits() {
106
- return this.i.m0;
106
+ return this.i.od;
107
107
  }
108
108
  set maxFractionDigits(v) {
109
- this.i.m0 = +v;
109
+ this.i.od = +v;
110
110
  }
111
111
  /**
112
112
  * The minimum number of decimal places to display when formatting
113
113
  */
114
114
  get minFractionDigits() {
115
- return this.i.m2;
115
+ return this.i.of;
116
116
  }
117
117
  set minFractionDigits(v) {
118
- this.i.m2 = +v;
118
+ this.i.of = +v;
119
119
  }
120
120
  /**
121
121
  * The minimum number of integer digits to display when formatting
122
122
  */
123
123
  get minIntegerDigits() {
124
- return this.i.m4;
124
+ return this.i.oh;
125
125
  }
126
126
  set minIntegerDigits(v) {
127
- this.i.m4 = +v;
127
+ this.i.oh = +v;
128
128
  }
129
129
  /**
130
130
  * Sets or gets if the grouping separator is shown
131
131
  */
132
132
  get showGroupingSeparator() {
133
- return this.i.mq;
133
+ return this.i.n3;
134
134
  }
135
135
  set showGroupingSeparator(v) {
136
- this.i.mq = ensureBool(v);
136
+ this.i.n3 = ensureBool(v);
137
137
  }
138
138
  findByName(name) {
139
139
  var baseResult = super.findByName(name);