igniteui-webcomponents-grids 3.2.2 → 3.2.4

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 (190) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +10275 -9381
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/BaseEditorView.js +5 -0
  4. package/esm2015/lib/CanvasCellPresenterBase.js +10 -10
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +11 -11
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +2 -2
  7. package/esm2015/lib/CanvasGridCellBase.js +305 -289
  8. package/esm2015/lib/CanvasImageCell.js +29 -29
  9. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  10. package/esm2015/lib/CanvasNumericCell.js +2 -2
  11. package/esm2015/lib/CanvasNumericCellPresenter.js +3 -3
  12. package/esm2015/lib/CanvasSectionHeaderCell.js +3 -3
  13. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  14. package/esm2015/lib/CanvasSummaryCell.js +51 -51
  15. package/esm2015/lib/CanvasSummaryCellPresenter.js +5 -5
  16. package/esm2015/lib/CanvasTemplateCell.js +7 -7
  17. package/esm2015/lib/CanvasTemplateCellPresenter.js +3 -3
  18. package/esm2015/lib/CanvasTemplateHeaderCell.js +7 -7
  19. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  20. package/esm2015/lib/CanvasTextCell.js +3 -3
  21. package/esm2015/lib/CanvasTextCellPresenter.js +2 -2
  22. package/esm2015/lib/CanvasTextHeaderCell.js +24 -24
  23. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
  24. package/esm2015/lib/CellPresenterBase.js +1 -1
  25. package/esm2015/lib/CheckboxListView_combined.js +341 -306
  26. package/esm2015/lib/ColumnChooserView_combined.js +22 -22
  27. package/esm2015/lib/ColumnFilterCondition_combined.js +7531 -7208
  28. package/esm2015/lib/ColumnGroupDescription.js +22 -0
  29. package/esm2015/lib/ColumnGroupDescriptionCollection.js +14 -8
  30. package/esm2015/lib/ColumnGroupingView_combined.js +25 -25
  31. package/esm2015/lib/ColumnPinningView_combined.js +22 -22
  32. package/esm2015/lib/ColumnSortDescriptionCollection.js +12 -6
  33. package/esm2015/lib/ColumnSummaryDescriptionCollection.js +12 -6
  34. package/esm2015/lib/ComboEditorView.js +6 -3
  35. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  36. package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  37. package/esm2015/lib/DataGridCellLayoutPanel.js +27 -25
  38. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  39. package/esm2015/lib/DataGridToolbarView_combined.js +17 -17
  40. package/esm2015/lib/DateTimeColumnValueFormatter.js +90 -1
  41. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +25 -25
  42. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +10 -10
  43. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  44. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +6 -6
  45. package/esm2015/lib/GridColumnOptionsViewBase_combined.js +2 -2
  46. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  47. package/esm2015/lib/GridColumnPinOptionsView_combined.js +5 -5
  48. package/esm2015/lib/GridColumnSortOptionsView_combined.js +5 -5
  49. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  50. package/esm2015/lib/GridExternalWrapper.js +18 -6
  51. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  52. package/esm2015/lib/ISummaryChooserView_combined.js +13 -13
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +47 -47
  54. package/esm2015/lib/MultiColumnComboVisualModelExport.js +1 -1
  55. package/esm2015/lib/NumericCellPresenter.js +1 -1
  56. package/esm2015/lib/PropertyEditorView_combined.js +40 -40
  57. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  58. package/esm2015/lib/TemplateHeader.js +8 -8
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +1 -1
  60. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  61. package/esm2015/lib/TextEditorView.js +28 -10
  62. package/esm2015/lib/VerticalSeparatorCell.js +46 -8
  63. package/esm2015/lib/VisualModelExport.js +120 -100
  64. package/esm2015/lib/igc-checkbox-list-component.js +74 -54
  65. package/esm2015/lib/igc-column-component.js +164 -164
  66. package/esm2015/lib/igc-column-group-description-collection.js +13 -3
  67. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  68. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  69. package/esm2015/lib/igc-column-sort-description-collection.js +13 -3
  70. package/esm2015/lib/igc-column-summary-description-collection.js +13 -3
  71. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  72. package/esm2015/lib/igc-data-grid-component.js +699 -593
  73. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  74. package/esm2015/lib/igc-definition-base-component.js +50 -50
  75. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  76. package/esm2015/lib/igc-header-component.js +24 -24
  77. package/esm2015/lib/igc-image-column-component.js +12 -12
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-component.js +24 -24
  80. package/esm2015/lib/igc-summary-row-component.js +24 -24
  81. package/esm2015/lib/igc-text-column-component.js +9 -9
  82. package/esm5/lib/BaseEditorView.js +5 -0
  83. package/esm5/lib/CanvasCellPresenterBase.js +10 -10
  84. package/esm5/lib/CanvasContentCellModelHelper.js +11 -11
  85. package/esm5/lib/CanvasDateTimeCellPresenter.js +2 -2
  86. package/esm5/lib/CanvasGridCellBase.js +304 -288
  87. package/esm5/lib/CanvasImageCell.js +28 -28
  88. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  89. package/esm5/lib/CanvasNumericCell.js +2 -2
  90. package/esm5/lib/CanvasNumericCellPresenter.js +3 -3
  91. package/esm5/lib/CanvasSectionHeaderCell.js +3 -3
  92. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  93. package/esm5/lib/CanvasSummaryCell.js +51 -51
  94. package/esm5/lib/CanvasSummaryCellPresenter.js +5 -5
  95. package/esm5/lib/CanvasTemplateCell.js +7 -7
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +3 -3
  97. package/esm5/lib/CanvasTemplateHeaderCell.js +7 -7
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  99. package/esm5/lib/CanvasTextCell.js +3 -3
  100. package/esm5/lib/CanvasTextCellPresenter.js +2 -2
  101. package/esm5/lib/CanvasTextHeaderCell.js +24 -24
  102. package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
  103. package/esm5/lib/CellPresenterBase.js +1 -1
  104. package/esm5/lib/CheckboxListView_combined.js +339 -296
  105. package/esm5/lib/ColumnChooserView_combined.js +22 -22
  106. package/esm5/lib/ColumnFilterCondition_combined.js +7352 -6962
  107. package/esm5/lib/ColumnGroupDescription.js +22 -0
  108. package/esm5/lib/ColumnGroupDescriptionCollection.js +18 -8
  109. package/esm5/lib/ColumnGroupingView_combined.js +25 -25
  110. package/esm5/lib/ColumnPinningView_combined.js +22 -22
  111. package/esm5/lib/ColumnSortDescriptionCollection.js +16 -6
  112. package/esm5/lib/ColumnSummaryDescriptionCollection.js +16 -6
  113. package/esm5/lib/ComboEditorView.js +6 -3
  114. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  115. package/esm5/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  116. package/esm5/lib/DataGridCellLayoutPanel.js +27 -25
  117. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  118. package/esm5/lib/DataGridToolbarView_combined.js +17 -17
  119. package/esm5/lib/DateTimeColumnValueFormatter.js +92 -1
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +25 -25
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +10 -10
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridColumnOptionsViewBase_combined.js +2 -2
  125. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnPinOptionsView_combined.js +5 -5
  127. package/esm5/lib/GridColumnSortOptionsView_combined.js +5 -5
  128. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  129. package/esm5/lib/GridExternalWrapper.js +18 -6
  130. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  131. package/esm5/lib/ISummaryChooserView_combined.js +13 -13
  132. package/esm5/lib/MultiColumnComboBoxView_combined.js +47 -47
  133. package/esm5/lib/MultiColumnComboVisualModelExport.js +1 -1
  134. package/esm5/lib/NumericCellPresenter.js +1 -1
  135. package/esm5/lib/PropertyEditorView_combined.js +40 -40
  136. package/esm5/lib/TemplateCellPresenter.js +1 -1
  137. package/esm5/lib/TemplateHeader.js +8 -8
  138. package/esm5/lib/TemplateHeaderCellPresenter.js +1 -1
  139. package/esm5/lib/TemplateSectionHeader.js +2 -2
  140. package/esm5/lib/TextEditorView.js +28 -10
  141. package/esm5/lib/VerticalSeparatorCell.js +46 -8
  142. package/esm5/lib/VisualModelExport.js +120 -100
  143. package/esm5/lib/igc-checkbox-list-component.js +82 -54
  144. package/esm5/lib/igc-column-component.js +164 -164
  145. package/esm5/lib/igc-column-group-description-collection.js +17 -3
  146. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  147. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  148. package/esm5/lib/igc-column-sort-description-collection.js +17 -3
  149. package/esm5/lib/igc-column-summary-description-collection.js +17 -3
  150. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  151. package/esm5/lib/igc-data-grid-component.js +743 -601
  152. package/esm5/lib/igc-date-time-column-component.js +23 -23
  153. package/esm5/lib/igc-definition-base-component.js +50 -50
  154. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  155. package/esm5/lib/igc-header-component.js +24 -24
  156. package/esm5/lib/igc-image-column-component.js +12 -12
  157. package/esm5/lib/igc-numeric-column-component.js +35 -35
  158. package/esm5/lib/igc-section-header-component.js +24 -24
  159. package/esm5/lib/igc-summary-row-component.js +24 -24
  160. package/esm5/lib/igc-text-column-component.js +9 -9
  161. package/fesm2015/igniteui-webcomponents-grids.js +10315 -9565
  162. package/fesm5/igniteui-webcomponents-grids.js +10276 -9382
  163. package/lib/CanvasGridCellBase.d.ts +95 -93
  164. package/lib/CanvasImageCell.d.ts +11 -11
  165. package/lib/CanvasSectionHeaderCell.d.ts +1 -1
  166. package/lib/CanvasSummaryCell.d.ts +15 -15
  167. package/lib/CanvasTemplateCell.d.ts +4 -4
  168. package/lib/CanvasTemplateHeaderCell.d.ts +4 -4
  169. package/lib/CanvasTextCell.d.ts +1 -1
  170. package/lib/CanvasTextHeaderCell.d.ts +6 -6
  171. package/lib/CheckboxListView_combined.d.ts +74 -69
  172. package/lib/ColumnFilterCondition_combined.d.ts +1306 -1264
  173. package/lib/ColumnGroupDescription.d.ts +1 -0
  174. package/lib/ColumnGroupDescriptionCollection.d.ts +8 -7
  175. package/lib/ColumnSortDescriptionCollection.d.ts +8 -7
  176. package/lib/ColumnSummaryDescriptionCollection.d.ts +8 -7
  177. package/lib/DataGridCellLayoutPanel.d.ts +1 -0
  178. package/lib/DateTimeColumnValueFormatter.d.ts +19 -1
  179. package/lib/GridExternalWrapper.d.ts +4 -0
  180. package/lib/TemplateHeader.d.ts +3 -3
  181. package/lib/TemplateSectionHeader.d.ts +2 -2
  182. package/lib/TextEditorView.d.ts +5 -3
  183. package/lib/VerticalSeparatorCell.d.ts +9 -0
  184. package/lib/VisualModelExport.d.ts +31 -26
  185. package/lib/igc-checkbox-list-component.d.ts +9 -0
  186. package/lib/igc-column-group-description-collection.d.ts +4 -0
  187. package/lib/igc-column-sort-description-collection.d.ts +4 -0
  188. package/lib/igc-column-summary-description-collection.d.ts +4 -0
  189. package/lib/igc-data-grid-component.d.ts +30 -2
  190. package/package.json +4 -4
