igniteui-angular-data-grids 20.0.1 → 20.0.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (240) hide show
  1. package/bundles/igniteui-angular-data-grids.umd.js +10223 -8743
  2. package/bundles/igniteui-angular-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +6925 -6539
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +335 -335
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +8 -8
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +7 -7
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  74. package/esm2015/lib/igx-cell-info.js +301 -190
  75. package/esm2015/lib/igx-checkbox-list-component.js +1 -1
  76. package/esm2015/lib/igx-column-moving-separator-component.js +6 -6
  77. package/esm2015/lib/igx-column-resizing-separator-component.js +4 -4
  78. package/esm2015/lib/igx-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igx-data-grid-column-component.js +254 -115
  80. package/esm2015/lib/igx-data-grid-component.js +38 -5
  81. package/esm2015/lib/igx-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igx-date-time-column-component.js +20 -20
  83. package/esm2015/lib/igx-definition-base-component.js +46 -45
  84. package/esm2015/lib/igx-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igx-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igx-filter-row-definition-component.js +8 -8
  87. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igx-grid-conditional-style-font-info-component.js +144 -0
  89. package/esm2015/lib/igx-grid-conditional-style-font-info-dynamic-module.js +34 -0
  90. package/esm2015/lib/igx-grid-conditional-style-font-info-module.js +27 -0
  91. package/esm2015/lib/igx-header-component.js +16 -16
  92. package/esm2015/lib/igx-image-cell-info.js +6 -6
  93. package/esm2015/lib/igx-image-column-component.js +10 -10
  94. package/esm2015/lib/igx-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igx-numeric-column-component.js +30 -30
  96. package/esm2015/lib/igx-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igx-section-header-component.js +16 -16
  98. package/esm2015/lib/igx-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igx-summary-row-component.js +16 -16
  100. package/esm2015/lib/igx-template-cell-info.js +2 -2
  101. package/esm2015/lib/igx-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igx-text-cell-info.js +2 -2
  103. package/esm2015/lib/igx-text-column-component.js +8 -8
  104. package/esm2015/lib/igx-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +5 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +6754 -6269
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +8 -8
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +7 -7
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  177. package/esm5/lib/igx-cell-info.js +349 -190
  178. package/esm5/lib/igx-checkbox-list-component.js +1 -1
  179. package/esm5/lib/igx-column-moving-separator-component.js +6 -6
  180. package/esm5/lib/igx-column-resizing-separator-component.js +4 -4
  181. package/esm5/lib/igx-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igx-data-grid-column-component.js +302 -115
  183. package/esm5/lib/igx-data-grid-component.js +42 -5
  184. package/esm5/lib/igx-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igx-date-time-column-component.js +20 -20
  186. package/esm5/lib/igx-definition-base-component.js +46 -45
  187. package/esm5/lib/igx-editor-cell-info.js +23 -23
  188. package/esm5/lib/igx-filter-cell-info.js +26 -26
  189. package/esm5/lib/igx-filter-row-definition-component.js +8 -8
  190. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igx-grid-conditional-style-font-info-component.js +155 -0
  192. package/esm5/lib/igx-grid-conditional-style-font-info-dynamic-module.js +33 -0
  193. package/esm5/lib/igx-grid-conditional-style-font-info-module.js +28 -0
  194. package/esm5/lib/igx-header-component.js +16 -16
  195. package/esm5/lib/igx-image-cell-info.js +6 -6
  196. package/esm5/lib/igx-image-column-component.js +10 -10
  197. package/esm5/lib/igx-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igx-numeric-column-component.js +30 -30
  199. package/esm5/lib/igx-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igx-section-header-component.js +16 -16
  201. package/esm5/lib/igx-summary-cell-info.js +9 -9
  202. package/esm5/lib/igx-summary-row-component.js +16 -16
  203. package/esm5/lib/igx-template-cell-info.js +2 -2
  204. package/esm5/lib/igx-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igx-text-cell-info.js +2 -2
  206. package/esm5/lib/igx-text-column-component.js +8 -8
  207. package/esm5/lib/igx-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +5 -0
  209. package/fesm2015/igniteui-angular-data-grids.js +10236 -9009
  210. package/fesm5/igniteui-angular-data-grids.js +10219 -8745
  211. package/lib/ColumnFilterCondition_combined.d.ts +1784 -1694
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/ImageCell.d.ts +20 -20
  219. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  220. package/lib/NumericCell.d.ts +2 -1
  221. package/lib/SectionHeaderCell.d.ts +4 -4
  222. package/lib/SummaryCell.d.ts +11 -11
  223. package/lib/TemplateCell.d.ts +6 -6
  224. package/lib/TemplateHeader.d.ts +3 -3
  225. package/lib/TemplateHeaderCell.d.ts +3 -3
  226. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  227. package/lib/TemplateSectionHeader.d.ts +2 -2
  228. package/lib/TextCell.d.ts +10 -8
  229. package/lib/TextCellDecoration.d.ts +26 -0
  230. package/lib/TextHeaderCell.d.ts +37 -35
  231. package/lib/VerticalSeparatorCell.d.ts +9 -9
  232. package/lib/igx-cell-info.d.ts +63 -0
  233. package/lib/igx-data-grid-column-component.d.ts +68 -2
  234. package/lib/igx-data-grid-component.d.ts +9 -2
  235. package/lib/igx-definition-base-component.d.ts +1 -1
  236. package/lib/igx-grid-conditional-style-font-info-component.d.ts +33 -0
  237. package/lib/igx-grid-conditional-style-font-info-dynamic-module.d.ts +9 -0
  238. package/lib/igx-grid-conditional-style-font-info-module.d.ts +8 -0
  239. package/package.json +43 -43
  240. package/public_api.d.ts +5 -0
