igniteui-webcomponents-data-grids 7.1.0-alpha.2 → 7.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -12,88 +12,88 @@ import { ColumnOptionsIconAlignment_$type } from "./ColumnOptionsIconAlignment";
12
12
  import { enumGetBox, runOn, delegateCombine, markType } from "igniteui-webcomponents-core";
13
13
  let TextHeaderCell = /*@__PURE__*/ (() => {
14
14
  class TextHeaderCell extends GridCellBase {
15
- get ea() {
16
- return this.d7;
15
+ get ed() {
16
+ return this.ea;
17
17
  }
18
- get d4() {
19
- return this.d3;
18
+ get d7() {
19
+ return this.d6;
20
20
  }
21
- get d2() {
22
- return this.d1;
21
+ get d5() {
22
+ return this.d4;
23
23
  }
24
- get d0() {
25
- return this.dz;
24
+ get d3() {
25
+ return this.d2;
26
26
  }
27
- set d0(a) {
28
- let b = this.dz;
29
- this.dz = a;
30
- this.ck("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.dz));
27
+ set d3(a) {
28
+ let b = this.d2;
29
+ this.d2 = a;
30
+ this.cl("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.d2));
31
31
  }
32
- get dy() {
33
- return this.dx;
32
+ get d1() {
33
+ return this.d0;
34
34
  }
35
- set dy(a) {
36
- let b = this.dx;
37
- this.dx = a;
38
- this.ck("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.dx));
35
+ set d1(a) {
36
+ let b = this.d0;
37
+ this.d0 = a;
38
+ this.cl("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.d0));
39
39
  }
40
40
  af(a) {
41
41
  return true;
42
42
  }
43
- dc(a, b) {
44
- super.dc(a, b);
43
+ dd(a, b) {
44
+ super.dd(a, b);
45
45
  a -= 21;
46
- if (this.d6) {
46
+ if (this.d9) {
47
47
  a -= 15;
48
48
  }
49
49
  let c = Math.max(0, a - b);
50
- if (c != this.ec) {
51
- this.ec = c;
52
- this.d7.setRawStyleProperty("max-width", c.toString() + "px");
50
+ if (c != this.ef) {
51
+ this.ef = c;
52
+ this.ea.setRawStyleProperty("max-width", c.toString() + "px");
53
53
  }
54
54
  }
55
- c1(a, b) {
56
- super.c1(a, b);
57
- this.d7.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
55
+ c2(a, b) {
56
+ super.c2(a, b);
57
+ this.ea.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
58
58
  let c = Math.max(0, a - b);
59
- if (this.eb != c) {
60
- this.eb = c;
61
- this.d7.setRawStyleProperty("max-height", c.toString() + "px");
59
+ if (this.ee != c) {
60
+ this.ee = c;
61
+ this.ea.setRawStyleProperty("max-height", c.toString() + "px");
62
62
  }
63
63
  }
64
- c0(a, b) {
65
- super.c0(a, b);
66
- if (a == this.d7) {
67
- this.d7.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
64
+ c1(a, b) {
65
+ super.c1(a, b);
66
+ if (a == this.ea) {
67
+ this.ea.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
68
68
  }
69
69
  }
70
- dd(a, b, c, d) {
71
- this.d1.b0();
70
+ de(a, b, c, d) {
71
+ this.d4.b0();
72
72
  }
73
73
  constructor(a) {
74
74
  super(a);
75
- this.d7 = null;
76
- this.d3 = null;
77
- this.d1 = null;
78
- this.dx = 0;
79
- this.dw = 0;
80
- this.dz = 3;
81
- this.d9 = null;
82
- this.ec = -1;
83
- this.eb = -1;
84
- this.d5 = false;
85
- this.d8 = null;
86
- this.d6 = false;
87
- this.d7 = a.createElement("span");
75
+ this.ea = null;
76
+ this.d6 = null;
77
+ this.d4 = null;
78
+ this.d0 = 0;
79
+ this.dz = 0;
80
+ this.d2 = 3;
81
+ this.ec = null;
82
+ this.ef = -1;
83
+ this.ee = -1;
84
+ this.d8 = false;
85
+ this.eb = null;
86
+ this.d9 = false;
87
+ this.ea = a.createElement("span");
88
88
  this.ar.setRawStyleProperty("text-align", "left");
89
89
  this.ar.setRawStyleProperty("vertical-align", "middle");
90
- this.d7.setRawStyleProperty("display", "inline-block");
91
- this.d7.setRawStyleProperty("line-height", "normal");
92
- this.d7.setRawStyleProperty("vertical-align", "middle");
93
- this.d7.setRawStyleProperty("overflow", "hidden");
94
- this.d7.setRawStyleProperty("white-space", "nowrap");
95
- this.d7.setRawStyleProperty("text-overflow", "ellipsis");
96
- this.ar.append(this.d7);
90
+ this.ea.setRawStyleProperty("display", "inline-block");
91
+ this.ea.setRawStyleProperty("line-height", "normal");
92
+ this.ea.setRawStyleProperty("vertical-align", "middle");
93
+ this.ea.setRawStyleProperty("overflow", "hidden");
94
+ this.ea.setRawStyleProperty("white-space", "nowrap");
95
+ this.ea.setRawStyleProperty("text-overflow", "ellipsis");
96
+ this.ar.append(this.ea);
97
97
  let b = 18;
98
98
  let c = 18;
99
99
  let d = a.createElement("div");
@@ -102,17 +102,17 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
102
102
  d.setRawStyleProperty("vertical-align", "middle");
103
103
  d.setRawStyleProperty("width", b + "px");
104
104
  d.setRawStyleProperty("height", c + "px");
105
- this.d8 = d;
105
+ this.eb = d;
106
106
  let e = a.getSubRenderer(d);
107
- this.d1 = new GridFilterDialog();
108
- this.d1.ca(e, this.ar, a);
107
+ this.d4 = new GridFilterDialog();
108
+ this.d4.ca(e, this.ar, a);
109
109
  this.ar.append(d);
110
- this.d1.b1(b, c);
111
- this.d1.ar = 24;
112
- let f = this.d1.ai;
113
- this.d1.ai = false;
114
- this.d1.by();
115
- this.d1.ai = f;
110
+ this.d4.b1(b, c);
111
+ this.d4.ar = 24;
112
+ let f = this.d4.ai;
113
+ this.d4.ai = false;
114
+ this.d4.by();
115
+ this.d4.ai = f;
116
116
  let g = 18;
117
117
  let h = 18;
118
118
  d = a.createElement("div");
@@ -122,190 +122,190 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
122
122
  d.setRawStyleProperty("width", "0px");
123
123
  d.setRawStyleProperty("height", h + "px");
124
124
  d.setRawStyleProperty("margin", "0 0 0 5px");
125
- this.d9 = d;
125
+ this.ec = d;
126
126
  e = a.getSubRenderer(d);
127
- this.d3 = new GridSortIndicator();
128
- this.d3.n = false;
129
- this.d3.m = false;
130
- this.d3.a0(e);
127
+ this.d6 = new GridSortIndicator();
128
+ this.d6.n = false;
129
+ this.d6.m = false;
130
+ this.d6.a0(e);
131
131
  this.ar.append(d);
132
- this.d3.au(g, h);
133
- let i = this.d3;
134
- i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.ef));
135
- let j = this.d1;
136
- j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.eg));
137
- let k = this.d1;
138
- k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.ei));
139
- let l = this.d1;
140
- l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.eh));
141
- this.ar.listen("mouseenter", runOn(this, this.em));
142
- this.ar.listen("mouseleave", runOn(this, this.el));
132
+ this.d6.au(g, h);
133
+ let i = this.d6;
134
+ i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.ei));
135
+ let j = this.d4;
136
+ j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.ej));
137
+ let k = this.d4;
138
+ k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.el));
139
+ let l = this.d4;
140
+ l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.ek));
141
+ this.ar.listen("mouseenter", runOn(this, this.ep));
142
+ this.ar.listen("mouseleave", runOn(this, this.eo));
143
143
  }
144
- ef(a, b) {
144
+ ei(a, b) {
145
145
  switch (b.propertyName) {
146
146
  case "CurrentOpacity":
147
- if (this.d4.t > 0) {
148
- this.d9.setRawStyleProperty("width", "18px");
149
- if (this.dw == 2) {
150
- this.d9.setRawStyleProperty("margin", "0 5px 0 0");
147
+ if (this.d7.t > 0) {
148
+ this.ec.setRawStyleProperty("width", "18px");
149
+ if (this.dz == 2) {
150
+ this.ec.setRawStyleProperty("margin", "0 5px 0 0");
151
151
  }
152
152
  else {
153
- this.d9.setRawStyleProperty("margin", "0 0 0 5px");
153
+ this.ec.setRawStyleProperty("margin", "0 0 0 5px");
154
154
  }
155
155
  }
156
156
  else {
157
- this.d9.setRawStyleProperty("width", "0px");
158
- this.d9.setRawStyleProperty("margin", "0");
157
+ this.ec.setRawStyleProperty("width", "0px");
158
+ this.ec.setRawStyleProperty("margin", "0");
159
159
  }
160
160
  break;
161
161
  }
162
162
  }
163
- em(a) {
163
+ ep(a) {
164
164
  if (this.b.isGridDragging) {
165
165
  return;
166
166
  }
167
- switch (this.d0) {
167
+ switch (this.d3) {
168
168
  case 2:
169
169
  case 3:
170
- this.d1.ce();
170
+ this.d4.ce();
171
171
  break;
172
172
  }
173
173
  }
174
- el(a) {
175
- switch (this.d0) {
174
+ eo(a) {
175
+ switch (this.d3) {
176
176
  case 2:
177
177
  case 3:
178
- this.d1.by();
178
+ this.d4.by();
179
179
  break;
180
180
  }
181
181
  }
182
- eh(a, b) {
182
+ ek(a, b) {
183
183
  this.b.columnFilterChanged(b.a);
184
184
  }
185
- ei(a, b) {
185
+ el(a, b) {
186
186
  this.b.columnFilterChanging(b.a);
187
187
  }
188
- eg(a, b) {
188
+ ej(a, b) {
189
189
  if (this.b != null) {
190
190
  b.a = this.f.getColumn();
191
191
  this.b.cancelEditMode(false);
192
192
  }
193
193
  }
194
- ci(a, b, c) {
195
- super.ci(a, b, c);
196
- this.dw = c;
197
- this.d1.k = c;
194
+ cj(a, b, c) {
195
+ super.cj(a, b, c);
196
+ this.dz = c;
197
+ this.d4.k = c;
198
198
  if (c == 2) {
199
- if (this.dy == 1) {
200
- this.ar.removeChild(this.d9);
201
- this.ar.removeChild(this.d8);
202
- this.d7.before(this.d8);
203
- this.d8.before(this.d9);
204
- this.d8.setRawStyleProperty("margin", "0 5px 0 0");
205
- this.d1.l = this.dw;
199
+ if (this.d1 == 1) {
200
+ this.ar.removeChild(this.ec);
201
+ this.ar.removeChild(this.eb);
202
+ this.ea.before(this.eb);
203
+ this.eb.before(this.ec);
204
+ this.eb.setRawStyleProperty("margin", "0 5px 0 0");
205
+ this.d4.l = this.dz;
206
206
  }
207
- else if (this.dy == 4) {
208
- this.ar.removeChild(this.d9);
209
- this.ar.removeChild(this.d8);
210
- this.ar.append(this.d8);
211
- this.d7.before(this.d9);
212
- this.d8.setRawStyleProperty("margin", "0 0 0 5px");
213
- this.d1.l = 2;
207
+ else if (this.d1 == 4) {
208
+ this.ar.removeChild(this.ec);
209
+ this.ar.removeChild(this.eb);
210
+ this.ar.append(this.eb);
211
+ this.ea.before(this.ec);
212
+ this.eb.setRawStyleProperty("margin", "0 0 0 5px");
213
+ this.d4.l = 2;
214
214
  }
215
215
  else {
216
- this.ar.removeChild(this.d9);
217
- this.ar.removeChild(this.d8);
218
- this.d7.before(this.d8);
219
- this.d8.before(this.d9);
220
- this.d8.setRawStyleProperty("margin", "0");
221
- this.d1.l = 0;
216
+ this.ar.removeChild(this.ec);
217
+ this.ar.removeChild(this.eb);
218
+ this.ea.before(this.eb);
219
+ this.eb.before(this.ec);
220
+ this.eb.setRawStyleProperty("margin", "0");
221
+ this.d4.l = 0;
222
222
  }
223
223
  }
224
224
  else {
225
- if (this.dy == 1) {
226
- this.ar.removeChild(this.d9);
227
- this.ar.removeChild(this.d7);
228
- this.d8.before(this.d7);
229
- this.d8.before(this.d9);
230
- this.d8.setRawStyleProperty("margin", "0 0 0 5px");
231
- this.d1.l = this.dw;
225
+ if (this.d1 == 1) {
226
+ this.ar.removeChild(this.ec);
227
+ this.ar.removeChild(this.ea);
228
+ this.eb.before(this.ea);
229
+ this.eb.before(this.ec);
230
+ this.eb.setRawStyleProperty("margin", "0 0 0 5px");
231
+ this.d4.l = this.dz;
232
232
  }
233
- else if (this.dy == 3) {
234
- this.ar.removeChild(this.d9);
235
- this.ar.removeChild(this.d7);
236
- this.ar.removeChild(this.d8);
237
- this.ar.append(this.d8);
238
- this.ar.append(this.d7);
239
- this.ar.append(this.d9);
240
- this.d8.setRawStyleProperty("margin", "0 5px 0 0");
241
- this.d1.l = 0;
233
+ else if (this.d1 == 3) {
234
+ this.ar.removeChild(this.ec);
235
+ this.ar.removeChild(this.ea);
236
+ this.ar.removeChild(this.eb);
237
+ this.ar.append(this.eb);
238
+ this.ar.append(this.ea);
239
+ this.ar.append(this.ec);
240
+ this.eb.setRawStyleProperty("margin", "0 5px 0 0");
241
+ this.d4.l = 0;
242
242
  }
243
243
  else {
244
- this.ar.removeChild(this.d9);
245
- this.ar.removeChild(this.d7);
246
- this.d8.before(this.d7);
247
- this.d8.before(this.d9);
248
- this.d8.setRawStyleProperty("margin", "0");
249
- this.d1.l = 2;
244
+ this.ar.removeChild(this.ec);
245
+ this.ar.removeChild(this.ea);
246
+ this.eb.before(this.ea);
247
+ this.eb.before(this.ec);
248
+ this.eb.setRawStyleProperty("margin", "0");
249
+ this.d4.l = 2;
250
250
  }
251
251
  }
252
252
  }
253
- c6(a, b, c, d) {
254
- super.c6(a, b, c, d);
255
- this.d1.av = a;
256
- this.d1.aw = c;
253
+ c7(a, b, c, d) {
254
+ super.c7(a, b, c, d);
255
+ this.d4.av = a;
256
+ this.d4.aw = c;
257
257
  }
258
- ek() {
259
- if (this.dy == 3) {
260
- this.d1.l = 0;
261
- this.d8.setRawStyleProperty("margin", "0");
258
+ en() {
259
+ if (this.d1 == 3) {
260
+ this.d4.l = 0;
261
+ this.eb.setRawStyleProperty("margin", "0");
262
262
  }
263
- else if (this.dy == 4) {
264
- this.d1.l = 2;
265
- this.d8.setRawStyleProperty("margin", "0");
263
+ else if (this.d1 == 4) {
264
+ this.d4.l = 2;
265
+ this.eb.setRawStyleProperty("margin", "0");
266
266
  }
267
- else if (this.dy == 2 || this.dy == 0) {
268
- if (this.dw == 2) {
269
- this.d1.l = 0;
267
+ else if (this.d1 == 2 || this.d1 == 0) {
268
+ if (this.dz == 2) {
269
+ this.d4.l = 0;
270
270
  }
271
271
  else {
272
- this.d1.l = 2;
272
+ this.d4.l = 2;
273
273
  }
274
- this.d8.setRawStyleProperty("margin", "0");
274
+ this.eb.setRawStyleProperty("margin", "0");
275
275
  }
276
276
  else {
277
- this.d1.l = this.dw;
278
- if (this.dw == 2) {
279
- this.d8.setRawStyleProperty("margin", "0 5px 0 0");
277
+ this.d4.l = this.dz;
278
+ if (this.dz == 2) {
279
+ this.eb.setRawStyleProperty("margin", "0 5px 0 0");
280
280
  }
281
281
  else {
282
- this.d8.setRawStyleProperty("margin", "0 0 0 5px");
282
+ this.eb.setRawStyleProperty("margin", "0 0 0 5px");
283
283
  }
284
284
  }
285
- this.ci(this.ar, this.d7, this.dw);
285
+ this.cj(this.ar, this.ea, this.dz);
286
286
  }
287
- ej() {
288
- switch (this.d0) {
287
+ em() {
288
+ switch (this.d3) {
289
289
  case 1:
290
- this.d1.ai = false;
291
- this.d1.ce();
290
+ this.d4.ai = false;
291
+ this.d4.ce();
292
292
  break;
293
293
  case 2:
294
- this.d1.ai = false;
294
+ this.d4.ai = false;
295
295
  break;
296
296
  case 3:
297
- this.d1.ai = true;
297
+ this.d4.ai = true;
298
298
  break;
299
299
  }
300
300
  }
301
- ck(a, b, c) {
302
- super.ck(a, b, c);
301
+ cl(a, b, c) {
302
+ super.cl(a, b, c);
303
303
  switch (a) {
304
304
  case "ColumnOptionsIconAlignment":
305
- this.ek();
305
+ this.en();
306
306
  break;
307
307
  case "ColumnOptionsIconBehavior":
308
- this.ej();
308
+ this.em();
309
309
  break;
310
310
  }
311
311
  }
@@ -313,28 +313,28 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
313
313
  if (e_.button == 2) {
314
314
  return;
315
315
  }
316
- let b = this.d1.ak(e_);
316
+ let b = this.d4.ak(e_);
317
317
  if (b) {
318
- this.d5 = true;
318
+ this.d8 = true;
319
319
  return;
320
320
  }
321
321
  super.onContactStarted(e_, a);
322
322
  }
323
323
  onContactCompleted(e_, a) {
324
- if (!this.d5) {
324
+ if (!this.d8) {
325
325
  super.onContactCompleted(e_, a);
326
326
  }
327
- this.d5 = false;
327
+ this.d8 = false;
328
328
  }
329
329
  detach() {
330
330
  super.detach();
331
- if (this.d1 != null) {
331
+ if (this.d4 != null) {
332
332
  }
333
333
  }
334
- da(a) {
335
- super.da(a);
336
- if (this.d2 != null) {
337
- this.d2.x = a;
334
+ db(a) {
335
+ super.db(a);
336
+ if (this.d5 != null) {
337
+ this.d5.x = a;
338
338
  }
339
339
  }
340
340
  get_ac() {
@@ -22,98 +22,98 @@ let TextHeaderCellPresenter = /*@__PURE__*/ (() => {
22
22
  super.b(a);
23
23
  let b = a;
24
24
  if (a.a7) {
25
- if (a.bc(TextCellModel.n1)) {
26
- b.ky = b.n3;
27
- this.d.c8(this.d.ea, b.ky);
25
+ if (a.bc(TextCellModel.n9)) {
26
+ b.k1 = b.ob;
27
+ this.d.c9(this.d.ed, b.k1);
28
28
  }
29
- if (a.bc(CellModel.hj)) {
30
- let c = this.d.d4.m;
29
+ if (a.bc(CellModel.hl)) {
30
+ let c = this.d.d7.m;
31
31
  if (a.bt) {
32
- this.d.d4.m = false;
32
+ this.d.d7.m = false;
33
33
  }
34
- this.d.d4.b = a.n;
34
+ this.d.d7.b = a.n;
35
35
  if (a.bt) {
36
- this.d.d4.m = c;
36
+ this.d.d7.m = c;
37
37
  }
38
38
  }
39
- if (a.bc(CellModel.hk)) {
40
- let d = this.d.d4.m;
39
+ if (a.bc(CellModel.hm)) {
40
+ let d = this.d.d7.m;
41
41
  if (a.bt) {
42
- this.d.d4.m = false;
42
+ this.d.d7.m = false;
43
43
  }
44
- this.d.d4.a3 = a.nt;
44
+ this.d.d7.a3 = a.n1;
45
45
  if (a.bt) {
46
- this.d.d4.m = d;
46
+ this.d.d7.m = d;
47
47
  }
48
48
  }
49
49
  if (a.bb("IsColumnOptionsEnabled")) {
50
- let e = b.oi;
50
+ let e = b.oq;
51
51
  if (e) {
52
52
  e = this.e();
53
53
  }
54
- this.d.d6 = e;
55
- this.d.d8.setRawStyleProperty("display", e ? "inline-block" : "none");
56
- this.a.dc(a.h6, (a.g1 + a.g3 + a.fg + a.fj));
54
+ this.d.d9 = e;
55
+ this.d.eb.setRawStyleProperty("display", e ? "inline-block" : "none");
56
+ this.a.dd(a.h8, (a.g2 + a.g4 + a.fg + a.fj));
57
57
  }
58
58
  if (a.bb("SortIndicatorStyle")) {
59
- this.d.d4.f = b.oa;
59
+ this.d.d7.f = b.oi;
60
60
  }
61
61
  if (a.bb("ColumnOptionsIconAlignment")) {
62
- this.d.dy = b.n6;
62
+ this.d.d1 = b.oe;
63
63
  }
64
64
  if (a.bb("ColumnOptionsIconBehavior")) {
65
- this.d.d0 = b.n8;
65
+ this.d.d3 = b.og;
66
66
  }
67
67
  if (a.bb("ColumnOptionsIconColor")) {
68
- this.d.d2.c1 = b.p1;
68
+ this.d.d5.c1 = b.p9;
69
69
  }
70
- if (a.bb("Path") || (this.d.d2.n != null && this.d.d2.n.grid == null)) {
70
+ if (a.bb("Path") || (this.d.d5.n != null && this.d.d5.n.grid == null)) {
71
71
  let f = a.e.getColumn();
72
- if (f != this.d.d2.n) {
73
- this.d.d2.n = f;
74
- this.d.d2.bx();
72
+ if (f != this.d.d5.n) {
73
+ this.d.d5.n = f;
74
+ this.d.d5.bx();
75
75
  }
76
76
  }
77
- if (a.bc(TextHeaderCellModel.oz)) {
78
- this.d.da(b.oc);
77
+ if (a.bc(TextHeaderCellModel.o7)) {
78
+ this.d.db(b.ok);
79
79
  }
80
- if (a.bc(TextHeaderCellModel.ol)) {
81
- this.d.d2.ct = b.pw;
80
+ if (a.bc(TextHeaderCellModel.ot)) {
81
+ this.d.d5.ct = b.p4;
82
82
  }
83
- if (a.bc(TextHeaderCellModel.ox)) {
84
- this.d.d2.cz = b.p3;
83
+ if (a.bc(TextHeaderCellModel.o5)) {
84
+ this.d.d5.cz = b.qb;
85
85
  }
86
- if (a.bc(TextHeaderCellModel.oy)) {
87
- this.d.d2.ab = b.og;
86
+ if (a.bc(TextHeaderCellModel.o6)) {
87
+ this.d.d5.ab = b.oo;
88
88
  }
89
- if (a.bc(TextHeaderCellModel.oq)) {
90
- this.d.d2.cx = b.p0;
89
+ if (a.bc(TextHeaderCellModel.oy)) {
90
+ this.d.d5.cx = b.p8;
91
91
  }
92
- if (a.bc(TextHeaderCellModel.o0)) {
93
- this.d.d2.c0 = b.p4;
92
+ if (a.bc(TextHeaderCellModel.o8)) {
93
+ this.d.d5.c0 = b.qc;
94
94
  }
95
- if (a.bc(TextHeaderCellModel.op)) {
96
- this.d.d2.cw = b.pz;
95
+ if (a.bc(TextHeaderCellModel.ox)) {
96
+ this.d.d5.cw = b.p7;
97
97
  }
98
- if (a.bc(TextHeaderCellModel.ow)) {
99
- this.d.d2.cy = b.p2;
98
+ if (a.bc(TextHeaderCellModel.o4)) {
99
+ this.d.d5.cy = b.qa;
100
100
  }
101
- if (a.bc(TextHeaderCellModel.om)) {
102
- this.d.d2.cu = b.px;
101
+ if (a.bc(TextHeaderCellModel.ou)) {
102
+ this.d.d5.cu = b.p5;
103
103
  }
104
- if (a.bc(TextHeaderCellModel.on)) {
105
- this.d.d2.cv = b.py;
104
+ if (a.bc(TextHeaderCellModel.ov)) {
105
+ this.d.d5.cv = b.p6;
106
106
  }
107
- if (a.bc(TextHeaderCellModel.oo)) {
108
- this.d.d2.aa = b.of;
107
+ if (a.bc(TextHeaderCellModel.ow)) {
108
+ this.d.d5.aa = b.on;
109
109
  }
110
- if (a.bc(TextHeaderCellModel.ok)) {
111
- this.d.d2.cs = b.pv;
110
+ if (a.bc(TextHeaderCellModel.os)) {
111
+ this.d.d5.cs = b.p3;
112
112
  }
113
- if (a.bc(TextHeaderCellModel.ov)) {
114
- this.d.d2.ax = b.ou;
113
+ if (a.bc(TextHeaderCellModel.o3)) {
114
+ this.d.d5.ax = b.o2;
115
115
  }
116
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.ea, this.a);
116
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.ed, this.a);
117
117
  }
118
118
  }
119
119
  e() {