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
@@ -79,10 +79,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
79
79
  * Gets or sets the string to prefix a negative value. If FormatString is specificied this value is ignored.
80
80
  */
81
81
  get: function () {
82
- return this.i.ox;
82
+ return this.i.oy;
83
83
  },
84
84
  set: function (v) {
85
- this.i.ox = v;
85
+ this.i.oy = v;
86
86
  },
87
87
  enumerable: false,
88
88
  configurable: true
@@ -92,10 +92,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
92
92
  * Gets or sets the string to prefix a positive value. If FormatString is specificied this value is ignored.
93
93
  */
94
94
  get: function () {
95
- return this.i.o1;
95
+ return this.i.o2;
96
96
  },
97
97
  set: function (v) {
98
- this.i.o1 = v;
98
+ this.i.o2 = v;
99
99
  },
100
100
  enumerable: false,
101
101
  configurable: true
@@ -105,10 +105,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
105
105
  * Gets or sets the string to suffix a negative value. If FormatString is specificied this value is ignored.
106
106
  */
107
107
  get: function () {
108
- return this.i.oz;
108
+ return this.i.o0;
109
109
  },
110
110
  set: function (v) {
111
- this.i.oz = v;
111
+ this.i.o0 = v;
112
112
  },
113
113
  enumerable: false,
114
114
  configurable: true
@@ -118,10 +118,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
118
118
  * Gets or sets the string to suffix a positive value. If FormatString is specificied this value is ignored.
119
119
  */
120
120
  get: function () {
121
- return this.i.o3;
121
+ return this.i.o4;
122
122
  },
123
123
  set: function (v) {
124
- this.i.o3 = v;
124
+ this.i.o4 = v;
125
125
  },
126
126
  enumerable: false,
127
127
  configurable: true
@@ -131,11 +131,11 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
131
131
  * Gets or sets the maximum fraction digits. If FormatString is specificied this value is ignored.
132
132
  */
133
133
  get: function () {
134
- return this.i.oc;
134
+ return this.i.od;
135
135
  },
136
136
  set: function (v) {
137
- this.i.oc = +v;
138
- this._a("maxFractionDigits", this.i.oc);
137
+ this.i.od = +v;
138
+ this._a("maxFractionDigits", this.i.od);
139
139
  },
140
140
  enumerable: false,
141
141
  configurable: true
@@ -145,11 +145,11 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
145
145
  * Gets or sets the minimum fraction digits. If FormatString is specificied this value is ignored.
146
146
  */
147
147
  get: function () {
148
- return this.i.od;
148
+ return this.i.oe;
149
149
  },
150
150
  set: function (v) {
151
- this.i.od = +v;
152
- this._a("minFractionDigits", this.i.od);
151
+ this.i.oe = +v;
152
+ this._a("minFractionDigits", this.i.oe);
153
153
  },
154
154
  enumerable: false,
155
155
  configurable: true
@@ -159,11 +159,11 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
159
159
  * Gets or sets the minimum integer digits. If FormatString is specificied this value is ignored.
160
160
  */
161
161
  get: function () {
162
- return this.i.oe;
162
+ return this.i.of;
163
163
  },
164
164
  set: function (v) {
165
- this.i.oe = +v;
166
- this._a("minIntegerDigits", this.i.oe);
165
+ this.i.of = +v;
166
+ this._a("minIntegerDigits", this.i.of);
167
167
  },
168
168
  enumerable: false,
169
169
  configurable: true
@@ -173,11 +173,11 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
173
173
  * Gets or sets whether to show a grouping separator. If FormatString is specificied this value is ignored.
174
174
  */
175
175
  get: function () {
176
- return this.i.n7;
176
+ return this.i.n8;
177
177
  },
178
178
  set: function (v) {
179
- this.i.n7 = ensureBool(v);
180
- this._a("showGroupingSeparator", this.i.n7);
179
+ this.i.n8 = ensureBool(v);
180
+ this._a("showGroupingSeparator", this.i.n8);
181
181
  },
182
182
  enumerable: false,
183
183
  configurable: true
@@ -187,24 +187,24 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
187
187
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
188
188
  */
189
189
  get: function () {
190
- return this.i.os;
190
+ return this.i.ot;
191
191
  },
192
192
  set: function (v) {
193
- this.i.os = v;
193
+ this.i.ot = v;
194
194
  },
195
195
  enumerable: false,
196
196
  configurable: true
197
197
  });
