igniteui-angular-data-grids 20.0.1 → 20.0.2-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 (240) hide show
  1. package/bundles/igniteui-angular-data-grids.umd.js +10223 -8743
  2. package/bundles/igniteui-angular-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +6925 -6539
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +335 -335
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +8 -8
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +7 -7
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  74. package/esm2015/lib/igx-cell-info.js +301 -190
  75. package/esm2015/lib/igx-checkbox-list-component.js +1 -1
  76. package/esm2015/lib/igx-column-moving-separator-component.js +6 -6
  77. package/esm2015/lib/igx-column-resizing-separator-component.js +4 -4
  78. package/esm2015/lib/igx-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igx-data-grid-column-component.js +254 -115
  80. package/esm2015/lib/igx-data-grid-component.js +38 -5
  81. package/esm2015/lib/igx-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igx-date-time-column-component.js +20 -20
  83. package/esm2015/lib/igx-definition-base-component.js +46 -45
  84. package/esm2015/lib/igx-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igx-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igx-filter-row-definition-component.js +8 -8
  87. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igx-grid-conditional-style-font-info-component.js +144 -0
  89. package/esm2015/lib/igx-grid-conditional-style-font-info-dynamic-module.js +34 -0
  90. package/esm2015/lib/igx-grid-conditional-style-font-info-module.js +27 -0
  91. package/esm2015/lib/igx-header-component.js +16 -16
  92. package/esm2015/lib/igx-image-cell-info.js +6 -6
  93. package/esm2015/lib/igx-image-column-component.js +10 -10
  94. package/esm2015/lib/igx-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igx-numeric-column-component.js +30 -30
  96. package/esm2015/lib/igx-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igx-section-header-component.js +16 -16
  98. package/esm2015/lib/igx-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igx-summary-row-component.js +16 -16
  100. package/esm2015/lib/igx-template-cell-info.js +2 -2
  101. package/esm2015/lib/igx-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igx-text-cell-info.js +2 -2
  103. package/esm2015/lib/igx-text-column-component.js +8 -8
  104. package/esm2015/lib/igx-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +5 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +6754 -6269
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +8 -8
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +7 -7
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  177. package/esm5/lib/igx-cell-info.js +349 -190
  178. package/esm5/lib/igx-checkbox-list-component.js +1 -1
  179. package/esm5/lib/igx-column-moving-separator-component.js +6 -6
  180. package/esm5/lib/igx-column-resizing-separator-component.js +4 -4
  181. package/esm5/lib/igx-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igx-data-grid-column-component.js +302 -115
  183. package/esm5/lib/igx-data-grid-component.js +42 -5
  184. package/esm5/lib/igx-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igx-date-time-column-component.js +20 -20
  186. package/esm5/lib/igx-definition-base-component.js +46 -45
  187. package/esm5/lib/igx-editor-cell-info.js +23 -23
  188. package/esm5/lib/igx-filter-cell-info.js +26 -26
  189. package/esm5/lib/igx-filter-row-definition-component.js +8 -8
  190. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igx-grid-conditional-style-font-info-component.js +155 -0
  192. package/esm5/lib/igx-grid-conditional-style-font-info-dynamic-module.js +33 -0
  193. package/esm5/lib/igx-grid-conditional-style-font-info-module.js +28 -0
  194. package/esm5/lib/igx-header-component.js +16 -16
  195. package/esm5/lib/igx-image-cell-info.js +6 -6
  196. package/esm5/lib/igx-image-column-component.js +10 -10
  197. package/esm5/lib/igx-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igx-numeric-column-component.js +30 -30
  199. package/esm5/lib/igx-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igx-section-header-component.js +16 -16
  201. package/esm5/lib/igx-summary-cell-info.js +9 -9
  202. package/esm5/lib/igx-summary-row-component.js +16 -16
  203. package/esm5/lib/igx-template-cell-info.js +2 -2
  204. package/esm5/lib/igx-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igx-text-cell-info.js +2 -2
  206. package/esm5/lib/igx-text-column-component.js +8 -8
  207. package/esm5/lib/igx-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +5 -0
  209. package/fesm2015/igniteui-angular-data-grids.js +10236 -9009
  210. package/fesm5/igniteui-angular-data-grids.js +10219 -8745
  211. package/lib/ColumnFilterCondition_combined.d.ts +1784 -1694
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/ImageCell.d.ts +20 -20
  219. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  220. package/lib/NumericCell.d.ts +2 -1
  221. package/lib/SectionHeaderCell.d.ts +4 -4
  222. package/lib/SummaryCell.d.ts +11 -11
  223. package/lib/TemplateCell.d.ts +6 -6
  224. package/lib/TemplateHeader.d.ts +3 -3
  225. package/lib/TemplateHeaderCell.d.ts +3 -3
  226. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  227. package/lib/TemplateSectionHeader.d.ts +2 -2
  228. package/lib/TextCell.d.ts +10 -8
  229. package/lib/TextCellDecoration.d.ts +26 -0
  230. package/lib/TextHeaderCell.d.ts +37 -35
  231. package/lib/VerticalSeparatorCell.d.ts +9 -9
  232. package/lib/igx-cell-info.d.ts +63 -0
  233. package/lib/igx-data-grid-column-component.d.ts +68 -2
  234. package/lib/igx-data-grid-component.d.ts +9 -2
  235. package/lib/igx-definition-base-component.d.ts +1 -1
  236. package/lib/igx-grid-conditional-style-font-info-component.d.ts +33 -0
  237. package/lib/igx-grid-conditional-style-font-info-dynamic-module.d.ts +9 -0
  238. package/lib/igx-grid-conditional-style-font-info-module.d.ts +8 -0
  239. package/package.json +43 -43
  240. package/public_api.d.ts +5 -0
