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
@@ -63,72 +63,106 @@ let IgcSectionHeaderComponent = /*@__PURE__*/ (() => {
63
63
  }
64
64
  }
65
65
  get selectedBackground() {
66
- return brushToString(this.i.hv);
66
+ return brushToString(this.i.h9);
67
67
  }
68
68
  set selectedBackground(v) {
69
- this.i.hv = stringToBrush(v);
70
- this._a("selectedBackground", brushToString(this.i.hv));
69
+ this.i.h9 = stringToBrush(v);
70
+ this._a("selectedBackground", brushToString(this.i.h9));
71
71
  }
72
72
  get actualSelectedBackground() {
73
- return brushToString(this.i.hu);
73
+ return brushToString(this.i.h6);
74
74
  }
75
75
  set actualSelectedBackground(v) {
76
- this.i.hu = stringToBrush(v);
77
- this._a("actualSelectedBackground", brushToString(this.i.hu));
76
+ this.i.h6 = stringToBrush(v);
77
+ this._a("actualSelectedBackground", brushToString(this.i.h6));
78
+ }
79
+ get selectedTextColor() {
80
+ return brushToString(this.i.ia);
81
+ }
82
+ set selectedTextColor(v) {
83
+ this.i.ia = stringToBrush(v);
84
+ this._a("selectedTextColor", brushToString(this.i.ia));
85
+ }
86
+ get actualSelectedTextColor() {
87
+ return brushToString(this.i.h7);
88
+ }
89
+ set actualSelectedTextColor(v) {
90
+ this.i.h7 = stringToBrush(v);
91
+ this._a("actualSelectedTextColor", brushToString(this.i.h7));
92
+ }
93
+ /**
94
+ * 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.
95
+ */
96
+ get expansionIndicatorIconColor() {
97
+ return brushToString(this.i.h8);
98
+ }
99
+ set expansionIndicatorIconColor(v) {
100
+ this.i.h8 = stringToBrush(v);
101
+ this._a("expansionIndicatorIconColor", brushToString(this.i.h8));
102
+ }
103
+ /**
104
+ * Gets the resolved color of the section header's expansion indicator icon.
105
+ */
106
+ get actualExpansionIndicatorIconColor() {
107
+ return brushToString(this.i.h5);
108
+ }
109
+ set actualExpansionIndicatorIconColor(v) {
110
+ this.i.h5 = stringToBrush(v);
111
+ this._a("actualExpansionIndicatorIconColor", brushToString(this.i.h5));
78
112
  }
79
113
  /**
80
114
  * Gets or sets the amount of left padding to use for the cell content for this column.
81
115
  */
82
116
  get paddingLeft() {
83
- return this.i.hd;
117
+ return this.i.he;
84
118
  }
85
119
  set paddingLeft(v) {
86
- this.i.hd = +v;
87
- this._a("paddingLeft", this.i.hd);
120
+ this.i.he = +v;
121
+ this._a("paddingLeft", this.i.he);
88
122
  }
89
123
  /**
90
124
  * Gets or sets the amount of top padding to use for the cell content for this column.
91
125
  */
92
126
  get paddingTop() {
93
- return this.i.hf;
127
+ return this.i.hg;
94
128
  }
95
129
  set paddingTop(v) {
96
- this.i.hf = +v;
97
- this._a("paddingTop", this.i.hf);
130
+ this.i.hg = +v;
131
+ this._a("paddingTop", this.i.hg);
98
132
  }
99
133
  /**
100
134
  * Gets or sets the amount of right padding to use for the cell content of this column.
101
135
  */
102
136
  get paddingRight() {
103
- return this.i.he;
137
+ return this.i.hf;
104
138
  }
105
139
  set paddingRight(v) {
106
- this.i.he = +v;
107
- this._a("paddingRight", this.i.he);
140
+ this.i.hf = +v;
141
+ this._a("paddingRight", this.i.hf);
108
142
  }
109
143
  /**
110
144
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
111
145
  */
