@bizy/core 20.6.8 → 20.6.9
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/fesm2022/bizy-core.mjs +26 -12
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +2 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1631,7 +1631,7 @@ declare class BizyToastService {
|
|
|
1631
1631
|
#private;
|
|
1632
1632
|
static toasts: Array<{
|
|
1633
1633
|
ref: DialogRef<BizyToastWrapperComponent>;
|
|
1634
|
-
element: HTMLElement;
|
|
1634
|
+
element: HTMLElement | null;
|
|
1635
1635
|
}>;
|
|
1636
1636
|
duration: number;
|
|
1637
1637
|
defaultDebugTitle: string;
|
|
@@ -1683,8 +1683,7 @@ declare class BizyToastWrapperComponent {
|
|
|
1683
1683
|
title: string;
|
|
1684
1684
|
msg: string;
|
|
1685
1685
|
id: string;
|
|
1686
|
-
|
|
1687
|
-
getNativeElement: () => any;
|
|
1686
|
+
constructor();
|
|
1688
1687
|
close(): void;
|
|
1689
1688
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyToastWrapperComponent, never>;
|
|
1690
1689
|
static ɵcmp: i0.ɵɵComponentDeclaration<BizyToastWrapperComponent, "bizy-toast-wrapper", never, {}, {}, never, never, true, never>;
|