@festo-ui/angular 9.0.0-dev.749 → 9.0.1-dev.753
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/index.d.ts
CHANGED
|
@@ -616,7 +616,7 @@ interface FngPopoverContentOptions {
|
|
|
616
616
|
interface FngPopoverContentActions {
|
|
617
617
|
close: () => void;
|
|
618
618
|
}
|
|
619
|
-
declare class FngPopoverContentComponent implements
|
|
619
|
+
declare class FngPopoverContentComponent implements OnDestroy {
|
|
620
620
|
private popoverService;
|
|
621
621
|
options: FngPopoverContentOptions;
|
|
622
622
|
close: EventEmitter<FngPopoverCloseEvent>;
|
|
@@ -625,13 +625,10 @@ declare class FngPopoverContentComponent implements AfterViewInit, OnDestroy {
|
|
|
625
625
|
contentRef: ElementRef | undefined;
|
|
626
626
|
showDefault: boolean;
|
|
627
627
|
offScreen: boolean;
|
|
628
|
-
height: number;
|
|
629
|
-
width: number;
|
|
630
628
|
private closeSub;
|
|
631
629
|
private popoverRef;
|
|
632
630
|
constructor(popoverService: FngPopoverService);
|
|
633
631
|
ngOnDestroy(): void;
|
|
634
|
-
ngAfterViewInit(): void;
|
|
635
632
|
show(origin: HTMLElement): void;
|
|
636
633
|
hide(): void;
|
|
637
634
|
static ɵfac: i0.ɵɵFactoryDeclaration<FngPopoverContentComponent, never>;
|
package/package.json
CHANGED