igniteui-webcomponents-data-grids 6.2.2-alpha.2 → 6.3.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 (192) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +5786 -5636
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +1 -1
  4. package/esm2015/lib/CanvasCellPresenterBase.js +9 -9
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +9 -9
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  7. package/esm2015/lib/CanvasGridCellBase.js +7 -7
  8. package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +3 -3
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +3 -3
  15. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  17. package/esm2015/lib/CellPresenterBase.js +40 -37
  18. package/esm2015/lib/CheckboxListBridge.js +4 -0
  19. package/esm2015/lib/CheckboxListView_combined.js +778 -743
  20. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  21. package/esm2015/lib/ColumnFilterCondition_combined.js +2894 -2867
  22. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  23. package/esm2015/lib/ColumnPinningView_combined.js +7 -7
  24. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  25. package/esm2015/lib/ContentCellModelHelper.js +13 -13
  26. package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
  27. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  28. package/esm2015/lib/EditorCell.js +303 -303
  29. package/esm2015/lib/EditorCellPresenter.js +27 -27
  30. package/esm2015/lib/EditorRowCell.js +1 -1
  31. package/esm2015/lib/FilterCell.js +272 -272
  32. package/esm2015/lib/FilterCellPresenter.js +16 -16
  33. package/esm2015/lib/GridCellBase.js +356 -337
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +9 -9
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +4 -4
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  38. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  39. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  40. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +6 -6
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  43. package/esm2015/lib/GridSortIndicatorView_combined.js +15 -8
  44. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  45. package/esm2015/lib/ImageCell.js +59 -59
  46. package/esm2015/lib/ImageCellPresenter.js +17 -17
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +2 -2
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  51. package/esm2015/lib/SectionHeaderCell.js +15 -15
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SortIndicatorStyle.js +6 -2
  54. package/esm2015/lib/SummaryCell.js +40 -40
  55. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  56. package/esm2015/lib/TemplateCell.js +15 -15
  57. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  58. package/esm2015/lib/TemplateHeader.js +2 -2
  59. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  60. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  61. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  62. package/esm2015/lib/TextCell.js +32 -32
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +153 -153
  65. package/esm2015/lib/TextHeaderCellPresenter.js +25 -25
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +164 -155
  68. package/esm2015/lib/igc-checkbox-list-component.js +103 -87
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +114 -104
  71. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  72. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  73. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  74. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  75. package/esm2015/lib/igc-image-cell-info.js +6 -6
  76. package/esm2015/lib/igc-image-column-component.js +12 -12
  77. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  80. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  81. package/esm2015/lib/igc-template-cell-info.js +2 -2
  82. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  83. package/esm2015/lib/igc-text-cell-info.js +2 -2
  84. package/esm2015/lib/igc-text-column-component.js +9 -9
  85. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  86. package/esm5/lib/AccessibilityRow.js +1 -1
  87. package/esm5/lib/CanvasCellPresenterBase.js +9 -9
  88. package/esm5/lib/CanvasContentCellModelHelper.js +9 -9
  89. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  90. package/esm5/lib/CanvasGridCellBase.js +7 -7
  91. package/esm5/lib/CanvasImageCellPresenter.js +9 -9
  92. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  93. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  94. package/esm5/lib/CanvasSummaryCell.js +1 -1
  95. package/esm5/lib/CanvasSummaryCellPresenter.js +3 -3
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  97. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +3 -3
  98. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  99. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  100. package/esm5/lib/CellPresenterBase.js +40 -37
  101. package/esm5/lib/CheckboxListBridge.js +4 -0
  102. package/esm5/lib/CheckboxListView_combined.js +760 -725
  103. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  104. package/esm5/lib/ColumnFilterCondition_combined.js +2735 -2700
  105. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  106. package/esm5/lib/ColumnPinningView_combined.js +7 -7
  107. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  108. package/esm5/lib/ContentCellModelHelper.js +13 -13
  109. package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
  110. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  111. package/esm5/lib/EditorCell.js +285 -285
  112. package/esm5/lib/EditorCellPresenter.js +27 -27
  113. package/esm5/lib/EditorRowCell.js +1 -1
  114. package/esm5/lib/FilterCell.js +262 -262
  115. package/esm5/lib/FilterCellPresenter.js +16 -16
  116. package/esm5/lib/GridCellBase.js +349 -326
  117. package/esm5/lib/GridColumnFilterOptionsView_combined.js +9 -9
  118. package/esm5/lib/GridColumnGroupOptionsView_combined.js +4 -4
  119. package/esm5/lib/GridColumnHideOptionsView_combined.js +1 -1
  120. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  121. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  122. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  123. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridExternalWrapper.js +6 -6
  125. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  126. package/esm5/lib/GridSortIndicatorView_combined.js +15 -10
  127. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  128. package/esm5/lib/ImageCell.js +59 -59
  129. package/esm5/lib/ImageCellPresenter.js +17 -17
  130. package/esm5/lib/MultiColumnComboBoxView_combined.js +2 -2
  131. package/esm5/lib/NumericCell.js +8 -8
  132. package/esm5/lib/NumericCellPresenter.js +9 -9
  133. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  134. package/esm5/lib/SectionHeaderCell.js +15 -15
  135. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  136. package/esm5/lib/SortIndicatorStyle.js +6 -2
  137. package/esm5/lib/SummaryCell.js +40 -40
  138. package/esm5/lib/SummaryCellPresenter.js +10 -10
  139. package/esm5/lib/TemplateCell.js +15 -15
  140. package/esm5/lib/TemplateCellPresenter.js +5 -5
  141. package/esm5/lib/TemplateHeader.js +2 -2
  142. package/esm5/lib/TemplateHeaderCell.js +5 -5
  143. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  144. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  145. package/esm5/lib/TextCell.js +32 -32
  146. package/esm5/lib/TextCellPresenter.js +10 -10
  147. package/esm5/lib/TextHeaderCell.js +151 -151
  148. package/esm5/lib/TextHeaderCellPresenter.js +25 -25
  149. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  150. package/esm5/lib/igc-cell-info.js +168 -155
  151. package/esm5/lib/igc-checkbox-list-component.js +103 -87
  152. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  153. package/esm5/lib/igc-data-grid-column-component.js +118 -104
  154. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  155. package/esm5/lib/igc-date-time-column-component.js +23 -23
  156. package/esm5/lib/igc-editor-cell-info.js +23 -23
  157. package/esm5/lib/igc-filter-cell-info.js +26 -26
  158. package/esm5/lib/igc-image-cell-info.js +6 -6
  159. package/esm5/lib/igc-image-column-component.js +12 -12
  160. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  161. package/esm5/lib/igc-numeric-column-component.js +35 -35
  162. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  163. package/esm5/lib/igc-summary-cell-info.js +9 -9
  164. package/esm5/lib/igc-template-cell-info.js +2 -2
  165. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  166. package/esm5/lib/igc-text-cell-info.js +2 -2
  167. package/esm5/lib/igc-text-column-component.js +9 -9
  168. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  169. package/fesm2015/igniteui-webcomponents-data-grids.js +5980 -5848
  170. package/fesm5/igniteui-webcomponents-data-grids.js +5788 -5638
  171. package/lib/CheckboxListBridge.d.ts +1 -0
  172. package/lib/CheckboxListViewExternal.d.ts +1 -0
  173. package/lib/CheckboxListView_combined.d.ts +185 -179
  174. package/lib/ColumnFilterCondition_combined.d.ts +820 -813
  175. package/lib/EditorCell.d.ts +67 -67
  176. package/lib/FilterCell.d.ts +55 -55
  177. package/lib/GridCellBase.d.ts +105 -102
  178. package/lib/ImageCell.d.ts +17 -17
  179. package/lib/NumericCell.d.ts +2 -2
  180. package/lib/SectionHeaderCell.d.ts +3 -3
  181. package/lib/SortIndicatorStyle.d.ts +5 -1
  182. package/lib/SummaryCell.d.ts +9 -9
  183. package/lib/TemplateCell.d.ts +5 -5
  184. package/lib/TemplateHeaderCell.d.ts +2 -2
  185. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  186. package/lib/TextCell.d.ts +7 -7
  187. package/lib/TextHeaderCell.d.ts +29 -29
  188. package/lib/VerticalSeparatorCell.d.ts +8 -8
  189. package/lib/igc-cell-info.d.ts +5 -0
  190. package/lib/igc-checkbox-list-component.d.ts +10 -0
  191. package/lib/igc-data-grid-column-component.d.ts +5 -0
  192. package/package.json +4 -4
