@one-paragon/angular-utilities 0.0.12 → 0.0.13
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/esm2020/utilities/directives/dialog.mjs +13 -5
- package/fesm2015/one-paragon-angular-utilities.mjs +13 -5
- package/fesm2015/one-paragon-angular-utilities.mjs.map +1 -1
- package/fesm2020/one-paragon-angular-utilities.mjs +13 -4
- package/fesm2020/one-paragon-angular-utilities.mjs.map +1 -1
- package/package.json +1 -1
- package/utilities/directives/dialog.d.ts +4 -4
package/package.json
CHANGED
|
@@ -24,7 +24,9 @@ export declare class DialogDirective<T> implements OnDestroy {
|
|
|
24
24
|
private dialog;
|
|
25
25
|
private service;
|
|
26
26
|
opDialogClosed: EventEmitter<boolean>;
|
|
27
|
-
|
|
27
|
+
_dialogConfig: MatDialogConfig<T>;
|
|
28
|
+
set opDialogConfig(config: MatDialogConfig<T>);
|
|
29
|
+
get opDialogConfig(): MatDialogConfig<T>;
|
|
28
30
|
set state(open_close: Observable<T>);
|
|
29
31
|
nativeElement?: HTMLElement;
|
|
30
32
|
dialogRef?: MatDialogRef<any, boolean>;
|
|
@@ -36,9 +38,7 @@ export declare class DialogDirective<T> implements OnDestroy {
|
|
|
36
38
|
initDialog(): void;
|
|
37
39
|
setDialogState(open: boolean): void;
|
|
38
40
|
ngOnDestroy(): void;
|
|
39
|
-
static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is
|
|
40
|
-
$implicit: T;
|
|
41
|
-
};
|
|
41
|
+
static ngTemplateContextGuard<T>(dir: DialogDirective<T>, ctx: any): ctx is DialogViewContext<Exclude<T, false | 0 | '' | null | undefined>>;
|
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogDirective<any>, never>;
|
|
43
43
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DialogDirective<any>, "[opDialog]", never, { "opDialogConfig": "opDialogConfig"; "state": "opDialog"; "nativeElement": "opDialogOrigin"; }, { "opDialogClosed": "opDialogClosed"; }, never>;
|
|
44
44
|
}
|