198
198
  Object.defineProperty(IgcNumericColumnComponent.prototype, "formatSpecifiers", {
199
199
  get: function () {
200
- return this.i.n3;
200
+ return this.i.n4;
201
201
  },
202
202
  set: function (v) {
203
203
  if (v && !Array.isArray(v) && typeof (v) == "string") {
204
204
  var re = /\s*(?:,|\s|$)\s*/gm;
205
205
  v = v.split(re);
206
206
  }
207
- this.i.n3 = v;
207
+ this.i.n4 = v;
208
208
  },
209
209
  enumerable: false,
210
210
  configurable: true
@@ -214,10 +214,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
214
214
  * Gets or sets the INTL NumericFormat object to use for formatting the date values.
215
215
  */
216
216
  get: function () {
217
- return this.i.oh;
217
+ return this.i.oi;
218
218
  },
219
219
  set: function (v) {
220
- this.i.oh = v;
220
+ this.i.oi = v;
221
221
  },
222
222
  enumerable: false,
223
223
  configurable: true
@@ -227,11 +227,11 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
227
227
  * Gets or sets the editor type used for editing cells in this column.
228
228
  */
229
229
  get: function () {
230
- return this.i.n5;
230
+ return this.i.n6;
231
231
  },
232
232
  set: function (v) {
233
- this.i.n5 = ensureEnum(EditorType_$type, v);
234
- this._a("editorType", enumToString(EditorType_$type, this.i.n5));
233
+ this.i.n6 = ensureEnum(EditorType_$type, v);
234
+ this._a("editorType", enumToString(EditorType_$type, this.i.n6));
235
235
  },
236
236
  enumerable: false,
237
237
  configurable: true
@@ -241,10 +241,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
241
241
  * Gets or sets the ComboBox data source.
242
242
  */
243
243
  get: function () {
244
- return this.i.og;
244
+ return this.i.oh;
245
245
  },
246
246
  set: function (v) {
247
- this.i.og = v;
247
+ this.i.oh = v;
248
248
  },
249
249
  enumerable: false,
250
250
  configurable: true
@@ -254,10 +254,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
254
254
  * Gets or sets the ComboBox text field.
255
255
  */
256
256
  get: function () {
257
- return this.i.on;
257
+ return this.i.oo;
258
258
  },
259
259
  set: function (v) {
260
- this.i.on = v;
260
+ this.i.oo = v;
261
261
  },
262
262
  enumerable: false,
263
263
  configurable: true
@@ -267,10 +267,10 @@ var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
267
267
  * Gets or sets the ComboBox value field.
268
268
  */
269
269
  get: function () {
270
- return this.i.oo;
270
+ return this.i.op;
271
271
  },
272
272
  set: function (v) {
273
- this.i.oo = v;
273
+ this.i.op = v;
274
274
  },
275
275
  enumerable: false,
276
276
  configurable: true
@@ -79,11 +79,11 @@ var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
79
79
  * Gets or sets the editor type used for editing cells in this column.
80
80
  */
81
81
  get: function () {
82
- return this.i.n2;
82
+ return this.i.n3;
83
83
  },
84
84
  set: function (v) {
85
- this.i.n2 = ensureEnum(EditorType_$type, v);
86
- this._a("editorType", enumToString(EditorType_$type, this.i.n2));
85
+ this.i.n3 = ensureEnum(EditorType_$type, v);
86
+ this._a("editorType", enumToString(EditorType_$type, this.i.n3));
87
87
  },
88
88
  enumerable: false,
89
89
  configurable: true
@@ -93,10 +93,10 @@ var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
93
93
  * Gets or sets the ComboBox data source.
94
94
  */
95
95
  get: function () {
96
- return this.i.n3;
96
+ return this.i.n4;
97
97
  },
98
98
  set: function (v) {
99
- this.i.n3 = v;
99
+ this.i.n4 = v;
100
100
  },
101
101
  enumerable: false,
102
102
  configurable: true
@@ -106,10 +106,10 @@ var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
106
106
  * Gets or sets the ComboBox text field.
107
107
  */
108
108
  get: function () {
109
- return this.i.n5;
109
+ return this.i.n6;
110
110
  },
111
111
  set: function (v) {
112
- this.i.n5 = v;
112
+ this.i.n6 = v;
113
113
  },
114
114
  enumerable: false,
115
115
  configurable: true
@@ -119,10 +119,10 @@ var IgcTextColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
119
119
  * Gets or sets the ComboBox value field.
120
120
  */
121
121
  get: function () {
122
- return this.i.n6;
122
+ return this.i.n7;
123
123
  },
124
124
  set: function (v) {
125
- this.i.n6 = v;
125
+ this.i.n7 = v;
126
126
  },
127
127
  enumerable: false,
128
128
  configurable: true