igniteui-webcomponents-data-grids 7.1.0-alpha.3 → 7.1.0-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 (204) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7956 -7387
  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 +1 -1
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +38 -35
  16. package/esm2015/lib/CheckboxListBridge.js +8 -0
  17. package/esm2015/lib/CheckboxListView_combined.js +369 -335
  18. package/esm2015/lib/ColumnChooserView_combined.js +11 -11
  19. package/esm2015/lib/ColumnFilterCondition_combined.js +5218 -4964
  20. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  21. package/esm2015/lib/ColumnPinningView_combined.js +5 -5
  22. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  23. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  24. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  25. package/esm2015/lib/DataGridLocaleEn.js +8 -0
  26. package/esm2015/lib/DataGridScrollerKeyboardListener.js +16 -16
  27. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  28. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  29. package/esm2015/lib/EditorCell.js +292 -292
  30. package/esm2015/lib/EditorCellPresenter.js +26 -26
  31. package/esm2015/lib/FilterCell.js +269 -269
  32. package/esm2015/lib/FilterCellPresenter.js +15 -15
  33. package/esm2015/lib/GridCellBase.js +167 -150
  34. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  35. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +5 -5
  36. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  37. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  38. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  39. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  40. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  41. package/esm2015/lib/GridExternalWrapper.js +6 -6
  42. package/esm2015/lib/GridFilterDialogView_combined.js +188 -173
  43. package/esm2015/lib/GridIconRepository.js +4 -4
  44. package/esm2015/lib/ISummaryChooserView_combined.js +5 -5
  45. package/esm2015/lib/ImageCell.js +57 -57
  46. package/esm2015/lib/ImageCellPresenter.js +15 -15
  47. package/esm2015/lib/MultiColumnComboBoxView_combined.js +5 -5
  48. package/esm2015/lib/NumericCell.js +8 -8
  49. package/esm2015/lib/NumericCellPresenter.js +9 -9
  50. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  51. package/esm2015/lib/SectionHeaderCell.js +20 -20
  52. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  53. package/esm2015/lib/SummaryCell.js +45 -45
  54. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  55. package/esm2015/lib/TemplateCell.js +15 -15
  56. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  57. package/esm2015/lib/TemplateHeader.js +2 -2
  58. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  59. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  60. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  61. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  62. package/esm2015/lib/TextCell.js +29 -29
  63. package/esm2015/lib/TextCellPresenter.js +10 -10
  64. package/esm2015/lib/TextHeaderCell.js +184 -184
  65. package/esm2015/lib/TextHeaderCellPresenter.js +55 -52
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +90 -81
  68. package/esm2015/lib/igc-checkbox-list-component.js +68 -58
  69. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  70. package/esm2015/lib/igc-data-grid-column-component.js +238 -214
  71. package/esm2015/lib/igc-data-grid-component.js +31 -0
  72. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +44 -34
  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-editor-cell-info.js +23 -23
  76. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  77. package/esm2015/lib/igc-image-cell-info.js +6 -6
  78. package/esm2015/lib/igc-image-column-component.js +12 -12
  79. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  80. package/esm2015/lib/igc-numeric-column-component.js +38 -38
  81. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  82. package/esm2015/lib/igc-section-header-component.js +32 -12
  83. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  84. package/esm2015/lib/igc-template-cell-info.js +2 -2
  85. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  86. package/esm2015/lib/igc-text-cell-info.js +2 -2
  87. package/esm2015/lib/igc-text-column-component.js +9 -9
  88. package/esm2015/lib/igc-text-header-cell-info.js +44 -38
  89. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  90. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  91. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  92. package/esm5/lib/CanvasGridCellBase.js +2 -2
  93. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  94. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  95. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  96. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  97. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +1 -1
  99. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  101. package/esm5/lib/CellPresenterBase.js +38 -35
  102. package/esm5/lib/CheckboxListBridge.js +8 -0
  103. package/esm5/lib/CheckboxListView_combined.js +359 -321
  104. package/esm5/lib/ColumnChooserView_combined.js +11 -11
  105. package/esm5/lib/ColumnFilterCondition_combined.js +5068 -4770
  106. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  107. package/esm5/lib/ColumnPinningView_combined.js +5 -5
  108. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  109. package/esm5/lib/ContentCellModelHelper.js +10 -10
  110. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  111. package/esm5/lib/DataGridLocaleEn.js +8 -0
  112. package/esm5/lib/DataGridScrollerKeyboardListener.js +16 -16
  113. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  114. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  115. package/esm5/lib/EditorCell.js +277 -277
  116. package/esm5/lib/EditorCellPresenter.js +26 -26
  117. package/esm5/lib/FilterCell.js +259 -259
  118. package/esm5/lib/FilterCellPresenter.js +15 -15
  119. package/esm5/lib/GridCellBase.js +164 -143
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +5 -5
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  124. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  125. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  127. package/esm5/lib/GridExternalWrapper.js +6 -6
  128. package/esm5/lib/GridFilterDialogView_combined.js +183 -164
  129. package/esm5/lib/GridIconRepository.js +4 -4
  130. package/esm5/lib/ISummaryChooserView_combined.js +5 -5
  131. package/esm5/lib/ImageCell.js +57 -57
  132. package/esm5/lib/ImageCellPresenter.js +15 -15
  133. package/esm5/lib/MultiColumnComboBoxView_combined.js +5 -5
  134. package/esm5/lib/NumericCell.js +8 -8
  135. package/esm5/lib/NumericCellPresenter.js +9 -9
  136. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  137. package/esm5/lib/SectionHeaderCell.js +20 -20
  138. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  139. package/esm5/lib/SummaryCell.js +45 -45
  140. package/esm5/lib/SummaryCellPresenter.js +10 -10
  141. package/esm5/lib/TemplateCell.js +15 -15
  142. package/esm5/lib/TemplateCellPresenter.js +3 -3
  143. package/esm5/lib/TemplateHeader.js +2 -2
  144. package/esm5/lib/TemplateHeaderCell.js +5 -5
  145. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  146. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  147. package/esm5/lib/TemplateSectionHeader.js +1 -1
  148. package/esm5/lib/TextCell.js +29 -29
  149. package/esm5/lib/TextCellPresenter.js +10 -10
  150. package/esm5/lib/TextHeaderCell.js +182 -182
  151. package/esm5/lib/TextHeaderCellPresenter.js +55 -52
  152. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  153. package/esm5/lib/igc-cell-info.js +94 -81
  154. package/esm5/lib/igc-checkbox-list-component.js +72 -58
  155. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  156. package/esm5/lib/igc-data-grid-column-component.js +250 -214
  157. package/esm5/lib/igc-data-grid-component.js +43 -0
  158. package/esm5/lib/igc-data-grid-filter-dialog-component.js +48 -34
  159. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  160. package/esm5/lib/igc-date-time-column-component.js +23 -23
  161. package/esm5/lib/igc-editor-cell-info.js +23 -23
  162. package/esm5/lib/igc-filter-cell-info.js +26 -26
  163. package/esm5/lib/igc-image-cell-info.js +6 -6
  164. package/esm5/lib/igc-image-column-component.js +12 -12
  165. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  166. package/esm5/lib/igc-numeric-column-component.js +38 -38
  167. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  168. package/esm5/lib/igc-section-header-component.js +40 -12
  169. package/esm5/lib/igc-summary-cell-info.js +9 -9
  170. package/esm5/lib/igc-template-cell-info.js +2 -2
  171. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  172. package/esm5/lib/igc-text-cell-info.js +2 -2
  173. package/esm5/lib/igc-text-column-component.js +9 -9
  174. package/esm5/lib/igc-text-header-cell-info.js +48 -38
  175. package/fesm2015/igniteui-webcomponents-data-grids.js +8096 -7635
  176. package/fesm5/igniteui-webcomponents-data-grids.js +7956 -7387
  177. package/lib/CheckboxListExternal.d.ts +2 -0
  178. package/lib/CheckboxListView_combined.d.ts +98 -94
  179. package/lib/ColumnFilterCondition_combined.d.ts +1308 -1267
  180. package/lib/DataGridLocaleEn.d.ts +8 -0
  181. package/lib/EditorCell.d.ts +67 -67
  182. package/lib/FilterCell.d.ts +55 -55
  183. package/lib/GridCellBase.d.ts +64 -61
  184. package/lib/GridFilterDialogView_combined.d.ts +52 -49
  185. package/lib/ImageCell.d.ts +17 -17
  186. package/lib/NumericCell.d.ts +2 -2
  187. package/lib/SectionHeaderCell.d.ts +4 -4
  188. package/lib/SummaryCell.d.ts +10 -10
  189. package/lib/TemplateCell.d.ts +5 -5
  190. package/lib/TemplateHeaderCell.d.ts +2 -2
  191. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  192. package/lib/TemplateSectionHeader.d.ts +1 -1
  193. package/lib/TextCell.d.ts +7 -7
  194. package/lib/TextHeaderCell.d.ts +30 -30
  195. package/lib/VerticalSeparatorCell.d.ts +8 -8
  196. package/lib/igc-cell-info.d.ts +5 -0
  197. package/lib/igc-checkbox-list-component.d.ts +5 -0
  198. package/lib/igc-data-grid-column-component.d.ts +9 -0
  199. package/lib/igc-data-grid-component.d.ts +16 -0
  200. package/lib/igc-data-grid-filter-dialog-component.d.ts +5 -0
  201. package/lib/igc-numeric-cell-info.d.ts +5 -0
  202. package/lib/igc-section-header-component.d.ts +10 -0
  203. package/lib/igc-text-header-cell-info.d.ts +2 -0
  204. package/package.json +4 -4
