igniteui-angular-data-grids 20.0.1 → 20.0.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (240) hide show
  1. package/bundles/igniteui-angular-data-grids.umd.js +10223 -8743
  2. package/bundles/igniteui-angular-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +6925 -6539
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +335 -335
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +8 -8
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +7 -7
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  74. package/esm2015/lib/igx-cell-info.js +301 -190
  75. package/esm2015/lib/igx-checkbox-list-component.js +1 -1
  76. package/esm2015/lib/igx-column-moving-separator-component.js +6 -6
  77. package/esm2015/lib/igx-column-resizing-separator-component.js +4 -4
  78. package/esm2015/lib/igx-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igx-data-grid-column-component.js +254 -115
  80. package/esm2015/lib/igx-data-grid-component.js +38 -5
  81. package/esm2015/lib/igx-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igx-date-time-column-component.js +20 -20
  83. package/esm2015/lib/igx-definition-base-component.js +46 -45
  84. package/esm2015/lib/igx-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igx-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igx-filter-row-definition-component.js +8 -8
  87. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igx-grid-conditional-style-font-info-component.js +144 -0
  89. package/esm2015/lib/igx-grid-conditional-style-font-info-dynamic-module.js +34 -0
  90. package/esm2015/lib/igx-grid-conditional-style-font-info-module.js +27 -0
  91. package/esm2015/lib/igx-header-component.js +16 -16
  92. package/esm2015/lib/igx-image-cell-info.js +6 -6
  93. package/esm2015/lib/igx-image-column-component.js +10 -10
  94. package/esm2015/lib/igx-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igx-numeric-column-component.js +30 -30
  96. package/esm2015/lib/igx-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igx-section-header-component.js +16 -16
  98. package/esm2015/lib/igx-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igx-summary-row-component.js +16 -16
  100. package/esm2015/lib/igx-template-cell-info.js +2 -2
  101. package/esm2015/lib/igx-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igx-text-cell-info.js +2 -2
  103. package/esm2015/lib/igx-text-column-component.js +8 -8
  104. package/esm2015/lib/igx-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +5 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +6754 -6269
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +8 -8
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +7 -7
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  177. package/esm5/lib/igx-cell-info.js +349 -190
  178. package/esm5/lib/igx-checkbox-list-component.js +1 -1
  179. package/esm5/lib/igx-column-moving-separator-component.js +6 -6
  180. package/esm5/lib/igx-column-resizing-separator-component.js +4 -4
  181. package/esm5/lib/igx-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igx-data-grid-column-component.js +302 -115
  183. package/esm5/lib/igx-data-grid-component.js +42 -5
  184. package/esm5/lib/igx-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igx-date-time-column-component.js +20 -20
  186. package/esm5/lib/igx-definition-base-component.js +46 -45
  187. package/esm5/lib/igx-editor-cell-info.js +23 -23
  188. package/esm5/lib/igx-filter-cell-info.js +26 -26
  189. package/esm5/lib/igx-filter-row-definition-component.js +8 -8
  190. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igx-grid-conditional-style-font-info-component.js +155 -0
  192. package/esm5/lib/igx-grid-conditional-style-font-info-dynamic-module.js +33 -0
  193. package/esm5/lib/igx-grid-conditional-style-font-info-module.js +28 -0
  194. package/esm5/lib/igx-header-component.js +16 -16
  195. package/esm5/lib/igx-image-cell-info.js +6 -6
  196. package/esm5/lib/igx-image-column-component.js +10 -10
  197. package/esm5/lib/igx-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igx-numeric-column-component.js +30 -30
  199. package/esm5/lib/igx-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igx-section-header-component.js +16 -16
  201. package/esm5/lib/igx-summary-cell-info.js +9 -9
  202. package/esm5/lib/igx-summary-row-component.js +16 -16
  203. package/esm5/lib/igx-template-cell-info.js +2 -2
  204. package/esm5/lib/igx-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igx-text-cell-info.js +2 -2
  206. package/esm5/lib/igx-text-column-component.js +8 -8
  207. package/esm5/lib/igx-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +5 -0
  209. package/fesm2015/igniteui-angular-data-grids.js +10236 -9009
  210. package/fesm5/igniteui-angular-data-grids.js +10219 -8745
  211. package/lib/ColumnFilterCondition_combined.d.ts +1784 -1694
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/ImageCell.d.ts +20 -20
  219. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  220. package/lib/NumericCell.d.ts +2 -1
  221. package/lib/SectionHeaderCell.d.ts +4 -4
  222. package/lib/SummaryCell.d.ts +11 -11
  223. package/lib/TemplateCell.d.ts +6 -6
  224. package/lib/TemplateHeader.d.ts +3 -3
  225. package/lib/TemplateHeaderCell.d.ts +3 -3
  226. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  227. package/lib/TemplateSectionHeader.d.ts +2 -2
  228. package/lib/TextCell.d.ts +10 -8
  229. package/lib/TextCellDecoration.d.ts +26 -0
  230. package/lib/TextHeaderCell.d.ts +37 -35
  231. package/lib/VerticalSeparatorCell.d.ts +9 -9
  232. package/lib/igx-cell-info.d.ts +63 -0
  233. package/lib/igx-data-grid-column-component.d.ts +68 -2
  234. package/lib/igx-data-grid-component.d.ts +9 -2
  235. package/lib/igx-definition-base-component.d.ts +1 -1
  236. package/lib/igx-grid-conditional-style-font-info-component.d.ts +33 -0
  237. package/lib/igx-grid-conditional-style-font-info-dynamic-module.d.ts +9 -0
  238. package/lib/igx-grid-conditional-style-font-info-module.d.ts +8 -0
  239. package/package.json +43 -43
  240. package/public_api.d.ts +5 -0