@@ -58,154 +58,154 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
58
58
  * Gets or sets the amount of left padding to use for the cell content for this column.
59
59
  */
60
60
  get paddingLeft() {
61
- return this.i.h1;
61
+ return this.i.h2;
62
62
  }
63
63
  set paddingLeft(v) {
64
- this.i.h1 = +v;
65
- this._a("paddingLeft", this.i.h1);
64
+ this.i.h2 = +v;
65
+ this._a("paddingLeft", this.i.h2);
66
66
  }
67
67
  /**
68
68
  * Gets or sets the amount of top padding to use for the cell content for this column.
69
69
  */
70
70
  get paddingTop() {
71
- return this.i.h3;
71
+ return this.i.h4;
72
72
  }
73
73
  set paddingTop(v) {
74
- this.i.h3 = +v;
75
- this._a("paddingTop", this.i.h3);
74
+ this.i.h4 = +v;
75
+ this._a("paddingTop", this.i.h4);
76
76
  }
77
77
  /**
78
78
  * Gets or sets the amount of right padding to use for the cell content of this column.
79
79
  */
80
80
  get paddingRight() {
81
- return this.i.h2;
81
+ return this.i.h3;
82
82
  }
83
83
  set paddingRight(v) {
84
- this.i.h2 = +v;
85
- this._a("paddingRight", this.i.h2);
84
+ this.i.h3 = +v;
85
+ this._a("paddingRight", this.i.h3);
86
86
  }
