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
@@ -119,8 +119,8 @@ let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
119
119
  return;
120
120
  }
121
121
  this.p = false;
122
- if (b.g4 != a) {
123
- b.g4 = a;
122
+ if (b.g5 != a) {
123
+ b.g5 = a;
124
124
  this.p = true;
125
125
  }
126
126
  else {
@@ -139,9 +139,9 @@ let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
139
139
  this.co();
140
140
  let b = this.g.p();
141
141
  if (null != b) {
142
- let c = b.g4;
142
+ let c = b.g5;
143
143
  if (null != c) {
144
- b.g4 = null;
144
+ b.g5 = null;
145
145
  }
146
146
  }
147
147
  }
@@ -607,7 +607,7 @@ let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
607
607
  }
608
608
  this.w = true;
609
609
  if (stringIsNullOrEmpty(this.au)) {
610
- if (null != a.g4) {
610
+ if (null != a.g5) {
611
611
  this.aw(null);
612
612
  }
613
613
  else {
@@ -677,7 +677,7 @@ let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
677
677
  }
678
678
  let f = this.g;
679
679
  let g = this.g.p();
680
- e = g.nk();
680
+ e = g.no();
681
681
  }
682
682
  d.d = e;
683
683
  d.b = a;
@@ -804,9 +804,9 @@ let MultiColumnComboBoxView = /*@__PURE__*/ (() => {
804
804
  this.au = null;
805
805
  let a = this.g.p();
806
806
  if (null != a) {
807
- let b = a.g4;
807
+ let b = a.g5;
808
808
  if (null != b) {
809
- a.g4 = null;
809
+ a.g5 = null;
810
810
  }
811
811
  else {
812
812
  this.cw();
@@ -2398,7 +2398,7 @@ let MultiColumnComboBox = /*@__PURE__*/ (() => {
2398
2398
  return c._inner[0];
2399
2399
  }
2400
2400
  for (let d of fromEnum(c)) {
2401
- if (0 == StringComparer.b.compare(d.nf, a)) {
2401
+ if (0 == StringComparer.b.compare(d.nj, a)) {
2402
2402
  return d;
2403
2403
  }
2404
2404
  }
@@ -10,18 +10,18 @@ let NumericCell = /*@__PURE__*/ (() => {
10
10
  class NumericCell extends TextCell {
11
11
  constructor(a) {
12
12
  super(a);
13
- this.c2(this.dx, 2);
14
- this.db(this.dx, 1);
13
+ this.c3(this.d0, 2);
14
+ this.dc(this.d0, 1);
15
15
  }
16
- ck(a, b, c) {
17
- super.ck(a, b, c);
16
+ cl(a, b, c) {
17
+ super.cl(a, b, c);
18
18
  if (a == "Indent" || a == "IsCollapsable") {
19
- this.dx.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
19
+ this.d0.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
20
20
  }
21
21
  }
22
- b8() {
23
- super.b8();
24
- this.dh(2, 1);
22
+ b9() {
23
+ super.b9();
24
+ this.di(2, 1);
25
25
  }
26
26
  }
27
27
  NumericCell.$t = /*@__PURE__*/ markType(NumericCell, 'NumericCell', TextCell.$);
@@ -21,20 +21,20 @@ let NumericCellPresenter = /*@__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.c8(this.d.dx, 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.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.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);
@@ -736,15 +736,15 @@ let PropertyEditor = /*@__PURE__*/ (() => {
736
736
  }
737
737
  else {
738
738
  let a = new TextColumn();
739
- a.lj = 10;
740
- a.lk = 5;
741
- a.nf = "PropertyPath";
739
+ a.lm = 10;
740
+ a.ln = 5;
741
+ a.nj = "PropertyPath";
742
742
  a.dataBinding = delegateCombine(a.dataBinding, runOn(this, this.dp));
743
743
  this.l.columns.add(a);
744
744
  let b = new TemplateColumn();
745
- b.nf = "ValueType";
746
- b.lj = 5;
747
- b.lk = 5;
745
+ b.nj = "ValueType";
746
+ b.lm = 5;
747
+ b.ln = 5;
748
748
  b.dataBinding = delegateCombine(b.dataBinding, runOn(this, this.cu));
749
749
  b.cellStyleKeyRequested = delegateCombine(b.cellStyleKeyRequested, runOn(this, this.cs));
750
750
  b.cellUpdating = delegateCombine(b.cellUpdating, runOn(this, this.ct));
@@ -824,8 +824,8 @@ let PropertyEditor = /*@__PURE__*/ (() => {
824
824
  let r = this.cc(l);
825
825
  if (c.count <= g) {
826
826
  let s = new TextColumn();
827
- s.lj = 10;
828
- s.lk = 5;
827
+ s.lm = 10;
828
+ s.ln = 5;
829
829
  s.width = ((() => {
830
830
  let $ret = new ColumnWidth();
831
831
  $ret.c = false;
@@ -833,8 +833,8 @@ let PropertyEditor = /*@__PURE__*/ (() => {
833
833
  return $ret;
834
834
  })());
835
835
  s.dataBinding = delegateCombine(s.dataBinding, runOn(this, this.dp));
836
- s.n6 = "PropertyName_" + k;
837
- s.nf = "PropertyName";
836
+ s.ob = "PropertyName_" + k;
837
+ s.nj = "PropertyName";
838
838
  c.add(s);
839
839
  this.au.item(s, c.count - 1);
840
840
  g++;
@@ -871,10 +871,10 @@ let PropertyEditor = /*@__PURE__*/ (() => {
871
871
  }
872
872
  if (c.count <= g) {
873
873
  let v = new TemplateColumn();
874
- v.n6 = "ValueType_" + k;
875
- v.nf = "ValueType";
876
- v.lj = 5;
877
- v.lk = 5;
874
+ v.ob = "ValueType_" + k;
875
+ v.nj = "ValueType";
876
+ v.lm = 5;
877
+ v.ln = 5;
878
878
  v.dataBinding = delegateCombine(v.dataBinding, runOn(this, this.cu));
879
879
  v.width = ((() => {
880
880
  let $ret = new ColumnWidth();
@@ -1067,7 +1067,7 @@ let PropertyEditor = /*@__PURE__*/ (() => {
1067
1067
  }
1068
1068
  ct(a, b) {
1069
1069
  let c = a;
1070
- let d = this.s(c, b.cellInfo.fq, b.cellInfo.ih);
1070
+ let d = this.s(c, b.cellInfo.fq, b.cellInfo.ij);
1071
1071
  let e = d != null ? d.w : 0;
1072
1072
  switch (e) {
1073
1073
  case 10:
@@ -1164,7 +1164,7 @@ let PropertyEditor = /*@__PURE__*/ (() => {
1164
1164
  if (c.t != 3) {
1165
1165
  c.t = 3;
1166
1166
  }
1167
- let e = this.s(a, b.cellInfo.fq, b.cellInfo.ih);
1167
+ let e = this.s(a, b.cellInfo.fq, b.cellInfo.ij);
1168
1168
  let f = c.inputs._inner[0];
1169
1169
  f.bh = e;
1170
1170
  f.cq = (e.ar != null ? e.ar.toString() : "");
@@ -1178,7 +1178,7 @@ let PropertyEditor = /*@__PURE__*/ (() => {
1178
1178
  if (c.s != 3) {
1179
1179
  c.s = 3;
1180
1180
  }
1181
- let e = this.s(a, b.cellInfo.fq, b.cellInfo.ih);
1181
+ let e = this.s(a, b.cellInfo.fq, b.cellInfo.ij);
1182
1182
  c.ee = e;
1183
1183
  let f = e.ar;
1184
1184
  if (typeof e.ar === 'number' || typeof e.ar === 'number') {
@@ -1195,7 +1195,7 @@ let PropertyEditor = /*@__PURE__*/ (() => {
1195
1195
  if (c.density != 3) {
1196
1196
  c.density = 3;
1197
1197
  }
1198
- let e = this.s(a, b.cellInfo.fq, b.cellInfo.ih);
1198
+ let e = this.s(a, b.cellInfo.fq, b.cellInfo.ij);
1199
1199
  if (c.dd != e) {
1200
1200
  if (!d) {
1201
1201
  c.selectedValueChanged = delegateRemove(c.selectedValueChanged, runOn(this, this.cq));
@@ -1459,7 +1459,7 @@ let PropertyEditor = /*@__PURE__*/ (() => {
1459
1459
  if (!c.y) {
1460
1460
  c.y = true;
1461
1461
  }
1462
- let e = this.s(a, b.cellInfo.fq, b.cellInfo.ih);
1462
+ let e = this.s(a, b.cellInfo.fq, b.cellInfo.ij);
1463
1463
  let f = e.ar;
1464
1464
  if (f == null) {
1465
1465
  f = false;
@@ -8,46 +8,46 @@ import { GridCellBase } from "./GridCellBase";
8
8
  import { markType } from "igniteui-webcomponents-core";
9
9
  let SectionHeaderCell = /*@__PURE__*/ (() => {
10
10
  class SectionHeaderCell extends GridCellBase {
11
- get dx() {
12
- return this.dw;
11
+ get d0() {
12
+ return this.dz;
13
13
  }
14
14
  constructor(a) {
15
15
  super(a);
16
- this.dw = null;
17
- this.dw = a.createElement("span");
18
- this.dw.setRawStyleProperty("display", "inline-block");
19
- this.dw.setRawStyleProperty("line-height", "normal");
20
- this.dw.setRawStyleProperty("vertical-align", "middle");
21
- this.dw.setRawStyleProperty("overflow", "hidden");
22
- this.dw.setRawStyleProperty("white-space", "nowrap");
23
- this.dw.setRawStyleProperty("text-overflow", "ellipsis");
16
+ this.dz = null;
17
+ this.dz = a.createElement("span");
18
+ this.dz.setRawStyleProperty("display", "inline-block");
19
+ this.dz.setRawStyleProperty("line-height", "normal");
20
+ this.dz.setRawStyleProperty("vertical-align", "middle");
21
+ this.dz.setRawStyleProperty("overflow", "hidden");
22
+ this.dz.setRawStyleProperty("white-space", "nowrap");
23
+ this.dz.setRawStyleProperty("text-overflow", "ellipsis");
24
24
  this.ar.setRawStyleProperty("text-align", "left");
25
25
  this.ar.setRawStyleProperty("vertical-align", "middle");
26
26
  this.ar.setRawStyleProperty("overflow", "hidden");
27
27
  this.ar.setRawStyleProperty("white-space", "nowrap");
28
28
  this.ar.setRawStyleProperty("text-overflow", "ellipsis");
29
- this.ar.append(this.dw);
29
+ this.ar.append(this.dz);
30
30
  }
31
- c0(a, b) {
32
- super.c0(a, b);
33
- if (a == this.dw) {
34
- this.dw.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
31
+ c1(a, b) {
32
+ super.c1(a, b);
33
+ if (a == this.dz) {
34
+ this.dz.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
35
35
  }
36
36
  }
37
37
  get_ae() {
38
38
  return true;
39
39
  }
40
- ck(a, b, c) {
41
- super.ck(a, b, c);
40
+ cl(a, b, c) {
41
+ super.cl(a, b, c);
42
42
  if (a == "Indent") {
43
- this.dw.setRawStyleProperty("margin-left", this.bd + this.bf + 10 + "px");
43
+ this.dz.setRawStyleProperty("margin-left", this.bd + this.bf + 10 + "px");
44
44
  }
45
45
  if (a == "IsCollapsable") {
46
46
  if (this.aa) {
47
- this.dw.setRawStyleProperty("margin-left", this.bd + this.bf + 10 + "px");
47
+ this.dz.setRawStyleProperty("margin-left", this.bd + this.bf + 10 + "px");
48
48
  }
49
49
  else {
50
- this.dw.setRawStyleProperty("margin-left", "0px");
50
+ this.dz.setRawStyleProperty("margin-left", "0px");
51
51
  }
52
52
  }
53
53
  }
@@ -20,26 +20,26 @@ let SectionHeaderCellPresenter = /*@__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) || a.bc(SectionHeaderCellModel.n8) || a.bc(SectionHeaderCellModel.ob)) {
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) || a.bc(SectionHeaderCellModel.og) || a.bc(SectionHeaderCellModel.oj)) {
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.c8(this.d.dx, b.ky);
40
+ this.d.c9(this.d.d0, b.k1);
41
41
  }
42
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dx, this.a);
42
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d0, this.a);
43
43
  }
44
44
  }
45
45
  }
@@ -8,70 +8,70 @@ import { GridCellBase } from "./GridCellBase";
8
8
  import { markType } from "igniteui-webcomponents-core";
9
9
  let SummaryCell = /*@__PURE__*/ (() => {
10
10
  class SummaryCell extends GridCellBase {
11
- get dz() {
12
- return this.dw;
11
+ get d2() {
12
+ return this.dz;
13
13
  }
14
- get d0() {
15
- return this.dx;
14
+ get d3() {
15
+ return this.d0;
16
16
  }
17
- dc(a, b) {
18
- super.dc(a, b);
17
+ dd(a, b) {
18
+ super.dd(a, b);
19
19
  let c = Math.max(0, a - b);
20
- if (this.d2 != c) {
21
- this.d2 = c;
20
+ if (this.d5 != c) {
21
+ this.d5 = c;
22
22
  }
23
23
  }
24
- c1(a, b) {
25
- super.c1(a, b);
24
+ c2(a, b) {
25
+ super.c2(a, b);
26
26
  let c = Math.max(0, a - b);
27
- if (this.d1 != c) {
28
- this.d1 = c;
27
+ if (this.d4 != c) {
28
+ this.d4 = c;
29
29
  }
30
30
  }
31
- c0(a, b) {
32
- super.c0(a, b);
33
- if (a == this.dw) {
34
- this.dw.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
31
+ c1(a, b) {
32
+ super.c1(a, b);
33
+ if (a == this.dz) {
34
+ this.dz.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
35
35
  }
36
- else if (a == this.dx) {
37
- this.dx.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
36
+ else if (a == this.d0) {
37
+ this.d0.setRawStyleProperty("line-height", (this.bg - this.bh).toString() + "px");
38
38
  }
39
39
  }
40
40
  constructor(a) {
41
41
  super(a);
42
- this.dw = null;
43
- this.dx = null;
44
- this.dy = null;
45
- this.d2 = -1;
46
- this.d1 = -1;
42
+ this.dz = null;
43
+ this.d0 = null;
44
+ this.d1 = null;
45
+ this.d5 = -1;
46
+ this.d4 = -1;
47
47
  this.ar.setRawStyleProperty("vertical-align", "middle");
48
- this.dy = a.createElement("div");
49
- this.dw = a.createElement("span");
50
- this.dw.setRawStyleProperty("display", "inline-block");
51
- this.dw.setRawStyleProperty("width", "40%");
52
- this.dw.setRawStyleProperty("white-space", "nowrap");
53
- this.dw.setRawStyleProperty("text-overflow", "ellipsis");
54
- this.dw.setRawStyleProperty("vertical-align", "middle");
55
- this.dw.setRawStyleProperty("overflow", "hidden");
56
- this.dy.append(this.dw);
57
- this.dx = a.createElement("span");
58
- this.dx.setRawStyleProperty("display", "inline-block");
59
- this.dx.setRawStyleProperty("width", "60%");
60
- this.dx.setRawStyleProperty("text-align", "right");
61
- this.dx.setRawStyleProperty("white-space", "nowrap");
62
- this.dx.setRawStyleProperty("text-overflow", "ellipsis");
63
- this.dx.setRawStyleProperty("vertical-align", "middle");
64
- this.dx.setRawStyleProperty("overflow", "hidden");
65
- this.dy.append(this.dx);
66
- this.ar.append(this.dy);
48
+ this.d1 = a.createElement("div");
49
+ this.dz = a.createElement("span");
50
+ this.dz.setRawStyleProperty("display", "inline-block");
51
+ this.dz.setRawStyleProperty("width", "40%");
52
+ this.dz.setRawStyleProperty("white-space", "nowrap");
53
+ this.dz.setRawStyleProperty("text-overflow", "ellipsis");
54
+ this.dz.setRawStyleProperty("vertical-align", "middle");
55
+ this.dz.setRawStyleProperty("overflow", "hidden");
56
+ this.d1.append(this.dz);
57
+ this.d0 = a.createElement("span");
58
+ this.d0.setRawStyleProperty("display", "inline-block");
59
+ this.d0.setRawStyleProperty("width", "60%");
60
+ this.d0.setRawStyleProperty("text-align", "right");
61
+ this.d0.setRawStyleProperty("white-space", "nowrap");
62
+ this.d0.setRawStyleProperty("text-overflow", "ellipsis");
63
+ this.d0.setRawStyleProperty("vertical-align", "middle");
64
+ this.d0.setRawStyleProperty("overflow", "hidden");
65
+ this.d1.append(this.d0);
66
+ this.ar.append(this.d1);
67
67
  }
68
68
  get_ae() {
69
69
  return false;
70
70
  }
71
- ck(a, b, c) {
72
- super.ck(a, b, c);
71
+ cl(a, b, c) {
72
+ super.cl(a, b, c);
73
73
  if (a == "Indent" || a == "IsCollapsable") {
74
- this.dy.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
74
+ this.d1.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
75
75
  }
76
76
  }
77
77
  }
@@ -20,25 +20,25 @@ let SummaryCellPresenter = /*@__PURE__*/ (() => {
20
20
  super.b(a);
21
21
  let b = a;
22
22
  if (a.a7) {
23
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.dz, this.a);
24
- ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d0, this.a);
23
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d2, this.a);
24
+ ContentCellModelHelper.a(this.a.am, b, this.a.ar, this.d.d3, this.a);
25
25
  if (a.bb("ResolvedSummaryLabel") || a.bb("ResolvedSummaryValue")) {
26
- if (b.n9 != null) {
27
- this.d.c8(this.d.dz, b.n9);
26
+ if (b.oh != null) {
27
+ this.d.c9(this.d.d2, b.oh);
28
28
  }
29
- if (b.ob != null) {
30
- this.d.c8(this.d.d0, b.ob);
29
+ if (b.oj != null) {
30
+ this.d.c9(this.d.d3, b.oj);
31
31
  }
32
32
  }
33
33
  if (a.bb("SummaryLabelTextColor")) {
34
- this.d.dz.setRawStyleProperty("color", b.og._fill);
34
+ this.d.d2.setRawStyleProperty("color", b.oo._fill);
35
35
  }
36
- if (a.bb("SummaryLabelFontInfo")) {
37
- let c = b.n2;
36
+ if (a.bb("FontInfo") || a.bb("SummaryLabelFontInfo")) {
37
+ let c = b.oa;
38
38
  if (c == null) {
39
39
  c = FontUtil.getDefaultFont(this.a.am);
40
40
  }
41
- this.d.dz.setRawStyleProperty("font", c.fontString);
41
+ this.d.d2.setRawStyleProperty("font", c.fontString);
42
42
  }
43
43
  }
44
44
  }
@@ -10,35 +10,35 @@ import { runOn, markType } from "igniteui-webcomponents-core";
10
10
  import { BaseDOMEventProxy } from "igniteui-webcomponents-core";
11
11
  let TemplateCell = /*@__PURE__*/ (() => {
12
12
  class TemplateCell extends GridCellBase {
13
- get dx() {
14
- return this.dw;
13
+ get d0() {
14
+ return this.dz;
15
15
  }
16
16
  constructor(a) {
17
17
  super(a);
18
- this.dw = null;
19
- this.dw = new TemplateCellContainer(a);
20
- this.dw.element.setRawStyleProperty("box-sizing", "border-box");
21
- this.ar.append(this.dw.element);
22
- this.ar.listen("keydown", runOn(this, this.dy));
18
+ this.dz = null;
19
+ this.dz = new TemplateCellContainer(a);
20
+ this.dz.element.setRawStyleProperty("box-sizing", "border-box");
21
+ this.ar.append(this.dz.element);
22
+ this.ar.listen("keydown", runOn(this, this.d1));
23
23
  }
24
24
  get_ae() {
25
25
  return true;
26
26
  }
27
- ck(a, b, c) {
28
- super.ck(a, b, c);
27
+ cl(a, b, c) {
28
+ super.cl(a, b, c);
29
29
  if (a == "Indent" || a == "IsCollapsable") {
30
- this.dw.element.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
30
+ this.dz.element.setRawStyleProperty("margin-left", this.bd + this.bf + this.be + "px");
31
31
  }
32
32
  }
33
- b9() {
34
- let a = this.dw.element.getNativeElement();
33
+ ca() {
34
+ let a = this.dz.element.getNativeElement();
35
35
  if (a.contains(document.activeElement)) {
36
36
  return;
37
37
  }
38
- super.b9();
38
+ super.ca();
39
39
  }
40
- dy(a) {
41
- let b = this.dw.element.getNativeElement();
40
+ d1(a) {
41
+ let b = this.dz.element.getNativeElement();
42
42
  if (b.contains(document.activeElement) && document.activeElement.nodeName == "INPUT") {
43
43
  let c = BaseDOMEventProxy.c4(a);
44
44
  if (c == 14 || c == 16) {
@@ -21,12 +21,12 @@ let TemplateCellPresenter = /*@__PURE__*/ (() => {
21
21
  super.b(a);
22
22
  let b = a;
23
23
  let c = this.d.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
- this.e.dx.element.setRawStyleProperty("opacity", e.toString());
27
+ this.e.d0.element.setRawStyleProperty("opacity", e.toString());
28
28
  }
29
- c.rx(a, this.e.dx);
29
+ c.r8(a, this.e.d0);
30
30
  }
31
31
  }
32
32
  TemplateCellPresenter.$t = /*@__PURE__*/ markType(TemplateCellPresenter, 'TemplateCellPresenter', CellPresenterBase.$);
@@ -25,11 +25,11 @@ let TemplateHeader = /*@__PURE__*/ (() => {
25
25
  super.eq(a, b, c, d);
26
26
  let e = a;
27
27
  let f = b.ci(a.l);
28
- e.n3 = f.mi;
29
- e.n = f.hu;
30
- e.n6 = f.jv;
28
+ e.ob = f.ml;
29
+ e.n = f.hv;
30
+ e.oe = f.jx;
31
31
  }
32
- ht(a, b) {
32
+ hu(a, b) {
33
33
  if (this.cellUpdating != null) {
34
34
  this.cellUpdating(this, ((() => {
35
35
  let $ret = new TemplateHeaderCellUpdatingEventArgs();
@@ -9,14 +9,14 @@ import { TemplateCellContainer } from "./TemplateCellContainer";
9
9
  import { markType } from "igniteui-webcomponents-core";
10
10
  let TemplateHeaderCell = /*@__PURE__*/ (() => {
11
11
  class TemplateHeaderCell extends GridCellBase {
12
- get dx() {
13
- return this.dw;
12
+ get d0() {
13
+ return this.dz;
14
14
  }
15
15
  constructor(a) {
16
16
  super(a);
17
- this.dw = null;
18
- this.dw = new TemplateCellContainer(a);
19
- this.ar.append(this.dw.element);
17
+ this.dz = null;
18
+ this.dz = new TemplateCellContainer(a);
19
+ this.ar.append(this.dz.element);
20
20
  }
21
21
  get_ac() {
22
22
  return true;