igniteui-angular 20.1.20 → 20.1.21

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.
@@ -41229,7 +41229,7 @@ class IgxSimpleComboComponent extends IgxComboBaseDirective {
41229
41229
  this.cdr.markForCheck();
41230
41230
  this._displayValue = this.createDisplayText(super.selection, oldSelection);
41231
41231
  this._value = this.valueKey ? super.selection.map(item => item[this.valueKey]) : super.selection;
41232
- this.filterValue = this._displayValue?.toString() || '';
41232
+ this.searchValue = this.filterValue = this._displayValue?.toString() || '';
41233
41233
  }
41234
41234
  /** @hidden @internal */
41235
41235
  ngAfterViewInit() {
@@ -72537,7 +72537,12 @@ class IgxGridBaseDirective {
72537
72537
  }
72538
72538
  updateDefaultRowHeight() {
72539
72539
  if (this.dataRowList.length > 0 && this.dataRowList.first.cells && this.dataRowList.first.cells.length > 0) {
72540
- const height = parseFloat(this.document.defaultView.getComputedStyle(this.dataRowList.first.cells.first.nativeElement)?.getPropertyValue('height'));
72540
+ const targetCell = this.dataRowList.first.cells.toArray().find((x) => !x.isMerged);
72541
+ if (!targetCell) {
72542
+ this._shouldRecalcRowHeight = true;
72543
+ return;
72544
+ }
72545
+ const height = parseFloat(this.document.defaultView.getComputedStyle(targetCell.nativeElement)?.getPropertyValue('height'));
72541
72546
  if (height) {
72542
72547
  this._defaultRowHeight = height;
72543
72548
  }
@@ -74351,6 +74356,9 @@ class IgxGridMRLNavigationService extends IgxGridNavigationService {
74351
74356
  }
74352
74357
  const nextLayout = this.layout(colIndex);
74353
74358
  const newLayout = key.includes('up') || key.includes('down') ? { rowStart: nextLayout.rowStart } : { colStart: nextLayout.colStart };
74359
+ if (!this.activeNode.layout) {
74360
+ this.activeNode.layout = this.layout(this.activeNode.column || 0);
74361
+ }
74354
74362
  Object.assign(this.activeNode.layout, newLayout, { rowEnd: nextLayout.rowEnd });
74355
74363
  if (ctrl && (key === 'home' || key === 'end')) {
74356
74364
  this.activeNode.layout = nextLayout;