igniteui-angular 19.1.1 → 19.2.0-alpha.1

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.
@@ -39910,9 +39910,8 @@ class IgxSimpleComboComponent extends IgxComboBaseDirective {
39910
39910
  return;
39911
39911
  }
39912
39912
  this.composing = false;
39913
- // explicitly update selection and trigger text selection so that we don't have to force CD
39913
+ // explicitly update selection so that we don't have to force CD
39914
39914
  this.textSelection.selected = true;
39915
- this.textSelection.trigger();
39916
39915
  }
39917
39916
  /** @hidden @internal */
39918
39917
  focusSearchInput(opening) {
@@ -56888,7 +56887,7 @@ class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent {
56888
56887
  modifyExpression(expr) {
56889
56888
  const lowerCaseFilterValues = new Set(Array.from(expr.expression.searchVal).map((value) => value.toLowerCase()));
56890
56889
  this.grid.data.forEach(item => {
56891
- if (lowerCaseFilterValues.has(item[this.column.field]?.toLowerCase())) {
56890
+ if (typeof item[this.column.field] === "string" && lowerCaseFilterValues.has(item[this.column.field]?.toLowerCase())) {
56892
56891
  expr.expression.searchVal.add(item[this.column.field]);
56893
56892
  }
56894
56893
  });
@@ -79417,6 +79416,7 @@ class IgxPivotGridComponent extends IgxGridBaseDirective {
79417
79416
  IgxGridSelectionService,
79418
79417
  IgxColumnResizingService,
79419
79418
  GridBaseAPIService,
79419
+ { provide: IGX_GRID_SERVICE_BASE, useClass: GridBaseAPIService },
79420
79420
  { provide: IGX_GRID_BASE, useExisting: IgxPivotGridComponent },
79421
79421
  { provide: IgxFilteringService, useClass: IgxPivotFilteringService },
79422
79422
  IgxPivotGridNavigationService,
@@ -79440,6 +79440,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.6", ngImpor
79440
79440
  IgxGridSelectionService,
79441
79441
  IgxColumnResizingService,
79442
79442
  GridBaseAPIService,
79443
+ { provide: IGX_GRID_SERVICE_BASE, useClass: GridBaseAPIService },
79443
79444
  { provide: IGX_GRID_BASE, useExisting: IgxPivotGridComponent },
79444
79445
  { provide: IgxFilteringService, useClass: IgxPivotFilteringService },
79445
79446
  IgxPivotGridNavigationService,