igniteui-webcomponents-data-grids 7.1.0-alpha.3 → 7.1.0-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 (204) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7956 -7387
  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 +1 -1
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +38 -35
  16. package/esm2015/lib/CheckboxListBridge.js +8 -0
  17. package/esm2015/lib/CheckboxListView_combined.js +369 -335
  18. package/esm2015/lib/ColumnChooserView_combined.js +11 -11
  19. package/esm2015/lib/ColumnFilterCondition_combined.js +5218 -4964
  20. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  21. package/esm2015/lib/ColumnPinningView_combined.js +5 -5
  22. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  23. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  24. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  25. package/esm2015/lib/DataGridLocaleEn.js +8 -0
  26. package/esm2015/lib/DataGridScrollerKeyboardListener.js +16 -16
  27. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  28. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  29. package/esm2015/lib/EditorCell.js +292 -292
  30. package/esm2015/lib/EditorCellPresenter.js +26 -26
  31. package/esm2015/lib/FilterCell.js +269 -269
  32. package/esm2015/lib/FilterCellPresenter.js +15 -15
  33. package/esm2015/lib/GridCellBase.js +167 -150
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +5 -5
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  37. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  38. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  39. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  40. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +188 -173
  43. package/esm2015/lib/GridIconRepository.js +4 -4
  44. package/esm2015/lib/ISummaryChooserView_combined.js +5 -5
  45. package/esm2015/lib/ImageCell.js +57 -57
  46. package/esm2015/lib/ImageCellPresenter.js +15 -15
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +5 -5
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  51. package/esm2015/lib/SectionHeaderCell.js +20 -20
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SummaryCell.js +45 -45
  54. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  55. package/esm2015/lib/TemplateCell.js +15 -15
  56. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  57. package/esm2015/lib/TemplateHeader.js +2 -2
  58. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  59. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  60. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  61. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  62. package/esm2015/lib/TextCell.js +29 -29
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +184 -184
  65. package/esm2015/lib/TextHeaderCellPresenter.js +55 -52
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +90 -81
  68. package/esm2015/lib/igc-checkbox-list-component.js +68 -58
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +238 -214
  71. package/esm2015/lib/igc-data-grid-component.js +31 -0
  72. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +44 -34
  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-editor-cell-info.js +23 -23
  76. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  77. package/esm2015/lib/igc-image-cell-info.js +6 -6
  78. package/esm2015/lib/igc-image-column-component.js +12 -12
  79. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  80. package/esm2015/lib/igc-numeric-column-component.js +38 -38
  81. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  82. package/esm2015/lib/igc-section-header-component.js +32 -12
  83. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  84. package/esm2015/lib/igc-template-cell-info.js +2 -2
  85. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  86. package/esm2015/lib/igc-text-cell-info.js +2 -2
  87. package/esm2015/lib/igc-text-column-component.js +9 -9
  88. package/esm2015/lib/igc-text-header-cell-info.js +44 -38
  89. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  90. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  91. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  92. package/esm5/lib/CanvasGridCellBase.js +2 -2
  93. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  94. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  95. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  96. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  97. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  99. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  101. package/esm5/lib/CellPresenterBase.js +38 -35
  102. package/esm5/lib/CheckboxListBridge.js +8 -0
  103. package/esm5/lib/CheckboxListView_combined.js +359 -321
  104. package/esm5/lib/ColumnChooserView_combined.js +11 -11
  105. package/esm5/lib/ColumnFilterCondition_combined.js +5068 -4770
  106. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  107. package/esm5/lib/ColumnPinningView_combined.js +5 -5
  108. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  109. package/esm5/lib/ContentCellModelHelper.js +10 -10
  110. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  111. package/esm5/lib/DataGridLocaleEn.js +8 -0
  112. package/esm5/lib/DataGridScrollerKeyboardListener.js +16 -16
  113. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  114. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  115. package/esm5/lib/EditorCell.js +277 -277
  116. package/esm5/lib/EditorCellPresenter.js +26 -26
  117. package/esm5/lib/FilterCell.js +259 -259
  118. package/esm5/lib/FilterCellPresenter.js +15 -15
  119. package/esm5/lib/GridCellBase.js +164 -143
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +5 -5
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  124. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  125. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  127. package/esm5/lib/GridExternalWrapper.js +6 -6
  128. package/esm5/lib/GridFilterDialogView_combined.js +183 -164
  129. package/esm5/lib/GridIconRepository.js +4 -4
  130. package/esm5/lib/ISummaryChooserView_combined.js +5 -5
  131. package/esm5/lib/ImageCell.js +57 -57
  132. package/esm5/lib/ImageCellPresenter.js +15 -15
  133. package/esm5/lib/MultiColumnComboBoxView_combined.js +5 -5
  134. package/esm5/lib/NumericCell.js +8 -8
  135. package/esm5/lib/NumericCellPresenter.js +9 -9
  136. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  137. package/esm5/lib/SectionHeaderCell.js +20 -20
  138. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  139. package/esm5/lib/SummaryCell.js +45 -45
  140. package/esm5/lib/SummaryCellPresenter.js +10 -10
  141. package/esm5/lib/TemplateCell.js +15 -15
  142. package/esm5/lib/TemplateCellPresenter.js +3 -3
  143. package/esm5/lib/TemplateHeader.js +2 -2
  144. package/esm5/lib/TemplateHeaderCell.js +5 -5
  145. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  146. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  147. package/esm5/lib/TemplateSectionHeader.js +1 -1
  148. package/esm5/lib/TextCell.js +29 -29
  149. package/esm5/lib/TextCellPresenter.js +10 -10
  150. package/esm5/lib/TextHeaderCell.js +182 -182
  151. package/esm5/lib/TextHeaderCellPresenter.js +55 -52
  152. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  153. package/esm5/lib/igc-cell-info.js +94 -81
  154. package/esm5/lib/igc-checkbox-list-component.js +72 -58
  155. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  156. package/esm5/lib/igc-data-grid-column-component.js +250 -214
  157. package/esm5/lib/igc-data-grid-component.js +43 -0
  158. package/esm5/lib/igc-data-grid-filter-dialog-component.js +48 -34
  159. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  160. package/esm5/lib/igc-date-time-column-component.js +23 -23
  161. package/esm5/lib/igc-editor-cell-info.js +23 -23
  162. package/esm5/lib/igc-filter-cell-info.js +26 -26
  163. package/esm5/lib/igc-image-cell-info.js +6 -6
  164. package/esm5/lib/igc-image-column-component.js +12 -12
  165. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  166. package/esm5/lib/igc-numeric-column-component.js +38 -38
  167. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  168. package/esm5/lib/igc-section-header-component.js +40 -12
  169. package/esm5/lib/igc-summary-cell-info.js +9 -9
  170. package/esm5/lib/igc-template-cell-info.js +2 -2
  171. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  172. package/esm5/lib/igc-text-cell-info.js +2 -2
  173. package/esm5/lib/igc-text-column-component.js +9 -9
  174. package/esm5/lib/igc-text-header-cell-info.js +48 -38
  175. package/fesm2015/igniteui-webcomponents-data-grids.js +8096 -7635
  176. package/fesm5/igniteui-webcomponents-data-grids.js +7956 -7387
  177. package/lib/CheckboxListExternal.d.ts +2 -0
  178. package/lib/CheckboxListView_combined.d.ts +98 -94
  179. package/lib/ColumnFilterCondition_combined.d.ts +1308 -1267
  180. package/lib/DataGridLocaleEn.d.ts +8 -0
  181. package/lib/EditorCell.d.ts +67 -67
  182. package/lib/FilterCell.d.ts +55 -55
  183. package/lib/GridCellBase.d.ts +64 -61
  184. package/lib/GridFilterDialogView_combined.d.ts +52 -49
  185. package/lib/ImageCell.d.ts +17 -17
  186. package/lib/NumericCell.d.ts +2 -2
  187. package/lib/SectionHeaderCell.d.ts +4 -4
  188. package/lib/SummaryCell.d.ts +10 -10
  189. package/lib/TemplateCell.d.ts +5 -5
  190. package/lib/TemplateHeaderCell.d.ts +2 -2
  191. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  192. package/lib/TemplateSectionHeader.d.ts +1 -1
  193. package/lib/TextCell.d.ts +7 -7
  194. package/lib/TextHeaderCell.d.ts +30 -30
  195. package/lib/VerticalSeparatorCell.d.ts +8 -8
  196. package/lib/igc-cell-info.d.ts +5 -0
  197. package/lib/igc-checkbox-list-component.d.ts +5 -0
  198. package/lib/igc-data-grid-column-component.d.ts +9 -0
  199. package/lib/igc-data-grid-component.d.ts +16 -0
  200. package/lib/igc-data-grid-filter-dialog-component.d.ts +5 -0
  201. package/lib/igc-numeric-cell-info.d.ts +5 -0
  202. package/lib/igc-section-header-component.d.ts +10 -0
  203. package/lib/igc-text-header-cell-info.d.ts +2 -0
  204. package/package.json +4 -4