@@ -46,10 +46,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
46
46
  * Gets or sets the string to prefix a negative value. If FormatString is specificied this value is ignored.
47
47
  */
48
48
  get: function () {
49
- return this.i.o0;
49
+ return this.i.p1;
50
50
  },
51
51
  set: function (v) {
52
- this.i.o0 = v;
52
+ this.i.p1 = v;
53
53
  },
54
54
  enumerable: false,
55
55
  configurable: true
@@ -59,10 +59,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
59
59
  * Gets or sets the string to prefix a positive value. If FormatString is specificied this value is ignored.
60
60
  */
61
61
  get: function () {
62
- return this.i.o4;
62
+ return this.i.p5;
63
63
  },
64
64
  set: function (v) {
65
- this.i.o4 = v;
65
+ this.i.p5 = v;
66
66
  },
67
67
  enumerable: false,
68
68
  configurable: true
@@ -72,10 +72,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
72
72
  * Gets or sets the string to suffix a negative value. If FormatString is specificied this value is ignored.
73
73
  */
74
74
  get: function () {
75
- return this.i.o2;
75
+ return this.i.p3;
76
76
  },
77
77
  set: function (v) {
78
- this.i.o2 = v;
78
+ this.i.p3 = v;
79
79
  },
80
80
  enumerable: false,
81
81
  configurable: true
@@ -85,10 +85,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
85
85
  * Gets or sets the string to suffix a positive value. If FormatString is specificied this value is ignored.
86
86
  */
87
87
  get: function () {
88
- return this.i.o6;
88
+ return this.i.p7;
89
89
  },
90
90
  set: function (v) {
91
- this.i.o6 = v;
91
+ this.i.p7 = v;
92
92
  },
93
93
  enumerable: false,
94
94
  configurable: true
@@ -98,10 +98,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
98
98
  * Gets or sets the maximum fraction digits. If FormatString is specificied this value is ignored.
99
99
  */
100
100
  get: function () {
101
- return this.i.of;
101
+ return this.i.pg;
102
102
  },
103
103
  set: function (v) {
104
- this.i.of = +v;
104
+ this.i.pg = +v;
105
105
  },
106
106
  enumerable: false,
107
107
  configurable: true
@@ -111,10 +111,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
111
111
  * Gets or sets the minimum fraction digits. If FormatString is specificied this value is ignored.
112
112
  */
113
113
  get: function () {
114
- return this.i.og;
114
+ return this.i.ph;
115
115
  },
116
116
  set: function (v) {
117
- this.i.og = +v;
117
+ this.i.ph = +v;
118
118
  },
119
119
  enumerable: false,
