igniteui-angular-data-grids 20.0.1 → 20.0.2-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 (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 +4 -4
  240. package/public_api.d.ts +5 -0
@@ -734,10 +734,10 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
734
734
  let c = this.targetGrid.groupDescriptions.j;
735
735
  for (let d = 0; d < c.count; d++) {
736
736
  let e = new GroupInfo();
737
- let f = b.i((g) => g.lp == c.item(d).f);
737
+ let f = b.i((g) => g.l5 == c.item(d).f);
738
738
  if (f != -1) {
739
- if (!stringIsNullOrEmpty(b._inner[f].lw)) {
740
- e.c = b._inner[f].lw;
739
+ if (!stringIsNullOrEmpty(b._inner[f].mc)) {
740
+ e.c = b._inner[f].mc;
741
741
  }
742
742
  else {
743
743
  e.c = c.item(d).f;
@@ -768,7 +768,7 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
768
768
  let h = a;
769
769
  let i = this.targetGrid.actualColumns._inner[h.cellPath.a5];
770
770
  let j = new ColumnGroupDescription(0);
771
- j.f = i.lp;
771
+ j.f = i.l5;
772
772
  j.c = 1;
773
773
  let k = this.targetGrid.groupDescriptions.j.contains(j);
774
774
  j.c = 0;
@@ -938,7 +938,7 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
938
938
  }
939
939
  let j = this.b.j;
940
940
  for (let k = 0; k < j.count; k++) {
941
- let l = this.q._inner[k].a0();
941
+ let l = this.q._inner[k].bg();
942
942
  let m = this.b.b(j._inner[k]);
943
943
  l.i = m[0] - d;
944
944
  l.g = m[1] - e;
@@ -304,12 +304,12 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
304
304
  let b = new ObservableCollection$1(ColumnPinningInfo.$, 0);
305
305
  for (let c of fromEnum(this.b.actualColumns)) {
306
306
  a = new ColumnPinningInfo();
307
- let d = c.lp;
308
- if (c.lw != null) {
309
- d = c.lw;
307
+ let d = c.l5;
308
+ if (c.mc != null) {
309
+ d = c.mc;
310
310
  }
311
311
  a.columnName = d;
312
- if (c.im == 1) {
312
+ if (c.io == 1) {
313
313
  a.isPinned = true;
314
314
  }
315
315
  else {
@@ -335,17 +335,17 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
335
335
  let c = this.d.f.actualDataSource.getItemAtIndex(b.c);
336
336
  let d = this.b.actualColumns.count;
337
337
  for (let e = 0; e < d; e++) {
338
- if (this.b.actualColumns._inner[e].lp == c.columnName || this.b.actualColumns._inner[e].mg == c.columnName || this.b.actualColumns._inner[e].lw == c.columnName) {
339
- if (this.b.actualColumns._inner[e].im == 0) {
340
- this.b.actualColumns._inner[e].im = 1;
338
+ if (this.b.actualColumns._inner[e].l5 == c.columnName || this.b.actualColumns._inner[e].mw == c.columnName || this.b.actualColumns._inner[e].mc == c.columnName) {
339
+ if (this.b.actualColumns._inner[e].io == 0) {
340
+ this.b.actualColumns._inner[e].io = 1;
341
341
  }
342
- else if (this.b.actualColumns._inner[e].im == 2) {
343
- this.b.actualColumns._inner[e].im = 1;
342
+ else if (this.b.actualColumns._inner[e].io == 2) {
343
+ this.b.actualColumns._inner[e].io = 1;
344
344
  }
345
345
  else {
346
- this.b.actualColumns._inner[e].im = 0;
346
+ this.b.actualColumns._inner[e].io = 0;
347
347
  }
348
- this.b.actualColumns._inner[e].m2("Pinned");
348
+ this.b.actualColumns._inner[e].nx("Pinned");
349
349
  break;
350
350
  }
351
351
  }
@@ -5,6 +5,7 @@ https://www.infragistics.com/legal/license/igultimate-eula
5
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
6
  */
7
7
  import { Base, markType } from "igniteui-angular-core";
8
+ import { stringEmpty } from "igniteui-angular-core";
8
9
  /**
9
10
  * @hidden
10
11
  */
@@ -53,7 +54,11 @@ export let ColumnSortDescription = /*@__PURE__*/ (() => {
53
54
  return b.f == this.f && b.c == this.c;
54
55
  }
55
56
  getHashCode() {
56
- return Base.getHashCodeStatic(this.f) * 17 + this.c;
57
+ let a = Base.getHashCodeStatic(stringEmpty());
58
+ if (this.f != null) {
59
+ a = Base.getHashCodeStatic(this.f);
60
+ }
61
+ return a * 17 + this.c;
57
62
  }
58
63
  }
59
64
  ColumnSortDescription.$t = markType(ColumnSortDescription, 'ColumnSortDescription');
@@ -12,6 +12,7 @@ import { AverageSummaryCalculator } from "igniteui-angular-core";
12
12
  import { CountSummaryCalculator } from "igniteui-angular-core";
13
13
  import { BindingFormatter } from "igniteui-angular-core";
14
14
  import { FormatSummaryTextEventArgs } from "./FormatSummaryTextEventArgs";
15
+ import { stringEmpty } from "igniteui-angular-core";
15
16
  /**
16
17
  * @hidden
17
18
  */
@@ -177,7 +178,11 @@ export let ColumnSummaryDescription = /*@__PURE__*/ (() => {
177
178
  return b.ah == this.ah && b.i == this.i;
178
179
  }
179
180
  getHashCode() {
180
- return Base.getHashCodeStatic(this.ah) * 17 + this.i;
181
+ let a = Base.getHashCodeStatic(stringEmpty());
182
+ if (this.ah != null) {
183
+ a = Base.getHashCodeStatic(this.ah);
184
+ }
185
+ return a * 17 + this.i;
181
186
  }
182
187
  o(a, b, c) {
183
188
  let d = ((() => {
@@ -521,15 +521,15 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
521
521
  $ret.c = false;
522
522
  return $ret;
523
523
  })());
524
- this.n.kl = this.n.km = 4;
525
- this.n.kn = this.n.kk = 0;
526
- this.n.lp = "Icon";
524
+ this.n.ky = this.n.kz = 4;
525
+ this.n.k0 = this.n.kx = 0;
526
+ this.n.l5 = "Icon";
527
527
  let e = this.n;
528
528
  e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.el));
529
529
  this.f.columns.add(this.n);
530
530
  let f = new TextColumn();
531
- f.lp = "DisplayText";
532
- f.kl = 0;
531
+ f.l5 = "DisplayText";
532
+ f.ky = 0;
533
533
  f.g = 0;
534
534
  this.f.columns.add(f);
535
535
  this.d4();
@@ -832,12 +832,12 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
832
832
  this.em();
833
833
  }
834
834
  d9(a, b) {
835
- let c = b.cellInfo.fb;
835
+ let c = b.cellInfo.fn;
836
836
  this.i = this.f.actualDataSource.getItemAtIndex(c);
837
837
  this.d8();
838
838
  }
839
839
  el(a, b) {
840
- this.e.t(b.content, b.cellInfo.ho);
840
+ this.e.t(b.content, b.cellInfo.ic);
841
841
  }
842
842
  }
843
843
  ComparisonOperatorSelector.$t = markType(ComparisonOperatorSelector, 'ComparisonOperatorSelector', Base.$, [INotifyPropertyChanged_$type]);
@@ -7,7 +7,6 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
7
7
  import { Base, markType } from "igniteui-angular-core";
8
8
  import { Color } from "igniteui-angular-core";
9
9
  import { CellModel } from "./CellModel";
10
- import { FontUtil } from "igniteui-angular-core";
11
10
  /**
12
11
  * @hidden
13
12
  */
@@ -19,7 +18,7 @@ export let ContentCellModelHelper = /*@__PURE__*/ (() => {
19
18
  }
20
19
  return a.color;
21
20
  }
22
- static c(a, b, c) {
21
+ static b(a, b, c) {
23
22
  switch (c) {
24
23
  case 0:
25
24
  a.setRawStyleProperty("text-align", "left");
@@ -52,23 +51,23 @@ export let ContentCellModelHelper = /*@__PURE__*/ (() => {
52
51
  }
53
52
  }
54
53
  static a(a, b, c, d, e) {
55
- if (b.a3) {
56
- if (b.a8(CellModel.fa) || b.a8(CellModel.eg) || b.a8(CellModel.hd) || b.a7("IsRowPinned") || b.a7("IsRowSticky") || b.a7("PinnedRowOpacity")) {
57
- let f = Math.min(1, Math.max(0, b.ct));
58
- let g = b.cg * (1 - f);
54
+ if (b.a7) {
55
+ if (b.bc(CellModel.fm) || b.bc(CellModel.es) || b.bc(CellModel.h1) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
56
+ let f = Math.min(1, Math.max(0, b.c5));
57
+ let g = b.co * (1 - f);
59
58
  d.setRawStyleProperty("opacity", g.toString());
60
- if (b.bi) {
61
- e.ci(b.cg * f);
59
+ if (b.bm) {
60
+ e.dh(b.co * f);
62
61
  }
63
62
  }
64
- if (b.a8(CellModel.er)) {
65
- ContentCellModelHelper.d(d, b.l0);
66
- if (b.bi) {
67
- e.cf(b.l0);
63
+ if (b.bc(CellModel.e3)) {
64
+ ContentCellModelHelper.c(d, b.na);
65
+ if (b.bm) {
66
+ e.de(b.na);
68
67
  }
69
68
  }
70
- if (b.a8(CellModel.gg)) {
71
- switch (b.aa) {
69
+ if (b.bc(CellModel.gs)) {
70
+ switch (b.ac) {
72
71
  case 0:
73
72
  d.setRawStyleProperty("white-space", "nowrap");
74
73
  d.setRawStyleProperty("text-overflow", "ellipsis");
@@ -84,44 +83,58 @@ export let ContentCellModelHelper = /*@__PURE__*/ (() => {
84
83
  break;
85
84
  }
86
85
  }
87
- if (b.a8(CellModel.fw) || b.a8(CellModel.hc)) {
86
+ if (b.bb("TextDecorations")) {
87
+ ContentCellModelHelper.d(d, b.aa);
88
+ }
89
+ if (b.bc(CellModel.f8) || b.bc(CellModel.h0)) {
88
90
  let h = b.g;
89
91
  let i = b.i;
90
- ContentCellModelHelper.c(c, d, h);
91
- e.bq(c, d, h);
92
+ ContentCellModelHelper.b(c, d, h);
93
+ e.cf(c, d, h);
92
94
  ContentCellModelHelper.e(c, d, i);
93
- if (b.bi) {
94
- e.ce(h, i);
95
+ e.cl(i);
96
+ if (b.bm) {
97
+ e.dd(h, i);
95
98
  }
96
99
  }
97
- if (b.a7("ActualFontInfo")) {
98
- ContentCellModelHelper.b(a, d, b.ae);
100
+ if (b.bb("ActualFontInfo")) {
101
+ e.cx(d, b.ah);
99
102
  }
100
- if (b.a7("IsEdited") || b.a7("IsDeleted")) {
101
- if (b.a9 || b.a6) {
102
- if (b.a6) {
103
+ if (b.bb("IsEdited") || b.bb("IsDeleted")) {
104
+ if (b.bd || b.ba) {
105
+ if (b.ba) {
103
106
  d.setRawStyleProperty("text-decoration", "line-through");
104
107
  }
105
108
  else {
106
- d.setRawStyleProperty("text-decoration", "none");
109
+ ContentCellModelHelper.d(d, b.aa);
107
110
  }
108
111
  }
109
112
  else {
110
- d.setRawStyleProperty("text-decoration", "none");
113
+ ContentCellModelHelper.d(d, b.aa);
111
114
  }
112
115
  }
113
116
  }
114
117
  }
115
- static b(a, b, c) {
116
- if (c == null) {
117
- c = FontUtil.getDefaultFont(a);
118
- }
119
- b.setRawStyleProperty("font", c.fontString);
120
- }
121
- static d(a, b) {
118
+ static c(a, b) {
122
119
  let c = ContentCellModelHelper.g(b);
123
120
  a.setRawStyleProperty("color", c.colorString);
124
121
  }
122
+ static d(a, b) {
123
+ switch (b) {
124
+ case 1:
125
+ a.setRawStyleProperty("text-decoration", "line-through");
126
+ break;
127
+ case 2:
128
+ a.setRawStyleProperty("text-decoration", "overline");
129
+ break;
130
+ case 3:
131
+ a.setRawStyleProperty("text-decoration", "underline");
132
+ break;
133
+ case 0:
134
+ a.setRawStyleProperty("text-decoration", "none");
135
+ break;
136
+ }
137
+ }
125
138
  }
126
139
  ContentCellModelHelper.$t = markType(ContentCellModelHelper, 'ContentCellModelHelper');
127
140
  ContentCellModelHelper.f = Color.u(0, 0, 0, 0);
@@ -90,7 +90,7 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
90
90
  let c = b.nativeCell.ah = false;
91
91
  }
92
92
  else {
93
- let d = b.nativeCell.ah;
93
+ let d = b.nativeCell.ap;
94
94
  d.setRawStyleProperty("top", "-1000px");
95
95
  d.setRawStyleProperty("left", "-1000px");
96
96
  if (a.l.d != 0) {
@@ -187,10 +187,10 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
187
187
  else {
188
188
  p = true;
189
189
  }
190
- if (v.bh) {
190
+ if (v.bl) {
191
191
  m = true;
192
192
  }
193
- if (v.u == 1 && v.hi != n) {
193
+ if (v.u == 1 && v.h6 != n) {
194
194
  m = true;
195
195
  }
196
196
  }
@@ -231,7 +231,7 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
231
231
  let ai = ag.isCanvasBased;
232
232
  let aj = null;
233
233
  if (!ai) {
234
- aj = ag.nativeCell.ah;
234
+ aj = ag.nativeCell.ap;
235
235
  if (af.u == 0) {
236
236
  this.element.append(aj);
237
237
  ag.nativeCell.isRemoved = false;
@@ -246,19 +246,19 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
246
246
  ag.nativeCell.isRemoved = false;
247
247
  }
248
248
  af.u = 2;
249
- let al = (af.g0 + intDivide(af.he, 2));
250
- let am = (af.g2 + intDivide(af.fu, 2));
249
+ let al = (af.hc + intDivide(af.h2, 2));
250
+ let am = (af.he + intDivide(af.f6, 2));
251
251
  let an = (al - b) / this.f.actualVisibleRegion.width;
252
252
  let ao = (am - a) / this.f.actualVisibleRegion.height;
253
- if (af.bj) {
253
+ if (af.bn) {
254
254
  if (!ai) {
255
- aj.setRawPosition(af.cu, af.cv);
255
+ aj.setRawPosition(af.c6, af.c7);
256
256
  }
257
257
  }
258
258
  if (!ai) {
259
259
  if (af.l.d != 0) {
260
260
  if (this.f.b2) {
261
- aj.setRawStyleProperty("clip", this.w(af.l.d, af.cu, af.cv));
261
+ aj.setRawStyleProperty("clip", this.w(af.l.d, af.c6, af.c7));
262
262
  }
263
263
  else {
264
264
  aj.setRawStyleProperty("clip", "auto");
@@ -268,15 +268,15 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
268
268
  aj.setRawStyleProperty("clip", this.y(af));
269
269
  }
270
270
  else {
271
- if (Rect.l_op_Inequality(af.mi, Rect.empty)) {
272
- aj.setRawStyleProperty("clip", this.x(af.mi));
271
+ if (Rect.l_op_Inequality(af.nv, Rect.empty)) {
272
+ aj.setRawStyleProperty("clip", this.x(af.nv));
273
273
  }
274
274
  else {
275
275
  aj.setRawStyleProperty("clip", "auto");
276
276
  }
277
277
  }
278
278
  }
279
- af.ky();
279
+ af.l5();
280
280
  if (ai) {
281
281
  let ap = af.s.nativeCell;
282
282
  ap.co(z);
@@ -286,15 +286,15 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
286
286
  let aq = y.a;
287
287
  aq.aa();
288
288
  if (af.l.d != 0 && this.f.b2) {
289
- aq.af(this.ax(af.l.d));
289
+ aq.ag(this.ax(af.l.d));
290
290
  }
291
291
  let ar = af.s.nativeCell;
292
- ar.b6(aq, y.c, y.d, af.cu, af.cv, z);
292
+ ar.b6(aq, y.c, y.d, af.c6, af.c7, z);
293
293
  aq.z();
294
294
  }
295
- af.kr();
295
+ af.ly();
296
296
  if (m) {
297
- af.hi = n;
297
+ af.h6 = n;
298
298
  if (!ai) {
299
299
  aj.setRawStyleProperty("z-index", x.toString());
300
300
  }
@@ -516,10 +516,10 @@ export let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
516
516
  return stringFormat1("rect({0}px, {1}px, {2}px, {3}px)", a.top, a.right, a.bottom, a.left);
517
517
  }
518
518
  y(a) {
519
- let b = a.cu < this.g.cn ? this.g.cn - a.cu : 0;
519
+ let b = a.c6 < this.g.cn ? this.g.cn - a.c6 : 0;
520
520
  let c = 0;
521
- let d = this.g.cy == -1 ? a.he : (a.cu + a.he > this.g.co) ? a.he - (a.cu + a.he - this.g.co) : a.he;
522
- let e = a.fu;
521
+ let d = this.g.cy == -1 ? a.h2 : (a.c6 + a.h2 > this.g.co) ? a.h2 - (a.c6 + a.h2 - this.g.co) : a.h2;
522
+ let e = a.f6;
523
523
  return this.x(new Rect(0, b, c, d, e));
524
524
  }
525
525
  ah(a, b) {
@@ -17,49 +17,49 @@ export let DataGridScrollerKeyboardListener = /*@__PURE__*/ (() => {
17
17
  this.a = a;
18
18
  }
19
19
  onDownArrow(a, b) {
20
- return this.a.kk(a, b);
20
+ return this.a.kl(a, b);
21
21
  }
22
22
  onEnd(a, b) {
23
- return this.a.kl(a, b);
23
+ return this.a.km(a, b);
24
24
  }
25
25
  onHome(a, b) {
26
- return this.a.kp(a, b);
26
+ return this.a.kq(a, b);
27
27
  }
28
28
  onLeftArrow(a, b) {
29
- return this.a.kr(a, b);
29
+ return this.a.ks(a, b);
30
30
  }
31
31
  onPageDown(a, b) {
32
- return this.a.ks(a, b);
32
+ return this.a.kt(a, b);
33
33
  }
34
34
  onPageUp(a, b) {
35
- return this.a.kt(a, b);
35
+ return this.a.ku(a, b);
36
36
  }
37
37
  onRightArrow(a, b) {
38
- return this.a.ku(a, b);
38
+ return this.a.kv(a, b);
39
39
  }
40
40
  onTab(a, b) {
41
- return this.a.kw(a, b);
41
+ return this.a.kx(a, b);
42
42
  }
43
43
  onUpArrow(a, b) {
44
- return this.a.kx(a, b);
44
+ return this.a.ky(a, b);
45
45
  }
46
46
  onWheel() {
47
- this.a.xl();
47
+ this.a.xo();
48
48
  }
49
49
  onEnter(a, b) {
50
- return this.a.km(a, b);
50
+ return this.a.kn(a, b);
51
51
  }
52
52
  onEscape() {
53
- return this.a.kn();
53
+ return this.a.ko();
54
54
  }
55
55
  onF2() {
56
- return this.a.ko();
56
+ return this.a.kp();
57
57
  }
58
58
  onSpace(a, b) {
59
- return this.a.kv(a, b);
59
+ return this.a.kw(a, b);
60
60
  }
61
61
  onKeyDown(a, b, c) {
62
- return this.a.kq(a, b, c);
62
+ return this.a.kr(a, b, c);
63
63
  }
64
64
  }
65
65
  DataGridScrollerKeyboardListener.$t = markType(DataGridScrollerKeyboardListener, 'DataGridScrollerKeyboardListener', Base.$, [IScrollerKeyboardListener_$type]);
@@ -748,10 +748,10 @@ export let DataGridToolbar = /*@__PURE__*/ (() => {
748
748
  this.s = 0;
749
749
  this.t = 0;
750
750
  for (let b = 0; b < a; b++) {
751
- if (this.e.actualColumns._inner[b].jp == true) {
751
+ if (this.e.actualColumns._inner[b].ju == true) {
752
752
  this.s++;
753
753
  }
754
- if (this.e.actualColumns._inner[b].im == 1) {
754
+ if (this.e.actualColumns._inner[b].io == 1) {
755
755
  this.t++;
756
756
  }
757
757
  }
@@ -23,23 +23,23 @@ export let DateTimeCellPresenter = /*@__PURE__*/ (() => {
23
23
  b(a) {
24
24
  super.b(a);
25
25
  let b = a;
26
- if (a.a3) {
27
- if (a.a8(DateTimeCellModel.mv) || a.a8(DateTimeCellModel.mw) || a.a8(DateTimeCellModel.mu) || a.a8(DateTimeCellModel.gj) || a.a8(DateTimeCellModel.hb)) {
26
+ if (a.a7) {
27
+ if (a.bc(DateTimeCellModel.n8) || a.bc(DateTimeCellModel.n9) || a.bc(DateTimeCellModel.n7) || a.bc(DateTimeCellModel.gv) || a.bc(DateTimeCellModel.hz)) {
28
28
  this.e(b);
29
- this.d.cl.setRawText(b.j3);
29
+ this.d.c5(this.d.dt, b.ku);
30
30
  }
31
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cl, this.a);
31
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dt, this.a);
32
32
  }
33
33
  }
34
34
  e(a) {
35
- if (a.ki != null) {
36
- a.j3 = a.ki;
35
+ if (a.lp != null) {
36
+ a.ku = a.lp;
37
37
  return;
38
38
  }
39
- a.j3 = a.m7(a.mt);
40
- if (a.j3 == stringEmpty()) {
41
- if (a.hn != null && !(typeCast(Date_$type, a.hn) !== null)) {
42
- a.j3 = a.hn.toString();
39
+ a.ku = a.ok(a.n6);
40
+ if (a.ku == stringEmpty()) {
41
+ if (a.ib != null && !(typeCast(Date_$type, a.ib) !== null)) {
42
+ a.ku = a.ib.toString();
43
43
  }
44
44
  }
45
45
  }