primeng 17.18.9 → 17.18.10

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.
package/panel/panel.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { AfterContentInit, ElementRef, EventEmitter, QueryList, TemplateRef } from '@angular/core';
1
+ import { AfterContentInit, ChangeDetectorRef, ElementRef, EventEmitter, QueryList, TemplateRef } from '@angular/core';
2
2
  import { BlockableUI, PrimeTemplate } from 'primeng/api';
3
3
  import { Nullable } from 'primeng/ts-helpers';
4
4
  import { PanelAfterToggleEvent, PanelBeforeToggleEvent } from './panel.interface';
@@ -14,6 +14,7 @@ import * as i5 from "primeng/icons/minus";
14
14
  */
15
15
  export declare class Panel implements AfterContentInit, BlockableUI {
16
16
  private el;
17
+ private cd;
17
18
  /**
18
19
  * Defines if content of panel can be expanded and collapsed.
19
20
  * @group Props
@@ -102,7 +103,7 @@ export declare class Panel implements AfterContentInit, BlockableUI {
102
103
  headerIconTemplate: Nullable<TemplateRef<any>>;
103
104
  readonly id: string;
104
105
  get buttonAriaLabel(): string;
105
- constructor(el: ElementRef);
106
+ constructor(el: ElementRef, cd: ChangeDetectorRef);
106
107
  ngAfterContentInit(): void;
107
108
  onHeaderClick(event: MouseEvent): void;
108
109
  onIconClick(event: MouseEvent): void;