87
87
  /**
88
88
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
89
89
  */
90
90
  get paddingBottom() {
91
- return this.i.h0;
91
+ return this.i.h1;
92
92
  }
93
93
  set paddingBottom(v) {
94
- this.i.h0 = +v;
95
- this._a("paddingBottom", this.i.h0);
94
+ this.i.h1 = +v;
95
+ this._a("paddingBottom", this.i.h1);
96
96
  }
97
97
  /**
98
98
  * Gets or sets an unique name of the Column
99
99
  */
100
100
  get name() {
101
- return this.i.jy;
101
+ return this.i.jz;
102
102
  }
103
103
  set name(v) {
104
- this.i.jy = v;
104
+ this.i.jz = v;
105
105
  }
106
106
  /**
107
107
  * Gets or sets the key used for the column binding
108
108
  */
109
109
  get field() {
110
- return this.i.i7;
110
+ return this.i.i8;
111
111
  }
112
112
  set field(v) {
113
- this.i.i7 = v;
113
+ this.i.i8 = v;
114
114
  }
115
115
  /**
116
116
  * Gets or sets the text displayed in the header of the column
117
117
  */
118
118
  get headerText() {
119
- return this.i.je;
119
+ return this.i.jf;
120
120
  }
121
121
  set headerText(v) {
122
- this.i.je = v;
122
+ this.i.jf = v;
123
123
  }
124
124
  /**
125
125
  * Gets the actual text displayed in the header of the column
126
126
  */
127
127
  get actualHeaderText() {
128
- return this.i.il;
128
+ return this.i.im;
129
129
  }
130
130
  set actualHeaderText(v) {
131
- this.i.il = v;
131
+ this.i.im = v;
132
132
  }
133
133
  /**
134
134
  * Gets or sets the background color to use for the cells when they are selected
135
135
  */
136
136
  get selectedBackground() {
137
- return brushToString(this.i.lj);
137
+ return brushToString(this.i.lk);
138
138
  }
139
139
  set selectedBackground(v) {
140
- this.i.lj = stringToBrush(v);
141
- this._a("selectedBackground", brushToString(this.i.lj));
140
+ this.i.lk = stringToBrush(v);
141
+ this._a("selectedBackground", brushToString(this.i.lk));
142
142
  }
143
143
  /**
144
144
  * Gets the actual background color that is used for the cells when they are selected
145
145
  */
146
146
  get actualSelectedBackground() {
147
- return brushToString(this.i.lc);
147
+ return brushToString(this.i.ld);
148
148
  }
149
149
  set actualSelectedBackground(v) {
150
- this.i.lc = stringToBrush(v);
151
- this._a("actualSelectedBackground", brushToString(this.i.lc));
150
+ this.i.ld = stringToBrush(v);
151
+ this._a("actualSelectedBackground", brushToString(this.i.ld));
152
152
  }
