igniteui-webcomponents-grids 3.2.2 → 3.2.4

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 (190) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +10275 -9381
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/BaseEditorView.js +5 -0
  4. package/esm2015/lib/CanvasCellPresenterBase.js +10 -10
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +11 -11
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +2 -2
  7. package/esm2015/lib/CanvasGridCellBase.js +305 -289
  8. package/esm2015/lib/CanvasImageCell.js +29 -29
  9. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  10. package/esm2015/lib/CanvasNumericCell.js +2 -2
  11. package/esm2015/lib/CanvasNumericCellPresenter.js +3 -3
  12. package/esm2015/lib/CanvasSectionHeaderCell.js +3 -3
  13. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  14. package/esm2015/lib/CanvasSummaryCell.js +51 -51
  15. package/esm2015/lib/CanvasSummaryCellPresenter.js +5 -5
  16. package/esm2015/lib/CanvasTemplateCell.js +7 -7
  17. package/esm2015/lib/CanvasTemplateCellPresenter.js +3 -3
  18. package/esm2015/lib/CanvasTemplateHeaderCell.js +7 -7
  19. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  20. package/esm2015/lib/CanvasTextCell.js +3 -3
  21. package/esm2015/lib/CanvasTextCellPresenter.js +2 -2
  22. package/esm2015/lib/CanvasTextHeaderCell.js +24 -24
  23. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
  24. package/esm2015/lib/CellPresenterBase.js +1 -1
  25. package/esm2015/lib/CheckboxListView_combined.js +341 -306
  26. package/esm2015/lib/ColumnChooserView_combined.js +22 -22
  27. package/esm2015/lib/ColumnFilterCondition_combined.js +7531 -7208
  28. package/esm2015/lib/ColumnGroupDescription.js +22 -0
  29. package/esm2015/lib/ColumnGroupDescriptionCollection.js +14 -8
  30. package/esm2015/lib/ColumnGroupingView_combined.js +25 -25
  31. package/esm2015/lib/ColumnPinningView_combined.js +22 -22
  32. package/esm2015/lib/ColumnSortDescriptionCollection.js +12 -6
  33. package/esm2015/lib/ColumnSummaryDescriptionCollection.js +12 -6
  34. package/esm2015/lib/ComboEditorView.js +6 -3
  35. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  36. package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  37. package/esm2015/lib/DataGridCellLayoutPanel.js +27 -25
  38. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  39. package/esm2015/lib/DataGridToolbarView_combined.js +17 -17
  40. package/esm2015/lib/DateTimeColumnValueFormatter.js +90 -1
  41. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +25 -25
  42. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +10 -10
  43. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  44. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +6 -6
  45. package/esm2015/lib/GridColumnOptionsViewBase_combined.js +2 -2
  46. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  47. package/esm2015/lib/GridColumnPinOptionsView_combined.js +5 -5
  48. package/esm2015/lib/GridColumnSortOptionsView_combined.js +5 -5
  49. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  50. package/esm2015/lib/GridExternalWrapper.js +18 -6
  51. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  52. package/esm2015/lib/ISummaryChooserView_combined.js +13 -13
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +47 -47
  54. package/esm2015/lib/MultiColumnComboVisualModelExport.js +1 -1
  55. package/esm2015/lib/NumericCellPresenter.js +1 -1
  56. package/esm2015/lib/PropertyEditorView_combined.js +40 -40
  57. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  58. package/esm2015/lib/TemplateHeader.js +8 -8
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +1 -1
  60. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  61. package/esm2015/lib/TextEditorView.js +28 -10
  62. package/esm2015/lib/VerticalSeparatorCell.js +46 -8
  63. package/esm2015/lib/VisualModelExport.js +120 -100
  64. package/esm2015/lib/igc-checkbox-list-component.js +74 -54
  65. package/esm2015/lib/igc-column-component.js +164 -164
  66. package/esm2015/lib/igc-column-group-description-collection.js +13 -3
  67. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  68. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  69. package/esm2015/lib/igc-column-sort-description-collection.js +13 -3
  70. package/esm2015/lib/igc-column-summary-description-collection.js +13 -3
  71. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  72. package/esm2015/lib/igc-data-grid-component.js +699 -593
  73. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  74. package/esm2015/lib/igc-definition-base-component.js +50 -50
  75. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  76. package/esm2015/lib/igc-header-component.js +24 -24
  77. package/esm2015/lib/igc-image-column-component.js +12 -12
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-component.js +24 -24
  80. package/esm2015/lib/igc-summary-row-component.js +24 -24
  81. package/esm2015/lib/igc-text-column-component.js +9 -9
  82. package/esm5/lib/BaseEditorView.js +5 -0
  83. package/esm5/lib/CanvasCellPresenterBase.js +10 -10
  84. package/esm5/lib/CanvasContentCellModelHelper.js +11 -11
  85. package/esm5/lib/CanvasDateTimeCellPresenter.js +2 -2
  86. package/esm5/lib/CanvasGridCellBase.js +304 -288
  87. package/esm5/lib/CanvasImageCell.js +28 -28
  88. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  89. package/esm5/lib/CanvasNumericCell.js +2 -2
  90. package/esm5/lib/CanvasNumericCellPresenter.js +3 -3
  91. package/esm5/lib/CanvasSectionHeaderCell.js +3 -3
  92. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  93. package/esm5/lib/CanvasSummaryCell.js +51 -51
  94. package/esm5/lib/CanvasSummaryCellPresenter.js +5 -5
  95. package/esm5/lib/CanvasTemplateCell.js +7 -7
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +3 -3
  97. package/esm5/lib/CanvasTemplateHeaderCell.js +7 -7
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  99. package/esm5/lib/CanvasTextCell.js +3 -3
  100. package/esm5/lib/CanvasTextCellPresenter.js +2 -2
  101. package/esm5/lib/CanvasTextHeaderCell.js +24 -24
  102. package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
  103. package/esm5/lib/CellPresenterBase.js +1 -1
  104. package/esm5/lib/CheckboxListView_combined.js +339 -296
  105. package/esm5/lib/ColumnChooserView_combined.js +22 -22
  106. package/esm5/lib/ColumnFilterCondition_combined.js +7352 -6962
  107. package/esm5/lib/ColumnGroupDescription.js +22 -0
  108. package/esm5/lib/ColumnGroupDescriptionCollection.js +18 -8
  109. package/esm5/lib/ColumnGroupingView_combined.js +25 -25
  110. package/esm5/lib/ColumnPinningView_combined.js +22 -22
  111. package/esm5/lib/ColumnSortDescriptionCollection.js +16 -6
  112. package/esm5/lib/ColumnSummaryDescriptionCollection.js +16 -6
  113. package/esm5/lib/ComboEditorView.js +6 -3
  114. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  115. package/esm5/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  116. package/esm5/lib/DataGridCellLayoutPanel.js +27 -25
  117. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  118. package/esm5/lib/DataGridToolbarView_combined.js +17 -17
  119. package/esm5/lib/DateTimeColumnValueFormatter.js +92 -1
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +25 -25
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +10 -10
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridColumnOptionsViewBase_combined.js +2 -2
  125. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnPinOptionsView_combined.js +5 -5
  127. package/esm5/lib/GridColumnSortOptionsView_combined.js +5 -5
  128. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  129. package/esm5/lib/GridExternalWrapper.js +18 -6
  130. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  131. package/esm5/lib/ISummaryChooserView_combined.js +13 -13
  132. package/esm5/lib/MultiColumnComboBoxView_combined.js +47 -47
  133. package/esm5/lib/MultiColumnComboVisualModelExport.js +1 -1
  134. package/esm5/lib/NumericCellPresenter.js +1 -1
  135. package/esm5/lib/PropertyEditorView_combined.js +40 -40
  136. package/esm5/lib/TemplateCellPresenter.js +1 -1
  137. package/esm5/lib/TemplateHeader.js +8 -8
  138. package/esm5/lib/TemplateHeaderCellPresenter.js +1 -1
  139. package/esm5/lib/TemplateSectionHeader.js +2 -2
  140. package/esm5/lib/TextEditorView.js +28 -10
  141. package/esm5/lib/VerticalSeparatorCell.js +46 -8
  142. package/esm5/lib/VisualModelExport.js +120 -100
  143. package/esm5/lib/igc-checkbox-list-component.js +82 -54
  144. package/esm5/lib/igc-column-component.js +164 -164
  145. package/esm5/lib/igc-column-group-description-collection.js +17 -3
  146. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  147. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  148. package/esm5/lib/igc-column-sort-description-collection.js +17 -3
  149. package/esm5/lib/igc-column-summary-description-collection.js +17 -3
  150. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  151. package/esm5/lib/igc-data-grid-component.js +743 -601
  152. package/esm5/lib/igc-date-time-column-component.js +23 -23
  153. package/esm5/lib/igc-definition-base-component.js +50 -50
  154. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  155. package/esm5/lib/igc-header-component.js +24 -24
  156. package/esm5/lib/igc-image-column-component.js +12 -12
  157. package/esm5/lib/igc-numeric-column-component.js +35 -35
  158. package/esm5/lib/igc-section-header-component.js +24 -24
  159. package/esm5/lib/igc-summary-row-component.js +24 -24
  160. package/esm5/lib/igc-text-column-component.js +9 -9
  161. package/fesm2015/igniteui-webcomponents-grids.js +10315 -9565
  162. package/fesm5/igniteui-webcomponents-grids.js +10276 -9382
  163. package/lib/CanvasGridCellBase.d.ts +95 -93
  164. package/lib/CanvasImageCell.d.ts +11 -11
  165. package/lib/CanvasSectionHeaderCell.d.ts +1 -1
  166. package/lib/CanvasSummaryCell.d.ts +15 -15
  167. package/lib/CanvasTemplateCell.d.ts +4 -4
  168. package/lib/CanvasTemplateHeaderCell.d.ts +4 -4
  169. package/lib/CanvasTextCell.d.ts +1 -1
  170. package/lib/CanvasTextHeaderCell.d.ts +6 -6
  171. package/lib/CheckboxListView_combined.d.ts +74 -69
  172. package/lib/ColumnFilterCondition_combined.d.ts +1306 -1264
  173. package/lib/ColumnGroupDescription.d.ts +1 -0
  174. package/lib/ColumnGroupDescriptionCollection.d.ts +8 -7
  175. package/lib/ColumnSortDescriptionCollection.d.ts +8 -7
  176. package/lib/ColumnSummaryDescriptionCollection.d.ts +8 -7
  177. package/lib/DataGridCellLayoutPanel.d.ts +1 -0
  178. package/lib/DateTimeColumnValueFormatter.d.ts +19 -1
  179. package/lib/GridExternalWrapper.d.ts +4 -0
  180. package/lib/TemplateHeader.d.ts +3 -3
  181. package/lib/TemplateSectionHeader.d.ts +2 -2
  182. package/lib/TextEditorView.d.ts +5 -3
  183. package/lib/VerticalSeparatorCell.d.ts +9 -0
  184. package/lib/VisualModelExport.d.ts +31 -26
  185. package/lib/igc-checkbox-list-component.d.ts +9 -0
  186. package/lib/igc-column-group-description-collection.d.ts +4 -0
  187. package/lib/igc-column-sort-description-collection.d.ts +4 -0
  188. package/lib/igc-column-summary-description-collection.d.ts +4 -0
  189. package/lib/igc-data-grid-component.d.ts +30 -2
  190. package/package.json +4 -4
