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.
@@ -47564,7 +47564,7 @@ class IgxGridBaseDirective extends DisplayDensityBase {
47564
47564
  this._filteringPipeTrigger++;
47565
47565
  this.filteringExpressionsTreeChange.emit(this._filteringExpressionsTree);
47566
47566
  if (this.filteringService.isFilteringExpressionsTreeEmpty(this._filteringExpressionsTree) &&
47567
- !this.advancedFilteringExpressionsTree) {
47567
+ this.filteringService.isFilteringExpressionsTreeEmpty(this._advancedFilteringExpressionsTree)) {
47568
47568
  this.filteredData = null;
47569
47569
  }
47570
47570
  this.filteringService.refreshExpressions();
@@ -47595,8 +47595,8 @@ class IgxGridBaseDirective extends DisplayDensityBase {
47595
47595
  this._advancedFilteringExpressionsTree = null;
47596
47596
  }
47597
47597
  this.advancedFilteringExpressionsTreeChange.emit(this._advancedFilteringExpressionsTree);
47598
- if (this.filteringService.isFilteringExpressionsTreeEmpty(this._advancedFilteringExpressionsTree) &&
47599
- !this.advancedFilteringExpressionsTree) {
47598
+ if (this.filteringService.isFilteringExpressionsTreeEmpty(this._filteringExpressionsTree) &&
47599
+ this.filteringService.isFilteringExpressionsTreeEmpty(this._advancedFilteringExpressionsTree)) {
47600
47600
  this.filteredData = null;
47601
47601
  }
47602
47602
  this.selectionService.clearHeaderCBState();
@@ -50514,7 +50514,8 @@ class IgxGridBaseDirective extends DisplayDensityBase {
50514
50514
  * ```
50515
50515
  */
50516
50516
  get hasSummarizedColumns() {
50517
- return this.summaryService.hasSummarizedColumns;
50517
+ const summarizedColumns = this.columnList.filter(col => col.hasSummary && !col.hidden);
50518
+ return summarizedColumns.length > 0;
50518
50519
  }
50519
50520
  /**
50520
50521
  * @hidden @internal
@@ -57425,9 +57426,12 @@ class IgxGridStateDirective {
57425
57426
  if (this.currGrid.columnList.length > 0) {
57426
57427
  dataType = this.currGrid.columnList.find(c => c.field === expr.fieldName).dataType;
57427
57428
  }
57428
- else {
57429
+ else if (this.state.columns) {
57429
57430
  dataType = this.state.columns.find(c => c.field === expr.fieldName).dataType;
57430
57431
  }
57432
+ else {
57433
+ return null;
57434
+ }
57431
57435
  // when ESF, values are stored in Set.
57432
57436
  // First those values are converted to an array before returning string in the stringifyCallback
57433
57437
  // now we need to convert those back to Set
@@ -68778,6 +68782,8 @@ class IgxTimePickerComponent {
68778
68782
  this.determineCursorPos();
68779
68783
  if (this._ngControl) {
68780
68784
  this._statusChanges$ = this._ngControl.statusChanges.subscribe(this.onStatusChanged.bind(this));
68785
+ this._inputGroup.isRequired = this.required;
68786
+ this._cdr.detectChanges();
68781
68787
  }
68782
68788
  }
68783
68789
  }