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
@@ -78,11 +78,11 @@ export var IgcFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (functi
78
78
  * Gets or sets the amount of left padding to use for the cell content for this column.
79
79
  */
80
80
  get: function () {
81
- return this.i.g6;
81
+ return this.i.g7;
82
82
  },
83
83
  set: function (v) {
84
- this.i.g6 = +v;
85
- this._a("paddingLeft", this.i.g6);
84
+ this.i.g7 = +v;
85
+ this._a("paddingLeft", this.i.g7);
86
86
  },
87
87
  enumerable: false,
88
88
  configurable: true
@@ -92,11 +92,11 @@ export var IgcFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (functi
92
92
  * Gets or sets the amount of top padding to use for the cell content for this column.
93
93
  */
94
94
  get: function () {
95
- return this.i.g8;
95
+ return this.i.g9;
96
96
  },
97
97
  set: function (v) {
98
- this.i.g8 = +v;
99
- this._a("paddingTop", this.i.g8);
98
+ this.i.g9 = +v;
99
+ this._a("paddingTop", this.i.g9);
100
100
  },
101
101
  enumerable: false,
102
102
  configurable: true
@@ -106,11 +106,11 @@ export var IgcFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (functi
106
106
  * Gets or sets the amount of right padding to use for the cell content of this column.
107
107
  */
108
108
  get: function () {
109
- return this.i.g7;
109
+ return this.i.g8;
110
110
  },
111
111
  set: function (v) {
112
- this.i.g7 = +v;
113
- this._a("paddingRight", this.i.g7);
112
+ this.i.g8 = +v;
113
+ this._a("paddingRight", this.i.g8);
114
114
  },
115
115
  enumerable: false,
116
116
  configurable: true
@@ -120,11 +120,11 @@ export var IgcFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (functi
120
120
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
121
121
  */
122
122
  get: function () {
123
- return this.i.g5;
123
+ return this.i.g6;
124
124
  },
125
125
  set: function (v) {
126
- this.i.g5 = +v;
127
- this._a("paddingBottom", this.i.g5);
126
+ this.i.g6 = +v;
127
+ this._a("paddingBottom", this.i.g6);
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -68,11 +68,11 @@ export var IgcHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
68
68
  * Gets or sets the color to use for the sort indicator icon
69
69
  */
70
70
  get: function () {
71
- return brushToString(this.i.hr);
71
+ return brushToString(this.i.hs);
72
72
  },
73
73
  set: function (v) {
74
- this.i.hr = stringToBrush(v);
75
- this._a("sortIndicatorColor", brushToString(this.i.hr));
74
+ this.i.hs = stringToBrush(v);
75
+ this._a("sortIndicatorColor", brushToString(this.i.hs));
76
76
  },
77
77
  enumerable: false,
78
78
  configurable: true
@@ -82,33 +82,33 @@ export var IgcHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
82
82
  * Gets the actual background color that is used for the cells when they are selected
83
83
  */
84
84
  get: function () {
85
- return brushToString(this.i.hp);
85
+ return brushToString(this.i.hq);
86
86
  },
87
87
  set: function (v) {
88
- this.i.hp = stringToBrush(v);
89
- this._a("actualSortIndicatorColor", brushToString(this.i.hp));
88
+ this.i.hq = stringToBrush(v);
89
+ this._a("actualSortIndicatorColor", brushToString(this.i.hq));
90
90
  },
91
91
  enumerable: false,
92
92
  configurable: true
93
93
  });
94
94
  Object.defineProperty(IgcHeaderComponent.prototype, "sortIndicatorStyle", {
95
95
  get: function () {
96
- return this.i.g4;
96
+ return this.i.g5;
97
97
  },
98
98
  set: function (v) {
99
- this.i.g4 = ensureEnum(SortIndicatorStyle_$type, v);
100
- this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g4));
99
+ this.i.g5 = ensureEnum(SortIndicatorStyle_$type, v);
100
+ this._a("sortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g5));
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
104
104
  });
105
105
  Object.defineProperty(IgcHeaderComponent.prototype, "actualSortIndicatorStyle", {
106
106
  get: function () {
107
- return this.i.g3;
107
+ return this.i.g4;
108
108
  },
109
109
  set: function (v) {
110
- this.i.g3 = ensureEnum(SortIndicatorStyle_$type, v);
111
- this._a("actualSortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g3));
110
+ this.i.g4 = ensureEnum(SortIndicatorStyle_$type, v);
111
+ this._a("actualSortIndicatorStyle", enumToString(SortIndicatorStyle_$type, this.i.g4));
112
112
  },
113
113
  enumerable: false,
114
114
  configurable: true
@@ -118,11 +118,11 @@ export var IgcHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
118
118
  * Gets or sets the amount of left padding to use for the cell content.
119
119
  */
120
120
  get: function () {
121
- return this.i.ha;
121
+ return this.i.hb;
122
122
  },
123
123
  set: function (v) {
124
- this.i.ha = +v;
125
- this._a("paddingLeft", this.i.ha);
124
+ this.i.hb = +v;
125
+ this._a("paddingLeft", this.i.hb);
126
126
  },
127
127
  enumerable: false,
128
128
  configurable: true
@@ -132,11 +132,11 @@ export var IgcHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
132
132
  * Gets or sets the amount of top padding to use for the cell content.
133
133
  */
134
134
  get: function () {
135
- return this.i.hc;
135
+ return this.i.hd;
136
136
  },
137
137
  set: function (v) {
138
- this.i.hc = +v;
139
- this._a("paddingTop", this.i.hc);
138
+ this.i.hd = +v;
139
+ this._a("paddingTop", this.i.hd);
140
140
  },
141
141
  enumerable: false,
142
142
  configurable: true
@@ -146,11 +146,11 @@ export var IgcHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
146
146
  * Gets or sets the amount of right padding to use for the cell content.
147
147
  */
148
148
  get: function () {
149
- return this.i.hb;
149
+ return this.i.hc;
150
150
  },
151
151
  set: function (v) {
152
- this.i.hb = +v;
153
- this._a("paddingRight", this.i.hb);
152
+ this.i.hc = +v;
153
+ this._a("paddingRight", this.i.hc);
154
154
  },
155
155
  enumerable: false,
156
156
  configurable: true
@@ -160,11 +160,11 @@ export var IgcHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
160
160
  * Gets or sets the amount of bottom padding to use for the cell content.
161
161
  */
162
162
  get: function () {
163
- return this.i.g9;
163
+ return this.i.ha;
164
164
  },
165
165
  set: function (v) {
166
- this.i.g9 = +v;
167
- this._a("paddingBottom", this.i.g9);
166
+ this.i.ha = +v;
167
+ this._a("paddingBottom", this.i.ha);
168
168
  },
169
169
  enumerable: false,
170
170
  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.n9;
33
+ return this.i.oh;
34
34
  },
35
35
  set: function (v) {
36
- this.i.n9 = 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.n4;
46
+ return this.i.oc;
47
47
  },
48
48
  set: function (v) {
49
- this.i.n4 = 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.n2;
59
+ return this.i.oa;
60
60
  },
61
61
  set: function (v) {
62
- this.i.n2 = 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.r0;
83
+ return this.i.sb;
84
84
  },
85
85
  set: function (v) {
86
- this.i.r0 = ensureEnum(ImageStretchOptions_$type, v);
87
- this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.r0));
86
+ this.i.sb = ensureEnum(ImageStretchOptions_$type, v);
87
+ this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.sb));
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.rw;
97
+ return this.i.r7;
98
98
  },
99
99
  set: function (v) {
100
- this.i.rw = ensureEnum(EditorType_$type, v);
101
- this._a("editorType", enumToString(EditorType_$type, this.i.rw));
100
+ this.i.r7 = ensureEnum(EditorType_$type, v);
101
+ this._a("editorType", enumToString(EditorType_$type, this.i.r7));
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.r1;
111
+ return this.i.sc;
112
112
  },
113
113
  set: function (v) {
114
- this.i.r1 = v;
114
+ this.i.sc = 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.r2;
124
+ return this.i.sd;
125
125
  },
126
126
  set: function (v) {
127
- this.i.r2 = v;
127
+ this.i.sd = 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.r3;
137
+ return this.i.se;
138
138
  },
139
139
  set: function (v) {
140
- this.i.r3 = v;
140
+ this.i.se = 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.oa;
31
+ return this.i.ok;
32
32
  },
33
33
  set: function (v) {
34
- this.i.oa = +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.n6;
44
+ return this.i.of;
45
45
  },
46
46
  set: function (v) {
47
- this.i.n6 = 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.o4;
57
+ return this.i.pf;
58
58
  },
59
59
  set: function (v) {
60
- this.i.o4 = 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.n2;
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.n2 = 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.ow;
84
+ return this.i.o7;
85
85
  },
86
86
  set: function (v) {
87
- this.i.ow = 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.pa;
97
+ return this.i.pm;
98
98
  },
99
99
  set: function (v) {
100
- this.i.pa = 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.pf;
110
+ return this.i.pr;
111
111
  },
112
112
  set: function (v) {
113
- this.i.pf = 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.pc;
123
+ return this.i.po;
124
124
  },
125
125
  set: function (v) {
126
- this.i.pc = 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.ph;
136
+ return this.i.pt;
137
137
  },
138
138
  set: function (v) {
139
- this.i.ph = 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.oi;
149
+ return this.i.ot;
150
150
  },
151
151
  set: function (v) {
152
- this.i.oi = +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.ok;
162
+ return this.i.ov;
163
163
  },
164
164
  set: function (v) {
165
- this.i.ok = +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.om;
175
+ return this.i.ox;
176
176
  },
177
177
  set: function (v) {
178
- this.i.om = +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.n8;
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.n8 = ensureBool(v);
204
+ this.i.oh = ensureBool(v);
192
205
  },
193
206
  enumerable: false,
194
207
  configurable: true