@@ -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.ol;
32
+ return this.i.op;
33
33
  },
34
34
  set: function (v) {
35
- this.i.ol = 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.oj;
45
+ return this.i.on;
46
46
  },
47
47
  set: function (v) {
48
- this.i.oj = 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.oa;
58
+ return this.i.oe;
59
59
  },
60
60
  set: function (v) {
61
- this.i.oa = ensureEnum(GroupSummaryDisplayMode_$type, v);
61
+ this.i.oe = ensureEnum(GroupSummaryDisplayMode_$type, v);
62
62
  },
63
63
  enumerable: false,
64
64
  configurable: true
@@ -76,44 +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.h2);
79
+ return brushToString(this.i.h9);
80
80
  },
81
81
  set: function (v) {
82
- this.i.h2 = stringToBrush(v);
83
- this._a("selectedBackground", brushToString(this.i.h2));
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.h0);
90
+ return brushToString(this.i.h6);
91
91
  },
92
92
  set: function (v) {
93
- this.i.h0 = stringToBrush(v);
94
- this._a("actualSelectedBackground", brushToString(this.i.h0));
93
+ this.i.h6 = stringToBrush(v);
94
+ this._a("actualSelectedBackground", brushToString(this.i.h6));
95
95
  },
96
96
  enumerable: false,