@@ -729,10 +729,10 @@ let ColumnGrouping = /*@__PURE__*/ (() => {
729
729
  let c = this.targetGrid.groupDescriptions.j;
730
730
  for (let d = 0; d < c.count; d++) {
731
731
  let e = new GroupInfo();
732
- let f = b.i((g) => g.nh == c.item(d).f);
732
+ let f = b.i((g) => g.nl == c.item(d).f);
733
733
  if (f != -1) {
734
- if (!stringIsNullOrEmpty(b._inner[f].no)) {
735
- e.c = b._inner[f].no;
734
+ if (!stringIsNullOrEmpty(b._inner[f].ns)) {
735
+ e.c = b._inner[f].ns;
736
736
  }
737
737
  else {
738
738
  e.c = c.item(d).f;
@@ -763,7 +763,7 @@ let ColumnGrouping = /*@__PURE__*/ (() => {
763
763
  let h = a;
764
764
  let i = this.targetGrid.actualColumns._inner[h.cellPath.a5];
765
765
  let j = new ColumnGroupDescription(0);
766
- j.f = i.nh;
766
+ j.f = i.nl;
767
767
  j.c = 1;
768
768
  let k = this.targetGrid.groupDescriptions.j.contains(j);
769
769
  j.c = 0;
@@ -299,9 +299,9 @@ let ColumnPinning = /*@__PURE__*/ (() => {
299
299
  let b = new ObservableCollection$1(ColumnPinningInfo.$, 0);
300
300
  for (let c of fromEnum(this.b.actualColumns)) {
301
301
  a = new ColumnPinningInfo();
302
- let d = c.nh;
303
- if (c.no != null) {
304
- d = c.no;
302
+ let d = c.nl;
303
+ if (c.ns != null) {
304
+ d = c.ns;
305
305
  }
306
306
  a.columnName = d;
307
307
  if (c.it == 1) {
@@ -330,7 +330,7 @@ let ColumnPinning = /*@__PURE__*/ (() => {
330
330
  let c = this.d.g.actualDataSource.getItemAtIndex(b.c);
331
331
  let d = this.b.actualColumns.count;
332
332
  for (let e = 0; e < d; e++) {
333
- if (this.b.actualColumns._inner[e].nh == c.columnName || this.b.actualColumns._inner[e].n8 == c.columnName || this.b.actualColumns._inner[e].no == c.columnName) {
333
+ if (this.b.actualColumns._inner[e].nl == c.columnName || this.b.actualColumns._inner[e].od == c.columnName || this.b.actualColumns._inner[e].ns == c.columnName) {
334
334
  if (this.b.actualColumns._inner[e].it == 0) {
335
335
  this.b.actualColumns._inner[e].it = 1;
336
336
  }
@@ -340,7 +340,7 @@ let ColumnPinning = /*@__PURE__*/ (() => {
340
340
  else {
341
341
  this.b.actualColumns._inner[e].it = 0;
342
342
  }
343
- this.b.actualColumns._inner[e].pc("Pinned");
343
+ this.b.actualColumns._inner[e].ph("Pinned");
344
344
  break;
345
345
  }
346
346
  }
@@ -516,15 +516,15 @@ let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
516
516
  $ret.c = false;
517
517
  return $ret;
518
518
  })());
519
- this.n.lk = this.n.ll = 4;
520
- this.n.lm = this.n.lj = 0;
521
- this.n.nh = "Icon";
519
+ this.n.lm = this.n.ln = 4;
520
+ this.n.lo = this.n.ll = 0;
521
+ this.n.nl = "Icon";
522
522
  let e = this.n;
523
523
  e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.el));
524
524
  this.f.columns.add(this.n);
525
525
  let f = new TextColumn();
526
- f.nh = "DisplayText";
527
- f.lk = 0;
526
+ f.nl = "DisplayText";
527
+ f.lm = 0;
528
528
  f.g = 0;
529
529
  this.f.columns.add(f);
530
530
  this.d4();
@@ -832,7 +832,7 @@ let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
832
832
  this.d8();
833
833
  }
834
834
  el(a, b) {
835
- this.e.t(b.content, b.cellInfo.ii);
835
+ this.e.t(b.content, b.cellInfo.ij);
836
836
  }
837
837
  }
838
838
  ComparisonOperatorSelector.$t = /*@__PURE__*/ markType(ComparisonOperatorSelector, 'ComparisonOperatorSelector', Base.$, [INotifyPropertyChanged_$type]);
@@ -49,21 +49,21 @@ let ContentCellModelHelper = /*@__PURE__*/ (() => {
49
49
  }
50
50
  static a(a, b, c, d, e) {
51
51
  if (b.a7) {
52
- if (b.bc(CellModel.fp) || b.bc(CellModel.eu) || b.bc(CellModel.h6) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
52
+ if (b.bc(CellModel.fp) || b.bc(CellModel.eu) || b.bc(CellModel.h7) || b.bb("IsRowPinned") || b.bb("IsRowSticky") || b.bb("PinnedRowOpacity")) {
53
53
  let f = Math.min(1, Math.max(0, b.c7));
54
54
  let g = b.cp * (1 - f);
55
55
  d.setRawStyleProperty("opacity", g.toString());
56
56
  if (b.bm) {
57
- e.dl(b.cp * f);
57
+ e.dm(b.cp * f);
58
58
  }
59
59
  }
60
60
  if (b.bc(CellModel.e5)) {
61
- ContentCellModelHelper.c(d, b.ni);
61
+ ContentCellModelHelper.c(d, b.nl);
62
62
  if (b.bm) {
63
- e.di(b.ni);
63
+ e.dj(b.nl);
64
64
  }
65
65
  }
66
- if (b.bc(CellModel.gv)) {
66
+ if (b.bc(CellModel.gw)) {
67
67
  switch (b.ac) {
68
68
  case 0:
69
69
  d.setRawStyleProperty("white-space", "nowrap");
@@ -83,19 +83,19 @@ let ContentCellModelHelper = /*@__PURE__*/ (() => {
83
83
  if (b.bb("TextDecoration")) {
84
84
  ContentCellModelHelper.d(d, b.aa);
85
85
  }
86
- if (b.bc(CellModel.gb) || b.bc(CellModel.h5)) {
86
+ if (b.bc(CellModel.gc) || b.bc(CellModel.h6)) {
87
87
  let h = b.g;
88
88
  let i = b.i;
89
89
  ContentCellModelHelper.b(c, d, h);
90
- e.ci(c, d, h);
90
+ e.cj(c, d, h);
91
91
  ContentCellModelHelper.e(c, d, i);
92
- e.co(i);
92
+ e.cp(i);
93
93
  if (b.bm) {
94
- e.dh(h, i);
94
+ e.di(h, i);
95
95
  }
96
96
  }
97
97
  if (b.bb("ActualFontInfo")) {
98
- e.c0(d, b.ah);
98
+ e.c1(d, b.ah);
99
99
  }
100
100
  if (b.bb("IsEdited") || b.bb("IsDeleted")) {
101
101
  if (b.bd || b.ba) {
@@ -187,7 +187,7 @@ let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
187
187
  if (v.bl) {
188
188
  m = true;
189
189
  }
190
- if (v.u == 1 && v.ib != n) {
190
+ if (v.u == 1 && v.ic != n) {
191
191
  m = true;
192
192
  }
193
193
  }
@@ -243,8 +243,8 @@ let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
243
243
  ag.nativeCell.isRemoved = false;
244
244
  }
245
245
  af.u = 2;
246
- let al = (af.hg + intDivide(af.h7, 2));
247
- let am = (af.hi + intDivide(af.f9, 2));
246
+ let al = (af.hh + intDivide(af.h8, 2));
247
+ let am = (af.hj + intDivide(af.ga, 2));
248
248
  let an = (al - b) / this.f.actualVisibleRegion.width;
249
249
  let ao = (am - a) / this.f.actualVisibleRegion.height;
250
250
  if (af.bn) {
@@ -265,15 +265,15 @@ let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
265
265
  aj.setRawStyleProperty("clip", this.y(af));
266
266
  }
267
267
  else {
268
- if (Rect.l_op_Inequality(af.n4, Rect.empty)) {
269
- aj.setRawStyleProperty("clip", this.x(af.n4));
268
+ if (Rect.l_op_Inequality(af.n8, Rect.empty)) {
269
+ aj.setRawStyleProperty("clip", this.x(af.n8));
270
270
  }
271
271
  else {
272
272
  aj.setRawStyleProperty("clip", "auto");
273
273
  }
274
274
  }
275
275
  }
276
- af.mc();
276
+ af.me();
277
277
  if (ai) {
278
278
  let ap = af.s.nativeCell;
279
279
  ap.co(z);
@@ -289,9 +289,9 @@ let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
289
289
  ar.b6(aq, y.c, y.d, af.c8, af.c9, z);
290
290
  aq.ab();
291
291
  }
292
- af.l5();
292
+ af.l7();
293
293
  if (m) {
294
- af.ib = n;
294
+ af.ic = n;
295
295
  if (!ai) {
296
296
  aj.setRawStyleProperty("z-index", x.toString());
297
297
  }
@@ -515,8 +515,8 @@ let DataGridCellLayoutPanel = /*@__PURE__*/ (() => {
515
515
  y(a) {
516
516
  let b = a.c8 < this.g.cn ? this.g.cn - a.c8 : 0;
517
517
  let c = 0;
518
- let d = this.g.cy == -1 ? a.h7 : (a.c8 + a.h7 > this.g.co) ? a.h7 - (a.c8 + a.h7 - this.g.co) : a.h7;
519
- let e = a.f9;
518
+ let d = this.g.cy == -1 ? a.h8 : (a.c8 + a.h8 > this.g.co) ? a.h8 - (a.c8 + a.h8 - this.g.co) : a.h8;
519
+ let e = a.ga;
520
520
  return this.x(new Rect(0, b, c, d, e));
521
521
  }
522
522
  ah(a, b) {
@@ -11,8 +11,13 @@ export class DataGridLocaleEn {
11
11
  this["Clear_Column_Filter"] = "Clear column filters";
12
12
  this["Column_Move"] = "Move";
13
13
  this["Column_Move_Left"] = "Left";
14
+ this["Column_Move_Left_Tooltip"] = "Move Left";
14
15
  this["Column_Move_Right"] = "Right";
16
+ this["Column_Move_Right_Tooltip"] = "Move Right";
15
17
  this["Column_Options_Analyze"] = "Analyze";
18
+ this["Column_Options_Group"] = "Group";
19
+ this["Column_Options_Hide"] = "Hide";
20
+ this["Column_Options_Show"] = "Show";
16
21
  this["Column_Options_Sort_Ascending"] = "Sort Ascending";
17
22
  this["Column_Options_Sort_Descending"] = "Sort Descending";
18
23
  this["Column_Options_Summaries"] = "Summaries";
@@ -21,9 +26,12 @@ export class DataGridLocaleEn {
21
26
  this["Column_Options_Summary_Maximum"] = "Maximum";
22
27
  this["Column_Options_Summary_Minimum"] = "Minimum";
23
28
  this["Column_Options_Summary_Sum"] = "Sum";
29
+ this["Column_Options_Ungroup"] = "Ungroup";
24
30
  this["Column_Pin"] = "Pin";
25
31
  this["Column_Pin_Left"] = "Left";
32
+ this["Column_Pin_Left_Tooltip"] = "Pin Left";
26
33
  this["Column_Pin_Right"] = "Right";
34
+ this["Column_Pin_Right_Tooltip"] = "Pin Right";
27
35
  this["Column_Sort"] = "Sort";
28
36
  this["Column_Sort_Ascending"] = "Asc";
29
37
  this["Column_Sort_Descending"] = "Desc";
@@ -14,52 +14,52 @@ let DataGridScrollerKeyboardListener = /*@__PURE__*/ (() => {
14
14
  this.a = a;
15
15
  }
16
16
  onDownArrow(a, b) {
17
- return this.a.kv(a, b);
17
+ return this.a.kx(a, b);
18
18
  }
19
19
  onEnd(a, b) {
20
- return this.a.kw(a, b);
20
+ return this.a.ky(a, b);
21
21
  }
22
22
  onHome(a, b) {
23
- return this.a.k0(a, b);
23
+ return this.a.k2(a, b);
24
24
  }
25
25
  onLeftArrow(a, b) {
26
- return this.a.k2(a, b);
26
+ return this.a.k4(a, b);
27
27
  }
28
28
  onPageDown(a, b) {
29
- return this.a.k3(a, b);
29
+ return this.a.k5(a, b);
30
30
  }
31
31
  onPageUp(a, b) {
32
- return this.a.k4(a, b);
32
+ return this.a.k6(a, b);
33
33
  }
34
34
  onRightArrow(a, b) {
35
- return this.a.k5(a, b);
35
+ return this.a.k7(a, b);
36
36
  }
37
37
  onTab(a, b) {
38
- return this.a.k7(a, b);
38
+ return this.a.k9(a, b);
39
39
  }
40
40
  onUpArrow(a, b) {
41
- return this.a.k8(a, b);
41
+ return this.a.la(a, b);
42
42
  }
43
43
  onWheel() {
44
- this.a.yr();
44
+ this.a.yw();
45
45
  }
46
46
  onEnter(a, b) {
47
- return this.a.kx(a, b);
47
+ return this.a.kz(a, b);
48
48
  }
49
49
  onEscape() {
50
- return this.a.ky();
50
+ return this.a.k0();
51
51
  }
52
52
  onF2() {
53
- return this.a.kz();
53
+ return this.a.k1();
54
54
  }
55
55
  onSpace(a, b) {
56
- return this.a.k6(a, b);
56
+ return this.a.k8(a, b);
57
57
  }
58
58
  onKeyDown(a, b, c) {
59
- return this.a.k1(a, b, c);
59
+ return this.a.k3(a, b, c);
60
60
  }
61
61
  onGotFocus(a, b) {
62
- this.a.x1(a, b);
62
+ this.a.x6(a, b);
63
63
  }
64
64
  }
65
65
  DataGridScrollerKeyboardListener.$t = /*@__PURE__*/ markType(DataGridScrollerKeyboardListener, 'DataGridScrollerKeyboardListener', Base.$, [IScrollerKeyboardListener_$type]);
@@ -743,7 +743,7 @@ let DataGridToolbar = /*@__PURE__*/ (() => {
743
743
  this.s = 0;
744
744
  this.t = 0;
745
745
  for (let b = 0; b < a; b++) {
746
- if (this.e.actualColumns._inner[b].ka == true) {
746
+ if (this.e.actualColumns._inner[b].kb == true) {
747
747
  this.s++;
748
748
  }
749
749
  if (this.e.actualColumns._inner[b].it == 1) {
@@ -21,22 +21,22 @@ let DateTimeCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = a;
23
23
  if (a.a7) {
24
- if (a.bc(DateTimeCellModel.oh) || a.bc(DateTimeCellModel.oi) || a.bc(DateTimeCellModel.og) || a.bc(DateTimeCellModel.gy) || a.bc(DateTimeCellModel.h4)) {
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.c8(this.d.dx, b.kz);
26
+ this.d.c9(this.d.d0, b.k1);
27
27
  }
28
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dx, this.a);
28
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d0, this.a);
29
29
  }
30
30
  }
31
31
  e(a) {
32
- if (a.lw != null) {
33
- a.kz = a.lw;
32
+ if (a.ly != null) {
33
+ a.k1 = a.ly;
34
34
  return;
35
35
  }
36
- a.kz = a.ot(a.of);
37
- if (a.kz == stringEmpty()) {
38
- if (a.ih != null && !(typeCast(Date_$type, a.ih) !== null)) {
39
- a.kz = a.ih.toString();
36
+ a.k1 = a.ox(a.oj);
37
+ if (a.k1 == stringEmpty()) {
38
+ if (a.ii != null && !(typeCast(Date_$type, a.ii) !== null)) {
39
+ a.k1 = a.ii.toString();
40
40
  }
41
41
  }
42
42
  }