igniteui-angular 22.0.6 → 22.0.7

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.
@@ -826,7 +826,8 @@ function WatchChanges() {
826
826
  const oldValue = this[key];
827
827
  if (val !== oldValue || (typeof val === 'object' && val === oldValue)) {
828
828
  originalSetter.call(this, val);
829
- if (this.ngOnChanges && !init) {
829
+ // Explicitly check whether the decorator is called during initialization
830
+ if (this.ngOnChanges && init !== undefined && !init) {
830
831
  // in case wacthed prop changes trigger ngOnChanges manually
831
832
  const changes = {
832
833
  [key]: new SimpleChange(oldValue, val, false)
@@ -8810,7 +8811,7 @@ class IgxExcelStyleSearchComponent {
8810
8811
  */
8811
8812
  get containerSize() {
8812
8813
  if (this.esf.listData.length) {
8813
- return this.list?.element.nativeElement.offsetHeight;
8814
+ return this.list?.element.nativeElement.clientHeight;
8814
8815
  }
8815
8816
  // GE Nov 1st, 2021 #10355 Return a numeric value, so the chunk size is calculated properly.
8816
8817
  // If we skip this branch, on applying the filter the _calculateChunkSize() method off the ForOfDirective receives
@@ -15488,6 +15489,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
15488
15489
  // }
15489
15490
  // },
15490
15491
  class IgxPivotDateDimension {
15492
+ /* treatAsRef */
15491
15493
  /**
15492
15494
  * Gets/Sets the resource strings.
15493
15495
  *
@@ -16487,7 +16489,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImpor
16487
16489
  /* wcElementTag: igc-grid-toolbar */
16488
16490
  /* blazorIndirectRender */
16489
16491
  /* singleInstanceIdentifier */
16490
- /* contentParent: GridBaseDirective */
16492
+ /* contentParent: Grid */
16493
+ /* contentParent: TreeGrid */
16491
16494
  /* contentParent: RowIsland */
16492
16495
  /* contentParent: HierarchicalGrid */
16493
16496
  /* jsonAPIManageItemInMarkup */