primeng 15.4.16-lts → 15.4.17-lts

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.
@@ -2782,8 +2782,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
2782
2782
  }]
2783
2783
  }], ctorParameters: function () { return [{ type: Table }]; } });
2784
2784
  class FrozenColumn {
2785
- constructor(el) {
2785
+ constructor(el, zone) {
2786
2786
  this.el = el;
2787
+ this.zone = zone;
2787
2788
  this.alignFrozen = 'left';
2788
2789
  this._frozen = true;
2789
2790
  }
@@ -2795,9 +2796,11 @@ class FrozenColumn {
2795
2796
  Promise.resolve(null).then(() => this.updateStickyPosition());
2796
2797
  }
2797
2798
  ngAfterViewInit() {
2798
- setTimeout(() => {
2799
- this.updateStickyPosition();
2800
- }, 1000);
2799
+ this.zone.runOutsideAngular(() => {
2800
+ setTimeout(() => {
2801
+ this.updateStickyPosition();
2802
+ }, 1000);
2803
+ });
2801
2804
  }
2802
2805
  updateStickyPosition() {
2803
2806
  if (this._frozen) {
@@ -2828,7 +2831,7 @@ class FrozenColumn {
2828
2831
  }
2829
2832
  }
2830
2833
  }
2831
- FrozenColumn.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FrozenColumn, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2834
+ FrozenColumn.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FrozenColumn, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
2832
2835
  FrozenColumn.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.9", type: FrozenColumn, selector: "[pFrozenColumn]", inputs: { frozen: "frozen", alignFrozen: "alignFrozen" }, host: { properties: { "class.p-frozen-column": "frozen" }, classAttribute: "p-element" }, ngImport: i0 });
2833
2836
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FrozenColumn, decorators: [{
2834
2837
  type: Directive,
@@ -2839,7 +2842,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
2839
2842
  '[class.p-frozen-column]': 'frozen'
2840
2843
  }
2841
2844
  }]
2842
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { frozen: [{
2845
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { frozen: [{
2843
2846
  type: Input
2844
2847
  }], alignFrozen: [{
2845
2848
  type: Input