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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -29,23 +29,23 @@ export var CanvasImageCellPresenter = /** @class */ /*@__PURE__*/ (function (_su
29
29
  _super.prototype.b.call(this, a);
30
30
  var b = a;
31
31
  if (a.a7) {
32
- if (a.bc(CellModel.fp) || a.bc(CellModel.h5)) {
32
+ if (a.bc(CellModel.fp) || a.bc(CellModel.h7)) {
33
33
  var c = Math.min(1, Math.max(0, a.c7));
34
34
  var d = a.cs * (1 - c);
35
35
  this.d.dd = d;
36
36
  }
37
- if (b.bc(ImageCellModel.n5) || b.bc(ImageCellModel.n6)) {
38
- this.e(b.n9, b.n2);
37
+ if (b.bc(ImageCellModel.od) || b.bc(ImageCellModel.oe)) {
38
+ this.e(b.oh, b.oa);
39
39
  }
40
- if (b.bc(ImageCellModel.n7) || b.bc(ImageCellModel.gb) || b.bc(ImageCellModel.h4)) {
41
- this.f(b.n4, b.g, b.i);
40
+ if (b.bc(ImageCellModel.of) || b.bc(ImageCellModel.gc) || b.bc(ImageCellModel.h6)) {
41
+ this.f(b.oc, b.g, b.i);
42
42
  }
43
- if (b.bc(ImageCellModel.hl)) {
43
+ if (b.bc(ImageCellModel.hn)) {
44
44
  if (a.u == 1) {
45
45
  this.d.dg();
46
46
  }
47
47
  else if (a.u == 2) {
48
- this.e(b.n9, b.n2);
48
+ this.e(b.oh, b.oa);
49
49
  }
50
50
  }
51
51
  }
@@ -29,20 +29,20 @@ export var CanvasNumericCellPresenter = /** @class */ /*@__PURE__*/ (function (_
29
29
  _super.prototype.b.call(this, a);
30
30
  var b = a;
31
31
  if (a.a7) {
32
- if (a.bc(NumericCellModel.oq) || a.bc(NumericCellModel.oe) || a.bc(NumericCellModel.h3) || b.n7()) {
33
- b.ky = this.e(b);
34
- this.d.cr(b.ky);
32
+ if (a.bc(NumericCellModel.o1) || a.bc(NumericCellModel.oo) || a.bc(NumericCellModel.h5) || b.og()) {
33
+ b.k1 = this.e(b);
34
+ this.d.cr(b.k1);
35
35
  }
36
36
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
37
37
  }
38
38
  };
39
39
  CanvasNumericCellPresenter.prototype.e = function (a) {
40
- if (a.lu != null) {
41
- return a.lu;
40
+ if (a.ly != null) {
41
+ return a.ly;
42
42
  }
43
- if (a.ow != null) {
44
- var val_ = a.oa;
45
- var override_ = a.ow;
43
+ if (a.o7 != null) {
44
+ var val_ = a.ok;
45
+ var override_ = a.o7;
46
46
  return (override_.format(val_));
47
47
  }
48
48
  return NumericCellFormatter.c(a);
@@ -28,24 +28,24 @@ export var CanvasSectionHeaderCellPresenter = /** @class */ /*@__PURE__*/ (funct
28
28
  _super.prototype.b.call(this, a);
29
29
  var b = a;
30
30
  if (a.a7) {
31
- if (a.bc(SectionHeaderCellModel.n7) || a.bc(SectionHeaderCellModel.n9)) {
32
- if (b.n3 == null || (b.n3.length == 0 && b.oh == null)) {
33
- if (b.ig == null) {
34
- b.ky = "";
31
+ if (a.bc(SectionHeaderCellModel.of) || a.bc(SectionHeaderCellModel.oh)) {
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.ky = b.ig.toString();
37
+ b.k1 = b.ii.toString();
38
38
  }
39
39
  }
40
40
  else {
41
- if (b.of != null && b.n6 == 0) {
42
- b.ky = b.oh + "    " + b.of;
41
+ if (b.on != null && b.oe == 0) {
42
+ b.k1 = b.op + "    " + b.on;
43
43
  }
44
44
  else {
45
- b.ky = b.oh;
45
+ b.k1 = b.op;
46
46
  }
47
47
  }
48
- this.d.cr(b.ky);
48
+ this.d.cr(b.k1);
49
49
  }
50
50
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
51
51
  }
@@ -27,18 +27,18 @@ export var CanvasSummaryCellPresenter = /** @class */ /*@__PURE__*/ (function (_
27
27
  _super.prototype.b.call(this, a);
28
28
  var b = a;
29
29
  if (a.a7) {
30
+ CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
30
31
  if (a.bb("ResolvedSummaryLabel") || a.bb("ResolvedSummaryValue")) {
31
- this.d.dj(b.n9);
32
- this.d.cr(b.ob);
32
+ this.d.dj(b.oh);
33
+ this.d.cr(b.oj);
33
34
  }
34
35
  if (a.bb("SummaryLabelTextColor")) {
35
- var c = CanvasContentCellModelHelper.e(b.og);
36
+ var c = CanvasContentCellModelHelper.e(b.oo);
36
37
  this.d.dk(c);
37
38
  }
38
- if (a.bb("FontInfo")) {
39
- this.d.dl(b.aj);
39
+ if (a.bb("FontInfo") || a.bb("SummaryLabelFontInfo")) {
40
+ this.d.dl(b.oa);
40
41
  }
41
- CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
42
42
  }
43
43
  };
44
44
  CanvasSummaryCellPresenter.$t = markType(CanvasSummaryCellPresenter, 'CanvasSummaryCellPresenter', CanvasCellPresenterBase.$);
@@ -30,13 +30,13 @@ export var CanvasTemplateCellPresenter = /** @class */ /*@__PURE__*/ (function (
30
30
  _super.prototype.b.call(this, a);
31
31
  var b = a;
32
32
  var c = this.e.actualColumns._inner[a.l.a5];
33
- if (a.bc(CellModel.fp) || a.bc(CellModel.h5)) {
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
36
  this.d.db.opacity = e;
37
37
  }
38
38
  this.d.dc();
39
- c.rx(a, this.d);
39
+ c.r8(a, this.d);
40
40
  };
41
41
  CanvasTemplateCellPresenter.$t = markType(CanvasTemplateCellPresenter, 'CanvasTemplateCellPresenter', CanvasCellPresenterBase.$);
42
42
  return CanvasTemplateCellPresenter;
@@ -30,13 +30,13 @@ export var CanvasTemplateHeaderCellPresenter = /** @class */ /*@__PURE__*/ (func
30
30
  _super.prototype.b.call(this, a);
31
31
  var b = this.e.actualColumns._inner[a.l.a5];
32
32
  var c = b.header;
33
- if (a.bc(CellModel.fp) || a.bc(CellModel.h5)) {
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
36
  }
37
37
  var f = a;
38
38
  this.d.dc();
39
- c.ht(f, this.d);
39
+ c.hu(f, this.d);
40
40
  };
41
41
  CanvasTemplateHeaderCellPresenter.$t = markType(CanvasTemplateHeaderCellPresenter, 'CanvasTemplateHeaderCellPresenter', CanvasCellPresenterBase.$);
42
42
  return CanvasTemplateHeaderCellPresenter;
@@ -28,26 +28,26 @@ export var CanvasTextCellPresenter = /** @class */ /*@__PURE__*/ (function (_sup
28
28
  _super.prototype.b.call(this, a);
29
29
  var b = a;
30
30
  if (a.a7) {
31
- if (a.bc(TextCellModel.n1) || a.bc(TextCellModel.h3) || a.bc(TextCellModel.gy)) {
32
- b.ky = this.e(b);
33
- this.d.cr(b.ky);
31
+ if (a.bc(TextCellModel.n9) || a.bc(TextCellModel.h5) || a.bc(TextCellModel.gz)) {
32
+ b.k1 = this.e(b);
33
+ this.d.cr(b.k1);
34
34
  }
35
35
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
36
36
  }
37
37
  };
38
38
  CanvasTextCellPresenter.prototype.e = function (a) {
39
- if (a.lu != null) {
40
- return a.lu;
39
+ if (a.ly != null) {
40
+ return a.ly;
41
41
  }
42
- if (a.n3 != null) {
43
- return a.n3;
42
+ if (a.ob != null) {
43
+ return a.ob;
44
44
  }
45
45
  else {
46
- if (a.ig == null) {
46
+ if (a.ii == null) {
47
47
  return "";
48
48
  }
49
49
  else {
50
- return a.ig.toString();
50
+ return a.ii.toString();
51
51
  }
52
52
  }
53
53
  };
@@ -36,11 +36,11 @@ export var CanvasTextHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function
36
36
  _super.prototype.b.call(this, a);
37
37
  var b = a;
38
38
  if (a.a7) {
39
- if (a.bc(TextCellModel.n1)) {
40
- b.ky = b.n3;
41
- this.d.cr(b.ky);
39
+ if (a.bc(TextCellModel.n9)) {
40
+ b.k1 = b.ob;
41
+ this.d.cr(b.k1);
42
42
  }
43
- if (a.bc(CellModel.hj)) {
43
+ if (a.bc(CellModel.hl)) {
44
44
  if (a.bt) {
45
45
  this.d.db.m = false;
46
46
  }
@@ -54,17 +54,17 @@ export var CanvasTextHeaderCellPresenter = /** @class */ /*@__PURE__*/ (function
54
54
  this.d.db.m = true;
55
55
  }
56
56
  }
57
- if (a.bc(CellModel.hk)) {
57
+ if (a.bc(CellModel.hm)) {
58
58
  if (a.bt) {
59
59
  this.d.db.m = false;
60
60
  }
61
- this.d.db.a3 = a.nt;
61
+ this.d.db.a3 = a.n1;
62
62
  if (a.bt) {
63
63
  this.d.db.m = true;
64
64
  }
65
65
  }
66
66
  if (a.bb("SortIndicatorStyle")) {
67
- this.d.db.f = b.oa;
67
+ this.d.db.f = b.oi;
68
68
  }
69
69
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
70
70
  }
@@ -25,86 +25,89 @@ export var CellPresenterBase = /** @class */ /*@__PURE__*/ (function (_super) {
25
25
  this.b(a);
26
26
  };
27
27
  CellPresenterBase.prototype.b = function (a) {
28
- this.a.cv(a.c);
29
- this.a.c4(a.e);
30
- this.a.cy(a.d);
31
- this.a.cj();
32
- if (a.bc(CellModel.gn)) {
28
+ this.a.cw(a.c);
29
+ this.a.c5(a.e);
30
+ this.a.cz(a.d);
31
+ this.a.ck();
32
+ if (a.bc(CellModel.go)) {
33
33
  this.a.ad = a.bh;
34
34
  }
35
35
  if (a.bc(CellModel.e0) || a.bc(CellModel.e4) || a.bc(CellModel.e2) || a.bc(CellModel.ey)) {
36
- this.a.c6(a.ez, a.e3, a.e1, a.ex);
36
+ this.a.c7(a.ez, a.e3, a.e1, a.ex);
37
37
  }
38
38
  if (a.a5) {
39
- this.a.cx(a.ne, a.en, a.es, a.eq, a.el);
39
+ this.a.cy(a.nk, a.en, a.es, a.eq, a.el);
40
40
  if (a.bc(CellModel.ej)) {
41
41
  if (!a.bj && a.p.i8 && a.bg && a.co == 1) {
42
- this.a.b9();
42
+ this.a.ca();
43
43
  }
44
44
  }
45
45
  }
46
46
  if (a.bs) {
47
- this.a.c1(a.f9, (a.e3 + a.ex + a.es + a.el));
48
- this.a.dc(a.h6, (a.ez + a.e1 + a.en + a.eq));
47
+ this.a.c2(a.ga, (a.e3 + a.ex + a.es + a.el));
48
+ this.a.dd(a.h8, (a.ez + a.e1 + a.en + a.eq));
49
49
  }
50
50
  if (a.a7) {
51
51
  if (a.bm && !this.a.z) {
52
- this.a.b8();
52
+ this.a.b9();
53
53
  }
54
54
  if (a.bc(CellModel.ek)) {
55
- this.a.cw(a.nd.color);
55
+ this.a.cx(a.nj.color);
56
56
  }
57
57
  if (a.bc(CellModel.ew)) {
58
- this.a.c5(a.cq);
58
+ this.a.c6(a.cq);
59
59
  }
60
60
  if (a.bb("IsCollapsable")) {
61
61
  this.a.aa = a.a6;
62
- this.a.bi = a.gf;
62
+ this.a.bi = a.gg;
63
63
  this.a.ab = a.be;
64
- this.a.dc(a.h6, (a.ez + a.e1 + a.en + a.eq));
64
+ this.a.dd(a.h8, (a.ez + a.e1 + a.en + a.eq));
65
65
  }
66
66
  if (a.bb("Indent")) {
67
- this.a.bi = a.gf;
68
- this.a.dc(a.h6, (a.ez + a.e1 + a.en + a.eq));
67
+ this.a.bi = a.gg;
68
+ this.a.dd(a.h8, (a.ez + a.e1 + a.en + a.eq));
69
69
  }
70
70
  if (a.bb("IsExpanded")) {
71
71
  this.a.ab = a.be;
72
72
  }
73
- if (a.bc(CellModel.hy)) {
74
- this.a.b3 = a.ll;
73
+ if (a.bb("IsCollapsable") || a.bb("ExpansionIndicatorIconColor")) {
74
+ this.a.dt = a.ns;
75
75
  }
76
- if (a.bc(CellModel.hw)) {
77
- this.a.dt = a.nx;
76
+ if (a.bc(CellModel.h0)) {
77
+ this.a.b4 = a.lp;
78
78
  }
79
- if (a.bc(CellModel.hx)) {
79
+ if (a.bc(CellModel.hy)) {
80
+ this.a.dw = a.n5;
81
+ }
82
+ if (a.bc(CellModel.hz)) {
80
83
  this.a.n = a.ak;
81
84
  }
85
+ if (a.bc(CellModel.hr)) {
86
+ this.a.bz = a.lh;
87
+ }
82
88
  if (a.bc(CellModel.hp)) {
83
- this.a.by = a.ld;
89
+ this.a.bw = a.le;
84
90
  }
85
- if (a.bc(CellModel.hn)) {
86
- this.a.bv = a.la;
91
+ if (a.bc(CellModel.hs)) {
92
+ this.a.dv = a.n4;
87
93
  }
88
94
  if (a.bc(CellModel.hq)) {
89
- this.a.ds = a.nw;
90
- }
91
- if (a.bc(CellModel.ho)) {
92
- this.a.dr = a.nv;
95
+ this.a.du = a.n3;
93
96
  }
94
- if (a.bc(CellModel.hv)) {
97
+ if (a.bc(CellModel.hx)) {
95
98
  this.a.aj = a.c4;
96
99
  }
97
- if (a.bc(CellModel.hs) || a.bc(CellModel.ht) || a.bc(CellModel.hu) || a.bc(CellModel.hu)) {
98
- this.a.dv = new Rect(0, a.c1, a.c2, a.c3, a.c0);
100
+ if (a.bc(CellModel.hu) || a.bc(CellModel.hv) || a.bc(CellModel.hw) || a.bc(CellModel.hw)) {
101
+ this.a.dy = new Rect(0, a.c1, a.c2, a.c3, a.c0);
99
102
  }
100
103
  }
101
104
  if (a.bs && a.bm) {
102
- this.a.dk(a);
105
+ this.a.dl(a);
103
106
  }
104
107
  if (a.bb("DoClone")) {
105
108
  if (a.a1) {
106
109
  a.a1 = false;
107
- this.a.b7();
110
+ this.a.b8();
108
111
  }
109
112
  }
110
113
  };
@@ -1037,7 +1037,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1037
1037
  if (-1 == c) {
1038
1038
  return;
1039
1039
  }
1040
- var d = b.cellInfo.ih;
1040
+ var d = b.cellInfo.ij;
1041
1041
  var e = this.j(d);
1042
1042
  if (this.a6) {
1043
1043
  if (this.keys.contains(e)) {
@@ -1080,8 +1080,8 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1080
1080
  return;
1081
1081
  }
1082
1082
  var d = false;
1083
- if (b.cellInfo.ih != null) {
1084
- var e = this.j(b.cellInfo.ih);
1083
+ if (b.cellInfo.ij != null) {
1084
+ var e = this.j(b.cellInfo.ij);
1085
1085
  if (this.keys.contains(e)) {
1086
1086
  d = true;
1087
1087
  }
@@ -1098,13 +1098,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1098
1098
  var f = null;
1099
1099
  var g = null;
1100
1100
  var h = null;
1101
- if (b.cellInfo.ih != null) {
1102
- d = this.ai.getPropertyValue(b.cellInfo.ih);
1101
+ if (b.cellInfo.ij != null) {
1102
+ d = this.ai.getPropertyValue(b.cellInfo.ij);
1103
1103
  if (this.al != null) {
1104
- e = this.al.getPropertyValue(b.cellInfo.ih);
1104
+ e = this.al.getPropertyValue(b.cellInfo.ij);
1105
1105
  }
1106
1106
  if (this.aj != null) {
1107
- var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.ih));
1107
+ var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.ij));
1108
1108
  if (i == 0) {
1109
1109
  h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
1110
1110
  }
@@ -1685,7 +1685,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1685
1685
  case "CheckboxCornerRadius":
1686
1686
  this.view.af();
1687
1687
  if (this.g != null) {
1688
- this.g.yv();
1688
+ this.g.yx();
1689
1689
  }
1690
1690
  break;
1691
1691
  case "CheckboxAlignedRight":
@@ -1695,7 +1695,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1695
1695
  break;
1696
1696
  case "DataLegendTarget":
1697
1697
  if (this.g != null) {
1698
- this.g.yv();
1698
+ this.g.yx();
1699
1699
  }
1700
1700
  break;
1701
1701
  }
@@ -1828,23 +1828,23 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1828
1828
  if (this.bw == null) {
1829
1829
  this.bw = "";
1830
1830
  }
1831
- a.nf = this.bw;
1832
- a.n6 = "CheckboxColumn";
1831
+ a.nj = this.bw;
1832
+ a.ob = "CheckboxColumn";
1833
1833
  var b = new ColumnWidth();
1834
1834
  b.c = false;
1835
1835
  b.f = 28;
1836
1836
  a.width = b;
1837
- a.lj = 0;
1838
- a.lk = 0;
1837
+ a.lm = 0;
1838
+ a.ln = 0;
1839
1839
  a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.de));
1840
1840
  this.k = a;
1841
1841
  this.g.columns.add(a);
1842
1842
  var c = this.g.actualDataSource.resolveSchemaPropertyType(this.bt);
1843
1843
  if ((this.bx != null || this.bv != null) && (c == 0 || c == 11 || c == 2)) {
1844
1844
  var d = new TemplateColumn();
1845
- d.nf = this.bt;
1846
- d.n6 = "DataColumn";
1847
- d.lj = 0;
1845
+ d.nj = this.bt;
1846
+ d.ob = "DataColumn";
1847
+ d.lm = 0;
1848
1848
  d.g = 0;
1849
1849
  d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.en));
1850
1850
  this.g.columns.add(d);
@@ -1852,7 +1852,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1852
1852
  else {
1853
1853
  var e = void 0;
1854
1854
  if (this.f != null) {
1855
- e = this.f.h0();
1855
+ e = this.f.h1();
1856
1856
  e.onAttachingOverride = delegateCombine(e.onAttachingOverride, runOn(this, this.dm));
1857
1857
  }
1858
1858
  else {
@@ -1878,9 +1878,9 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1878
1878
  break;
1879
1879
  }
1880
1880
  }
1881
- e.nf = this.bt;
1882
- e.n6 = "DataColumn";
1883
- e.lj = 0;
1881
+ e.nj = this.bt;
1882
+ e.ob = "DataColumn";
1883
+ e.lm = 0;
1884
1884
  e.g = 0;
1885
1885
  this.g.columns.add(e);
1886
1886
  }
@@ -1888,15 +1888,15 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1888
1888
  var g = new ColumnWidth();
1889
1889
  g.c = false;
1890
1890
  g.f = 10;
1891
- f.nf = "PaddingColumn";
1892
- f.n6 = "PaddingColumn";
1893
- f.lj = 0;
1891
+ f.nj = "PaddingColumn";
1892
+ f.ob = "PaddingColumn";
1893
+ f.lm = 0;
1894
1894
  f.width = g;
1895
1895
  this.g.columns.add(f);
1896
1896
  };
1897
1897
  CheckboxList.prototype.dm = function (a, b) {
1898
1898
  var c = b.b;
1899
- c.g1 = 0;
1899
+ c.g2 = 0;
1900
1900
  c.g = 0;
1901
1901
  };
1902
1902
  CheckboxList.prototype.updateHrMargin = function (a) {
@@ -346,12 +346,12 @@ export var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
346
346
  for (var _b = __values(fromEnum(this.b.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
347
347
  var c = _c.value;
348
348
  a = new ColumnChooserInfo();
349
- var d = c.nf;
350
- if (c.nm != null) {
351
- d = c.nm;
349
+ var d = c.nj;
350
+ if (c.nq != null) {
351
+ d = c.nq;
352
352
  }
353
353
  a.columnName = d;
354
- a.isNotHidden = !c.j9;
354
+ a.isNotHidden = !c.kb;
355
355
  b.add(a);
356
356
  }
357
357
  }
@@ -394,7 +394,7 @@ export var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
394
394
  for (var _b = __values(fromEnum(this.b.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
395
395
  var a = _c.value;
396
396
  this.m = true;
397
- a.j9 = false;
397
+ a.kb = false;
398
398
  }
399
399
  }
400
400
  catch (e_2_1) {
@@ -420,7 +420,7 @@ export var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
420
420
  for (var _b = __values(fromEnum(this.b.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
421
421
  var a = _c.value;
422
422
  this.m = true;
423
- a.j9 = true;
423
+ a.kb = true;
424
424
  }
425
425
  }
426
426
  catch (e_3_1) {
@@ -452,9 +452,9 @@ export var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
452
452
  var c = this.d.g.actualDataSource.getItemAtIndex(b.c);
453
453
  var d = this.b.actualColumns.count;
454
454
  for (var e = 0; e < d; e++) {
455
- if (this.b.actualColumns._inner[e].nf == c.columnName || this.b.actualColumns._inner[e].n6 == c.columnName || this.b.actualColumns._inner[e].nm == c.columnName) {
456
- this.b.actualColumns._inner[e].j9 = !b.b;
457
- this.b.actualColumns._inner[e].o9("Hidden");
455
+ if (this.b.actualColumns._inner[e].nj == c.columnName || this.b.actualColumns._inner[e].ob == c.columnName || this.b.actualColumns._inner[e].nq == c.columnName) {
456
+ this.b.actualColumns._inner[e].kb = !b.b;
457
+ this.b.actualColumns._inner[e].pf("Hidden");
458
458
  }
459
459
  }
460
460
  };