igniteui-angular 11.1.44 → 11.1.45
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.
- package/bundles/igniteui-angular.umd.js +14 -6
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/bundles/igniteui-angular.umd.min.js +1 -1
- package/bundles/igniteui-angular.umd.min.js.map +1 -1
- package/esm2015/lib/grids/grid-base.directive.js +6 -5
- package/esm2015/lib/grids/state.directive.js +5 -2
- package/esm2015/lib/time-picker/time-picker.component.js +3 -1
- package/fesm2015/igniteui-angular.js +11 -5
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -52983,7 +52983,7 @@
|
|
|
52983
52983
|
this._filteringPipeTrigger++;
|
|
52984
52984
|
this.filteringExpressionsTreeChange.emit(this._filteringExpressionsTree);
|
|
52985
52985
|
if (this.filteringService.isFilteringExpressionsTreeEmpty(this._filteringExpressionsTree) &&
|
|
52986
|
-
|
|
52986
|
+
this.filteringService.isFilteringExpressionsTreeEmpty(this._advancedFilteringExpressionsTree)) {
|
|
52987
52987
|
this.filteredData = null;
|
|
52988
52988
|
}
|
|
52989
52989
|
this.filteringService.refreshExpressions();
|
|
@@ -53019,8 +53019,8 @@
|
|
|
53019
53019
|
this._advancedFilteringExpressionsTree = null;
|
|
53020
53020
|
}
|
|
53021
53021
|
this.advancedFilteringExpressionsTreeChange.emit(this._advancedFilteringExpressionsTree);
|
|
53022
|
-
if (this.filteringService.isFilteringExpressionsTreeEmpty(this.
|
|
53023
|
-
|
|
53022
|
+
if (this.filteringService.isFilteringExpressionsTreeEmpty(this._filteringExpressionsTree) &&
|
|
53023
|
+
this.filteringService.isFilteringExpressionsTreeEmpty(this._advancedFilteringExpressionsTree)) {
|
|
53024
53024
|
this.filteredData = null;
|
|
53025
53025
|
}
|
|
53026
53026
|
this.selectionService.clearHeaderCBState();
|
|
@@ -56493,7 +56493,8 @@
|
|
|
56493
56493
|
* ```
|
|
56494
56494
|
*/
|
|
56495
56495
|
get: function () {
|
|
56496
|
-
|
|
56496
|
+
var summarizedColumns = this.columnList.filter(function (col) { return col.hasSummary && !col.hidden; });
|
|
56497
|
+
return summarizedColumns.length > 0;
|
|
56497
56498
|
},
|
|
56498
56499
|
enumerable: false,
|
|
56499
56500
|
configurable: true
|
|
@@ -64237,9 +64238,12 @@
|
|
|
64237
64238
|
if (this_1.currGrid.columnList.length > 0) {
|
|
64238
64239
|
dataType = this_1.currGrid.columnList.find(function (c) { return c.field === expr_1.fieldName; }).dataType;
|
|
64239
64240
|
}
|
|
64240
|
-
else {
|
|
64241
|
+
else if (this_1.state.columns) {
|
|
64241
64242
|
dataType = this_1.state.columns.find(function (c) { return c.field === expr_1.fieldName; }).dataType;
|
|
64242
64243
|
}
|
|
64244
|
+
else {
|
|
64245
|
+
return { value: null };
|
|
64246
|
+
}
|
|
64243
64247
|
// when ESF, values are stored in Set.
|
|
64244
64248
|
// First those values are converted to an array before returning string in the stringifyCallback
|
|
64245
64249
|
// now we need to convert those back to Set
|
|
@@ -64257,7 +64261,9 @@
|
|
|
64257
64261
|
try {
|
|
64258
64262
|
for (var _b = __values(exprTreeObject.filteringOperands), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
64259
64263
|
var item = _c.value;
|
|
64260
|
-
_loop_1(item);
|
|
64264
|
+
var state_1 = _loop_1(item);
|
|
64265
|
+
if (typeof state_1 === "object")
|
|
64266
|
+
return state_1.value;
|
|
64261
64267
|
}
|
|
64262
64268
|
}
|
|
64263
64269
|
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
@@ -77005,6 +77011,8 @@
|
|
|
77005
77011
|
this.determineCursorPos();
|
|
77006
77012
|
if (this._ngControl) {
|
|
77007
77013
|
this._statusChanges$ = this._ngControl.statusChanges.subscribe(this.onStatusChanged.bind(this));
|
|
77014
|
+
this._inputGroup.isRequired = this.required;
|
|
77015
|
+
this._cdr.detectChanges();
|
|
77008
77016
|
}
|
|
77009
77017
|
}
|
|
77010
77018
|
};
|