igniteui-webcomponents-data-grids 7.1.0-alpha.3 → 7.1.0-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 (204) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7956 -7387
  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 +1 -1
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +38 -35
  16. package/esm2015/lib/CheckboxListBridge.js +8 -0
  17. package/esm2015/lib/CheckboxListView_combined.js +369 -335
  18. package/esm2015/lib/ColumnChooserView_combined.js +11 -11
  19. package/esm2015/lib/ColumnFilterCondition_combined.js +5218 -4964
  20. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  21. package/esm2015/lib/ColumnPinningView_combined.js +5 -5
  22. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  23. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  24. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  25. package/esm2015/lib/DataGridLocaleEn.js +8 -0
  26. package/esm2015/lib/DataGridScrollerKeyboardListener.js +16 -16
  27. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  28. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  29. package/esm2015/lib/EditorCell.js +292 -292
  30. package/esm2015/lib/EditorCellPresenter.js +26 -26
  31. package/esm2015/lib/FilterCell.js +269 -269
  32. package/esm2015/lib/FilterCellPresenter.js +15 -15
  33. package/esm2015/lib/GridCellBase.js +167 -150
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +5 -5
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  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 +7 -7
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +188 -173
  43. package/esm2015/lib/GridIconRepository.js +4 -4
  44. package/esm2015/lib/ISummaryChooserView_combined.js +5 -5
  45. package/esm2015/lib/ImageCell.js +57 -57
  46. package/esm2015/lib/ImageCellPresenter.js +15 -15
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +5 -5
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  51. package/esm2015/lib/SectionHeaderCell.js +20 -20
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SummaryCell.js +45 -45
  54. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  55. package/esm2015/lib/TemplateCell.js +15 -15
  56. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  57. package/esm2015/lib/TemplateHeader.js +2 -2
  58. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  59. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  60. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  61. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  62. package/esm2015/lib/TextCell.js +29 -29
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +184 -184
  65. package/esm2015/lib/TextHeaderCellPresenter.js +55 -52
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +90 -81
  68. package/esm2015/lib/igc-checkbox-list-component.js +68 -58
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +238 -214
  71. package/esm2015/lib/igc-data-grid-component.js +31 -0
  72. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +44 -34
  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-editor-cell-info.js +23 -23
  76. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  77. package/esm2015/lib/igc-image-cell-info.js +6 -6
  78. package/esm2015/lib/igc-image-column-component.js +12 -12
  79. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  80. package/esm2015/lib/igc-numeric-column-component.js +38 -38
  81. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  82. package/esm2015/lib/igc-section-header-component.js +32 -12
  83. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  84. package/esm2015/lib/igc-template-cell-info.js +2 -2
  85. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  86. package/esm2015/lib/igc-text-cell-info.js +2 -2
  87. package/esm2015/lib/igc-text-column-component.js +9 -9
  88. package/esm2015/lib/igc-text-header-cell-info.js +44 -38
  89. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  90. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  91. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  92. package/esm5/lib/CanvasGridCellBase.js +2 -2
  93. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  94. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  95. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  96. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  97. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  99. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  101. package/esm5/lib/CellPresenterBase.js +38 -35
  102. package/esm5/lib/CheckboxListBridge.js +8 -0
  103. package/esm5/lib/CheckboxListView_combined.js +359 -321
  104. package/esm5/lib/ColumnChooserView_combined.js +11 -11
  105. package/esm5/lib/ColumnFilterCondition_combined.js +5068 -4770
  106. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  107. package/esm5/lib/ColumnPinningView_combined.js +5 -5
  108. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  109. package/esm5/lib/ContentCellModelHelper.js +10 -10
  110. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  111. package/esm5/lib/DataGridLocaleEn.js +8 -0
  112. package/esm5/lib/DataGridScrollerKeyboardListener.js +16 -16
  113. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  114. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  115. package/esm5/lib/EditorCell.js +277 -277
  116. package/esm5/lib/EditorCellPresenter.js +26 -26
  117. package/esm5/lib/FilterCell.js +259 -259
  118. package/esm5/lib/FilterCellPresenter.js +15 -15
  119. package/esm5/lib/GridCellBase.js +164 -143
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +5 -5
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  124. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  125. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  127. package/esm5/lib/GridExternalWrapper.js +6 -6
  128. package/esm5/lib/GridFilterDialogView_combined.js +183 -164
  129. package/esm5/lib/GridIconRepository.js +4 -4
  130. package/esm5/lib/ISummaryChooserView_combined.js +5 -5
  131. package/esm5/lib/ImageCell.js +57 -57
  132. package/esm5/lib/ImageCellPresenter.js +15 -15
  133. package/esm5/lib/MultiColumnComboBoxView_combined.js +5 -5
  134. package/esm5/lib/NumericCell.js +8 -8
  135. package/esm5/lib/NumericCellPresenter.js +9 -9
  136. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  137. package/esm5/lib/SectionHeaderCell.js +20 -20
  138. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  139. package/esm5/lib/SummaryCell.js +45 -45
  140. package/esm5/lib/SummaryCellPresenter.js +10 -10
  141. package/esm5/lib/TemplateCell.js +15 -15
  142. package/esm5/lib/TemplateCellPresenter.js +3 -3
  143. package/esm5/lib/TemplateHeader.js +2 -2
  144. package/esm5/lib/TemplateHeaderCell.js +5 -5
  145. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  146. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  147. package/esm5/lib/TemplateSectionHeader.js +1 -1
  148. package/esm5/lib/TextCell.js +29 -29
  149. package/esm5/lib/TextCellPresenter.js +10 -10
  150. package/esm5/lib/TextHeaderCell.js +182 -182
  151. package/esm5/lib/TextHeaderCellPresenter.js +55 -52
  152. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  153. package/esm5/lib/igc-cell-info.js +94 -81
  154. package/esm5/lib/igc-checkbox-list-component.js +72 -58
  155. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  156. package/esm5/lib/igc-data-grid-column-component.js +250 -214
  157. package/esm5/lib/igc-data-grid-component.js +43 -0
  158. package/esm5/lib/igc-data-grid-filter-dialog-component.js +48 -34
  159. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  160. package/esm5/lib/igc-date-time-column-component.js +23 -23
  161. package/esm5/lib/igc-editor-cell-info.js +23 -23
  162. package/esm5/lib/igc-filter-cell-info.js +26 -26
  163. package/esm5/lib/igc-image-cell-info.js +6 -6
  164. package/esm5/lib/igc-image-column-component.js +12 -12
  165. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  166. package/esm5/lib/igc-numeric-column-component.js +38 -38
  167. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  168. package/esm5/lib/igc-section-header-component.js +40 -12
  169. package/esm5/lib/igc-summary-cell-info.js +9 -9
  170. package/esm5/lib/igc-template-cell-info.js +2 -2
  171. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  172. package/esm5/lib/igc-text-cell-info.js +2 -2
  173. package/esm5/lib/igc-text-column-component.js +9 -9
  174. package/esm5/lib/igc-text-header-cell-info.js +48 -38
  175. package/fesm2015/igniteui-webcomponents-data-grids.js +8096 -7635
  176. package/fesm5/igniteui-webcomponents-data-grids.js +7956 -7387
  177. package/lib/CheckboxListExternal.d.ts +2 -0
  178. package/lib/CheckboxListView_combined.d.ts +98 -94
  179. package/lib/ColumnFilterCondition_combined.d.ts +1308 -1267
  180. package/lib/DataGridLocaleEn.d.ts +8 -0
  181. package/lib/EditorCell.d.ts +67 -67
  182. package/lib/FilterCell.d.ts +55 -55
  183. package/lib/GridCellBase.d.ts +64 -61
  184. package/lib/GridFilterDialogView_combined.d.ts +52 -49
  185. package/lib/ImageCell.d.ts +17 -17
  186. package/lib/NumericCell.d.ts +2 -2
  187. package/lib/SectionHeaderCell.d.ts +4 -4
  188. package/lib/SummaryCell.d.ts +10 -10
  189. package/lib/TemplateCell.d.ts +5 -5
  190. package/lib/TemplateHeaderCell.d.ts +2 -2
  191. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  192. package/lib/TemplateSectionHeader.d.ts +1 -1
  193. package/lib/TextCell.d.ts +7 -7
  194. package/lib/TextHeaderCell.d.ts +30 -30
  195. package/lib/VerticalSeparatorCell.d.ts +8 -8
  196. package/lib/igc-cell-info.d.ts +5 -0
  197. package/lib/igc-checkbox-list-component.d.ts +5 -0
  198. package/lib/igc-data-grid-column-component.d.ts +9 -0
  199. package/lib/igc-data-grid-component.d.ts +16 -0
  200. package/lib/igc-data-grid-filter-dialog-component.d.ts +5 -0
  201. package/lib/igc-numeric-cell-info.d.ts +5 -0
  202. package/lib/igc-section-header-component.d.ts +10 -0
  203. package/lib/igc-text-header-cell-info.d.ts +2 -0
  204. package/package.json +4 -4
