igniteui-webcomponents-grids 5.3.0 → 5.4.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 (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -30,7 +30,7 @@ export let CanvasTemplateCellPresenter = /*@__PURE__*/ (() => {
30
30
  this.d.db.opacity = e;
31
31
  }
32
32
  this.d.dc();
33
- c.n3(a, this.d);
33
+ c.n4(a, this.d);
34
34
  }
35
35
  }
36
36
  CanvasTemplateCellPresenter.$t = /*@__PURE__*/ markType(CanvasTemplateCellPresenter, 'CanvasTemplateCellPresenter', CanvasCellPresenterBase.$);
@@ -21,16 +21,18 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
21
21
  class CheckboxListBridge extends XComponentBridge {
22
22
  constructor(a) {
23
23
  super(a);
24
- this.ab = null;
25
24
  this.ac = null;
25
+ this.af = null;
26
26
  this.ad = null;
27
+ this.ae = null;
27
28
  this.u = null;
29
+ this.x = null;
28
30
  this.v = null;
29
31
  this.w = null;
30
- this.x = null;
31
- this.z = null;
32
32
  this.y = null;
33
33
  this.aa = null;
34
+ this.z = null;
35
+ this.ab = null;
34
36
  }
35
37
  getDesiredSize(a, b) {
36
38
  return this.t.getDesiredSize(b);
@@ -39,43 +41,48 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
39
41
  let e = a;
40
42
  switch (c) {
41
43
  case 2:
42
- e.checkedChanged = delegateCombine(e.checkedChanged, runOn(this, this.ae));
44
+ e.checkedChanged = delegateCombine(e.checkedChanged, runOn(this, this.ag));
43
45
  this.u = d;
44
- this.ab = b;
46
+ this.ac = b;
47
+ break;
48
+ case 20:
49
+ e.labelClicked = delegateCombine(e.labelClicked, runOn(this, this.al));
50
+ this.x = d;
51
+ this.af = b;
45
52
  break;
46
53
  case 18:
47
- e.selectedKeyAdded = delegateCombine(e.selectedKeyAdded, runOn(this, this.ag));
54
+ e.selectedKeyAdded = delegateCombine(e.selectedKeyAdded, runOn(this, this.ai));
48
55
  this.v = d;
49
- this.ac = b;
56
+ this.ad = b;
50
57
  break;
51
58
  case 19:
52
- e.selectedKeyRemoved = delegateCombine(e.selectedKeyRemoved, runOn(this, this.ah));
59
+ e.selectedKeyRemoved = delegateCombine(e.selectedKeyRemoved, runOn(this, this.aj));
53
60
  this.w = d;
54
- this.ad = b;
55
- break;
56
- case 21:
57
- e.indexTypeChanged = delegateCombine(e.indexTypeChanged, runOn(this, this.af));
58
- this.x = d;
59
- this.z = b;
61
+ this.ae = b;
60
62
  break;
61
- case 25:
62
- e.keysCleared = delegateCombine(e.keysCleared, runOn(this, this.ai));
63
+ case 22:
64
+ e.indexTypeChanged = delegateCombine(e.indexTypeChanged, runOn(this, this.ah));
63
65
  this.y = d;
64
66
  this.aa = b;
65
67
  break;
68
+ case 26:
69
+ e.keysCleared = delegateCombine(e.keysCleared, runOn(this, this.ak));
70
+ this.z = d;
71
+ this.ab = b;
72
+ break;
66
73
  }
67
74
  }
68
- ai(a, b) {
69
- if (this.y != null) {
70
- this.y(this.aa, ((() => {
75
+ ak(a, b) {
76
+ if (this.z != null) {
77
+ this.z(this.ab, ((() => {
71
78
  let $ret = new NativeUICheckboxListKeysClearedEventArgs();
72
79
  return $ret;
73
80
  })()));
74
81
  }
75
82
  }
76
- af(a, b) {
77
- if (this.x != null) {
78
- this.x(this.z, ((() => {
83
+ ah(a, b) {
84
+ if (this.y != null) {
85
+ this.y(this.aa, ((() => {
79
86
  let $ret = new NativeUICheckboxListIndexTypeChangedEventArgs();
80
87
  $ret.b = b.b;
81
88
  $ret.a = b.a;
@@ -87,31 +94,36 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
87
94
  let e = a;
88
95
  switch (c) {
89
96
  case 2:
90
- e.checkedChanged = delegateRemove(e.checkedChanged, runOn(this, this.ae));
97
+ e.checkedChanged = delegateRemove(e.checkedChanged, runOn(this, this.ag));
91
98
  this.u = null;
92
- this.ab = null;
99
+ this.ac = null;
100
+ break;
101
+ case 20:
102
+ e.labelClicked = delegateRemove(e.labelClicked, runOn(this, this.al));
103
+ this.x = null;
104
+ this.af = null;
93
105
  break;
94
106
  case 18:
95
- e.selectedKeyAdded = delegateRemove(e.selectedKeyAdded, runOn(this, this.ag));
107
+ e.selectedKeyAdded = delegateRemove(e.selectedKeyAdded, runOn(this, this.ai));
96
108
  this.v = null;
97
- this.ac = null;
109
+ this.ad = null;
98
110
  break;
99
111
  case 19:
100
- e.selectedKeyRemoved = delegateRemove(e.selectedKeyRemoved, runOn(this, this.ah));
112
+ e.selectedKeyRemoved = delegateRemove(e.selectedKeyRemoved, runOn(this, this.aj));
101
113
  this.w = null;
102
- this.ad = null;
114
+ this.ae = null;
103
115
  break;
104
- case 21:
105
- e.indexTypeChanged = delegateRemove(e.indexTypeChanged, runOn(this, this.af));
106
- this.x = null;
107
- this.z = null;
116
+ case 22:
117
+ e.indexTypeChanged = delegateRemove(e.indexTypeChanged, runOn(this, this.ah));
118
+ this.y = null;
119
+ this.aa = null;
108
120
  break;
109
121
  }
110
122
  }
111
- ae(a, b) {
123
+ ag(a, b) {
112
124
  let c = a;
113
125
  if (this.u != null) {
114
- this.u(this.ab, ((() => {
126
+ this.u(this.ac, ((() => {
115
127
  let $ret = new NativeUICheckboxListChangeEventArgs();
116
128
  $ret.c = b.c;
117
129
  $ret.b = b.b;
@@ -120,10 +132,21 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
120
132
  })()));
121
133
  }
122
134
  }
123
- ag(a, b) {
135
+ al(a, b) {
136
+ if (this.x != null) {
137
+ this.x(this.af, ((() => {
138
+ let $ret = new NativeUICheckboxListChangeEventArgs();
139
+ $ret.c = b.c;
140
+ $ret.b = b.b;
141
+ $ret.a = b.a;
142
+ return $ret;
143
+ })()));
144
+ }
145
+ }
146
+ ai(a, b) {
124
147
  let c = a;
125
148
  if (this.v != null) {
126
- this.v(this.ac, ((() => {
149
+ this.v(this.ad, ((() => {
127
150
  let $ret = new NativeUICheckboxListChangeEventArgs();
128
151
  $ret.c = b.c;
129
152
  $ret.b = b.b;
@@ -132,10 +155,10 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
132
155
  })()));
133
156
  }
134
157
  }
135
- ah(a, b) {
158
+ aj(a, b) {
136
159
  let c = a;
137
160
  if (this.w != null) {
138
- this.w(this.ad, ((() => {
161
+ this.w(this.ae, ((() => {
139
162
  let $ret = new NativeUICheckboxListChangeEventArgs();
140
163
  $ret.c = b.c;
141
164
  $ret.b = b.b;
@@ -160,9 +183,12 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
160
183
  d.dataMemberPath = c;
161
184
  break;
162
185
  case 77:
186
+ d.subtitleMemberPath = c;
187
+ break;
188
+ case 79:
163
189
  d.showSelectAll = c;
164
190
  break;
165
- case 78:
191
+ case 80:
166
192
  d.primaryKey = c;
167
193
  break;
168
194
  case 1:
@@ -177,15 +203,30 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
177
203
  case 24:
178
204
  d.rowHoverBackgroundColor = c;
179
205
  break;
180
- case 79:
206
+ case 81:
181
207
  d.searchIconColor = c;
182
208
  break;
183
- case 80:
209
+ case 82:
184
210
  d.searchTextColor = c;
185
211
  break;
186
- case 97:
212
+ case 99:
187
213
  d.indexType = EnumUtil.getEnumValue(NativeUICheckboxListIndexType_$type, c);
188
214
  break;
215
+ case 113:
216
+ d.checkboxAlignedRight = c;
217
+ break;
218
+ case 114:
219
+ d.labelClickTriggersChange = c;
220
+ break;
221
+ case 115:
222
+ d.dataLegendTarget = c;
223
+ break;
224
+ case 78:
225
+ d.propertyTypeMemberPath = c;
226
+ break;
227
+ case 17:
228
+ d.checkboxCornerRadius = c;
229
+ break;
189
230
  }
190
231
  }
191
232
  getValue(a, b) {
@@ -195,15 +236,21 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
195
236
  case 8: return c.itemsSource;
196
237
  case 75: return c.selectedMemberPath;
197
238
  case 76: return c.dataMemberPath;
198
- case 77: return c.showSelectAll;
199
- case 78: return c.primaryKey;
239
+ case 77: return c.subtitleMemberPath;
240
+ case 79: return c.showSelectAll;
241
+ case 80: return c.primaryKey;
200
242
  case 1: return enumGetBox(ControlDisplayDensity_$type, c.density);
201
243
  case 18: return enumGetBox(BaseControlTheme_$type, c.baseTheme);
202
244
  case 33: return c.textColor;
203
245
  case 24: return c.rowHoverBackgroundColor;
204
- case 79: return c.searchIconColor;
205
- case 80: return c.searchTextColor;
206
- case 97: return enumGetBox(CheckboxListExternalIndexType_$type, c.indexType);
246
+ case 81: return c.searchIconColor;
247
+ case 82: return c.searchTextColor;
248
+ case 99: return enumGetBox(CheckboxListExternalIndexType_$type, c.indexType);
249
+ case 113: return c.checkboxAlignedRight;
250
+ case 114: return c.labelClickTriggersChange;
251
+ case 115: return c.dataLegendTarget;
252
+ case 78: return c.propertyTypeMemberPath;
253
+ case 17: return c.checkboxCornerRadius;
207
254
  }
208
255
  return null;
209
256
  }
@@ -223,9 +270,10 @@ export let CheckboxListBridge = /*@__PURE__*/ (() => {
223
270
  let c = a;
224
271
  c.removeSelectedKeyAt(b);
225
272
  }
226
- ak(a) {
273
+ refresh(a) {
274
+ a.refresh();
227
275
  }
228
- aj(a, b) {
276
+ am(a, b) {
229
277
  }
230
278
  }
231
279
  CheckboxListBridge.$t = /*@__PURE__*/ markType(CheckboxListBridge, 'CheckboxListBridge', XComponentBridge.$, [INativeUICheckboxListBridge_$type]);