112
146
  get paddingBottom() {
113
- return this.i.hc;
147
+ return this.i.hd;
114
148
  }
115
149
  set paddingBottom(v) {
116
- this.i.hc = +v;
117
- this._a("paddingBottom", this.i.hc);
150
+ this.i.hd = +v;
151
+ this._a("paddingBottom", this.i.hd);
118
152
  }
119
153
  get isCollapsable() {
120
- return this.i.g6;
154
+ return this.i.g7;
121
155
  }
122
156
  set isCollapsable(v) {
123
- this.i.g6 = ensureBool(v);
124
- this._a("isCollapsable", this.i.g6);
157
+ this.i.g7 = ensureBool(v);
158
+ this._a("isCollapsable", this.i.g7);
125
159
  }
126
160
  get summaryDisplayMode() {
127
- return this.i.g3;
161
+ return this.i.g4;
128
162
  }
129
163
  set summaryDisplayMode(v) {
130
- this.i.g3 = ensureEnum(GroupSummaryDisplayMode_$type, v);
131
- this._a("summaryDisplayMode", enumToString(GroupSummaryDisplayMode_$type, this.i.g3));
164
+ this.i.g4 = ensureEnum(GroupSummaryDisplayMode_$type, v);
165
+ this._a("summaryDisplayMode", enumToString(GroupSummaryDisplayMode_$type, this.i.g4));
132
166
  }
133
167
  }
134
168
  IgcSectionHeaderComponent._observedAttributesIgcSectionHeaderComponent = null;
