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