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
@@ -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.oa;
38
+ return this.i.oe;
39
39
  },
40
40
  set: function (v) {
41
- this.i.oa = 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.n8;
51
+ return this.i.oc;
52
52
  },
53
53
  set: function (v) {
54
- this.i.n8 = 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.oc;
64
+ return this.i.og;
65
65
  },
66
66
  set: function (v) {
67
- this.i.oc = 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.oe;
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.oe = 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.oe;
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.oe = 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.n6;
107
+ return this.i.oa;
108
108
  },
109
109
  set: function (v) {
110
- this.i.n6 = 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.os;
117
+ return this.i.ow;
118
118
  },
119
119
  set: function (v) {
120
- this.i.os = 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.om;
127
+ return this.i.oq;
128
128
  },
129
129
  set: function (v) {
130
- this.i.om = +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.ol;
137
+ return this.i.op;
138
138
  },
139
139
  set: function (v) {
140
- this.i.ol = +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.ok;
147
+ return this.i.oo;
148
148
  },
149
149
  set: function (v) {
150
- this.i.ok = +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.oj;
157
+ return this.i.on;
158
158
  },
159
159
  set: function (v) {
160
- this.i.oj = +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.oi;
167
+ return this.i.om;
168
168
  },
169
169
  set: function (v) {
170
- this.i.oi = +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.oh;
177
+ return this.i.ol;
178
178
  },
179
179
  set: function (v) {
180
- this.i.oh = +v;
180
+ this.i.ol = +v;
181
181
  },
182
182
  enumerable: false,
183
183
  configurable: true
@@ -30,10 +30,10 @@ var IgcImageCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
30
30
  * Sets or gets the resource path to use to get the image for the cell.
31
31
  */
32
32
  get: function () {
33
- return this.i.od;
33
+ return this.i.oh;
34
34
  },
35
35
  set: function (v) {
36
- this.i.od = v;
36
+ this.i.oh = v;
37
37
  },
38
38
  enumerable: false,
39
39
  configurable: true
@@ -43,10 +43,10 @@ var IgcImageCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
43
43
  * Sets or gets the image stretching behavior for the image.
44
44
  */
45
45
  get: function () {
46
- return this.i.n8;
46
+ return this.i.oc;
47
47
  },
48
48
  set: function (v) {
49
- this.i.n8 = ensureEnum(ImageStretchOptions_$type, v);
49
+ this.i.oc = ensureEnum(ImageStretchOptions_$type, v);
50
50
  },
51
51
  enumerable: false,
52
52
  configurable: true
@@ -56,10 +56,10 @@ var IgcImageCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
56
56
  * Sets or gets the image resource type. Indicates which type of resource should be fetched and how ImagePath should be interpreted.
57
57
  */
58
58
  get: function () {
59
- return this.i.n6;
59
+ return this.i.oa;
60
60
  },
61
61
  set: function (v) {
62
- this.i.n6 = ensureEnum(ImageResourceType_$type, v);
62
+ this.i.oa = ensureEnum(ImageResourceType_$type, v);
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -80,11 +80,11 @@ export var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_sup
80
80
  * Gets or sets the stretch option to use when rendering images
81
81
  */
82
82
  get: function () {
83
- return this.i.r8;
83
+ return this.i.si;
84
84
  },
85
85
  set: function (v) {
86
- this.i.r8 = ensureEnum(ImageStretchOptions_$type, v);
87
- this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.r8));
86
+ this.i.si = ensureEnum(ImageStretchOptions_$type, v);
87
+ this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.si));
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,11 +94,11 @@ export var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_sup
94
94
  * Gets or sets the editor type used for editing cells in this column.
95
95
  */
96
96
  get: function () {
97
- return this.i.r4;
97
+ return this.i.se;
98
98
  },