120
120
  configurable: true
@@ -124,10 +124,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
124
124
  * Gets or sets the minimum integer digits. If FormatString is specificied this value is ignored.
125
125
  */
126
126
  get: function () {
127
- return this.i.oh;
127
+ return this.i.pi;
128
128
  },
129
129
  set: function (v) {
130
- this.i.oh = +v;
130
+ this.i.pi = +v;
131
131
  },
132
132
  enumerable: false,
133
133
  configurable: true
@@ -137,10 +137,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
137
137
  * Gets or sets whether to show a grouping separator. If FormatString is specificied this value is ignored.
138
138
  */
139
139
  get: function () {
140
- return this.i.oa;
140
+ return this.i.pb;
141
141
  },
142
142
  set: function (v) {
143
- this.i.oa = ensureBool(v);
143
+ this.i.pb = ensureBool(v);
144
144
  },
145
145
  enumerable: false,
146
146
  configurable: true
@@ -150,24 +150,24 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
150
150
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
151
151
  */
152
152
  get: function () {
153
- return this.i.ov;
153
+ return this.i.pw;
154
154
  },
155
155
  set: function (v) {
156
- this.i.ov = v;
156
+ this.i.pw = v;
157
157
  },
158
158
  enumerable: false,
159
159
  configurable: true
160
160
  });