97
97
  configurable: true
98
98
  });
99
99
  Object.defineProperty(IgcSectionHeaderComponent.prototype, "selectedTextColor", {
100
100
  get: function () {
101
- return brushToString(this.i.h3);
101
+ return brushToString(this.i.ia);
102
102
  },
103
103
  set: function (v) {
104
- this.i.h3 = stringToBrush(v);
105
- this._a("selectedTextColor", brushToString(this.i.h3));
104
+ this.i.ia = stringToBrush(v);
105
+ this._a("selectedTextColor", brushToString(this.i.ia));
106
106
  },
107
107
  enumerable: false,
108
108
  configurable: true
109
109
  });
110
110
  Object.defineProperty(IgcSectionHeaderComponent.prototype, "actualSelectedTextColor", {
111
111
  get: function () {
112
- return brushToString(this.i.h1);
112
+ return brushToString(this.i.h7);
113
113
  },
114
114
  set: function (v) {
115
- this.i.h1 = stringToBrush(v);
116
- this._a("actualSelectedTextColor", brushToString(this.i.h1));
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));
117
145
  },
118
146
  enumerable: false,
119
147
  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.od;
32
+ return this.i.oh;
33
33
  },
34
34
  set: function (v) {
35
- this.i.od = 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.of;
45
+ return this.i.oj;
46
46
  },
47
47
  set: function (v) {
48
- this.i.of = 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.ok);
58
+ return brushToString(this.i.oo);
59
59
  },
60
60
  set: function (v) {
61
- this.i.ok = 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.n6 == null) {
68
+ if (this.i.oa == null) {
69
69
  return null;
70
70
  }
71
- return this.i.n6.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.n6 = fi;
76
+ this.i.oa = fi;
77
77
  },
78
78
  enumerable: false,
79
79
  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.n7;
30
+ return this.i.ob;
31
31
  },
32
32
  set: function (v) {
33
- this.i.n7 = 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.oa;
31
+ return this.i.oe;
32
32
  },
33
33
  set: function (v) {
34
- this.i.oa = 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.n7;
30
+ return this.i.ob;
31
31
  },
32
32
  set: function (v) {
33
- this.i.n7 = v;
33
+ this.i.ob = v;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -79,11 +79,11 @@ export var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_supe
79
79
  * Gets or sets the editor type used for editing cells in this column.
80
80
  */
81
81
  get: function () {
82
- return this.i.r4;
82
+ return this.i.se;
83
83
  },
84
84
  set: function (v) {
85
- this.i.r4 = ensureEnum(EditorType_$type, v);
86
- this._a("editorType", enumToString(EditorType_$type, this.i.r4));
85
+ this.i.se = ensureEnum(EditorType_$type, v);
86
+ this._a("editorType", enumToString(EditorType_$type, this.i.se));
87
87
  },
88
88
  enumerable: false,
89
89
  configurable: true
@@ -93,10 +93,10 @@ export var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_supe
93
93
  * Gets or sets the ComboBox data source.
94
94
  */
95
95
  get: function () {
96
- return this.i.r5;
96
+ return this.i.sf;
97
97
  },
98
98
  set: function (v) {
99
- this.i.r5 = v;
99
+ this.i.sf = v;
100
100
  },
101
101
  enumerable: false,
102
102
  configurable: true
@@ -106,10 +106,10 @@ export var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_supe
106
106
  * Gets or sets the ComboBox text field.
107
107
  */
108
108
  get: function () {
109
- return this.i.r7;
109
+ return this.i.sh;
110
110
  },
111
111
  set: function (v) {
112
- this.i.r7 = v;
112
+ this.i.sh = v;
113
113
  },
114
114
  enumerable: false,
115
115
  configurable: true
@@ -119,10 +119,10 @@ export var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_supe
119
119
  * Gets or sets the ComboBox value field.
120
120
  */
121
121
  get: function () {
122
- return this.i.r8;
122
+ return this.i.si;
123
123
  },
124
124
  set: function (v) {
125
- this.i.r8 = v;
125
+ this.i.si = v;
126
126
  },
127
127
  enumerable: false,
128
128
  configurable: true
@@ -33,20 +33,20 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
33
33
  * Sets or gets whether the filter UI should be visible in the header.
34
34
  */
35
35
  get: function () {
36
- return this.i.om;
36
+ return this.i.oq;
37
37
  },
38
38
  set: function (v) {
39
- this.i.om = ensureBool(v);
39
+ this.i.oq = ensureBool(v);
40
40
  },
41
41
  enumerable: false,
42
42
  configurable: true
43
43
  });