99
99
  set: function (v) {
100
- this.i.r4 = ensureEnum(EditorType_$type, v);
101
- this._a("editorType", enumToString(EditorType_$type, this.i.r4));
100
+ this.i.se = ensureEnum(EditorType_$type, v);
101
+ this._a("editorType", enumToString(EditorType_$type, this.i.se));
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -108,10 +108,10 @@ export var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_sup
108
108
  * Gets or sets the ComboBox data source.
109
109
  */
110
110
  get: function () {
111
- return this.i.r9;
111
+ return this.i.sj;
112
112
  },
113
113
  set: function (v) {
114
- this.i.r9 = v;
114
+ this.i.sj = v;
115
115
  },
116
116
  enumerable: false,
117
117
  configurable: true
@@ -121,10 +121,10 @@ export var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_sup
121
121
  * Gets or sets the ComboBox text field.
122
122
  */
123
123
  get: function () {
124
- return this.i.sa;
124
+ return this.i.sk;
125
125
  },
126
126
  set: function (v) {
127
- this.i.sa = v;
127
+ this.i.sk = v;
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,10 +134,10 @@ export var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_sup
134
134
  * Gets or sets the ComboBox value field.
135
135
  */
136
136
  get: function () {
137
- return this.i.sb;
137
+ return this.i.sl;
138
138
  },
139
139
  set: function (v) {
140
- this.i.sb = v;
140
+ this.i.sl = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
@@ -28,10 +28,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
28
28
  * Sets or gets the numeric value to use for the cell.
29
29
  */
30
30
  get: function () {
31
- return this.i.oe;
31
+ return this.i.ok;
32
32
  },
33
33
  set: function (v) {
34
- this.i.oe = +v;
34
+ this.i.ok = +v;
35
35
  },
36
36
  enumerable: false,
37
37
  configurable: true
@@ -41,10 +41,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
41
41
  * Sets or gets whether there is a decimal numeric value to use for the cell.
42
42
  */
43
43
  get: function () {
44
- return this.i.oa;
44
+ return this.i.of;
45
45
  },
46
46
  set: function (v) {
47
- this.i.oa = ensureBool(v);
47
+ this.i.of = ensureBool(v);
48
48
  },
49
49
  enumerable: false,
50
50
  configurable: true
@@ -54,24 +54,24 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
54
54
  * The format string to apply to the value
55
55
  */
56
56
  get: function () {
57
- return this.i.o8;
57
+ return this.i.pf;
58
58
  },
59
59
  set: function (v) {
60
- this.i.o8 = v;
60
+ this.i.pf = v;
61
61
  },
62
62
  enumerable: false,
63
63
  configurable: true
64
64
  });
65
65
  Object.defineProperty(IgcNumericCellInfo.prototype, "formatSpecifiers", {
66
66
  get: function () {
67
- return this.i.n6;
67
+ return this.i.oa;
68
68
  },
69
69
  set: function (v) {
70
70
  if (v && !Array.isArray(v) && typeof (v) == "string") {
71
71
  var re = /\s*(?:,|\s|$)\s*/gm;
72
72
  v = v.split(re);
73
73
  }
74
- this.i.n6 = v;
74
+ this.i.oa = v;
75
75
  },
76
76
  enumerable: false,
77
77
  configurable: true
@@ -81,10 +81,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
81
81
  * The format options to apply to the value
82
82
  */
83
83
  get: function () {
84
- return this.i.o0;
84
+ return this.i.o7;
85
85
  },
86
86
  set: function (v) {
87
- this.i.o0 = v;
87
+ this.i.o7 = v;
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,10 +94,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
94
94
  * Sets or gets the text prepended to a negative numeric value
95
95
  */
96
96
  get: function () {
97
- return this.i.pe;
97
+ return this.i.pm;
98
98
  },
99
99
  set: function (v) {
100
- this.i.pe = v;
100
+ this.i.pm = v;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
@@ -107,10 +107,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
107
107
  * Sets or gets the text prepended to a positive numeric value
108
108
  */
109
109
  get: function () {
110
- return this.i.pj;
110
+ return this.i.pr;
111
111
  },
112
112
  set: function (v) {
113
- this.i.pj = v;
113
+ this.i.pr = v;
114
114
  },
115
115
  enumerable: false,
116
116
  configurable: true
@@ -120,10 +120,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
120
120
  * Sets or gets the text appended to a negative numeric value
121
121
  */
122
122
  get: function () {
123
- return this.i.pg;
123
+ return this.i.po;
124
124
  },
125
125
  set: function (v) {
126
- this.i.pg = v;
126
+ this.i.po = v;
127
127
  },
128
128
  enumerable: false,
129
129
  configurable: true
@@ -133,10 +133,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
133
133
  * Sets or gets the text appended to a positive numeric value
134
134
  */
135
135
  get: function () {
136
- return this.i.pl;
136
+ return this.i.pt;
137
137
  },
138
138
  set: function (v) {
139
- this.i.pl = v;
139
+ this.i.pt = v;
140
140
  },
141
141
  enumerable: false,
142
142
  configurable: true
@@ -146,10 +146,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
146
146
  * The maximum number of decimal places to display when formatting
147
147
  */
148
148
  get: function () {
149
- return this.i.om;
149
+ return this.i.ot;
150
150
  },
151
151
  set: function (v) {
152
- this.i.om = +v;
152
+ this.i.ot = +v;
153
153
  },
154
154
  enumerable: false,
155
155
  configurable: true
@@ -159,10 +159,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
159
159
  * The minimum number of decimal places to display when formatting
160
160
  */
161
161
  get: function () {
162
- return this.i.oo;
162
+ return this.i.ov;
163
163
  },
164
164
  set: function (v) {
165
- this.i.oo = +v;
165
+ this.i.ov = +v;
166
166
  },
167
167
  enumerable: false,
168
168
  configurable: true
@@ -172,10 +172,10 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
172
172
  * The minimum number of integer digits to display when formatting
173
173
  */
174
174
  get: function () {
175
- return this.i.oq;
175
+ return this.i.ox;
176
176
  },
177
177
  set: function (v) {
178
- this.i.oq = +v;
178
+ this.i.ox = +v;
179
179
  },
180
180
  enumerable: false,
181
181
  configurable: true
@@ -185,10 +185,23 @@ var IgcNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
185
185
  * Sets or gets if the grouping separator is shown
186
186
  */
187
187
  get: function () {
188
- return this.i.oc;
188
+ return this.i.oi;
189
+ },
190
+ set: function (v) {
191
+ this.i.oi = ensureBool(v);
192
+ },
193
+ enumerable: false,
194
+ configurable: true
195
+ });
196
+ Object.defineProperty(IgcNumericCellInfo.prototype, "isPercent", {
197
+ /**
198
+ * Sets or gets if the value is treated as a percent and multiplied by 100 when formatted.
199
+ */
200
+ get: function () {
201
+ return this.i.oh;
189
202
  },
190
203
  set: function (v) {
191
- this.i.oc = ensureBool(v);
204
+ this.i.oh = ensureBool(v);
192
205
  },
193
206
  enumerable: false,
194
207
  configurable: true
@@ -79,10 +79,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
79
79
  * Gets or sets the string to prefix a negative value. If FormatString is specificied this value is ignored.
80
80
  */
81
81
  get: function () {
82
- return this.i.s2;
82
+ return this.i.tc;
83
83
  },
84
84
  set: function (v) {
85
- this.i.s2 = v;
85
+ this.i.tc = v;
86
86
  },
87
87
  enumerable: false,
88
88
  configurable: true
@@ -92,10 +92,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
92
92
  * Gets or sets the string to prefix a positive value. If FormatString is specificied this value is ignored.
93
93
  */
94
94
  get: function () {
95
- return this.i.s6;
95
+ return this.i.tg;
96
96
  },
97
97
  set: function (v) {
98
- this.i.s6 = v;
98
+ this.i.tg = v;
99
99
  },
100
100
  enumerable: false,
101
101
  configurable: true
@@ -105,10 +105,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
105
105
  * Gets or sets the string to suffix a negative value. If FormatString is specificied this value is ignored.
106
106
  */
107
107
  get: function () {
108
- return this.i.s4;
108
+ return this.i.te;
109
109
  },
110
110
  set: function (v) {
111
- this.i.s4 = v;
111
+ this.i.te = v;
112
112
  },
113
113
  enumerable: false,
114
114
  configurable: true
@@ -118,10 +118,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
118
118
  * Gets or sets the string to suffix a positive value. If FormatString is specificied this value is ignored.
119
119
  */
120
120
  get: function () {
121
- return this.i.s8;
121
+ return this.i.ti;
122
122
  },
123
123
  set: function (v) {
124
- this.i.s8 = v;
124
+ this.i.ti = v;
125
125
  },
126
126
  enumerable: false,
127
127
  configurable: true
@@ -131,11 +131,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
131
131
  * Gets or sets the maximum fraction digits. If FormatString is specificied this value is ignored.
132
132
  */
133
133
  get: function () {
134
- return this.i.sg;
134
+ return this.i.sq;
135
135
  },
136
136
  set: function (v) {
137
- this.i.sg = +v;
138
- this._a("maxFractionDigits", this.i.sg);
137
+ this.i.sq = +v;
138
+ this._a("maxFractionDigits", this.i.sq);
139
139
  },
140
140
  enumerable: false,
141
141
  configurable: true
@@ -145,11 +145,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
145
145
  * Gets or sets the minimum fraction digits. If FormatString is specificied this value is ignored.
146
146
  */
147
147
  get: function () {
148
- return this.i.sh;
148
+ return this.i.sr;
149
149
  },
150
150
  set: function (v) {
151
- this.i.sh = +v;
152
- this._a("minFractionDigits", this.i.sh);
151
+ this.i.sr = +v;
152
+ this._a("minFractionDigits", this.i.sr);
153
153
  },
154
154
  enumerable: false,
155
155
  configurable: true
@@ -159,11 +159,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
159
159
  * Gets or sets the minimum integer digits. If FormatString is specificied this value is ignored.
160
160
  */
161
161
  get: function () {
162
- return this.i.si;
162
+ return this.i.ss;
163
163
  },
164
164
  set: function (v) {
165
- this.i.si = +v;
166
- this._a("minIntegerDigits", this.i.si);
165
+ this.i.ss = +v;
166
+ this._a("minIntegerDigits", this.i.ss);
167
167
  },
168
168
  enumerable: false,
169
169
  configurable: true
@@ -174,11 +174,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
174
174
  * When true, the raw numeric value is multiplied by 100 before it is formatted for display.
175
175
  */
176
176
  get: function () {
177
- return this.i.sa;
177
+ return this.i.sk;
178
178
  },
179
179
  set: function (v) {
180
- this.i.sa = ensureBool(v);
181
- this._a("isPercent", this.i.sa);
180
+ this.i.sk = ensureBool(v);
181
+ this._a("isPercent", this.i.sk);
182
182
  },
183
183
  enumerable: false,
184
184
  configurable: true
@@ -188,11 +188,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
188
188
  * Gets or sets whether to show a grouping separator. If FormatString is specificied this value is ignored.
189
189
  */
190
190
  get: function () {
191
- return this.i.sb;
191
+ return this.i.sl;
192
192
  },
193
193
  set: function (v) {
194
- this.i.sb = ensureBool(v);
195
- this._a("showGroupingSeparator", this.i.sb);
194
+ this.i.sl = ensureBool(v);
195
+ this._a("showGroupingSeparator", this.i.sl);
196
196
  },
197
197
  enumerable: false,
198
198
  configurable: true
@@ -202,24 +202,24 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
202
202
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
203
203
  */
204
204
  get: function () {
205
- return this.i.sw;
205
+ return this.i.s6;
206
206
  },
207
207
  set: function (v) {
208
- this.i.sw = v;
208
+ this.i.s6 = v;
209
209
  },
210
210
  enumerable: false,
211
211
  configurable: true
212
212
  });
213
213
  Object.defineProperty(IgcNumericColumnComponent.prototype, "formatSpecifiers", {
214
214
  get: function () {
215
- return this.i.r5;
215
+ return this.i.sf;
216
216
  },
217
217
  set: function (v) {
218
218
  if (v && !Array.isArray(v) && typeof (v) == "string") {
219
219
  var re = /\s*(?:,|\s|$)\s*/gm;
220
220
  v = v.split(re);
221
221
  }
222
- this.i.r5 = v;
222
+ this.i.sf = v;
223
223
  },
224
224
  enumerable: false,
225
225
  configurable: true
@@ -229,10 +229,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
229
229
  * Gets or sets the INTL NumericFormat object to use for formatting the date values.
230
230
  */
231
231
  get: function () {
232
- return this.i.sl;
232
+ return this.i.sv;
233
233
  },
234
234
  set: function (v) {
235
- this.i.sl = v;
235
+ this.i.sv = v;
236
236
  },
237
237
  enumerable: false,
238
238
  configurable: true
@@ -242,11 +242,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
242
242
  * Gets or sets the editor type used for editing cells in this column.
243
243
  */
244
244
  get: function () {
245
- return this.i.r7;
245
+ return this.i.sh;
246
246
  },
247
247
  set: function (v) {
248
- this.i.r7 = ensureEnum(EditorType_$type, v);
249
- this._a("editorType", enumToString(EditorType_$type, this.i.r7));
248
+ this.i.sh = ensureEnum(EditorType_$type, v);
249
+ this._a("editorType", enumToString(EditorType_$type, this.i.sh));
250
250
  },
251
251
  enumerable: false,
252
252
  configurable: true
@@ -256,10 +256,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
256
256
  * Gets or sets the ComboBox data source.
257
257
  */
258
258
  get: function () {
259
- return this.i.sk;
259
+ return this.i.su;
260
260
  },
261
261
  set: function (v) {
262
- this.i.sk = v;
262
+ this.i.su = v;
263
263
  },
264
264
  enumerable: false,
265
265
  configurable: true
@@ -269,10 +269,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
269
269
  * Gets or sets the ComboBox text field.
270
270
  */
271
271
  get: function () {
272
- return this.i.sr;
272
+ return this.i.s1;
273
273
  },
274
274
  set: function (v) {
275
- this.i.sr = v;
275
+ this.i.s1 = v;
276
276
  },
277
277
  enumerable: false,
278
278
  configurable: true
@@ -282,10 +282,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
282
282
  * Gets or sets the ComboBox value field.
283
283
  */
284
284
  get: function () {
285
- return this.i.ss;
285
+ return this.i.s2;
286
286
  },
287
287
  set: function (v) {
288
- this.i.ss = v;
288
+ this.i.s2 = v;
289
289
  },
290
290
  enumerable: false,
291
291
  configurable: true