161
161
  Object.defineProperty(IgxNumericColumnComponent.prototype, "formatSpecifiers", {
162
162
  get: function () {
163
- return this.i.n6;
163
+ return this.i.o7;
164
164
  },
165
165
  set: function (v) {
166
166
  if (v && !Array.isArray(v) && typeof (v) == "string") {
167
167
  var re = /\s*(?:,|\s|$)\s*/gm;
168
168
  v = v.split(re);
169
169
  }
170
- this.i.n6 = v;
170
+ this.i.o7 = v;
171
171
  },
172
172
  enumerable: false,
173
173
  configurable: true
@@ -177,10 +177,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
177
177
  * Gets or sets the INTL NumericFormat object to use for formatting the date values.
178
178
  */
179
179
  get: function () {
180
- return this.i.ok;
180
+ return this.i.pl;
181
181
  },
182
182
  set: function (v) {
183
- this.i.ok = v;
183
+ this.i.pl = v;
184
184
  },
185
185
  enumerable: false,
186
186
  configurable: true
@@ -190,10 +190,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
190
190
  * Gets or sets the editor type used for editing cells in this column.
191
191
  */
192
192
  get: function () {
193
- return this.i.n8;
193
+ return this.i.o9;
194
194
  },
195
195
  set: function (v) {
196
- this.i.n8 = ensureEnum(EditorType_$type, v);
196
+ this.i.o9 = ensureEnum(EditorType_$type, v);
197
197
  },
198
198
  enumerable: false,
199
199
  configurable: true
@@ -203,10 +203,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
203
203
  * Gets or sets the ComboBox data source.
204
204
  */
205
205
  get: function () {
206
- return this.i.oj;
206
+ return this.i.pk;
207
207
  },
208
208
  set: function (v) {
209
- this.i.oj = v;
209
+ this.i.pk = v;
210
210
  },
211
211
  enumerable: false,
212
212
  configurable: true
@@ -216,10 +216,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
216
216
  * Gets or sets the ComboBox text field.
217
217
  */
218
218
  get: function () {
219
- return this.i.oq;
219
+ return this.i.pr;
220
220
  },
221
221
  set: function (v) {
222
- this.i.oq = v;
222
+ this.i.pr = v;
223
223
  },
224
224
  enumerable: false,
225
225
  configurable: true
@@ -229,10 +229,10 @@ var IgxNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
229
229
  * Gets or sets the ComboBox value field.
230
230
  */
231
231
  get: function () {
232
- return this.i.or;
232
+ return this.i.ps;
233
233
  },
234
234
  set: function (v) {
235
- this.i.or = v;
235
+ this.i.ps = v;
236
236
  },
237
237
  enumerable: false,
238
238
  configurable: true
@@ -29,10 +29,10 @@ var IgxSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the resolved text for the section header cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.mz;
32
+ return this.i.oc;
33
33
  },
34
34
  set: function (v) {
35
- this.i.mz = v;
35
+ this.i.oc = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,10 +42,10 @@ var IgxSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * Sets or gets the resolved summary text for the section header cell.
43
43
  */
44
44
  get: function () {
45
- return this.i.mx;
45
+ return this.i.oa;
46
46
  },
47
47
  set: function (v) {
48
- this.i.mx = v;
48
+ this.i.oa = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
@@ -55,10 +55,10 @@ var IgxSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
55
55
  * Sets or gets how summaries are displayed in the section header cell.
56
56
  */
57
57
  get: function () {
58
- return this.i.mo;
58
+ return this.i.n1;
59
59
  },
60
60
  set: function (v) {
61
- this.i.mo = ensureEnum(GroupSummaryDisplayMode_$type, v);
61
+ this.i.n1 = ensureEnum(GroupSummaryDisplayMode_$type, v);
62
62
  },
63
63
  enumerable: false,
64
64
  configurable: true
@@ -42,20 +42,20 @@ var IgxSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  };
43
43
  Object.defineProperty(IgxSectionHeaderComponent.prototype, "selectedBackground", {
44
44
  get: function () {
45
- return brushToString(this.i.hs);
45
+ return brushToString(this.i.ht);
46
46
  },
47
47
  set: function (v) {
48
- this.i.hs = stringToBrush(v);
48
+ this.i.ht = stringToBrush(v);
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
52
52
  });
53
53
  Object.defineProperty(IgxSectionHeaderComponent.prototype, "actualSelectedBackground", {
54
54
  get: function () {
55
- return brushToString(this.i.hr);
55
+ return brushToString(this.i.hs);
56
56
  },
57
57
  set: function (v) {
58
- this.i.hr = stringToBrush(v);
58
+ this.i.hs = stringToBrush(v);
59
59
  },
60
60
  enumerable: false,
61
61
  configurable: true
@@ -65,10 +65,10 @@ var IgxSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
65
65
  * Gets or sets the amount of left padding to use for the cell content for this column.
66
66
  */
67
67
  get: function () {
68
- return this.i.ha;
68
+ return this.i.hb;
69
69
  },
70
70
  set: function (v) {
71
- this.i.ha = +v;
71
+ this.i.hb = +v;
72
72
  },
73
73
  enumerable: false,
74
74
  configurable: true
@@ -78,10 +78,10 @@ var IgxSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
78
78
  * Gets or sets the amount of top padding to use for the cell content for this column.
79
79
  */
80
80
  get: function () {
81
- return this.i.hc;
81
+ return this.i.hd;
82
82
  },
83
83
  set: function (v) {
84
- this.i.hc = +v;
84
+ this.i.hd = +v;
85
85
  },
86
86
  enumerable: false,
87
87
  configurable: true
@@ -91,10 +91,10 @@ var IgxSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
91
91
  * Gets or sets the amount of right padding to use for the cell content of this column.
92
92
  */
93
93
  get: function () {
94
- return this.i.hb;
94
+ return this.i.hc;
95
95
  },
96
96
  set: function (v) {
97
- this.i.hb = +v;
97
+ this.i.hc = +v;
98
98
  },
99
99
  enumerable: false,
100
100
  configurable: true
@@ -104,30 +104,30 @@ var IgxSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
104
104
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
105
105
  */
106
106
  get: function () {
107
- return this.i.g9;
107
+ return this.i.ha;
108
108
  },
109
109
  set: function (v) {
110
- this.i.g9 = +v;
110
+ this.i.ha = +v;
111
111
  },
112
112
  enumerable: false,
113
113
  configurable: true
114
114
  });
115
115
  Object.defineProperty(IgxSectionHeaderComponent.prototype, "isCollapsable", {
116
116
  get: function () {
117
- return this.i.g3;
117
+ return this.i.g4;
118
118
  },
119
119
  set: function (v) {
120
- this.i.g3 = ensureBool(v);
120
+ this.i.g4 = ensureBool(v);
121
121
  },
122
122
  enumerable: false,
123
123
  configurable: true
124
124
  });
125
125
  Object.defineProperty(IgxSectionHeaderComponent.prototype, "summaryDisplayMode", {
126
126
  get: function () {
127
- return this.i.g0;
127
+ return this.i.g1;
128
128
  },
129
129
  set: function (v) {
130
- this.i.g0 = ensureEnum(GroupSummaryDisplayMode_$type, v);
130
+ this.i.g1 = ensureEnum(GroupSummaryDisplayMode_$type, v);
131
131
  },
132
132
  enumerable: false,
133
133
  configurable: true
@@ -29,10 +29,10 @@ var IgxSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
29
29
  * Sets or gets the resolved summary label for the summary cell.
30
30
  */
31
31
  get: function () {
32
- return this.i.mr;
32
+ return this.i.n4;
33
33
  },
34
34
  set: function (v) {
35
- this.i.mr = v;
35
+ this.i.n4 = v;
36
36
  },
37
37
  enumerable: false,
38
38
  configurable: true
@@ -42,10 +42,10 @@ var IgxSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  * Sets or gets the resolved summary value for the sumamry cell.
43
43
  */
44
44
  get: function () {
45
- return this.i.mt;
45
+ return this.i.n6;
46
46
  },
47
47
  set: function (v) {
48
- this.i.mt = v;
48
+ this.i.n6 = v;
49
49
  },
50
50
  enumerable: false,
51
51
  configurable: true
@@ -55,25 +55,25 @@ var IgxSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
55
55
  * Gets or sets the color of the text for the summary label in the cell.
56
56
  */
57
57
  get: function () {
58
- return brushToString(this.i.my);
58
+ return brushToString(this.i.ob);
59
59
  },
60
60
  set: function (v) {
61
- this.i.my = stringToBrush(v);
61
+ this.i.ob = stringToBrush(v);
62
62
  },
63
63
  enumerable: false,
64
64
  configurable: true
65
65
  });
66
66
  Object.defineProperty(IgxSummaryCellInfo.prototype, "font", {
67
67
  get: function () {
68
- if (this.i.mk == null) {
68
+ if (this.i.nx == null) {
69
69
  return null;
70
70
  }
71
- return this.i.mk.fontString;
71
+ return this.i.nx.fontString;
72
72
  },
73
73
  set: function (v) {
74
74
  var fi = new FontInfo();
75
75
  fi.fontString = v;
76
- this.i.mk = fi;
76
+ this.i.nx = fi;
77
77
  },
78
78
  enumerable: false,
79
79
  configurable: true
@@ -38,10 +38,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
38
38
  * Gets or sets the background color for summary cells when selected.
39
39
  */
40
40
  get: function () {
41
- return brushToString(this.i.hv);
41
+ return brushToString(this.i.hw);
42
42
  },
43
43
  set: function (v) {
44
- this.i.hv = stringToBrush(v);
44
+ this.i.hw = stringToBrush(v);
45
45
  },
46
46
  enumerable: false,
47
47
  configurable: true
@@ -51,10 +51,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
51
51
  * Gets the actual background color for summary cells when selected.
52
52
  */
53
53
  get: function () {
54
- return brushToString(this.i.hs);
54
+ return brushToString(this.i.ht);
55
55
  },
56
56
  set: function (v) {
57
- this.i.hs = stringToBrush(v);
57
+ this.i.ht = stringToBrush(v);
58
58
  },
59
59
  enumerable: false,
60
60
  configurable: true
@@ -64,10 +64,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
64
64
  * Gets or sets the text color for the summary labels.
65
65
  */
66
66
  get: function () {
67
- return brushToString(this.i.hw);
67
+ return brushToString(this.i.hx);
68
68
  },
69
69
  set: function (v) {
70
- this.i.hw = stringToBrush(v);
70
+ this.i.hx = stringToBrush(v);
71
71
  },
72
72
  enumerable: false,
73
73
  configurable: true
@@ -77,10 +77,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
77
77
  * Gets the actual text color for the summary labels.
78
78
  */
79
79
  get: function () {
80
- return brushToString(this.i.ht);
80
+ return brushToString(this.i.hu);
81
81
  },
82
82
  set: function (v) {
83
- this.i.ht = stringToBrush(v);
83
+ this.i.hu = stringToBrush(v);
84
84
  },
85
85
  enumerable: false,
86
86
  configurable: true
@@ -108,10 +108,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
108
108
  * Gets or sets the amount of left padding to use for the cell content for this column.
109
109
  */
110
110
  get: function () {
111
- return this.i.g8;
111
+ return this.i.g9;
112
112
  },
113
113
  set: function (v) {
114
- this.i.g8 = +v;
114
+ this.i.g9 = +v;
115
115
  },
116
116
  enumerable: false,
117
117
  configurable: true
@@ -121,10 +121,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
121
121
  * Gets or sets the amount of top padding to use for the cell content for this column.
122
122
  */
123
123
  get: function () {
124
- return this.i.ha;
124
+ return this.i.hb;
125
125
  },
126
126
  set: function (v) {
127
- this.i.ha = +v;
127
+ this.i.hb = +v;
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,10 +134,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
134
134
  * Gets or sets the amount of right padding to use for the cell content of this column.
135
135
  */
136
136
  get: function () {
137
- return this.i.g9;
137
+ return this.i.ha;
138
138
  },
139
139
  set: function (v) {
140
- this.i.g9 = +v;
140
+ this.i.ha = +v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
@@ -147,10 +147,10 @@ var IgxSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_super) {
147
147
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
148
148
  */
149
149
  get: function () {
150
- return this.i.g7;
150
+ return this.i.g8;
151
151
  },
152
152
  set: function (v) {
153
- this.i.g7 = +v;
153
+ this.i.g8 = +v;
154
154
  },
155
155
  enumerable: false,
156
156
  configurable: true
@@ -27,10 +27,10 @@ var IgxTemplateCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
27
27
  * Sets or gets the value to provide to the template.
28
28
  */
29
29
  get: function () {
30
- return this.i.ml;
30
+ return this.i.ny;
31
31
  },
32
32
  set: function (v) {
33
- this.i.ml = v;
33
+ this.i.ny = v;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -28,10 +28,10 @@ var IgxTemplateHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
28
28
  * Sets or gets whether the filter UI should be visible in the header.
29
29
  */
30
30
  get: function () {
31
- return this.i.mo;
31
+ return this.i.n1;
32
32
  },
33
33
  set: function (v) {
34
- this.i.mo = ensureBool(v);
34
+ this.i.n1 = ensureBool(v);
35
35
  },
36
36
  enumerable: false,
37
37
  configurable: true
@@ -27,10 +27,10 @@ var IgxTextCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
27
27
  * Sets or gets the text value for the cell.
28
28
  */
29
29
  get: function () {
30
- return this.i.ml;
30
+ return this.i.ny;
31
31
  },
32
32
  set: function (v) {
33
- this.i.ml = v;
33
+ this.i.ny = v;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -46,10 +46,10 @@ var IgxTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
46
46
  * Gets or sets the editor type used for editing cells in this column.
47
47
  */
48
48
  get: function () {
49
- return this.i.n5;
49
+ return this.i.o6;
50
50
  },
51
51
  set: function (v) {
52
- this.i.n5 = ensureEnum(EditorType_$type, v);
52
+ this.i.o6 = ensureEnum(EditorType_$type, v);
53
53
  },
54
54
  enumerable: false,
55
55
  configurable: true
@@ -59,10 +59,10 @@ var IgxTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
59
59
  * Gets or sets the ComboBox data source.
60
60
  */
61
61
  get: function () {
62
- return this.i.n6;
62
+ return this.i.o7;
63
63
  },
64
64
  set: function (v) {
65
- this.i.n6 = v;
65
+ this.i.o7 = v;
66
66
  },
67
67
  enumerable: false,
68
68
  configurable: true
@@ -72,10 +72,10 @@ var IgxTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
72
72
  * Gets or sets the ComboBox text field.
73
73
  */
74
74
  get: function () {
75
- return this.i.n8;
75
+ return this.i.o9;
76
76
  },
77
77
  set: function (v) {
78
- this.i.n8 = v;
78
+ this.i.o9 = v;
79
79
  },
80
80
  enumerable: false,
81
81
  configurable: true
@@ -85,10 +85,10 @@ var IgxTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
85
85
  * Gets or sets the ComboBox value field.
86
86
  */
87
87
  get: function () {
88
- return this.i.n9;
88
+ return this.i.pa;
89
89
  },
90
90
  set: function (v) {
91
- this.i.n9 = v;
91
+ this.i.pa = v;
92
92
  },
93
93
  enumerable: false,
94
94
  configurable: true
@@ -31,20 +31,20 @@ var IgxTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
31
31
  * Sets or gets whether the filter UI should be visible in the header.
32
32
  */
33
33
  get: function () {
34
- return this.i.mu;
34
+ return this.i.n7;
35
35
  },
36
36
  set: function (v) {
37
- this.i.mu = ensureBool(v);
37
+ this.i.n7 = ensureBool(v);
38
38
  },
39
39
  enumerable: false,
40
40
  configurable: true
41
41
  });
42
42
  Object.defineProperty(IgxTextHeaderCellInfo.prototype, "sortIndicatorStyle", {
43
43
  get: function () {
44
- return this.i.ms;
44
+ return this.i.n5;
45
45
  },
46
46
  set: function (v) {
47
- this.i.ms = ensureEnum(SortIndicatorStyle_$type, v);
47
+ this.i.n5 = ensureEnum(SortIndicatorStyle_$type, v);
48
48
  },
49
49
  enumerable: false,
50
50
  configurable: true
@@ -54,10 +54,10 @@ var IgxTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
54
54
  * Gets or sets the alignment of the column options icon within the header cell.
55
55
  */
56
56
  get: function () {
57
- return this.i.mo;
57
+ return this.i.n1;
58
58
  },
59
59
  set: function (v) {
60
- this.i.mo = ensureEnum(ColumnOptionsIconAlignment_$type, v);
60
+ this.i.n1 = ensureEnum(ColumnOptionsIconAlignment_$type, v);
61
61
  },
62
62
  enumerable: false,
63
63
  configurable: true
@@ -67,10 +67,10 @@ var IgxTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
67
67
  * Gets or sets the color for the column options icon in the header.
68
68
  */
69
69
  get: function () {
70
- return brushToString(this.i.m6);
70
+ return brushToString(this.i.oj);
71
71
  },
72
72
  set: function (v) {
73
- this.i.m6 = stringToBrush(v);
73
+ this.i.oj = stringToBrush(v);
74
74
  },
75
75
  enumerable: false,
76
76
  configurable: true
@@ -80,10 +80,10 @@ var IgxTextHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
80
80
  * Gets or sets how the column option icon will behave in the header.
81
81
  */
82
82
  get: function () {
83
- return this.i.mq;
83
+ return this.i.n3;
84
84
  },
85
85
  set: function (v) {
86
- this.i.mq = ensureEnum(ColumnOptionsIconBehavior_$type, v);
86
+ this.i.n3 = ensureEnum(ColumnOptionsIconBehavior_$type, v);
87
87
  },
88
88
  enumerable: false,
89
89
  configurable: true
@@ -411,6 +411,7 @@ export * from './lib/igx-date-time-column-dynamic-module';
411
411
  export * from './lib/DefinitionBase';
412
412
  export * from './lib/IExternalDefinitionBase';
413
413
  export * from './lib/TextCellLineBreakMode';
414
+ export * from './lib/TextCellDecoration';
414
415
  export * from './lib/DataBindingEventArgs';
415
416
  export * from './lib/DefinitionPropertyUpdatedEventArgs';
416
417
  export * from './lib/GridCompoundConditionalStyle';
@@ -426,6 +427,10 @@ export * from './lib/igx-grid-conditional-style-module';
426
427
  export * from './lib/igx-grid-conditional-style-dynamic-module';
427
428
  export * from './lib/GridConditionFilterStringErrorsParsingEventArgs';
428
429
  export * from './lib/igx-grid-condition-filter-string-errors-parsing-event-args';
430
+ export * from './lib/GridConditionalStyleFontInfo';
431
+ export * from './lib/igx-grid-conditional-style-font-info-component';
432
+ export * from './lib/igx-grid-conditional-style-font-info-module';
433
+ export * from './lib/igx-grid-conditional-style-font-info-dynamic-module';
429
434
  export * from './lib/GridConditionalStylePropertyStylingType';
430
435
  export * from './lib/GridConditionalStyleBoundType';
431
436
  export * from './lib/GridConditionalStyleProperty';