44
44
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "sortIndicatorStyle", {
45
45
  get: function () {
46
- return this.i.oe;
46
+ return this.i.oi;
47
47
  },
48
48
  set: function (v) {
49
- this.i.oe = ensureEnum(SortIndicatorStyle_$type, v);
49
+ this.i.oi = ensureEnum(SortIndicatorStyle_$type, v);
50
50
  },
51
51
  enumerable: false,
52
52
  configurable: true
@@ -56,10 +56,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
56
56
  * Gets or sets the alignment of the column options icon within the header cell.
57
57
  */
58
58
  get: function () {
59
- return this.i.oa;
59
+ return this.i.oe;
60
60
  },
61
61
  set: function (v) {
62
- this.i.oa = ensureEnum(ColumnOptionsIconAlignment_$type, v);
62
+ this.i.oe = ensureEnum(ColumnOptionsIconAlignment_$type, v);
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -69,10 +69,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
69
69
  * Gets or sets the color for the column options icon in the header.
70
70
  */
71
71
  get: function () {
72
- return brushToString(this.i.p5);
72
+ return brushToString(this.i.qc);
73
73
  },
74
74
  set: function (v) {
75
- this.i.p5 = stringToBrush(v);
75
+ this.i.qc = stringToBrush(v);
76
76
  },
77
77
  enumerable: false,
78
78
  configurable: true
@@ -82,10 +82,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
82
82
  * Gets or sets how the column option icon will behave in the header.
83
83
  */
84
84
  get: function () {
85
- return this.i.oc;
85
+ return this.i.og;
86
86
  },
87
87
  set: function (v) {
88
- this.i.oc = ensureEnum(ColumnOptionsIconBehavior_$type, v);
88
+ this.i.og = ensureEnum(ColumnOptionsIconBehavior_$type, v);
89
89
  },
90
90
  enumerable: false,
91
91
  configurable: true
@@ -95,10 +95,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
95
95
  * Gets or sets the column options theme.
96
96
  */
97
97
  get: function () {
98
- return this.i.og;
98
+ return this.i.ok;
99
99
  },
100
100
  set: function (v) {
101
- this.i.og = ensureEnum(BaseControlTheme_$type, v);
101
+ this.i.ok = ensureEnum(BaseControlTheme_$type, v);
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -108,10 +108,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
108
108
  * Gets or sets the column options dropdown background color.
109
109
  */
110
110
  get: function () {
111
- return brushToString(this.i.p0);
111
+ return brushToString(this.i.p7);
112
112
  },
113
113
  set: function (v) {
114
- this.i.p0 = stringToBrush(v);
114
+ this.i.p7 = stringToBrush(v);
115
115
  },
116
116
  enumerable: false,
117
117
  configurable: true
@@ -121,10 +121,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
121
121
  * Gets or sets the text color for text inside the column options menu.
122
122
  */
123
123
  get: function () {
124
- return brushToString(this.i.p7);
124
+ return brushToString(this.i.qe);
125
125
  },
126
126
  set: function (v) {
127
- this.i.p7 = stringToBrush(v);
127
+ this.i.qe = stringToBrush(v);
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,45 +134,55 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
134
134
  * Gets or sets the font settings for text inside the column options menu.
135
135
  */
136
136
  get: function () {
137
- if (this.i.ok == null) {
137
+ if (this.i.oo == null) {
138
138
  return null;
139
139
  }
140
- return this.i.ok.fontString;
140
+ return this.i.oo.fontString;
141
141
  },
142
142
  set: function (v) {
143
143
  var fi = new FontInfo();
144
144
  fi.fontString = v;
145
- this.i.ok = fi;
145
+ this.i.oo = fi;
146
146
  },
147
147
  enumerable: false,
148
148
  configurable: true
149
149
  });
150
150
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsHoverBackgroundColor", {
151
151
  get: function () {
152
- return brushToString(this.i.p4);
152
+ return brushToString(this.i.qb);
153
153
  },
154
154
  set: function (v) {
155
- this.i.p4 = stringToBrush(v);
155
+ this.i.qb = stringToBrush(v);
156
156
  },
157
157
  enumerable: false,
158
158
  configurable: true
159
159
  });
160
160
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsToolTipBackgroundColor", {
161
161
  get: function () {
162
- return brushToString(this.i.p8);
162
+ return brushToString(this.i.qf);
163
163
  },
164
164
  set: function (v) {
165
- this.i.p8 = stringToBrush(v);
165
+ this.i.qf = stringToBrush(v);
166
+ },
167
+ enumerable: false,
168
+ configurable: true
169
+ });
170
+ Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsToolTipTextColor", {
171
+ get: function () {
172
+ return brushToString(this.i.qg);
173
+ },
174
+ set: function (v) {
175
+ this.i.qg = stringToBrush(v);
166
176
  },
