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
@@ -25,124 +25,124 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
25
25
  __extends(FilterCell, _super);
26
26
  function FilterCell(a) {
27
27
  var _this = _super.call(this, a) || this;
28
- _this.c7 = null;
29
- _this.c9 = null;
30
- _this.c5 = null;
31
- _this.c6 = null;
32
- _this.c8 = null;
33
- _this.cy = null;
34
- _this.cx = null;
35
- _this.cn = null;
36
- _this.co = null;
37
- _this.cz = null;
38
- _this.cv = null;
39
- _this.c2 = true;
40
- _this.cp = 0;
41
- _this.c3 = true;
42
- _this.ct = null;
43
- _this.c0 = null;
44
- _this.da = null;
45
- _this.ck = null;
46
- _this.d9 = null;
47
- _this.c7 = a.createElement("div");
48
- _this.c7.setStyleProperty("display", "flex");
49
- _this.c7.setStyleProperty("flex-direction", "row");
50
- _this.c7.setStyleProperty("align-items", "center");
51
- _this.c7.setStyleProperty("height", "100%");
52
- _this.ah.append(_this.c7);
53
- _this.c9 = a.createElement("div");
54
- _this.c5 = a.getSubRenderer(_this.c9);
55
- _this.co = new ComparisonOperatorSelector();
56
- _this.co.ej(_this.c5);
57
- _this.c9.setStyleProperty("width", "24px");
58
- _this.c9.setStyleProperty("height", "24px");
59
- _this.c7.append(_this.c9);
60
- _this.c6 = a.createElement("div");
61
- _this.c6.setStyleProperty("display", "flex");
62
- _this.c6.setStyleProperty("flex", "1");
63
- _this.c6.setStyleProperty("margin", "0 4px");
64
- _this.c7.append(_this.c6);
65
- _this.c8 = a.createElement("div");
66
- _this.c8.setStyleProperty("transform", "scale(0.75)");
67
- _this.cz = new XIcon();
68
- _this.cz.provideContainer(a.getSubRenderer(_this.c8));
69
- _this.c7.append(_this.c8);
70
- _this.ds();
28
+ _this.ef = null;
29
+ _this.eh = null;
30
+ _this.ed = null;
31
+ _this.ee = null;
32
+ _this.eg = null;
33
+ _this.d6 = null;
34
+ _this.d5 = null;
35
+ _this.dv = null;
36
+ _this.dw = null;
37
+ _this.d7 = null;
38
+ _this.d3 = null;
39
+ _this.ea = true;
40
+ _this.dx = 0;
41
+ _this.eb = true;
42
+ _this.d1 = null;
43
+ _this.d8 = null;
44
+ _this.ei = null;
45
+ _this.ds = null;
46
+ _this.fg = null;
47
+ _this.ef = a.createElement("div");
48
+ _this.ef.setStyleProperty("display", "flex");
49
+ _this.ef.setStyleProperty("flex-direction", "row");
50
+ _this.ef.setStyleProperty("align-items", "center");
51
+ _this.ef.setStyleProperty("height", "100%");
52
+ _this.ap.append(_this.ef);
53
+ _this.eh = a.createElement("div");
54
+ _this.ed = a.getSubRenderer(_this.eh);
55
+ _this.dw = new ComparisonOperatorSelector();
56
+ _this.dw.ej(_this.ed);
57
+ _this.eh.setStyleProperty("width", "24px");
58
+ _this.eh.setStyleProperty("height", "24px");
59
+ _this.ef.append(_this.eh);
60
+ _this.ee = a.createElement("div");
61
+ _this.ee.setStyleProperty("display", "flex");
62
+ _this.ee.setStyleProperty("flex", "1");
63
+ _this.ee.setStyleProperty("margin", "0 4px");
64
+ _this.ef.append(_this.ee);
65
+ _this.eg = a.createElement("div");
66
+ _this.eg.setStyleProperty("transform", "scale(0.75)");
67
+ _this.d7 = new XIcon();
68
+ _this.d7.provideContainer(a.getSubRenderer(_this.eg));
69
+ _this.ef.append(_this.eg);
70
+ _this.ez();
71
71
  return _this;
72
72
  }
