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
@@ -21,123 +21,123 @@ let FilterCell = /*@__PURE__*/ (() => {
21
21
  class FilterCell extends GridCellBase {
22
22
  constructor(a) {
23
23
  super(a);
24
- this.ej = null;
25
- this.el = null;
26
- this.eh = null;
27
- this.ei = null;
24
+ this.em = null;
25
+ this.eo = null;
28
26
  this.ek = null;
27
+ this.el = null;
28
+ this.en = null;
29
+ this.ed = null;
30
+ this.ec = null;
31
+ this.d2 = null;
32
+ this.d3 = null;
33
+ this.ee = null;
29
34
  this.ea = null;
30
- this.d9 = null;
35
+ this.eh = true;
36
+ this.d4 = 0;
37
+ this.ei = true;
38
+ this.d8 = null;
39
+ this.ef = null;
40
+ this.ep = null;
31
41
  this.dz = null;
32
- this.d0 = null;
33
- this.eb = null;
34
- this.d7 = null;
35
- this.ee = true;
36
- this.d1 = 0;
37
- this.ef = true;
38
- this.d5 = null;
39
- this.ec = null;
40
- this.em = null;
41
- this.dw = null;
42
- this.fk = null;
43
- this.ej = a.createElement("div");
44
- this.ej.setStyleProperty("display", "flex");
45
- this.ej.setStyleProperty("flex-direction", "row");
46
- this.ej.setStyleProperty("align-items", "center");
47
- this.ej.setStyleProperty("height", "100%");
48
- this.ar.append(this.ej);
42
+ this.fn = null;
43
+ this.em = a.createElement("div");
44
+ this.em.setStyleProperty("display", "flex");
45
+ this.em.setStyleProperty("flex-direction", "row");
46
+ this.em.setStyleProperty("align-items", "center");
47
+ this.em.setStyleProperty("height", "100%");
48
+ this.ar.append(this.em);
49
+ this.eo = a.createElement("div");
50
+ this.ek = a.getSubRenderer(this.eo);
51
+ this.d3 = new ComparisonOperatorSelector();
52
+ this.d3.ej(this.ek);
53
+ this.eo.setStyleProperty("width", "24px");
54
+ this.eo.setStyleProperty("height", "24px");
55
+ this.em.append(this.eo);
49
56
  this.el = a.createElement("div");
50
- this.eh = a.getSubRenderer(this.el);
51
- this.d0 = new ComparisonOperatorSelector();
52
- this.d0.ej(this.eh);
53
- this.el.setStyleProperty("width", "24px");
54
- this.el.setStyleProperty("height", "24px");
55
- this.ej.append(this.el);
56
- this.ei = a.createElement("div");
57
- this.ei.setStyleProperty("display", "flex");
58
- this.ei.setStyleProperty("flex", "1");
59
- this.ei.setStyleProperty("margin", "0 4px");
60
- this.ej.append(this.ei);
61
- this.ek = a.createElement("div");
62
- this.ek.setStyleProperty("transform", "scale(0.75)");
63
- this.eb = new XIcon();
64
- this.eb.provideContainer(a.getSubRenderer(this.ek));
65
- this.ej.append(this.ek);
66
- this.e3();
67
- }
68
- d8(a) {
69
- switch (this.d2) {
57
+ this.el.setStyleProperty("display", "flex");
58
+ this.el.setStyleProperty("flex", "1");
59
+ this.el.setStyleProperty("margin", "0 4px");
60
+ this.em.append(this.el);
61
+ this.en = a.createElement("div");
62
+ this.en.setStyleProperty("transform", "scale(0.75)");
63
+ this.ee = new XIcon();
64
+ this.ee.provideContainer(a.getSubRenderer(this.en));
65
+ this.em.append(this.en);
66
+ this.e6();
67
+ }
68
+ eb(a) {
69
+ switch (this.d5) {
70
70
  case 0:
71
71
  case 1:
72
- if (this.ea == null) {
73
- this.ea = new TextEditorView(this.am, this.f.getTheme(), this.b);
72
+ if (this.ed == null) {
73
+ this.ed = new TextEditorView(this.am, this.f.getTheme(), this.b);
74
74
  }
75
- return this.ea;
75
+ return this.ed;
76
76
  case 2:
77
- if (this.d9 == null) {
78
- this.d9 = new NumericEditorView(this.am, this.f.getTheme(), this.b);
77
+ if (this.ec == null) {
78
+ this.ec = new NumericEditorView(this.am, this.f.getTheme(), this.b);
79
79
  }
80
- return this.d9;
80
+ return this.ec;
81
81
  case 3:
82
- if (this.dz == null) {
83
- this.dz = new DateEditorView(this.am, this.f.getTheme(), this.b);
82
+ if (this.d2 == null) {
83
+ this.d2 = new DateEditorView(this.am, this.f.getTheme(), this.b);
84
84
  }
85
- return this.dz;
85
+ return this.d2;
86
86
  default: return null;
87
87
  }
88
88
  }
89
- ff() {
90
- this.ei.removeChildren();
89
+ fi() {
90
+ this.el.removeChildren();
91
91
  }
92
- e1() {
93
- this.ei.append(this.d7.container);
92
+ e4() {
93
+ this.el.append(this.ea.container);
94
94
  }
95
- e8() {
95
+ fb() {
96
96
  if (this.ar.getChildCount() == 0) {
97
- this.ar.append(this.ej);
97
+ this.ar.append(this.em);
98
98
  }
99
99
  }
100
- e6() {
100
+ e9() {
101
101
  if (this.ar.getChildCount() > 0) {
102
102
  this.ar.removeChildren();
103
103
  }
104
104
  }
105
- ck(a, b, c) {
106
- super.ck(a, b, c);
107
- this.fe(a, b, c);
105
+ cl(a, b, c) {
106
+ super.cl(a, b, c);
107
+ this.fh(a, b, c);
108
108
  }
109
- cj() {
110
- this.fc();
109
+ ck() {
110
+ this.ff();
111
111
  }
112
- fg(a, b, c, d) {
112
+ fj(a, b, c, d) {
113
113
  if (this.d != null) {
114
- let e = this.el.getNativeElement();
114
+ let e = this.eo.getNativeElement();
115
115
  this.d.update("SelectorTop", (e.offsetTop));
116
116
  this.d.update("SelectorLeft", (e.offsetLeft));
117
- let f = this.ei.getNativeElement();
117
+ let f = this.el.getNativeElement();
118
118
  this.d.update("EditorTop", (f.offsetTop));
119
119
  this.d.update("EditorLeft", (f.offsetLeft));
120
- let g = this.ek.getNativeElement();
120
+ let g = this.en.getNativeElement();
121
121
  this.d.update("ClearIconTop", (g.offsetTop));
122
122
  this.d.update("ClearIconLeft", (g.offsetLeft));
123
123
  }
124
124
  }
125
- e3() {
126
- let a = this.d0;
127
- a.valueChanged = delegateCombine(a.valueChanged, runOn(this, this.fd));
128
- this.eb.svgPath = FilterCell.eo;
129
- this.fi(false);
130
- let b = this.eb;
131
- b.clicked = delegateCombine(b.clicked, runOn(this, this.e2));
125
+ e6() {
126
+ let a = this.d3;
127
+ a.valueChanged = delegateCombine(a.valueChanged, runOn(this, this.fg));
128
+ this.ee.svgPath = FilterCell.er;
129
+ this.fl(false);
130
+ let b = this.ee;
131
+ b.clicked = delegateCombine(b.clicked, runOn(this, this.e5));
132
132
  }
133
- fc() {
134
- if (this.d7 == null) {
135
- this.e7();
133
+ ff() {
134
+ if (this.ea == null) {
135
+ this.fa();
136
136
  }
137
137
  }
138
- d3() {
138
+ d6() {
139
139
  let a = 1;
140
- switch (this.dy) {
140
+ switch (this.d1) {
141
141
  case 11:
142
142
  case 2:
143
143
  case 0:
@@ -156,7 +156,7 @@ let FilterCell = /*@__PURE__*/ (() => {
156
156
  a = 2;
157
157
  break;
158
158
  }
159
- switch (this.d0.b) {
159
+ switch (this.d3.b) {
160
160
  case 6:
161
161
  case 8:
162
162
  case 7:
@@ -170,9 +170,9 @@ let FilterCell = /*@__PURE__*/ (() => {
170
170
  a = 2;
171
171
  break;
172
172
  }
173
- if (this.d0.b == 44) {
174
- if (this.d6 != null && this.d6.count > 0) {
175
- let b = this.d6._inner[this.d0.x];
173
+ if (this.d3.b == 44) {
174
+ if (this.d9 != null && this.d9.count > 0) {
175
+ let b = this.d9._inner[this.d3.x];
176
176
  switch (b.b) {
177
177
  case 0:
178
178
  case 1:
@@ -189,168 +189,168 @@ let FilterCell = /*@__PURE__*/ (() => {
189
189
  }
190
190
  return a;
191
191
  }
192
- fi(a) {
193
- if (this.eb != null) {
194
- this.eb.disabled = !a;
195
- this.eb.a3 = a ? 1 : 0.3;
192
+ fl(a) {
193
+ if (this.ee != null) {
194
+ this.ee.disabled = !a;
195
+ this.ee.a3 = a ? 1 : 0.3;
196
196
  }
197
197
  }
198
- ex(a) {
199
- if (!this.ee) {
198
+ e0(a) {
199
+ if (!this.eh) {
200
200
  return;
201
201
  }
202
- if (this.d0.b == 44) {
203
- if (this.d6 != null && this.d6.count > 0) {
204
- this.b.applyCustomFilter(this.d0.ae, this.d0.x, a);
202
+ if (this.d3.b == 44) {
203
+ if (this.d9 != null && this.d9.count > 0) {
204
+ this.b.applyCustomFilter(this.d3.ae, this.d3.x, a);
205
205
  }
206
206
  }
207
207
  else {
208
- this.b.applyFilter(this.d0.b, a);
208
+ this.b.applyFilter(this.d3.b, a);
209
209
  }
210
210
  }
211
- ey() {
212
- if (!this.ee) {
211
+ e1() {
212
+ if (!this.eh) {
213
213
  return;
214
214
  }
215
215
  if (this.b != null) {
216
216
  this.b.clearFilter();
217
217
  }
218
218
  }
219
- fe(a, b, c) {
219
+ fh(a, b, c) {
220
220
  switch (a) {
221
221
  case "DataType":
222
- this.e5();
222
+ this.e8();
223
223
  break;
224
224
  case "EditorType":
225
- this.e7();
225
+ this.fa();
226
226
  break;
227
227
  case "FontInfo":
228
- this.fb();
228
+ this.fe();
229
229
  break;
230
230
  case "Filter":
231
- this.e9();
231
+ this.fc();
232
232
  break;
233
233
  case "FilterOperands":
234
- this.e4();
234
+ this.e7();
235
235
  break;
236
236
  case "FilterValue":
237
- this.fa();
237
+ this.fd();
238
238
  break;
239
239
  case "IsEditorEnabled":
240
- this.d7.isEnabled = this.eg;
240
+ this.ea.isEnabled = this.ej;
241
241
  break;
242
242
  case "TextColor":
243
- this.d0.eq = this.fl;
244
- this.eb.fill = this.fl;
245
- this.d7.textColor = this.fl;
243
+ this.d3.eq = this.fo;
244
+ this.ee.fill = this.fo;
245
+ this.ea.textColor = this.fo;
246
246
  break;
247
247
  }
248
248
  }
249
- e9() {
250
- this.ee = false;
251
- if (this.d7 != null) {
252
- if (this.dx != null) {
253
- if (typeCast(ColumnComparisonFilterCondition.$, this.dx) !== null) {
254
- let a = typeCast(ColumnComparisonFilterCondition.$, this.dx);
255
- this.d0.b = a.operator;
256
- let b = this.d7.getEditorValue();
249
+ fc() {
250
+ this.eh = false;
251
+ if (this.ea != null) {
252
+ if (this.d0 != null) {
253
+ if (typeCast(ColumnComparisonFilterCondition.$, this.d0) !== null) {
254
+ let a = typeCast(ColumnComparisonFilterCondition.$, this.d0);
255
+ this.d3.b = a.operator;
256
+ let b = this.ea.getEditorValue();
257
257
  if (b != null) {
258
258
  if (!Base.equalsStatic(b, a.value)) {
259
- this.d7.value = a.value;
260
- this.en = a.value;
259
+ this.ea.value = a.value;
260
+ this.eq = a.value;
261
261
  }
262
262
  }
263
263
  else {
264
- this.d7.value = a.value;
265
- this.en = a.value;
264
+ this.ea.value = a.value;
265
+ this.eq = a.value;
266
266
  }
267
267
  }
268
- else if (typeCast(ColumnCustomFilterCondition.$, this.dx) !== null) {
269
- let c = typeCast(ColumnCustomFilterCondition.$, this.dx);
270
- this.d0.ek(c.id, c.index);
271
- let d = this.d7.getEditorValue();
268
+ else if (typeCast(ColumnCustomFilterCondition.$, this.d0) !== null) {
269
+ let c = typeCast(ColumnCustomFilterCondition.$, this.d0);
270
+ this.d3.ek(c.id, c.index);
271
+ let d = this.ea.getEditorValue();
272
272
  if (d != null) {
273
273
  if (!Base.equalsStatic(d, c.value)) {
274
- this.d7.value = c.value;
275
- this.en = c.value;
274
+ this.ea.value = c.value;
275
+ this.eq = c.value;
276
276
  }
277
277
  }
278
278
  else {
279
- this.d7.value = c.value;
280
- this.en = c.value;
279
+ this.ea.value = c.value;
280
+ this.eq = c.value;
281
281
  }
282
282
  }
283
- else if (!(typeCast(ColumnCustomFilterCondition.$, this.dx) !== null)) {
284
- this.en = null;
285
- this.d7.value = this.en;
286
- this.d7.setEditorValue(this.en);
283
+ else if (!(typeCast(ColumnCustomFilterCondition.$, this.d0) !== null)) {
284
+ this.eq = null;
285
+ this.ea.value = this.eq;
286
+ this.ea.setEditorValue(this.eq);
287
287
  }
288
288
  }
289
289
  else {
290
- this.en = null;
291
- this.d7.value = this.en;
292
- this.d7.setEditorValue(this.en);
293
- if (!this.eg) {
294
- this.d0.b = 0;
290
+ this.eq = null;
291
+ this.ea.value = this.eq;
292
+ this.ea.setEditorValue(this.eq);
293
+ if (!this.ej) {
294
+ this.d3.b = 0;
295
295
  }
296
296
  }
297
297
  }
298
- this.ee = true;
298
+ this.eh = true;
299
299
  }
300
- e4() {
301
- this.d0.d7();
302
- for (let a = 0; a < this.d6.count; a++) {
303
- this.d0.d1(this.d6._inner[a].e, this.d6._inner[a].f, this.d6._inner[a].g, a);
300
+ e7() {
301
+ this.d3.d7();
302
+ for (let a = 0; a < this.d9.count; a++) {
303
+ this.d3.d1(this.d9._inner[a].e, this.d9._inner[a].f, this.d9._inner[a].g, a);
304
304
  }
305
305
  }
306
- e5() {
307
- if (this.dy == 11) {
308
- this.eg = false;
306
+ e8() {
307
+ if (this.d1 == 11) {
308
+ this.ej = false;
309
309
  }
310
- this.d2 = this.d3();
310
+ this.d5 = this.d6();
311
311
  }
312
- fa() {
313
- this.fi(this.en != null);
314
- if (this.en == null || Base.equalsStatic(this.en, "")) {
315
- this.ey();
312
+ fd() {
313
+ this.fl(this.eq != null);
314
+ if (this.eq == null || Base.equalsStatic(this.eq, "")) {
315
+ this.e1();
316
316
  }
317
317
  else {
318
- this.ex(this.en);
318
+ this.e0(this.eq);
319
319
  }
320
320
  if (this.d != null) {
321
- this.d.update("FilterValue", this.en);
321
+ this.d.update("FilterValue", this.eq);
322
322
  }
323
323
  }
324
- e7() {
325
- if (this.d7 != null) {
326
- this.d7.detachEvents();
327
- let a = this.d7;
328
- a.valueProvided = delegateRemove(a.valueProvided, runOn(this, this.fh));
329
- }
330
- this.ff();
331
- this.d7 = this.d8(this.d2);
332
- this.d7.onEditStarted();
333
- if (this.d7 != null) {
334
- this.d7.attachEvents();
335
- this.d7.setFont(this.ed);
336
- this.d7.isEnabled = this.eg;
337
- this.d7.focusOnValueChanged = false;
338
- this.d7.showClearButton = false;
339
- let b = this.d7;
340
- b.valueProvided = delegateCombine(b.valueProvided, runOn(this, this.fh));
341
- this.e1();
342
- }
343
- this.e2(null, null);
344
- }
345
- fb() {
346
- if (this.ed != null) {
347
- if (this.d7 != null) {
348
- this.d7.setFont(this.ed);
324
+ fa() {
325
+ if (this.ea != null) {
326
+ this.ea.detachEvents();
327
+ let a = this.ea;
328
+ a.valueProvided = delegateRemove(a.valueProvided, runOn(this, this.fk));
329
+ }
330
+ this.fi();
331
+ this.ea = this.eb(this.d5);
332
+ this.ea.onEditStarted();
333
+ if (this.ea != null) {
334
+ this.ea.attachEvents();
335
+ this.ea.setFont(this.eg);
336
+ this.ea.isEnabled = this.ej;
337
+ this.ea.focusOnValueChanged = false;
338
+ this.ea.showClearButton = false;
339
+ let b = this.ea;
340
+ b.valueProvided = delegateCombine(b.valueProvided, runOn(this, this.fk));
341
+ this.e4();
342
+ }
343
+ this.e5(null, null);
344
+ }
345
+ fe() {
346
+ if (this.eg != null) {
347
+ if (this.ea != null) {
348
+ this.ea.setFont(this.eg);
349
349
  }
350
350
  }
351
351
  }
352
- fd(a, b) {
353
- this.d2 = this.d3();
352
+ fg(a, b) {
353
+ this.d5 = this.d6();
354
354
  switch (b.newValue) {
355
355
  case 40:
356
356
  case 11:
@@ -378,51 +378,51 @@ let FilterCell = /*@__PURE__*/ (() => {
378
378
  case 10:
379
379
  case 33:
380
380
  case 20:
381
- this.eg = false;
381
+ this.ej = false;
382
382
  break;
383
383
  default:
384
- this.eg = true;
384
+ this.ej = true;
385
385
  break;
386
386
  }
387
- if (this.dy == 11) {
388
- this.eg = false;
387
+ if (this.d1 == 11) {
388
+ this.ej = false;
389
389
  }
390
390
  if (b.newValue == 44) {
391
- if (this.d6 != null && this.d6.count > 0) {
392
- let c = this.d6._inner[this.d0.x];
393
- this.eg = c.d;
391
+ if (this.d9 != null && this.d9.count > 0) {
392
+ let c = this.d9._inner[this.d3.x];
393
+ this.ej = c.d;
394
394
  }
395
395
  }
396
- if (!this.eg) {
397
- this.ex(null);
398
- this.fi(true);
396
+ if (!this.ej) {
397
+ this.e0(null);
398
+ this.fl(true);
399
399
  }
400
- else if (this.en != null && !Base.equalsStatic(this.en, "")) {
401
- this.ex(this.en);
400
+ else if (this.eq != null && !Base.equalsStatic(this.eq, "")) {
401
+ this.e0(this.eq);
402
402
  }
403
403
  else {
404
- this.ey();
405
- this.fi(false);
404
+ this.e1();
405
+ this.fl(false);
406
406
  }
407
407
  if (this.d != null) {
408
- this.d.update("OperatorType", enumGetBox(ColumnComparisonConditionOperatorType_$type, this.d0.b));
408
+ this.d.update("OperatorType", enumGetBox(ColumnComparisonConditionOperatorType_$type, this.d3.b));
409
409
  }
410
410
  }
411
- e2(a, b) {
411
+ e5(a, b) {
412
412
  if (b != null) {
413
- if (!this.eg) {
414
- this.d0.b = 0;
415
- this.ey();
413
+ if (!this.ej) {
414
+ this.d3.b = 0;
415
+ this.e1();
416
416
  }
417
417
  }
418
- this.en = null;
419
- if (this.d7 != null) {
420
- this.d7.setEditorValue(null);
421
- this.d7.value = null;
418
+ this.eq = null;
419
+ if (this.ea != null) {
420
+ this.ea.setEditorValue(null);
421
+ this.ea.value = null;
422
422
  }
423
423
  }
424
- fh(a, b, c) {
425
- if (this.d2 == 2) {
424
+ fk(a, b, c) {
425
+ if (this.d5 == 2) {
426
426
  if (typeof b === 'string') {
427
427
  let d;
428
428
  if (((() => { let e = tryParseNumber(b, d); d = e.p1; return e.ret; })())) {
@@ -430,113 +430,113 @@ let FilterCell = /*@__PURE__*/ (() => {
430
430
  }
431
431
  }
432
432
  }
433
- this.en = b;
433
+ this.eq = b;
434
434
  }
435
- fj(a, b, c, d) {
436
- this.fg(a, b, c, d);
435
+ fm(a, b, c, d) {
436
+ this.fj(a, b, c, d);
437
437
  }
438
- d4(a, b) {
438
+ d7(a, b) {
439
439
  if (a != null) {
440
- for (let c = 0; c < this.d6.count; c++) {
441
- if (this.d6._inner[c].g == a) {
442
- return this.d6._inner[c];
440
+ for (let c = 0; c < this.d9.count; c++) {
441
+ if (this.d9._inner[c].g == a) {
442
+ return this.d9._inner[c];
443
443
  }
444
444
  }
445
445
  }
446
- if (b >= 0 && b < this.d6.count) {
447
- return this.d6._inner[b];
446
+ if (b >= 0 && b < this.d9.count) {
447
+ return this.d9._inner[b];
448
448
  }
449
449
  return null;
450
450
  }
451
- e0() {
452
- this.e8();
451
+ e3() {
452
+ this.fb();
453
453
  }
454
- ez() {
455
- this.e6();
454
+ e2() {
455
+ this.e9();
456
456
  }
457
- get dy() {
458
- return this.d0.d;
457
+ get d1() {
458
+ return this.d3.d;
459
459
  }
460
- set dy(a) {
461
- let b = this.d0.d;
462
- this.d0.d = a;
460
+ set d1(a) {
461
+ let b = this.d3.d;
462
+ this.d3.d = a;
463
463
  if (b != a) {
464
- this.ck("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.d0.d));
464
+ this.cl("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.d3.d));
465
465
  }
466
466
  }
467
- get d2() {
468
- return this.d1;
467
+ get d5() {
468
+ return this.d4;
469
469
  }
470
- set d2(a) {
471
- let b = this.d1;
472
- this.d1 = a;
470
+ set d5(a) {
471
+ let b = this.d4;
472
+ this.d4 = a;
473
473
  if (b != a) {
474
- this.ck("EditorType", enumGetBox(EditorType_$type, b), enumGetBox(EditorType_$type, this.d1));
474
+ this.cl("EditorType", enumGetBox(EditorType_$type, b), enumGetBox(EditorType_$type, this.d4));
475
475
  }
476
476
  }
477
- get eg() {
478
- return this.ef;
477
+ get ej() {
478
+ return this.ei;
479
479
  }
480
- set eg(a) {
481
- let b = this.ef;
482
- this.ef = a;
483
- if (b != this.ef) {
484
- this.ck("IsEditorEnabled", b, this.ef);
480
+ set ej(a) {
481
+ let b = this.ei;
482
+ this.ei = a;
483
+ if (b != this.ei) {
484
+ this.cl("IsEditorEnabled", b, this.ei);
485
485
  }
486
486
  }
487
- get d6() {
488
- return this.d5;
487
+ get d9() {
488
+ return this.d8;
489
489
  }
490
- set d6(a) {
491
- let b = this.d5;
492
- this.d5 = a;
493
- if (this.d5 != null) {
494
- this.ck("FilterOperands", b, this.d5);
490
+ set d9(a) {
491
+ let b = this.d8;
492
+ this.d8 = a;
493
+ if (this.d8 != null) {
494
+ this.cl("FilterOperands", b, this.d8);
495
495
  }
496
496
  }
497
- get ed() {
498
- return this.ec;
497
+ get eg() {
498
+ return this.ef;
499
499
  }
500
- set ed(a) {
501
- let b = this.ec;
502
- this.ec = a;
503
- if (b != this.ec) {
504
- this.ck("FontInfo", b, this.ec);
500
+ set eg(a) {
501
+ let b = this.ef;
502
+ this.ef = a;
503
+ if (b != this.ef) {
504
+ this.cl("FontInfo", b, this.ef);
505
505
  }
506
506
  }
507
- get en() {
508
- return this.em;
507
+ get eq() {
508
+ return this.ep;
509
509
  }
510
- set en(a) {
511
- let b = this.em;
512
- this.em = a;
513
- if (b != this.em) {
514
- this.ck("FilterValue", b, this.em);
510
+ set eq(a) {
511
+ let b = this.ep;
512
+ this.ep = a;
513
+ if (b != this.ep) {
514
+ this.cl("FilterValue", b, this.ep);
515
515
  }
516
516
  }
517
- get dx() {
518
- return this.dw;
517
+ get d0() {
518
+ return this.dz;
519
519
  }
520
- set dx(a) {
521
- let b = this.dw;
522
- this.dw = a;
520
+ set d0(a) {
521
+ let b = this.dz;
522
+ this.dz = a;
523
523
  if (b != a) {
524
- this.ck("Filter", b, this.dw);
524
+ this.cl("Filter", b, this.dz);
525
525
  }
526
526
  }
527
- get fl() {
528
- return this.fk;
527
+ get fo() {
528
+ return this.fn;
529
529
  }
530
- set fl(a) {
531
- let b = this.fk;
532
- this.fk = a;
533
- if (b != this.fk) {
534
- this.ck("TextColor", b, this.fk);
530
+ set fo(a) {
531
+ let b = this.fn;
532
+ this.fn = a;
533
+ if (b != this.fn) {
534
+ this.cl("TextColor", b, this.fn);
535
535
  }
536
536
  }
537
537
  }
538
538
  FilterCell.$t = /*@__PURE__*/ markType(FilterCell, 'FilterCell', GridCellBase.$);
539
- FilterCell.eo = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
539
+ FilterCell.er = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
540
540
  return FilterCell;
541
541
  })();
542
542
  export { FilterCell };