167
177
  enumerable: false,
168
178
  configurable: true
169
179
  });
170
180
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsHighlightColor", {
171
181
  get: function () {
172
- return brushToString(this.i.p3);
182
+ return brushToString(this.i.qa);
173
183
  },
174
184
  set: function (v) {
175
- this.i.p3 = stringToBrush(v);
185
+ this.i.qa = stringToBrush(v);
176
186
  },
177
187
  enumerable: false,
178
188
  configurable: true
@@ -182,10 +192,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
182
192
  * Gets or sets the color of separators inside the column options menu.
183
193
  */
184
194
  get: function () {
185
- return brushToString(this.i.p6);
195
+ return brushToString(this.i.qd);
186
196
  },
187
197
  set: function (v) {
188
- this.i.p6 = stringToBrush(v);
198
+ this.i.qd = stringToBrush(v);
189
199
  },
190
200
  enumerable: false,
191
201
  configurable: true
@@ -195,10 +205,10 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
195
205
  * Gets or sets the background color for group headers inside the column options menu.
196
206
  */
197
207
  get: function () {
198
- return brushToString(this.i.p1);
208
+ return brushToString(this.i.p8);
199
209
  },
200
210
  set: function (v) {
201
- this.i.p1 = stringToBrush(v);
211
+ this.i.p8 = stringToBrush(v);
202
212
  },
203
213
  enumerable: false,
204
214
  configurable: true
@@ -208,45 +218,45 @@ var IgcTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
208
218
  * Gets or sets the text color for group headers inside the column options menu.
209
219
  */
210
220
  get: function () {
211
- return brushToString(this.i.p2);
221
+ return brushToString(this.i.p9);
212
222
  },
213
223
  set: function (v) {
214
- this.i.p2 = stringToBrush(v);
224
+ this.i.p9 = stringToBrush(v);
215
225
  },
216
226
  enumerable: false,
217
227
  configurable: true
218
228
  });
219
229
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsGroupHeaderTextStyle", {
220
230
  get: function () {
221
- if (this.i.oj == null) {
231
+ if (this.i.on == null) {
222
232
  return null;
223
233
  }
224
- return this.i.oj.fontString;
234
+ return this.i.on.fontString;
225
235
  },
226
236
  set: function (v) {
227
237
  var fi = new FontInfo();
228
238
  fi.fontString = v;
229
- this.i.oj = fi;
239
+ this.i.on = fi;
230
240
  },
231
241
  enumerable: false,
232
242
  configurable: true
233
243
  });
234
244
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsAccentColor", {
235
245
  get: function () {
236
- return brushToString(this.i.pz);
246
+ return brushToString(this.i.p6);
237
247
  },
238
248
  set: function (v) {
239
- this.i.pz = stringToBrush(v);
249
+ this.i.p6 = stringToBrush(v);
240
250
  },
241
251
  enumerable: false,
242
252
  configurable: true
243
253
  });
244
254
  Object.defineProperty(IgcTextHeaderCellInfo.prototype, "columnOptionsRowHeight", {
245
255
  get: function () {
246
- return this.i.oy;
256
+ return this.i.o2;
247
257
  },
248
258
  set: function (v) {
249
- this.i.oy = +v;
259
+ this.i.o2 = +v;
250
260
  },
251
261
  enumerable: false,
252
262
  configurable: true