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
@@ -24,18 +24,18 @@ let CanvasCellPresenterBase = /*@__PURE__*/ (() => {
24
24
  this.a.cn(a.ez, a.e3, a.e1, a.ex);
25
25
  }
26
26
  if (a.a5) {
27
- this.a.ch(a.ne, a.en, a.es, a.eq, a.el);
27
+ this.a.ch(a.nk, a.en, a.es, a.eq, a.el);
28
28
  }
29
29
  if (a.bs) {
30
- this.a.ck(a.f9);
31
- this.a.cu(a.h6);
30
+ this.a.ck(a.ga);
31
+ this.a.cu(a.h8);
32
32
  }
33
33
  if (a.a7) {
34
34
  if (a.bm && !this.a.z) {
35
35
  this.a.b5();
36
36
  }
37
37
  if (a.bc(CellModel.ek)) {
38
- this.a.cg(a.nd.color);
38
+ this.a.cg(a.nj.color);
39
39
  }
40
40
  if (a.bc(CellModel.ew)) {
41
41
  this.a.cm(a.cq);
@@ -18,7 +18,7 @@ let CanvasContentCellModelHelper = /*@__PURE__*/ (() => {
18
18
  }
19
19
  static a(a, b, c) {
20
20
  if (b.a7) {
21
- if (b.bc(CellModel.fp) || b.bc(CellModel.eu) || b.bc(CellModel.h5) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
21
+ if (b.bc(CellModel.fp) || b.bc(CellModel.eu) || b.bc(CellModel.h7) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
22
22
  let d = Math.min(1, Math.max(0, b.c7));
23
23
  let e = b.cp * (1 - d);
24
24
  c.ci(e);
@@ -27,14 +27,14 @@ let CanvasContentCellModelHelper = /*@__PURE__*/ (() => {
27
27
  }
28
28
  }
29
29
  if (b.bc(CellModel.e5)) {
30
- CanvasContentCellModelHelper.c(c, b.nf);
30
+ CanvasContentCellModelHelper.c(c, b.nl);
31
31
  if (b.bm) {
32
- c.cw(b.nf);
32
+ c.cw(b.nl);
33
33
  }
34
34
  }
35
- if (b.bc(CellModel.gv)) {
35
+ if (b.bc(CellModel.gw)) {
36
36
  }
37
- if (b.bc(CellModel.gb) || b.bc(CellModel.h4)) {
37
+ if (b.bc(CellModel.gc) || b.bc(CellModel.h6)) {
38
38
  let f = b.g;
39
39
  let g = b.i;
40
40
  c.cl(f);
@@ -21,22 +21,22 @@ let CanvasDateTimeCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = a;
23
23
  if (a.a7) {
24
- if (a.bc(DateTimeCellModel.od) || a.bc(DateTimeCellModel.oe) || a.bc(DateTimeCellModel.oc) || a.bc(DateTimeCellModel.gy) || a.bc(DateTimeCellModel.h3)) {
24
+ if (a.bc(DateTimeCellModel.ol) || a.bc(DateTimeCellModel.om) || a.bc(DateTimeCellModel.ok) || a.bc(DateTimeCellModel.gz) || a.bc(DateTimeCellModel.h5)) {
25
25
  this.e(b);
26
- this.d.cr(b.ky);
26
+ this.d.cr(b.k1);
27
27
  }
28
28
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
29
29
  }
30
30
  }
31
31
  e(a) {
32
- if (a.lu != null) {
33
- a.ky = a.lu;
32
+ if (a.ly != null) {
33
+ a.k1 = a.ly;
34
34
  return;
35
35
  }
36
- a.ky = a.op(a.ob);
37
- if (a.ky == stringEmpty()) {
38
- if (!(typeCast(Date_$type, a.ig) !== null)) {
39
- a.ky = a.ig.toString();
36
+ a.k1 = a.ox(a.oj);
37
+ if (a.k1 == stringEmpty()) {
38
+ if (!(typeCast(Date_$type, a.ii) !== null)) {
39
+ a.k1 = a.ii.toString();
40
40
  }
41
41
  }
42
42
  }
@@ -524,8 +524,8 @@ let CanvasGridCellBase = /*@__PURE__*/ (() => {
524
524
  if (this.a1 != b) {
525
525
  this.a1 = b;
526
526
  }
527
- let c = a.h6 * 0.2;
528
- let d = a.f9 * 0.6;
527
+ let c = a.h8 * 0.2;
528
+ let d = a.ga * 0.6;
529
529
  if (this.a2 >= c && this.a2 <= d) {
530
530
  return;
531
531
  }
@@ -21,23 +21,23 @@ let CanvasImageCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = a;
23
23
  if (a.a7) {
24
- if (a.bc(CellModel.fp) || a.bc(CellModel.h5)) {
24
+ if (a.bc(CellModel.fp) || a.bc(CellModel.h7)) {
25
25
  let c = Math.min(1, Math.max(0, a.c7));
26
26
  let d = a.cs * (1 - c);
27
27
  this.d.dd = d;
28
28
  }
29
- if (b.bc(ImageCellModel.n5) || b.bc(ImageCellModel.n6)) {
30
- this.e(b.n9, b.n2);
29
+ if (b.bc(ImageCellModel.od) || b.bc(ImageCellModel.oe)) {
30
+ this.e(b.oh, b.oa);
31
31
  }
32
- if (b.bc(ImageCellModel.n7) || b.bc(ImageCellModel.gb) || b.bc(ImageCellModel.h4)) {
33
- this.f(b.n4, b.g, b.i);
32
+ if (b.bc(ImageCellModel.of) || b.bc(ImageCellModel.gc) || b.bc(ImageCellModel.h6)) {
33
+ this.f(b.oc, b.g, b.i);
34
34
  }
35
- if (b.bc(ImageCellModel.hl)) {
35
+ if (b.bc(ImageCellModel.hn)) {
36
36
  if (a.u == 1) {
37
37
  this.d.dg();
38
38
  }
39
39
  else if (a.u == 2) {
40
- this.e(b.n9, b.n2);
40
+ this.e(b.oh, b.oa);
41
41
  }
42
42
  }
43
43
  }
@@ -21,20 +21,20 @@ let CanvasNumericCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = a;
23
23
  if (a.a7) {
24
- if (a.bc(NumericCellModel.oq) || a.bc(NumericCellModel.oe) || a.bc(NumericCellModel.h3) || b.n7()) {
25
- b.ky = this.e(b);
26
- this.d.cr(b.ky);
24
+ if (a.bc(NumericCellModel.o1) || a.bc(NumericCellModel.oo) || a.bc(NumericCellModel.h5) || b.og()) {
25
+ b.k1 = this.e(b);
26
+ this.d.cr(b.k1);
27
27
  }
28
28
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
29
29
  }
30
30
  }
31
31
  e(a) {
32
- if (a.lu != null) {
33
- return a.lu;
32
+ if (a.ly != null) {
33
+ return a.ly;
34
34
  }
35
- if (a.ow != null) {
36
- let val_ = a.oa;
37
- let override_ = a.ow;
35
+ if (a.o7 != null) {
36
+ let val_ = a.ok;
37
+ let override_ = a.o7;
38
38
  return (override_.format(val_));
39
39
  }
40
40
  return NumericCellFormatter.c(a);
@@ -20,24 +20,24 @@ let CanvasSectionHeaderCellPresenter = /*@__PURE__*/ (() => {
20
20
  super.b(a);
21
21
  let b = a;
22
22
  if (a.a7) {
23
- if (a.bc(SectionHeaderCellModel.n7) || a.bc(SectionHeaderCellModel.n9)) {
24
- if (b.n3 == null || (b.n3.length == 0 && b.oh == null)) {
25
- if (b.ig == null) {
26
- b.ky = "";
23
+ if (a.bc(SectionHeaderCellModel.of) || a.bc(SectionHeaderCellModel.oh)) {
24
+ if (b.ob == null || (b.ob.length == 0 && b.op == null)) {
25
+ if (b.ii == null) {
26
+ b.k1 = "";
27
27
  }
28
28
  else {
29
- b.ky = b.ig.toString();
29
+ b.k1 = b.ii.toString();
30
30
  }
31
31
  }
32
32
  else {
33
- if (b.of != null && b.n6 == 0) {
34
- b.ky = b.oh + "    " + b.of;
33
+ if (b.on != null && b.oe == 0) {
34
+ b.k1 = b.op + "    " + b.on;
35
35
  }
36
36
  else {
37
- b.ky = b.oh;
37
+ b.k1 = b.op;
38
38
  }
39
39
  }
40
- this.d.cr(b.ky);
40
+ this.d.cr(b.k1);
41
41
  }
42
42
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
43
43
  }
@@ -19,18 +19,18 @@ let CanvasSummaryCellPresenter = /*@__PURE__*/ (() => {
19
19
  super.b(a);
20
20
  let b = a;
21
21
  if (a.a7) {
22
+ CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
22
23
  if (a.bb("ResolvedSummaryLabel") || a.bb("ResolvedSummaryValue")) {
23
- this.d.dj(b.n9);
24
- this.d.cr(b.ob);
24
+ this.d.dj(b.oh);
25
+ this.d.cr(b.oj);
25
26
  }
26
27
  if (a.bb("SummaryLabelTextColor")) {
27
- let c = CanvasContentCellModelHelper.e(b.og);
28
+ let c = CanvasContentCellModelHelper.e(b.oo);
28
29
  this.d.dk(c);
29
30
  }
30
- if (a.bb("FontInfo")) {
31
- this.d.dl(b.aj);
31
+ if (a.bb("FontInfo") || a.bb("SummaryLabelFontInfo")) {
32
+ this.d.dl(b.oa);
32
33
  }
33
- CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
34
34
  }
35
35
  }
36
36
  }
@@ -21,13 +21,13 @@ let CanvasTemplateCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = a;
23
23
  let c = this.e.actualColumns._inner[a.l.a5];
24
- if (a.bc(CellModel.fp) || a.bc(CellModel.h5)) {
24
+ if (a.bc(CellModel.fp) || a.bc(CellModel.h7)) {
25
25
  let d = Math.min(1, Math.max(0, a.c7));
26
26
  let e = a.cs * (1 - d);
27
27
  this.d.db.opacity = e;
28
28
  }
29
29
  this.d.dc();
30
- c.rx(a, this.d);
30
+ c.r8(a, this.d);
31
31
  }
32
32
  }
33
33
  CanvasTemplateCellPresenter.$t = /*@__PURE__*/ markType(CanvasTemplateCellPresenter, 'CanvasTemplateCellPresenter', CanvasCellPresenterBase.$);
@@ -21,13 +21,13 @@ let CanvasTemplateHeaderCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = this.e.actualColumns._inner[a.l.a5];
23
23
  let c = b.header;
24
- if (a.bc(CellModel.fp) || a.bc(CellModel.h5)) {
24
+ if (a.bc(CellModel.fp) || a.bc(CellModel.h7)) {
25
25
  let d = Math.min(1, Math.max(0, a.c7));
26
26
  let e = a.cs * (1 - d);
27
27
  }
28
28
  let f = a;
29
29
  this.d.dc();
30
- c.ht(f, this.d);
30
+ c.hu(f, this.d);
31
31
  }
32
32
  }
33
33
  CanvasTemplateHeaderCellPresenter.$t = /*@__PURE__*/ markType(CanvasTemplateHeaderCellPresenter, 'CanvasTemplateHeaderCellPresenter', CanvasCellPresenterBase.$);
@@ -20,26 +20,26 @@ let CanvasTextCellPresenter = /*@__PURE__*/ (() => {
20
20
  super.b(a);
21
21
  let b = a;
22
22
  if (a.a7) {
23
- if (a.bc(TextCellModel.n1) || a.bc(TextCellModel.h3) || a.bc(TextCellModel.gy)) {
24
- b.ky = this.e(b);
25
- this.d.cr(b.ky);
23
+ if (a.bc(TextCellModel.n9) || a.bc(TextCellModel.h5) || a.bc(TextCellModel.gz)) {
24
+ b.k1 = this.e(b);
25
+ this.d.cr(b.k1);
26
26
  }
27
27
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
28
28
  }
29
29
  }
30
30
  e(a) {
31
- if (a.lu != null) {
32
- return a.lu;
31
+ if (a.ly != null) {
32
+ return a.ly;
33
33
  }
34
- if (a.n3 != null) {
35
- return a.n3;
34
+ if (a.ob != null) {
35
+ return a.ob;
36
36
  }
37
37
  else {
38
- if (a.ig == null) {
38
+ if (a.ii == null) {
39
39
  return "";
40
40
  }
41
41
  else {
42
- return a.ig.toString();
42
+ return a.ii.toString();
43
43
  }
44
44
  }
45
45
  }
@@ -27,11 +27,11 @@ let CanvasTextHeaderCellPresenter = /*@__PURE__*/ (() => {
27
27
  super.b(a);
28
28
  let b = a;
29
29
  if (a.a7) {
30
- if (a.bc(TextCellModel.n1)) {
31
- b.ky = b.n3;
32
- this.d.cr(b.ky);
30
+ if (a.bc(TextCellModel.n9)) {
31
+ b.k1 = b.ob;
32
+ this.d.cr(b.k1);
33
33
  }
34
- if (a.bc(CellModel.hj)) {
34
+ if (a.bc(CellModel.hl)) {
35
35
  if (a.bt) {
36
36
  this.d.db.m = false;
37
37
  }
@@ -45,17 +45,17 @@ let CanvasTextHeaderCellPresenter = /*@__PURE__*/ (() => {
45
45
  this.d.db.m = true;
46
46
  }
47
47
  }
48
- if (a.bc(CellModel.hk)) {
48
+ if (a.bc(CellModel.hm)) {
49
49
  if (a.bt) {
50
50
  this.d.db.m = false;
51
51
  }
52
- this.d.db.a3 = a.nt;
52
+ this.d.db.a3 = a.n1;
53
53
  if (a.bt) {
54
54
  this.d.db.m = true;
55
55
  }
56
56
  }
57
57
  if (a.bb("SortIndicatorStyle")) {
58
- this.d.db.f = b.oa;
58
+ this.d.db.f = b.oi;
59
59
  }
60
60
  CanvasContentCellModelHelper.a(this.a.bq, b, this.a);
61
61
  }
@@ -20,86 +20,89 @@ let CellPresenterBase = /*@__PURE__*/ (() => {
20
20
  this.b(a);
21
21
  }
22
22
  b(a) {
23
- this.a.cv(a.c);
24
- this.a.c4(a.e);
25
- this.a.cy(a.d);
26
- this.a.cj();
27
- if (a.bc(CellModel.gn)) {
23
+ this.a.cw(a.c);
24
+ this.a.c5(a.e);
25
+ this.a.cz(a.d);
26
+ this.a.ck();
27
+ if (a.bc(CellModel.go)) {
28
28
  this.a.ad = a.bh;
29
29
  }
30
30
  if (a.bc(CellModel.e0) || a.bc(CellModel.e4) || a.bc(CellModel.e2) || a.bc(CellModel.ey)) {
31
- this.a.c6(a.ez, a.e3, a.e1, a.ex);
31
+ this.a.c7(a.ez, a.e3, a.e1, a.ex);
32
32
  }
33
33
  if (a.a5) {
34
- this.a.cx(a.ne, a.en, a.es, a.eq, a.el);
34
+ this.a.cy(a.nk, a.en, a.es, a.eq, a.el);
35
35
  if (a.bc(CellModel.ej)) {
36
36
  if (!a.bj && a.p.i8 && a.bg && a.co == 1) {
37
- this.a.b9();
37
+ this.a.ca();
38
38
  }
39
39
  }
40
40
  }
41
41
  if (a.bs) {
42
- this.a.c1(a.f9, (a.e3 + a.ex + a.es + a.el));
43
- this.a.dc(a.h6, (a.ez + a.e1 + a.en + a.eq));
42
+ this.a.c2(a.ga, (a.e3 + a.ex + a.es + a.el));
43
+ this.a.dd(a.h8, (a.ez + a.e1 + a.en + a.eq));
44
44
  }
45
45
  if (a.a7) {
46
46
  if (a.bm && !this.a.z) {
47
- this.a.b8();
47
+ this.a.b9();
48
48
  }
49
49
  if (a.bc(CellModel.ek)) {
50
- this.a.cw(a.nd.color);
50
+ this.a.cx(a.nj.color);
51
51
  }
52
52
  if (a.bc(CellModel.ew)) {
53
- this.a.c5(a.cq);
53
+ this.a.c6(a.cq);
54
54
  }
55
55
  if (a.bb("IsCollapsable")) {
56
56
  this.a.aa = a.a6;
57
- this.a.bi = a.gf;
57
+ this.a.bi = a.gg;
58
58
  this.a.ab = a.be;
59
- this.a.dc(a.h6, (a.ez + a.e1 + a.en + a.eq));
59
+ this.a.dd(a.h8, (a.ez + a.e1 + a.en + a.eq));
60
60
  }
61
61
  if (a.bb("Indent")) {
62
- this.a.bi = a.gf;
63
- this.a.dc(a.h6, (a.ez + a.e1 + a.en + a.eq));
62
+ this.a.bi = a.gg;
63
+ this.a.dd(a.h8, (a.ez + a.e1 + a.en + a.eq));
64
64
  }
65
65
  if (a.bb("IsExpanded")) {
66
66
  this.a.ab = a.be;
67
67
  }
68
- if (a.bc(CellModel.hy)) {
69
- this.a.b3 = a.ll;
68
+ if (a.bb("IsCollapsable") || a.bb("ExpansionIndicatorIconColor")) {
69
+ this.a.dt = a.ns;
70
70
  }
71
- if (a.bc(CellModel.hw)) {
72
- this.a.dt = a.nx;
71
+ if (a.bc(CellModel.h0)) {
72
+ this.a.b4 = a.lp;
73
73
  }
74
- if (a.bc(CellModel.hx)) {
74
+ if (a.bc(CellModel.hy)) {
75
+ this.a.dw = a.n5;
76
+ }
77
+ if (a.bc(CellModel.hz)) {
75
78
  this.a.n = a.ak;
76
79
  }
80
+ if (a.bc(CellModel.hr)) {
81
+ this.a.bz = a.lh;
82
+ }
77
83
  if (a.bc(CellModel.hp)) {
78
- this.a.by = a.ld;
84
+ this.a.bw = a.le;
79
85
  }
80
- if (a.bc(CellModel.hn)) {
81
- this.a.bv = a.la;
86
+ if (a.bc(CellModel.hs)) {
87
+ this.a.dv = a.n4;
82
88
  }
83
89
  if (a.bc(CellModel.hq)) {
84
- this.a.ds = a.nw;
85
- }
86
- if (a.bc(CellModel.ho)) {
87
- this.a.dr = a.nv;
90
+ this.a.du = a.n3;
88
91
  }
89
- if (a.bc(CellModel.hv)) {
92
+ if (a.bc(CellModel.hx)) {
90
93
  this.a.aj = a.c4;
91
94
  }
92
- if (a.bc(CellModel.hs) || a.bc(CellModel.ht) || a.bc(CellModel.hu) || a.bc(CellModel.hu)) {
93
- this.a.dv = new Rect(0, a.c1, a.c2, a.c3, a.c0);
95
+ if (a.bc(CellModel.hu) || a.bc(CellModel.hv) || a.bc(CellModel.hw) || a.bc(CellModel.hw)) {
96
+ this.a.dy = new Rect(0, a.c1, a.c2, a.c3, a.c0);
94
97
  }
95
98
  }
96
99
  if (a.bs && a.bm) {
97
- this.a.dk(a);
100
+ this.a.dl(a);
98
101
  }
99
102
  if (a.bb("DoClone")) {
100
103
  if (a.a1) {
101
104
  a.a1 = false;
102
- this.a.b7();
105
+ this.a.b8();
103
106
  }
104
107
  }
105
108
  }
@@ -924,7 +924,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
924
924
  if (-1 == c) {
925
925
  return;
926
926
  }
927
- let d = b.cellInfo.ih;
927
+ let d = b.cellInfo.ij;
928
928
  let e = this.j(d);
929
929
  if (this.a6) {
930
930
  if (this.keys.contains(e)) {
@@ -967,8 +967,8 @@ let CheckboxList = /*@__PURE__*/ (() => {
967
967
  return;
968
968
  }
969
969
  let d = false;
970
- if (b.cellInfo.ih != null) {
971
- let e = this.j(b.cellInfo.ih);
970
+ if (b.cellInfo.ij != null) {
971
+ let e = this.j(b.cellInfo.ij);
972
972
  if (this.keys.contains(e)) {
973
973
  d = true;
974
974
  }
@@ -985,13 +985,13 @@ let CheckboxList = /*@__PURE__*/ (() => {
985
985
  let f = null;
986
986
  let g = null;
987
987
  let h = null;
988
- if (b.cellInfo.ih != null) {
989
- d = this.ai.getPropertyValue(b.cellInfo.ih);
988
+ if (b.cellInfo.ij != null) {
989
+ d = this.ai.getPropertyValue(b.cellInfo.ij);
990
990
  if (this.al != null) {
991
- e = this.al.getPropertyValue(b.cellInfo.ih);
991
+ e = this.al.getPropertyValue(b.cellInfo.ij);
992
992
  }
993
993
  if (this.aj != null) {
994
- let i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.ih));
994
+ let i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.ij));
995
995
  if (i == 0) {
996
996
  h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
997
997
  }
@@ -1460,7 +1460,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
1460
1460
  case "CheckboxCornerRadius":
1461
1461
  this.view.af();
1462
1462
  if (this.g != null) {
1463
- this.g.yv();
1463
+ this.g.yx();
1464
1464
  }
1465
1465
  break;
1466
1466
  case "CheckboxAlignedRight":
@@ -1470,7 +1470,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
1470
1470
  break;
1471
1471
  case "DataLegendTarget":
1472
1472
  if (this.g != null) {
1473
- this.g.yv();
1473
+ this.g.yx();
1474
1474
  }
1475
1475
  break;
1476
1476
  }
@@ -1603,23 +1603,23 @@ let CheckboxList = /*@__PURE__*/ (() => {
1603
1603
  if (this.bw == null) {
1604
1604
  this.bw = "";
1605
1605
  }
1606
- a.nf = this.bw;
1607
- a.n6 = "CheckboxColumn";
1606
+ a.nj = this.bw;
1607
+ a.ob = "CheckboxColumn";
1608
1608
  let b = new ColumnWidth();
1609
1609
  b.c = false;
1610
1610
  b.f = 28;
1611
1611
  a.width = b;
1612
- a.lj = 0;
1613
- a.lk = 0;
1612
+ a.lm = 0;
1613
+ a.ln = 0;
1614
1614
  a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.de));
1615
1615
  this.k = a;
1616
1616
  this.g.columns.add(a);
1617
1617
  let c = this.g.actualDataSource.resolveSchemaPropertyType(this.bt);
1618
1618
  if ((this.bx != null || this.bv != null) && (c == 0 || c == 11 || c == 2)) {
1619
1619
  let d = new TemplateColumn();
1620
- d.nf = this.bt;
1621
- d.n6 = "DataColumn";
1622
- d.lj = 0;
1620
+ d.nj = this.bt;
1621
+ d.ob = "DataColumn";
1622
+ d.lm = 0;
1623
1623
  d.g = 0;
1624
1624
  d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.en));
1625
1625
  this.g.columns.add(d);
@@ -1627,7 +1627,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
1627
1627
  else {
1628
1628
  let e;
1629
1629
  if (this.f != null) {
1630
- e = this.f.h0();
1630
+ e = this.f.h1();
1631
1631
  e.onAttachingOverride = delegateCombine(e.onAttachingOverride, runOn(this, this.dm));
1632
1632
  }
1633
1633
  else {
@@ -1653,9 +1653,9 @@ let CheckboxList = /*@__PURE__*/ (() => {
1653
1653
  break;
1654
1654
  }
1655
1655
  }
1656
- e.nf = this.bt;
1657
- e.n6 = "DataColumn";
1658
- e.lj = 0;
1656
+ e.nj = this.bt;
1657
+ e.ob = "DataColumn";
1658
+ e.lm = 0;
1659
1659
  e.g = 0;
1660
1660
  this.g.columns.add(e);
1661
1661
  }
@@ -1663,15 +1663,15 @@ let CheckboxList = /*@__PURE__*/ (() => {
1663
1663
  let g = new ColumnWidth();
1664
1664
  g.c = false;
1665
1665
  g.f = 10;
1666
- f.nf = "PaddingColumn";
1667
- f.n6 = "PaddingColumn";
1668
- f.lj = 0;
1666
+ f.nj = "PaddingColumn";
1667
+ f.ob = "PaddingColumn";
1668
+ f.lm = 0;
1669
1669
  f.width = g;
1670
1670
  this.g.columns.add(f);
1671
1671
  }
1672
1672
  dm(a, b) {
1673
1673
  let c = b.b;
1674
- c.g1 = 0;
1674
+ c.g2 = 0;
1675
1675
  c.g = 0;
1676
1676
  }
1677
1677
  updateHrMargin(a) {
@@ -300,12 +300,12 @@ let ColumnChooser = /*@__PURE__*/ (() => {
300
300
  let b = new ObservableCollection$1(ColumnChooserInfo.$, 0);
301
301
  for (let c of fromEnum(this.b.actualColumns)) {
302
302
  a = new ColumnChooserInfo();
303
- let d = c.nf;
304
- if (c.nm != null) {
305
- d = c.nm;
303
+ let d = c.nj;
304
+ if (c.nq != null) {
305
+ d = c.nq;
306
306
  }
307
307
  a.columnName = d;
308
- a.isNotHidden = !c.j9;
308
+ a.isNotHidden = !c.kb;
309
309
  b.add(a);
310
310
  }
311
311
  if (this.s != null) {
@@ -331,7 +331,7 @@ let ColumnChooser = /*@__PURE__*/ (() => {
331
331
  if (this.b != null) {
332
332
  for (let a of fromEnum(this.b.actualColumns)) {
333
333
  this.m = true;
334
- a.j9 = false;
334
+ a.kb = false;
335
335
  }
336
336
  }
337
337
  }
@@ -340,7 +340,7 @@ let ColumnChooser = /*@__PURE__*/ (() => {
340
340
  if (this.b != null) {
341
341
  for (let a of fromEnum(this.b.actualColumns)) {
342
342
  this.m = true;
343
- a.j9 = true;
343
+ a.kb = true;
344
344
  }
345
345
  }
346
346
  }
@@ -358,9 +358,9 @@ let ColumnChooser = /*@__PURE__*/ (() => {
358
358
  let c = this.d.g.actualDataSource.getItemAtIndex(b.c);
359
359
  let d = this.b.actualColumns.count;
360
360
  for (let e = 0; e < d; e++) {
361
- 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) {
362
- this.b.actualColumns._inner[e].j9 = !b.b;
363
- this.b.actualColumns._inner[e].o9("Hidden");
361
+ 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) {
362
+ this.b.actualColumns._inner[e].kb = !b.b;
363
+ this.b.actualColumns._inner[e].pf("Hidden");
364
364
  }
365
365
  }
366
366
  }