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
@@ -15,33 +15,33 @@ export let TemplateCell = /*@__PURE__*/ (() => {
15
15
  class TemplateCell extends GridCellBase {
16
16
  constructor(a) {
17
17
  super(a);
18
- this.ck = null;
19
- this.ck = new TemplateCellContainer(a);
20
- this.ck.element.setRawStyleProperty("box-sizing", "border-box");
21
- this.ah.append(this.ck.element);
22
- this.ah.listen("keydown", runOn(this, this.cm));
18
+ this.ds = null;
19
+ this.ds = new TemplateCellContainer(a);
20
+ this.ds.element.setRawStyleProperty("box-sizing", "border-box");
21
+ this.ap.append(this.ds.element);
22
+ this.ap.listen("keydown", runOn(this, this.du));
23
23
  }
24
- get cl() {
25
- return this.ck;
24
+ get dt() {
25
+ return this.ds;
26
26
  }
27
- get_z() {
27
+ get_ae() {
28
28
  return true;
29
29
  }
30
- bs(a, b, c) {
31
- super.bs(a, b, c);
30
+ ch(a, b, c) {
31
+ super.ch(a, b, c);
32
32
  if (a == "Indent" || a == "IsCollapsable") {
33
- this.ck.element.setRawStyleProperty("margin-left", this.a3 + this.a5 + this.a4 + "px");
33
+ this.ds.element.setRawStyleProperty("margin-left", this.bb + this.bd + this.bc + "px");
34
34
  }
35
35
  }
36
- bh() {
37
- let a = this.ck.element.getNativeElement();
36
+ b6() {
37
+ let a = this.ds.element.getNativeElement();
38
38
  if (a.contains(document.activeElement)) {
39
39
  return;
40
40
  }
41
- super.bh();
41
+ super.b6();
42
42
  }
43
- cm(a) {
44
- let b = this.ck.element.getNativeElement();
43
+ du(a) {
44
+ let b = this.ds.element.getNativeElement();
45
45
  if (b.contains(document.activeElement) && document.activeElement.nodeName == "INPUT") {
46
46
  let c = BaseDOMEventProxy.c0(a);
47
47
  if (c == 14 || c == 16) {
@@ -24,12 +24,12 @@ export let TemplateCellPresenter = /*@__PURE__*/ (() => {
24
24
  super.b(a);
25
25
  let b = a;
26
26
  let c = this.d.actualColumns._inner[a.l.a5];
27
- if (a.a8(CellModel.fa) || a.a8(CellModel.hd)) {
28
- let d = Math.min(1, Math.max(0, a.ct));
29
- let e = a.cj * (1 - d);
30
- this.e.cl.element.setRawStyleProperty("opacity", e.toString());
27
+ if (a.bc(CellModel.fm) || a.bc(CellModel.h1)) {
28
+ let d = Math.min(1, Math.max(0, a.c5));
29
+ let e = a.cr * (1 - d);
30
+ this.e.dt.element.setRawStyleProperty("opacity", e.toString());
31
31
  }
32
- c.n6(a, this.e.cl);
32
+ c.o7(a, this.e.dt);
33
33
  }
34
34
  }
35
35
  TemplateCellPresenter.$t = markType(TemplateCellPresenter, 'TemplateCellPresenter', CellPresenterBase.$);
@@ -20,19 +20,19 @@ export let TemplateHeader = /*@__PURE__*/ (() => {
20
20
  n(a) {
21
21
  return new TemplateHeaderCellModel();
22
22
  }
23
- d2(a, b, c) {
23
+ d3(a, b, c) {
24
24
  let d = "template-header-" + a.a5.toString();
25
25
  return d;
26
26
  }
27
- eo(a, b, c, d) {
28
- super.eo(a, b, c, d);
27
+ ep(a, b, c, d) {
28
+ super.ep(a, b, c, d);
29
29
  let e = a;
30
30
  let f = b.cf(a.l);
31
- e.ml = f.k4;
32
- e.n = f.hr;
33
- e.mo = f.jb;
31
+ e.ny = f.lk;
32
+ e.n = f.hs;
33
+ e.n1 = f.jg;
34
34
  }
35
- hq(a, b) {
35
+ hr(a, b) {
36
36
  if (this.cellUpdating != null) {
37
37
  this.cellUpdating(this, ((() => {
38
38
  let $ret = new TemplateHeaderCellUpdatingEventArgs();
@@ -14,14 +14,14 @@ export let TemplateHeaderCell = /*@__PURE__*/ (() => {
14
14
  class TemplateHeaderCell extends GridCellBase {
15
15
  constructor(a) {
16
16
  super(a);
17
- this.ck = null;
18
- this.ck = new TemplateCellContainer(a);
19
- this.ah.append(this.ck.element);
17
+ this.ds = null;
18
+ this.ds = new TemplateCellContainer(a);
19
+ this.ap.append(this.ds.element);
20
20
  }
21
- get cl() {
22
- return this.ck;
21
+ get dt() {
22
+ return this.ds;
23
23
  }
24
- get_x() {
24
+ get_ac() {
25
25
  return true;
26
26
  }
27
27
  }
@@ -15,35 +15,35 @@ export let TemplateHeaderCellModel = /*@__PURE__*/ (() => {
15
15
  class TemplateHeaderCellModel extends TemplateCellModel {
16
16
  constructor() {
17
17
  super(...arguments);
18
- this.mn = false;
18
+ this.n0 = false;
19
19
  }
20
- get mo() {
21
- return this.mn;
20
+ get n1() {
21
+ return this.n0;
22
22
  }
23
- set mo(a) {
24
- let b = this.mn;
25
- this.mn = a;
26
- if (this.mn != b) {
27
- this.k4("IsFilterUIVisible", TemplateHeaderCellModel.mp, b, this.mn);
23
+ set n1(a) {
24
+ let b = this.n0;
25
+ this.n0 = a;
26
+ if (this.n0 != b) {
27
+ this.mb("IsFilterUIVisible", TemplateHeaderCellModel.n2, b, this.n0);
28
28
  }
29
29
  }
30
- ld(a, b) {
31
- super.ld(a, b);
30
+ mk(a, b) {
31
+ super.mk(a, b);
32
32
  if (a == "IsFilterUIVisible") {
33
- this.mo = b;
33
+ this.n1 = b;
34
34
  }
35
35
  }
36
- kp(a) {
36
+ lw(a) {
37
37
  switch (a) {
38
38
  case "IsFilterUIVisible": return Boolean_$type;
39
39
  }
40
- return super.kp(a);
40
+ return super.lw(a);
41
41
  }
42
- hm(a) {
42
+ ia(a) {
43
43
  if (a == "IsFilterUIVisible") {
44
- return this.mo;
44
+ return this.n1;
45
45
  }
46
- return super.hm(a);
46
+ return super.ia(a);
47
47
  }
48
48
  b(a) {
49
49
  if (a == null) {
@@ -51,11 +51,11 @@ export let TemplateHeaderCellModel = /*@__PURE__*/ (() => {
51
51
  }
52
52
  a = super.b(a);
53
53
  let b = a;
54
- b.ae = this.ml;
54
+ b.ae = this.ny;
55
55
  return b;
56
56
  }
57
57
  }
58
58
  TemplateHeaderCellModel.$t = markType(TemplateHeaderCellModel, 'TemplateHeaderCellModel', TemplateCellModel.$);
59
- TemplateHeaderCellModel.mp = CellModel.ft("IsFilterUIVisible");
59
+ TemplateHeaderCellModel.n2 = CellModel.f5("IsFilterUIVisible");
60
60
  return TemplateHeaderCellModel;
61
61
  })();
@@ -24,13 +24,13 @@ export let TemplateHeaderCellPresenter = /*@__PURE__*/ (() => {
24
24
  super.b(a);
25
25
  let b = this.d.actualColumns._inner[a.l.a5];
26
26
  let c = b.header;
27
- if (a.a8(CellModel.fa) || a.a8(CellModel.hd)) {
28
- let d = Math.min(1, Math.max(0, a.ct));
29
- let e = a.cj * (1 - d);
30
- this.e.cl.element.setRawStyleProperty("opacity", e.toString());
27
+ if (a.bc(CellModel.fm) || a.bc(CellModel.h1)) {
28
+ let d = Math.min(1, Math.max(0, a.c5));
29
+ let e = a.cr * (1 - d);
30
+ this.e.dt.element.setRawStyleProperty("opacity", e.toString());
31
31
  }
32
32
  let f = a;
33
- c.hq(f, this.e.cl);
33
+ c.hr(f, this.e.dt);
34
34
  }
35
35
  }
36
36
  TemplateHeaderCellPresenter.$t = markType(TemplateHeaderCellPresenter, 'TemplateHeaderCellPresenter', CellPresenterBase.$);
@@ -17,13 +17,13 @@ export let TemplateSectionHeader = /*@__PURE__*/ (() => {
17
17
  super(...arguments);
18
18
  this.cellUpdating = null;
19
19
  }
20
- d2(a, b, c) {
20
+ d3(a, b, c) {
21
21
  return "templateSectionHeader";
22
22
  }
23
23
  n(a) {
24
24
  return new TemplateSectionHeaderCellModel();
25
25
  }
26
- hu(a, b) {
26
+ hv(a, b) {
27
27
  if (this.cellUpdating != null) {
28
28
  this.cellUpdating(this, ((() => {
29
29
  let $ret = new TemplateSectionHeaderCellUpdatingEventArgs();
@@ -13,46 +13,51 @@ export let TextCell = /*@__PURE__*/ (() => {
13
13
  class TextCell extends GridCellBase {
14
14
  constructor(a) {
15
15
  super(a);
16
- this.ck = null;
17
- this.cn = -1;
18
- this.cm = -1;
19
- this.ck = a.createElement("span");
20
- this.ah.setRawStyleProperty("text-align", "left");
21
- this.ck.setRawStyleProperty("display", "inline-block");
22
- this.ck.setRawStyleProperty("line-height", "normal");
23
- this.ck.setRawStyleProperty("vertical-align", "middle");
24
- this.ck.setRawStyleProperty("overflow", "hidden");
25
- this.ck.setRawStyleProperty("white-space", "nowrap");
26
- this.ck.setRawStyleProperty("text-overflow", "ellipsis");
27
- this.ah.setRawStyleProperty("vertical-align", "middle");
28
- this.ah.append(this.ck);
16
+ this.ds = null;
17
+ this.dv = -1;
18
+ this.du = -1;
19
+ this.ap.setRawStyleProperty("text-align", "left");
20
+ this.ap.setRawStyleProperty("vertical-align", "middle");
21
+ this.ds = a.createElement("span");
22
+ this.ds.setRawStyleProperty("display", "inline-block");
23
+ this.ds.setRawStyleProperty("overflow", "hidden");
24
+ this.ds.setRawStyleProperty("white-space", "nowrap");
25
+ this.ds.setRawStyleProperty("text-overflow", "ellipsis");
26
+ this.c7(this.ds, 1);
27
+ this.ap.append(this.ds);
29
28
  }
30
- get cl() {
31
- return this.ck;
29
+ get dt() {
30
+ return this.ds;
32
31
  }
33
- b9(a, b) {
34
- super.b9(a, b);
35
- let c = Math.max(0, a - b - (this.a3 + this.a5 + this.a4));
36
- if (this.cn != c) {
37
- this.cn = c;
38
- this.ck.setRawStyleProperty("max-width", c.toString() + "px");
32
+ c8(a, b) {
33
+ super.c8(a, b);
34
+ let c = Math.max(0, a - b - (this.bb + this.bd + this.bc));
35
+ if (this.dv != c) {
36
+ this.dv = c;
37
+ this.ds.setRawStyleProperty("max-width", c.toString() + "px");
39
38
  }
40
39
  }
41
- b3(a, b) {
42
- super.b3(a, b);
40
+ cy(a, b) {
41
+ super.cy(a, b);
43
42
  let c = Math.max(0, a - b);
44
- if (this.cm != c) {
45
- this.cm = c;
46
- this.ck.setRawStyleProperty("max-height", c.toString() + "px");
43
+ if (this.du != c) {
44
+ this.du = c;
45
+ this.ds.setRawStyleProperty("max-height", c.toString() + "px");
47
46
  }
48
47
  }
49
- get_z() {
48
+ cx(a, b) {
49
+ super.cx(a, b);
50
+ if (a == this.ds) {
51
+ this.ds.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
52
+ }
53
+ }
54
+ get_ae() {
50
55
  return true;
51
56
  }
52
- bs(a, b, c) {
53
- super.bs(a, b, c);
57
+ ch(a, b, c) {
58
+ super.ch(a, b, c);
54
59
  if (a == "Indent" || a == "IsCollapsable") {
55
- this.ck.setRawStyleProperty("margin-left", this.a3 + this.a5 + this.a4 + "px");
60
+ this.ds.setRawStyleProperty("margin-left", this.bb + this.bd + this.bc + "px");
56
61
  }
57
62
  }
58
63
  }
@@ -0,0 +1,33 @@
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 { markEnum } from "igniteui-angular-core";
8
+ /**
9
+ * Indicates how to decorate cell text.
10
+ */
11
+ export var TextCellDecoration = /*@__PURE__*/ (function (TextCellDecoration) {
12
+ /**
13
+ * No decorations are applied.
14
+ */
15
+ TextCellDecoration[TextCellDecoration["None"] = 0] = "None";
16
+ /**
17
+ * Draws a line through the middle of the text.
18
+ */
19
+ TextCellDecoration[TextCellDecoration["Strikethrough"] = 1] = "Strikethrough";
20
+ /**
21
+ * Draws a line above the text.
22
+ */
23
+ TextCellDecoration[TextCellDecoration["Overline"] = 2] = "Overline";
24
+ /**
25
+ * Draws a line beneath the text.
26
+ */
27
+ TextCellDecoration[TextCellDecoration["Underline"] = 3] = "Underline";
28
+ return TextCellDecoration;
29
+ })({});
30
+ /**
31
+ * @hidden
32
+ */
33
+ export let TextCellDecoration_$type = markEnum('TextCellDecoration', 'None,0|Strikethrough,1|Overline,2|Underline,3');
@@ -22,27 +22,27 @@ export let TextCellPresenter = /*@__PURE__*/ (() => {
22
22
  b(a) {
23
23
  super.b(a);
24
24
  let b = a;
25
- if (a.a3) {
26
- if (a.a8(TextCellModel.mj) || a.a8(TextCellModel.hb) || a.a8(TextCellModel.gj)) {
27
- b.j3 = this.e(b);
28
- this.d.cl.setRawText(b.j3);
25
+ if (a.a7) {
26
+ if (a.bc(TextCellModel.nw) || a.bc(TextCellModel.hz) || a.bc(TextCellModel.gv)) {
27
+ b.ku = this.e(b);
28
+ this.d.c5(this.d.dt, b.ku);
29
29
  }
30
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cl, this.a);
30
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dt, this.a);
31
31
  }
32
32
  }
33
33
  e(a) {
34
- if (a.ki != null) {
35
- return a.ki;
34
+ if (a.lp != null) {
35
+ return a.lp;
36
36
  }
37
- if (a.ml != null) {
38
- return a.ml;
37
+ if (a.ny != null) {
38
+ return a.ny;
39
39
  }
40
40
  else {
41
- if (a.hn == null) {
41
+ if (a.ib == null) {
42
42
  return "";
43
43
  }
44
44
  else {
45
- return a.hn.toString();
45
+ return a.ib.toString();
46
46
  }
47
47
  }
48
48
  }