keevo-components 1.8.473 → 1.8.474
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,5 +1,8 @@
|
|
|
1
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
1
2
|
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { DialogService, DynamicDialogConfig, DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
2
4
|
import { BaseComponentCrudForm } from '../../api/base-components/base-component-crud-form';
|
|
5
|
+
import { NotificationService } from '../../api/services/notification.service';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
/**
|
|
5
8
|
* Componente de login personalizado.
|
|
@@ -16,10 +19,14 @@ export declare class KvLoginComponent extends BaseComponentCrudForm {
|
|
|
16
19
|
SystemColorSecondary: string;
|
|
17
20
|
/** Evento emitido quando o usuário faz login. */
|
|
18
21
|
onLogin: EventEmitter<any>;
|
|
22
|
+
urlRedirect: import("@angular/core").InputSignal<string>;
|
|
23
|
+
urlRedefinirSenha: string;
|
|
24
|
+
urlCadastrarKeepass: string;
|
|
19
25
|
private formBuilder;
|
|
26
|
+
constructor(dialogService: DialogService, notificationService: NotificationService, activatedRoute: ActivatedRoute, dynamicDialogRef: DynamicDialogRef, dynamicDialogConfig: DynamicDialogConfig, router: Router);
|
|
20
27
|
configureForm(): void;
|
|
21
28
|
loadForm(id: any): void;
|
|
22
29
|
save(): void;
|
|
23
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvLoginComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvLoginComponent, "kv-login", never, { "Background": { "alias": "Background"; "required": false; }; "SystemLogo": { "alias": "SystemLogo"; "required": false; }; "SystemColorPrimary": { "alias": "SystemColorPrimary"; "required": false; }; "SystemColorSecondary": { "alias": "SystemColorSecondary"; "required": false; }; }, { "onLogin": "onLogin"; }, never, never, false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvLoginComponent, "kv-login", never, { "Background": { "alias": "Background"; "required": false; }; "SystemLogo": { "alias": "SystemLogo"; "required": false; }; "SystemColorPrimary": { "alias": "SystemColorPrimary"; "required": false; }; "SystemColorSecondary": { "alias": "SystemColorSecondary"; "required": false; }; "urlRedirect": { "alias": "urlRedirect"; "required": false; "isSignal": true; }; }, { "onLogin": "onLogin"; }, never, never, false, never>;
|
|
25
32
|
}
|