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
@@ -18,28 +18,28 @@ var TextHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
18
18
  __extends(TextHeaderCell, _super);
19
19
  function TextHeaderCell(a) {
20
20
  var _this = _super.call(this, a) || this;
21
- _this.cv = null;
22
- _this.cr = null;
23
- _this.cp = null;
24
- _this.cl = 0;
25
- _this.ck = 0;
26
- _this.cn = 3;
27
- _this.cx = null;
28
- _this.c0 = -1;
29
- _this.cz = -1;
30
- _this.ct = false;
31
- _this.cw = null;
32
- _this.cu = false;
33
- _this.cv = a.createElement("span");
34
- _this.ah.setRawStyleProperty("text-align", "left");
35
- _this.ah.setRawStyleProperty("vertical-align", "middle");
36
- _this.cv.setRawStyleProperty("display", "inline-block");
37
- _this.cv.setRawStyleProperty("line-height", "normal");
38
- _this.cv.setRawStyleProperty("vertical-align", "middle");
39
- _this.cv.setRawStyleProperty("overflow", "hidden");
40
- _this.cv.setRawStyleProperty("white-space", "nowrap");
41
- _this.cv.setRawStyleProperty("text-overflow", "ellipsis");
42
- _this.ah.append(_this.cv);
21
+ _this.d3 = null;
22
+ _this.dz = null;
23
+ _this.dx = null;
24
+ _this.dt = 0;
25
+ _this.ds = 0;
26
+ _this.dv = 3;
27
+ _this.d5 = null;
28
+ _this.d8 = -1;
29
+ _this.d7 = -1;
30
+ _this.d1 = false;
31
+ _this.d4 = null;
32
+ _this.d2 = false;
33
+ _this.d3 = a.createElement("span");
34
+ _this.ap.setRawStyleProperty("text-align", "left");
35
+ _this.ap.setRawStyleProperty("vertical-align", "middle");
36
+ _this.d3.setRawStyleProperty("display", "inline-block");
37
+ _this.d3.setRawStyleProperty("line-height", "normal");
38
+ _this.d3.setRawStyleProperty("vertical-align", "middle");
39
+ _this.d3.setRawStyleProperty("overflow", "hidden");
40
+ _this.d3.setRawStyleProperty("white-space", "nowrap");
41
+ _this.d3.setRawStyleProperty("text-overflow", "ellipsis");
42
+ _this.ap.append(_this.d3);
43
43
  var b = 18;
44
44
  var c = 18;
45
45
  var d = a.createElement("div");
@@ -48,17 +48,17 @@ var TextHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
48
48
  d.setRawStyleProperty("vertical-align", "middle");
49
49
  d.setRawStyleProperty("width", b + "px");
50
50
  d.setRawStyleProperty("height", c + "px");
51
- _this.cw = d;
51
+ _this.d4 = d;
52
52
  var e = a.getSubRenderer(d);
53
- _this.cp = new GridFilterDialog();
54
- _this.cp.bn(e, _this.ah, a);
55
- _this.ah.append(d);
56
- _this.cp.be(b, c);
57
- _this.cp.ak = 24;
58
- var f = _this.cp.ab;
59
- _this.cp.ab = false;
60
- _this.cp.bb();
61
- _this.cp.ab = f;
53
+ _this.dx = new GridFilterDialog();
54
+ _this.dx.bn(e, _this.ap, a);
55
+ _this.ap.append(d);
56
+ _this.dx.be(b, c);
57
+ _this.dx.ak = 24;
58
+ var f = _this.dx.ab;
59
+ _this.dx.ab = false;
60
+ _this.dx.bb();
61
+ _this.dx.ab = f;
62
62
  var g = 18;
63
63
  var h = 18;
64
64
  d = a.createElement("div");
@@ -68,227 +68,234 @@ var TextHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
68
68
  d.setRawStyleProperty("width", "0px");
69
69
  d.setRawStyleProperty("height", h + "px");
70
70
  d.setRawStyleProperty("margin", "0 0 0 5px");
71
- _this.cx = d;
71
+ _this.d5 = d;
72
72
  e = a.getSubRenderer(d);
73
- _this.cr = new GridSortIndicator();
74
- _this.cr.n = false;
75
- _this.cr.m = false;
76
- _this.cr.a0(e);
77
- _this.ah.append(d);
78
- _this.cr.au(g, h);
79
- var i = _this.cr;
80
- i.propertyChanged = delegateCombine(i.propertyChanged, runOn(_this, _this.c3));
81
- var j = _this.cp;
82
- j.dialogOpening = delegateCombine(j.dialogOpening, runOn(_this, _this.c4));
83
- var k = _this.cp;
84
- k.filterChanging = delegateCombine(k.filterChanging, runOn(_this, _this.c6));
85
- var l = _this.cp;
86
- l.filterChanged = delegateCombine(l.filterChanged, runOn(_this, _this.c5));
87
- _this.ah.listen("mouseenter", runOn(_this, _this.da));
88
- _this.ah.listen("mouseleave", runOn(_this, _this.c9));
73
+ _this.dz = new GridSortIndicator();
74
+ _this.dz.n = false;
75
+ _this.dz.m = false;
76
+ _this.dz.a0(e);
77
+ _this.ap.append(d);
78
+ _this.dz.au(g, h);
79
+ var i = _this.dz;
80
+ i.propertyChanged = delegateCombine(i.propertyChanged, runOn(_this, _this.eb));
81
+ var j = _this.dx;
82
+ j.dialogOpening = delegateCombine(j.dialogOpening, runOn(_this, _this.ec));
83
+ var k = _this.dx;
84
+ k.filterChanging = delegateCombine(k.filterChanging, runOn(_this, _this.ee));
85
+ var l = _this.dx;
86
+ l.filterChanged = delegateCombine(l.filterChanged, runOn(_this, _this.ed));
87
+ _this.ap.listen("mouseenter", runOn(_this, _this.ei));
88
+ _this.ap.listen("mouseleave", runOn(_this, _this.eh));
89
89
  return _this;
90
90
  }
