zek 16.0.5 → 16.0.7
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.
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { AlertService, Toast } from '../../../services/alert.service';
|
|
3
|
+
import { NumberInput } from '../../../components';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ZekToast implements OnInit, OnDestroy {
|
|
5
6
|
private readonly alertService;
|
|
6
|
-
|
|
7
|
+
get delay(): number;
|
|
8
|
+
set delay(v: NumberInput);
|
|
9
|
+
_delay: number;
|
|
7
10
|
icon: boolean;
|
|
8
11
|
toasts: any[];
|
|
9
|
-
private
|
|
10
|
-
private
|
|
12
|
+
private _subscription?;
|
|
13
|
+
private _timeout;
|
|
11
14
|
constructor(alertService: AlertService);
|
|
12
15
|
ngOnInit(): void;
|
|
13
16
|
ngOnDestroy(): void;
|
|
@@ -16,5 +19,5 @@ export declare class ZekToast implements OnInit, OnDestroy {
|
|
|
16
19
|
clearTimeout(): void;
|
|
17
20
|
cssInit(toast: Toast): void;
|
|
18
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<ZekToast, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ZekToast, "zek-toast", never, { "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZekToast, "zek-toast", never, { "delay": { "alias": "delay"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
23
|
}
|