@@ -11,53 +11,53 @@ import { markType } from "igniteui-webcomponents-core";
11
11
  */
12
12
  export let TextCell = /*@__PURE__*/ (() => {
13
13
  class TextCell extends GridCellBase {
14
- get dt() {
15
- return this.ds;
14
+ get dw() {
15
+ return this.dv;
16
16
  }
17
- c8(a, b) {
18
- super.c8(a, b);
19
- let c = Math.max(0, a - b - (this.bb + this.bd + this.bc));
20
- if (this.dv != c) {
21
- this.dv = c;
22
- this.ds.setRawStyleProperty("max-width", c.toString() + "px");
17
+ db(a, b) {
18
+ super.db(a, b);
19
+ let c = Math.max(0, a - b - (this.bd + this.bf + this.be));
20
+ if (this.dy != c) {
21
+ this.dy = c;
22
+ this.dv.setRawStyleProperty("max-width", c.toString() + "px");
23
23
  }
24
24
  }
25
- cy(a, b) {
26
- super.cy(a, b);
25
+ c1(a, b) {
26
+ super.c1(a, b);
27
27
  let c = Math.max(0, a - b);
28
- if (this.du != c) {
29
- this.du = c;
30
- this.ds.setRawStyleProperty("max-height", c.toString() + "px");
28
+ if (this.dx != c) {
29
+ this.dx = c;
30
+ this.dv.setRawStyleProperty("max-height", c.toString() + "px");
31
31
  }
32
32
  }
33
33
  constructor(a) {
34
34
  super(a);
35
- this.ds = null;
36
- this.dv = -1;
37
- this.du = -1;
38
- this.ap.setRawStyleProperty("text-align", "left");
39
- this.ap.setRawStyleProperty("vertical-align", "middle");
40
- this.ds = a.createElement("span");
41
- this.ds.setRawStyleProperty("display", "inline-block");
42
- this.ds.setRawStyleProperty("overflow", "hidden");
43
- this.ds.setRawStyleProperty("white-space", "nowrap");
44
- this.ds.setRawStyleProperty("text-overflow", "ellipsis");
45
- this.c7(this.ds, 1);
46
- this.ap.append(this.ds);
35
+ this.dv = null;
36
+ this.dy = -1;
37
+ this.dx = -1;
38
+ this.ar.setRawStyleProperty("text-align", "left");
39
+ this.ar.setRawStyleProperty("vertical-align", "middle");
40
+ this.dv = a.createElement("span");
41
+ this.dv.setRawStyleProperty("display", "inline-block");
42
+ this.dv.setRawStyleProperty("overflow", "hidden");
43
+ this.dv.setRawStyleProperty("white-space", "nowrap");
44
+ this.dv.setRawStyleProperty("text-overflow", "ellipsis");
45
+ this.da(this.dv, 1);
46
+ this.ar.append(this.dv);
47
47
  }
48
- cx(a, b) {
49
- super.cx(a, b);
50
- if (a == this.ds) {
51
- this.ds.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
48
+ c0(a, b) {
49
+ super.c0(a, b);
50
+ if (a == this.dv) {
51
+ this.dv.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
52
52
  }
53
53
  }
54
54
  get_ae() {
55
55
  return true;
56
56
  }
57
- ch(a, b, c) {
58
- super.ch(a, b, c);
57
+ ck(a, b, c) {
58
+ super.ck(a, b, c);
59
59
  if (a == "Indent" || a == "IsCollapsable") {
60
- this.ds.setRawStyleProperty("margin-left", this.bb + this.bd + this.bc + "px");
60
+ this.dv.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
61
61
  }
62
62
  }
63
63
  }
@@ -23,26 +23,26 @@ export let TextCellPresenter = /*@__PURE__*/ (() => {
23
23
  super.b(a);
24
24
  let b = a;
25
25
  if (a.a7) {
26
- if (a.bc(TextCellModel.nw) || a.bc(TextCellModel.hz) || a.bc(TextCellModel.gv)) {
27
- b.ku = this.e(b);
28
- this.d.c5(this.d.dt, b.ku);
26
+ if (a.bc(TextCellModel.n0) || a.bc(TextCellModel.h2) || a.bc(TextCellModel.gx)) {
27
+ b.kx = this.e(b);
28
+ this.d.c8(this.d.dw, b.kx);
29
29
  }
30
- ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dt, this.a);
30
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dw, this.a);
31
31
  }
32
32
  }
33
33
  e(a) {
34
- if (a.lp != null) {
35
- return a.lp;
34
+ if (a.lt != null) {
35
+ return a.lt;
36
36
  }
37
- if (a.ny != null) {
38
- return a.ny;
37
+ if (a.n2 != null) {
38
+ return a.n2;
39
39
  }
40
40
  else {
41
- if (a.ib == null) {
41
+ if (a.ie == null) {
42
42
  return "";
43
43
  }
44
44
  else {
45
- return a.ib.toString();
45
+ return a.ie.toString();
46
46
  }
47
47
  }
48
48
  }
@@ -15,88 +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 d6() {
19
- return this.d3;
18
+ get d9() {
19
+ return this.d6;
20
20
  }
21
- get d0() {
22
- return this.dz;
21
+ get d3() {
22
+ return this.d2;
23
23
  }
24
- get dy() {
25
- return this.dx;
24
+ get d1() {
25
+ return this.d0;
26
26
  }
27
- get dw() {
28
- return this.dv;
27
+ get dz() {
28
+ return this.dy;
29
29
  }
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));
30
+ set dz(a) {
31
+ let b = this.dy;
32
+ this.dy = a;
33
+ this.ck("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.dy));
34
34
  }
35
- get du() {
36
- return this.dt;
35
+ get dx() {
36
+ return this.dw;
37
37
  }
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));
38
+ set dx(a) {
39
+ let b = this.dw;
40
+ this.dw = a;
41
+ this.ck("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.dw));
42
42
  }
43
43
  af(a) {
44
44
  return true;
45
45
  }
46
- c8(a, b) {
47
- super.c8(a, b);
46
+ db(a, b) {
47
+ super.db(a, b);
48
48
  a -= 21;
49
- if (this.d2) {
49
+ if (this.d5) {
50
50
  a -= 15;
51
51
  }
52
52
  let c = Math.max(0, a - b);
53
- if (c != this.d8) {
54
- this.d8 = c;
55
- this.d3.setRawStyleProperty("max-width", c.toString() + "px");
53
+ if (c != this.eb) {
54
+ this.eb = c;
55
+ this.d6.setRawStyleProperty("max-width", c.toString() + "px");
56
56
  }
57
57
  }
58
- cy(a, b) {
59
- super.cy(a, b);
60
- this.d3.setRawStyleProperty("line-height", (this.be - this.bf).toString() + "px");
58
+ c1(a, b) {
59
+ super.c1(a, b);
60
+ this.d6.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
61
61
  let c = Math.max(0, a - b);
62
- if (this.d7 != c) {
63
- this.d7 = c;
64
- this.d3.setRawStyleProperty("max-height", c.toString() + "px");
62
+ if (this.ea != c) {
63
+ this.ea = c;
64
+ this.d6.setRawStyleProperty("max-height", c.toString() + "px");
65
65
  }
66
66
  }
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");
67
+ c0(a, b) {
68
+ super.c0(a, b);
69
+ if (a == this.d6) {
70
+ this.d6.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
71
71
  }
72
72
  }
73
- c9(a, b, c, d) {
74
- this.dx.bd();
73
+ dc(a, b, c, d) {
74
+ this.d0.bd();
75
75
  }
76
76
  constructor(a) {
77
77
  super(a);
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);
78
+ this.d6 = null;
79
+ this.d2 = null;
80
+ this.d0 = null;
81
+ this.dw = 0;
82
+ this.dv = 0;
83
+ this.dy = 3;
84
+ this.d8 = null;
85
+ this.eb = -1;
86
+ this.ea = -1;
87
+ this.d4 = false;
88
+ this.d7 = null;
89
+ this.d5 = false;
90
+ this.d6 = a.createElement("span");
91
+ this.ar.setRawStyleProperty("text-align", "left");
92
+ this.ar.setRawStyleProperty("vertical-align", "middle");
93
+ this.d6.setRawStyleProperty("display", "inline-block");
94
+ this.d6.setRawStyleProperty("line-height", "normal");
95
+ this.d6.setRawStyleProperty("vertical-align", "middle");
96
+ this.d6.setRawStyleProperty("overflow", "hidden");
97
+ this.d6.setRawStyleProperty("white-space", "nowrap");
98
+ this.d6.setRawStyleProperty("text-overflow", "ellipsis");
99
+ this.ar.append(this.d6);
100
100
  let b = 18;
101
101
  let c = 18;
102
102
  let d = a.createElement("div");
@@ -105,17 +105,17 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
105
105
  d.setRawStyleProperty("vertical-align", "middle");
106
106
  d.setRawStyleProperty("width", b + "px");
107
107
  d.setRawStyleProperty("height", c + "px");
108
- this.d4 = d;
108
+ this.d7 = d;
109
109
  let e = a.getSubRenderer(d);
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;
110
+ this.d0 = new GridFilterDialog();
111
+ this.d0.bn(e, this.ar, a);
112
+ this.ar.append(d);
113
+ this.d0.be(b, c);
114
+ this.d0.ak = 24;
115
+ let f = this.d0.ab;
116
+ this.d0.ab = false;
117
+ this.d0.bb();
118
+ this.d0.ab = f;
119
119
  let g = 18;
120
120
  let h = 18;
121
121
  d = a.createElement("div");
@@ -125,155 +125,155 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
125
125
  d.setRawStyleProperty("width", "0px");
126
126
  d.setRawStyleProperty("height", h + "px");
127
127
  d.setRawStyleProperty("margin", "0 0 0 5px");
128
- this.d5 = d;
128
+ this.d8 = d;
129
129
  e = a.getSubRenderer(d);
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));
130
+ this.d2 = new GridSortIndicator();
131
+ this.d2.n = false;
132
+ this.d2.m = false;
133
+ this.d2.a0(e);
134
+ this.ar.append(d);
135
+ this.d2.au(g, h);
136
+ let i = this.d2;
137
+ i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.ee));
138
+ let j = this.d0;
139
+ j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.ef));
140
+ let k = this.d0;
141
+ k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.eh));
142
+ let l = this.d0;
143
+ l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.eg));
144
+ this.ar.listen("mouseenter", runOn(this, this.el));
145
+ this.ar.listen("mouseleave", runOn(this, this.ek));
146
146
  }
147
- eb(a, b) {
147
+ ee(a, b) {
148
148
  switch (b.propertyName) {
149
149
  case "CurrentOpacity":
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");
150
+ if (this.d3.t > 0) {
151
+ this.d8.setRawStyleProperty("width", "18px");
152
+ if (this.dv == 2) {
153
+ this.d8.setRawStyleProperty("margin", "0 5px 0 0");
154
154
  }
155
155
  else {
156
- this.d5.setRawStyleProperty("margin", "0 0 0 5px");
156
+ this.d8.setRawStyleProperty("margin", "0 0 0 5px");
157
157
  }
158
158
  }
159
159
  else {
160
- this.d5.setRawStyleProperty("width", "0px");
161
- this.d5.setRawStyleProperty("margin", "0");
160
+ this.d8.setRawStyleProperty("width", "0px");
161
+ this.d8.setRawStyleProperty("margin", "0");
162
162
  }
163
163
  break;
164
164
  }
165
165
  }
166
- ei(a) {
166
+ el(a) {
167
167
  if (this.b.isGridDragging) {
168
168
  return;
169
169
  }
170
- this.dx.ba();
171
- switch (this.dw) {
170
+ this.d0.ba();
171
+ switch (this.dz) {
172
172
  case 2:
173
173
  case 3:
174
- this.dx.br();
174
+ this.d0.br();
175
175
  break;
176
176
  }
177
177
  }
178
- eh(a) {
179
- switch (this.dw) {
178
+ ek(a) {
179
+ switch (this.dz) {
180
180
  case 2:
181
181
  case 3:
182
- this.dx.bb();
182
+ this.d0.bb();
183
183
  break;
184
184
  }
185
185
  }
186
- ed(a, b) {
186
+ eg(a, b) {
187
187
  this.b.columnFilterChanged(b.a);
188
188
  }
189
- ee(a, b) {
189
+ eh(a, b) {
190
190
  this.b.columnFilterChanging(b.a);
191
191
  }
192
- ec(a, b) {
192
+ ef(a, b) {
193
193
  if (this.b != null) {
194
194
  b.a = this.f.getColumn();
195
195
  this.b.cancelEditMode(false);
196
196
  }
197
197
  }
198
- cf(a, b, c) {
199
- super.cf(a, b, c);
200
- this.ds = c;
201
- this.dx.k = c;
198
+ ci(a, b, c) {
199
+ super.ci(a, b, c);
200
+ this.dv = c;
201
+ this.d0.k = c;
202
202
  if (c == 2) {
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
+ this.ar.removeChild(this.d8);
204
+ this.ar.removeChild(this.d7);
205
+ this.d6.before(this.d7);
206
+ this.d7.before(this.d8);
207
+ if (this.dx == 1) {
208
+ this.d7.setRawStyleProperty("margin", "0 5px 0 0");
209
+ this.d0.l = this.dv;
210
210
  }
211
211
  else {
212
- this.d4.setRawStyleProperty("margin", "0");
213
- this.dx.l = 0;
212
+ this.d7.setRawStyleProperty("margin", "0");
213
+ this.d0.l = 0;
214
214
  }
215
215
  }
216
216
  else {
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
+ this.ar.removeChild(this.d8);
218
+ this.ar.removeChild(this.d6);
219
+ this.d7.before(this.d6);
220
+ this.d7.before(this.d8);
221
+ if (this.dx == 1) {
222
+ this.d7.setRawStyleProperty("margin", "0 0 0 5px");
223
+ this.d0.l = this.dv;
224
224
  }
225
225
  else {
226
- this.d4.setRawStyleProperty("margin", "0");
227
- this.dx.l = 2;
226
+ this.d7.setRawStyleProperty("margin", "0");
227
+ this.d0.l = 2;
228
228
  }
229
229
  }
230
230
  }
231
- c3(a, b, c, d) {
232
- super.c3(a, b, c, d);
233
- this.dx.an = a;
234
- this.dx.ao = c;
231
+ c6(a, b, c, d) {
232
+ super.c6(a, b, c, d);
233
+ this.d0.an = a;
234
+ this.d0.ao = c;
235
235
  }
236
- eg() {
237
- if (this.du == 2 || this.du == 0) {
238
- if (this.ds == 2) {
239
- this.dx.l = 0;
236
+ ej() {
237
+ if (this.dx == 2 || this.dx == 0) {
238
+ if (this.dv == 2) {
239
+ this.d0.l = 0;
240
240
  }
241
241
  else {
242
- this.dx.l = 2;
242
+ this.d0.l = 2;
243
243
  }
244
244
  }
245
245
  else {
246
- this.dx.l = this.ds;
247
- if (this.ds == 2) {
248
- this.d4.setRawStyleProperty("margin", "0 5px 0 0");
246
+ this.d0.l = this.dv;
247
+ if (this.dv == 2) {
248
+ this.d7.setRawStyleProperty("margin", "0 5px 0 0");
249
249
  }
250
250
  else {
251
- this.d4.setRawStyleProperty("margin", "0 0 0 5px");
251
+ this.d7.setRawStyleProperty("margin", "0 0 0 5px");
252
252
  }
253
253
  }
254
254
  }
255
- ef() {
256
- switch (this.dw) {
255
+ ei() {
256
+ switch (this.dz) {
257
257
  case 1:
258
- this.dx.ab = false;
259
- this.dx.br();
258
+ this.d0.ab = false;
259
+ this.d0.br();
260
260
  break;
261
261
  case 2:
262
- this.dx.ab = false;
262
+ this.d0.ab = false;
263
263
  break;
264
264
  case 3:
265
- this.dx.ab = true;
265
+ this.d0.ab = true;
266
266
  break;
267
267
  }
268
268
  }
269
- ch(a, b, c) {
270
- super.ch(a, b, c);
269
+ ck(a, b, c) {
270
+ super.ck(a, b, c);
271
271
  switch (a) {
272
272
  case "ColumnOptionsIconAlignment":
273
- this.eg();
273
+ this.ej();
274
274
  break;
275
275
  case "ColumnOptionsIconBehavior":
276
- this.ef();
276
+ this.ei();
277
277
  break;
278
278
  }
279
279
  }
@@ -281,22 +281,22 @@ export let TextHeaderCell = /*@__PURE__*/ (() => {
281
281
  if (e_.button == 2) {
282
282
  return;
283
283
  }
284
- let b = this.dx.ad(e_);
284
+ let b = this.d0.ad(e_);
285
285
  if (b) {
286
- this.d1 = true;
286
+ this.d4 = true;
287
287
  return;
288
288
  }
289
289
  super.onContactStarted(e_, a);
290
290
  }
291
291
  onContactCompleted(e_, a) {
292
- if (!this.d1) {
292
+ if (!this.d4) {
293
293
  super.onContactCompleted(e_, a);
294
294
  }
295
- this.d1 = false;
295
+ this.d4 = false;
296
296
  }
297
297
  detach() {
298
298
  super.detach();
299
- if (this.dx != null) {
299
+ if (this.d0 != null) {
300
300
  }
301
301
  }
302
302
  get_ac() {
@@ -24,58 +24,58 @@ export let TextHeaderCellPresenter = /*@__PURE__*/ (() => {
24
24
  super.b(a);
25
25
  let b = a;
26
26
  if (a.a7) {
27
- if (a.bc(TextCellModel.nw)) {
28
- b.ku = b.ny;
29
- this.d.c5(this.d.d6, b.ku);
27
+ if (a.bc(TextCellModel.n0)) {
28
+ b.kx = b.n2;
29
+ this.d.c8(this.d.d9, b.kx);
30
30
  }
31
- if (a.bc(CellModel.hg)) {
32
- let c = this.d.d0.m;
31
+ if (a.bc(CellModel.hi)) {
32
+ let c = this.d.d3.m;
33
33
  if (a.bt) {
34
- this.d.d0.m = false;
34
+ this.d.d3.m = false;
35
35
  }
36
- this.d.d0.b = a.n;
36
+ this.d.d3.b = a.n;
37
37
  if (a.bt) {
38
- this.d.d0.m = c;
38
+ this.d.d3.m = c;
39
39
  }
40
40
  }
41
- if (a.bc(CellModel.hh)) {
42
- let d = this.d.d0.m;
41
+ if (a.bc(CellModel.hj)) {
42
+ let d = this.d.d3.m;
43
43
  if (a.bt) {
44
- this.d.d0.m = false;
44
+ this.d.d3.m = false;
45
45
  }
46
- this.d.d0.a3 = a.no;
46
+ this.d.d3.a3 = a.ns;
47
47
  if (a.bt) {
48
- this.d.d0.m = d;
48
+ this.d.d3.m = d;
49
49
  }
50
50
  }
51
51
  if (a.bb("IsColumnOptionsEnabled")) {
52
- let e = b.n7;
52
+ let e = b.ob;
53
53
  if (e) {
54
54
  e = this.e();
55
55
  }
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));
56
+ this.d.d5 = e;
57
+ this.d.d7.setRawStyleProperty("display", e ? "inline-block" : "none");
58
+ this.a.db(a.h5, (a.g0 + a.g2 + a.fg + a.fj));
59
59
  }
60
60
  if (a.bb("SortIndicatorStyle")) {
61
- this.d.d0.f = b.n5;
61
+ this.d.d3.f = b.n9;
62
62
  }
63
63
  if (a.bb("ColumnOptionsIconAlignment")) {
64
- this.d.du = b.n1;
64
+ this.d.dx = b.n5;
65
65
  }
66
66
  if (a.bb("ColumnOptionsIconBehavior")) {
67
- this.d.dw = b.n3;
67
+ this.d.dz = b.n7;
68
68
  }
69
69
  if (a.bb("ColumnOptionsIconColor")) {
70
- this.d.dy.bw = b.oj;
70
+ this.d.d1.bw = b.on;
71
71
  }
72
- if (a.bb("Path") || (this.d.dy.n != null && this.d.dy.n.grid == null)) {
72
+ if (a.bb("Path") || (this.d.d1.n != null && this.d.d1.n.grid == null)) {
73
73
  let f = a.e.getColumn();
74
- if (f != this.d.dy.n) {
75
- this.d.dy.n = f;
74
+ if (f != this.d.d1.n) {
75
+ this.d.d1.n = f;
76
76
  }
77
77
  }
78
- ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.d6, this.a);
78
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d9, this.a);
79
79
  }
80
80
  }
81
81
  e() {