91
- Object.defineProperty(TextHeaderCell.prototype, "cy", {
91
+ Object.defineProperty(TextHeaderCell.prototype, "d6", {
92
92
  get: function () {
93
- return this.cv;
93
+ return this.d3;
94
94
  },
95
95
  enumerable: false,
96
96
  configurable: true
97
97
  });
98
- Object.defineProperty(TextHeaderCell.prototype, "cs", {
98
+ Object.defineProperty(TextHeaderCell.prototype, "d0", {
99
99
  get: function () {
100
- return this.cr;
100
+ return this.dz;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
104
104
  });
105
- Object.defineProperty(TextHeaderCell.prototype, "cq", {
105
+ Object.defineProperty(TextHeaderCell.prototype, "dy", {
106
106
  get: function () {
107
- return this.cp;
107
+ return this.dx;
108
108
  },
109
109
  enumerable: false,
110
110
  configurable: true
111
111
  });
112
- Object.defineProperty(TextHeaderCell.prototype, "co", {
112
+ Object.defineProperty(TextHeaderCell.prototype, "dw", {
113
113
  get: function () {
114
- return this.cn;
114
+ return this.dv;
115
115
  },
116
116
  set: function (a) {
117
- var b = this.cn;
118
- this.cn = a;
119
- this.bs("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.cn));
117
+ var b = this.dv;
118
+ this.dv = a;
119
+ this.ch("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.dv));
120
120
  },
121
121
  enumerable: false,
122
122
  configurable: true
123
123
  });
124
- Object.defineProperty(TextHeaderCell.prototype, "cm", {
124
+ Object.defineProperty(TextHeaderCell.prototype, "du", {
125
125
  get: function () {
126
- return this.cl;
126
+ return this.dt;
127
127
  },
128
128
  set: function (a) {
129
- var b = this.cl;
130
- this.cl = a;
131
- this.bs("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.cl));
129
+ var b = this.dt;
130
+ this.dt = a;
131
+ this.ch("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.dt));
132
132
  },
133
133
  enumerable: false,
134
134
  configurable: true
135
135
  });
136
- TextHeaderCell.prototype.aa = function (a) {
136
+ TextHeaderCell.prototype.af = function (a) {
137
137
  return true;
138
138
  };
139
- TextHeaderCell.prototype.b9 = function (a, b) {
140
- _super.prototype.b9.call(this, a, b);
139
+ TextHeaderCell.prototype.c8 = function (a, b) {
140
+ _super.prototype.c8.call(this, a, b);
141
141
  a -= 21;
142
- if (this.cu) {
142
+ if (this.d2) {
143
143
  a -= 15;
144
144
  }
145
145
  var c = Math.max(0, a - b);
146
- if (c != this.c0) {
147
- this.c0 = c;
148
- this.cv.setRawStyleProperty("max-width", c.toString() + "px");
146
+ if (c != this.d8) {
147
+ this.d8 = c;
148
+ this.d3.setRawStyleProperty("max-width", c.toString() + "px");
149
149
  }
150
150
  };
151
- TextHeaderCell.prototype.b3 = function (a, b) {
152
- _super.prototype.b3.call(this, a, b);
151
+ TextHeaderCell.prototype.cy = function (a, b) {
152
+ _super.prototype.cy.call(this, a, b);
153
+ this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
153
154
  var c = Math.max(0, a - b);
154
- if (this.cz != c) {
155
- this.cz = c;
156
- this.cv.setRawStyleProperty("max-height", c.toString() + "px");
155
+ if (this.d7 != c) {
156
+ this.d7 = c;
157
+ this.d3.setRawStyleProperty("max-height", c.toString() + "px");
157
158
  }
158
159
  };
159
- TextHeaderCell.prototype.ca = function (a, b, c, d) {
160
- this.cp.bd();
160
+ TextHeaderCell.prototype.cx = function (a, b) {
161
+ _super.prototype.cx.call(this, a, b);
162
+ if (a == this.d3) {
163
+ this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
164
+ }
165
+ };
166
+ TextHeaderCell.prototype.c9 = function (a, b, c, d) {
167
+ this.dx.bd();
161
168
  };
162
- TextHeaderCell.prototype.c3 = function (a, b) {
169
+ TextHeaderCell.prototype.eb = function (a, b) {
163
170
  switch (b.propertyName) {
164
171
  case "CurrentOpacity":
165
- if (this.cs.t > 0) {
166
- this.cx.setRawStyleProperty("width", "18px");
167
- if (this.ck == 2) {
168
- this.cx.setRawStyleProperty("margin", "0 5px 0 0");
172
+ if (this.d0.t > 0) {
173
+ this.d5.setRawStyleProperty("width", "18px");
174
+ if (this.ds == 2) {
175
+ this.d5.setRawStyleProperty("margin", "0 5px 0 0");
169
176
  }
170
177
  else {
171
- this.cx.setRawStyleProperty("margin", "0 0 0 5px");
178
+ this.d5.setRawStyleProperty("margin", "0 0 0 5px");
172
179
  }
173
180
  }
174
181
  else {
175
- this.cx.setRawStyleProperty("width", "0px");
176
- this.cx.setRawStyleProperty("margin", "0");
182
+ this.d5.setRawStyleProperty("width", "0px");
183
+ this.d5.setRawStyleProperty("margin", "0");
177
184
  }
178
185
  break;
179
186
  }
180
187
  };
181
- TextHeaderCell.prototype.da = function (a) {
188
+ TextHeaderCell.prototype.ei = function (a) {
182
189
  if (this.b.isGridDragging) {
183
190
  return;
184
191
  }
185
- this.cp.ba();
186
- switch (this.co) {
192
+ this.dx.ba();
193
+ switch (this.dw) {
187
194
  case 2:
188
195
  case 3:
189
- this.cp.br();
196
+ this.dx.br();
190
197
  break;
191
198
  }
192
199
  };
193
- TextHeaderCell.prototype.c9 = function (a) {
194
- switch (this.co) {
200
+ TextHeaderCell.prototype.eh = function (a) {
201
+ switch (this.dw) {
195
202
  case 2:
196
203
  case 3:
197
- this.cp.bb();
204
+ this.dx.bb();
198
205
  break;
199
206
  }
200
207
  };
201
- TextHeaderCell.prototype.c5 = function (a, b) {
208
+ TextHeaderCell.prototype.ed = function (a, b) {
202
209
  this.b.columnFilterChanged(b.a);
203
210
  };
204
- TextHeaderCell.prototype.c6 = function (a, b) {
211
+ TextHeaderCell.prototype.ee = function (a, b) {
205
212
  this.b.columnFilterChanging(b.a);
206
213
  };
207
- TextHeaderCell.prototype.c4 = function (a, b) {
214
+ TextHeaderCell.prototype.ec = function (a, b) {
208
215
  if (this.b != null) {
209
216
  b.a = this.f.getColumn();
210
217
  this.b.cancelEditMode(false);
211
218
  }
212
219
  };
213
- TextHeaderCell.prototype.bq = function (a, b, c) {
214
- _super.prototype.bq.call(this, a, b, c);
215
- this.ck = c;
216
- this.cp.k = c;
220
+ TextHeaderCell.prototype.cf = function (a, b, c) {
221
+ _super.prototype.cf.call(this, a, b, c);
222
+ this.ds = c;
223
+ this.dx.k = c;
217
224
  if (c == 2) {
218
- this.ah.removeChild(this.cx);
219
- this.ah.removeChild(this.cw);
220
- this.cv.before(this.cw);
221
- this.cw.before(this.cx);
222
- if (this.cm == 1) {
223
- this.cw.setRawStyleProperty("margin", "0 5px 0 0");
224
- this.cp.l = this.ck;
225
+ this.ap.removeChild(this.d5);
226
+ this.ap.removeChild(this.d4);
227
+ this.d3.before(this.d4);
228
+ this.d4.before(this.d5);
229
+ if (this.du == 1) {
230
+ this.d4.setRawStyleProperty("margin", "0 5px 0 0");
231
+ this.dx.l = this.ds;
225
232
  }
226
233
  else {
227
- this.cw.setRawStyleProperty("margin", "0");
228
- this.cp.l = 0;
234
+ this.d4.setRawStyleProperty("margin", "0");
235
+ this.dx.l = 0;
229
236
  }
230
237
  }
231
238
  else {
232
- this.ah.removeChild(this.cx);
233
- this.ah.removeChild(this.cv);
234
- this.cw.before(this.cv);
235
- this.cw.before(this.cx);
236
- if (this.cm == 1) {
237
- this.cw.setRawStyleProperty("margin", "0 0 0 5px");
238
- this.cp.l = this.ck;
239
+ this.ap.removeChild(this.d5);
240
+ this.ap.removeChild(this.d3);
241
+ this.d4.before(this.d3);
242
+ this.d4.before(this.d5);
243
+ if (this.du == 1) {
244
+ this.d4.setRawStyleProperty("margin", "0 0 0 5px");
245
+ this.dx.l = this.ds;
239
246
  }
240
247
  else {
241
- this.cw.setRawStyleProperty("margin", "0");
242
- this.cp.l = 2;
248
+ this.d4.setRawStyleProperty("margin", "0");
249
+ this.dx.l = 2;
243
250
  }
244
251
  }
245
252
  };
246
- TextHeaderCell.prototype.b7 = function (a, b, c, d) {
247
- _super.prototype.b7.call(this, a, b, c, d);
248
- this.cp.an = a;
249
- this.cp.ao = c;
253
+ TextHeaderCell.prototype.c3 = function (a, b, c, d) {
254
+ _super.prototype.c3.call(this, a, b, c, d);
255
+ this.dx.an = a;
256
+ this.dx.ao = c;
250
257
  };
251
- TextHeaderCell.prototype.c8 = function () {
252
- if (this.cm == 2 || this.cm == 0) {
253
- if (this.ck == 2) {
254
- this.cp.l = 0;
258
+ TextHeaderCell.prototype.eg = function () {
259
+ if (this.du == 2 || this.du == 0) {
260
+ if (this.ds == 2) {
261
+ this.dx.l = 0;
255
262
  }
256
263
  else {
257
- this.cp.l = 2;
264
+ this.dx.l = 2;
258
265
  }
259
266
  }
260
267
  else {
261
- this.cp.l = this.ck;
262
- if (this.ck == 2) {
263
- this.cw.setRawStyleProperty("margin", "0 5px 0 0");
268
+ this.dx.l = this.ds;
269
+ if (this.ds == 2) {
270
+ this.d4.setRawStyleProperty("margin", "0 5px 0 0");
264
271
  }
265
272
  else {
266
- this.cw.setRawStyleProperty("margin", "0 0 0 5px");
273
+ this.d4.setRawStyleProperty("margin", "0 0 0 5px");
267
274
  }
268
275
  }
269
276
  };
270
- TextHeaderCell.prototype.c7 = function () {
271
- switch (this.co) {
277
+ TextHeaderCell.prototype.ef = function () {
278
+ switch (this.dw) {
272
279
  case 1:
273
- this.cp.ab = false;
274
- this.cp.br();
280
+ this.dx.ab = false;
281
+ this.dx.br();
275
282
  break;
276
283
  case 2:
277
- this.cp.ab = false;
284
+ this.dx.ab = false;
278
285
  break;
279
286
  case 3:
280
- this.cp.ab = true;
287
+ this.dx.ab = true;
281
288
  break;
282
289
  }
283
290
  };
284
- TextHeaderCell.prototype.bs = function (a, b, c) {
285
- _super.prototype.bs.call(this, a, b, c);
291
+ TextHeaderCell.prototype.ch = function (a, b, c) {
292
+ _super.prototype.ch.call(this, a, b, c);
286
293
  switch (a) {
287
294
  case "ColumnOptionsIconAlignment":
288
- this.c8();
295
+ this.eg();
289
296
  break;
290
297
  case "ColumnOptionsIconBehavior":
291
- this.c7();
298
+ this.ef();
292
299
  break;
293
300
  }
294
301
  };
@@ -296,25 +303,25 @@ var TextHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
296
303
  if (e_.button == 2) {
297
304
  return;
298
305
  }
299
- var b = this.cp.ad(e_);
306
+ var b = this.dx.ad(e_);
300
307
  if (b) {
301
- this.ct = true;
308
+ this.d1 = true;
302
309
  return;
303
310
  }
304
311
  _super.prototype.onContactStarted.call(this, e_, a);
305
312
  };
306
313
  TextHeaderCell.prototype.onContactCompleted = function (e_, a) {
307
- if (!this.ct) {
314
+ if (!this.d1) {
308
315
  _super.prototype.onContactCompleted.call(this, e_, a);
309
316
  }
310
- this.ct = false;
317
+ this.d1 = false;
311
318
  };
312
319
  TextHeaderCell.prototype.detach = function () {
313
320
  _super.prototype.detach.call(this);
314
- if (this.cp != null) {
321
+ if (this.dx != null) {
315
322
  }
316
323
  };
317
- TextHeaderCell.prototype.get_x = function () {
324
+ TextHeaderCell.prototype.get_ac = function () {
318
325
  return true;
319
326
  };
320
327
  TextHeaderCell.$t = markType(TextHeaderCell, 'TextHeaderCell', GridCellBase.$);
@@ -28,59 +28,59 @@ var TextHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
28
28
  TextHeaderCellPresenter.prototype.b = function (a) {
29
29
  _super.prototype.b.call(this, a);
30
30
  var b = a;
31
- if (a.a3) {
32
- if (a.a8(TextCellModel.mj)) {
33
- b.j3 = b.ml;
34
- this.d.cy.setRawText(b.j3);
31
+ if (a.a7) {
32
+ if (a.bc(TextCellModel.nw)) {
33
+ b.ku = b.ny;
34
+ this.d.c5(this.d.d6, b.ku);
35
35
  }
36
- if (a.a8(CellModel.g4)) {
37
- var c = this.d.cs.m;
38
- if (a.bp) {
39
- this.d.cs.m = false;
36
+ if (a.bc(CellModel.hg)) {
37
+ var c = this.d.d0.m;
38
+ if (a.bt) {
39
+ this.d.d0.m = false;
40
40
  }
41
- this.d.cs.b = a.n;
42
- if (a.bp) {
43
- this.d.cs.m = c;
41
+ this.d.d0.b = a.n;
42
+ if (a.bt) {
43
+ this.d.d0.m = c;
44
44
  }
45
45
  }
46
- if (a.a8(CellModel.g5)) {
47
- var d = this.d.cs.m;
48
- if (a.bp) {
49
- this.d.cs.m = false;
46
+ if (a.bc(CellModel.hh)) {
47
+ var d = this.d.d0.m;
48
+ if (a.bt) {
49
+ this.d.d0.m = false;
50
50
  }
51
- this.d.cs.a3 = a.me;
52
- if (a.bp) {
53
- this.d.cs.m = d;
51
+ this.d.d0.a3 = a.no;
52
+ if (a.bt) {
53
+ this.d.d0.m = d;
54
54
  }
55
55
  }
56
- if (a.a7("IsColumnOptionsEnabled")) {
57
- var e = b.mu;
56
+ if (a.bb("IsColumnOptionsEnabled")) {
57
+ var e = b.n7;
58
58
  if (e) {
59
59
  e = this.e();
60
60
  }
61
- this.d.cu = e;
62
- this.d.cw.setRawStyleProperty("display", e ? "inline-block" : "none");
63
- this.a.b9(a.he, (a.gm + a.go + a.e2 + a.e5));
61
+ this.d.d2 = e;
62
+ this.d.d4.setRawStyleProperty("display", e ? "inline-block" : "none");
63
+ this.a.c8(a.h2, (a.gy + a.g0 + a.fe + a.fh));
64
64
  }
65
- if (a.a7("SortIndicatorStyle")) {
66
- this.d.cs.f = b.ms;
65
+ if (a.bb("SortIndicatorStyle")) {
66
+ this.d.d0.f = b.n5;
67
67
  }
68
- if (a.a7("ColumnOptionsIconAlignment")) {
69
- this.d.cm = b.mo;
68
+ if (a.bb("ColumnOptionsIconAlignment")) {
69
+ this.d.du = b.n1;
70
70
  }
71
- if (a.a7("ColumnOptionsIconBehavior")) {
72
- this.d.co = b.mq;
71
+ if (a.bb("ColumnOptionsIconBehavior")) {
72
+ this.d.dw = b.n3;
73
73
  }
74
- if (a.a7("ColumnOptionsIconColor")) {
75
- this.d.cq.bw = b.m6;
74
+ if (a.bb("ColumnOptionsIconColor")) {
75
+ this.d.dy.bw = b.oj;
76
76
  }
77
- if (a.a7("Path") || (this.d.cq.n != null && this.d.cq.n.grid == null)) {
77
+ if (a.bb("Path") || (this.d.dy.n != null && this.d.dy.n.grid == null)) {
78
78
  var f = a.e.getColumn();
79
- if (f != this.d.cq.n) {
80
- this.d.cq.n = f;
79
+ if (f != this.d.dy.n) {
80
+ this.d.dy.n = f;
81
81
  }
82
82
  }
83
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cy, this.a);
83
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.d6, this.a);
84
84
  }
85
85
  };
86
86
  TextHeaderCellPresenter.prototype.e = function () {
@@ -15,57 +15,57 @@ var VerticalSeparatorCell = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  __extends(VerticalSeparatorCell, _super);
16
16
  function VerticalSeparatorCell(a) {
17
17
  var _this = _super.call(this, a) || this;
18
- _this.cl = null;
19
- _this.ck = null;
20
- _this.cm = 0;
21
- _this.cn = 0;
22
- _this.cl = a.createElement("div");
23
- _this.cl.setRawStyleProperty("position", "absolute");
24
- _this.cl.setRawStyleProperty("pointer-events", "none");
25
- _this.ah.append(_this.cl);
18
+ _this.dt = null;
19
+ _this.ds = null;
20
+ _this.du = 0;
21
+ _this.dv = 0;
22
+ _this.dt = a.createElement("div");
23
+ _this.dt.setRawStyleProperty("position", "absolute");
24
+ _this.dt.setRawStyleProperty("pointer-events", "none");
25
+ _this.ap.append(_this.dt);
26
26
  return _this;
27
27
  }
28
- VerticalSeparatorCell.prototype.b1 = function (a, b, c, d, e) {
28
+ VerticalSeparatorCell.prototype.cu = function (a, b, c, d, e) {
29
29
  if (a == null) {
30
- if (this.ck != null) {
31
- this.ck.remove();
32
- this.ck = null;
30
+ if (this.ds != null) {
31
+ this.ds.remove();
32
+ this.ds = null;
33
33
  }
34
34
  }
35
35
  else {
36
- this.co();
37
- this.cm = b;
38
- this.cn = d;
36
+ this.dw();
37
+ this.du = b;
38
+ this.dv = d;
39
39
  }
40
- this.cp();
40
+ this.dx();
41
41
  };
42
- VerticalSeparatorCell.prototype.b9 = function (a, b) {
43
- _super.prototype.b9.call(this, a, b);
44
- this.cp();
42
+ VerticalSeparatorCell.prototype.c8 = function (a, b) {
43
+ _super.prototype.c8.call(this, a, b);
44
+ this.dx();
45
45
  };
46
- VerticalSeparatorCell.prototype.b0 = function (a) {
47
- this.cl.setRawStyleProperty("background-color", a.colorString);
46
+ VerticalSeparatorCell.prototype.ct = function (a) {
47
+ this.dt.setRawStyleProperty("background-color", a.colorString);
48
48
  };
49
- VerticalSeparatorCell.prototype.cp = function () {
50
- if (this.ck != null) {
51
- this.cl.setRawStyleProperty("height", "100%");
52
- this.cl.setRawStyleProperty("width", this.ah.width() - (this.cm + this.cn) + "px");
53
- this.cl.setRawStyleProperty("left", intDivide(this.ah.width(), 2) + "px");
54
- this.ck.setRawStyleProperty("width", "100%");
55
- this.ck.setRawStyleProperty("height", "100%");
49
+ VerticalSeparatorCell.prototype.dx = function () {
50
+ if (this.ds != null) {
51
+ this.dt.setRawStyleProperty("height", "100%");
52
+ this.dt.setRawStyleProperty("width", this.ap.width() - (this.du + this.dv) + "px");
53
+ this.dt.setRawStyleProperty("left", intDivide(this.ap.width(), 2) + "px");
54
+ this.ds.setRawStyleProperty("width", "100%");
55
+ this.ds.setRawStyleProperty("height", "100%");
56
56
  }
57
57
  else {
58
- this.cl.setRawStyleProperty("height", "100%");
59
- this.cl.setRawStyleProperty("width", this.ah.width() + "px");
60
- this.cl.setRawStyleProperty("left", "0px");
58
+ this.dt.setRawStyleProperty("height", "100%");
59
+ this.dt.setRawStyleProperty("width", this.ap.width() + "px");
60
+ this.dt.setRawStyleProperty("left", "0px");
61
61
  }
62
62
  };
63
- VerticalSeparatorCell.prototype.co = function () {
64
- if (this.ck == null) {
65
- this.ck = this.ae.createElement("div");
66
- this.ck.setRawStyleProperty("position", "absolute");
67
- this.ck.setRawStyleProperty("background-color", "rgba(0,0,0,0)");
68
- this.ah.getNativeElement().insertBefore(this.ck.getNativeElement(), this.cl.getNativeElement());
63
+ VerticalSeparatorCell.prototype.dw = function () {
64
+ if (this.ds == null) {
65
+ this.ds = this.ak.createElement("div");
66
+ this.ds.setRawStyleProperty("position", "absolute");
67
+ this.ds.setRawStyleProperty("background-color", "rgba(0,0,0,0)");
68
+ this.ap.getNativeElement().insertBefore(this.ds.getNativeElement(), this.dt.getNativeElement());
69
69
  }
70
70
  };
71
71
  VerticalSeparatorCell.$t = markType(VerticalSeparatorCell, 'VerticalSeparatorCell', GridCellBase.$);