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
@@ -160,7 +160,7 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
160
160
  if (this.c != null && this.c.filterUIType != 0) {
161
161
  return false;
162
162
  }
163
- if (!this.column.jn) {
163
+ if (!this.column.js) {
164
164
  return false;
165
165
  }
166
166
  if (this.c == null || this.c.actualDataSource == null || !this.c.actualDataSource.isGroupingSupported || !this.c.actualDataSource.isFilteringSupported) {
@@ -324,7 +324,7 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
324
324
  c.add(h);
325
325
  }
326
326
  if (c.count == 1) {
327
- this.column.g1 = c._inner[0];
327
+ this.column.g2 = c._inner[0];
328
328
  }
329
329
  else {
330
330
  var i = new ColumnFilterConditionGroup();
@@ -348,9 +348,9 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
348
348
  throw e_1.error;
349
349
  }
350
350
  }
351
- this.column.g1 = i;
351
+ this.column.g2 = i;
352
352
  }
353
- this.column.m2("Filtered");
353
+ this.column.nx("Filtered");
354
354
  };
355
355
  GridColumnFilterOptions.prototype.provideClearFiltersSection = function (a) {
356
356
  this.bw.ah(a);
@@ -373,7 +373,7 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
373
373
  this.bw.ak(a);
374
374
  };
375
375
  GridColumnFilterOptions.prototype.cl = function () {
376
- this.column.g1 = null;
376
+ this.column.g2 = null;
377
377
  this.cv();
378
378
  };
379
379
  GridColumnFilterOptions.bv = function (a, b) {
@@ -387,12 +387,12 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
387
387
  if (null == a) {
388
388
  return false;
389
389
  }
390
- return null != a.g1;
390
+ return null != a.g2;
391
391
  };