@@ -17,28 +17,28 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
17
17
  class TextHeaderCell extends GridCellBase {
18
18
  constructor(a) {
19
19
  super(a);
20
- this.cv = null;
21
- this.cr = null;
22
- this.cp = null;
23
- this.cl = 0;
24
- this.ck = 0;
25
- this.cn = 3;
26
- this.cx = null;
27
- this.c0 = -1;
28
- this.cz = -1;
29
- this.ct = false;
30
- this.cw = null;
31
- this.cu = false;
32
- this.cv = a.createElement("span");
33
- this.ah.setRawStyleProperty("text-align", "left");
34
- this.ah.setRawStyleProperty("vertical-align", "middle");
35
- this.cv.setRawStyleProperty("display", "inline-block");
36
- this.cv.setRawStyleProperty("line-height", "normal");
37
- this.cv.setRawStyleProperty("vertical-align", "middle");
38
- this.cv.setRawStyleProperty("overflow", "hidden");
39
- this.cv.setRawStyleProperty("white-space", "nowrap");
40
- this.cv.setRawStyleProperty("text-overflow", "ellipsis");
41
- this.ah.append(this.cv);
20
+ this.d3 = null;
21
+ this.dz = null;
22
+ this.dx = null;
23
+ this.dt = 0;
24
+ this.ds = 0;
25
+ this.dv = 3;
26
+ this.d5 = null;
27
+ this.d8 = -1;
28
+ this.d7 = -1;
29
+ this.d1 = false;
30
+ this.d4 = null;
31
+ this.d2 = false;
32
+ this.d3 = a.createElement("span");
33
+ this.ap.setRawStyleProperty("text-align", "left");
34
+ this.ap.setRawStyleProperty("vertical-align", "middle");
35
+ this.d3.setRawStyleProperty("display", "inline-block");
36
+ this.d3.setRawStyleProperty("line-height", "normal");
37
+ this.d3.setRawStyleProperty("vertical-align", "middle");
38
+ this.d3.setRawStyleProperty("overflow", "hidden");
39
+ this.d3.setRawStyleProperty("white-space", "nowrap");
40
+ this.d3.setRawStyleProperty("text-overflow", "ellipsis");
41
+ this.ap.append(this.d3);
42
42
  let b = 18;
43
43
  let c = 18;
44
44
  let d = a.createElement("div");
@@ -47,17 +47,17 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
47
47
  d.setRawStyleProperty("vertical-align", "middle");
48
48
  d.setRawStyleProperty("width", b + "px");
49
49
  d.setRawStyleProperty("height", c + "px");
50
- this.cw = d;
50
+ this.d4 = d;
51
51
  let e = a.getSubRenderer(d);
52
- this.cp = new GridFilterDialog();
53
- this.cp.bn(e, this.ah, a);
54
- this.ah.append(d);
55
- this.cp.be(b, c);
56
- this.cp.ak = 24;
57
- let f = this.cp.ab;
58
- this.cp.ab = false;
59
- this.cp.bb();
60
- this.cp.ab = f;
52
+ this.dx = new GridFilterDialog();
53
+ this.dx.bn(e, this.ap, a);
54
+ this.ap.append(d);
55
+ this.dx.be(b, c);
56
+ this.dx.ak = 24;
57
+ let f = this.dx.ab;
58
+ this.dx.ab = false;
59
+ this.dx.bb();
60
+ this.dx.ab = f;
61
61
  let g = 18;
62
62
  let h = 18;
63
63
  d = a.createElement("div");
@@ -67,206 +67,213 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
67
67
  d.setRawStyleProperty("width", "0px");
68
68
  d.setRawStyleProperty("height", h + "px");
69
69
  d.setRawStyleProperty("margin", "0 0 0 5px");
70
- this.cx = d;
70
+ this.d5 = d;
71
71
  e = a.getSubRenderer(d);
72
- this.cr = new GridSortIndicator();
73
- this.cr.n = false;
74
- this.cr.m = false;
75
- this.cr.a0(e);
76
- this.ah.append(d);
77
- this.cr.au(g, h);
78
- let i = this.cr;
79
- i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.c3));
80
- let j = this.cp;
81
- j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.c4));
82
- let k = this.cp;
83
- k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.c6));
84
- let l = this.cp;
85
- l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.c5));
86
- this.ah.listen("mouseenter", runOn(this, this.da));
87
- this.ah.listen("mouseleave", runOn(this, this.c9));
72
+ this.dz = new GridSortIndicator();
73
+ this.dz.n = false;
74
+ this.dz.m = false;
75
+ this.dz.a0(e);
76
+ this.ap.append(d);
77
+ this.dz.au(g, h);
78
+ let i = this.dz;
79
+ i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.eb));
80
+ let j = this.dx;
81
+ j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.ec));
82
+ let k = this.dx;
83
+ k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.ee));
84
+ let l = this.dx;
85
+ l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.ed));
86
+ this.ap.listen("mouseenter", runOn(this, this.ei));
87
+ this.ap.listen("mouseleave", runOn(this, this.eh));
88
88
  }
