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
@@ -2150,6 +2150,20 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
2150
2150
  enumerable: false,
2151
2151
  configurable: true
2152
2152
  });
2153
+ Object.defineProperty(IgcDataGridComponent.prototype, "cellSelectedTextColor", {
2154
+ /**
2155
+ * Gets or sets the default text color to use for content cells when a row is in a selected state
2156
+ */
2157
+ get: function () {
2158
+ return brushToString(this.i.cellSelectedTextColor);
2159
+ },
2160
+ set: function (v) {
2161
+ this.i.cellSelectedTextColor = stringToBrush(v);
2162
+ this._a("cellSelectedTextColor", brushToString(this.i.cellSelectedTextColor));
2163
+ },
2164
+ enumerable: false,
2165
+ configurable: true
2166
+ });
2153
2167
  Object.defineProperty(IgcDataGridComponent.prototype, "sectionHeaderSelectedBackground", {
2154
2168
  /**
2155
2169
  * Gets or sets the default background color to use for section header cells when a row is in a selected state
@@ -2427,6 +2441,20 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
2427
2441
  enumerable: false,
2428
2442
  configurable: true
2429
2443
  });
2444
+ Object.defineProperty(IgcDataGridComponent.prototype, "sectionHeaderExpansionIndicatorIconColor", {
2445
+ /**
2446
+ * Gets or sets the color to use for the expansion indicator icon on section header cells. When unset, the icon defers to the section header text color.
2447
+ */
2448
+ get: function () {
2449
+ return brushToString(this.i.sectionHeaderExpansionIndicatorIconColor);
2450
+ },
2451
+ set: function (v) {
2452
+ this.i.sectionHeaderExpansionIndicatorIconColor = stringToBrush(v);
2453
+ this._a("sectionHeaderExpansionIndicatorIconColor", brushToString(this.i.sectionHeaderExpansionIndicatorIconColor));
2454
+ },
2455
+ enumerable: false,
2456
+ configurable: true
2457
+ });
2430
2458
  Object.defineProperty(IgcDataGridComponent.prototype, "sectionHeaderTextStyle", {
2431
2459
  /**
2432
2460
  * Gets or sets the font to use for section header cells
@@ -29,10 +29,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the DateTime value for the cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.ob;
32
+ return this.i.oj;
33
33
  },
34
34
  set: function (v) {
35
- this.i.ob = v;
35
+ this.i.oj = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,24 +42,24 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * The format string to apply to the value
43
43
  */
44
44
  get: function () {
45
- return this.i.os;
45
+ return this.i.o0;
46
46
  },
47
47
  set: function (v) {
48
- this.i.os = v;
48
+ this.i.o0 = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
52
52
  });
53
53
  Object.defineProperty(IgcDateTimeCellInfo.prototype, "formatSpecifiers", {
54
54
  get: function () {
55
- return this.i.n2;
55
+ return this.i.oa;
56
56
  },
57
57
  set: function (v) {
58
58
  if (v && !Array.isArray(v) && typeof (v) == "string") {
59
59
  var re = /\s*(?:,|\s|$)\s*/gm;
60
60
  v = v.split(re);
61
61
  }
62
- this.i.n2 = v;
62
+ this.i.oa = v;
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -69,10 +69,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
69
69
  * The format options to apply to the value
70
70
  */
71
71
  get: function () {
72
- return this.i.ol;
72
+ return this.i.ot;
73
73
  },
74
74
  set: function (v) {
75
- this.i.ol = v;
75
+ this.i.ot = v;
76
76
  },
77
77
  enumerable: false,
78
78
  configurable: true
@@ -82,10 +82,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
82
82
  * Sets or gets the simple DateTimeFormat to use for the cell.
83
83
  */
84
84
  get: function () {
85
- return this.i.n7;
85
+ return this.i.of;
86
86
  },
87
87
  set: function (v) {
88
- this.i.n7 = ensureEnum(DateTimeFormats_$type, v);
88
+ this.i.of = ensureEnum(DateTimeFormats_$type, v);
89
89
  },
90
90
  enumerable: false,
91
91
  configurable: true
@@ -95,10 +95,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
95
95
  * Sets or gets whether the value to use is a DateTimeOffset value.
96
96
  */
97
97
  get: function () {
98
- return this.i.n9;
98
+ return this.i.oh;
99
99
  },
100
100
  set: function (v) {
101
- this.i.n9 = ensureBool(v);
101
+ this.i.oh = ensureBool(v);
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -80,11 +80,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
80
80
  * Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
81
81
  */
82
82
  get: function () {
83
- return this.i.r1;
83
+ return this.i.sc;
84
84
  },
85
85
  set: function (v) {
86
- this.i.r1 = ensureEnum(DateTimeFormats_$type, v);
87
- this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.r1));
86
+ this.i.sc = ensureEnum(DateTimeFormats_$type, v);
87
+ this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.sc));
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,10 +94,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
94
94
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
95
95
  */
96
96
  get: function () {
97
- return this.i.sj;
97
+ return this.i.su;
98
98
  },
99
99
  set: function (v) {
100
- this.i.sj = v;
100
+ this.i.su = v;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
@@ -107,24 +107,24 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
107
107
  * Gets or sets the format string to use when editing dates.
108
108
  */
109
109
  get: function () {
110
- return this.i.sc;
110
+ return this.i.sn;
111
111
  },
112
112
  set: function (v) {
113
- this.i.sc = v;
113
+ this.i.sn = v;
114
114
  },
115
115
  enumerable: false,
116
116
  configurable: true
117
117
  });
118
118
  Object.defineProperty(IgcDateTimeColumnComponent.prototype, "formatSpecifiers", {
119
119
  get: function () {
120
- return this.i.rx;
120
+ return this.i.r8;
121
121
  },
122
122
  set: function (v) {
123
123
  if (v && !Array.isArray(v) && typeof (v) == "string") {
124
124
  var re = /\s*(?:,|\s|$)\s*/gm;
125
125
  v = v.split(re);
126
126
  }
127
- this.i.rx = v;
127
+ this.i.r8 = v;
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,10 +134,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
134
134
  * Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
135
135
  */
136
136
  get: function () {
137
- return this.i.r8;
137
+ return this.i.sj;
138
138
  },
139
139
  set: function (v) {
140
- this.i.r8 = v;
140
+ this.i.sj = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
@@ -147,11 +147,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
147
147
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
148
148
  */
149
149
  get: function () {
150
- return this.i.r4;
150
+ return this.i.sf;
151
151
  },
152
152
  set: function (v) {
153
- this.i.r4 = ensureBool(v);
154
- this._a("showTodayButton", this.i.r4);
153
+ this.i.sf = ensureBool(v);
154
+ this._a("showTodayButton", this.i.sf);
155
155
  },
156
156
  enumerable: false,
157
157
  configurable: true
@@ -161,11 +161,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
161
161
  * Gets or sets the editor type used for editing cells in this column.
162
162
  */
163
163
  get: function () {
164
- return this.i.r2;
164
+ return this.i.sd;
165
165
  },
166
166
  set: function (v) {
167
- this.i.r2 = ensureEnum(EditorType_$type, v);
168
- this._a("editorType", enumToString(EditorType_$type, this.i.r2));
167
+ this.i.sd = ensureEnum(EditorType_$type, v);
168
+ this._a("editorType", enumToString(EditorType_$type, this.i.sd));
169
169
  },
170
170
  enumerable: false,
171
171
  configurable: true
@@ -175,10 +175,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
175
175
  * Gets or sets the ComboBox data source.
176
176
  */
177
177
  get: function () {
178
- return this.i.r7;
178
+ return this.i.si;
179
179
  },
180
180
  set: function (v) {
181
- this.i.r7 = v;
181
+ this.i.si = v;
182
182
  },
183
183
  enumerable: false,
184
184
  configurable: true
@@ -188,10 +188,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
188
188
  * Gets or sets the ComboBox text field.
189
189
  */
190
190
  get: function () {
191
- return this.i.se;
191
+ return this.i.sp;
192
192
  },
193
193
  set: function (v) {
194
- this.i.se = v;
194
+ this.i.sp = v;
195
195
  },
196
196
  enumerable: false,
197
197
  configurable: true
@@ -201,10 +201,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
201
201
  * Gets or sets the ComboBox value field.
202
202
  */
203
203
  get: function () {
204
- return this.i.sf;
204
+ return this.i.sq;
205
205
  },
206
206
  set: function (v) {
207
- this.i.sf = v;
207
+ this.i.sq = v;
208
208
  },
209
209
  enumerable: false,
210
210
  configurable: true
@@ -624,11 +624,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
624
624
  * Gets or sets the background color for content that sticks to the top of the grid.
625
625
  */
626
626
  get: function () {
627
- return brushToString(this.i.gz);
627
+ return brushToString(this.i.g0);
628
628
  },
629
629
  set: function (v) {
630
- this.i.gz = stringToBrush(v);
631
- this._a("stickyRowBackground", brushToString(this.i.gz));
630
+ this.i.g0 = stringToBrush(v);
631
+ this._a("stickyRowBackground", brushToString(this.i.g0));
632
632
  },
633
633
  enumerable: false,
634
634
  configurable: true
@@ -652,11 +652,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
652
652
  * Gets or sets the background color for cells belonging to rows marked as pinned.
653
653
  */
654
654
  get: function () {
655
- return brushToString(this.i.gy);
655
+ return brushToString(this.i.gz);
656
656
  },
657
657
  set: function (v) {
658
- this.i.gy = stringToBrush(v);
659
- this._a("pinnedRowBackground", brushToString(this.i.gy));
658
+ this.i.gz = stringToBrush(v);
659
+ this._a("pinnedRowBackground", brushToString(this.i.gz));
660
660
  },
661
661
  enumerable: false,
662
662
  configurable: true
@@ -680,11 +680,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
680
680
  * Gets or sets the color for the last row in the sticky row area.
681
681
  */
682
682
  get: function () {
683
- return brushToString(this.i.gx);
683
+ return brushToString(this.i.gy);
684
684
  },
685
685
  set: function (v) {
686
- this.i.gx = stringToBrush(v);
687
- this._a("lastStickyRowBackground", brushToString(this.i.gx));
686
+ this.i.gy = stringToBrush(v);
687
+ this._a("lastStickyRowBackground", brushToString(this.i.gy));
688
688
  },
689
689
  enumerable: false,
690
690
  configurable: true
@@ -778,11 +778,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
778
778
  * Gets or sets the color to use for displaying text.
779
779
  */
780
780
  get: function () {
781
- return brushToString(this.i.g0);
781
+ return brushToString(this.i.g1);
782
782
  },
783
783
  set: function (v) {
784
- this.i.g0 = stringToBrush(v);
785
- this._a("textColor", brushToString(this.i.g0));
784
+ this.i.g1 = stringToBrush(v);
785
+ this._a("textColor", brushToString(this.i.g1));
786
786
  },
787
787
  enumerable: false,
788
788
  configurable: true
@@ -30,7 +30,7 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
30
30
  * Gets whether the editor cell is hidden or not.
31
31
  */
32
32
  get: function () {
33
- return this.i.od;
33
+ return this.i.ol;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -40,14 +40,14 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
40
40
  * Gets or sets the edit target for this cell.
41
41
  */
42
42
  get: function () {
43
- var r = this.i.n6;
43
+ var r = this.i.oe;
44
44
  if (r == null) {
45
45
  return null;
46
46
  }
47
47
  return r.externalObject;
48
48
  },
49
49
  set: function (v) {
50
- v == null ? this.i.n6 = null : this.i.n6 = v.i;
50
+ v == null ? this.i.oe = null : this.i.oe = v.i;
51
51
  },
52
52
  enumerable: false,
53
53
  configurable: true
@@ -57,10 +57,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
57
57
  * Gets or sets the data type associated with the cell being edited.
58
58
  */
59
59
  get: function () {
60
- return this.i.n4;
60
+ return this.i.oc;
61
61
  },
62
62
  set: function (v) {
63
- this.i.n4 = ensureEnum(DataSourceSchemaPropertyType_$type, v);
63
+ this.i.oc = ensureEnum(DataSourceSchemaPropertyType_$type, v);
64
64
  },
65
65
  enumerable: false,
66
66
  configurable: true
@@ -70,10 +70,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
70
70
  * Gets or sets the error message to display in the editor cell.
71
71
  */
72
72
  get: function () {
73
- return this.i.o9;
73
+ return this.i.ph;
74
74
  },
75
75
  set: function (v) {
76
- this.i.o9 = v;
76
+ this.i.ph = v;
77
77
  },
78
78
  enumerable: false,
79
79
  configurable: true
@@ -83,10 +83,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
83
83
  * Gets or sets the user selected value.
84
84
  */
85
85
  get: function () {
86
- return this.i.ow;
86
+ return this.i.o4;
87
87
  },
88
88
  set: function (v) {
89
- this.i.ow = v;
89
+ this.i.o4 = v;
90
90
  },
91
91
  enumerable: false,
92
92
  configurable: true
@@ -96,10 +96,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
96
96
  * Gets or sets the type of editor to use while cell editing.
97
97
  */
98
98
  get: function () {
99
- return this.i.n8;
99
+ return this.i.og;
100
100
  },
101
101
  set: function (v) {
102
- this.i.n8 = ensureEnum(EditorType_$type, v);
102
+ this.i.og = ensureEnum(EditorType_$type, v);
103
103
  },
104
104
  enumerable: false,
105
105
  configurable: true
@@ -109,10 +109,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
109
109
  * Gets or sets the data source to use for the editor where it makes sense.
110
110
  */
111
111
  get: function () {
112
- return this.i.ov;
112
+ return this.i.o3;
113
113
  },
114
114
  set: function (v) {
115
- this.i.ov = v;
115
+ this.i.o3 = v;
116
116
  },
117
117
  enumerable: false,
118
118
  configurable: true
@@ -122,10 +122,10 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
122
122
  * Gets or sets the editors display member.
123
123
  */
124
124
  get: function () {
125
- return this.i.o4;
125
+ return this.i.pc;
126
126
  },
127
127
  set: function (v) {
128
- this.i.o4 = v;
128
+ this.i.pc = v;
129
129
  },
130
130
  enumerable: false,
131
131
  configurable: true
@@ -135,34 +135,34 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
135
135
  * Gets or sets the editors value member.
136
136
  */
137
137
  get: function () {
138
- return this.i.n2;
138
+ return this.i.oa;
139
139
  },
140
140
  set: function (v) {
141
141
  if (v && !Array.isArray(v) && typeof (v) == "string") {
142
142
  var re = /\s*(?:,|\s|$)\s*/gm;
143
143
  v = v.split(re);
144
144
  }
145
- this.i.n2 = v;
145
+ this.i.oa = v;
146
146
  },
147
147
  enumerable: false,
148
148
  configurable: true
149
149
  });
150
150
  Object.defineProperty(IgcEditorCellInfo.prototype, "dateFormatString", {
151
151
  get: function () {
152
- return this.i.o1;
152
+ return this.i.o9;
153
153
  },
154
154
  set: function (v) {
155
- this.i.o1 = v;
155
+ this.i.o9 = v;
156
156
  },
157
157
  enumerable: false,
158
158
  configurable: true
159
159
  });
160
160
  Object.defineProperty(IgcEditorCellInfo.prototype, "showTodayButton", {
161
161
  get: function () {
162
- return this.i.oe;
162
+ return this.i.om;
163
163
  },
164
164
  set: function (v) {
165
- this.i.oe = ensureBool(v);
165
+ this.i.om = ensureBool(v);
166
166
  },
167
167
  enumerable: false,
168
168
  configurable: true
@@ -172,7 +172,7 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
172
172
  * Gets the row index that the editor cell is targeting for edit.
173
173
  */
174
174
  get: function () {
175
- return this.i.ot;
175
+ return this.i.o1;
176
176
  },
177
177
  enumerable: false,
178
178
  configurable: true
@@ -182,7 +182,7 @@ var IgcEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
182
182
  * Gets the column index that the editor cell is targeting for edit.
183
183
  */
184
184
  get: function () {
185
- return this.i.os;
185
+ return this.i.o0;
186
186
  },
187
187
  enumerable: false,
188
188
  configurable: true
@@ -35,10 +35,10 @@ var IgcFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
35
35
  * Gets or sets whether the cell is hit test visible.
36
36
  */
37
37
  get: function () {
38
- return this.i.n6;
38
+ return this.i.oe;
39
39
  },
40
40
  set: function (v) {
41
- this.i.n6 = ensureEnum(DataSourceSchemaPropertyType_$type, v);
41
+ this.i.oe = ensureEnum(DataSourceSchemaPropertyType_$type, v);
42
42
  },
43
43
  enumerable: false,
44
44
  configurable: true
@@ -48,10 +48,10 @@ var IgcFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
48
48
  * Gets or sets the current filter to display in the cell.
49
49
  */
50
50
  get: function () {
51
- return this.i.n4;
51
+ return this.i.oc;
52
52
  },
53
53
  set: function (v) {
54
- this.i.n4 = v;
54
+ this.i.oc = v;
55
55
  },
56
56
  enumerable: false,
57
57
  configurable: true
@@ -61,10 +61,10 @@ var IgcFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
61
61
  * Gets or sets the current filter expression applied to the column.
62
62
  */
63
63
  get: function () {
64
- return this.i.n8;
64
+ return this.i.og;
65
65
  },
66
66
  set: function (v) {
67
- this.i.n8 = v;
67
+ this.i.og = v;
68
68
  },
69
69
  enumerable: false,
70
70
  configurable: true
@@ -73,12 +73,12 @@ var IgcFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
73
73
  get: function () {
74
74
  if (this._filterOperands === null) {
75
75
  var coll = new IgcGridFilterOperandsCollection();
76
- var innerColl = this.i.oa;
76
+ var innerColl = this.i.oi;
77
77
  if (!innerColl) {
78
78
  innerColl = new GridFilterOperandsCollection_internal();
79
79
  }
80
80
  this._filterOperands = coll._fromInner(innerColl);
81
- this.i.oa = innerColl;
81
+ this.i.oi = innerColl;
82
82
  }
83
83
  return this._filterOperands;
84
84
  },
@@ -90,94 +90,94 @@ var IgcFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
90
90
  var coll = new IgcGridFilterOperandsCollection();
91
91
  this._filterOperands = coll._fromOuter(v);
92
92
  var syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
93
- var innerColl = this.i.oa;
93
+ var innerColl = this.i.oi;
94
94
  if (!innerColl) {
95
95
  innerColl = new GridFilterOperandsCollection_internal();
96
96
  }
97
97
  syncColl._inner = innerColl;
98
98
  syncColl.clear();
99
99
  this._filterOperands._setSyncTarget(syncColl);
100
- this.i.oa = innerColl;
100
+ this.i.oi = innerColl;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
104
104
  });
105
105
  Object.defineProperty(IgcFilterCellInfo.prototype, "operatorType", {
106
106
  get: function () {
107
- return this.i.n2;
107
+ return this.i.oa;
108
108
  },
109
109
  set: function (v) {
110
- this.i.n2 = v;
110
+ this.i.oa = v;
111
111
  },
112
112
  enumerable: false,
113
113
  configurable: true
114
114
  });
115
115
  Object.defineProperty(IgcFilterCellInfo.prototype, "filterValue", {
116
116
  get: function () {
117
- return this.i.oo;
117
+ return this.i.ow;
118
118
  },
119
119
  set: function (v) {
120
- this.i.oo = v;
120
+ this.i.ow = v;
121
121
  },
122
122
  enumerable: false,
123
123
  configurable: true
124
124
  });
125
125
  Object.defineProperty(IgcFilterCellInfo.prototype, "selectorTop", {
126
126
  get: function () {
127
- return this.i.oi;
127
+ return this.i.oq;
128
128
  },
129
129
  set: function (v) {
130
- this.i.oi = +v;
130
+ this.i.oq = +v;
131
131
  },
132
132
  enumerable: false,
133
133
  configurable: true
134
134
  });
135
135
  Object.defineProperty(IgcFilterCellInfo.prototype, "selectorLeft", {
136
136
  get: function () {
137
- return this.i.oh;
137
+ return this.i.op;
138
138
  },
139
139
  set: function (v) {
140
- this.i.oh = +v;
140
+ this.i.op = +v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
144
144
  });
145
145
  Object.defineProperty(IgcFilterCellInfo.prototype, "editorTop", {
146
146
  get: function () {
147
- return this.i.og;
147
+ return this.i.oo;
148
148
  },
149
149
  set: function (v) {
150
- this.i.og = +v;
150
+ this.i.oo = +v;
151
151
  },
152
152
  enumerable: false,
153
153
  configurable: true
154
154
  });
155
155
  Object.defineProperty(IgcFilterCellInfo.prototype, "editorLeft", {
156
156
  get: function () {
157
- return this.i.of;
157
+ return this.i.on;
158
158
  },
159
159
  set: function (v) {
160
- this.i.of = +v;
160
+ this.i.on = +v;
161
161
  },
162
162
  enumerable: false,
163
163
  configurable: true
164
164
  });
165
165
  Object.defineProperty(IgcFilterCellInfo.prototype, "clearIconTop", {
166
166
  get: function () {
167
- return this.i.oe;
167
+ return this.i.om;
168
168
  },
169
169
  set: function (v) {
170
- this.i.oe = +v;
170
+ this.i.om = +v;
171
171
  },
172
172
  enumerable: false,
173
173
  configurable: true
174
174
  });
175
175
  Object.defineProperty(IgcFilterCellInfo.prototype, "clearIconLeft", {
176
176
  get: function () {
177
- return this.i.od;
177
+ return this.i.ol;
178
178
  },
179
179
  set: function (v) {
180
- this.i.od = +v;
180
+ this.i.ol = +v;
181
181
  },
182
182
  enumerable: false,
183
183
  configurable: true