392
392
  GridColumnFilterOptions.prototype.co = function () {
393
393
  var a = this.column;
394
394
  var b = this.c;
395
- var c = (null != a) ? a.lp : null;
395
+ var c = (null != a) ? a.l5 : null;
396
396
  var d = null;
397
397
  var e = null;
398
398
  if (b != null) {
@@ -453,7 +453,7 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
453
453
  GridColumnFilterOptions.prototype.cv = function () {
454
454
  var e_2, _a;
455
455
  var a = this.column;
456
- var b = (null != a) ? a.lp : null;
456
+ var b = (null != a) ? a.l5 : null;
457
457
  var c = true;
458
458
  var d = toNullable(ColumnComparisonConditionOperatorType_$type, null);
459
459
  var e = this.b4();
@@ -514,8 +514,8 @@ var GridColumnFilterOptions = /** @class */ /*@__PURE__*/ (function (_super) {
514
514
  if (null == b) {
515
515
  return a;
516
516
  }
517
- if (null != b.g1) {
518
- var c = GridColumnFilterOptions.cm(b.g1, a);
517
+ if (null != b.g2) {
518
+ var c = GridColumnFilterOptions.cm(b.g2, a);
519
519
  a = c.p1;
520
520
  }
521
521
  return a;
@@ -129,7 +129,7 @@ var GridColumnGroupOptions = /** @class */ /*@__PURE__*/ (function (_super) {
129
129
  if (null == this.c) {
130
130
  return false;
131
131
  }
132
- return this.column.jc;
132
+ return this.column.jh;
133
133
  };
134
134
  GridColumnGroupOptions.prototype.bj = function (a, b) {
135
135
  if (null != a) {
@@ -178,7 +178,7 @@ var GridColumnGroupOptions = /** @class */ /*@__PURE__*/ (function (_super) {
178
178
  if (null != a) {
179
179
  var c = a.grid;
180
180
  if (null != c) {
181
- var d = a.lp;
181
+ var d = a.l5;
182
182
  var e = c.groupDescriptions.j;
183
183
  for (var f = 0; f < e.count; f++) {
184
184
  var g = e.item(f);
@@ -203,13 +203,13 @@ var GridColumnGroupOptions = /** @class */ /*@__PURE__*/ (function (_super) {
203
203
  var a = this.c;
204
204
  var b = this.column;
205
205
  if (null != a && null != b) {
206
- var c = new ColumnGroupDescription(1, b.lp);
207
- var d = b.hr;
206
+ var c = new ColumnGroupDescription(1, b.l5);
207
+ var d = b.hs;
208
208
  var e = d != 0 ? GridColumnOptionsUtilities.c(d) : 0;
209
209
  c.c = e;
210
210
  a.groupDescriptions.g(c);
211
- b.hr = 0;
212
- b.m2("Grouped");
211
+ b.hs = 0;
212
+ b.nx("Grouped");
213
213
  }
214
214
  };
215
215
  GridColumnGroupOptions.prototype.b8 = function () {
@@ -221,7 +221,7 @@ var GridColumnGroupOptions = /** @class */ /*@__PURE__*/ (function (_super) {
221
221
  var d = ((function () { var e = _this.b3(c_1); c_1 = e.p0; return e.ret; })());
222
222
  if (c_1 != -1) {
223
223
  a.groupDescriptions.d(c_1);
224
- b.m2("Grouped");
224
+ b.nx("Grouped");
225
225
  }
226
226
  }
227
227
  };
@@ -144,15 +144,15 @@ var GridColumnHideOptions = /** @class */ /*@__PURE__*/ (function (_super) {
144
144
  get: function () {
145
145
  var a = this.column;
146
146
  if (null != a) {
147
- return a.jp;
147
+ return a.ju;
148
148
  }
149
149
  return false;
150
150
  },
151
151
  set: function (a) {
152
152
  var b = this.column;
153
153
  if (null != b) {
154
- b.jp = a;
155
- b.m2("Hidden");
154
+ b.ju = a;
155
+ b.nx("Hidden");
156
156
  }
157
157
  },
158
158
  enumerable: false,
@@ -290,7 +290,7 @@ var GridColumnMoveOptions = /** @class */ /*@__PURE__*/ (function (_super) {
290
290
  }
291
291
  var d = c.actualColumns;
292
292
  var e = d.indexOf(b);
293
- b.m2("Moved");
293
+ b.nx("Moved");
294
294
  if (a) {
295
295
  c.moveColumnLeft(e);
296
296
  }
@@ -305,7 +305,7 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
305
305
  Object.defineProperty(GridColumnOptions.prototype, "dx", {
306
306
  get: function () {
307
307
  var a = this.column;
308
- return (null != a) ? a.k4 : "(No column selected)";
308
+ return (null != a) ? a.lk : "(No column selected)";
309
309
  },
310
310
  enumerable: false,
311
311
  configurable: true
@@ -222,7 +222,7 @@ var GridColumnPinOptions = /** @class */ /*@__PURE__*/ (function (_super) {
222
222
  };
223
223
  GridColumnPinOptions.prototype.a6 = function () {
224
224
  var a = this.column;
225
- this.b3 = a != null ? a.im : 0;
225
+ this.b3 = a != null ? a.io : 0;
226
226
  _super.prototype.a6.call(this);
227
227
  };
228
228
  GridColumnPinOptions.prototype.a7 = function (a, b) {
@@ -233,7 +233,7 @@ var GridColumnPinOptions = /** @class */ /*@__PURE__*/ (function (_super) {
233
233
  }
234
234
  switch (b.propertyName) {
235
235
  case "Pinned":
236
- this.b3 = c != null ? c.im : 0;
236
+ this.b3 = c != null ? c.io : 0;
237
237
  this.b2.m();
238
238
  break;
239
239
  }
@@ -251,7 +251,7 @@ var GridColumnPinOptions = /** @class */ /*@__PURE__*/ (function (_super) {
251
251
  get: function () {
252
252
  var a = this.column;
253
253
  if (null != a) {
254
- return a.im;
254
+ return a.io;
255
255
  }
256
256
  return this.b3;
257
257
  },
@@ -261,7 +261,7 @@ var GridColumnPinOptions = /** @class */ /*@__PURE__*/ (function (_super) {
261
261
  var c = this.column;
262
262
  if (null != b && null != c) {
263
263
  b.pinColumn(c, this.b3);
264
- c.m2("Pinned");
264
+ c.nx("Pinned");
265
265
  }
266
266
  },
267
267
  enumerable: false,
@@ -274,7 +274,7 @@ var GridColumnSortOptions = /** @class */ /*@__PURE__*/ (function (_super) {
274
274
  var d = GridColumnOptionsUtilities.a(c.c);
275
275
  return d;
276
276
  }
277
- return a.hr;
277
+ return a.hs;
278
278
  }
279
279
  return 0;
280
280
  },
@@ -293,7 +293,7 @@ var GridColumnSortOptions = /** @class */ /*@__PURE__*/ (function (_super) {
293
293
  }
294
294
  return;
295
295
  }
296
- b.hr = a;
296
+ b.hs = a;
297
297
  }
298
298
  },
299
299
  enumerable: false,
@@ -137,7 +137,7 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
137
137
  if (this.c == null || this.column == null) {
138
138
  return false;
139
139
  }
140
- return this.column.jd && this.c.summaryScope != 3;
140
+ return this.column.ji && this.c.summaryScope != 3;
141
141
  };
142
142
  GridColumnSummaryOptions.prototype.be = function (a, b, c) {
143
143
  _super.prototype.be.call(this, a, b, c);
@@ -167,7 +167,7 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
167
167
  if (this.bw != null) {
168
168
  var a = this.bw.a();
169
169
  for (var b = 0; b < a.length; b++) {
170
- var c = new ColumnSummaryDescription(1, this.column.lp);
170
+ var c = new ColumnSummaryDescription(1, this.column.l5);
171
171
  switch (a[b]) {
172
172
  case "avg":
173
173
  c.i = 3;
@@ -187,7 +187,7 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
187
187
  }
188
188
  for (var d = 0; d < this.c.summaryDescriptions.j.count; d++) {
189
189
  var e = this.c.summaryDescriptions.j.item(d);
190
- if (e.ah == this.column.lp && e.i == c.i) {
190
+ if (e.ah == this.column.l5 && e.i == c.i) {
191
191
  this.c.summaryDescriptions.j.removeAt(d);
192
192
  d--;
193
193
  }
@@ -195,7 +195,7 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
195
195
  }
196
196
  var f = this.bw.b();
197
197
  for (var g = 0; g < f.length; g++) {
198
- var h = new ColumnSummaryDescription(1, this.column.lp);
198
+ var h = new ColumnSummaryDescription(1, this.column.l5);
199
199
  switch (f[g]) {
200
200
  case "avg":
201
201
  h.i = 3;
@@ -216,14 +216,14 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
216
216
  var i = false;
217
217
  for (var j = 0; j < this.c.summaryDescriptions.j.count; j++) {
218
218
  var k = this.c.summaryDescriptions.j.item(j);
219
- if (k.ah == this.column.lp && k.i == h.i) {
219
+ if (k.ah == this.column.l5 && k.i == h.i) {
220
220
  i = true;
221
221
  break;
222
222
  }
223
223
  }
224
224
  if (!i) {
225
225
  this.c.summaryDescriptions.j.add(h);
226
- this.column.m2("Summed");
226
+ this.column.nx("Summed");
227
227
  }
228
228
  }
229
229
  }
@@ -242,7 +242,7 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
242
242
  this.b7 = 0;
243
243
  for (var a = 0; a < this.c.summaryDescriptions.j.count; a++) {
244
244
  var b = this.c.summaryDescriptions.j.item(a);
245
- if (b.ah == this.column.lp) {
245
+ if (b.ah == this.column.l5) {
246
246
  switch (b.i) {
247
247
  case 3:
248
248
  this.bw.a4("avg", true);
@@ -13,30 +13,10 @@ var GridConditionFilterStringErrorsParsingEventArgs = /** @class */ /*@__PURE__*
13
13
  __extends(GridConditionFilterStringErrorsParsingEventArgs, _super);
14
14
  function GridConditionFilterStringErrorsParsingEventArgs() {
15
15
  var _this = _super.call(this) || this;
16
- _this._propertyName = null;
17
- _this._errors = null;
16
+ _this.b = null;
17
+ _this.a = null;
18
18
  return _this;
19
19
  }
20
- Object.defineProperty(GridConditionFilterStringErrorsParsingEventArgs.prototype, "propertyName", {
21
- get: function () {
22
- return this._propertyName;
23
- },
24
- set: function (a) {
25
- this._propertyName = a;
26
- },
27
- enumerable: false,
28
- configurable: true
29
- });
30
- Object.defineProperty(GridConditionFilterStringErrorsParsingEventArgs.prototype, "errors", {
31
- get: function () {
32
- return this._errors;
33
- },
34
- set: function (a) {
35
- this._errors = a;
36
- },
37
- enumerable: false,
38
- configurable: true
39
- });
40
20
  GridConditionFilterStringErrorsParsingEventArgs.$t = markType(GridConditionFilterStringErrorsParsingEventArgs, 'GridConditionFilterStringErrorsParsingEventArgs');
41
21
  return GridConditionFilterStringErrorsParsingEventArgs;
42
22
  }(Base));
@@ -0,0 +1,32 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, markType } from "igniteui-angular-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var GridConditionalStyleFontInfo = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(GridConditionalStyleFontInfo, _super);
14
+ function GridConditionalStyleFontInfo() {
15
+ var _this = _super !== null && _super.apply(this, arguments) || this;
16
+ _this.a = null;
17
+ return _this;
18
+ }
19
+ Object.defineProperty(GridConditionalStyleFontInfo.prototype, "textStyle", {
20
+ get: function () {
21
+ return this.a;
22
+ },
23
+ set: function (a) {
24
+ this.a = a;
25
+ },
26
+ enumerable: false,
27
+ configurable: true
28
+ });
29
+ GridConditionalStyleFontInfo.$t = markType(GridConditionalStyleFontInfo, 'GridConditionalStyleFontInfo');
30
+ return GridConditionalStyleFontInfo;
31
+ }(Base));
32
+ export { GridConditionalStyleFontInfo };
@@ -673,8 +673,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
673
673
  if (this.filterStringErrorsParsing != null) {
674
674
  this.filterStringErrorsParsing(this, ((function () {
675
675
  var $ret = new GridConditionFilterStringErrorsParsingEventArgs();
676
- $ret.propertyName = "InputValueExpressionString";
677
- $ret.errors = a_1.errors;
676
+ $ret.b = "InputValueExpressionString";
677
+ $ret.a = a_1.errors;
678
678
  return $ret;
679
679
  })()));
680
680
  }
@@ -696,8 +696,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
696
696
  if (this.filterStringErrorsParsing != null) {
697
697
  this.filterStringErrorsParsing(this, ((function () {
698
698
  var $ret = new GridConditionFilterStringErrorsParsingEventArgs();
699
- $ret.propertyName = "MinimumInputValueExpressionString";
700
- $ret.errors = a_2.errors;
699
+ $ret.b = "MinimumInputValueExpressionString";
700
+ $ret.a = a_2.errors;
701
701
  return $ret;
702
702
  })()));
703
703
  }
@@ -719,8 +719,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
719
719
  if (this.filterStringErrorsParsing != null) {
720
720
  this.filterStringErrorsParsing(this, ((function () {
721
721
  var $ret = new GridConditionFilterStringErrorsParsingEventArgs();
722
- $ret.propertyName = "MaximumInputValueExpressionString";
723
- $ret.errors = a_3.errors;
722
+ $ret.b = "MaximumInputValueExpressionString";
723
+ $ret.a = a_3.errors;
724
724
  return $ret;
725
725
  })()));
726
726
  }
@@ -742,8 +742,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
742
742
  if (this.filterStringErrorsParsing != null) {
743
743
  this.filterStringErrorsParsing(this, ((function () {
744
744
  var $ret = new GridConditionFilterStringErrorsParsingEventArgs();
745
- $ret.propertyName = "SumInputValueExpressionString";
746
- $ret.errors = a_4.errors;
745
+ $ret.b = "SumInputValueExpressionString";
746
+ $ret.a = a_4.errors;
747
747
  return $ret;
748
748
  })()));
749
749
  }
@@ -41,7 +41,7 @@ var GridExternalWrapper = /** @class */ /*@__PURE__*/ (function (_super) {
41
41
  var column_ = TypeRegistrar.create("IgxTextColumnComponent");
42
42
  var b = (column_._implementation);
43
43
  var c = this.renderer.getExternal(b.header, this.renderer.rootWrapper, this.a);
44
- b.lp = a;
44
+ b.l5 = a;
45
45
  return b;
46
46
  }
47
47
  return null;
@@ -51,7 +51,7 @@ var GridExternalWrapper = /** @class */ /*@__PURE__*/ (function (_super) {
51
51
  var column_ = TypeRegistrar.create("IgxNumericColumnComponent");
52
52
  var b = (column_._implementation);
53
53
  var c = this.renderer.getExternal(b.header, this.renderer.rootWrapper, this.a);
54
- b.lp = a;
54
+ b.l5 = a;
55
55
  return b;
56
56
  }
57
57
  return null;
@@ -61,7 +61,7 @@ var GridExternalWrapper = /** @class */ /*@__PURE__*/ (function (_super) {
61
61
  var column_ = TypeRegistrar.create("IgxDateTimeColumnComponent");
62
62
  var b = (column_._implementation);
63
63
  var c = this.renderer.getExternal(b.header, this.renderer.rootWrapper, this.a);
64
- b.lp = a;
64
+ b.l5 = a;
65
65
  return b;
66
66
  }
67
67
  return null;
@@ -71,7 +71,7 @@ var GridExternalWrapper = /** @class */ /*@__PURE__*/ (function (_super) {
71
71
  var column_ = TypeRegistrar.create("IgxImageColumnComponent");
72
72
  var b = (column_._implementation);
73
73
  var c = this.renderer.getExternal(b.header, this.renderer.rootWrapper, this.a);
74
- b.lp = a;
74
+ b.l5 = a;
75
75
  return b;
76
76
  }
77
77
  return null;
@@ -81,7 +81,7 @@ var GridExternalWrapper = /** @class */ /*@__PURE__*/ (function (_super) {
81
81
  var column_ = TypeRegistrar.create("IgxTemplateColumnComponent");
82
82
  var b = (column_._implementation);
83
83
  var c = this.renderer.getExternal(b.header, this.renderer.rootWrapper, this.a);
84
- b.lp = a;
84
+ b.l5 = a;
85
85
  return b;
86
86
  }
87
87
  return null;
@@ -91,7 +91,7 @@ var GridExternalWrapper = /** @class */ /*@__PURE__*/ (function (_super) {
91
91
  var column_ = TypeRegistrar.create("IgxComboBoxColumnComponent");
92
92
  var b = (column_._implementation);
93
93
  var c = this.renderer.getExternal(b.header, this.renderer.rootWrapper, this.a);
94
- b.lp = a;
94
+ b.l5 = a;
95
95
  return b;
96
96
  }
97
97
  return null;
@@ -553,9 +553,9 @@ var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
553
553
  }
554
554
  if (this.n != null) {
555
555
  if (this.n.grid != null) {
556
- this.n.grid.va();
556
+ this.n.grid.vd();
557
557
  }
558
- this.n.mz();
558
+ this.n.nu();
559
559
  }
560
560
  if (this.dialogOpening != null) {
561
561
  var c = new GridFilterDialogOpeningEventArgs();
@@ -272,7 +272,7 @@ var GridStyleRepository = /** @class */ /*@__PURE__*/ (function (_super) {
272
272
  Object.defineProperty(GridStyleRepository, "a7", {
273
273
  get: function () {
274
274
  if (GridStyleRepository.ac == null) {
275
- var a = "#f3f9fe";
275
+ var a = "#e8f4fe";
276
276
  GridStyleRepository.ac = ((function () {
277
277
  var $ret = new Brush();
278
278
  $ret.color = Color.u(255, 232, 244, 254);
@@ -15,112 +15,112 @@ var ImageCell = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  __extends(ImageCell, _super);
16
16
  function ImageCell(a) {
17
17
  var _this = _super.call(this, a) || this;
18
- _this.cq = null;
19
- _this.ck = 1;
20
- _this.cl = 3;
21
- _this.cs = null;
22
- _this.cm = false;
23
- _this.cn = 1;
24
- _this.cp = null;
25
- _this.cq = a.createElement("img");
26
- _this.cq.listen("load", runOn(_this, _this.cv));
27
- _this.cp = a.createElement("div");
28
- _this.cp.setRawStyleProperty("background-size", "contain");
29
- _this.cp.setRawStyleProperty("background-repeat", "no-repeat");
30
- _this.cp.setRawStyleProperty("background-position", "center");
31
- _this.cp.setRawStyleProperty("width", "100%");
32
- _this.cp.setRawStyleProperty("height", "100%");
33
- _this.ah.setRawStyleProperty("text-align", "left");
34
- _this.ah.setRawStyleProperty("vertical-align", "middle");
35
- _this.ah.append(_this.cp);
18
+ _this.dy = null;
19
+ _this.ds = 1;
20
+ _this.dt = 3;
21
+ _this.d0 = null;
22
+ _this.du = false;
23
+ _this.dv = 1;
24
+ _this.dx = null;
25
+ _this.dy = a.createElement("img");
26
+ _this.dy.listen("load", runOn(_this, _this.d3));
27
+ _this.dx = a.createElement("div");
28
+ _this.dx.setRawStyleProperty("background-size", "contain");
29
+ _this.dx.setRawStyleProperty("background-repeat", "no-repeat");
30
+ _this.dx.setRawStyleProperty("background-position", "center");
31
+ _this.dx.setRawStyleProperty("width", "100%");
32
+ _this.dx.setRawStyleProperty("height", "100%");
33
+ _this.ap.setRawStyleProperty("text-align", "left");
34
+ _this.ap.setRawStyleProperty("vertical-align", "middle");
35
+ _this.ap.append(_this.dx);
36
36
  return _this;
37
37
  }
38
- Object.defineProperty(ImageCell.prototype, "cr", {
38
+ Object.defineProperty(ImageCell.prototype, "dz", {
39
39
  get: function () {
40
- return this.cq;
40
+ return this.dy;
41
41
  },
42
42
  enumerable: false,
43
43
  configurable: true
44
44
  });
45
- Object.defineProperty(ImageCell.prototype, "co", {
45
+ Object.defineProperty(ImageCell.prototype, "dw", {
46
46
  get: function () {
47
- return this.cn;
47
+ return this.dv;
48
48
  },
49
49
  set: function (a) {
50
- this.cn = a;
50
+ this.dv = a;
51
51
  },
52
52
  enumerable: false,
53
53
  configurable: true
54
54
  });
55
- ImageCell.prototype.cv = function (a) {
56
- this.cm = false;
57
- if (!stringIsNullOrEmpty(this.cs)) {
58
- this.cp.setRawStyleProperty("opacity", "1");
59
- this.cp.setRawStyleProperty("background-image", "url(" + this.cs + ")");
55
+ ImageCell.prototype.d3 = function (a) {
56
+ this.du = false;
57
+ if (!stringIsNullOrEmpty(this.d0)) {
58
+ this.dx.setRawStyleProperty("opacity", "1");
59
+ this.dx.setRawStyleProperty("background-image", "url(" + this.d0 + ")");
60
60
  }
61
61
  };
62
- ImageCell.prototype.cw = function (a, b) {
63
- if (a == this.cs) {
62
+ ImageCell.prototype.d4 = function (a, b) {
63
+ if (a == this.d0) {
64
64
  return;
65
65
  }
66
- this.ct();
67
- this.cp.setRawStyleProperty("opacity", "0");
66
+ this.d1();
67
+ this.dx.setRawStyleProperty("opacity", "0");
68
68
  if (a == null || a.length == 0) {
69
- this.cu(this.cq);
69
+ this.d2(this.dy);
70
70
  return;
71
71
  }
72
- if (Base.equalsStatic(a, this.cs)) {
72
+ if (Base.equalsStatic(a, this.d0)) {
73
73
  return;
74
74
  }
75
- this.c0(a, b);
76
- var img_ = this.cq.getNativeElement();
75
+ this.d8(a, b);
76
+ var img_ = this.dy.getNativeElement();
77
77
  if (img_ != null && (img_.complete)) {
78
- this.cm = false;
79
- this.cq.setRawStyleProperty("opacity", "1");
80
- this.cp.setRawStyleProperty("background-image", "url(" + this.cs + ")");
78
+ this.du = false;
79
+ this.dy.setRawStyleProperty("opacity", "1");
80
+ this.dx.setRawStyleProperty("background-image", "url(" + this.d0 + ")");
81
81
  }
82
82
  };
83
- ImageCell.prototype.cu = function (a) {
83
+ ImageCell.prototype.d2 = function (a) {
84
84
  a.setAttribute("src", "");
85
- this.cp.setRawStyleProperty("background-image", "");
85
+ this.dx.setRawStyleProperty("background-image", "");
86
86
  };
87
- ImageCell.prototype.cz = function (a) {
87
+ ImageCell.prototype.d7 = function (a) {
88
88
  switch (a) {
89
89
  case 1:
90
- this.cp.setRawStyleProperty("background-size", "100% 100%");
90
+ this.dx.setRawStyleProperty("background-size", "100% 100%");
91
91
  break;
92
92
  case 2:
93
- this.cp.setRawStyleProperty("background-size", "auto");
93
+ this.dx.setRawStyleProperty("background-size", "auto");
94
94
  break;
95
95
  case 0:
96
- this.cp.setRawStyleProperty("background-size", "contain");
96
+ this.dx.setRawStyleProperty("background-size", "contain");
97
97
  break;
98
98
  }
99
99
  };
100
- ImageCell.prototype.c0 = function (a, b) {
101
- this.cm = true;
102
- this.cs = a;
103
- this.cr.setAttribute("src", a);
100
+ ImageCell.prototype.d8 = function (a, b) {
101
+ this.du = true;
102
+ this.d0 = a;
103
+ this.dz.setAttribute("src", a);
104
104
  };
105
- ImageCell.prototype.ct = function () {
106
- if (this.cm) {
107
- this.cu(this.cq);
108
- this.cs = "";
105
+ ImageCell.prototype.d1 = function () {
106
+ if (this.du) {
107
+ this.d2(this.dy);
108
+ this.d0 = "";
109
109
  }
110
110
  };
111
- ImageCell.prototype.cx = function (a) {
112
- this.ck = a;
111
+ ImageCell.prototype.d5 = function (a) {
112
+ this.ds = a;
113
113
  };
114
- ImageCell.prototype.cy = function (a) {
115
- this.cl = a;
114
+ ImageCell.prototype.d6 = function (a) {
115
+ this.dt = a;
116
116
  };
117
- ImageCell.prototype.get_z = function () {
117
+ ImageCell.prototype.get_ae = function () {
118
118
  return true;
119
119
  };
120
- ImageCell.prototype.bs = function (a, b, c) {
121
- _super.prototype.bs.call(this, a, b, c);
120
+ ImageCell.prototype.ch = function (a, b, c) {
121
+ _super.prototype.ch.call(this, a, b, c);
122
122
  if (a == "Indent" || a == "IsCollapsable") {
123
- this.cp.setRawStyleProperty("margin-left", this.a3 + this.a5 + this.a4 + "px");
123
+ this.dx.setRawStyleProperty("margin-left", this.bb + this.bd + this.bc + "px");
124
124
  }
125
125
  };
126
126
  ImageCell.$t = markType(ImageCell, 'ImageCell', GridCellBase.$);