@@ -8,6 +8,7 @@ import { __extends } from "tslib";
8
8
  import { Base, markType } from "igniteui-angular-core";
9
9
  import { ICellPresenter_$type } from "./ICellPresenter";
10
10
  import { CellModel } from "./CellModel";
11
+ import { Rect } from "igniteui-angular-core";
11
12
  import { BrushUtil } from "igniteui-angular-core";
12
13
  /**
13
14
  * @hidden
@@ -24,59 +25,83 @@ var CellPresenterBase = /** @class */ /*@__PURE__*/ (function (_super) {
24
25
  this.b(a);
25
26
  };
26
27
  CellPresenterBase.prototype.b = function (a) {
27
- this.a.bz(a.c);
28
- this.a.b5(a.e);
29
- this.a.b2(a.d);
30
- this.a.br();
31
- if (a.a8(CellModel.f8)) {
32
- this.a.y = a.bd;
28
+ this.a.cs(a.c);
29
+ this.a.c1(a.e);
30
+ this.a.cv(a.d);
31
+ this.a.cg();
32
+ if (a.bc(CellModel.gk)) {
33
+ this.a.ad = a.bh;
33
34
  }
34
- if (a.a8(CellModel.em) || a.a8(CellModel.eq) || a.a8(CellModel.eo) || a.a8(CellModel.ek)) {
35
- this.a.b7(a.el, a.ep, a.en, a.ej);
35
+ if (a.bc(CellModel.ey) || a.bc(CellModel.e2) || a.bc(CellModel.e0) || a.bc(CellModel.ew)) {
36
+ this.a.c3(a.ex, a.e1, a.ez, a.ev);
36
37
  }
37
- if (a.a1) {
38
- this.a.b1(a.lz, a.d9, a.ee, a.ec, a.d7);
39
- if (a.a8(CellModel.d5)) {
40
- if (!a.bf && a.p.ix && a.bc && a.cf == 1) {
41
- this.a.bh();
38
+ if (a.a5) {
39
+ this.a.cu(a.m9, a.el, a.eq, a.eo, a.ej);
40
+ if (a.bc(CellModel.eh)) {
41
+ if (!a.bj && a.p.iy && a.bg && a.cn == 1) {
42
+ this.a.b6();
42
43
  }
43
44
  }
44
45
  }
45
- if (a.bo) {
46
- this.a.b3(a.fu, (a.ep + a.ej + a.ee + a.d7));
47
- this.a.b9(a.he, (a.el + a.en + a.d9 + a.ec));
46
+ if (a.bs) {
47
+ this.a.cy(a.f6, (a.e1 + a.ev + a.eq + a.ej));
48
+ this.a.c8(a.h2, (a.ex + a.ez + a.el + a.eo));
48
49
  }
49
- if (a.a3) {
50
- if (a.bi && !this.a.u) {
51
- this.a.bg();
50
+ if (a.a7) {
51
+ if (a.bm && !this.a.z) {
52
+ this.a.b5();
52
53
  }
53
- if (a.a8(CellModel.d6)) {
54
- this.a.b0(a.ly.color);
54
+ if (a.bc(CellModel.ei)) {
55
+ this.a.ct(a.m8.color);
55
56
  }
56
- if (a.a8(CellModel.ei)) {
57
- this.a.b6(a.ch);
57
+ if (a.bc(CellModel.eu)) {
58
+ this.a.c2(a.cp);
58
59
  }
59
- if (a.a7("IsCollapsable")) {
60
- this.a.v = a.a2;
61
- this.a.a6 = a.f0;
62
- this.a.w = a.ba;
63
- this.a.b9(a.he, (a.el + a.en + a.d9 + a.ec));
60
+ if (a.bb("IsCollapsable")) {
61
+ this.a.aa = a.a6;
62
+ this.a.bg = a.gc;
63
+ this.a.ab = a.be;
64
+ this.a.c8(a.h2, (a.ex + a.ez + a.el + a.eo));
64
65
  }
65
- if (a.a7("Indent")) {
66
- this.a.a6 = a.f0;
67
- this.a.b9(a.he, (a.el + a.en + a.d9 + a.ec));
66
+ if (a.bb("Indent")) {
67
+ this.a.bg = a.gc;
68
+ this.a.c8(a.h2, (a.ex + a.ez + a.el + a.eo));
68
69
  }
69
- if (a.a7("IsExpanded")) {
70
- this.a.w = a.ba;
70
+ if (a.bb("IsExpanded")) {
71
+ this.a.ab = a.be;
72
+ }
73
+ if (a.bc(CellModel.hu)) {
74
+ this.a.b0 = a.lg;
75
+ }
76
+ if (a.bc(CellModel.hs)) {
77
+ this.a.dp = a.ns;
78
+ }
79
+ if (a.bc(CellModel.ht)) {
80
+ this.a.n = a.ak;
81
+ }
82
+ if (a.bc(CellModel.hm)) {
83
+ this.a.bw = a.k9;
84
+ }
85
+ if (a.bc(CellModel.hk)) {
86
+ this.a.bt = a.k6;
87
+ }
88
+ if (a.bc(CellModel.hn)) {
89
+ this.a.dn = a.nr;
90
+ }
91
+ if (a.bc(CellModel.hl)) {
92
+ this.a.dm = a.nq;
93
+ }
94
+ if (a.bc(CellModel.hp) || a.bc(CellModel.hq) || a.bc(CellModel.hr) || a.bc(CellModel.hr)) {
95
+ this.a.dr = new Rect(0, a.c0, a.c1, a.c2, a.cz);
71
96
  }
72
97
  }
73
- if (a.bo && a.bi) {
74
- this.a.ch(a);
98
+ if (a.bs && a.bm) {
99
+ this.a.dg(a);
75
100
  }
76
- if (a.a7("DoClone")) {
77
- if (a.ax) {
78
- a.ax = false;
79
- this.a.bf();
101
+ if (a.bb("DoClone")) {
102
+ if (a.a1) {
103
+ a.a1 = false;
104
+ this.a.b4();
80
105
  }
81
106
  }
82
107
  };
@@ -231,8 +231,8 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
231
231
  var p = this.i.createElement("div");
232
232
  var q = this.i.getSubRenderer(p);
233
233
  o.provideContainer(q);
234
- o.ap = 24;
235
- o.as = 24;
234
+ o.a5 = 24;
235
+ o.a8 = 24;
236
236
  p.setStyleProperty("margin-right", "10px");
237
237
  var r = this.i.createElement("div");
238
238
  var s = this.i.getSubRenderer(r);
@@ -249,14 +249,14 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
249
249
  n.provideContainer(w);
250
250
  v.setStyleProperty("height", "100%");
251
251
  v.setStyleProperty("margin-left", "-4px");
252
- n.al = 16;
253
- n.at = 16;
254
- n.ap = 16;
255
- n.as = 16;
256
- n.ar = 2;
252
+ n.a1 = 16;
253
+ n.a9 = 16;
254
+ n.a5 = 16;
255
+ n.a8 = 16;
256
+ n.a7 = 2;
257
257
  n.svgPath = "<svg width=\"16\" height=\"16\" viewBox=\"0 2 24 24\" fill=\"none\" stroke=\"rgba(0, 0, 0, 255)\" xmlns=\"http://www.w3.org/2000/svg\">\r\n" + "<path d=\"M20 11.1205L16.2166 14.8795L12.4575 11.1205\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\r\n" + "</svg>\r\n";
258
- n.dp = BrushUtil.j(120, 0, 0, 0);
259
- n.ao = DeviceUtils.g(1);
258
+ n.ea = BrushUtil.j(120, 0, 0, 0);
259
+ n.a4 = DeviceUtils.g(1);
260
260
  r.setStyleProperty("display", "flex");
261
261
  r.setStyleProperty("height", "100%");
262
262
  r.setStyleProperty("align-items", "center");
@@ -280,8 +280,8 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
280
280
  if (l != null) {
281
281
  try {
282
282
  o.svg = null;
283
- o.cu = null;
284
- o.az = null;
283
+ o.df = null;
284
+ o.bf = null;
285
285
  var x = e != null ? e : ((function () {
286
286
  var $ret = new FontInfo();
287
287
  $ret.f = g;
@@ -299,7 +299,7 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
299
299
  y.setStyleProperty("width", z ? "24px" : "0px");
300
300
  if (i != null) {
301
301
  aa = true;
302
- o.cu = i;
302
+ o.df = i;
303
303
  var ab = ((function () {
304
304
  var $ret = new DataContext();
305
305
  $ret.series = _this;
@@ -312,7 +312,7 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
312
312
  })());
313
313
  return $ret;
314
314
  })());
315
- o.az = ab;
315
+ o.bf = ab;
316
316
  }
317
317
  else if (h != null) {
318
318
  var ac = typeCast(IDataLegendTarget_$type, h);
@@ -323,8 +323,8 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
323
323
  var ag = af.getDataLegendSeriesTitle();
324
324
  if (c == ag || c + " " + d == ag) {
325
325
  aa = true;
326
- o.cu = af.getDataLegendBadge();
327
- o.az = af.getDataLegendBadgeContext();
326
+ o.df = af.getDataLegendBadge();
327
+ o.bf = af.getDataLegendBadgeContext();
328
328
  break;
329
329
  }
330
330
  }
@@ -333,20 +333,20 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
333
333
  }
334
334
  else if (k != null) {
335
335
  aa = true;
336
- o.aq = 0;
337
- o.ar = 0;
338
- o.al = 24;
339
- o.at = 24;
340
- o.ap = 24;
341
- o.as = 24;
342
- o.dh = BrushUtil.j(0, 255, 255, 255);
336
+ o.a6 = 0;
337
+ o.a7 = 0;
338
+ o.a1 = 24;
339
+ o.a9 = 24;
340
+ o.a5 = 24;
341
+ o.a8 = 24;
342
+ o.d3 = BrushUtil.j(0, 255, 255, 255);
343
343
  o.fill = BrushUtil.j(0, 255, 255, 255);
344
- o.dp = BrushUtil.j(0, 255, 255, 255);
345
- o.di = BrushUtil.j(0, 255, 255, 255);
344
+ o.ea = BrushUtil.j(0, 255, 255, 255);
345
+ o.d4 = BrushUtil.j(0, 255, 255, 255);
346
346
  o.svg = k;
347
347
  }
348
348
  if (!aa) {
349
- o.view.af();
349
+ o.view.ag();
350
350
  }
351
351
  var ah = a.getChildAt(2);
352
352
  var ai = a.getChildAt(3);
@@ -619,8 +619,8 @@ var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
619
619
  try {
620
620
  for (var _b = __values(fromEnum(this.f)), _c = _b.next(); !_c.done; _c = _b.next()) {
621
621
  var a = _c.value;
622
- a.value.cu = null;
623
- a.value.az = null;
622
+ a.value.df = null;
623
+ a.value.bf = null;
624
624
  }
625
625
  }
626
626
  catch (e_4_1) {
@@ -1012,7 +1012,7 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1012
1012
  if (-1 == c) {
1013
1013
  return;
1014
1014
  }
1015
- var d = b.cellInfo.ho;
1015
+ var d = b.cellInfo.ic;
1016
1016
  var e = this.i(d);
1017
1017
  if (this.a4) {
1018
1018
  if (this.keys.contains(e)) {
@@ -1055,8 +1055,8 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1055
1055
  return;
1056
1056
  }
1057
1057
  var d = false;
1058
- if (b.cellInfo.ho != null) {
1059
- var e = this.i(b.cellInfo.ho);
1058
+ if (b.cellInfo.ic != null) {
1059
+ var e = this.i(b.cellInfo.ic);
1060
1060
  if (this.keys.contains(e)) {
1061
1061
  d = true;
1062
1062
  }
@@ -1073,13 +1073,13 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1073
1073
  var f = null;
1074
1074
  var g = null;
1075
1075
  var h = null;
1076
- if (b.cellInfo.ho != null) {
1077
- d = this.ag.getPropertyValue(b.cellInfo.ho);
1076
+ if (b.cellInfo.ic != null) {
1077
+ d = this.ag.getPropertyValue(b.cellInfo.ic);
1078
1078
  if (this.aj != null) {
1079
- e = this.aj.getPropertyValue(b.cellInfo.ho);
1079
+ e = this.aj.getPropertyValue(b.cellInfo.ic);
1080
1080
  }
1081
1081
  if (this.ah != null) {
1082
- var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.ah.getPropertyValue(b.cellInfo.ho));
1082
+ var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.ah.getPropertyValue(b.cellInfo.ic));
1083
1083
  if (i == 0) {
1084
1084
  h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
1085
1085
  }
@@ -1659,7 +1659,7 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1659
1659
  case "CheckboxCornerRadius":
1660
1660
  this.view.ad();
1661
1661
  if (this.f != null) {
1662
- this.f.xq();
1662
+ this.f.xt();
1663
1663
  }
1664
1664
  break;
1665
1665
  case "CheckboxAlignedRight":
@@ -1669,7 +1669,7 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1669
1669
  break;
1670
1670
  case "DataLegendTarget":
1671
1671
  if (this.f != null) {
1672
- this.f.xq();
1672
+ this.f.xt();
1673
1673
  }
1674
1674
  break;
1675
1675
  }
@@ -1795,23 +1795,23 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1795
1795
  if (this.bp == null) {
1796
1796
  this.bp = "";
1797
1797
  }
1798
- a.lp = this.bp;
1799
- a.mg = "CheckboxColumn";
1798
+ a.l5 = this.bp;
1799
+ a.mw = "CheckboxColumn";
1800
1800
  var b = new ColumnWidth();
1801
1801
  b.c = false;
1802
1802
  b.f = 28;
1803
1803
  a.width = b;
1804
- a.kl = 0;
1805
- a.km = 0;
1804
+ a.ky = 0;
1805
+ a.kz = 0;
1806
1806
  a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.c6));
1807
1807
  this.j = a;
1808
1808
  this.f.columns.add(a);
1809
1809
  var c = this.f.actualDataSource.resolveSchemaPropertyType(this.bm);
1810
1810
  if ((this.bq != null || this.bo != null) && (c == 0 || c == 11 || c == 2)) {
1811
1811
  var d = new TemplateColumn();
1812
- d.lp = this.bm;
1813
- d.mg = "DataColumn";
1814
- d.kl = 0;
1812
+ d.l5 = this.bm;
1813
+ d.mw = "DataColumn";
1814
+ d.ky = 0;
1815
1815
  d.g = 0;
1816
1816
  d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.ee));
1817
1817
  this.f.columns.add(d);
@@ -1839,9 +1839,9 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1839
1839
  e = new TextColumn();
1840
1840
  break;
1841
1841
  }
1842
- e.lp = this.bm;
1843
- e.mg = "DataColumn";
1844
- e.kl = 0;
1842
+ e.l5 = this.bm;
1843
+ e.mw = "DataColumn";
1844
+ e.ky = 0;
1845
1845
  e.g = 0;
1846
1846
  this.f.columns.add(e);
1847
1847
  }
@@ -1849,9 +1849,9 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
1849
1849
  var g = new ColumnWidth();
1850
1850
  g.c = false;
1851
1851
  g.f = 10;
1852
- f.lp = "PaddingColumn";
1853
- f.mg = "PaddingColumn";
1854
- f.kl = 0;
1852
+ f.l5 = "PaddingColumn";
1853
+ f.mw = "PaddingColumn";
1854
+ f.ky = 0;
1855
1855
  f.width = g;
1856
1856
  this.f.columns.add(f);
1857
1857
  };
@@ -347,12 +347,12 @@ var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
347
347
  for (var _b = __values(fromEnum(this.b.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
348
348
  var c = _c.value;
349
349
  a = new ColumnChooserInfo();
350
- var d = c.lp;
351
- if (c.lw != null) {
352
- d = c.lw;
350
+ var d = c.l5;
351
+ if (c.mc != null) {
352
+ d = c.mc;
353
353
  }
354
354
  a.columnName = d;
355
- a.isNotHidden = !c.jp;
355
+ a.isNotHidden = !c.ju;
356
356
  b.add(a);
357
357
  }
358
358
  }
@@ -395,7 +395,7 @@ var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
395
395
  for (var _b = __values(fromEnum(this.b.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
396
396
  var a = _c.value;
397
397
  this.m = true;
398
- a.jp = false;
398
+ a.ju = false;
399
399
  }
400
400
  }
401
401
  catch (e_2_1) {
@@ -421,7 +421,7 @@ var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
421
421
  for (var _b = __values(fromEnum(this.b.actualColumns)), _c = _b.next(); !_c.done; _c = _b.next()) {
422
422
  var a = _c.value;
423
423
  this.m = true;
424
- a.jp = true;
424
+ a.ju = true;
425
425
  }
426
426
  }
427
427
  catch (e_3_1) {
@@ -453,9 +453,9 @@ var ColumnChooser = /** @class */ /*@__PURE__*/ (function (_super) {
453
453
  var c = this.d.f.actualDataSource.getItemAtIndex(b.c);
454
454
  var d = this.b.actualColumns.count;
455
455
  for (var e = 0; e < d; e++) {
456
- if (this.b.actualColumns._inner[e].lp == c.columnName || this.b.actualColumns._inner[e].mg == c.columnName || this.b.actualColumns._inner[e].lw == c.columnName) {
457
- this.b.actualColumns._inner[e].jp = !b.b;
458
- this.b.actualColumns._inner[e].m2("Hidden");
456
+ if (this.b.actualColumns._inner[e].l5 == c.columnName || this.b.actualColumns._inner[e].mw == c.columnName || this.b.actualColumns._inner[e].mc == c.columnName) {
457
+ this.b.actualColumns._inner[e].ju = !b.b;
458
+ this.b.actualColumns._inner[e].nx("Hidden");
459
459
  }
460
460
  }
461
461
  };