igniteui-webcomponents-grids 3.2.2 → 3.2.4

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 (190) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +10275 -9381
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/BaseEditorView.js +5 -0
  4. package/esm2015/lib/CanvasCellPresenterBase.js +10 -10
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +11 -11
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +2 -2
  7. package/esm2015/lib/CanvasGridCellBase.js +305 -289
  8. package/esm2015/lib/CanvasImageCell.js +29 -29
  9. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  10. package/esm2015/lib/CanvasNumericCell.js +2 -2
  11. package/esm2015/lib/CanvasNumericCellPresenter.js +3 -3
  12. package/esm2015/lib/CanvasSectionHeaderCell.js +3 -3
  13. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  14. package/esm2015/lib/CanvasSummaryCell.js +51 -51
  15. package/esm2015/lib/CanvasSummaryCellPresenter.js +5 -5
  16. package/esm2015/lib/CanvasTemplateCell.js +7 -7
  17. package/esm2015/lib/CanvasTemplateCellPresenter.js +3 -3
  18. package/esm2015/lib/CanvasTemplateHeaderCell.js +7 -7
  19. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  20. package/esm2015/lib/CanvasTextCell.js +3 -3
  21. package/esm2015/lib/CanvasTextCellPresenter.js +2 -2
  22. package/esm2015/lib/CanvasTextHeaderCell.js +24 -24
  23. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
  24. package/esm2015/lib/CellPresenterBase.js +1 -1
  25. package/esm2015/lib/CheckboxListView_combined.js +341 -306
  26. package/esm2015/lib/ColumnChooserView_combined.js +22 -22
  27. package/esm2015/lib/ColumnFilterCondition_combined.js +7531 -7208
  28. package/esm2015/lib/ColumnGroupDescription.js +22 -0
  29. package/esm2015/lib/ColumnGroupDescriptionCollection.js +14 -8
  30. package/esm2015/lib/ColumnGroupingView_combined.js +25 -25
  31. package/esm2015/lib/ColumnPinningView_combined.js +22 -22
  32. package/esm2015/lib/ColumnSortDescriptionCollection.js +12 -6
  33. package/esm2015/lib/ColumnSummaryDescriptionCollection.js +12 -6
  34. package/esm2015/lib/ComboEditorView.js +6 -3
  35. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  36. package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  37. package/esm2015/lib/DataGridCellLayoutPanel.js +27 -25
  38. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  39. package/esm2015/lib/DataGridToolbarView_combined.js +17 -17
  40. package/esm2015/lib/DateTimeColumnValueFormatter.js +90 -1
  41. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +25 -25
  42. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +10 -10
  43. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  44. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +6 -6
  45. package/esm2015/lib/GridColumnOptionsViewBase_combined.js +2 -2
  46. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  47. package/esm2015/lib/GridColumnPinOptionsView_combined.js +5 -5
  48. package/esm2015/lib/GridColumnSortOptionsView_combined.js +5 -5
  49. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  50. package/esm2015/lib/GridExternalWrapper.js +18 -6
  51. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  52. package/esm2015/lib/ISummaryChooserView_combined.js +13 -13
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +47 -47
  54. package/esm2015/lib/MultiColumnComboVisualModelExport.js +1 -1
  55. package/esm2015/lib/NumericCellPresenter.js +1 -1
  56. package/esm2015/lib/PropertyEditorView_combined.js +40 -40
  57. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  58. package/esm2015/lib/TemplateHeader.js +8 -8
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +1 -1
  60. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  61. package/esm2015/lib/TextEditorView.js +28 -10
  62. package/esm2015/lib/VerticalSeparatorCell.js +46 -8
  63. package/esm2015/lib/VisualModelExport.js +120 -100
  64. package/esm2015/lib/igc-checkbox-list-component.js +74 -54
  65. package/esm2015/lib/igc-column-component.js +164 -164
  66. package/esm2015/lib/igc-column-group-description-collection.js +13 -3
  67. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  68. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  69. package/esm2015/lib/igc-column-sort-description-collection.js +13 -3
  70. package/esm2015/lib/igc-column-summary-description-collection.js +13 -3
  71. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  72. package/esm2015/lib/igc-data-grid-component.js +699 -593
  73. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  74. package/esm2015/lib/igc-definition-base-component.js +50 -50
  75. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  76. package/esm2015/lib/igc-header-component.js +24 -24
  77. package/esm2015/lib/igc-image-column-component.js +12 -12
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-component.js +24 -24
  80. package/esm2015/lib/igc-summary-row-component.js +24 -24
  81. package/esm2015/lib/igc-text-column-component.js +9 -9
  82. package/esm5/lib/BaseEditorView.js +5 -0
  83. package/esm5/lib/CanvasCellPresenterBase.js +10 -10
  84. package/esm5/lib/CanvasContentCellModelHelper.js +11 -11
  85. package/esm5/lib/CanvasDateTimeCellPresenter.js +2 -2
  86. package/esm5/lib/CanvasGridCellBase.js +304 -288
  87. package/esm5/lib/CanvasImageCell.js +28 -28
  88. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  89. package/esm5/lib/CanvasNumericCell.js +2 -2
  90. package/esm5/lib/CanvasNumericCellPresenter.js +3 -3
  91. package/esm5/lib/CanvasSectionHeaderCell.js +3 -3
  92. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  93. package/esm5/lib/CanvasSummaryCell.js +51 -51
  94. package/esm5/lib/CanvasSummaryCellPresenter.js +5 -5
  95. package/esm5/lib/CanvasTemplateCell.js +7 -7
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +3 -3
  97. package/esm5/lib/CanvasTemplateHeaderCell.js +7 -7
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  99. package/esm5/lib/CanvasTextCell.js +3 -3
  100. package/esm5/lib/CanvasTextCellPresenter.js +2 -2
  101. package/esm5/lib/CanvasTextHeaderCell.js +24 -24
  102. package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
  103. package/esm5/lib/CellPresenterBase.js +1 -1
  104. package/esm5/lib/CheckboxListView_combined.js +339 -296
  105. package/esm5/lib/ColumnChooserView_combined.js +22 -22
  106. package/esm5/lib/ColumnFilterCondition_combined.js +7352 -6962
  107. package/esm5/lib/ColumnGroupDescription.js +22 -0
  108. package/esm5/lib/ColumnGroupDescriptionCollection.js +18 -8
  109. package/esm5/lib/ColumnGroupingView_combined.js +25 -25
  110. package/esm5/lib/ColumnPinningView_combined.js +22 -22
  111. package/esm5/lib/ColumnSortDescriptionCollection.js +16 -6
  112. package/esm5/lib/ColumnSummaryDescriptionCollection.js +16 -6
  113. package/esm5/lib/ComboEditorView.js +6 -3
  114. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  115. package/esm5/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  116. package/esm5/lib/DataGridCellLayoutPanel.js +27 -25
  117. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  118. package/esm5/lib/DataGridToolbarView_combined.js +17 -17
  119. package/esm5/lib/DateTimeColumnValueFormatter.js +92 -1
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +25 -25
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +10 -10
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridColumnOptionsViewBase_combined.js +2 -2
  125. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnPinOptionsView_combined.js +5 -5
  127. package/esm5/lib/GridColumnSortOptionsView_combined.js +5 -5
  128. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  129. package/esm5/lib/GridExternalWrapper.js +18 -6
  130. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  131. package/esm5/lib/ISummaryChooserView_combined.js +13 -13
  132. package/esm5/lib/MultiColumnComboBoxView_combined.js +47 -47
  133. package/esm5/lib/MultiColumnComboVisualModelExport.js +1 -1
  134. package/esm5/lib/NumericCellPresenter.js +1 -1
  135. package/esm5/lib/PropertyEditorView_combined.js +40 -40
  136. package/esm5/lib/TemplateCellPresenter.js +1 -1
  137. package/esm5/lib/TemplateHeader.js +8 -8
  138. package/esm5/lib/TemplateHeaderCellPresenter.js +1 -1
  139. package/esm5/lib/TemplateSectionHeader.js +2 -2
  140. package/esm5/lib/TextEditorView.js +28 -10
  141. package/esm5/lib/VerticalSeparatorCell.js +46 -8
  142. package/esm5/lib/VisualModelExport.js +120 -100
  143. package/esm5/lib/igc-checkbox-list-component.js +82 -54
  144. package/esm5/lib/igc-column-component.js +164 -164
  145. package/esm5/lib/igc-column-group-description-collection.js +17 -3
  146. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  147. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  148. package/esm5/lib/igc-column-sort-description-collection.js +17 -3
  149. package/esm5/lib/igc-column-summary-description-collection.js +17 -3
  150. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  151. package/esm5/lib/igc-data-grid-component.js +743 -601
  152. package/esm5/lib/igc-date-time-column-component.js +23 -23
  153. package/esm5/lib/igc-definition-base-component.js +50 -50
  154. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  155. package/esm5/lib/igc-header-component.js +24 -24
  156. package/esm5/lib/igc-image-column-component.js +12 -12
  157. package/esm5/lib/igc-numeric-column-component.js +35 -35
  158. package/esm5/lib/igc-section-header-component.js +24 -24
  159. package/esm5/lib/igc-summary-row-component.js +24 -24
  160. package/esm5/lib/igc-text-column-component.js +9 -9
  161. package/fesm2015/igniteui-webcomponents-grids.js +10315 -9565
  162. package/fesm5/igniteui-webcomponents-grids.js +10276 -9382
  163. package/lib/CanvasGridCellBase.d.ts +95 -93
  164. package/lib/CanvasImageCell.d.ts +11 -11
  165. package/lib/CanvasSectionHeaderCell.d.ts +1 -1
  166. package/lib/CanvasSummaryCell.d.ts +15 -15
  167. package/lib/CanvasTemplateCell.d.ts +4 -4
  168. package/lib/CanvasTemplateHeaderCell.d.ts +4 -4
  169. package/lib/CanvasTextCell.d.ts +1 -1
  170. package/lib/CanvasTextHeaderCell.d.ts +6 -6
  171. package/lib/CheckboxListView_combined.d.ts +74 -69
  172. package/lib/ColumnFilterCondition_combined.d.ts +1306 -1264
  173. package/lib/ColumnGroupDescription.d.ts +1 -0
  174. package/lib/ColumnGroupDescriptionCollection.d.ts +8 -7
  175. package/lib/ColumnSortDescriptionCollection.d.ts +8 -7
  176. package/lib/ColumnSummaryDescriptionCollection.d.ts +8 -7
  177. package/lib/DataGridCellLayoutPanel.d.ts +1 -0
  178. package/lib/DateTimeColumnValueFormatter.d.ts +19 -1
  179. package/lib/GridExternalWrapper.d.ts +4 -0
  180. package/lib/TemplateHeader.d.ts +3 -3
  181. package/lib/TemplateSectionHeader.d.ts +2 -2
  182. package/lib/TextEditorView.d.ts +5 -3
  183. package/lib/VerticalSeparatorCell.d.ts +9 -0
  184. package/lib/VisualModelExport.d.ts +31 -26
  185. package/lib/igc-checkbox-list-component.d.ts +9 -0
  186. package/lib/igc-column-group-description-collection.d.ts +4 -0
  187. package/lib/igc-column-sort-description-collection.d.ts +4 -0
  188. package/lib/igc-column-summary-description-collection.d.ts +4 -0
  189. package/lib/igc-data-grid-component.d.ts +30 -2
  190. package/package.json +4 -4