89
- get cy() {
90
- return this.cv;
89
+ get d6() {
90
+ return this.d3;
91
91
  }
92
- get cs() {
93
- return this.cr;
92
+ get d0() {
93
+ return this.dz;
94
94
  }
95
- get cq() {
96
- return this.cp;
95
+ get dy() {
96
+ return this.dx;
97
97
  }
98
- get co() {
99
- return this.cn;
98
+ get dw() {
99
+ return this.dv;
100
100
  }
101
- set co(a) {
102
- let b = this.cn;
103
- this.cn = a;
104
- this.bs("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.cn));
101
+ set dw(a) {
102
+ let b = this.dv;
103
+ this.dv = a;
104
+ this.ch("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.dv));
105
105
  }
106
- get cm() {
107
- return this.cl;
106
+ get du() {
107
+ return this.dt;
108
108
  }
109
- set cm(a) {
110
- let b = this.cl;
111
- this.cl = a;
112
- this.bs("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.cl));
109
+ set du(a) {
110
+ let b = this.dt;
111
+ this.dt = a;
112
+ this.ch("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.dt));
113
113
  }
114
- aa(a) {
114
+ af(a) {
115
115
  return true;
116
116
  }
117
- b9(a, b) {
118
- super.b9(a, b);
117
+ c8(a, b) {
118
+ super.c8(a, b);
119
119
  a -= 21;
120
- if (this.cu) {
120
+ if (this.d2) {
121
121
  a -= 15;
122
122
  }
123
123
  let c = Math.max(0, a - b);
124
- if (c != this.c0) {
125
- this.c0 = c;
126
- this.cv.setRawStyleProperty("max-width", c.toString() + "px");
124
+ if (c != this.d8) {
125
+ this.d8 = c;
126
+ this.d3.setRawStyleProperty("max-width", c.toString() + "px");
127
127
  }
128
128
  }
129
- b3(a, b) {
130
- super.b3(a, b);
129
+ cy(a, b) {
130
+ super.cy(a, b);
131
+ this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
131
132
  let c = Math.max(0, a - b);
132
- if (this.cz != c) {
133
- this.cz = c;
134
- this.cv.setRawStyleProperty("max-height", c.toString() + "px");
133
+ if (this.d7 != c) {
134
+ this.d7 = c;
135
+ this.d3.setRawStyleProperty("max-height", c.toString() + "px");
135
136
  }
136
137
  }
137
- ca(a, b, c, d) {
138
- this.cp.bd();
138
+ cx(a, b) {
139
+ super.cx(a, b);
140
+ if (a == this.d3) {
141
+ this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
142
+ }
143
+ }
144
+ c9(a, b, c, d) {
145
+ this.dx.bd();
139
146
  }
140
- c3(a, b) {
147
+ eb(a, b) {
141
148
  switch (b.propertyName) {
142
149
  case "CurrentOpacity":
143
- if (this.cs.t > 0) {
144
- this.cx.setRawStyleProperty("width", "18px");
145
- if (this.ck == 2) {
146
- this.cx.setRawStyleProperty("margin", "0 5px 0 0");
150
+ if (this.d0.t > 0) {
151
+ this.d5.setRawStyleProperty("width", "18px");
152
+ if (this.ds == 2) {
153
+ this.d5.setRawStyleProperty("margin", "0 5px 0 0");
147
154
  }
148
155
  else {
149
- this.cx.setRawStyleProperty("margin", "0 0 0 5px");
156
+ this.d5.setRawStyleProperty("margin", "0 0 0 5px");
150
157
  }
151
158
  }
152
159
  else {
153
- this.cx.setRawStyleProperty("width", "0px");
154
- this.cx.setRawStyleProperty("margin", "0");
160
+ this.d5.setRawStyleProperty("width", "0px");
161
+ this.d5.setRawStyleProperty("margin", "0");
155
162
  }
156
163
  break;
157
164
  }
158
165
  }
159
- da(a) {
166
+ ei(a) {
160
167
  if (this.b.isGridDragging) {
161
168
  return;
162
169
  }
163
- this.cp.ba();
164
- switch (this.co) {
170
+ this.dx.ba();
171
+ switch (this.dw) {
165
172
  case 2:
166
173
  case 3:
167
- this.cp.br();
174
+ this.dx.br();
168
175
  break;
169
176
  }
170
177
  }
171
- c9(a) {
172
- switch (this.co) {
178
+ eh(a) {
179
+ switch (this.dw) {
173
180
  case 2:
174
181
  case 3:
175
- this.cp.bb();
182
+ this.dx.bb();
176
183
  break;
177
184
  }
178
185
  }
179
- c5(a, b) {
186
+ ed(a, b) {
180
187
  this.b.columnFilterChanged(b.a);
181
188
  }
182
- c6(a, b) {
189
+ ee(a, b) {
183
190
  this.b.columnFilterChanging(b.a);
184
191
  }
185
- c4(a, b) {
192
+ ec(a, b) {
186
193
  if (this.b != null) {
187
194
  b.a = this.f.getColumn();
188
195
  this.b.cancelEditMode(false);
189
196
  }
190
197
  }
191
- bq(a, b, c) {
192
- super.bq(a, b, c);
193
- this.ck = c;
194
- this.cp.k = c;
198
+ cf(a, b, c) {
199
+ super.cf(a, b, c);
200
+ this.ds = c;
201
+ this.dx.k = c;
195
202
  if (c == 2) {
196
- this.ah.removeChild(this.cx);
197
- this.ah.removeChild(this.cw);
198
- this.cv.before(this.cw);
199
- this.cw.before(this.cx);
200
- if (this.cm == 1) {
201
- this.cw.setRawStyleProperty("margin", "0 5px 0 0");
202
- this.cp.l = this.ck;
203
+ this.ap.removeChild(this.d5);
204
+ this.ap.removeChild(this.d4);
205
+ this.d3.before(this.d4);
206
+ this.d4.before(this.d5);
207
+ if (this.du == 1) {
208
+ this.d4.setRawStyleProperty("margin", "0 5px 0 0");
209
+ this.dx.l = this.ds;
203
210
  }
204
211
  else {
205
- this.cw.setRawStyleProperty("margin", "0");
206
- this.cp.l = 0;
212
+ this.d4.setRawStyleProperty("margin", "0");
213
+ this.dx.l = 0;
207
214
  }
208
215
  }
209
216
  else {
210
- this.ah.removeChild(this.cx);
211
- this.ah.removeChild(this.cv);
212
- this.cw.before(this.cv);
213
- this.cw.before(this.cx);
214
- if (this.cm == 1) {
215
- this.cw.setRawStyleProperty("margin", "0 0 0 5px");
216
- this.cp.l = this.ck;
217
+ this.ap.removeChild(this.d5);
218
+ this.ap.removeChild(this.d3);
219
+ this.d4.before(this.d3);
220
+ this.d4.before(this.d5);
221
+ if (this.du == 1) {
222
+ this.d4.setRawStyleProperty("margin", "0 0 0 5px");
223
+ this.dx.l = this.ds;
217
224
  }
218
225
  else {
219
- this.cw.setRawStyleProperty("margin", "0");
220
- this.cp.l = 2;
226
+ this.d4.setRawStyleProperty("margin", "0");
227
+ this.dx.l = 2;
221
228
  }
222
229
  }
223
230
  }
224
- b7(a, b, c, d) {
225
- super.b7(a, b, c, d);
226
- this.cp.an = a;
227
- this.cp.ao = c;
231
+ c3(a, b, c, d) {
232
+ super.c3(a, b, c, d);
233
+ this.dx.an = a;
234
+ this.dx.ao = c;
228
235
  }
229
- c8() {
230
- if (this.cm == 2 || this.cm == 0) {
231
- if (this.ck == 2) {
232
- this.cp.l = 0;
236
+ eg() {
237
+ if (this.du == 2 || this.du == 0) {
238
+ if (this.ds == 2) {
239
+ this.dx.l = 0;
233
240
  }
234
241
  else {
235
- this.cp.l = 2;
242
+ this.dx.l = 2;
236
243
  }
237
244
  }
238
245
  else {
239
- this.cp.l = this.ck;
240
- if (this.ck == 2) {
241
- this.cw.setRawStyleProperty("margin", "0 5px 0 0");
246
+ this.dx.l = this.ds;
247
+ if (this.ds == 2) {
248
+ this.d4.setRawStyleProperty("margin", "0 5px 0 0");
242
249
  }
243
250
  else {
244
- this.cw.setRawStyleProperty("margin", "0 0 0 5px");
251
+ this.d4.setRawStyleProperty("margin", "0 0 0 5px");
245
252
  }
246
253
  }
247
254
  }
248
- c7() {
249
- switch (this.co) {
255
+ ef() {
256
+ switch (this.dw) {
250
257
  case 1:
251
- this.cp.ab = false;
252
- this.cp.br();
258
+ this.dx.ab = false;
259
+ this.dx.br();
253
260
  break;
254
261
  case 2:
255
- this.cp.ab = false;
262
+ this.dx.ab = false;
256
263
  break;
257
264
  case 3:
258
- this.cp.ab = true;
265
+ this.dx.ab = true;
259
266
  break;
260
267
  }
261
268
  }
262
- bs(a, b, c) {
263
- super.bs(a, b, c);
269
+ ch(a, b, c) {
270
+ super.ch(a, b, c);
264
271
  switch (a) {
265
272
  case "ColumnOptionsIconAlignment":
266
- this.c8();
273
+ this.eg();
267
274
  break;
268
275
  case "ColumnOptionsIconBehavior":
269
- this.c7();
276
+ this.ef();
270
277
  break;
271
278
  }
272
279
  }
@@ -274,25 +281,25 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
274
281
  if (e_.button == 2) {
275
282
  return;
276
283
  }
277
- let b = this.cp.ad(e_);
284
+ let b = this.dx.ad(e_);
278
285
  if (b) {
279
- this.ct = true;
286
+ this.d1 = true;
280
287
  return;
281
288
  }
282
289
  super.onContactStarted(e_, a);
283
290
  }
284
291
  onContactCompleted(e_, a) {
285
- if (!this.ct) {
292
+ if (!this.d1) {
286
293
  super.onContactCompleted(e_, a);
287
294
  }
288
- this.ct = false;
295
+ this.d1 = false;
289
296
  }
290
297
  detach() {
291
298
  super.detach();
292
- if (this.cp != null) {
299
+ if (this.dx != null) {
293
300
  }
294
301
  }
295
- get_x() {
302
+ get_ac() {
296
303
  return true;
297
304
  }
298
305
  }
@@ -23,59 +23,59 @@ export let TextHeaderCellPresenter = /*@__PURE__*/ (() => {
23
23
  b(a) {
24
24
  super.b(a);
25
25
  let b = a;
26
- if (a.a3) {
27
- if (a.a8(TextCellModel.mj)) {
28
- b.j3 = b.ml;
29
- this.d.cy.setRawText(b.j3);
26
+ if (a.a7) {
27
+ if (a.bc(TextCellModel.nw)) {
28
+ b.ku = b.ny;
29
+ this.d.c5(this.d.d6, b.ku);
30
30
  }
31
- if (a.a8(CellModel.g4)) {
32
- let c = this.d.cs.m;
33
- if (a.bp) {
34
- this.d.cs.m = false;
31
+ if (a.bc(CellModel.hg)) {
32
+ let c = this.d.d0.m;
33
+ if (a.bt) {
34
+ this.d.d0.m = false;
35
35
  }
36
- this.d.cs.b = a.n;
37
- if (a.bp) {
38
- this.d.cs.m = c;
36
+ this.d.d0.b = a.n;
37
+ if (a.bt) {
38
+ this.d.d0.m = c;
39
39
  }
40
40
  }
41
- if (a.a8(CellModel.g5)) {
42
- let d = this.d.cs.m;
43
- if (a.bp) {
44
- this.d.cs.m = false;
41
+ if (a.bc(CellModel.hh)) {
42
+ let d = this.d.d0.m;
43
+ if (a.bt) {
44
+ this.d.d0.m = false;
45
45
  }
46
- this.d.cs.a3 = a.me;
47
- if (a.bp) {
48
- this.d.cs.m = d;
46
+ this.d.d0.a3 = a.no;
47
+ if (a.bt) {
48
+ this.d.d0.m = d;
49
49
  }
50
50
  }
51
- if (a.a7("IsColumnOptionsEnabled")) {
52
- let e = b.mu;
51
+ if (a.bb("IsColumnOptionsEnabled")) {
52
+ let e = b.n7;
53
53
  if (e) {
54
54
  e = this.e();
55
55
  }
56
- this.d.cu = e;
57
- this.d.cw.setRawStyleProperty("display", e ? "inline-block" : "none");
58
- this.a.b9(a.he, (a.gm + a.go + a.e2 + a.e5));
56
+ this.d.d2 = e;
57
+ this.d.d4.setRawStyleProperty("display", e ? "inline-block" : "none");
58
+ this.a.c8(a.h2, (a.gy + a.g0 + a.fe + a.fh));
59
59
  }
60
- if (a.a7("SortIndicatorStyle")) {
61
- this.d.cs.f = b.ms;
60
+ if (a.bb("SortIndicatorStyle")) {
61
+ this.d.d0.f = b.n5;
62
62
  }
63
- if (a.a7("ColumnOptionsIconAlignment")) {
64
- this.d.cm = b.mo;
63
+ if (a.bb("ColumnOptionsIconAlignment")) {
64
+ this.d.du = b.n1;
65
65
  }
66
- if (a.a7("ColumnOptionsIconBehavior")) {
67
- this.d.co = b.mq;
66
+ if (a.bb("ColumnOptionsIconBehavior")) {
67
+ this.d.dw = b.n3;
68
68
  }
69
- if (a.a7("ColumnOptionsIconColor")) {
70
- this.d.cq.bw = b.m6;
69
+ if (a.bb("ColumnOptionsIconColor")) {
70
+ this.d.dy.bw = b.oj;
71
71
  }
72
- if (a.a7("Path") || (this.d.cq.n != null && this.d.cq.n.grid == null)) {
72
+ if (a.bb("Path") || (this.d.dy.n != null && this.d.dy.n.grid == null)) {
73
73
  let f = a.e.getColumn();
74
- if (f != this.d.cq.n) {
75
- this.d.cq.n = f;
74
+ if (f != this.d.dy.n) {
75
+ this.d.dy.n = f;
76
76
  }
77
77
  }
78
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cy, this.a);
78
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.d6, this.a);
79
79
  }
80
80
  }
81
81
  e() {
@@ -14,56 +14,56 @@ export let VerticalSeparatorCell = /*@__PURE__*/ (() => {
14
14
  class VerticalSeparatorCell extends GridCellBase {
15
15
  constructor(a) {
16
16
  super(a);
17
- this.cl = null;
18
- this.ck = null;
19
- this.cm = 0;
20
- this.cn = 0;
21
- this.cl = a.createElement("div");
22
- this.cl.setRawStyleProperty("position", "absolute");
23
- this.cl.setRawStyleProperty("pointer-events", "none");
24
- this.ah.append(this.cl);
17
+ this.dt = null;
18
+ this.ds = null;
19
+ this.du = 0;
20
+ this.dv = 0;
21
+ this.dt = a.createElement("div");
22
+ this.dt.setRawStyleProperty("position", "absolute");
23
+ this.dt.setRawStyleProperty("pointer-events", "none");
24
+ this.ap.append(this.dt);
25
25
  }
26
- b1(a, b, c, d, e) {
26
+ cu(a, b, c, d, e) {
27
27
  if (a == null) {
28
- if (this.ck != null) {
29
- this.ck.remove();
30
- this.ck = null;
28
+ if (this.ds != null) {
29
+ this.ds.remove();
30
+ this.ds = null;
31
31
  }
32
32
  }
33
33
  else {
34
- this.co();
35
- this.cm = b;
36
- this.cn = d;
34
+ this.dw();
35
+ this.du = b;
36
+ this.dv = d;
37
37
  }
38
- this.cp();
38
+ this.dx();
39
39
  }
40
- b9(a, b) {
41
- super.b9(a, b);
42
- this.cp();
40
+ c8(a, b) {
41
+ super.c8(a, b);
42
+ this.dx();
43
43
  }
44
- b0(a) {
45
- this.cl.setRawStyleProperty("background-color", a.colorString);
44
+ ct(a) {
45
+ this.dt.setRawStyleProperty("background-color", a.colorString);
46
46
  }
47
- cp() {
48
- if (this.ck != null) {
49
- this.cl.setRawStyleProperty("height", "100%");
50
- this.cl.setRawStyleProperty("width", this.ah.width() - (this.cm + this.cn) + "px");
51
- this.cl.setRawStyleProperty("left", intDivide(this.ah.width(), 2) + "px");
52
- this.ck.setRawStyleProperty("width", "100%");
53
- this.ck.setRawStyleProperty("height", "100%");
47
+ dx() {
48
+ if (this.ds != null) {
49
+ this.dt.setRawStyleProperty("height", "100%");
50
+ this.dt.setRawStyleProperty("width", this.ap.width() - (this.du + this.dv) + "px");
51
+ this.dt.setRawStyleProperty("left", intDivide(this.ap.width(), 2) + "px");
52
+ this.ds.setRawStyleProperty("width", "100%");
53
+ this.ds.setRawStyleProperty("height", "100%");
54
54
  }
55
55
  else {
56
- this.cl.setRawStyleProperty("height", "100%");
57
- this.cl.setRawStyleProperty("width", this.ah.width() + "px");
58
- this.cl.setRawStyleProperty("left", "0px");
56
+ this.dt.setRawStyleProperty("height", "100%");
57
+ this.dt.setRawStyleProperty("width", this.ap.width() + "px");
58
+ this.dt.setRawStyleProperty("left", "0px");
59
59
  }
60
60
  }
61
- co() {
62
- if (this.ck == null) {
63
- this.ck = this.ae.createElement("div");
64
- this.ck.setRawStyleProperty("position", "absolute");
65
- this.ck.setRawStyleProperty("background-color", "rgba(0,0,0,0)");
66
- this.ah.getNativeElement().insertBefore(this.ck.getNativeElement(), this.cl.getNativeElement());
61
+ dw() {
62
+ if (this.ds == null) {
63
+ this.ds = this.ak.createElement("div");
64
+ this.ds.setRawStyleProperty("position", "absolute");
65
+ this.ds.setRawStyleProperty("background-color", "rgba(0,0,0,0)");
66
+ this.ap.getNativeElement().insertBefore(this.ds.getNativeElement(), this.dt.getNativeElement());
67
67
  }
68
68
  }
69
69
  }