@@ -73,6 +73,28 @@ export let ColumnGroupDescription = /*@__PURE__*/ (() => {
73
73
  this.m = 11;
74
74
  }
75
75
  break;
76
+ case 3:
77
+ {
78
+ let c = _rest[0];
79
+ let d = _rest[1];
80
+ let e = _rest[2];
81
+ super(2, c, d);
82
+ this.t = null;
83
+ this.h = null;
84
+ this.r = null;
85
+ this.g = null;
86
+ this.p = null;
87
+ this.s = null;
88
+ this.o = false;
89
+ this.m = 0;
90
+ this.l = null;
91
+ this.k = null;
92
+ this.formatText = null;
93
+ this.o = false;
94
+ this.m = 11;
95
+ this.v = e;
96
+ }
97
+ break;
76
98
  }
77
99
  }
78
100
  get x() {
@@ -24,12 +24,18 @@ export let ColumnGroupDescriptionCollection = /*@__PURE__*/ (() => {
24
24
  }
25
25
  return false;
26
26
  };
27
- a.createFrom = (b) => new ColumnGroupDescription(2, b.propertyName, b.direction);
27
+ a.createFrom = (b) => new ColumnGroupDescription(3, b.propertyName, b.direction, b.displayName);
28
28
  a.createTo = (b) => {
29
29
  let c = b.c;
30
- return SortDescription.create(b.f, c);
30
+ return SortDescription.create(b.f, c, b.v);
31
31
  };
32
32
  }