153
153
  /**
154
154
  * Gets or sets the background color to use for the cells when the row is hovered.
155
155
  */
156
156
  get rowHoverBackground() {
157
- return brushToString(this.i.lh);
157
+ return brushToString(this.i.li);
158
158
  }
159
159
  set rowHoverBackground(v) {
160
- this.i.lh = stringToBrush(v);
161
- this._a("rowHoverBackground", brushToString(this.i.lh));
160
+ this.i.li = stringToBrush(v);
161
+ this._a("rowHoverBackground", brushToString(this.i.li));
162
162
  }
163
163
  /**
164
164
  * Gets the actual background color that is used for the cells when they are hovered.
165
165
  */
166
166
  get actualHoverBackground() {
167
- return brushToString(this.i.la);
167
+ return brushToString(this.i.lb);
168
168
  }
169
169
  set actualHoverBackground(v) {
170
- this.i.la = stringToBrush(v);
171
- this._a("actualHoverBackground", brushToString(this.i.la));
170
+ this.i.lb = stringToBrush(v);
171
+ this._a("actualHoverBackground", brushToString(this.i.lb));
172
172
  }
173
173
  /**
174
174
  * Gets or sets the text color to use for the cells when the row is hovered.
175
175
  */
176
176
  get rowHoverTextColor() {
177
- return brushToString(this.i.li);
177
+ return brushToString(this.i.lj);
178
178
  }
179
179
  set rowHoverTextColor(v) {
180
- this.i.li = stringToBrush(v);
181
- this._a("rowHoverTextColor", brushToString(this.i.li));
180
+ this.i.lj = stringToBrush(v);
181
+ this._a("rowHoverTextColor", brushToString(this.i.lj));
182
182
  }
183
183
  /**
184
184
  * Gets the actual text color that is used for the cells when they are hovered.
185
185
  */
186
186
  get actualRowHoverTextColor() {
187
- return brushToString(this.i.lb);
187
+ return brushToString(this.i.lc);
188
188
  }
189
189
  set actualRowHoverTextColor(v) {
190
- this.i.lb = stringToBrush(v);
191
- this._a("actualRowHoverTextColor", brushToString(this.i.lb));
190
+ this.i.lc = stringToBrush(v);
191
+ this._a("actualRowHoverTextColor", brushToString(this.i.lc));
192
192
  }
193
193
  /**
194
194
  * Gets or sets the animation settings to use for this column.
195
195
  */
196
196
  get animationSettings() {
197
- if (this.i.fr == null) {
197
+ if (this.i.fs == null) {
198
198
  return null;
199
199
  }
200
- if (!this.i.fr.externalObject) {
200
+ if (!this.i.fs.externalObject) {
201
201
  let e = new IgcGridColumnAnimationSettings();
202
- e._implementation = this.i.fr;
203
- this.i.fr.externalObject = e;
202
+ e._implementation = this.i.fs;
203
+ this.i.fs.externalObject = e;
204
204
  }
205
- return this.i.fr.externalObject;
205
+ return this.i.fs.externalObject;
206
206
  }
207
207
  set animationSettings(v) {
208
- v == null ? this.i.fr = null : this.i.fr = v.i;
208
+ v == null ? this.i.fs = null : this.i.fs = v.i;
209
209
  }
210
210
  /**
211
211
  * Gets or sets the width to use for this column.
@@ -234,49 +234,49 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
234
234
  * Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
235
235
  */
236
236
  get minWidth() {
237
- return this.i.hh;
237
+ return this.i.hi;
238
238
  }
239
239
  set minWidth(v) {
240
- this.i.hh = +v;
241
- this._a("minWidth", this.i.hh);
240
+ this.i.hi = +v;
241
+ this._a("minWidth", this.i.hi);
242
242
  }
243
243
  /**
244
244
  * Gets whether this column was projected from markup/templates and is constrained.
245
245
  */
246
246
  get isFromMarkup() {
247
- return this.i.g5;
247
+ return this.i.g6;
248
248
  }
249
249
  set isFromMarkup(v) {
250
- this.i.g5 = ensureBool(v);
251
- this._a("isFromMarkup", this.i.g5);
250
+ this.i.g6 = ensureBool(v);
251
+ this._a("isFromMarkup", this.i.g6);
252
252
  }
253
253
  /**
254
254
  * Gets whether this column was auto generated.
255
255
  */
256
256
  get isAutoGenerated() {
257
- return this.i.gz;
257
+ return this.i.g0;
258
258
  }
259
259
  set isAutoGenerated(v) {
260
- this.i.gz = ensureBool(v);
261
- this._a("isAutoGenerated", this.i.gz);
260
+ this.i.g0 = ensureBool(v);
261
+ this._a("isAutoGenerated", this.i.g0);
262
262
  }
263
263
  /**
264
264
  * Gets or sets a filter to apply on the values of this column
265
265
  */
266
266
  get filter() {
267
- return this.i.eo;
267
+ return this.i.ep;
268
268
  }
269
269
  set filter(v) {
270
- this.i.eo = v;
270
+ this.i.ep = v;
271
271
  }
272
272
  /**
273
273
  * Gets or sets a filter to apply to the values of this column.
274
274
  */
275
275
  get filterExpression() {
276
- return this.i.eq;
276
+ return this.i.er;
277
277
  }
278
278
  set filterExpression(v) {
279
- this.i.eq = v;
279
+ this.i.er = v;
280
280
  }
281
281
  /**
282
282
  * Gets or sets the header definition for this column.
@@ -303,232 +303,232 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
303
303
  * Gets or sets whether filtering is enabled for this column.
304
304
  */
305
305
  get isFilteringEnabled() {
306
- return this.i.g4;
306
+ return this.i.g5;
307
307
  }
308
308
  set isFilteringEnabled(v) {
309
- this.i.g4 = ensureBool(v);
310
- this._a("isFilteringEnabled", this.i.g4);
309
+ this.i.g5 = ensureBool(v);
310
+ this._a("isFilteringEnabled", this.i.g5);
311
311
  }
312
312
  /**
313
313
  * Gets or sets whether resizing is enabled for this column.
314
314
  */
315
315
  get isResizingEnabled() {
316
- return this.i.g7;
316
+ return this.i.g8;
317
317
  }
318
318
  set isResizingEnabled(v) {
319
- this.i.g7 = ensureBool(v);
320
- this._a("isResizingEnabled", this.i.g7);
319
+ this.i.g8 = ensureBool(v);
320
+ this._a("isResizingEnabled", this.i.g8);
321
321
  }
322
322
  /**
323
323
  * Gets or sets whether or not a column is hidden from the grid
324
324
  */
325
325
  get isHidden() {
326
- return this.i.g6;
326
+ return this.i.g7;
327
327
  }
328
328
  set isHidden(v) {
329
- this.i.g6 = ensureBool(v);
330
- this._a("isHidden", this.i.g6);
329
+ this.i.g7 = ensureBool(v);
330
+ this._a("isHidden", this.i.g7);
331
331
  }
332
332
  /**
333
333
  * Gets or sets if a column should be removed from the grid when it is fully hidden
334
334
  */
335
335
  get shouldRemoveWhenHidden() {
336
- return this.i.ha;
336
+ return this.i.hb;
337
337
  }
338
338
  set shouldRemoveWhenHidden(v) {
339
- this.i.ha = ensureBool(v);
340
- this._a("shouldRemoveWhenHidden", this.i.ha);
339
+ this.i.hb = ensureBool(v);
340
+ this._a("shouldRemoveWhenHidden", this.i.hb);
341
341
  }
342
342
  /**
343
343
  * Gets the current sort direction (None, Ascending, Descending) for this column.
344
344
  */
345
345
  get sortDirection() {
346
- return this.i.fe;
346
+ return this.i.ff;
347
347
  }
348
348
  set sortDirection(v) {
349
- this.i.fe = ensureEnum(ColumnSortDirection_$type, v);
350
- this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.fe));
349
+ this.i.ff = ensureEnum(ColumnSortDirection_$type, v);
350
+ this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.ff));
351
351
  }
