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