@wizishop/angular-components 15.1.135 → 15.1.137
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/angular-components.scss +19 -11
- package/esm2020/lib/components/alert-popup/alert-popup.component.mjs +36 -5
- package/fesm2015/wizishop-angular-components.mjs +36 -4
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +35 -4
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/alert-popup/alert-popup.component.d.ts +8 -2
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.137.tgz +0 -0
- package/wizishop-angular-components-15.1.135.tgz +0 -0
|
@@ -1,19 +1,25 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
2
|
import { AlertPopupConfig } from './alert-popup.service';
|
|
3
|
-
import { OnInit } from '@angular/core';
|
|
3
|
+
import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class AlertPopupComponent implements OnInit {
|
|
5
|
+
export declare class AlertPopupComponent implements OnInit, OnDestroy {
|
|
6
|
+
private elRef;
|
|
7
|
+
private renderer;
|
|
6
8
|
config: AlertPopupConfig;
|
|
7
9
|
/** Subject for notifying the user that the dialog has finished closing. */
|
|
8
10
|
private afterClosedPopup;
|
|
9
11
|
open: boolean;
|
|
10
12
|
private timer;
|
|
13
|
+
private observer;
|
|
14
|
+
constructor(elRef: ElementRef, renderer: Renderer2);
|
|
11
15
|
ngOnInit(): void;
|
|
12
16
|
dismiss(): void;
|
|
13
17
|
/**
|
|
14
18
|
* Gets an observable that is notified when the dialog is finished closing.
|
|
15
19
|
*/
|
|
16
20
|
afterClosed(): Observable<any>;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
private rgbToHex;
|
|
17
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertPopupComponent, never>;
|
|
18
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<AlertPopupComponent, "wac-alert-popup", never, {}, {}, never, never, false, never>;
|
|
19
25
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|