352
352
  /**
353
353
  * Gets or sets the current fixed position for this column.
354
354
  */
355
355
  get pinned() {
356
- return this.i.f5;
356
+ return this.i.f6;
357
357
  }
358
358
  set pinned(v) {
359
- this.i.f5 = ensureEnum(PinnedPositions_$type, v);
360
- this._a("pinned", enumToString(PinnedPositions_$type, this.i.f5));
359
+ this.i.f6 = ensureEnum(PinnedPositions_$type, v);
360
+ this._a("pinned", enumToString(PinnedPositions_$type, this.i.f6));
361
361
  }
362
362
  /**
363
363
  * Gets the actual column options icon alignment for this column.
364
364
  */
365
365
  get actualColumnOptionsIconAlignment() {
366
- return this.i.e5;
366
+ return this.i.e6;
367
367
  }
368
368
  set actualColumnOptionsIconAlignment(v) {
369
- this.i.e5 = ensureEnum(ColumnOptionsIconAlignment_$type, v);
370
- this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.e5));
369
+ this.i.e6 = ensureEnum(ColumnOptionsIconAlignment_$type, v);
370
+ this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.e6));
371
371
  }
372
372
  /**
373
373
  * Gets or sets whether the column options icon is aligned opposite the header text or not.
374
374
  */
375
375
  get columnOptionsIconAlignment() {
376
- return this.i.e6;
376
+ return this.i.e7;
377
377
  }
378
378
  set columnOptionsIconAlignment(v) {
379
- this.i.e6 = ensureEnum(ColumnOptionsIconAlignment_$type, v);
380
- this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.e6));
379
+ this.i.e7 = ensureEnum(ColumnOptionsIconAlignment_$type, v);
380
+ this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.e7));
381
381
  }
382
382
  /**
383
383
  * Gets the actual column options icon color for this column.
384
384
  */
385
385
  get actualColumnOptionsIconColor() {
386
- return brushToString(this.i.k8);
386
+ return brushToString(this.i.k9);
387
387
  }
388
388
  set actualColumnOptionsIconColor(v) {
389
- this.i.k8 = stringToBrush(v);
390
- this._a("actualColumnOptionsIconColor", brushToString(this.i.k8));
389
+ this.i.k9 = stringToBrush(v);
390
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.k9));
391
391
  }
392
392
  /**
393
393
  * Gets or sets the column options icon color for this column.
394
394
  */
395
395
  get columnOptionsIconColor() {
396
- return brushToString(this.i.ld);
396
+ return brushToString(this.i.le);
397
397
  }
