igniteui-webcomponents-data-grids 6.0.1 → 6.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 (241) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +12298 -10495
  2. package/bundles/igniteui-webcomponents-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 +8409 -7998
  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 +308 -308
  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 +11 -11
  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 +326 -205
  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 +8 -8
  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/TextIconSetConditionalStyle.js +14 -9
  74. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  75. package/esm2015/lib/igc-cell-info.js +301 -190
  76. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  77. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  78. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igc-data-grid-column-component.js +284 -160
  80. package/esm2015/lib/igc-data-grid-component.js +64 -4
  81. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  83. package/esm2015/lib/igc-definition-base-component.js +66 -65
  84. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  87. package/esm2015/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igc-grid-conditional-style-font-info-component.js +214 -0
  89. package/esm2015/lib/igc-grid-conditional-style-font-info-module.js +16 -0
  90. package/esm2015/lib/igc-grid-conditional-style-property-component.js +101 -35
  91. package/esm2015/lib/igc-header-component.js +24 -24
  92. package/esm2015/lib/igc-image-cell-info.js +6 -6
  93. package/esm2015/lib/igc-image-column-component.js +12 -12
  94. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  96. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igc-section-header-component.js +24 -24
  98. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igc-summary-row-component.js +24 -24
  100. package/esm2015/lib/igc-template-cell-info.js +2 -2
  101. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igc-text-cell-info.js +2 -2
  103. package/esm2015/lib/igc-text-column-component.js +9 -9
  104. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +4 -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 +8205 -7695
  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 +11 -11
  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 +343 -194
  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 +8 -8
  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/TextIconSetConditionalStyle.js +14 -9
  177. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  178. package/esm5/lib/igc-cell-info.js +349 -190
  179. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  180. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  181. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igc-data-grid-column-component.js +332 -160
  183. package/esm5/lib/igc-data-grid-component.js +68 -4
  184. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igc-date-time-column-component.js +23 -23
  186. package/esm5/lib/igc-definition-base-component.js +66 -65
  187. package/esm5/lib/igc-editor-cell-info.js +23 -23
  188. package/esm5/lib/igc-filter-cell-info.js +26 -26
  189. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  190. package/esm5/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igc-grid-conditional-style-font-info-component.js +232 -0
  192. package/esm5/lib/igc-grid-conditional-style-font-info-module.js +20 -0
  193. package/esm5/lib/igc-grid-conditional-style-property-component.js +128 -34
  194. package/esm5/lib/igc-header-component.js +24 -24
  195. package/esm5/lib/igc-image-cell-info.js +6 -6
  196. package/esm5/lib/igc-image-column-component.js +12 -12
  197. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igc-numeric-column-component.js +35 -35
  199. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igc-section-header-component.js +24 -24
  201. package/esm5/lib/igc-summary-cell-info.js +9 -9
  202. package/esm5/lib/igc-summary-row-component.js +24 -24
  203. package/esm5/lib/igc-template-cell-info.js +2 -2
  204. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igc-text-cell-info.js +2 -2
  206. package/esm5/lib/igc-text-column-component.js +9 -9
  207. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +4 -0
  209. package/fesm2015/igniteui-webcomponents-data-grids.js +12290 -10806
  210. package/fesm5/igniteui-webcomponents-data-grids.js +12295 -10497
  211. package/lib/ColumnFilterCondition_combined.d.ts +1999 -1901
  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/GridConditionalStyleProperty.d.ts +84 -61
  219. package/lib/ImageCell.d.ts +20 -20
  220. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  221. package/lib/NumericCell.d.ts +2 -1
  222. package/lib/SectionHeaderCell.d.ts +4 -4
  223. package/lib/SummaryCell.d.ts +11 -11
  224. package/lib/TemplateCell.d.ts +6 -6
  225. package/lib/TemplateHeader.d.ts +3 -3
  226. package/lib/TemplateHeaderCell.d.ts +3 -3
  227. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  228. package/lib/TemplateSectionHeader.d.ts +2 -2
  229. package/lib/TextCell.d.ts +10 -8
  230. package/lib/TextCellDecoration.d.ts +26 -0
  231. package/lib/TextHeaderCell.d.ts +37 -35
  232. package/lib/VerticalSeparatorCell.d.ts +9 -9
  233. package/lib/igc-cell-info.d.ts +58 -0
  234. package/lib/igc-data-grid-column-component.d.ts +62 -1
  235. package/lib/igc-data-grid-component.d.ts +15 -1
  236. package/lib/igc-definition-base-component.d.ts +1 -1
  237. package/lib/igc-grid-conditional-style-font-info-component.d.ts +44 -0
  238. package/lib/igc-grid-conditional-style-font-info-module.d.ts +3 -0
  239. package/lib/igc-grid-conditional-style-property-component.d.ts +17 -2
  240. package/package.json +41 -41
  241. package/public_api.d.ts +4 -0
