igniteui-angular-data-grids 20.0.1 → 20.0.2-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 (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 +4 -4
  240. package/public_api.d.ts +5 -0
@@ -23,30 +23,30 @@ export let ImageCellPresenter = /*@__PURE__*/ (() => {
23
23
  b(a) {
24
24
  super.b(a);
25
25
  let b = a;
26
- if (a.a3) {
27
- if (a.a8(CellModel.fa) || a.a8(CellModel.hd)) {
28
- let c = Math.min(1, Math.max(0, a.ct));
29
- let d = a.cj * (1 - c);
30
- this.d.co = d;
26
+ if (a.a7) {
27
+ if (a.bc(CellModel.fm) || a.bc(CellModel.h1)) {
28
+ let c = Math.min(1, Math.max(0, a.c5));
29
+ let d = a.cr * (1 - c);
30
+ this.d.dw = d;
31
31
  }
32
- if (b.a8(ImageCellModel.mn) || b.a8(ImageCellModel.mo)) {
33
- this.e(b.mr, b.mk);
32
+ if (b.bc(ImageCellModel.n0) || b.bc(ImageCellModel.n1)) {
33
+ this.e(b.n4, b.nx);
34
34
  }
35
- if (b.a8(ImageCellModel.mp) || b.a8(ImageCellModel.fw) || b.a8(ImageCellModel.hc)) {
36
- this.f(b.mm, b.g, b.i);
35
+ if (b.bc(ImageCellModel.n2) || b.bc(ImageCellModel.f8) || b.bc(ImageCellModel.h0)) {
36
+ this.f(b.nz, b.g, b.i);
37
37
  }
38
- if (b.a8(ImageCellModel.g6)) {
38
+ if (b.bc(ImageCellModel.hi)) {
39
39
  if (a.u == 1) {
40
- this.d.ct();
40
+ this.d.d1();
41
41
  }
42
42
  else if (a.u == 2) {
43
- this.e(b.mr, b.mk);
43
+ this.e(b.n4, b.nx);
44
44
  }
45
45
  }
46
46
  }
47
47
  }
48
48
  f(a, b, c) {
49
- this.d.cz(a);
49
+ this.d.d7(a);
50
50
  }
51
51
  e(a, b) {
52
52
  let c = a.toLowerCase();
@@ -54,35 +54,35 @@ export let ImageCellPresenter = /*@__PURE__*/ (() => {
54
54
  b = 4;
55
55
  }
56
56
  if (stringStartsWith(c, "http") || b == 4) {
57
- this.d.cw(a, 4);
57
+ this.d.d4(a, 4);
58
58
  }
59
59
  if (stringStartsWith(c, "asset") || b == 2) {
60
60
  let d = a;
61
61
  if (stringStartsWith(c, "asset")) {
62
62
  d = a.substr(8);
63
63
  }
64
- this.d.cw(d, 2);
64
+ this.d.d4(d, 2);
65
65
  }
66
66
  if (stringStartsWith(c, "drawable") || b == 1) {
67
67
  let e = a;
68
68
  if (stringStartsWith(c, "drawable")) {
69
69
  e = a.substr(11);
70
70
  }
71
- this.d.cw(e, 1);
71
+ this.d.d4(e, 1);
72
72
  }
73
73
  if (stringStartsWith(c, "nativeresource") || b == 1) {
74
74
  let f = a;
75
75
  if (stringStartsWith(c, "nativeresource")) {
76
76
  f = a.substr(17);
77
77
  }
78
- this.d.cw(f, 1);
78
+ this.d.d4(f, 1);
79
79
  }
80
80
  if (stringStartsWith(c, "embeddedresource") || b == 3) {
81
81
  let g = a;
82
82
  if (stringStartsWith(c, "embeddedresource")) {
83
83
  g = a.substr(19);
84
84
  }
85
- this.d.cw(g, 3);
85
+ this.d.d4(g, 3);
86
86
  }
87
87
  }
88
88
  }
@@ -27,13 +27,13 @@ import { SortMode_$type } from "./SortMode";
27
27
  import { IDataSourceUpdateNotifier_$type } from "igniteui-angular-core";
28
28
  import { MultipleDataSourceNotifier } from "./MultipleDataSourceNotifier";
29
29
  import { TextHeaderCellModel } from "./TextHeaderCellModel";
30
+ import { Thickness } from "igniteui-angular-core";
30
31
  import { CornerRadius } from "igniteui-angular-core";
31
32
  import { stringEmpty, stringIsNullOrEmpty, stringIsNullOrWhiteSpace } from "igniteui-angular-core";
32
33
  import { stringFormat } from "igniteui-angular-core";
33
34
  import { SRProvider } from "igniteui-angular-core";
34
35
  import { DeviceUtils } from "igniteui-angular-core";
35
36
  import { BaseControlTheme_$type } from "igniteui-angular-core";
36
- import { Thickness } from "igniteui-angular-core";
37
37
  import { ControlDisplayDensity_$type } from "igniteui-angular-core";
38
38
  import { StringComparer } from "igniteui-angular-core";
39
39
  import { InputGroupDisplayType_$type } from "igniteui-angular-inputs";
@@ -122,8 +122,8 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
122
122
  return;
123
123
  }
124
124
  this.p = false;
125
- if (b.g1 != a) {
126
- b.g1 = a;
125
+ if (b.g2 != a) {
126
+ b.g2 = a;
127
127
  this.p = true;
128
128
  }
129
129
  else {
@@ -142,9 +142,9 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
142
142
  this.co();
143
143
  let b = this.g.p();
144
144
  if (null != b) {
145
- let c = b.g1;
145
+ let c = b.g2;
146
146
  if (null != c) {
147
- b.g1 = null;
147
+ b.g2 = null;
148
148
  }
149
149
  }
150
150
  }
@@ -610,7 +610,7 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
610
610
  }
611
611
  this.w = true;
612
612
  if (stringIsNullOrEmpty(this.au)) {
613
- if (null != a.g1) {
613
+ if (null != a.g2) {
614
614
  this.aw(null);
615
615
  }
616
616
  else {
@@ -680,7 +680,7 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
680
680
  }
681
681
  let f = this.g;
682
682
  let g = this.g.p();
683
- e = g.lu();
683
+ e = g.ma();
684
684
  }
685
685
  d.d = e;
686
686
  d.b = a;
@@ -768,7 +768,7 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
768
768
  this.i.svgPath = b ? MultiColumnComboBoxView.as : MultiColumnComboBoxView.at;
769
769
  }
770
770
  ct() {
771
- let a = this.d.actualHeaderHeight + 3;
771
+ let a = this.d.actualHeaderHeight;
772
772
  let b = this.d.actualRowHeight + this.d.rowSeparatorHeight;
773
773
  let c = this.d.actualDataSource;
774
774
  let d = null != c ? c.actualCount : 0;
@@ -787,7 +787,6 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
787
787
  }
788
788
  g = h * i;
789
789
  this.d.defaultColumnMinWidth = 0;
790
- g += 2;
791
790
  let j = stringFormat("{0}px", g);
792
791
  this.ag.setStyleProperty("width", j);
793
792
  if (null != this.am) {
@@ -808,9 +807,9 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
808
807
  this.au = null;
809
808
  let a = this.g.p();
810
809
  if (null != a) {
811
- let b = a.g1;
810
+ let b = a.g2;
812
811
  if (null != b) {
813
- a.g1 = null;
812
+ a.g2 = null;
814
813
  }
815
814
  else {
816
815
  this.cw();
@@ -841,12 +840,13 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
841
840
  this.d.selectionBehavior = 0;
842
841
  this.d.activationMode = 1;
843
842
  this.d.defaultColumnWidth = this.f.defaultColumnWidth;
843
+ this.d.borderWidth = new Thickness(0, 0);
844
844
  this.cr();
845
845
  this.d.editMode = 0;
846
846
  this.d.isColumnOptionsEnabled = false;
847
847
  this.d.isActiveCellStyleEnabled = false;
848
848
  this.d.cornerRadius = new CornerRadius(0, 0);
849
- this.d.ix = false;
849
+ this.d.iy = false;
850
850
  let b = this.d;
851
851
  b.activeCellChanged = delegateCombine(b.activeCellChanged, runOn(this, this.a7));
852
852
  let c = this.d;
@@ -1125,7 +1125,7 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
1125
1125
  }
1126
1126
  let k = this.e.activeCell;
1127
1127
  if (null != j.activeCell) {
1128
- this.d.kk(false, false);
1128
+ this.d.kl(false, false);
1129
1129
  b.preventDefault();
1130
1130
  }
1131
1131
  else {
@@ -1152,7 +1152,7 @@ export let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
1152
1152
  }
1153
1153
  let o = this.e.activeCell;
1154
1154
  if (null != n.activeCell) {
1155
- this.d.kx(false, false);
1155
+ this.d.ky(false, false);
1156
1156
  b.preventDefault();
1157
1157
  }
1158
1158
  else {
@@ -2403,7 +2403,7 @@ export let MultiColumnComboBox = /*@__PURE__*/ (() => {
2403
2403
  return c._inner[0];
2404
2404
  }
2405
2405
  for (let d of fromEnum(c)) {
2406
- if (0 == StringComparer.b.compare(d.lp, a)) {
2406
+ if (0 == StringComparer.b.compare(d.l5, a)) {
2407
2407
  return d;
2408
2408
  }
2409
2409
  }
@@ -13,15 +13,19 @@ export let NumericCell = /*@__PURE__*/ (() => {
13
13
  class NumericCell extends TextCell {
14
14
  constructor(a) {
15
15
  super(a);
16
- this.b4(this.cl, 2);
17
- this.b8(this.cl, 1);
16
+ this.cz(this.dt, 2);
17
+ this.c7(this.dt, 1);
18
18
  }
19
- bs(a, b, c) {
20
- super.bs(a, b, c);
19
+ ch(a, b, c) {
20
+ super.ch(a, b, c);
21
21
  if (a == "Indent" || a == "IsCollapsable") {
22
- this.cl.setRawStyleProperty("margin-left", this.a3 + this.a5 + this.a4 + "px");
22
+ this.dt.setRawStyleProperty("margin-left", this.bb + this.bd + this.bc + "px");
23
23
  }
24
24
  }
25
+ b5() {
26
+ super.b5();
27
+ this.dd(2, 1);
28
+ }
25
29
  }
26
30
  NumericCell.$t = markType(NumericCell, 'NumericCell', TextCell.$);
27
31
  return NumericCell;
@@ -23,21 +23,21 @@ export let NumericCellPresenter = /*@__PURE__*/ (() => {
23
23
  b(a) {
24
24
  super.b(a);
25
25
  let b = a;
26
- if (a.a3) {
27
- if (a.a8(NumericCellModel.m8) || a.a8(NumericCellModel.mw) || a.a8(NumericCellModel.hb) || b.mp()) {
28
- b.j3 = this.e(b);
29
- this.d.cl.setRawText(b.j3);
26
+ if (a.a7) {
27
+ if (a.bc(NumericCellModel.ol) || a.bc(NumericCellModel.n9) || a.bc(NumericCellModel.hz) || b.n2()) {
28
+ b.ku = this.e(b);
29
+ this.d.c5(this.d.dt, b.ku);
30
30
  }
31
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cl, this.a);
31
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dt, this.a);
32
32
  }
33
33
  }
34
34
  e(a) {
35
- if (a.ki != null) {
36
- return a.ki;
35
+ if (a.lp != null) {
36
+ return a.lp;
37
37
  }
38
- if (a.ne != null) {
39
- let val_ = a.ms;
40
- let override_ = a.ne;
38
+ if (a.or != null) {
39
+ let val_ = a.n5;
40
+ let override_ = a.or;
41
41
  return (override_.format(val_));
42
42
  }
43
43
  return NumericCellFormatter.c(a);
@@ -741,15 +741,15 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
741
741
  }
742
742
  else {
743
743
  let a = new TextColumn();
744
- a.kl = 10;
745
- a.km = 5;
746
- a.lp = "PropertyPath";
744
+ a.ky = 10;
745
+ a.kz = 5;
746
+ a.l5 = "PropertyPath";
747
747
  a.dataBinding = delegateCombine(a.dataBinding, runOn(this, this.dp));
748
748
  this.l.columns.add(a);
749
749
  let b = new TemplateColumn();
750
- b.lp = "ValueType";
751
- b.kl = 5;
752
- b.km = 5;
750
+ b.l5 = "ValueType";
751
+ b.ky = 5;
752
+ b.kz = 5;
753
753
  b.dataBinding = delegateCombine(b.dataBinding, runOn(this, this.cu));
754
754
  b.cellStyleKeyRequested = delegateCombine(b.cellStyleKeyRequested, runOn(this, this.cs));
755
755
  b.cellUpdating = delegateCombine(b.cellUpdating, runOn(this, this.ct));
@@ -829,8 +829,8 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
829
829
  let r = this.cc(l);
830
830
  if (c.count <= g) {
831
831
  let s = new TextColumn();
832
- s.kl = 10;
833
- s.km = 5;
832
+ s.ky = 10;
833
+ s.kz = 5;
834
834
  s.width = ((() => {
835
835
  let $ret = new ColumnWidth();
836
836
  $ret.c = false;
@@ -838,8 +838,8 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
838
838
  return $ret;
839
839
  })());
840
840
  s.dataBinding = delegateCombine(s.dataBinding, runOn(this, this.dp));
841
- s.mg = "PropertyName_" + k;
842
- s.lp = "PropertyName";
841
+ s.mw = "PropertyName_" + k;
842
+ s.l5 = "PropertyName";
843
843
  c.add(s);
844
844
  this.au.item(s, c.count - 1);
845
845
  g++;
@@ -876,10 +876,10 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
876
876
  }
877
877
  if (c.count <= g) {
878
878
  let v = new TemplateColumn();
879
- v.mg = "ValueType_" + k;
880
- v.lp = "ValueType";
881
- v.kl = 5;
882
- v.km = 5;
879
+ v.mw = "ValueType_" + k;
880
+ v.l5 = "ValueType";
881
+ v.ky = 5;
882
+ v.kz = 5;
883
883
  v.dataBinding = delegateCombine(v.dataBinding, runOn(this, this.cu));
884
884
  v.width = ((() => {
885
885
  let $ret = new ColumnWidth();
@@ -950,12 +950,12 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
950
950
  }
951
951
  cu(a, b) {
952
952
  let c = a;
953
- let d = this.s(c, b.cellInfo.fb, b.rowObject);
953
+ let d = this.s(c, b.cellInfo.fn, b.rowObject);
954
954
  b.resolvedValue = enumGetBox(PropertyEditorValueType_$type, d != null ? d.w : 0);
955
955
  }
956
956
  dp(a, b) {
957
957
  let c = a;
958
- let d = this.s(c, b.cellInfo.fb, b.rowObject);
958
+ let d = this.s(c, b.cellInfo.fn, b.rowObject);
959
959
  if (d == null) {
960
960
  b.resolvedValue = null;
961
961
  return;
@@ -1072,7 +1072,7 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
1072
1072
  }
1073
1073
  ct(a, b) {
1074
1074
  let c = a;
1075
- let d = this.s(c, b.cellInfo.fb, b.cellInfo.ho);
1075
+ let d = this.s(c, b.cellInfo.fn, b.cellInfo.ic);
1076
1076
  let e = d != null ? d.w : 0;
1077
1077
  switch (e) {
1078
1078
  case 10:
@@ -1169,7 +1169,7 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
1169
1169
  if (c.t != 3) {
1170
1170
  c.t = 3;
1171
1171
  }
1172
- let e = this.s(a, b.cellInfo.fb, b.cellInfo.ho);
1172
+ let e = this.s(a, b.cellInfo.fn, b.cellInfo.ic);
1173
1173
  let f = c.inputs._inner[0];
1174
1174
  f.bh = e;
1175
1175
  f.cq = (e.ar != null ? e.ar.toString() : "");
@@ -1183,7 +1183,7 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
1183
1183
  if (c.r != 3) {
1184
1184
  c.r = 3;
1185
1185
  }
1186
- let e = this.s(a, b.cellInfo.fb, b.cellInfo.ho);
1186
+ let e = this.s(a, b.cellInfo.fn, b.cellInfo.ic);
1187
1187
  c.ed = e;
1188
1188
  let f = e.ar;
1189
1189
  if (typeof e.ar === 'number' || typeof e.ar === 'number') {
@@ -1200,7 +1200,7 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
1200
1200
  if (c.density != 3) {
1201
1201
  c.density = 3;
1202
1202
  }
1203
- let e = this.s(a, b.cellInfo.fb, b.cellInfo.ho);
1203
+ let e = this.s(a, b.cellInfo.fn, b.cellInfo.ic);
1204
1204
  if (c.dd != e) {
1205
1205
  if (!d) {
1206
1206
  c.selectedValueChanged = delegateRemove(c.selectedValueChanged, runOn(this, this.cq));
@@ -1464,7 +1464,7 @@ export let PropertyEditor = /*@__PURE__*/ (() => {
1464
1464
  if (!c.y) {
1465
1465
  c.y = true;
1466
1466
  }
1467
- let e = this.s(a, b.cellInfo.fb, b.cellInfo.ho);
1467
+ let e = this.s(a, b.cellInfo.fn, b.cellInfo.ic);
1468
1468
  let f = e.ar;
1469
1469
  if (f == null) {
1470
1470
  f = false;
@@ -13,32 +13,32 @@ export let SectionHeaderCell = /*@__PURE__*/ (() => {
13
13
  class SectionHeaderCell extends GridCellBase {
14
14
  constructor(a) {
15
15
  super(a);
16
- this.ck = null;
17
- this.ck = a.createElement("span");
18
- this.ah.setRawStyleProperty("text-align", "left");
19
- this.ah.setRawStyleProperty("vertical-align", "middle");
20
- this.ah.setRawStyleProperty("overflow", "hidden");
21
- this.ah.setRawStyleProperty("white-space", "nowrap");
22
- this.ah.setRawStyleProperty("text-overflow", "ellipsis");
23
- this.ah.append(this.ck);
16
+ this.ds = null;
17
+ this.ds = a.createElement("span");
18
+ this.ap.setRawStyleProperty("text-align", "left");
19
+ this.ap.setRawStyleProperty("vertical-align", "middle");
20
+ this.ap.setRawStyleProperty("overflow", "hidden");
21
+ this.ap.setRawStyleProperty("white-space", "nowrap");
22
+ this.ap.setRawStyleProperty("text-overflow", "ellipsis");
23
+ this.ap.append(this.ds);
24
24
  }
25
- get cl() {
26
- return this.ck;
25
+ get dt() {
26
+ return this.ds;
27
27
  }
28
- get_z() {
28
+ get_ae() {
29
29
  return true;
30
30
  }
31
- bs(a, b, c) {
32
- super.bs(a, b, c);
31
+ ch(a, b, c) {
32
+ super.ch(a, b, c);
33
33
  if (a == "Indent") {
34
- this.ck.setRawStyleProperty("margin-left", this.a3 + this.a5 + 10 + "px");
34
+ this.ds.setRawStyleProperty("margin-left", this.bb + this.bd + 10 + "px");
35
35
  }
36
36
  if (a == "IsCollapsable") {
37
- if (this.v) {
38
- this.ck.setRawStyleProperty("margin-left", this.a3 + this.a5 + 10 + "px");
37
+ if (this.aa) {
38
+ this.ds.setRawStyleProperty("margin-left", this.bb + this.bd + 10 + "px");
39
39
  }
40
40
  else {
41
- this.ck.setRawStyleProperty("margin-left", "0px");
41
+ this.ds.setRawStyleProperty("margin-left", "0px");
42
42
  }
43
43
  }
44
44
  }
@@ -22,27 +22,27 @@ export let SectionHeaderCellPresenter = /*@__PURE__*/ (() => {
22
22
  b(a) {
23
23
  super.b(a);
24
24
  let b = a;
25
- if (a.a3) {
26
- if (a.a8(SectionHeaderCellModel.mp) || a.a8(SectionHeaderCellModel.mr) || a.a8(SectionHeaderCellModel.mq) || a.a8(SectionHeaderCellModel.mt)) {
27
- if (b.ml == null || (b.ml.length == 0 && b.mz == null)) {
28
- if (b.hn == null) {
29
- b.j3 = "";
25
+ if (a.a7) {
26
+ if (a.bc(SectionHeaderCellModel.n2) || a.bc(SectionHeaderCellModel.n4) || a.bc(SectionHeaderCellModel.n3) || a.bc(SectionHeaderCellModel.n6)) {
27
+ if (b.ny == null || (b.ny.length == 0 && b.oc == null)) {
28
+ if (b.ib == null) {
29
+ b.ku = "";
30
30
  }
31
31
  else {
32
- b.j3 = b.hn.toString();
32
+ b.ku = b.ib.toString();
33
33
  }
34
34
  }
35
35
  else {
36
- if (b.mx != null && b.mo == 0) {
37
- b.j3 = b.mz + "    " + b.mx;
36
+ if (b.oa != null && b.n1 == 0) {
37
+ b.ku = b.oc + "    " + b.oa;
38
38
  }
39
39
  else {
40
- b.j3 = b.mz;
40
+ b.ku = b.oc;
41
41
  }
42
42
  }
43
- this.d.cl.setRawText(b.j3);
43
+ this.d.c5(this.d.dt, b.ku);
44
44
  }
45
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cl, this.a);
45
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dt, this.a);
46
46
  }
47
47
  }
48
48
  }
@@ -13,59 +13,59 @@ export let SummaryCell = /*@__PURE__*/ (() => {
13
13
  class SummaryCell extends GridCellBase {
14
14
  constructor(a) {
15
15
  super(a);
16
- this.ck = null;
17
- this.cl = null;
18
- this.cm = null;
19
- this.cq = -1;
20
- this.cp = -1;
21
- this.ah.setRawStyleProperty("vertical-align", "middle");
22
- this.cm = a.createElement("div");
23
- this.ck = a.createElement("span");
24
- this.ck.setRawStyleProperty("display", "inline-block");
25
- this.ck.setRawStyleProperty("width", "40%");
26
- this.ck.setRawStyleProperty("white-space", "nowrap");
27
- this.ck.setRawStyleProperty("text-overflow", "ellipsis");
28
- this.ck.setRawStyleProperty("vertical-align", "middle");
29
- this.ck.setRawStyleProperty("overflow", "hidden");
30
- this.cm.append(this.ck);
31
- this.cl = a.createElement("span");
32
- this.cl.setRawStyleProperty("display", "inline-block");
33
- this.cl.setRawStyleProperty("width", "60%");
34
- this.cl.setRawStyleProperty("text-align", "right");
35
- this.cl.setRawStyleProperty("white-space", "nowrap");
36
- this.cl.setRawStyleProperty("text-overflow", "ellipsis");
37
- this.cl.setRawStyleProperty("vertical-align", "middle");
38
- this.cl.setRawStyleProperty("overflow", "hidden");
39
- this.cm.append(this.cl);
40
- this.ah.append(this.cm);
16
+ this.ds = null;
17
+ this.dt = null;
18
+ this.du = null;
19
+ this.dy = -1;
20
+ this.dx = -1;
21
+ this.ap.setRawStyleProperty("vertical-align", "middle");
22
+ this.du = a.createElement("div");
23
+ this.ds = a.createElement("span");
24
+ this.ds.setRawStyleProperty("display", "inline-block");
25
+ this.ds.setRawStyleProperty("width", "40%");
26
+ this.ds.setRawStyleProperty("white-space", "nowrap");
27
+ this.ds.setRawStyleProperty("text-overflow", "ellipsis");
28
+ this.ds.setRawStyleProperty("vertical-align", "middle");
29
+ this.ds.setRawStyleProperty("overflow", "hidden");
30
+ this.du.append(this.ds);
31
+ this.dt = a.createElement("span");
32
+ this.dt.setRawStyleProperty("display", "inline-block");
33
+ this.dt.setRawStyleProperty("width", "60%");
34
+ this.dt.setRawStyleProperty("text-align", "right");
35
+ this.dt.setRawStyleProperty("white-space", "nowrap");
36
+ this.dt.setRawStyleProperty("text-overflow", "ellipsis");
37
+ this.dt.setRawStyleProperty("vertical-align", "middle");
38
+ this.dt.setRawStyleProperty("overflow", "hidden");
39
+ this.du.append(this.dt);
40
+ this.ap.append(this.du);
41
41
  }
42
- get cn() {
43
- return this.ck;
42
+ get dv() {
43
+ return this.ds;
44
44
  }
45
- get co() {
46
- return this.cl;
45
+ get dw() {
46
+ return this.dt;
47
47
  }
48
- b9(a, b) {
49
- super.b9(a, b);
48
+ c8(a, b) {
49
+ super.c8(a, b);
50
50
  let c = Math.max(0, a - b);
51
- if (this.cq != c) {
52
- this.cq = c;
51
+ if (this.dy != c) {
52
+ this.dy = c;
53
53
  }
54
54
  }
55
- b3(a, b) {
56
- super.b3(a, b);
55
+ cy(a, b) {
56
+ super.cy(a, b);
57
57
  let c = Math.max(0, a - b);
58
- if (this.cp != c) {
59
- this.cp = c;
58
+ if (this.dx != c) {
59
+ this.dx = c;
60
60
  }
61
61
  }
62
- get_z() {
62
+ get_ae() {
63
63
  return false;
64
64
  }
65
- bs(a, b, c) {
66
- super.bs(a, b, c);
65
+ ch(a, b, c) {
66
+ super.ch(a, b, c);
67
67
  if (a == "Indent" || a == "IsCollapsable") {
68
- this.cm.setRawStyleProperty("margin-left", this.a3 + this.a5 + this.a4 + "px");
68
+ this.du.setRawStyleProperty("margin-left", this.bb + this.bd + this.bc + "px");
69
69
  }
70
70
  }
71
71
  }
@@ -22,26 +22,26 @@ export let SummaryCellPresenter = /*@__PURE__*/ (() => {
22
22
  b(a) {
23
23
  super.b(a);
24
24
  let b = a;
25
- if (a.a3) {
26
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.cn, this.a);
27
- ContentCellModelHelper.a(this.a.ae, b, this.a.ah, this.d.co, this.a);
28
- if (a.a7("ResolvedSummaryLabel") || a.a7("ResolvedSummaryValue")) {
29
- if (b.mr != null) {
30
- this.d.cn.setRawText(b.mr);
25
+ if (a.a7) {
26
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dv, this.a);
27
+ ContentCellModelHelper.a(this.a.ak, b, this.a.ap, this.d.dw, this.a);
28
+ if (a.bb("ResolvedSummaryLabel") || a.bb("ResolvedSummaryValue")) {
29
+ if (b.n4 != null) {
30
+ this.d.c5(this.d.dv, b.n4);
31
31
  }
32
- if (b.mt != null) {
33
- this.d.co.setRawText(b.mt);
32
+ if (b.n6 != null) {
33
+ this.d.c5(this.d.dw, b.n6);
34
34
  }
35
35
  }
36
- if (a.a7("SummaryLabelTextColor")) {
37
- this.d.cn.setRawStyleProperty("color", b.my._fill);
36
+ if (a.bb("SummaryLabelTextColor")) {
37
+ this.d.dv.setRawStyleProperty("color", b.ob._fill);
38
38
  }
39
- if (a.a7("SummaryLabelFontInfo")) {
40
- let c = b.mk;
39
+ if (a.bb("SummaryLabelFontInfo")) {
40
+ let c = b.nx;
41
41
  if (c == null) {
42
- c = FontUtil.getDefaultFont(this.a.ae);
42
+ c = FontUtil.getDefaultFont(this.a.ak);
43
43
  }
44
- this.d.cn.setRawStyleProperty("font", c.fontString);
44
+ this.d.dv.setRawStyleProperty("font", c.fontString);
45
45
  }
46
46
  }
47
47
  }