@@ -28,26 +28,26 @@ export var SectionHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function (_
28
28
  _super.prototype.b.call(this, a);
29
29
  var b = a;
30
30
  if (a.a7) {
31
- if (a.bc(SectionHeaderCellModel.ob) || a.bc(SectionHeaderCellModel.od) || a.bc(SectionHeaderCellModel.oc) || a.bc(SectionHeaderCellModel.of)) {
32
- if (b.n7 == null || (b.n7.length == 0 && b.ol == null)) {
33
- if (b.ih == null) {
34
- b.kz = "";
31
+ if (a.bc(SectionHeaderCellModel.of) || a.bc(SectionHeaderCellModel.oh) || a.bc(SectionHeaderCellModel.og) || a.bc(SectionHeaderCellModel.oj)) {
32
+ if (b.ob == null || (b.ob.length == 0 && b.op == null)) {
33
+ if (b.ii == null) {
34
+ b.k1 = "";
35
35
  }
36
36
  else {
37
- b.kz = b.ih.toString();
37
+ b.k1 = b.ii.toString();
38
38
  }
39
39
  }
40
40
  else {
41
- if (b.oj != null && b.oa == 0) {
42
- b.kz = b.ol + "    " + b.oj;
41
+ if (b.on != null && b.oe == 0) {
42
+ b.k1 = b.op + "    " + b.on;
43
43
  }
44
44
  else {
45
- b.kz = b.ol;
45
+ b.k1 = b.op;
46
46
  }
47
47
  }
48
- this.d.c8(this.d.dx, b.kz);
48
+ this.d.c9(this.d.d0, b.k1);
49
49
  }
50
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dx, this.a);
50
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d0, this.a);
51
51
  }
52
52
  };
53
53
  SectionHeaderCellPresenter.$t = markType(SectionHeaderCellPresenter, 'SectionHeaderCellPresenter', CellPresenterBase.$);
@@ -14,77 +14,77 @@ export var SummaryCell = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  __extends(SummaryCell, _super);
15
15
  function SummaryCell(a) {
16
16
  var _this = _super.call(this, a) || this;
17
- _this.dw = null;
18
- _this.dx = null;
19
- _this.dy = null;
20
- _this.d2 = -1;
21
- _this.d1 = -1;
17
+ _this.dz = null;
18
+ _this.d0 = null;
19
+ _this.d1 = null;
20
+ _this.d5 = -1;
21
+ _this.d4 = -1;
22
22
  _this.ar.setRawStyleProperty("vertical-align", "middle");
23
- _this.dy = a.createElement("div");
24
- _this.dw = a.createElement("span");
25
- _this.dw.setRawStyleProperty("display", "inline-block");
26
- _this.dw.setRawStyleProperty("width", "40%");
27
- _this.dw.setRawStyleProperty("white-space", "nowrap");
28
- _this.dw.setRawStyleProperty("text-overflow", "ellipsis");
29
- _this.dw.setRawStyleProperty("vertical-align", "middle");
30
- _this.dw.setRawStyleProperty("overflow", "hidden");
31
- _this.dy.append(_this.dw);
32
- _this.dx = a.createElement("span");
33
- _this.dx.setRawStyleProperty("display", "inline-block");
34
- _this.dx.setRawStyleProperty("width", "60%");
35
- _this.dx.setRawStyleProperty("text-align", "right");
36
- _this.dx.setRawStyleProperty("white-space", "nowrap");
37
- _this.dx.setRawStyleProperty("text-overflow", "ellipsis");
38
- _this.dx.setRawStyleProperty("vertical-align", "middle");
39
- _this.dx.setRawStyleProperty("overflow", "hidden");
40
- _this.dy.append(_this.dx);
41
- _this.ar.append(_this.dy);
23
+ _this.d1 = a.createElement("div");
24
+ _this.dz = a.createElement("span");
25
+ _this.dz.setRawStyleProperty("display", "inline-block");
26
+ _this.dz.setRawStyleProperty("width", "40%");
27
+ _this.dz.setRawStyleProperty("white-space", "nowrap");
28
+ _this.dz.setRawStyleProperty("text-overflow", "ellipsis");
29
+ _this.dz.setRawStyleProperty("vertical-align", "middle");
30
+ _this.dz.setRawStyleProperty("overflow", "hidden");
31
+ _this.d1.append(_this.dz);
32
+ _this.d0 = a.createElement("span");
33
+ _this.d0.setRawStyleProperty("display", "inline-block");
34
+ _this.d0.setRawStyleProperty("width", "60%");
35
+ _this.d0.setRawStyleProperty("text-align", "right");
36
+ _this.d0.setRawStyleProperty("white-space", "nowrap");
37
+ _this.d0.setRawStyleProperty("text-overflow", "ellipsis");
38
+ _this.d0.setRawStyleProperty("vertical-align", "middle");
39
+ _this.d0.setRawStyleProperty("overflow", "hidden");
40
+ _this.d1.append(_this.d0);
41
+ _this.ar.append(_this.d1);
42
42
  return _this;
43
43
  }
44
- Object.defineProperty(SummaryCell.prototype, "dz", {
44
+ Object.defineProperty(SummaryCell.prototype, "d2", {
45
45
  get: function () {
46
- return this.dw;
46
+ return this.dz;
47
47
  },
48
48
  enumerable: false,
49
49
  configurable: true
50
50
  });
51
- Object.defineProperty(SummaryCell.prototype, "d0", {
51
+ Object.defineProperty(SummaryCell.prototype, "d3", {
52
52
  get: function () {
53
- return this.dx;
53
+ return this.d0;
54
54
  },
55
55
  enumerable: false,
56
56
  configurable: true
57
57
  });
58
- SummaryCell.prototype.dc = function (a, b) {
59
- _super.prototype.dc.call(this, a, b);
58
+ SummaryCell.prototype.dd = function (a, b) {
59
+ _super.prototype.dd.call(this, a, b);
60
60
  var c = Math.max(0, a - b);
61
- if (this.d2 != c) {
62
- this.d2 = c;
61
+ if (this.d5 != c) {
62
+ this.d5 = c;
63
63
  }
64
64
  };
65
- SummaryCell.prototype.c1 = function (a, b) {
66
- _super.prototype.c1.call(this, a, b);
65
+ SummaryCell.prototype.c2 = function (a, b) {
66
+ _super.prototype.c2.call(this, a, b);
67
67
  var c = Math.max(0, a - b);
68
- if (this.d1 != c) {
69
- this.d1 = c;
68
+ if (this.d4 != c) {
69
+ this.d4 = c;
70
70
  }
71
71
  };
72
- SummaryCell.prototype.c0 = function (a, b) {
73
- _super.prototype.c0.call(this, a, b);
74
- if (a == this.dw) {
75
- this.dw.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
72
+ SummaryCell.prototype.c1 = function (a, b) {
73
+ _super.prototype.c1.call(this, a, b);
74
+ if (a == this.dz) {
75
+ this.dz.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
76
76
  }
77
- else if (a == this.dx) {
78
- this.dx.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
77
+ else if (a == this.d0) {
78
+ this.d0.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
79
79
  }
80
80
  };
81
81
  SummaryCell.prototype.get_ae = function () {
82
82
  return false;
83
83
  };
84
- SummaryCell.prototype.ck = function (a, b, c) {
85
- _super.prototype.ck.call(this, a, b, c);
84
+ SummaryCell.prototype.cl = function (a, b, c) {
85
+ _super.prototype.cl.call(this, a, b, c);
86
86
  if (a == "Indent" || a == "IsCollapsable") {
87
- this.dy.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
87
+ this.d1.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
88
88
  }
89
89
  };
90
90
  SummaryCell.$t = markType(SummaryCell, 'SummaryCell', GridCellBase.$);
@@ -28,25 +28,25 @@ export var SummaryCellPresenter = /** @class */ /*@__PURE__*/ (function (_super)
28
28
  _super.prototype.b.call(this, a);
29
29
  var b = a;
30
30
  if (a.a7) {
31
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dz, this.a);
32
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d0, this.a);
31
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d2, this.a);
32
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d3, this.a);
33
33
  if (a.bb("ResolvedSummaryLabel") || a.bb("ResolvedSummaryValue")) {
34
- if (b.od != null) {
35
- this.d.c8(this.d.dz, b.od);
34
+ if (b.oh != null) {
35
+ this.d.c9(this.d.d2, b.oh);
36
36
  }
37
- if (b.of != null) {
38
- this.d.c8(this.d.d0, b.of);
37
+ if (b.oj != null) {
38
+ this.d.c9(this.d.d3, b.oj);
39
39
  }
40
40
  }
41
41
  if (a.bb("SummaryLabelTextColor")) {
42
- this.d.dz.setRawStyleProperty("color", b.ok._fill);
42
+ this.d.d2.setRawStyleProperty("color", b.oo._fill);
43
43
  }
44
- if (a.bb("SummaryLabelFontInfo")) {
45
- var c = b.n6;
44
+ if (a.bb("FontInfo") || a.bb("SummaryLabelFontInfo")) {
45
+ var c = b.oa;
46
46
  if (c == null) {
47
47
  c = FontUtil.getDefaultFont(this.a.am);
48
48
  }
49
- this.d.dz.setRawStyleProperty("font", c.fontString);
49
+ this.d.d2.setRawStyleProperty("font", c.fontString);
50
50
  }
51
51
  }
52
52
  };
@@ -16,16 +16,16 @@ export var TemplateCell = /** @class */ /*@__PURE__*/ (function (_super) {
16
16
  __extends(TemplateCell, _super);
17
17
  function TemplateCell(a) {
18
18
  var _this = _super.call(this, a) || this;
19
- _this.dw = null;
20
- _this.dw = new TemplateCellContainer(a);
21
- _this.dw.element.setRawStyleProperty("box-sizing", "border-box");
22
- _this.ar.append(_this.dw.element);
23
- _this.ar.listen("keydown", runOn(_this, _this.dy));
19
+ _this.dz = null;
20
+ _this.dz = new TemplateCellContainer(a);
21
+ _this.dz.element.setRawStyleProperty("box-sizing", "border-box");
22
+ _this.ar.append(_this.dz.element);
23
+ _this.ar.listen("keydown", runOn(_this, _this.d1));
24
24
  return _this;
25
25
  }
26
- Object.defineProperty(TemplateCell.prototype, "dx", {
26
+ Object.defineProperty(TemplateCell.prototype, "d0", {
27
27
  get: function () {
28
- return this.dw;
28
+ return this.dz;
29
29
  },
30
30
  enumerable: false,
31
31
  configurable: true
@@ -33,21 +33,21 @@ export var TemplateCell = /** @class */ /*@__PURE__*/ (function (_super) {
33
33
  TemplateCell.prototype.get_ae = function () {
34
34
  return true;
35
35
  };
36
- TemplateCell.prototype.ck = function (a, b, c) {
37
- _super.prototype.ck.call(this, a, b, c);
36
+ TemplateCell.prototype.cl = function (a, b, c) {
37
+ _super.prototype.cl.call(this, a, b, c);
38
38
  if (a == "Indent" || a == "IsCollapsable") {
39
- this.dw.element.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
39
+ this.dz.element.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
40
40
  }
41
41
  };
42
- TemplateCell.prototype.b9 = function () {
43
- var a = this.dw.element.getNativeElement();
42
+ TemplateCell.prototype.ca = function () {
43
+ var a = this.dz.element.getNativeElement();
44
44
  if (a.contains(document.activeElement)) {
45
45
  return;
46
46
  }
47
- _super.prototype.b9.call(this);
47
+ _super.prototype.ca.call(this);
48
48
  };
49
- TemplateCell.prototype.dy = function (a) {
50
- var b = this.dw.element.getNativeElement();
49
+ TemplateCell.prototype.d1 = function (a) {
50
+ var b = this.dz.element.getNativeElement();
51
51
  if (b.contains(document.activeElement) && document.activeElement.nodeName == "INPUT") {
52
52
  var c = BaseDOMEventProxy.c4(a);
53
53
  if (c == 14 || c == 16) {
@@ -30,12 +30,12 @@ export var TemplateCellPresenter = /** @class */ /*@__PURE__*/ (function (_super
30
30
  _super.prototype.b.call(this, a);
31
31
  var b = a;
32
32
  var c = this.d.actualColumns._inner[a.l.a5];
33
- if (a.bc(CellModel.fp) || a.bc(CellModel.h6)) {
33
+ if (a.bc(CellModel.fp) || a.bc(CellModel.h7)) {
34
34
  var d = Math.min(1, Math.max(0, a.c7));
35
35
  var e = a.cs * (1 - d);
36
- this.e.dx.element.setRawStyleProperty("opacity", e.toString());
36
+ this.e.d0.element.setRawStyleProperty("opacity", e.toString());
37
37
  }
38
- c.r5(a, this.e.dx);
38
+ c.sf(a, this.e.d0);
39
39
  };
40
40
  TemplateCellPresenter.$t = markType(TemplateCellPresenter, 'TemplateCellPresenter', CellPresenterBase.$);
41
41
  return TemplateCellPresenter;
@@ -30,9 +30,9 @@ export var TemplateHeader = /** @class */ /*@__PURE__*/ (function (_super) {
30
30
  _super.prototype.eq.call(this, a, b, c, d);
31
31
  var e = a;
32
32
  var f = b.ci(a.l);
33
- e.n7 = f.mj;
33
+ e.ob = f.mm;
34
34
  e.n = f.hv;
35
- e.oa = f.jw;
35
+ e.oe = f.jx;
36
36
  };
37
37
  TemplateHeader.prototype.hu = function (a, b) {
38
38
  if (this.cellUpdating != null) {
@@ -15,14 +15,14 @@ export var TemplateHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  __extends(TemplateHeaderCell, _super);
16
16
  function TemplateHeaderCell(a) {
17
17
  var _this = _super.call(this, a) || this;
18
- _this.dw = null;
19
- _this.dw = new TemplateCellContainer(a);
20
- _this.ar.append(_this.dw.element);
18
+ _this.dz = null;
19
+ _this.dz = new TemplateCellContainer(a);
20
+ _this.ar.append(_this.dz.element);
21
21
  return _this;
22
22
  }
23
- Object.defineProperty(TemplateHeaderCell.prototype, "dx", {
23
+ Object.defineProperty(TemplateHeaderCell.prototype, "d0", {
24
24
  get: function () {
25
- return this.dw;
25
+ return this.dz;
26
26
  },
27
27
  enumerable: false,
28
28
  configurable: true
@@ -16,40 +16,40 @@ export var TemplateHeaderCellModel = /** @class */ /*@__PURE__*/ (function (_sup
16
16
  __extends(TemplateHeaderCellModel, _super);
17
17
  function TemplateHeaderCellModel() {
18
18
  var _this = _super !== null && _super.apply(this, arguments) || this;
19
- _this.n9 = false;
19
+ _this.od = false;
20
20
  return _this;
21
21
  }
22
- Object.defineProperty(TemplateHeaderCellModel.prototype, "oa", {
22
+ Object.defineProperty(TemplateHeaderCellModel.prototype, "oe", {
23
23
  get: function () {
24
- return this.n9;
24
+ return this.od;
25
25
  },
26
26
  set: function (a) {
27
- var b = this.n9;
28
- this.n9 = a;
29
- if (this.n9 != b) {
30
- this.mi("IsFilterUIVisible", TemplateHeaderCellModel.ob, b, this.n9);
27
+ var b = this.od;
28
+ this.od = a;
29
+ if (this.od != b) {
30
+ this.mk("IsFilterUIVisible", TemplateHeaderCellModel.of, b, this.od);
31
31
  }
32
32
  },
33
33
  enumerable: false,
34
34
  configurable: true
35
35
  });
36
- TemplateHeaderCellModel.prototype.mr = function (a, b) {
37
- _super.prototype.mr.call(this, a, b);
36
+ TemplateHeaderCellModel.prototype.mt = function (a, b) {
37
+ _super.prototype.mt.call(this, a, b);
38
38
  if (a == "IsFilterUIVisible") {
39
- this.oa = b;
39
+ this.oe = b;
40
40
  }
41
41
  };
42
- TemplateHeaderCellModel.prototype.l3 = function (a) {
42
+ TemplateHeaderCellModel.prototype.l5 = function (a) {
43
43
  switch (a) {
44
44
  case "IsFilterUIVisible": return Boolean_$type;
45
45
  }
46
- return _super.prototype.l3.call(this, a);
46
+ return _super.prototype.l5.call(this, a);
47
47
  };
48
- TemplateHeaderCellModel.prototype.ig = function (a) {
48
+ TemplateHeaderCellModel.prototype.ih = function (a) {
49
49
  if (a == "IsFilterUIVisible") {
50
- return this.oa;
50
+ return this.oe;
51
51
  }
52
- return _super.prototype.ig.call(this, a);
52
+ return _super.prototype.ih.call(this, a);
53
53
  };
54
54
  TemplateHeaderCellModel.prototype.b = function (a) {
55
55
  if (a == null) {
@@ -57,10 +57,10 @@ export var TemplateHeaderCellModel = /** @class */ /*@__PURE__*/ (function (_sup
57
57
  }
58
58
  a = _super.prototype.b.call(this, a);
59
59
  var b = a;
60
- b.ae = this.n7;
60
+ b.ae = this.ob;
61
61
  return b;
62
62
  };
63
63
  TemplateHeaderCellModel.$t = markType(TemplateHeaderCellModel, 'TemplateHeaderCellModel', TemplateCellModel.$);
64
- TemplateHeaderCellModel.ob = CellModel.f8("IsFilterUIVisible");
64
+ TemplateHeaderCellModel.of = CellModel.f9("IsFilterUIVisible");
65
65
  return TemplateHeaderCellModel;
66
66
  }(TemplateCellModel));
@@ -30,13 +30,13 @@ export var TemplateHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function (
30
30
  _super.prototype.b.call(this, a);
31
31
  var b = this.d.actualColumns._inner[a.l.a5];
32
32
  var c = b.header;
33
- if (a.bc(CellModel.fp) || a.bc(CellModel.h6)) {
33
+ if (a.bc(CellModel.fp) || a.bc(CellModel.h7)) {
34
34
  var d = Math.min(1, Math.max(0, a.c7));
35
35
  var e = a.cs * (1 - d);
36
- this.e.dx.element.setRawStyleProperty("opacity", e.toString());
36
+ this.e.d0.element.setRawStyleProperty("opacity", e.toString());
37
37
  }
38
38
  var f = a;
39
- c.hu(f, this.e.dx);
39
+ c.hu(f, this.e.d0);
40
40
  };
41
41
  TemplateHeaderCellPresenter.$t = markType(TemplateHeaderCellPresenter, 'TemplateHeaderCellPresenter', CellPresenterBase.$);
42
42
  return TemplateHeaderCellPresenter;
@@ -25,7 +25,7 @@ export var TemplateSectionHeader = /** @class */ /*@__PURE__*/ (function (_super
25
25
  TemplateSectionHeader.prototype.n = function (a) {
26
26
  return new TemplateSectionHeaderCellModel();
27
27
  };
28
- TemplateSectionHeader.prototype.h5 = function (a, b) {
28
+ TemplateSectionHeader.prototype.ic = function (a, b) {
29
29
  if (this.cellUpdating != null) {
30
30
  this.cellUpdating(this, ((function () {
31
31
  var $ret = new TemplateSectionHeaderCellUpdatingEventArgs();
@@ -14,56 +14,56 @@ export var TextCell = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  __extends(TextCell, _super);
15
15
  function TextCell(a) {
16
16
  var _this = _super.call(this, a) || this;
17
- _this.dw = null;
18
- _this.dz = -1;
19
- _this.dy = -1;
17
+ _this.dz = null;
18
+ _this.d2 = -1;
19
+ _this.d1 = -1;
20
20
  _this.ar.setRawStyleProperty("text-align", "left");
21
21
  _this.ar.setRawStyleProperty("vertical-align", "middle");
22
- _this.dw = a.createElement("span");
23
- _this.dw.setRawStyleProperty("display", "inline-block");
24
- _this.dw.setRawStyleProperty("overflow", "hidden");
25
- _this.dw.setRawStyleProperty("white-space", "nowrap");
26
- _this.dw.setRawStyleProperty("text-overflow", "ellipsis");
27
- _this.db(_this.dw, 1);
28
- _this.ar.append(_this.dw);
22
+ _this.dz = a.createElement("span");
23
+ _this.dz.setRawStyleProperty("display", "inline-block");
24
+ _this.dz.setRawStyleProperty("overflow", "hidden");
25
+ _this.dz.setRawStyleProperty("white-space", "nowrap");
26
+ _this.dz.setRawStyleProperty("text-overflow", "ellipsis");
27
+ _this.dc(_this.dz, 1);
28
+ _this.ar.append(_this.dz);
29
29
  return _this;
30
30
  }
31
- Object.defineProperty(TextCell.prototype, "dx", {
31
+ Object.defineProperty(TextCell.prototype, "d0", {
32
32
  get: function () {
33
- return this.dw;
33
+ return this.dz;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
37
37
  });
38
- TextCell.prototype.dc = function (a, b) {
39
- _super.prototype.dc.call(this, a, b);
38
+ TextCell.prototype.dd = function (a, b) {
39
+ _super.prototype.dd.call(this, a, b);
40
40
  var c = Math.max(0, a - b - (this.bd + this.bf + this.be));
41
- if (this.dz != c) {
42
- this.dz = c;
43
- this.dw.setRawStyleProperty("max-width", c.toString() + "px");
41
+ if (this.d2 != c) {
42
+ this.d2 = c;
43
+ this.dz.setRawStyleProperty("max-width", c.toString() + "px");
44
44
  }
45
45
  };
46
- TextCell.prototype.c1 = function (a, b) {
47
- _super.prototype.c1.call(this, a, b);
46
+ TextCell.prototype.c2 = function (a, b) {
47
+ _super.prototype.c2.call(this, a, b);
48
48
  var c = Math.max(0, a - b);
49
- if (this.dy != c) {
50
- this.dy = c;
51
- this.dw.setRawStyleProperty("max-height", c.toString() + "px");
49
+ if (this.d1 != c) {
50
+ this.d1 = c;
51
+ this.dz.setRawStyleProperty("max-height", c.toString() + "px");
52
52
  }
53
53
  };
54
- TextCell.prototype.c0 = function (a, b) {
55
- _super.prototype.c0.call(this, a, b);
56
- if (a == this.dw) {
57
- this.dw.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
54
+ TextCell.prototype.c1 = function (a, b) {
55
+ _super.prototype.c1.call(this, a, b);
56
+ if (a == this.dz) {
57
+ this.dz.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
58
58
  }
59
59
  };
60
60
  TextCell.prototype.get_ae = function () {
61
61
  return true;
62
62
  };
63
- TextCell.prototype.ck = function (a, b, c) {
64
- _super.prototype.ck.call(this, a, b, c);
63
+ TextCell.prototype.cl = function (a, b, c) {
64
+ _super.prototype.cl.call(this, a, b, c);
65
65
  if (a == "Indent" || a == "IsCollapsable") {
66
- this.dw.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
66
+ this.dz.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
67
67
  }
68
68
  };
69
69
  TextCell.$t = markType(TextCell, 'TextCell', GridCellBase.$);
@@ -28,26 +28,26 @@ export var TextCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
28
28
  _super.prototype.b.call(this, a);
29
29
  var b = a;
30
30
  if (a.a7) {
31
- if (a.bc(TextCellModel.n5) || a.bc(TextCellModel.h4) || a.bc(TextCellModel.gy)) {
32
- b.kz = this.e(b);
33
- this.d.c8(this.d.dx, b.kz);
31
+ if (a.bc(TextCellModel.n9) || a.bc(TextCellModel.h5) || a.bc(TextCellModel.gz)) {
32
+ b.k1 = this.e(b);
33
+ this.d.c9(this.d.d0, b.k1);
34
34
  }
35
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dx, this.a);
35
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d0, this.a);
36
36
  }
37
37
  };
38
38
  TextCellPresenter.prototype.e = function (a) {
39
- if (a.lw != null) {
40
- return a.lw;
39
+ if (a.ly != null) {
40
+ return a.ly;
41
41
  }
42
- if (a.n7 != null) {
43
- return a.n7;
42
+ if (a.ob != null) {
43
+ return a.ob;
44
44
  }
45
45
  else {
46
- if (a.ih == null) {
46
+ if (a.ii == null) {
47
47
  return "";
48
48
  }
49
49
  else {
50
- return a.ih.toString();
50
+ return a.ii.toString();
51
51
  }
52
52
  }
53
53
  };