398
398
  set columnOptionsIconColor(v) {
399
- this.i.ld = stringToBrush(v);
400
- this._a("columnOptionsIconColor", brushToString(this.i.ld));
399
+ this.i.le = stringToBrush(v);
400
+ this._a("columnOptionsIconColor", brushToString(this.i.le));
401
401
  }
402
402
  /**
403
403
  * Gets or sets how the column option icon will behave in the column header.
404
404
  */
405
405
  get columnOptionsIconBehavior() {
406
- return this.i.fa;
406
+ return this.i.fb;
407
407
  }
408
408
  set columnOptionsIconBehavior(v) {
409
- this.i.fa = ensureEnum(ColumnOptionsIconBehavior_$type, v);
410
- this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.fa));
409
+ this.i.fb = ensureEnum(ColumnOptionsIconBehavior_$type, v);
410
+ this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.fb));
411
411
  }
412
412
  /**
413
413
  * Gets or sets how the column option icon will behave in the column header.
414
414
  */
415
415
  get actualColumnOptionsIconBehavior() {
416
- return this.i.e9;
416
+ return this.i.fa;
417
417
  }
418
418
  set actualColumnOptionsIconBehavior(v) {
419
- this.i.e9 = ensureEnum(ColumnOptionsIconBehavior_$type, v);
420
- this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.e9));
419
+ this.i.fa = ensureEnum(ColumnOptionsIconBehavior_$type, v);
420
+ this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.fa));
421
421
  }
422
422
  /**
423
423
  * Gets the actual state of the column options for this column.
424
424
  */
425
425
  get actualIsColumnOptionsEnabled() {
426
- return this.i.gs;
426
+ return this.i.gt;
427
427
  }
428
428
  set actualIsColumnOptionsEnabled(v) {
429
- this.i.gs = ensureBool(v);
430
- this._a("actualIsColumnOptionsEnabled", this.i.gs);
429
+ this.i.gt = ensureBool(v);
430
+ this._a("actualIsColumnOptionsEnabled", this.i.gt);
431
431
  }
432
432
  /**
433
433
  * Gets or sets the preferred state of the column options for this column. If the feature is disabled at the grid level
434
434
  * then it will be disabled for the column regardless of what this is set to.
435
435
  */
436
436
  get isColumnOptionsEnabled() {
437
- return this.i.g0;
437
+ return this.i.g1;
438
438
  }
439
439
  set isColumnOptionsEnabled(v) {
440
- this.i.g0 = ensureBool(v);
441
- this._a("isColumnOptionsEnabled", this.i.g0);
440
+ this.i.g1 = ensureBool(v);
441
+ this._a("isColumnOptionsEnabled", this.i.g1);
442
442
  }
443
443
  /**
444
444
  * Gets the actual state of summaries menu in the column options for this column.
445
445
  */
446
446
  get actualIsColumnOptionsSummariesEnabled() {
447
- return this.i.gu;
447
+ return this.i.gv;
448
448
  }
449
449
  set actualIsColumnOptionsSummariesEnabled(v) {
450
- this.i.gu = ensureBool(v);
451
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.gu);
450
+ this.i.gv = ensureBool(v);
451
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.gv);
452
452
  }
453
453
  /**
454
454
  * Gets or sets whether to show the summaries option in the column options menu for this column.
455
455
  */
456
456
  get isColumnOptionsSummariesEnabled() {
457
- return this.i.g2;
457
+ return this.i.g3;
458
458
  }
459
459
  set isColumnOptionsSummariesEnabled(v) {
460
- this.i.g2 = ensureBool(v);
461
- this._a("isColumnOptionsSummariesEnabled", this.i.g2);
460
+ this.i.g3 = ensureBool(v);
461
+ this._a("isColumnOptionsSummariesEnabled", this.i.g3);
462
462
  }
463
463
  /**
464
464
  * Gets the actual state of grouping menu in the column options for this column.
465
465
  */
466
466
  get actualIsColumnOptionsGroupingEnabled() {
467
- return this.i.gt;
467
+ return this.i.gu;
468
468
  }
469
469
  set actualIsColumnOptionsGroupingEnabled(v) {
470
- this.i.gt = ensureBool(v);
471
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.gt);
470
+ this.i.gu = ensureBool(v);
471
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.gu);
472
472
  }
473
473
  /**
474
474
  * Gets or sets whether to show the grouping option in the column options menu for this column.
475
475
  */
476
476
  get isColumnOptionsGroupingEnabled() {
477
- return this.i.g1;
477
+ return this.i.g2;
478
478
  }
479
479
  set isColumnOptionsGroupingEnabled(v) {
480
- this.i.g1 = ensureBool(v);
481
- this._a("isColumnOptionsGroupingEnabled", this.i.g1);
480
+ this.i.g2 = ensureBool(v);
481
+ this._a("isColumnOptionsGroupingEnabled", this.i.g2);
482
482
  }
483
483
  /**
484
484
  * Gets or sets if the column is editable.
485
485
  */
486
486
  get isEditable() {
487
- return this.i.g3;
487
+ return this.i.g4;
488
488
  }
489
489
  set isEditable(v) {
490
- this.i.g3 = ensureBool(v);
491
- this._a("isEditable", this.i.g3);
490
+ this.i.g4 = ensureBool(v);
491
+ this._a("isEditable", this.i.g4);
492
492
  }