@@ -15,81 +15,88 @@ import { enumGetBox, runOn, delegateCombine, markType } from "igniteui-webcompon
15
15
  */
16
16
  export let TextHeaderCell = /*@__PURE__*/ (() => {
17
17
  class TextHeaderCell extends GridCellBase {
18
- get cy() {
19
- return this.cv;
18
+ get d6() {
19
+ return this.d3;
20
20
  }
21
- get cs() {
22
- return this.cr;
21
+ get d0() {
22
+ return this.dz;
23
23
  }
24
- get cq() {
25
- return this.cp;
24
+ get dy() {
25
+ return this.dx;
26
26
  }
27
- get co() {
28
- return this.cn;
27
+ get dw() {
28
+ return this.dv;
29
29
  }
30
- set co(a) {
31
- let b = this.cn;
32
- this.cn = a;
33
- this.bs("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.cn));
30
+ set dw(a) {
31
+ let b = this.dv;
32
+ this.dv = a;
33
+ this.ch("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.dv));
34
34
  }
35
- get cm() {
36
- return this.cl;
35
+ get du() {
36
+ return this.dt;
37
37
  }
38
- set cm(a) {
39
- let b = this.cl;
40
- this.cl = a;
41
- this.bs("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.cl));
38
+ set du(a) {
39
+ let b = this.dt;
40
+ this.dt = a;
41
+ this.ch("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.dt));
42
42
  }
43
- aa(a) {
43
+ af(a) {
44
44
  return true;
45
45
  }
46
- b9(a, b) {
47
- super.b9(a, b);
46
+ c8(a, b) {
47
+ super.c8(a, b);
48
48
  a -= 21;
49
- if (this.cu) {
49
+ if (this.d2) {
50
50
  a -= 15;
51
51
  }
52
52
  let c = Math.max(0, a - b);
53
- if (c != this.c0) {
54
- this.c0 = c;
55
- this.cv.setRawStyleProperty("max-width", c.toString() + "px");
53
+ if (c != this.d8) {
54
+ this.d8 = c;
55
+ this.d3.setRawStyleProperty("max-width", c.toString() + "px");
56
56
  }
57
57
  }
58
- b3(a, b) {
59
- super.b3(a, b);
58
+ cy(a, b) {
59
+ super.cy(a, b);
60
+ this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
60
61
  let c = Math.max(0, a - b);
61
- if (this.cz != c) {
62
- this.cz = c;
63
- this.cv.setRawStyleProperty("max-height", c.toString() + "px");
62
+ if (this.d7 != c) {
63
+ this.d7 = c;
64
+ this.d3.setRawStyleProperty("max-height", c.toString() + "px");
64
65
  }
65
66
  }
66
- ca(a, b, c, d) {
67
- this.cp.bd();
67
+ cx(a, b) {
68
+ super.cx(a, b);
69
+ if (a == this.d3) {
70
+ this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
71
+ }
72
+ }
73
+ c9(a, b, c, d) {
74
+ this.dx.bd();
68
75
  }
69
76
  constructor(a) {
70
77
  super(a);
71
- this.cv = null;
72
- this.cr = null;
73
- this.cp = null;
74
- this.cl = 0;
75
- this.ck = 0;
76
- this.cn = 3;
77
- this.cx = null;
78
- this.c0 = -1;
79
- this.cz = -1;
80
- this.ct = false;
81
- this.cw = null;
82
- this.cu = false;
83
- this.cv = a.createElement("span");
84
- this.ah.setRawStyleProperty("text-align", "left");
85
- this.ah.setRawStyleProperty("vertical-align", "middle");
86
- this.cv.setRawStyleProperty("display", "inline-block");
87
- this.cv.setRawStyleProperty("line-height", "normal");
88
- this.cv.setRawStyleProperty("vertical-align", "middle");
89
- this.cv.setRawStyleProperty("overflow", "hidden");
90
- this.cv.setRawStyleProperty("white-space", "nowrap");
91
- this.cv.setRawStyleProperty("text-overflow", "ellipsis");
92
- this.ah.append(this.cv);
78
+ this.d3 = null;
79
+ this.dz = null;
80
+ this.dx = null;
81
+ this.dt = 0;
82
+ this.ds = 0;
83
+ this.dv = 3;
84
+ this.d5 = null;
85
+ this.d8 = -1;
86
+ this.d7 = -1;
87
+ this.d1 = false;
88
+ this.d4 = null;
89
+ this.d2 = false;
90
+ this.d3 = a.createElement("span");
91
+ this.ap.setRawStyleProperty("text-align", "left");
92
+ this.ap.setRawStyleProperty("vertical-align", "middle");
93
+ this.d3.setRawStyleProperty("display", "inline-block");
94
+ this.d3.setRawStyleProperty("line-height", "normal");
95
+ this.d3.setRawStyleProperty("vertical-align", "middle");
96
+ this.d3.setRawStyleProperty("overflow", "hidden");
97
+ this.d3.setRawStyleProperty("white-space", "nowrap");
98
+ this.d3.setRawStyleProperty("text-overflow", "ellipsis");
99
+ this.ap.append(this.d3);
93
100
  let b = 18;
94
101
  let c = 18;
95
102
  let d = a.createElement("div");
@@ -98,17 +105,17 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
98
105
  d.setRawStyleProperty("vertical-align", "middle");
99
106
  d.setRawStyleProperty("width", b + "px");
100
107
  d.setRawStyleProperty("height", c + "px");
101
- this.cw = d;
108
+ this.d4 = d;
102
109
  let e = a.getSubRenderer(d);
103
- this.cp = new GridFilterDialog();
104
- this.cp.bn(e, this.ah, a);
105
- this.ah.append(d);
106
- this.cp.be(b, c);
107
- this.cp.ak = 24;
108
- let f = this.cp.ab;
109
- this.cp.ab = false;
110
- this.cp.bb();
111
- this.cp.ab = f;
110
+ this.dx = new GridFilterDialog();
111
+ this.dx.bn(e, this.ap, a);
112
+ this.ap.append(d);
113
+ this.dx.be(b, c);
114
+ this.dx.ak = 24;
115
+ let f = this.dx.ab;
116
+ this.dx.ab = false;
117
+ this.dx.bb();
118
+ this.dx.ab = f;
112
119
  let g = 18;
113
120
  let h = 18;
114
121
  d = a.createElement("div");
@@ -118,155 +125,155 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
118
125
  d.setRawStyleProperty("width", "0px");
119
126
  d.setRawStyleProperty("height", h + "px");
120
127
  d.setRawStyleProperty("margin", "0 0 0 5px");
121
- this.cx = d;
128
+ this.d5 = d;
122
129
  e = a.getSubRenderer(d);
123
- this.cr = new GridSortIndicator();
124
- this.cr.n = false;
125
- this.cr.m = false;
126
- this.cr.a0(e);
127
- this.ah.append(d);
128
- this.cr.au(g, h);
129
- let i = this.cr;
130
- i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.c3));
131
- let j = this.cp;
132
- j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.c4));
133
- let k = this.cp;
134
- k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.c6));
135
- let l = this.cp;
136
- l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.c5));
137
- this.ah.listen("mouseenter", runOn(this, this.da));
138
- this.ah.listen("mouseleave", runOn(this, this.c9));
130
+ this.dz = new GridSortIndicator();
131
+ this.dz.n = false;
132
+ this.dz.m = false;
133
+ this.dz.a0(e);
134
+ this.ap.append(d);
135
+ this.dz.au(g, h);
136
+ let i = this.dz;
137
+ i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.eb));
138
+ let j = this.dx;
139
+ j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.ec));
140
+ let k = this.dx;
141
+ k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.ee));
142
+ let l = this.dx;
143
+ l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.ed));
144
+ this.ap.listen("mouseenter", runOn(this, this.ei));
145
+ this.ap.listen("mouseleave", runOn(this, this.eh));
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() {
@@ -12,6 +12,7 @@ import { Convert } from "igniteui-webcomponents-core";
12
12
  import { enumGetBox, markType } from "igniteui-webcomponents-core";
13
13
  import { GridConditionalStyleCollection } from "./GridConditionalStyleCollection";
14
14
  import { GridConditionalStyleProperty } from "./GridConditionalStyleProperty";
15
+ import { GridConditionalStyleFontInfo } from "./GridConditionalStyleFontInfo";
15
16
  import { GridStyleRepository } from "./GridStyleRepository";
16
17
  import { intDivide } from "igniteui-webcomponents-core";
17
18
  /**
@@ -75,19 +76,23 @@ export let TextIconSetConditionalStyle = /*@__PURE__*/ (() => {
75
76
  h.t = true;
76
77
  h.u = true;
77
78
  let i = new GridConditionalStyleProperty();
78
- i.aj = 0;
79
- i.b9 = "TextValue";
80
- i.bc = b[d];
79
+ i.al = 0;
80
+ i.cs = "TextValue";
81
+ i.cv = b[d];
81
82
  h.properties.add(i);
82
83
  i = new GridConditionalStyleProperty();
83
- i.aj = 0;
84
- i.b9 = "TextColor";
85
- i.bc = c[d];
84
+ i.al = 0;
85
+ i.cs = "TextColor";
86
+ i.c8 = c[d];
86
87
  h.properties.add(i);
87
88
  i = new GridConditionalStyleProperty();
88
- i.aj = 0;
89
- i.b9 = "FontInfo";
90
- i.bc = GridStyleRepository.i;
89
+ i.al = 0;
90
+ i.cs = "FontInfo";
91
+ i.aj = ((() => {
92
+ let $ret = new GridConditionalStyleFontInfo();
93
+ $ret.textStyle = GridStyleRepository.i;
94
+ return $ret;
95
+ })());
91
96
  h.properties.add(i);
92
97
  a.add(h);
93
98
  }