33
+ get i() {
34
+ return this.f.shouldDetachOnTargetChange;
35
+ }
36
+ set i(a) {
37
+ this.f.shouldDetachOnTargetChange = a;
38
+ }
33
39
  get b() {
34
40
  return this.a;
35
41
  }
@@ -45,16 +51,16 @@ export let ColumnGroupDescriptionCollection = /*@__PURE__*/ (() => {
45
51
  g(a) {
46
52
  return this.f.add(a);
47
53
  }
48
- n(a, b) {
54
+ o(a, b) {
49
55
  this.f.add1(a, b);
50
56
  }
51
- m() {
57
+ n() {
52
58
  this.f.clear();
53
59
  }
54
60
  get(a) {
55
61
  return this.f.get(a);
56
62
  }
57
- j(a) {
63
+ k(a) {
58
64
  return this.f.indexOf(a);
59
65
  }
60
66
  h(a) {
@@ -69,13 +75,13 @@ export let ColumnGroupDescriptionCollection = /*@__PURE__*/ (() => {
69
75
  size() {
70
76
  return this.f.size();
71
77
  }
72
- l(a) {
78
+ m(a) {
73
79
  this.f.addListener(a);
74
80
  }
75
- o(a) {
81
+ p(a) {
76
82
  this.f.removeListener(a);
77
83
  }
78
- get i() {
84
+ get j() {
79
85
  return this.f.all;
80
86
  }
81
87
  }
@@ -701,7 +701,7 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
701
701
  a3() {
702
702
  if (this.i == 0) {
703
703
  if (this.targetGrid != null) {
704
- this.i = this.targetGrid.gd;
704
+ this.i = this.targetGrid.go;
705
705
  }
706
706
  }
707
707
  this.d.ao();
@@ -730,13 +730,13 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
730
730
  let a = new List$1(GroupInfo.$, 0);
731
731
  if (this.targetGrid != null) {
732
732
  let b = this.targetGrid.actualColumns;
733
- let c = this.targetGrid.bb.i;
733
+ let c = this.targetGrid.bf.j;
734
734
  for (let d = 0; d < c.count; d++) {
735
735
  let e = new GroupInfo();
736
- let f = b.i((g) => g.i7 == c.item(d).f);
736
+ let f = b.i((g) => g.i8 == c.item(d).f);
737
737
  if (f != -1) {
738
- if (!stringIsNullOrEmpty(b._inner[f].je)) {
739
- e.c = b._inner[f].je;
738
+ if (!stringIsNullOrEmpty(b._inner[f].jf)) {
739
+ e.c = b._inner[f].jf;
740
740
  }
741
741
  else {
742
742
  e.c = c.item(d).f;
@@ -767,11 +767,11 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
767
767
  let h = a;
768
768
  let i = this.targetGrid.actualColumns._inner[h.cellPath.a5];
769
769
  let j = new ColumnGroupDescription(0);
770
- j.f = i.i7;
770
+ j.f = i.i8;
771
771
  j.c = 1;
772
- let k = this.targetGrid.bb.i.contains(j);
772
+ let k = this.targetGrid.bf.j.contains(j);
773
773
  j.c = 0;
774
- let l = this.targetGrid.bb.i.contains(j);
774
+ let l = this.targetGrid.bf.j.contains(j);
775
775
  if (l == false && k == false) {
776
776
  let m = this.d.l;
777
777
  let n = m.count;
@@ -781,13 +781,13 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
781
781
  let r = NativeUI.i(m._inner[p]);
782
782
  let s = q[1] - c.left + r;
783
783
  if (this.t < s) {
784
- this.targetGrid.bb.n(p, j);
784
+ this.targetGrid.bf.o(p, j);
785
785
  o = true;
786
786
  break;
787
787
  }
788
788
  }
789
789
  if (o == false) {
790
- this.targetGrid.bb.g(j);
790
+ this.targetGrid.bf.g(j);
791
791
  }
792
792
  }
793
793
  a.cancel();
@@ -805,14 +805,14 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
805
805
  this.u = b.currentY;
806
806
  if (this.u < 0) {
807
807
  if (this.n == false) {
808
- this.v = this.targetGrid.lq;
809
- this.targetGrid.lq = 0;
808
+ this.v = this.targetGrid.mb;
809
+ this.targetGrid.mb = 0;
810
810
  this.n = true;
811
811
  }
812
812
  }
813
813
  else {
814
814
  if (this.n == true) {
815
- this.targetGrid.lq = this.v;
815
+ this.targetGrid.mb = this.v;
816
816
  this.n = false;
817
817
  }
818
818
  }
@@ -858,43 +858,43 @@ export let ColumnGrouping = /*@__PURE__*/ (() => {
858
858
  }
859
859
  }
860
860
  ao(a) {
861
- let b = this.targetGrid.bb.i.count;
861
+ let b = this.targetGrid.bf.j.count;
862
862
  for (let c = 0; c < b; c++) {
863
- let d = this.targetGrid.bb.i.item(c);
863
+ let d = this.targetGrid.bf.j.item(c);
864
864
  if (d.f == a) {
865
- this.targetGrid.bb.d(c);
865
+ this.targetGrid.bf.d(c);
866
866
  if (d.c == 0) {
867
867
  d.c = 1;
868
868
  }
869
869
  else {
870
870
  d.c = 0;
871
871
  }
872
- this.targetGrid.bb.n(c, d);
872
+ this.targetGrid.bf.o(c, d);
873
873
  break;
874
874
  }
875
875
  }
876
876
  }
877
877
  a1(a) {
878
- let b = this.targetGrid.bb.i.count;
878
+ let b = this.targetGrid.bf.j.count;
879
879
  for (let c = 0; c < b; c++) {
880
- let d = this.targetGrid.bb.i.item(c);
880
+ let d = this.targetGrid.bf.j.item(c);
881
881
  if (d.f == a) {
882
- this.targetGrid.bb.d(c);
882
+ this.targetGrid.bf.d(c);
883
883
  break;
884
884
  }
885
885
  }
886
886
  }
887
887
  a2(a, b) {
888
- let c = this.targetGrid.bb.i.count;
888
+ let c = this.targetGrid.bf.j.count;
889
889
  let d = null;
890
890
  for (let e = 0; e < c; e++) {
891
- if (this.targetGrid.bb.i.item(e).f == a) {
892
- d = this.targetGrid.bb.i.item(e);
893
- this.targetGrid.bb.d(e);
891
+ if (this.targetGrid.bf.j.item(e).f == a) {
892
+ d = this.targetGrid.bf.j.item(e);
893
+ this.targetGrid.bf.d(e);
894
894
  break;
895
895
  }
896
896
  }
897
- this.targetGrid.bb.i.insert(b, d);
897
+ this.targetGrid.bf.j.insert(b, d);
898
898
  }
899
899
  a7(a, b) {
900
900
  this.d.ac();
@@ -259,7 +259,7 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
259
259
  break;
260
260
  case "FilterPlaceholderText":
261
261
  if (this.d != null) {
262
- this.d.a6 = this.s;
262
+ this.d.a8 = this.s;
263
263
  }
264
264
  break;
265
265
  case "BaseTheme":
@@ -270,7 +270,7 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
270
270
  break;
271
271
  case "BackgroundColor":
272
272
  if (this.d != null) {
273
- this.d.cr = this.an;
273
+ this.d.cw = this.an;
274
274
  }
275
275
  this.c.g();
276
276
  break;
@@ -278,12 +278,12 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
278
278
  }
279
279
  ai() {
280
280
  if (this.d != null) {
281
- this.d.w = this.f;
281
+ this.d.y = this.f;
282
282
  }
283
283
  }
284
284
  ah() {
285
285
  if (this.d != null) {
286
- this.d.y = this.h;
286
+ this.d.aa = this.h;
287
287
  }
288
288
  }
289
289
  aj(a, b) {
@@ -297,19 +297,19 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
297
297
  }
298
298
  aa() {
299
299
  if (this.a != null && this.d != null) {
300
- this.d.w = this.f;
301
- this.d.y = this.h;
302
- this.d.cr = this.an;
300
+ this.d.y = this.f;
301
+ this.d.aa = this.h;
302
+ this.d.cw = this.an;
303
303
  let a;
304
304
  let b = new ObservableCollection$1(ColumnPinningInfo.$, 0);
305
305
  for (let c of fromEnum(this.a.actualColumns)) {
306
306
  a = new ColumnPinningInfo();
307
- let d = c.i7;
308
- if (c.je != null) {
309
- d = c.je;
307
+ let d = c.i8;
308
+ if (c.jf != null) {
309
+ d = c.jf;
310
310
  }
311
311
  a.columnName = d;
312
- if (c.f5 == 1) {
312
+ if (c.f6 == 1) {
313
313
  a.isPinned = true;
314
314
  }
315
315
  else {
@@ -317,17 +317,17 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
317
317
  }
318
318
  b.add(a);
319
319
  }
320
- this.d.ao = false;
320
+ this.d.aq = false;
321
321
  if (this.s != null) {
322
- this.d.a6 = this.s;
322
+ this.d.a8 = this.s;
323
323
  }
324
324
  this.d.itemsSource = b;
325
325
  let e = "";
326
326
  let f = "";
327
327
  e = "columnName";
328
328
  f = "isPinned";
329
- this.d.bj = f;
330
- this.d.a2 = e;
329
+ this.d.bn = f;
330
+ this.d.a4 = e;
331
331
  }
332
332
  }
333
333
  ae(a, b) {
@@ -335,17 +335,17 @@ export let ColumnPinning = /*@__PURE__*/ (() => {
335
335
  let c = this.d.h.actualDataSource.getItemAtIndex(b.b);
336
336
  let d = this.a.actualColumns.count;
337
337
  for (let e = 0; e < d; e++) {
338
- if (this.a.actualColumns._inner[e].i7 == c.columnName || this.a.actualColumns._inner[e].jy == c.columnName || this.a.actualColumns._inner[e].je == c.columnName) {
339
- if (this.a.actualColumns._inner[e].f5 == 0) {
340
- this.a.actualColumns._inner[e].f5 = 1;
338
+ if (this.a.actualColumns._inner[e].i8 == c.columnName || this.a.actualColumns._inner[e].jz == c.columnName || this.a.actualColumns._inner[e].jf == c.columnName) {
339
+ if (this.a.actualColumns._inner[e].f6 == 0) {
340
+ this.a.actualColumns._inner[e].f6 = 1;
341
341
  }
342
- else if (this.a.actualColumns._inner[e].f5 == 2) {
343
- this.a.actualColumns._inner[e].f5 = 1;
342
+ else if (this.a.actualColumns._inner[e].f6 == 2) {
343
+ this.a.actualColumns._inner[e].f6 = 1;
344
344
  }
345
345
  else {
346
- this.a.actualColumns._inner[e].f5 = 0;
346
+ this.a.actualColumns._inner[e].f6 = 0;
347
347
  }
348
- this.a.actualColumns._inner[e].kh("Pinned");
348
+ this.a.actualColumns._inner[e].ki("Pinned");
349
349
  break;
350
350
  }
351
351
  }
@@ -30,6 +30,12 @@ export let ColumnSortDescriptionCollection = /*@__PURE__*/ (() => {
30
30
  return SortDescription.create(b.f, c);
31
31
  };
32
32
  }
33
+ get i() {
34
+ return this.f.shouldDetachOnTargetChange;
35
+ }
36
+ set i(a) {
37
+ this.f.shouldDetachOnTargetChange = a;
38
+ }
33
39
  get b() {
34
40
  return this.a;
35
41
  }
@@ -45,16 +51,16 @@ export let ColumnSortDescriptionCollection = /*@__PURE__*/ (() => {
45
51
  g(a) {
46
52
  return this.f.add(a);
47
53
  }
48
- n(a, b) {
54
+ o(a, b) {
49
55
  this.f.add1(a, b);
50
56
  }
51
- m() {
57
+ n() {
52
58
  this.f.clear();
53
59
  }
54
60
  get(a) {
55
61
  return this.f.get(a);
56
62
  }
57
- j(a) {
63
+ k(a) {
58
64
  return this.f.indexOf(a);
59
65
  }
60
66
  h(a) {
@@ -69,13 +75,13 @@ export let ColumnSortDescriptionCollection = /*@__PURE__*/ (() => {
69
75
  size() {
70
76
  return this.f.size();
71
77
  }
72
- l(a) {
78
+ m(a) {
73
79
  this.f.addListener(a);
74
80
  }
75
- o(a) {
81
+ p(a) {
76
82
  this.f.removeListener(a);
77
83
  }
78
- get i() {
84
+ get j() {
79
85
  return this.f.all;
80
86
  }
81
87
  }
@@ -34,6 +34,12 @@ export let ColumnSummaryDescriptionCollection = /*@__PURE__*/ (() => {
34
34
  return c;
35
35
  };
36
36
  }
37
+ get i() {
38
+ return this.f.shouldDetachOnTargetChange;
39
+ }
40
+ set i(a) {
41
+ this.f.shouldDetachOnTargetChange = a;
42
+ }
37
43
  get b() {
38
44
  return this.a;
39
45
  }
@@ -49,16 +55,16 @@ export let ColumnSummaryDescriptionCollection = /*@__PURE__*/ (() => {
49
55
  g(a) {
50
56
  return this.f.add(a);
51
57
  }
52
- n(a, b) {
58
+ o(a, b) {
53
59
  this.f.add1(a, b);
54
60
  }
55
- m() {
61
+ n() {
56
62
  this.f.clear();
57
63
  }
58
64
  get(a) {
59
65
  return this.f.get(a);
60
66
  }
61
- j(a) {
67
+ k(a) {
62
68
  return this.f.indexOf(a);
63
69
  }
64
70
  h(a) {
@@ -73,13 +79,13 @@ export let ColumnSummaryDescriptionCollection = /*@__PURE__*/ (() => {
73
79
  size() {
74
80
  return this.f.size();
75
81
  }
76
- l(a) {
82
+ m(a) {
77
83
  this.f.addListener(a);
78
84
  }
79
- o(a) {
85
+ p(a) {
80
86
  this.f.removeListener(a);
81
87
  }
82
- get i() {
88
+ get j() {
83
89
  return this.f.all;
84
90
  }
85
91
  }
@@ -191,9 +191,12 @@ export let ComboEditorView = /*@__PURE__*/ (() => {
191
191
  else {
192
192
  let b = (Array.isArray(this.ac));
193
193
  if (b) {
194
- let c = (Object.keys(this.ac[0]));
195
- if (c.length > 0) {
196
- this.x.fields = [c[0]];
194
+ let c = (this.ac.length);
195
+ if (c > 0) {
196
+ let d = (Object.keys(this.ac[0]));
197
+ if (d.length > 0) {
198
+ this.x.fields = [d[0]];
199
+ }
197
200
  }
198
201
  }
199
202
  }
@@ -437,7 +437,7 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
437
437
  b.clicked = delegateRemove(b.clicked, runOn(this, this.d9));
438
438
  }
439
439
  if (this.f != null) {
440
- this.f.ab.clear();
440
+ this.f.ae.clear();
441
441
  let c = this.f;
442
442
  c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.d6));
443
443
  }
@@ -461,15 +461,15 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
461
461
  this.o = b;
462
462
  this.o.svgPath = this.bt(this.b);
463
463
  this.f = c;
464
- this.f.ie = false;
465
- this.f.ec = 1;
466
- this.f.cy = 0;
467
- this.f.ec = 0;
468
- this.f.cj = 0;
469
- this.f.ng = 0;
470
- this.f.nr = 0;
471
- this.f.gd = 3;
472
- this.f.im = false;
464
+ this.f.iz = false;
465
+ this.f.el = 1;
466
+ this.f.c7 = 0;
467
+ this.f.el = 0;
468
+ this.f.cs = 0;
469
+ this.f.n1 = 0;
470
+ this.f.oc = 0;
471
+ this.f.go = 3;
472
+ this.f.i6 = false;
473
473
  let d = this.f;
474
474
  d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.d6));
475
475
  this.m = new TemplateColumn();
@@ -479,15 +479,15 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
479
479
  $ret.c = false;
480
480
  return $ret;
481
481
  })());
482
- this.m.h1 = this.m.h2 = 4;
483
- this.m.h3 = this.m.h0 = 0;
484
- this.m.i7 = "Icon";
482
+ this.m.h2 = this.m.h3 = 4;
483
+ this.m.h4 = this.m.h1 = 0;
484
+ this.m.i8 = "Icon";
485
485
  let e = this.m;
486
486
  e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.eg));
487
487
  this.f.columns.add(this.m);
488
488
  let f = new TextColumn();
489
- f.i7 = "DisplayText";
490
- f.h1 = 0;
489
+ f.i8 = "DisplayText";
490
+ f.h2 = 0;
491
491
  f.e = 0;
492
492
  this.f.columns.add(f);
493
493
  this.d1();
@@ -637,7 +637,7 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
637
637
  if (this.u.count > 0) {
638
638
  this.i = this.u._inner[0];
639
639
  }
640
- this.e.k = Math.min(this.u.count * this.f.mu + 2, this.y);
640
+ this.e.k = Math.min(this.u.count * this.f.nf + 2, this.y);
641
641
  }
642
642
  }
643
643
  h(a) {
@@ -706,7 +706,7 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
706
706
  x() {
707
707
  if (this.f != null) {
708
708
  let a = Math.min(8, this.f.actualDataSource != null ? this.f.actualDataSource.actualCount : 0);
709
- return a * (this.f.mu + this.f.nr) + this.f.mt + 2;
709
+ return a * (this.f.nf + this.f.oc) + this.f.ne + 2;
710
710
  }
711
711
  return 0;
712
712
  }
@@ -737,12 +737,17 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
737
737
  return $ret;
738
738
  })());
739
739
  this.t.add(e);
740
- this.u.add(e);
740
+ if (this.u != null) {
741
+ this.u.add(e);
742
+ }
741
743
  if (this.f != null && this.f.actualDataSource != null) {
742
744
  this.f.actualDataSource.notifyInsertItem(this.u.count, e);
743
745
  }
744
746
  }
745
747
  d4() {
748
+ if (this.u == null) {
749
+ return;
750
+ }
746
751
  for (let a = 0; a < this.u.count; a++) {
747
752
  if (this.u._inner[a].a == 44) {
748
753
  this.u.removeAt(a);
@@ -29,9 +29,9 @@ export let DataGridAccessibilityLayoutPanel = /*@__PURE__*/ (() => {
29
29
  refresh(a, b) {
30
30
  super.refresh(a, b);
31
31
  if (this.rootElement != null) {
32
- let c = a.cv();
33
- let d = a.bz.count;
34
- if (a.cw > 0) {
32
+ let c = a.c5();
33
+ let d = a.b9.count;
34
+ if (a.c6 > 0) {
35
35
  c++;
36
36
  }
37
37
  this.rootElement.setAttribute("role", "grid");
@@ -47,7 +47,7 @@ export let DataGridAccessibilityLayoutPanel = /*@__PURE__*/ (() => {
47
47
  this.ay = new AccessibilityRow();
48
48
  this.ay.i = this.a7;
49
49
  this.ay.e = -1;
50
- this.ay.d = this.f.bz.count;
50
+ this.ay.d = this.f.b9.count;
51
51
  this.ay.f = "columnheader";
52
52
  }
53
53
  this.ay.j(a, b);
@@ -59,7 +59,7 @@ export let DataGridAccessibilityLayoutPanel = /*@__PURE__*/ (() => {
59
59
  d = new AccessibilityRow();
60
60
  d.i = this.a7;
61
61
  d.e = c;
62
- d.d = this.f.bz.count;
62
+ d.d = this.f.b9.count;
63
63
  d.f = "gridcell";
64
64
  this.a0.s(c, d);
65
65
  }