493
493
  /**
494
494
  * Gets or sets the text color used for deleted rows.
495
495
  */
496
496
  get deletedTextColor() {
497
- return brushToString(this.i.le);
497
+ return brushToString(this.i.lf);
498
498
  }
499
499
  set deletedTextColor(v) {
500
- this.i.le = stringToBrush(v);
501
- this._a("deletedTextColor", brushToString(this.i.le));
500
+ this.i.lf = stringToBrush(v);
501
+ this._a("deletedTextColor", brushToString(this.i.lf));
502
502
  }
503
503
  /**
504
504
  * Gets the actual text color used for deleted rows.
505
505
  */
506
506
  get actualDeletedTextColor() {
507
- return brushToString(this.i.k9);
507
+ return brushToString(this.i.la);
508
508
  }
509
509
  set actualDeletedTextColor(v) {
510
- this.i.k9 = stringToBrush(v);
511
- this._a("actualDeletedTextColor", brushToString(this.i.k9));
510
+ this.i.la = stringToBrush(v);
511
+ this._a("actualDeletedTextColor", brushToString(this.i.la));
512
512
  }
513
513
  /**
514
514
  * Gets or sets the opacity to use for unsaved edited cell values.
515
515
  */
516
516
  get editOpacity() {
517
- return this.i.hg;
517
+ return this.i.hh;
518
518
  }
519
519
  set editOpacity(v) {
520
- this.i.hg = +v;
521
- this._a("editOpacity", this.i.hg);
520
+ this.i.hh = +v;
521
+ this._a("editOpacity", this.i.hh);
522
522
  }
523
523
  /**
524
524
  * Gets the actual opacity for unsaved edited cell values.
525
525
  */
526
526
  get actualEditOpacity() {
527
- return this.i.hf;
527
+ return this.i.hg;
528
528
  }
529
529
  set actualEditOpacity(v) {
530
- this.i.hf = +v;
531
- this._a("actualEditOpacity", this.i.hf);
530
+ this.i.hg = +v;
531
+ this._a("actualEditOpacity", this.i.hg);
532
532
  }
533
533
  /**
534
534
  * Gets or sets the font style to use for unsaved cell edits.
@@ -549,96 +549,96 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
549
549
  * Gets the actual font style used for unsaved cell edits.
550
550
  */
551
551
  get actualEditFontInfo() {
552
- if (this.i.ga == null) {
552
+ if (this.i.gb == null) {
553
553
  return null;
554
554
  }
555
- return this.i.ga.fontString;
555
+ return this.i.gb.fontString;
556
556
  }
557
557
  set actualEditFontInfo(v) {
558
558
  let fi = new FontInfo();
559
559
  fi.fontString = v;
560
- this.i.ga = fi;
561
- this._a("actualEditFontInfo", this.i.ga != null ? this.i.ga.fontString : "");
560
+ this.i.gb = fi;
561
+ this._a("actualEditFontInfo", this.i.gb != null ? this.i.gb.fontString : "");
562
562
  }
563
563
  /**
564
564
  * Gets or sets if and how cell merging is performed for this field.
565
565
  */
566
566
  get mergedCellMode() {
567
- return this.i.f1;
567
+ return this.i.f2;
568
568
  }
569
569
  set mergedCellMode(v) {
570
- this.i.f1 = ensureEnum(MergedCellMode_$type, v);
571
- this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.f1));
570
+ this.i.f2 = ensureEnum(MergedCellMode_$type, v);
571
+ this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.f2));
572
572
  }
573
573
  /**
574
574
  * Gets or sets how cells are evaluated for merging.
575
575
  */
576
576
  get mergedCellEvaluationCriteria() {
577
- return this.i.fy;
577
+ return this.i.fz;
578
578
  }
579
579
  set mergedCellEvaluationCriteria(v) {
580
- this.i.fy = ensureEnum(MergedCellEvaluationCriteria_$type, v);
581
- this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.fy));
580
+ this.i.fz = ensureEnum(MergedCellEvaluationCriteria_$type, v);
581
+ this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.fz));
582
582
  }
583
583
  /**
584
584
  * Gets or sets the vertical alignment to use for the merged cell content.
585
585
  */
586
586
  get mergedCellVerticalAlignment() {
587
- return this.i.ex;
587
+ return this.i.ey;
588
588
  }
589
589
  set mergedCellVerticalAlignment(v) {
590
- this.i.ex = ensureEnum(CellContentVerticalAlignment_$type, v);
591
- this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.ex));
590
+ this.i.ey = ensureEnum(CellContentVerticalAlignment_$type, v);
591
+ this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.ey));
592
592
  }
593
593
  /**
594
594
  * Gets or sets the amount of left padding to use for the cell content for this column.
595
595
  */
596
596
  get mergedCellPaddingLeft() {
597
- return this.i.hu;
597
+ return this.i.hv;
598
598
  }
599
599
  set mergedCellPaddingLeft(v) {
600
- this.i.hu = +v;
601
- this._a("mergedCellPaddingLeft", this.i.hu);
600
+ this.i.hv = +v;
601
+ this._a("mergedCellPaddingLeft", this.i.hv);
602
602
  }
603
603
  /**
604
604
  * Gets or sets the amount of top padding to use for the cell content for this column.
605
605
  */