@@ -14,56 +14,56 @@ var CanvasImageCell = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  tslib_1.__extends(CanvasImageCell, _super);
15
15
  function CanvasImageCell(a) {
16
16
  var _this = _super.call(this, a) || this;
17
- _this.c5 = 1;
18
- _this.c6 = 3;
19
- _this.da = null;
20
17
  _this.c7 = 1;
21
- _this.c9 = null;
22
- _this.c9 = a.createElement("img");
18
+ _this.c8 = 3;
19
+ _this.dc = null;
20
+ _this.c9 = 1;
21
+ _this.db = null;
22
+ _this.db = a.createElement("img");
23
23
  return _this;
24
24
  }
25
- Object.defineProperty(CanvasImageCell.prototype, "c8", {
25
+ Object.defineProperty(CanvasImageCell.prototype, "da", {
26
26
  get: function () {
27
- return this.c7;
27
+ return this.c9;
28
28
  },
29
29
  set: function (a) {
30
- this.c7 = a;
30
+ this.c9 = a;
31
31
  },
32
32
  enumerable: true,
33
33
  configurable: true
34
34
  });
35
- CanvasImageCell.prototype.dd = function (a, b) {
36
- this.db();
37
- this.c9.setRawStyleProperty("opacity", "0");
35
+ CanvasImageCell.prototype.df = function (a, b) {
36
+ this.dd();
37
+ this.db.setRawStyleProperty("opacity", "0");
38
38
  if (a == null || a.length == 0) {
39
- this.dc(this.c9);
39
+ this.de(this.db);
40
40
  return;
41
41
  }
42
- if (Base.equalsStatic(a, this.da)) {
42
+ if (Base.equalsStatic(a, this.dc)) {
43
43
  return;
44
44
  }
45
- this.dg(a, b);
45
+ this.di(a, b);
46
46
  };
47
- CanvasImageCell.prototype.dc = function (a) {
47
+ CanvasImageCell.prototype.de = function (a) {
48
48
  a.setAttribute("src", "");
49
49
  };
50
- CanvasImageCell.prototype.dg = function (a, b) {
51
- this.da = a;
52
- this.c9.setAttribute("src", a);
50
+ CanvasImageCell.prototype.di = function (a, b) {
51
+ this.dc = a;
52
+ this.db.setAttribute("src", a);
53
53
  };
54
- CanvasImageCell.prototype.db = function () {
55
- this.dc(this.c9);
56
- this.da = "";
54
+ CanvasImageCell.prototype.dd = function () {
55
+ this.de(this.db);
56
+ this.dc = "";
57
57
  };
58
- CanvasImageCell.prototype.de = function (a) {
59
- this.z = true;
60
- this.c5 = a;
58
+ CanvasImageCell.prototype.dg = function (a) {
59
+ this.aa = true;
60
+ this.c7 = a;
61
61
  };
62
- CanvasImageCell.prototype.df = function (a) {
63
- this.z = true;
64
- this.c6 = a;
62
+ CanvasImageCell.prototype.dh = function (a) {
63
+ this.aa = true;
64
+ this.c8 = a;
65
65
  };
66
- CanvasImageCell.prototype.get_ab = function () {
66
+ CanvasImageCell.prototype.get_ac = function () {
67
67
  return true;
68
68
  };
69
69
  CanvasImageCell.$t = markType(CanvasImageCell, 'CanvasImageCell', CanvasGridCellBase.$);
@@ -32,7 +32,7 @@ var CanvasImageCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
32
32
  if (a.a3(CellModel.es) || a.a3(CellModel.gt)) {
33
33
  var c = Math.min(1, Math.max(0, a.ck));
34
34
  var d = a.ca * (1 - c);
35
- this.d.c8 = d;
35
+ this.d.da = d;
36
36
  }
37
37
  if (b.a3(ImageCellModel.ln) || b.a3(ImageCellModel.lo)) {
38
38
  this.e(b.lr, b.lk);
@@ -42,7 +42,7 @@ var CanvasImageCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  }
43
43
  if (b.a3(ImageCellModel.gn)) {
44
44
  if (a.u == 1) {
45
- this.d.db();
45
+ this.d.dd();
46
46
  }
47
47
  else if (a.u == 2) {
48
48
  this.e(b.lr, b.lk);
@@ -58,35 +58,35 @@ var CanvasImageCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
58
58
  b = 4;
59
59
  }
60
60
  if (stringStartsWith(c, "http") || b == 4) {
61
- this.d.dd(a, 4);
61
+ this.d.df(a, 4);
62
62
  }
63
63
  if (stringStartsWith(c, "asset") || b == 2) {
64
64
  var d = a;
65
65
  if (stringStartsWith(c, "asset")) {
66
66
  d = a.substr(8);
67
67
  }
68
- this.d.dd(d, 2);
68
+ this.d.df(d, 2);
69
69
  }
70
70
  if (stringStartsWith(c, "drawable") || b == 1) {
71
71
  var e = a;
72
72
  if (stringStartsWith(c, "drawable")) {
73
73
  e = a.substr(11);
74
74
  }
75
- this.d.dd(e, 1);
75
+ this.d.df(e, 1);
76
76
  }
77
77
  if (stringStartsWith(c, "nativeresource") || b == 1) {
78
78
  var f = a;
79
79
  if (stringStartsWith(c, "nativeresource")) {
80
80
  f = a.substr(17);
81
81
  }
82
- this.d.dd(f, 1);
82
+ this.d.df(f, 1);
83
83
  }
84
84
  if (stringStartsWith(c, "embeddedresource") || b == 3) {
85
85
  var g = a;
86
86
  if (stringStartsWith(c, "embeddedresource")) {
87
87
  g = a.substr(19);
88
88
  }
89
- this.d.dd(g, 3);
89
+ this.d.df(g, 3);
90
90
  }
91
91
  };
92
92
  CanvasImageCellPresenter.$t = markType(CanvasImageCellPresenter, 'CanvasImageCellPresenter', CanvasCellPresenterBase.$);
@@ -14,8 +14,8 @@ var CanvasNumericCell = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  tslib_1.__extends(CanvasNumericCell, _super);
15
15
  function CanvasNumericCell(a) {
16
16
  var _this = _super.call(this, a) || this;
17
- _this.cg(2);
18
- _this.co(1);
17
+ _this.ci(2);
18
+ _this.cq(1);
19
19
  return _this;
20
20
  }
21
21
  CanvasNumericCell.$t = markType(CanvasNumericCell, 'CanvasNumericCell', CanvasTextCell.$);
@@ -31,9 +31,9 @@ var CanvasNumericCellPresenter = /** @class */ /*@__PURE__*/ (function (_super)
31
31
  if (a.ay) {
32
32
  if (a.a3(NumericCellModel.l8) || b.lp()) {
33
33
  b.jb = this.e(b);
34
- this.d.cm(b.jb);
34
+ this.d.co(b.jb);
35
35
  }
36
- CanvasContentCellModelHelper.a(this.a.bm, b, this.a);
36
+ CanvasContentCellModelHelper.a(this.a.bn, b, this.a);
37
37
  }
38
38
  };
39
39
  CanvasNumericCellPresenter.prototype.e = function (a) {
@@ -42,7 +42,7 @@ var CanvasNumericCellPresenter = /** @class */ /*@__PURE__*/ (function (_super)
42
42
  var override_ = a.me;
43
43
  return (override_.format(val_));
44
44
  }
45
- return NumericCellFormatter.b(a);
45
+ return NumericCellFormatter.c(a);
46
46
  };
47
47
  CanvasNumericCellPresenter.$t = markType(CanvasNumericCellPresenter, 'CanvasNumericCellPresenter', CanvasCellPresenterBase.$);
48
48
  return CanvasNumericCellPresenter;
@@ -14,11 +14,11 @@ var CanvasSectionHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  tslib_1.__extends(CanvasSectionHeaderCell, _super);
15
15
  function CanvasSectionHeaderCell(a) {
16
16
  var _this = _super.call(this, a) || this;
17
- _this.cg(0);
18
- _this.co(1);
17
+ _this.ci(0);
18
+ _this.cq(1);
19
19
  return _this;
20
20
  }
21
- CanvasSectionHeaderCell.prototype.get_ab = function () {
21
+ CanvasSectionHeaderCell.prototype.get_ac = function () {
22
22
  return true;
23
23
  };
24
24
  CanvasSectionHeaderCell.$t = markType(CanvasSectionHeaderCell, 'CanvasSectionHeaderCell', CanvasGridCellBase.$);
@@ -45,9 +45,9 @@ var CanvasSectionHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function (_s
45
45
  b.jb = b.lz;
46
46
  }
47
47
  }
48
- this.d.cm(b.jb);
48
+ this.d.co(b.jb);
49
49
  }
50
- CanvasContentCellModelHelper.a(this.a.bm, b, this.a);
50
+ CanvasContentCellModelHelper.a(this.a.bn, b, this.a);
51
51
  }
52
52
  };
53
53
  CanvasSectionHeaderCellPresenter.$t = markType(CanvasSectionHeaderCellPresenter, 'CanvasSectionHeaderCellPresenter', CanvasCellPresenterBase.$);
@@ -18,80 +18,80 @@ var CanvasSummaryCell = /** @class */ /*@__PURE__*/ (function (_super) {
18
18
  tslib_1.__extends(CanvasSummaryCell, _super);
19
19
  function CanvasSummaryCell(a) {
20
20
  var _this = _super.call(this, a) || this;
21
- _this.dd = null;
22
- _this.di = new TextBlock();
23
- _this.c9 = 0;
24
- _this.da = 0;
25
- _this.c8 = 0;
26
- _this.c5 = null;
27
- _this.dc = 0;
28
- _this.c6 = false;
29
- _this.c7 = true;
21
+ _this.df = null;
22
+ _this.dk = new TextBlock();
30
23
  _this.db = 0;
31
- _this.cg(2);
24
+ _this.dc = 0;
25
+ _this.da = 0;
26
+ _this.c7 = null;
27
+ _this.de = 0;
28
+ _this.c8 = false;
29
+ _this.c9 = true;
30
+ _this.dd = 0;
31
+ _this.ci(2);
32
32
  return _this;
33
33
  }
34
- CanvasSummaryCell.prototype.cp = function (a) {
35
- _super.prototype.cp.call(this, a);
36
- this.bg = intDivide(a, 2);
37
- this.c7 = true;
34
+ CanvasSummaryCell.prototype.cr = function (a) {
35
+ _super.prototype.cr.call(this, a);
36
+ this.bh = intDivide(a, 2);
37
+ this.c9 = true;
38
38
  };
39
- CanvasSummaryCell.prototype.dg = function (a) {
40
- this.c5 = a;
41
- this.c6 = true;
42
- this.z = true;
43
- this.c7 = true;
39
+ CanvasSummaryCell.prototype.di = function (a) {
40
+ this.c7 = a;
41
+ this.c8 = true;
42
+ this.aa = true;
43
+ this.c9 = true;
44
44
  };
45
- CanvasSummaryCell.prototype.de = function (a) {
46
- this.dd = a;
47
- this.di.al = this.dd;
48
- this.z = true;
49
- this.c7 = true;
45
+ CanvasSummaryCell.prototype.dg = function (a) {
46
+ this.df = a;
47
+ this.dk.al = this.df;
48
+ this.aa = true;
49
+ this.c9 = true;
50
50
  };
51
- CanvasSummaryCell.prototype.df = function (a) {
52
- this.z = true;
53
- this.di.ao = ((function () {
51
+ CanvasSummaryCell.prototype.dh = function (a) {
52
+ this.aa = true;
53
+ this.dk.ao = ((function () {
54
54
  var $ret = new Brush();
55
55
  $ret.color = a;
56
56
  return $ret;
57
57
  })());
58
58
  };
59
- CanvasSummaryCell.prototype.dh = function (a) {
60
- if (this.di.al == null) {
59
+ CanvasSummaryCell.prototype.dj = function (a) {
60
+ if (this.dk.al == null) {
61
61
  return;
62
62
  }
63
63
  if (a == null) {
64
64
  return;
65
65
  }
66
- if (this.c6 || (this.c5 != null && this.c5.g != this.dc)) {
67
- this.c6 = false;
68
- this.dc = this.c5.g;
69
- a.ac(this.c5);
70
- this.c8 = FontUtil.getCurrentFontHeight(this.bm, this.c5);
66
+ if (this.c8 || (this.c7 != null && this.c7.g != this.de)) {
67
+ this.c8 = false;
68
+ this.de = this.c7.g;
69
+ a.ac(this.c7);
70
+ this.da = FontUtil.getCurrentFontHeight(this.bn, this.c7);
71
71
  }
72
- var b = this.bk;
73
- var c = this.a9;
74
- b -= (this.a6 + this.bb + this.a7 + this.bc);
75
- c -= (this.a8 + this.bd + this.a5 + this.ba);
72
+ var b = this.bl;
73
+ var c = this.ba;
74
+ b -= (this.a7 + this.bc + this.a8 + this.bd);
75
+ c -= (this.a9 + this.be + this.a6 + this.bb);
76
76
  b = Math.max(b, 0);
77
77
  c = Math.max(c, 0);
78
- this.db = this.bj(this.di, this.dd, b / 2, a);
79
- this.c9 = this.bb + this.a6;
80
- this.da = this.bd + this.a8 + ((c / 2) - (this.c8 / 2));
78
+ this.dd = this.bk(this.dk, this.df, b / 2, a);
79
+ this.db = this.bc + this.a7;
80
+ this.dc = this.be + this.a9 + ((c / 2) - (this.da / 2));
81
81
  };
82
- CanvasSummaryCell.prototype.b7 = function (a) {
83
- if (this.di.al != null) {
84
- if (this.c7) {
85
- this.dh(a);
86
- this.c7 = false;
82
+ CanvasSummaryCell.prototype.b9 = function (a) {
83
+ if (this.dk.al != null) {
84
+ if (this.c9) {
85
+ this.dj(a);
86
+ this.c9 = false;
87
87
  }
88
- this.di.n = this.c9;
89
- this.di.o = this.da;
90
- a.w(this.di);
88
+ this.dk.n = this.db;
89
+ this.dk.o = this.dc;
90
+ a.w(this.dk);
91
91
  }
92
- _super.prototype.b7.call(this, a);
92
+ _super.prototype.b9.call(this, a);
93
93
  };
94
- CanvasSummaryCell.prototype.get_ab = function () {
94
+ CanvasSummaryCell.prototype.get_ac = function () {
95
95
  return false;
96
96
  };
97
97
  CanvasSummaryCell.$t = markType(CanvasSummaryCell, 'CanvasSummaryCell', CanvasGridCellBase.$);
@@ -28,17 +28,17 @@ var CanvasSummaryCellPresenter = /** @class */ /*@__PURE__*/ (function (_super)
28
28
  var b = a;
29
29
  if (a.ay) {
30
30
  if (a.a2("ResolvedSummaryLabel") || a.a2("ResolvedSummaryValue")) {
31
- this.d.de(b.lr);
32
- this.d.cm(b.lt);
31
+ this.d.dg(b.lr);
32
+ this.d.co(b.lt);
33
33
  }
34
34
  if (a.a2("SummaryLabelTextColor")) {
35
35
  var c = CanvasContentCellModelHelper.e(b.ly);
36
- this.d.df(c);
36
+ this.d.dh(c);
37
37
  }
38
38
  if (a.a2("FontInfo")) {
39
- this.d.dg(b.ag);
39
+ this.d.di(b.ag);
40
40
  }
41
- CanvasContentCellModelHelper.a(this.a.bm, b, this.a);
41
+ CanvasContentCellModelHelper.a(this.a.bn, b, this.a);
42
42
  }
43
43
  };
44
44
  CanvasSummaryCellPresenter.$t = markType(CanvasSummaryCellPresenter, 'CanvasSummaryCellPresenter', CanvasCellPresenterBase.$);
@@ -15,22 +15,22 @@ var CanvasTemplateCell = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  tslib_1.__extends(CanvasTemplateCell, _super);
16
16
  function CanvasTemplateCell(a) {
17
17
  var _this = _super.call(this, a) || this;
18
- _this.c5 = null;
19
- _this.c5 = new CanvasTemplateCellContainer(a);
18
+ _this.c7 = null;
19
+ _this.c7 = new CanvasTemplateCellContainer(a);
20
20
  return _this;
21
21
  }
22
- Object.defineProperty(CanvasTemplateCell.prototype, "c6", {
22
+ Object.defineProperty(CanvasTemplateCell.prototype, "c8", {
23
23
  get: function () {
24
- return this.c5;
24
+ return this.c7;
25
25
  },
26
26
  enumerable: true,
27
27
  configurable: true
28
28
  });
29
- CanvasTemplateCell.prototype.get_ab = function () {
29
+ CanvasTemplateCell.prototype.get_ac = function () {
30
30
  return true;
31
31
  };
32
- CanvasTemplateCell.prototype.c7 = function () {
33
- this.b3();
32
+ CanvasTemplateCell.prototype.c9 = function () {
33
+ this.b5();
34
34
  };
35
35
  CanvasTemplateCell.$t = markType(CanvasTemplateCell, 'CanvasTemplateCell', CanvasGridCellBase.$);
36
36
  return CanvasTemplateCell;
@@ -33,10 +33,10 @@ var CanvasTemplateCellPresenter = /** @class */ /*@__PURE__*/ (function (_super)
33
33
  if (a.a3(CellModel.es) || a.a3(CellModel.gt)) {
34
34
  var d = Math.min(1, Math.max(0, a.ck));
35
35
  var e = a.ca * (1 - d);
36
- this.e.c6.opacity = e;
36
+ this.e.c8.opacity = e;
37
37
  }
38
- this.e.c7();
39
- c.ll(a, this.e);
38
+ this.e.c9();
39
+ c.lm(a, this.e);
40
40
  };
41
41
  CanvasTemplateCellPresenter.$t = markType(CanvasTemplateCellPresenter, 'CanvasTemplateCellPresenter', CanvasCellPresenterBase.$);
42
42
  return CanvasTemplateCellPresenter;
@@ -15,22 +15,22 @@ var CanvasTemplateHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  tslib_1.__extends(CanvasTemplateHeaderCell, _super);
16
16
  function CanvasTemplateHeaderCell(a) {
17
17
  var _this = _super.call(this, a) || this;
18
- _this.c5 = null;
19
- _this.c5 = new CanvasTemplateCellContainer(a);
18
+ _this.c7 = null;
19
+ _this.c7 = new CanvasTemplateCellContainer(a);
20
20
  return _this;
21
21
  }
22
- Object.defineProperty(CanvasTemplateHeaderCell.prototype, "c6", {
22
+ Object.defineProperty(CanvasTemplateHeaderCell.prototype, "c8", {
23
23
  get: function () {
24
- return this.c5;
24
+ return this.c7;
25
25
  },
26
26
  enumerable: true,
27
27
  configurable: true
28
28
  });
29
- CanvasTemplateHeaderCell.prototype.get_aa = function () {
29
+ CanvasTemplateHeaderCell.prototype.get_ab = function () {
30
30
  return true;
31
31
  };
32
- CanvasTemplateHeaderCell.prototype.c7 = function () {
33
- this.b3();
32
+ CanvasTemplateHeaderCell.prototype.c9 = function () {
33
+ this.b5();
34
34
  };
35
35
  CanvasTemplateHeaderCell.$t = markType(CanvasTemplateHeaderCell, 'CanvasTemplateHeaderCell', CanvasGridCellBase.$);
36
36
  return CanvasTemplateHeaderCell;
@@ -35,8 +35,8 @@ var CanvasTemplateHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function (_
35
35
  var e = a.ca * (1 - d);
36
36
  }
37
37
  var f = a;
38
- this.e.c7();
39
- c.fd(f, this.e);
38
+ this.e.c9();
39
+ c.fe(f, this.e);
40
40
  };
41
41
  CanvasTemplateHeaderCellPresenter.$t = markType(CanvasTemplateHeaderCellPresenter, 'CanvasTemplateHeaderCellPresenter', CanvasCellPresenterBase.$);
42
42
  return CanvasTemplateHeaderCellPresenter;
@@ -14,11 +14,11 @@ var CanvasTextCell = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  tslib_1.__extends(CanvasTextCell, _super);
15
15
  function CanvasTextCell(a) {
16
16
  var _this = _super.call(this, a) || this;
17
- _this.cg(0);
18
- _this.co(1);
17
+ _this.ci(0);
18
+ _this.cq(1);
19
19
  return _this;
20
20
  }
21
- CanvasTextCell.prototype.get_ab = function () {
21
+ CanvasTextCell.prototype.get_ac = function () {
22
22
  return true;
23
23
  };
24
24
  CanvasTextCell.$t = markType(CanvasTextCell, 'CanvasTextCell', CanvasGridCellBase.$);
@@ -41,9 +41,9 @@ var CanvasTextCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
41
41
  b.jb = b.g3.toString();
42
42
  }
43
43
  }
44
- this.d.cm(b.jb);
44
+ this.d.co(b.jb);
45
45
  }
46
- CanvasContentCellModelHelper.a(this.a.bm, b, this.a);
46
+ CanvasContentCellModelHelper.a(this.a.bn, b, this.a);
47
47
  }
48
48
  };
49
49
  CanvasTextCellPresenter.$t = markType(CanvasTextCellPresenter, 'CanvasTextCellPresenter', CanvasCellPresenterBase.$);
@@ -15,46 +15,46 @@ var CanvasTextHeaderCell = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  tslib_1.__extends(CanvasTextHeaderCell, _super);
16
16
  function CanvasTextHeaderCell(a) {
17
17
  var _this = _super.call(this, a) || this;
18
- _this.c5 = null;
19
- _this.c8 = null;
20
18
  _this.c7 = null;
21
- _this.cg(0);
22
- _this.co(1);
23
- _this.c5 = new GridSortIndicator();
19
+ _this.da = null;
20
+ _this.c9 = null;
21
+ _this.ci(0);
22
+ _this.cq(1);
23
+ _this.c7 = new GridSortIndicator();
24
24
  var b = a.createElement("div");
25
25
  b.setRawStyleProperty("display", "inline-block");
26
26
  b.setRawStyleProperty("width", "16px");
27
27
  b.setRawStyleProperty("height", "16px");
28
- _this.c8 = b;
29
- var c = a.getSubRenderer(_this.c8);
30
- _this.c5.ax(c);
31
- _this.c5.w = window.devicePixelRatio;
32
- var d = _this.c5;
33
- d.renderCompleted = delegateCombine(d.renderCompleted, function (d, e) { return _this.b5(); });
34
- _this.c5.ar(16, 16);
35
- _this.c7 = _this.c5.ad();
28
+ _this.da = b;
29
+ var c = a.getSubRenderer(_this.da);
30
+ _this.c7.ax(c);
31
+ _this.c7.w = window.devicePixelRatio;
32
+ var d = _this.c7;
33
+ d.renderCompleted = delegateCombine(d.renderCompleted, function (d, e) { return _this.b7(); });
34
+ _this.c7.ar(16, 16);
35
+ _this.c9 = _this.c7.ad();
36
36
  return _this;
37
37
  }
38
- Object.defineProperty(CanvasTextHeaderCell.prototype, "c6", {
38
+ Object.defineProperty(CanvasTextHeaderCell.prototype, "c8", {
39
39
  get: function () {
40
- return this.c5;
40
+ return this.c7;
41
41
  },
42
42
  enumerable: true,
43
43
  configurable: true
44
44
  });
45
- CanvasTextHeaderCell.prototype.c9 = function (a) {
46
- this.c6.b = a;
47
- this.b5();
45
+ CanvasTextHeaderCell.prototype.db = function (a) {
46
+ this.c8.b = a;
47
+ this.b7();
48
48
  };
49
- CanvasTextHeaderCell.prototype.b7 = function (a) {
50
- _super.prototype.b7.call(this, a);
51
- var b = this.bh + 5;
49
+ CanvasTextHeaderCell.prototype.b9 = function (a) {
50
+ _super.prototype.b9.call(this, a);
51
+ var b = this.bi + 5;
52
52
  if (this.d == 2) {
53
- b = this.bf - 21;
53
+ b = this.bg - 21;
54
54
  }
55
- a.m(this.c7, 1, b, this.bi - 8, 16, 16);
55
+ a.m(this.c9, 1, b, this.bj - 8, 16, 16);
56
56
  };
57
- CanvasTextHeaderCell.prototype.get_aa = function () {
57
+ CanvasTextHeaderCell.prototype.get_ab = function () {
58
58
  return true;
59
59
  };
60
60
  CanvasTextHeaderCell.$t = markType(CanvasTextHeaderCell, 'CanvasTextHeaderCell', CanvasGridCellBase.$);
@@ -38,35 +38,35 @@ var CanvasTextHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function (_supe
38
38
  if (a.ay) {
39
39
  if (a.a3(TextCellModel.lj)) {
40
40
  b.jb = b.ll;
41
- this.d.cm(b.jb);
41
+ this.d.co(b.jb);
42
42
  }
43
43
  if (a.a3(CellModel.gl)) {
44
44
  if (a.bk) {
45
- this.d.c6.l = false;
45
+ this.d.c8.l = false;
46
46
  }
47
47
  if (this.e == null) {
48
48
  var c_1 = a.p;
49
- this.e = function () { return c_1.wf(); };
49
+ this.e = function () { return c_1.xc(); };
50
50
  }
51
- this.d.c9(a.n);
52
- this.d.ck(runOn(this, this.f));
51
+ this.d.db(a.n);
52
+ this.d.cm(runOn(this, this.f));
53
53
  if (a.bk) {
54
- this.d.c6.l = true;
54
+ this.d.c8.l = true;
55
55
  }
56
56
  }
57
57
  if (a.a3(CellModel.gm)) {
58
58
  if (a.bk) {
59
- this.d.c6.l = false;
59
+ this.d.c8.l = false;
60
60
  }
61
- this.d.c6.a0 = a.le;
61
+ this.d.c8.a0 = a.le;
62
62
  if (a.bk) {
63
- this.d.c6.l = true;
63
+ this.d.c8.l = true;
64
64
  }
65
65
  }
66
66
  if (a.a2("SortIndicatorStyle")) {
67
- this.d.c6.f = b.ls;
67
+ this.d.c8.f = b.ls;
68
68
  }
69
- CanvasContentCellModelHelper.a(this.a.bm, b, this.a);
69
+ CanvasContentCellModelHelper.a(this.a.bn, b, this.a);
70
70
  }
71
71
  };
72
72
  CanvasTextHeaderCellPresenter.$t = markType(CanvasTextHeaderCellPresenter, 'CanvasTextHeaderCellPresenter', CanvasCellPresenterBase.$);
@@ -37,7 +37,7 @@ var CellPresenterBase = /** @class */ /*@__PURE__*/ (function (_super) {
37
37
  if (a.aw) {
38
38
  this.a.by(a.k1, a.dy, a.d3, a.d1, a.dw);
39
39
  if (a.a3(CellModel.du)) {
40
- if (!a.ba && a.p.ic && a.a7 && a.b7 == 1) {
40
+ if (!a.ba && a.p.iw && a.a7 && a.b7 == 1) {
41
41
  this.a.be();
42
42
  }
43
43
  }