@@ -22,38 +22,38 @@ export class IgcSummaryCellInfo extends IgcCellInfo {
22
22
  * Sets or gets the resolved summary label for the summary cell.
23
23
  */
24
24
  get resolvedSummaryLabel() {
25
- return this.i.n9;
25
+ return this.i.oh;
26
26
  }
27
27
  set resolvedSummaryLabel(v) {
28
- this.i.n9 = v;
28
+ this.i.oh = v;
29
29
  }
30
30
  /**
31
31
  * Sets or gets the resolved summary value for the sumamry cell.
32
32
  */
33
33
  get resolvedSummaryValue() {
34
- return this.i.ob;
34
+ return this.i.oj;
35
35
  }
36
36
  set resolvedSummaryValue(v) {
37
- this.i.ob = v;
37
+ this.i.oj = v;
38
38
  }
39
39
  /**
40
40
  * Gets or sets the color of the text for the summary label in the cell.
41
41
  */
42
42
  get summaryLabelTextColor() {
43
- return brushToString(this.i.og);
43
+ return brushToString(this.i.oo);
44
44
  }
45
45
  set summaryLabelTextColor(v) {
46
- this.i.og = stringToBrush(v);
46
+ this.i.oo = stringToBrush(v);
47
47
  }
48
48
  get font() {
49
- if (this.i.n2 == null) {
49
+ if (this.i.oa == null) {
50
50
  return null;
51
51
  }
52
- return this.i.n2.fontString;
52
+ return this.i.oa.fontString;
53
53
  }
54
54
  set font(v) {
55
55
  let fi = new FontInfo();
56
56
  fi.fontString = v;
57
- this.i.n2 = fi;
57
+ this.i.oa = fi;
58
58
  }
59
59
  }
@@ -55,41 +55,41 @@ let IgcSummaryRowComponent = /*@__PURE__*/ (() => {
55
55
  * Gets or sets the background color for summary cells when selected.
56
56
  */
57
57
  get selectedBackground() {
58
- return brushToString(this.i.hy);
58
+ return brushToString(this.i.hz);
59
59
  }
60
60
  set selectedBackground(v) {
61
- this.i.hy = stringToBrush(v);
62
- this._a("selectedBackground", brushToString(this.i.hy));
61
+ this.i.hz = stringToBrush(v);
62
+ this._a("selectedBackground", brushToString(this.i.hz));
63
63
  }
64
64
  /**
65
65
  * Gets the actual background color for summary cells when selected.
66
66
  */
67
67
  get actualSelectedBackground() {
68
- return brushToString(this.i.hv);
68
+ return brushToString(this.i.hw);
69
69
  }
70
70
  set actualSelectedBackground(v) {
71
- this.i.hv = stringToBrush(v);
72
- this._a("actualSelectedBackground", brushToString(this.i.hv));
71
+ this.i.hw = stringToBrush(v);
72
+ this._a("actualSelectedBackground", brushToString(this.i.hw));
73
73
  }
74
74
  /**
75
75
  * Gets or sets the text color for the summary labels.
76
76
  */
77
77
  get summaryLabelTextColor() {
78
- return brushToString(this.i.hz);
78
+ return brushToString(this.i.h0);
79
79
  }
80
80
  set summaryLabelTextColor(v) {
81
- this.i.hz = stringToBrush(v);
82
- this._a("summaryLabelTextColor", brushToString(this.i.hz));
81
+ this.i.h0 = stringToBrush(v);
82
+ this._a("summaryLabelTextColor", brushToString(this.i.h0));
83
83
  }
84
84
  /**
85
85
  * Gets the actual text color for the summary labels.
86
86
  */
87
87
  get actualSummaryLabelTextColor() {
88
- return brushToString(this.i.hw);
88
+ return brushToString(this.i.hx);
89
89
  }
90
90
  set actualSummaryLabelTextColor(v) {
91
- this.i.hw = stringToBrush(v);
92
- this._a("actualSummaryLabelTextColor", brushToString(this.i.hw));
91
+ this.i.hx = stringToBrush(v);
92
+ this._a("actualSummaryLabelTextColor", brushToString(this.i.hx));
93
93
  }
94
94
  /**
95
95
  * Gets or sets the text style for the summary labels.
@@ -110,41 +110,41 @@ let IgcSummaryRowComponent = /*@__PURE__*/ (() => {
110
110
  * Gets or sets the amount of left padding to use for the cell content for this column.
111
111
  */
112
112
  get paddingLeft() {
113
- return this.i.hb;
113
+ return this.i.hc;
114
114
  }
115
115
  set paddingLeft(v) {
116
- this.i.hb = +v;
117
- this._a("paddingLeft", this.i.hb);
116
+ this.i.hc = +v;
117
+ this._a("paddingLeft", this.i.hc);
118
118
  }
119
119
  /**
120
120
  * Gets or sets the amount of top padding to use for the cell content for this column.
121
121
  */
122
122
  get paddingTop() {
123
- return this.i.hd;
123
+ return this.i.he;
124
124
  }
125
125
  set paddingTop(v) {
126
- this.i.hd = +v;
127
- this._a("paddingTop", this.i.hd);
126
+ this.i.he = +v;
127
+ this._a("paddingTop", this.i.he);
128
128
  }
129
129
  /**
130
130
  * Gets or sets the amount of right padding to use for the cell content of this column.
131
131
  */
132
132
  get paddingRight() {
133
- return this.i.hc;
133
+ return this.i.hd;
134
134
  }
135
135
  set paddingRight(v) {
136
- this.i.hc = +v;
137
- this._a("paddingRight", this.i.hc);
136
+ this.i.hd = +v;
137
+ this._a("paddingRight", this.i.hd);
138
138
  }
139
139
  /**
140
140
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
141
141
  */
142
142
  get paddingBottom() {
143
- return this.i.ha;
143
+ return this.i.hb;
144
144
  }
145
145
  set paddingBottom(v) {
146
- this.i.ha = +v;
147
- this._a("paddingBottom", this.i.ha);
146
+ this.i.hb = +v;
147
+ this._a("paddingBottom", this.i.hb);
148
148
  }
149
149
  }
150
150
  IgcSummaryRowComponent._observedAttributesIgcSummaryRowComponent = null;
@@ -20,9 +20,9 @@ export class IgcTemplateCellInfo extends IgcCellInfo {
20
20
  * Sets or gets the value to provide to the template.
21
21
  */
22
22
  get value() {
23
- return this.i.n3;
23
+ return this.i.ob;
24
24
  }
25
25
  set value(v) {
26
- this.i.n3 = v;
26
+ this.i.ob = v;
27
27
  }
28
28
  }
@@ -21,9 +21,9 @@ export class IgcTemplateHeaderCellInfo extends IgcTemplateCellInfo {
21
21
  * Sets or gets whether the filter UI should be visible in the header.
22
22
  */
23
23
  get isFilterUIVisible() {
24
- return this.i.n6;
24
+ return this.i.oe;
25
25
  }
26
26
  set isFilterUIVisible(v) {
27
- this.i.n6 = ensureBool(v);
27
+ this.i.oe = ensureBool(v);
28
28
  }
29
29
  }
@@ -20,9 +20,9 @@ export class IgcTextCellInfo extends IgcCellInfo {
20
20
  * Sets or gets the text value for the cell.
21
21
  */
22
22
  get textValue() {
23
- return this.i.n3;
23
+ return this.i.ob;
24
24
  }
25
25
  set textValue(v) {
26
- this.i.n3 = v;
26
+ this.i.ob = v;
27
27
  }
28
28
  }
@@ -66,38 +66,38 @@ let IgcTextColumnComponent = /*@__PURE__*/ (() => {
66
66
  * Gets or sets the editor type used for editing cells in this column.
67
67
  */
68
68
  get editorType() {
69
- return this.i.rw;
69
+ return this.i.r7;
70
70
  }
71
71
  set editorType(v) {
72
- this.i.rw = ensureEnum(EditorType_$type, v);
73
- this._a("editorType", enumToString(EditorType_$type, this.i.rw));
72
+ this.i.r7 = ensureEnum(EditorType_$type, v);
73
+ this._a("editorType", enumToString(EditorType_$type, this.i.r7));
74
74
  }
75
75
  /**
76
76
  * Gets or sets the ComboBox data source.
77
77
  */
78
78
  get editorDataSource() {
79
- return this.i.rx;
79
+ return this.i.r8;
80
80
  }
81
81
  set editorDataSource(v) {
82
- this.i.rx = v;
82
+ this.i.r8 = v;
83
83
  }
84
84
  /**
85
85
  * Gets or sets the ComboBox text field.
86
86
  */
87
87
  get editorTextField() {
88
- return this.i.rz;
88
+ return this.i.sa;
89
89
  }
90
90
  set editorTextField(v) {
91
- this.i.rz = v;
91
+ this.i.sa = v;
92
92
  }
93
93
  /**
94
94
  * Gets or sets the ComboBox value field.
95
95
  */
96
96
  get editorValueField() {
97
- return this.i.r0;
97
+ return this.i.sb;
98
98
  }
99
99
  set editorValueField(v) {
100
- this.i.r0 = v;
100
+ this.i.sb = v;
101
101
  }
102
102
  }
103
103
  IgcTextColumnComponent._observedAttributesIgcTextColumnComponent = null;
@@ -26,151 +26,151 @@ export class IgcTextHeaderCellInfo extends IgcTextCellInfo {
26
26
  * Sets or gets whether the filter UI should be visible in the header.
27
27
  */
28
28
  get isColumnOptionsEnabled() {
29
- return this.i.oi;
29
+ return this.i.oq;
30
30
  }
31
31
  set isColumnOptionsEnabled(v) {
32
- this.i.oi = ensureBool(v);
32
+ this.i.oq = ensureBool(v);
33
33
  }
34
34
  get sortIndicatorStyle() {
35
- return this.i.oa;
35
+ return this.i.oi;
36
36
  }
37
37
  set sortIndicatorStyle(v) {
38
- this.i.oa = ensureEnum(SortIndicatorStyle_$type, v);
38
+ this.i.oi = ensureEnum(SortIndicatorStyle_$type, v);
39
39
  }
40
40
  /**
41
41
  * Gets or sets the alignment of the column options icon within the header cell.
42
42
  */
43
43
  get columnOptionsIconAlignment() {
44
- return this.i.n6;
44
+ return this.i.oe;
45
45
  }
46
46
  set columnOptionsIconAlignment(v) {
47
- this.i.n6 = ensureEnum(ColumnOptionsIconAlignment_$type, v);
47
+ this.i.oe = ensureEnum(ColumnOptionsIconAlignment_$type, v);
48
48
  }
49
49
  /**
50
50
  * Gets or sets the color for the column options icon in the header.
51
51
  */
52
52
  get columnOptionsIconColor() {
53
- return brushToString(this.i.p1);
53
+ return brushToString(this.i.p9);
54
54
  }
55
55
  set columnOptionsIconColor(v) {
56
- this.i.p1 = stringToBrush(v);
56
+ this.i.p9 = stringToBrush(v);
57
57
  }
58
58
  /**
59
59
  * Gets or sets how the column option icon will behave in the header.
60
60
  */
61
61
  get columnOptionsIconBehavior() {
62
- return this.i.n8;
62
+ return this.i.og;
63
63
  }
64
64
  set columnOptionsIconBehavior(v) {
65
- this.i.n8 = ensureEnum(ColumnOptionsIconBehavior_$type, v);
65
+ this.i.og = ensureEnum(ColumnOptionsIconBehavior_$type, v);
66
66
  }
67
67
  /**
68
68
  * Gets or sets the column options theme.
69
69
  */
70
70
  get columnOptionsTheme() {
71
- return this.i.oc;
71
+ return this.i.ok;
72
72
  }
73
73
  set columnOptionsTheme(v) {
74
- this.i.oc = ensureEnum(BaseControlTheme_$type, v);
74
+ this.i.ok = ensureEnum(BaseControlTheme_$type, v);
75
75
  }
76
76
  /**
77
77
  * Gets or sets the column options dropdown background color.
78
78
  */
79
79
  get columnOptionsBackground() {
80
- return brushToString(this.i.pw);
80
+ return brushToString(this.i.p4);
81
81
  }
82
82
  set columnOptionsBackground(v) {
83
- this.i.pw = stringToBrush(v);
83
+ this.i.p4 = stringToBrush(v);
84
84
  }
85
85
  /**
86
86
  * Gets or sets the text color for text inside the column options menu.
87
87
  */
88
88
  get columnOptionsTextColor() {
89
- return brushToString(this.i.p3);
89
+ return brushToString(this.i.qb);
90
90
  }
91
91
  set columnOptionsTextColor(v) {
92
- this.i.p3 = stringToBrush(v);
92
+ this.i.qb = stringToBrush(v);
93
93
  }
94
94
  /**
95
95
  * Gets or sets the font settings for text inside the column options menu.
96
96
  */
97
97
  get columnOptionsTextStyle() {
98
- if (this.i.og == null) {
98
+ if (this.i.oo == null) {
99
99
  return null;
100
100
  }
101
- return this.i.og.fontString;
101
+ return this.i.oo.fontString;
102
102
  }
103
103
  set columnOptionsTextStyle(v) {
104
104
  let fi = new FontInfo();
105
105
  fi.fontString = v;
106
- this.i.og = fi;
106
+ this.i.oo = fi;
107
107
  }
108
108
  get columnOptionsHoverBackgroundColor() {
109
- return brushToString(this.i.p0);
109
+ return brushToString(this.i.p8);
110
110
  }
111
111
  set columnOptionsHoverBackgroundColor(v) {
112
- this.i.p0 = stringToBrush(v);
112
+ this.i.p8 = stringToBrush(v);
113
113
  }
114
114
  get columnOptionsToolTipBackgroundColor() {
115
- return brushToString(this.i.p4);
115
+ return brushToString(this.i.qc);
116
116
  }
117
117
  set columnOptionsToolTipBackgroundColor(v) {
118
- this.i.p4 = stringToBrush(v);
118
+ this.i.qc = stringToBrush(v);
119
119
  }
120
120
  get columnOptionsHighlightColor() {
121
- return brushToString(this.i.pz);
121
+ return brushToString(this.i.p7);
122
122
  }
123
123
  set columnOptionsHighlightColor(v) {
124
- this.i.pz = stringToBrush(v);
124
+ this.i.p7 = stringToBrush(v);
125
125
  }
126
126
  /**
127
127
  * Gets or sets the color of separators inside the column options menu.
128
128
  */
129
129
  get columnOptionsSeparatorColor() {
130
- return brushToString(this.i.p2);
130
+ return brushToString(this.i.qa);
131
131
  }
132
132
  set columnOptionsSeparatorColor(v) {
133
- this.i.p2 = stringToBrush(v);
133
+ this.i.qa = stringToBrush(v);
134
134
  }
135
135
  /**
136
136
  * Gets or sets the background color for group headers inside the column options menu.
137
137
  */
138
138
  get columnOptionsGroupHeaderBackground() {
139
- return brushToString(this.i.px);
139
+ return brushToString(this.i.p5);
140
140
  }
141
141
  set columnOptionsGroupHeaderBackground(v) {
142
- this.i.px = stringToBrush(v);
142
+ this.i.p5 = stringToBrush(v);
143
143
  }
144
144
  /**
145
145
  * Gets or sets the text color for group headers inside the column options menu.
146
146
  */
147
147
  get columnOptionsGroupHeaderTextColor() {
148
- return brushToString(this.i.py);
148
+ return brushToString(this.i.p6);
149
149
  }
150
150
  set columnOptionsGroupHeaderTextColor(v) {
151
- this.i.py = stringToBrush(v);
151
+ this.i.p6 = stringToBrush(v);
152
152
  }
153
153
  get columnOptionsGroupHeaderTextStyle() {
154
- if (this.i.of == null) {
154
+ if (this.i.on == null) {
155
155
  return null;
156
156
  }
157
- return this.i.of.fontString;
157
+ return this.i.on.fontString;
158
158
  }
159
159
  set columnOptionsGroupHeaderTextStyle(v) {
160
160
  let fi = new FontInfo();
161
161
  fi.fontString = v;
162
- this.i.of = fi;
162
+ this.i.on = fi;
163
163
  }
164
164
  get columnOptionsAccentColor() {
165
- return brushToString(this.i.pv);
165
+ return brushToString(this.i.p3);
166
166
  }
167
167
  set columnOptionsAccentColor(v) {
168
- this.i.pv = stringToBrush(v);
168
+ this.i.p3 = stringToBrush(v);
169
169
  }
170
170
  get columnOptionsRowHeight() {
171
- return this.i.ou;
171
+ return this.i.o2;
172
172
  }
173
173
  set columnOptionsRowHeight(v) {
174
- this.i.ou = +v;
174
+ this.i.o2 = +v;
175
175
  }
176
176
  }
@@ -29,18 +29,18 @@ export var CanvasCellPresenterBase = /** @class */ /*@__PURE__*/ (function (_sup
29
29
  this.a.cn(a.ez, a.e3, a.e1, a.ex);
30
30
  }
31
31
  if (a.a5) {
32
- this.a.ch(a.ne, a.en, a.es, a.eq, a.el);
32
+ this.a.ch(a.nk, a.en, a.es, a.eq, a.el);
33
33
  }
34
34
  if (a.bs) {
35
- this.a.ck(a.f9);
36
- this.a.cu(a.h6);
35
+ this.a.ck(a.ga);
36
+ this.a.cu(a.h8);
37
37
  }
38
38
  if (a.a7) {
39
39
  if (a.bm && !this.a.z) {
40
40
  this.a.b5();
41
41
  }
42
42
  if (a.bc(CellModel.ek)) {
43
- this.a.cg(a.nd.color);
43
+ this.a.cg(a.nj.color);
44
44
  }
45
45
  if (a.bc(CellModel.ew)) {
46
46
  this.a.cm(a.cq);
@@ -25,7 +25,7 @@ export var CanvasContentCellModelHelper = /** @class */ /*@__PURE__*/ (function
25
25
  };
26
26
  CanvasContentCellModelHelper.a = function (a, b, c) {
27
27
  if (b.a7) {
28
- if (b.bc(CellModel.fp) || b.bc(CellModel.eu) || b.bc(CellModel.h5) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
28
+ if (b.bc(CellModel.fp) || b.bc(CellModel.eu) || b.bc(CellModel.h7) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
29
29
  var d = Math.min(1, Math.max(0, b.c7));
30
30
  var e = b.cp * (1 - d);
31
31
  c.ci(e);
@@ -34,14 +34,14 @@ export var CanvasContentCellModelHelper = /** @class */ /*@__PURE__*/ (function
34
34
  }
35
35
  }
36
36
  if (b.bc(CellModel.e5)) {
37
- CanvasContentCellModelHelper.c(c, b.nf);
37
+ CanvasContentCellModelHelper.c(c, b.nl);
38
38
  if (b.bm) {
39
- c.cw(b.nf);
39
+ c.cw(b.nl);
40
40
  }
41
41
  }
42
- if (b.bc(CellModel.gv)) {
42
+ if (b.bc(CellModel.gw)) {
43
43
  }
44
- if (b.bc(CellModel.gb) || b.bc(CellModel.h4)) {
44
+ if (b.bc(CellModel.gc) || b.bc(CellModel.h6)) {
45
45
  var f = b.g;
46
46
  var g = b.i;
47
47
  c.cl(f);
@@ -29,22 +29,22 @@ export var CanvasDateTimeCellPresenter = /** @class */ /*@__PURE__*/ (function (
29
29
  _super.prototype.b.call(this, a);
30
30
  var b = a;
31
31
  if (a.a7) {
32
- if (a.bc(DateTimeCellModel.od) || a.bc(DateTimeCellModel.oe) || a.bc(DateTimeCellModel.oc) || a.bc(DateTimeCellModel.gy) || a.bc(DateTimeCellModel.h3)) {
32
+ if (a.bc(DateTimeCellModel.ol) || a.bc(DateTimeCellModel.om) || a.bc(DateTimeCellModel.ok) || a.bc(DateTimeCellModel.gz) || a.bc(DateTimeCellModel.h5)) {
33
33
  this.e(b);
34
- this.d.cr(b.ky);
34
+ this.d.cr(b.k1);
35
35
  }
36
36
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
37
37
  }
38
38
  };
39
39
  CanvasDateTimeCellPresenter.prototype.e = function (a) {
40
- if (a.lu != null) {
41
- a.ky = a.lu;
40
+ if (a.ly != null) {
41
+ a.k1 = a.ly;
42
42
  return;
43
43
  }
44
- a.ky = a.op(a.ob);
45
- if (a.ky == stringEmpty()) {
46
- if (!(typeCast(Date_$type, a.ig) !== null)) {
47
- a.ky = a.ig.toString();
44
+ a.k1 = a.ox(a.oj);
45
+ if (a.k1 == stringEmpty()) {
46
+ if (!(typeCast(Date_$type, a.ii) !== null)) {
47
+ a.k1 = a.ii.toString();
48
48
  }
49
49
  }
50
50
  };
@@ -631,8 +631,8 @@ export var CanvasGridCellBase = /** @class */ /*@__PURE__*/ (function (_super) {
631
631
  if (this.a1 != b) {
632
632
  this.a1 = b;
633
633
  }
634
- var c = a.h6 * 0.2;
635
- var d = a.f9 * 0.6;
634
+ var c = a.h8 * 0.2;
635
+ var d = a.ga * 0.6;
636
636
  if (this.a2 >= c && this.a2 <= d) {
637
637
  return;
638
638
  }