606
606
  get mergedCellPaddingTop() {
607
- return this.i.hw;
607
+ return this.i.hx;
608
608
  }
609
609
  set mergedCellPaddingTop(v) {
610
- this.i.hw = +v;
611
- this._a("mergedCellPaddingTop", this.i.hw);
610
+ this.i.hx = +v;
611
+ this._a("mergedCellPaddingTop", this.i.hx);
612
612
  }
613
613
  /**
614
614
  * Gets or sets the amount of right padding to use for the cell content of this column.
615
615
  */
616
616
  get mergedCellPaddingRight() {
617
- return this.i.hv;
617
+ return this.i.hw;
618
618
  }
619
619
  set mergedCellPaddingRight(v) {
620
- this.i.hv = +v;
621
- this._a("mergedCellPaddingRight", this.i.hv);
620
+ this.i.hw = +v;
621
+ this._a("mergedCellPaddingRight", this.i.hw);
622
622
  }
623
623
  /**
624
624
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
625
625
  */
626
626
  get mergedCellPaddingBottom() {
627
- return this.i.ht;
627
+ return this.i.hu;
628
628
  }
629
629
  set mergedCellPaddingBottom(v) {
630
- this.i.ht = +v;
631
- this._a("mergedCellPaddingBottom", this.i.ht);
630
+ this.i.hu = +v;
631
+ this._a("mergedCellPaddingBottom", this.i.hu);
632
632
  }
633
633
  /**
634
634
  * Gets or sets whether UI filters are case sensitive or not.
635
635
  */
636
636
  get filterComparisonType() {
637
- return this.i.fm;
637
+ return this.i.fn;
638
638
  }
639
639
  set filterComparisonType(v) {
640
- this.i.fm = ensureEnum(FilterComparisonType_$type, v);
641
- this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.fm));
640
+ this.i.fn = ensureEnum(FilterComparisonType_$type, v);
641
+ this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.fn));
642
642
  }
643
643
  /**
644
644
  * Gets a list of the current custom filters for this column.
@@ -646,7 +646,7 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
646
646
  get filterOperands() {
647
647
  if (this._filterOperands === null) {
648
648
  let coll = new IgcGridFilterOperandsCollection();
649
- let innerColl = this.i.ft;
649
+ let innerColl = this.i.fu;
650
650
  if (!innerColl) {
651
651
  innerColl = new GridFilterOperandsCollection_internal();
652
652
  }
@@ -662,7 +662,7 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
662
662
  let coll = new IgcGridFilterOperandsCollection();
663
663
  this._filterOperands = coll._fromOuter(v);
664
664
  let syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
665
- let innerColl = this.i.ft;
665
+ let innerColl = this.i.fu;
666
666
  if (!innerColl) {
667
667
  innerColl = new GridFilterOperandsCollection_internal();
668
668
  }
@@ -702,18 +702,18 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
702
702
 
703
703
  */
704
704
  getUniqueKey() {
705
- let iv = this.i.jc();
705
+ let iv = this.i.jd();
706
706
  return (iv);
707
707
  }
708
708
  setNamedHeaderValue(valueName, animationType, value) {
709
- this.i.kj(valueName, (animationType == null ? null : animationType), value);
709
+ this.i.kk(valueName, (animationType == null ? null : animationType), value);
710
710
  }
711
711
  /**
712
712
  * Returns if the column has named header values.
713
713
 
714
714
  */
715
715
  hasNamedHeaderValues() {
716
- let iv = this.i.gx();
716
+ let iv = this.i.gy();
717
717
  return (iv);
718
718
  }
719
719
  /**
@@ -722,7 +722,7 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
722
722
  * @param valueName * The named value to check for.
723
723
  */
724
724
  hasNamedHeaderValue(valueName) {
725
- let iv = this.i.gw(valueName);
725
+ let iv = this.i.gx(valueName);
726
726
  return (iv);
727
727
  }
728
728
  /**
@@ -731,7 +731,7 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
731
731
  * @param valueName * The named header value to remove.
732
732
  */
733
733
  removeNamedHeaderValue(valueName) {
734
- this.i.ki(valueName);
734
+ this.i.kj(valueName);
735
735
  }
736
736
  /**
737
737
  * Gets the value of a named header value for this column by name.
@@ -739,11 +739,11 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
739
739
  * @param valueName * Name of the named header value to retrieve.
740
740
  */
741
741
  getNamedHeaderValue(valueName) {
742
- let iv = this.i.h8(valueName);
742
+ let iv = this.i.h9(valueName);
743
743
  return (iv);
744
744
  }
745
745
  applyCustomFilter(filterID, index, value) {
746
- this.i.kd(filterID, index, value);
746
+ this.i.ke(filterID, index, value);
747
747
  }
748
748
  get actualHeaderTextChange() {
749
749
  return this._actualHeaderTextChange;
@@ -757,7 +757,7 @@ export let IgcColumnComponent = /*@__PURE__*/ (() => {
757
757
  this._actualHeaderTextChange = ev;
758
758
  this._actualHeaderTextChange_wrapped = (o, e) => {
759
759
  let ext = this.actualHeaderText;
760
- if (e.propertyName == 'Il') {
760
+ if (e.propertyName == 'Im') {
761
761
  if (this.beforeActualHeaderTextChange) {
762
762
  this.beforeActualHeaderTextChange(this, ext);
763
763
  }