73
- FilterCell.prototype.cw = function (a) {
74
- switch (this.cq) {
73
+ FilterCell.prototype.d4 = function (a) {
74
+ switch (this.dy) {
75
75
  case 0:
76
76
  case 1:
77
- if (this.cy == null) {
78
- this.cy = new TextEditorView(this.ae, this.f.getTheme(), this.b);
77
+ if (this.d6 == null) {
78
+ this.d6 = new TextEditorView(this.ak, this.f.getTheme(), this.b);
79
79
  }
80
- return this.cy;
80
+ return this.d6;
81
81
  case 2:
82
- if (this.cx == null) {
83
- this.cx = new NumericEditorView(this.ae, this.f.getTheme(), this.b);
82
+ if (this.d5 == null) {
83
+ this.d5 = new NumericEditorView(this.ak, this.f.getTheme(), this.b);
84
84
  }
85
- return this.cx;
85
+ return this.d5;
86
86
  case 3:
87
- if (this.cn == null) {
88
- this.cn = new DateEditorView(this.ae, this.f.getTheme(), this.b);
87
+ if (this.dv == null) {
88
+ this.dv = new DateEditorView(this.ak, this.f.getTheme(), this.b);
89
89
  }
90
- return this.cn;
90
+ return this.dv;
91
91
  default: return null;
92
92
  }
93
93
  };
94
- FilterCell.prototype.d4 = function () {
95
- this.c6.removeChildren();
94
+ FilterCell.prototype.fb = function () {
95
+ this.ee.removeChildren();
96
96
  };
97
- FilterCell.prototype.dq = function () {
98
- this.c6.append(this.cv.container);
97
+ FilterCell.prototype.ex = function () {
98
+ this.ee.append(this.d3.container);
99
99
  };
100
- FilterCell.prototype.dx = function () {
101
- if (this.ah.getChildCount() == 0) {
102
- this.ah.append(this.c7);
100
+ FilterCell.prototype.e4 = function () {
101
+ if (this.ap.getChildCount() == 0) {
102
+ this.ap.append(this.ef);
103
103
  }
104
104
  };
105
- FilterCell.prototype.dv = function () {
106
- if (this.ah.getChildCount() > 0) {
107
- this.ah.removeChildren();
105
+ FilterCell.prototype.e2 = function () {
106
+ if (this.ap.getChildCount() > 0) {
107
+ this.ap.removeChildren();
108
108
  }
109
109
  };
110
- FilterCell.prototype.bs = function (a, b, c) {
111
- _super.prototype.bs.call(this, a, b, c);
112
- this.d3(a, b, c);
110
+ FilterCell.prototype.ch = function (a, b, c) {
111
+ _super.prototype.ch.call(this, a, b, c);
112
+ this.fa(a, b, c);
113
113
  };
114
- FilterCell.prototype.br = function () {
115
- this.d1();
114
+ FilterCell.prototype.cg = function () {
115
+ this.e8();
116
116
  };
117
- FilterCell.prototype.d5 = function (a, b, c, d) {
117
+ FilterCell.prototype.fc = function (a, b, c, d) {
118
118
  if (this.d != null) {
119
- var e = this.c9.getNativeElement();
119
+ var e = this.eh.getNativeElement();
120
120
  this.d.update("SelectorTop", (e.offsetTop));
121
121
  this.d.update("SelectorLeft", (e.offsetLeft));
122
- var f = this.c6.getNativeElement();
122
+ var f = this.ee.getNativeElement();
123
123
  this.d.update("EditorTop", (f.offsetTop));
124
124
  this.d.update("EditorLeft", (f.offsetLeft));
125
- var g = this.c8.getNativeElement();
125
+ var g = this.eg.getNativeElement();
126
126
  this.d.update("ClearIconTop", (g.offsetTop));
127
127
  this.d.update("ClearIconLeft", (g.offsetLeft));
128
128
  }
129
129
  };
130
- FilterCell.prototype.ds = function () {
131
- var a = this.co;
132
- a.valueChanged = delegateCombine(a.valueChanged, runOn(this, this.d2));
133
- this.cz.svgPath = FilterCell.dc;
134
- this.d7(false);
135
- var b = this.cz;
136
- b.clicked = delegateCombine(b.clicked, runOn(this, this.dr));
130
+ FilterCell.prototype.ez = function () {
131
+ var a = this.dw;
132
+ a.valueChanged = delegateCombine(a.valueChanged, runOn(this, this.e9));
133
+ this.d7.svgPath = FilterCell.ek;
134
+ this.fe(false);
135
+ var b = this.d7;
136
+ b.clicked = delegateCombine(b.clicked, runOn(this, this.ey));
137
137
  };
138
- FilterCell.prototype.d1 = function () {
139
- if (this.cv == null) {
140
- this.dw();
138
+ FilterCell.prototype.e8 = function () {
139
+ if (this.d3 == null) {
140
+ this.e3();
141
141
  }
142
142
  };
143
- FilterCell.prototype.cr = function () {
143
+ FilterCell.prototype.dz = function () {
144
144
  var a = 1;
145
- switch (this.cm) {
145
+ switch (this.du) {
146
146
  case 11:
147
147
  case 2:
148
148
  case 0:
@@ -161,7 +161,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
161
161
  a = 2;
162
162
  break;
163
163
  }
164
- switch (this.co.b) {
164
+ switch (this.dw.b) {
165
165
  case 6:
166
166
  case 8:
167
167
  case 7:
@@ -175,9 +175,9 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
175
175
  a = 2;
176
176
  break;
177
177
  }
178
- if (this.co.b == 44) {
179
- if (this.cu != null && this.cu.count > 0) {
180
- var b = this.cu._inner[this.co.x];
178
+ if (this.dw.b == 44) {
179
+ if (this.d2 != null && this.d2.count > 0) {
180
+ var b = this.d2._inner[this.dw.x];
181
181
  switch (b.b) {
182
182
  case 0:
183
183
  case 1:
@@ -194,168 +194,168 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
194
194
  }
195
195
  return a;
196
196
  };
197
- FilterCell.prototype.d7 = function (a) {
198
- if (this.cz != null) {
199
- this.cz.disabled = !a;
200
- this.cz.an = a ? 1 : 0.3;
197
+ FilterCell.prototype.fe = function (a) {
198
+ if (this.d7 != null) {
199
+ this.d7.disabled = !a;
200
+ this.d7.a3 = a ? 1 : 0.3;
201
201
  }
202
202
  };
203
- FilterCell.prototype.dl = function (a) {
204
- if (!this.c2) {
203
+ FilterCell.prototype.et = function (a) {
204
+ if (!this.ea) {
205
205
  return;
206
206
  }
207
- if (this.co.b == 44) {
208
- if (this.cu != null && this.cu.count > 0) {
209
- this.b.applyCustomFilter(this.co.ae, this.co.x, a);
207
+ if (this.dw.b == 44) {
208
+ if (this.d2 != null && this.d2.count > 0) {
209
+ this.b.applyCustomFilter(this.dw.ae, this.dw.x, a);
210
210
  }
211
211
  }
212
212
  else {
213
- this.b.applyFilter(this.co.b, a);
213
+ this.b.applyFilter(this.dw.b, a);
214
214
  }
215
215
  };
216
- FilterCell.prototype.dm = function () {
217
- if (!this.c2) {
216
+ FilterCell.prototype.eu = function () {
217
+ if (!this.ea) {
218
218
  return;
219
219
  }
220
220
  if (this.b != null) {
221
221
  this.b.clearFilter();
222
222
  }
223
223
  };
224
- FilterCell.prototype.d3 = function (a, b, c) {
224
+ FilterCell.prototype.fa = function (a, b, c) {
225
225
  switch (a) {
226
226
  case "DataType":
227
- this.du();
227
+ this.e1();
228
228
  break;
229
229
  case "EditorType":
230
- this.dw();
230
+ this.e3();
231
231
  break;
232
232
  case "FontInfo":
233
- this.d0();
233
+ this.e7();
234
234
  break;
235
235
  case "Filter":
236
- this.dy();
236
+ this.e5();
237
237
  break;
238
238
  case "FilterOperands":
239
- this.dt();
239
+ this.e0();
240
240
  break;
241
241
  case "FilterValue":
242
- this.dz();
242
+ this.e6();
243
243
  break;
244
244
  case "IsEditorEnabled":
245
- this.cv.isEnabled = this.c4;
245
+ this.d3.isEnabled = this.ec;
246
246
  break;
247
247
  case "TextColor":
248
- this.co.eq = this.ea;
249
- this.cz.fill = this.ea;
250
- this.cv.textColor = this.ea;
248
+ this.dw.eq = this.fh;
249
+ this.d7.fill = this.fh;
250
+ this.d3.textColor = this.fh;
251
251
  break;
252
252
  }
253
253
  };
254
- FilterCell.prototype.dy = function () {
255
- this.c2 = false;
256
- if (this.cv != null) {
257
- if (this.cl != null) {
258
- if (typeCast(ColumnComparisonFilterCondition.$, this.cl) !== null) {
259
- var a = typeCast(ColumnComparisonFilterCondition.$, this.cl);
260
- this.co.b = a.operator;
261
- var b = this.cv.getEditorValue();
254
+ FilterCell.prototype.e5 = function () {
255
+ this.ea = false;
256
+ if (this.d3 != null) {
257
+ if (this.dt != null) {
258
+ if (typeCast(ColumnComparisonFilterCondition.$, this.dt) !== null) {
259
+ var a = typeCast(ColumnComparisonFilterCondition.$, this.dt);
260
+ this.dw.b = a.operator;
261
+ var b = this.d3.getEditorValue();
262
262
  if (b != null) {
263
263
  if (!Base.equalsStatic(b, a.value)) {
264
- this.cv.value = a.value;
265
- this.db = a.value;
264
+ this.d3.value = a.value;
265
+ this.ej = a.value;
266
266
  }
267
267
  }
268
268
  else {
269
- this.cv.value = a.value;
270
- this.db = a.value;
269
+ this.d3.value = a.value;
270
+ this.ej = a.value;
271
271
  }
272
272
  }
273
- else if (typeCast(ColumnCustomFilterCondition.$, this.cl) !== null) {
274
- var c = typeCast(ColumnCustomFilterCondition.$, this.cl);
275
- this.co.ek(c.id, c.index);
276
- var d = this.cv.getEditorValue();
273
+ else if (typeCast(ColumnCustomFilterCondition.$, this.dt) !== null) {
274
+ var c = typeCast(ColumnCustomFilterCondition.$, this.dt);
275
+ this.dw.ek(c.id, c.index);
276
+ var d = this.d3.getEditorValue();
277
277
  if (d != null) {
278
278
  if (!Base.equalsStatic(d, c.value)) {
279
- this.cv.value = c.value;
280
- this.db = c.value;
279
+ this.d3.value = c.value;
280
+ this.ej = c.value;
281
281
  }
282
282
  }
283
283
  else {
284
- this.cv.value = c.value;
285
- this.db = c.value;
284
+ this.d3.value = c.value;
285
+ this.ej = c.value;
286
286
  }
287
287
  }
288
- else if (!(typeCast(ColumnCustomFilterCondition.$, this.cl) !== null)) {
289
- this.db = null;
290
- this.cv.value = this.db;
291
- this.cv.setEditorValue(this.db);
288
+ else if (!(typeCast(ColumnCustomFilterCondition.$, this.dt) !== null)) {
289
+ this.ej = null;
290
+ this.d3.value = this.ej;
291
+ this.d3.setEditorValue(this.ej);
292
292
  }
293
293
  }
294
294
  else {
295
- this.db = null;
296
- this.cv.value = this.db;
297
- this.cv.setEditorValue(this.db);
298
- if (!this.c4) {
299
- this.co.b = 0;
295
+ this.ej = null;
296
+ this.d3.value = this.ej;
297
+ this.d3.setEditorValue(this.ej);
298
+ if (!this.ec) {
299
+ this.dw.b = 0;
300
300
  }
301
301
  }
302
302
  }
303
- this.c2 = true;
303
+ this.ea = true;
304
304
  };
305
- FilterCell.prototype.dt = function () {
306
- this.co.d7();
307
- for (var a = 0; a < this.cu.count; a++) {
308
- this.co.d1(this.cu._inner[a].e, this.cu._inner[a].f, this.cu._inner[a].g, a);
305
+ FilterCell.prototype.e0 = function () {
306
+ this.dw.d7();
307
+ for (var a = 0; a < this.d2.count; a++) {
308
+ this.dw.d1(this.d2._inner[a].e, this.d2._inner[a].f, this.d2._inner[a].g, a);
309
309
  }
310
310
  };
311
- FilterCell.prototype.du = function () {
312
- if (this.cm == 11) {
313
- this.c4 = false;
311
+ FilterCell.prototype.e1 = function () {
312
+ if (this.du == 11) {
313
+ this.ec = false;
314
314
  }
315
- this.cq = this.cr();
315
+ this.dy = this.dz();
316
316
  };
317
- FilterCell.prototype.dz = function () {
318
- this.d7(this.db != null);
319
- if (this.db == null || Base.equalsStatic(this.db, "")) {
320
- this.dm();
317
+ FilterCell.prototype.e6 = function () {
318
+ this.fe(this.ej != null);
319
+ if (this.ej == null || Base.equalsStatic(this.ej, "")) {
320
+ this.eu();
321
321
  }
322
322
  else {
323
- this.dl(this.db);
323
+ this.et(this.ej);
324
324
  }
325
325
  if (this.d != null) {
326
- this.d.update("FilterValue", this.db);
326
+ this.d.update("FilterValue", this.ej);
327
327
  }
328
328
  };
329
- FilterCell.prototype.dw = function () {
330
- if (this.cv != null) {
331
- this.cv.detachEvents();
332
- var a = this.cv;
333
- a.valueProvided = delegateRemove(a.valueProvided, runOn(this, this.d6));
334
- }
335
- this.d4();
336
- this.cv = this.cw(this.cq);
337
- this.cv.onEditStarted();
338
- if (this.cv != null) {
339
- this.cv.attachEvents();
340
- this.cv.setFont(this.c1);
341
- this.cv.isEnabled = this.c4;
342
- this.cv.focusOnValueChanged = false;
343
- this.cv.showClearButton = false;
344
- var b = this.cv;
345
- b.valueProvided = delegateCombine(b.valueProvided, runOn(this, this.d6));
346
- this.dq();
347
- }
348
- this.dr(null, null);
329
+ FilterCell.prototype.e3 = function () {
330
+ if (this.d3 != null) {
331
+ this.d3.detachEvents();
332
+ var a = this.d3;
333
+ a.valueProvided = delegateRemove(a.valueProvided, runOn(this, this.fd));
334
+ }
335
+ this.fb();
336
+ this.d3 = this.d4(this.dy);
337
+ this.d3.onEditStarted();
338
+ if (this.d3 != null) {
339
+ this.d3.attachEvents();
340
+ this.d3.setFont(this.d9);
341
+ this.d3.isEnabled = this.ec;
342
+ this.d3.focusOnValueChanged = false;
343
+ this.d3.showClearButton = false;
344
+ var b = this.d3;
345
+ b.valueProvided = delegateCombine(b.valueProvided, runOn(this, this.fd));
346
+ this.ex();
347
+ }
348
+ this.ey(null, null);
349
349
  };
350
- FilterCell.prototype.d0 = function () {
351
- if (this.c1 != null) {
352
- if (this.cv != null) {
353
- this.cv.setFont(this.c1);
350
+ FilterCell.prototype.e7 = function () {
351
+ if (this.d9 != null) {
352
+ if (this.d3 != null) {
353
+ this.d3.setFont(this.d9);
354
354
  }
355
355
  }
356
356
  };
357
- FilterCell.prototype.d2 = function (a, b) {
358
- this.cq = this.cr();
357
+ FilterCell.prototype.e9 = function (a, b) {
358
+ this.dy = this.dz();
359
359
  switch (b.newValue) {
360
360
  case 40:
361
361
  case 11:
@@ -383,51 +383,51 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
383
383
  case 10:
384
384
  case 33:
385
385
  case 20:
386
- this.c4 = false;
386
+ this.ec = false;
387
387
  break;
388
388
  default:
389
- this.c4 = true;
389
+ this.ec = true;
390
390
  break;
391
391
  }
392
- if (this.cm == 11) {
393
- this.c4 = false;
392
+ if (this.du == 11) {
393
+ this.ec = false;
394
394
  }
395
395
  if (b.newValue == 44) {
396
- if (this.cu != null && this.cu.count > 0) {
397
- var c = this.cu._inner[this.co.x];
398
- this.c4 = c.d;
396
+ if (this.d2 != null && this.d2.count > 0) {
397
+ var c = this.d2._inner[this.dw.x];
398
+ this.ec = c.d;
399
399
  }
400
400
  }
401
- if (!this.c4) {
402
- this.dl(null);
403
- this.d7(true);
401
+ if (!this.ec) {
402
+ this.et(null);
403
+ this.fe(true);
404
404
  }
405
- else if (this.db != null && !Base.equalsStatic(this.db, "")) {
406
- this.dl(this.db);
405
+ else if (this.ej != null && !Base.equalsStatic(this.ej, "")) {
406
+ this.et(this.ej);
407
407
  }
408
408
  else {
409
- this.dm();
410
- this.d7(false);
409
+ this.eu();
410
+ this.fe(false);
411
411
  }
412
412
  if (this.d != null) {
413
- this.d.update("OperatorType", enumGetBox(ColumnComparisonConditionOperatorType_$type, this.co.b));
413
+ this.d.update("OperatorType", enumGetBox(ColumnComparisonConditionOperatorType_$type, this.dw.b));
414
414
  }
415
415
  };
416
- FilterCell.prototype.dr = function (a, b) {
416
+ FilterCell.prototype.ey = function (a, b) {
417
417
  if (b != null) {
418
- if (!this.c4) {
419
- this.co.b = 0;
420
- this.dm();
418
+ if (!this.ec) {
419
+ this.dw.b = 0;
420
+ this.eu();
421
421
  }
422
422
  }
423
- this.db = null;
424
- if (this.cv != null) {
425
- this.cv.setEditorValue(null);
426
- this.cv.value = null;
423
+ this.ej = null;
424
+ if (this.d3 != null) {
425
+ this.d3.setEditorValue(null);
426
+ this.d3.value = null;
427
427
  }
428
428
  };
429
- FilterCell.prototype.d6 = function (a, b, c) {
430
- if (this.cq == 2) {
429
+ FilterCell.prototype.fd = function (a, b, c) {
430
+ if (this.dy == 2) {
431
431
  if (typeof b === 'string') {
432
432
  var d_1;
433
433
  if (((function () { var e = tryParseNumber(b, d_1); d_1 = e.p1; return e.ret; })())) {
@@ -435,144 +435,144 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
435
435
  }
436
436
  }
437
437
  }
438
- this.db = b;
438
+ this.ej = b;
439
439
  };
440
- FilterCell.prototype.d8 = function (a, b, c, d) {
441
- this.d5(a, b, c, d);
440
+ FilterCell.prototype.ff = function (a, b, c, d) {
441
+ this.fc(a, b, c, d);
442
442
  };
443
- FilterCell.prototype.cs = function (a, b) {
443
+ FilterCell.prototype.d0 = function (a, b) {
444
444
  if (a != null) {
445
- for (var c = 0; c < this.cu.count; c++) {
446
- if (this.cu._inner[c].g == a) {
447
- return this.cu._inner[c];
445
+ for (var c = 0; c < this.d2.count; c++) {
446
+ if (this.d2._inner[c].g == a) {
447
+ return this.d2._inner[c];
448
448
  }
449
449
  }
450
450
  }
451
- if (b >= 0 && b < this.cu.count) {
452
- return this.cu._inner[b];
451
+ if (b >= 0 && b < this.d2.count) {
452
+ return this.d2._inner[b];
453
453
  }
454
454
  return null;
455
455
  };
456
- FilterCell.prototype.dp = function () {
457
- this.dx();
456
+ FilterCell.prototype.ew = function () {
457
+ this.e4();
458
458
  };
459
- FilterCell.prototype.dn = function () {
460
- this.dv();
459
+ FilterCell.prototype.ev = function () {
460
+ this.e2();
461
461
  };
462
- Object.defineProperty(FilterCell.prototype, "cm", {
462
+ Object.defineProperty(FilterCell.prototype, "du", {
463
463
  get: function () {
464
- return this.co.d;
464
+ return this.dw.d;
465
465
  },
466
466
  set: function (a) {
467
- var b = this.co.d;
468
- this.co.d = a;
467
+ var b = this.dw.d;
468
+ this.dw.d = a;
469
469
  if (b != a) {
470
- this.bs("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.co.d));
470
+ this.ch("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.dw.d));
471
471
  }
472
472
  },
473
473
  enumerable: false,
474
474
  configurable: true
475
475
  });
476
- Object.defineProperty(FilterCell.prototype, "cq", {
476
+ Object.defineProperty(FilterCell.prototype, "dy", {
477
477
  get: function () {
478
- return this.cp;
478
+ return this.dx;
479
479
  },
480
480
  set: function (a) {
481
- var b = this.cp;
482
- this.cp = a;
481
+ var b = this.dx;
482
+ this.dx = a;
483
483
  if (b != a) {
484
- this.bs("EditorType", enumGetBox(EditorType_$type, b), enumGetBox(EditorType_$type, this.cp));
484
+ this.ch("EditorType", enumGetBox(EditorType_$type, b), enumGetBox(EditorType_$type, this.dx));
485
485
  }
486
486
  },
487
487
  enumerable: false,
488
488
  configurable: true
489
489
  });
490
- Object.defineProperty(FilterCell.prototype, "c4", {
490
+ Object.defineProperty(FilterCell.prototype, "ec", {
491
491
  get: function () {
492
- return this.c3;
492
+ return this.eb;
493
493
  },
494
494
  set: function (a) {
495
- var b = this.c3;
496
- this.c3 = a;
497
- if (b != this.c3) {
498
- this.bs("IsEditorEnabled", b, this.c3);
495
+ var b = this.eb;
496
+ this.eb = a;
497
+ if (b != this.eb) {
498
+ this.ch("IsEditorEnabled", b, this.eb);
499
499
  }
500
500
  },
501
501
  enumerable: false,
502
502
  configurable: true
503
503
  });
504
- Object.defineProperty(FilterCell.prototype, "cu", {
504
+ Object.defineProperty(FilterCell.prototype, "d2", {
505
505
  get: function () {
506
- return this.ct;
506
+ return this.d1;
507
507
  },
508
508
  set: function (a) {
509
- var b = this.ct;
510
- this.ct = a;
511
- if (this.ct != null) {
512
- this.bs("FilterOperands", b, this.ct);
509
+ var b = this.d1;
510
+ this.d1 = a;
511
+ if (this.d1 != null) {
512
+ this.ch("FilterOperands", b, this.d1);
513
513
  }
514
514
  },
515
515
  enumerable: false,
516
516
  configurable: true
517
517
  });
518
- Object.defineProperty(FilterCell.prototype, "c1", {
518
+ Object.defineProperty(FilterCell.prototype, "d9", {
519
519
  get: function () {
520
- return this.c0;
520
+ return this.d8;
521
521
  },
522
522
  set: function (a) {
523
- var b = this.c0;
524
- this.c0 = a;
525
- if (b != this.c0) {
526
- this.bs("FontInfo", b, this.c0);
523
+ var b = this.d8;
524
+ this.d8 = a;
525
+ if (b != this.d8) {
526
+ this.ch("FontInfo", b, this.d8);
527
527
  }
528
528
  },
529
529
  enumerable: false,
530
530
  configurable: true
531
531
  });
532
- Object.defineProperty(FilterCell.prototype, "db", {
532
+ Object.defineProperty(FilterCell.prototype, "ej", {
533
533
  get: function () {
534
- return this.da;
534
+ return this.ei;
535
535
  },
536
536
  set: function (a) {
537
- var b = this.da;
538
- this.da = a;
539
- if (b != this.da) {
540
- this.bs("FilterValue", b, this.da);
537
+ var b = this.ei;
538
+ this.ei = a;
539
+ if (b != this.ei) {
540
+ this.ch("FilterValue", b, this.ei);
541
541
  }
542
542
  },
543
543
  enumerable: false,
544
544
  configurable: true
545
545
  });
546
- Object.defineProperty(FilterCell.prototype, "cl", {
546
+ Object.defineProperty(FilterCell.prototype, "dt", {
547
547
  get: function () {
548
- return this.ck;
548
+ return this.ds;
549
549
  },
550
550
  set: function (a) {
551
- var b = this.ck;
552
- this.ck = a;
551
+ var b = this.ds;
552
+ this.ds = a;
553
553
  if (b != a) {
554
- this.bs("Filter", b, this.ck);
554
+ this.ch("Filter", b, this.ds);
555
555
  }
556
556
  },
557
557
  enumerable: false,
558
558
  configurable: true
559
559
  });
560
- Object.defineProperty(FilterCell.prototype, "ea", {
560
+ Object.defineProperty(FilterCell.prototype, "fh", {
561
561
  get: function () {
562
- return this.d9;
562
+ return this.fg;
563
563
  },
564
564
  set: function (a) {
565
- var b = this.d9;
566
- this.d9 = a;
567
- if (b != this.d9) {
568
- this.bs("TextColor", b, this.d9);
565
+ var b = this.fg;
566
+ this.fg = a;
567
+ if (b != this.fg) {
568
+ this.ch("TextColor", b, this.fg);
569
569
  }
570
570
  },
571
571
  enumerable: false,
572
572
  configurable: true
573
573
  });
574
574
  FilterCell.$t = markType(FilterCell, 'FilterCell', GridCellBase.$);
575
- FilterCell.dc = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
575
+ FilterCell.ek = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
576
576
  return FilterCell;
577
577
  }(GridCellBase));
578
578
  export { FilterCell };