keevo-components 1.8.473 → 1.8.475

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,38 +1,34 @@
1
- import { Component, EventEmitter, inject, Input, Output } from '@angular/core';
1
+ import { Component, effect, EventEmitter, inject, input, Input, Output } from '@angular/core';
2
2
  import { FormBuilder } from '@angular/forms';
3
3
  import { BaseComponentCrudForm } from '../../api/base-components/base-component-crud-form';
4
4
  import { KeevoValidators } from '../../../public-api';
5
5
  import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/forms";
7
- import * as i2 from "../kv-inputs/kv-input-password/kv-input-password.component";
8
- import * as i3 from "../kv-inputs/kv-input-text/kv-input-text.component";
6
+ import * as i1 from "primeng/dynamicdialog";
7
+ import * as i2 from "../../api/services/notification.service";
8
+ import * as i3 from "@angular/router";
9
+ import * as i4 from "@angular/forms";
10
+ import * as i5 from "../kv-inputs/kv-input-password/kv-input-password.component";
11
+ import * as i6 from "../kv-inputs/kv-input-text/kv-input-text.component";
9
12
  /**
10
13
  * Componente de login personalizado.
11
14
  * Este componente permite que os usuários façam login no sistema utilizando o estilo padrão dos sistemas Keevo.
12
15
  */
13
16
  export class KvLoginComponent extends BaseComponentCrudForm {
14
- constructor() {
15
- super(...arguments);
17
+ constructor(dialogService, notificationService, activatedRoute, dynamicDialogRef, dynamicDialogConfig, router) {
18
+ super(dialogService, notificationService, activatedRoute, dynamicDialogRef, dynamicDialogConfig, router);
16
19
  /** Evento emitido quando o usuário faz login. */
17
20
  this.onLogin = new EventEmitter();
21
+ this.urlRedirect = input('');
22
+ this.urlRedefinirSenha = 'https://keepass.seg.br/redefinirsenha';
23
+ this.urlCadastrarKeepass = 'https://keepass.seg.br/cadastrar';
18
24
  this.formBuilder = inject(FormBuilder);
25
+ effect(() => {
26
+ if (this.urlRedirect()) {
27
+ this.urlRedefinirSenha = `${this.urlRedefinirSenha}?redirect=${encodeURIComponent(this.urlRedirect())}`;
28
+ this.urlCadastrarKeepass = `${this.urlCadastrarKeepass}?redirect=${encodeURIComponent(this.urlRedirect())}`;
29
+ }
30
+ });
19
31
  }
20
- // constructor(
21
- // dialogService: DialogService,
22
- // notificationService: NotificationService,
23
- // activatedRoute: ActivatedRoute,
24
- // dynamicDialogRef: DynamicDialogRef,
25
- // dynamicDialogConfig: DynamicDialogConfig,
26
- // router: Router) {
27
- // super(
28
- // dialogService,
29
- // notificationService,
30
- // activatedRoute,
31
- // dynamicDialogRef,
32
- // dynamicDialogConfig,
33
- // router
34
- // )
35
- // }
36
32
  configureForm() {
37
33
  this.formGroup = this.formBuilder.group({
38
34
  usuario: ['', KeevoValidators.required('Campo obrigatório')],
@@ -46,13 +42,13 @@ export class KvLoginComponent extends BaseComponentCrudForm {
46
42
  this.onLogin.emit(this.formGroup.value);
47
43
  }
48
44
  }
49
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvLoginComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
50
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: KvLoginComponent, selector: "kv-login", inputs: { Background: "Background", SystemLogo: "SystemLogo", SystemColorPrimary: "SystemColorPrimary", SystemColorSecondary: "SystemColorSecondary" }, outputs: { onLogin: "onLogin" }, usesInheritance: true, ngImport: i0, template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen \"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\" formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n\r\n <!-- LOGO DO SISTEMA -->\r\n <div class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\">\r\n <img\r\n alt=\"Logo do Sistema\"\r\n [style.height.rem]=\"4\"\r\n [src]=\"SystemLogo\"\r\n />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\" grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label\r\n class=\"mt-1 text-sm\"\r\n >\r\n Entrar com KeePass\r\n </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n href=\"https://keepass.seg.br/redefinirsenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label\r\n class=\"text-xs font-normal\"\r\n >\r\n Novo no KeePass?\r\n <a\r\n href=\"https://keepass.seg.br/cadastrar\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n \r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full \"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n ><strong>Login</strong></button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img\r\n src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\"\r\n />\r\n <label\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorSecondary\"\r\n >\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n\r\n</div>", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"], dependencies: [{ kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i2.KvInputPasswordComponent, selector: "kv-input-password", inputs: ["feedback", "mediumRegex", "strongRegex", "toggleMask"] }, { kind: "component", type: i3.KvInputTextComponent, selector: "kv-input-text", inputs: ["textCaptalized"] }] }); }
45
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvLoginComponent, deps: [{ token: i1.DialogService }, { token: i2.NotificationService }, { token: i3.ActivatedRoute }, { token: i1.DynamicDialogRef }, { token: i1.DynamicDialogConfig }, { token: i3.Router }], target: i0.ɵɵFactoryTarget.Component }); }
46
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.3.8", type: KvLoginComponent, selector: "kv-login", inputs: { Background: { classPropertyName: "Background", publicName: "Background", isSignal: false, isRequired: false, transformFunction: null }, SystemLogo: { classPropertyName: "SystemLogo", publicName: "SystemLogo", isSignal: false, isRequired: false, transformFunction: null }, SystemColorPrimary: { classPropertyName: "SystemColorPrimary", publicName: "SystemColorPrimary", isSignal: false, isRequired: false, transformFunction: null }, SystemColorSecondary: { classPropertyName: "SystemColorSecondary", publicName: "SystemColorSecondary", isSignal: false, isRequired: false, transformFunction: null }, urlRedirect: { classPropertyName: "urlRedirect", publicName: "urlRedirect", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onLogin: "onLogin" }, usesInheritance: true, ngImport: i0, template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen\"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\"formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n <!-- LOGO DO SISTEMA -->\r\n <div\r\n class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\"\r\n >\r\n <img alt=\"Logo do Sistema\" [style.height.rem]=\"4\" [src]=\"SystemLogo\" />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\"grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label class=\"mt-1 text-sm\"> Entrar com KeePass </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n [href]=\"urlRedefinirSenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label class=\"text-xs font-normal\">\r\n Novo no KeePass?\r\n <a\r\n [href]=\"urlCadastrarKeepass\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full\"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n >\r\n <strong>Login</strong>\r\n </button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\" />\r\n <label class=\"text-xs\" [style.color]=\"SystemColorSecondary\">\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"], dependencies: [{ kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i5.KvInputPasswordComponent, selector: "kv-input-password", inputs: ["feedback", "mediumRegex", "strongRegex", "toggleMask"] }, { kind: "component", type: i6.KvInputTextComponent, selector: "kv-input-text", inputs: ["textCaptalized"] }] }); }
51
47
  }
52
48
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvLoginComponent, decorators: [{
53
49
  type: Component,
54
- args: [{ selector: 'kv-login', template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen \"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\" formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n\r\n <!-- LOGO DO SISTEMA -->\r\n <div class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\">\r\n <img\r\n alt=\"Logo do Sistema\"\r\n [style.height.rem]=\"4\"\r\n [src]=\"SystemLogo\"\r\n />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\" grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label\r\n class=\"mt-1 text-sm\"\r\n >\r\n Entrar com KeePass\r\n </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n href=\"https://keepass.seg.br/redefinirsenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label\r\n class=\"text-xs font-normal\"\r\n >\r\n Novo no KeePass?\r\n <a\r\n href=\"https://keepass.seg.br/cadastrar\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n \r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full \"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n ><strong>Login</strong></button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img\r\n src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\"\r\n />\r\n <label\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorSecondary\"\r\n >\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n\r\n</div>", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"] }]
55
- }], propDecorators: { Background: [{
50
+ args: [{ selector: 'kv-login', template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen\"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\"formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n <!-- LOGO DO SISTEMA -->\r\n <div\r\n class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\"\r\n >\r\n <img alt=\"Logo do Sistema\" [style.height.rem]=\"4\" [src]=\"SystemLogo\" />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\"grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label class=\"mt-1 text-sm\"> Entrar com KeePass </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n [href]=\"urlRedefinirSenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label class=\"text-xs font-normal\">\r\n Novo no KeePass?\r\n <a\r\n [href]=\"urlCadastrarKeepass\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full\"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n >\r\n <strong>Login</strong>\r\n </button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\" />\r\n <label class=\"text-xs\" [style.color]=\"SystemColorSecondary\">\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"] }]
51
+ }], ctorParameters: () => [{ type: i1.DialogService }, { type: i2.NotificationService }, { type: i3.ActivatedRoute }, { type: i1.DynamicDialogRef }, { type: i1.DynamicDialogConfig }, { type: i3.Router }], propDecorators: { Background: [{
56
52
  type: Input
57
53
  }], SystemLogo: [{
58
54
  type: Input
@@ -63,4 +59,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
63
59
  }], onLogin: [{
64
60
  type: Output
65
61
  }] } });
66
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtbG9naW4uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Vldm8tY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMva3YtbG9naW4va3YtbG9naW4uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Vldm8tY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMva3YtbG9naW4va3YtbG9naW4uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBS0EsT0FBTyxFQUNMLFNBQVMsRUFDVCxZQUFZLEVBQ1osTUFBTSxFQUNOLEtBQUssRUFDTCxNQUFNLEVBQ1AsTUFBTSxlQUFlLENBQUM7QUFRdkIsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBRTdDLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLG9EQUFvRCxDQUFDO0FBRTNGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7Ozs7QUFFdEQ7OztHQUdHO0FBTUgsTUFBTSxPQUFPLGdCQUFpQixTQUFRLHFCQUFxQjtJQUwzRDs7UUFlRSxpREFBaUQ7UUFDdkMsWUFBTyxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBRXZELGdCQUFXLEdBQUcsTUFBTSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0tBbUMzQztJQWpDQyxlQUFlO0lBQ2Ysa0NBQWtDO0lBQ2xDLDhDQUE4QztJQUM5QyxvQ0FBb0M7SUFDcEMsd0NBQXdDO0lBQ3hDLDhDQUE4QztJQUM5QyxzQkFBc0I7SUFDdEIsV0FBVztJQUNYLHFCQUFxQjtJQUNyQiwyQkFBMkI7SUFDM0Isc0JBQXNCO0lBQ3RCLHdCQUF3QjtJQUN4QiwyQkFBMkI7SUFDM0IsYUFBYTtJQUNiLE1BQU07SUFDTixJQUFJO0lBRUssYUFBYTtRQUNwQixJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDO1lBQ3RDLE9BQU8sRUFBRSxDQUFDLEVBQUUsRUFBRSxlQUFlLENBQUMsUUFBUSxDQUFDLG1CQUFtQixDQUFDLENBQUM7WUFDNUQsS0FBSyxFQUFFLENBQUMsRUFBRSxFQUFFLGVBQWUsQ0FBQyxRQUFRLENBQUMsbUJBQW1CLENBQUMsQ0FBQztTQUMzRCxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRVEsUUFBUSxDQUFDLEVBQU87SUFFekIsQ0FBQztJQUVRLElBQUk7UUFDWCxJQUFJLElBQUksQ0FBQyxZQUFZLEVBQUUsRUFBRSxDQUFDO1lBQ3hCLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLENBQUM7UUFDMUMsQ0FBQztJQUNILENBQUM7OEdBL0NVLGdCQUFnQjtrR0FBaEIsZ0JBQWdCLGdRQ2xDN0IsNDlIQW9ITTs7MkZEbEZPLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDRSxVQUFVOzhCQU9YLFVBQVU7c0JBQWxCLEtBQUs7Z0JBRUcsVUFBVTtzQkFBbEIsS0FBSztnQkFFRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBRUcsb0JBQW9CO3NCQUE1QixLQUFLO2dCQUVJLE9BQU87c0JBQWhCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xyXG4gIEFjdGl2YXRlZFJvdXRlLFxyXG4gIFJvdXRlclxyXG59IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcblxyXG5pbXBvcnQge1xyXG4gIENvbXBvbmVudCxcclxuICBFdmVudEVtaXR0ZXIsXHJcbiAgaW5qZWN0LFxyXG4gIElucHV0LFxyXG4gIE91dHB1dFxyXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuaW1wb3J0IHtcclxuICBEaWFsb2dTZXJ2aWNlLFxyXG4gIER5bmFtaWNEaWFsb2dDb25maWcsXHJcbiAgRHluYW1pY0RpYWxvZ1JlZlxyXG59IGZyb20gJ3ByaW1lbmcvZHluYW1pY2RpYWxvZyc7XHJcblxyXG5pbXBvcnQgeyBGb3JtQnVpbGRlciB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcclxuXHJcbmltcG9ydCB7IEJhc2VDb21wb25lbnRDcnVkRm9ybSB9IGZyb20gJy4uLy4uL2FwaS9iYXNlLWNvbXBvbmVudHMvYmFzZS1jb21wb25lbnQtY3J1ZC1mb3JtJztcclxuaW1wb3J0IHsgTm90aWZpY2F0aW9uU2VydmljZSB9IGZyb20gJy4uLy4uL2FwaS9zZXJ2aWNlcy9ub3RpZmljYXRpb24uc2VydmljZSc7XHJcbmltcG9ydCB7IEtlZXZvVmFsaWRhdG9ycyB9IGZyb20gJy4uLy4uLy4uL3B1YmxpYy1hcGknO1xyXG5cclxuLyoqXHJcbiAqIENvbXBvbmVudGUgZGUgbG9naW4gcGVyc29uYWxpemFkby5cclxuICogRXN0ZSBjb21wb25lbnRlIHBlcm1pdGUgcXVlIG9zIHVzdcOhcmlvcyBmYcOnYW0gbG9naW4gbm8gc2lzdGVtYSB1dGlsaXphbmRvIG8gZXN0aWxvIHBhZHLDo28gZG9zIHNpc3RlbWFzIEtlZXZvLlxyXG4gKi9cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdrdi1sb2dpbicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2t2LWxvZ2luLmNvbXBvbmVudC5odG1sJyxcclxuICBzdHlsZVVybHM6IFsnLi9rdi1sb2dpbi5jb21wb25lbnQuc2NzcyddXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBLdkxvZ2luQ29tcG9uZW50IGV4dGVuZHMgQmFzZUNvbXBvbmVudENydWRGb3JtIHtcclxuXHJcbiAgLyoqIFVSTCBkYSBpbWFnZW0gZGUgZnVuZG8gZG8gY29tcG9uZW50ZS4gKi9cclxuICBASW5wdXQoKSBCYWNrZ3JvdW5kITogYW55O1xyXG4gIC8qKiBVUkwgZG8gbG9nbyBkbyBzaXN0ZW1hLiAqL1xyXG4gIEBJbnB1dCgpIFN5c3RlbUxvZ28hOiBhbnk7XHJcbiAgLyoqIENvciBwcmltw6FyaWEgZG8gc2lzdGVtYS4gKi9cclxuICBASW5wdXQoKSBTeXN0ZW1Db2xvclByaW1hcnkhOiBzdHJpbmc7XHJcbiAgLyoqIENvciBzZWN1bmTDoXJpYSBkbyBzaXN0ZW1hLiAqL1xyXG4gIEBJbnB1dCgpIFN5c3RlbUNvbG9yU2Vjb25kYXJ5ITogc3RyaW5nO1xyXG4gIC8qKiBFdmVudG8gZW1pdGlkbyBxdWFuZG8gbyB1c3XDoXJpbyBmYXogbG9naW4uICovXHJcbiAgQE91dHB1dCgpIG9uTG9naW46IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XHJcblxyXG4gIHByaXZhdGUgZm9ybUJ1aWxkZXIgPSBpbmplY3QoRm9ybUJ1aWxkZXIpO1xyXG5cclxuICAvLyBjb25zdHJ1Y3RvcihcclxuICAvLyAgIGRpYWxvZ1NlcnZpY2U6IERpYWxvZ1NlcnZpY2UsXHJcbiAgLy8gICBub3RpZmljYXRpb25TZXJ2aWNlOiBOb3RpZmljYXRpb25TZXJ2aWNlLFxyXG4gIC8vICAgYWN0aXZhdGVkUm91dGU6IEFjdGl2YXRlZFJvdXRlLFxyXG4gIC8vICAgZHluYW1pY0RpYWxvZ1JlZjogRHluYW1pY0RpYWxvZ1JlZixcclxuICAvLyAgIGR5bmFtaWNEaWFsb2dDb25maWc6IER5bmFtaWNEaWFsb2dDb25maWcsXHJcbiAgLy8gICByb3V0ZXI6IFJvdXRlcikge1xyXG4gIC8vICAgc3VwZXIoXHJcbiAgLy8gICAgIGRpYWxvZ1NlcnZpY2UsXHJcbiAgLy8gICAgIG5vdGlmaWNhdGlvblNlcnZpY2UsXHJcbiAgLy8gICAgIGFjdGl2YXRlZFJvdXRlLFxyXG4gIC8vICAgICBkeW5hbWljRGlhbG9nUmVmLFxyXG4gIC8vICAgICBkeW5hbWljRGlhbG9nQ29uZmlnLFxyXG4gIC8vICAgICByb3V0ZXJcclxuICAvLyAgIClcclxuICAvLyB9XHJcblxyXG4gIG92ZXJyaWRlIGNvbmZpZ3VyZUZvcm0oKTogdm9pZCB7XHJcbiAgICB0aGlzLmZvcm1Hcm91cCA9IHRoaXMuZm9ybUJ1aWxkZXIuZ3JvdXAoe1xyXG4gICAgICB1c3VhcmlvOiBbJycsIEtlZXZvVmFsaWRhdG9ycy5yZXF1aXJlZCgnQ2FtcG8gb2JyaWdhdMOzcmlvJyldLFxyXG4gICAgICBzZW5oYTogWycnLCBLZWV2b1ZhbGlkYXRvcnMucmVxdWlyZWQoJ0NhbXBvIG9icmlnYXTDs3JpbycpXVxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBvdmVycmlkZSBsb2FkRm9ybShpZDogYW55KTogdm9pZCB7XHJcblxyXG4gIH1cclxuXHJcbiAgb3ZlcnJpZGUgc2F2ZSgpOiB2b2lkIHtcclxuICAgIGlmICh0aGlzLnZhbGlkYXRlRm9ybSgpKSB7XHJcbiAgICAgIHRoaXMub25Mb2dpbi5lbWl0KHRoaXMuZm9ybUdyb3VwLnZhbHVlKTtcclxuICAgIH1cclxuICB9XHJcbn1cclxuIiwiPGRpdlxyXG4gICAgaWQ9XCJrdkxvZ2luLWNvbnRhaW5lclwiXHJcbiAgICBjbGFzcz1cImZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXIgZmxleC1jb2x1bW4gaC1zY3JlZW4gXCJcclxuICAgIFtzdHlsZS5iYWNrZ3JvdW5kLWltYWdlXT1cIid1cmwoJyArIEJhY2tncm91bmQgKyAnKSdcIlxyXG4+XHJcblxyXG4gICAgPCEtLSBDQVJEIFBSSU5DSVBBTCAtLT5cclxuICAgIDxkaXZcclxuICAgICAgICBbZm9ybUdyb3VwXT1cIiBmb3JtR3JvdXBcIlxyXG4gICAgICAgIGlkPVwia3ZMb2dpbi1jYXJkXCJcclxuICAgICAgICBjbGFzcz1cImZsZXggZmxleC1jb2x1bW4gYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1iZXR3ZWVuIGJnLXdoaXRlIGJvcmRlci1yb3VuZC14bFwiXHJcbiAgICAgICAgW3N0eWxlLndpZHRoLnJlbV09XCIyMFwiXHJcbiAgICAgICAgW3N0eWxlLmhlaWdodC5yZW1dPVwiMjhcIlxyXG4gICAgICAgIChrZXlkb3duLmVudGVyKT1cInNhdmUoKVwiXHJcbiAgICA+XHJcblxyXG4gICAgICAgIDwhLS0gTE9HTyBETyBTSVNURU1BIC0tPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJmbGV4IGZsZXgtcm93IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIHAtMyBtdC0yXCI+XHJcbiAgICAgICAgICAgIDxpbWdcclxuICAgICAgICAgICAgICAgIGFsdD1cIkxvZ28gZG8gU2lzdGVtYVwiXHJcbiAgICAgICAgICAgICAgICBbc3R5bGUuaGVpZ2h0LnJlbV09XCI0XCJcclxuICAgICAgICAgICAgICAgIFtzcmNdPVwiU3lzdGVtTG9nb1wiXHJcbiAgICAgICAgICAgIC8+XHJcbiAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgICAgIDwhLS0gSU5GT1JNQcOHw5VFUyBDRU5UUkFJUyAtLT5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwiIGdyaWQgZm9ybWdyaWQgcC1mbHVpZCBnYXAtMiBwLTMgcGItMFwiPlxyXG5cclxuICAgICAgICAgICAgPGRpdlxyXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJtYi0yIHctZnVsbCBmbGV4IGZsZXgtcm93IGFsaWduLWl0ZW1zLWNlbnRlciBqdXN0aWZ5LWNvbnRlbnQtc3JhcnQgZ2FwLTEgZm9udC1tZWRpdW1cIlxyXG4gICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICA8aW1nXHJcbiAgICAgICAgICAgICAgICAgICAgW3N0eWxlLmhlaWdodC5yZW1dPVwiMS41XCJcclxuICAgICAgICAgICAgICAgICAgICBjbGFzcz1cIm1sLTJcIlxyXG4gICAgICAgICAgICAgICAgICAgIGFsdD1cImtlZXBhc3NcIlxyXG4gICAgICAgICAgICAgICAgICAgIHNyYz1cImh0dHBzOi8vd29yay1hc3NldHMua2Vldm8uY29tLmJyL2ltZy9pY29uZS1rZWVwYXNzLXByZXRvLnBuZ1wiXHJcbiAgICAgICAgICAgICAgICAvPlxyXG4gICAgICAgICAgICAgICAgPGxhYmVsXHJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJtdC0xIHRleHQtc21cIlxyXG4gICAgICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICAgICAgICAgIEVudHJhciBjb20gS2VlUGFzc1xyXG4gICAgICAgICAgICAgICAgPC9sYWJlbD5cclxuICAgICAgICAgICAgPC9kaXY+XHJcblxyXG4gICAgICAgICAgICA8a3YtaW5wdXQtdGV4dFxyXG4gICAgICAgICAgICAgICAgY29tcG9uZW50SWQ9XCJ1c3VhcmlvXCJcclxuICAgICAgICAgICAgICAgIGxhYmVsPVwiQ1BGIG91IGUtbWFpbFwiXHJcbiAgICAgICAgICAgICAgICBmb3JtQ29udHJvbE5hbWU9XCJ1c3VhcmlvXCJcclxuICAgICAgICAgICAgICAgIGNsYXNzPVwiZmllbGQgY29sLTEyXCJcclxuICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICA8L2t2LWlucHV0LXRleHQ+XHJcblxyXG4gICAgICAgICAgICA8a3YtaW5wdXQtcGFzc3dvcmRcclxuICAgICAgICAgICAgICAgIGNvbXBvbmVudElkPVwic2VuaGFcIlxyXG4gICAgICAgICAgICAgICAgbGFiZWw9XCJTZW5oYVwiXHJcbiAgICAgICAgICAgICAgICBbdG9nZ2xlTWFza109XCJ0cnVlXCJcclxuICAgICAgICAgICAgICAgIGZvcm1Db250cm9sTmFtZT1cInNlbmhhXCJcclxuICAgICAgICAgICAgICAgIFtyZXF1aXJlZF09XCJ0cnVlXCJcclxuICAgICAgICAgICAgICAgIGNsYXNzPVwiZmllbGQgY29sLTEyXCJcclxuICAgICAgICAgICAgPlxyXG4gICAgICAgICAgICA8L2t2LWlucHV0LXBhc3N3b3JkPlxyXG5cclxuICAgICAgICAgICAgPGRpdlxyXG4gICAgICAgICAgICAgICAgY2xhc3M9XCJmbGV4IHctZnVsbCBqdXN0aWZ5LWNvbnRlbnQtZW5kIG1iLTIgaC0yXCJcclxuICAgICAgICAgICAgICAgIGlkPVwia3ZMb2dpbi1lc3F1ZWNldS1zZW5oYVwiXHJcbiAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgIDxhXHJcbiAgICAgICAgICAgICAgICAgICAgaHJlZj1cImh0dHBzOi8va2VlcGFzcy5zZWcuYnIvcmVkZWZpbmlyc2VuaGFcIlxyXG4gICAgICAgICAgICAgICAgICAgIHRhcmdldD1cIl9ibGFua1wiXHJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0ZXh0LXhzXCJcclxuICAgICAgICAgICAgICAgICAgICBbc3R5bGUuY29sb3JdPVwiU3lzdGVtQ29sb3JQcmltYXJ5XCJcclxuICAgICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgICAgICBFc3F1ZWNldSBhIHNlbmhhP1xyXG4gICAgICAgICAgICAgICAgPC9hPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuXHJcbiAgICAgICAgICAgIDxkaXYgaWQ9XCJrdkxvZ2luLWNhZGFzdHJvXCIgY2xhc3M9XCJmbGV4IHctZnVsbCBqdXN0aWZ5LWNvbnRlbnQtY2VudGVyIGgtMlwiPlxyXG4gICAgICAgICAgICAgICAgPGxhYmVsXHJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0ZXh0LXhzIGZvbnQtbm9ybWFsXCJcclxuICAgICAgICAgICAgICAgID5cclxuICAgICAgICAgICAgICAgICAgICBOb3ZvIG5vIEtlZVBhc3M/XHJcbiAgICAgICAgICAgICAgICAgICAgPGFcclxuICAgICAgICAgICAgICAgICAgICAgICAgaHJlZj1cImh0dHBzOi8va2VlcGFzcy5zZWcuYnIvY2FkYXN0cmFyXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgdGFyZ2V0PVwiX2JsYW5rXCJcclxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJ0ZXh0LXhzIG0tMCBwLTBcIlxyXG4gICAgICAgICAgICAgICAgICAgICAgICBbc3R5bGUuY29sb3JdPVwiU3lzdGVtQ29sb3JQcmltYXJ5XCJcclxuICAgICAgICAgICAgICAgICAgICA+XHJcbiAgICAgICAgICAgICAgICAgICAgICAgIENhZGFzdHJlLXNlLlxyXG4gICAgICAgICAgICAgICAgICAgIDwvYT5cclxuICAgICAgICAgICAgICAgIDwvbGFiZWw+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgXHJcblxyXG4gICAgICAgIDxidXR0b25cclxuICAgICAgICAgICAgaWQ9XCJrdkxvZ2luLWxvZ2luLWJ1dHRvblwiXHJcbiAgICAgICAgICAgIFtzdHlsZS5iYWNrZ3JvdW5kLWNvbG9yXT1cIlN5c3RlbUNvbG9yUHJpbWFyeVwiXHJcbiAgICAgICAgICAgIFtzdHlsZS5jb2xvcl09XCInd2hpdGUnXCJcclxuICAgICAgICAgICAgY2xhc3M9XCJ3LWZ1bGwgXCJcclxuICAgICAgICAgICAgKGNsaWNrKT1cInNhdmUoKVwiXHJcbiAgICAgICAgICAgIFtzdHlsZS5oZWlnaHQucHhdPVwiNTBcIlxyXG4gICAgICAgID48c3Ryb25nPkxvZ2luPC9zdHJvbmc+PC9idXR0b24+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgICA8ZGl2IGNsYXNzPVwibG9nby1rZWV2b1wiPlxyXG4gICAgICAgIDxpbWdcclxuICAgICAgICAgICAgc3JjPVwiaHR0cHM6Ly93b3JrLWFzc2V0cy5rZWV2by5jb20uYnIvaW1nL2tlZXZvLWxvZ28tdGVtcC5wbmdcIlxyXG4gICAgICAgIC8+XHJcbiAgICAgICAgPGxhYmVsXHJcbiAgICAgICAgICAgIGNsYXNzPVwidGV4dC14c1wiXHJcbiAgICAgICAgICAgIFtzdHlsZS5jb2xvcl09XCJTeXN0ZW1Db2xvclNlY29uZGFyeVwiXHJcbiAgICAgICAgPlxyXG4gICAgICAgICAgICBDb3B5cmlnaHQgwqkgMjAyNCAtIEtlZXZvIEx0ZGEgVG9kb3Mgb3MgZGlyZWl0b3MgcmVzZXJ2YWRvcy5cclxuICAgICAgICA8L2xhYmVsPlxyXG4gICAgPC9kaXY+XHJcblxyXG48L2Rpdj4iXX0=
62
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia3YtbG9naW4uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Vldm8tY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMva3YtbG9naW4va3YtbG9naW4uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMva2Vldm8tY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMva3YtbG9naW4va3YtbG9naW4uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBS0EsT0FBTyxFQUNMLFNBQVMsRUFDVCxNQUFNLEVBQ04sWUFBWSxFQUNaLE1BQU0sRUFDTixLQUFLLEVBQ0wsS0FBSyxFQUNMLE1BQU0sRUFDUCxNQUFNLGVBQWUsQ0FBQztBQVF2QixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFN0MsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sb0RBQW9ELENBQUM7QUFFM0YsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDOzs7Ozs7OztBQUV0RDs7O0dBR0c7QUFNSCxNQUFNLE9BQU8sZ0JBQWlCLFNBQVEscUJBQXFCO0lBb0J6RCxZQUNFLGFBQTRCLEVBQzVCLG1CQUF3QyxFQUN4QyxjQUE4QixFQUM5QixnQkFBa0MsRUFDbEMsbUJBQXdDLEVBQ3hDLE1BQWM7UUFDZCxLQUFLLENBQ0gsYUFBYSxFQUNiLG1CQUFtQixFQUNuQixjQUFjLEVBQ2QsZ0JBQWdCLEVBQ2hCLG1CQUFtQixFQUNuQixNQUFNLENBQ1AsQ0FBQTtRQXhCSCxpREFBaUQ7UUFDdkMsWUFBTyxHQUFzQixJQUFJLFlBQVksRUFBTyxDQUFDO1FBRS9ELGdCQUFXLEdBQUcsS0FBSyxDQUFTLEVBQUUsQ0FBQyxDQUFDO1FBRWhDLHNCQUFpQixHQUFHLHVDQUF1QyxDQUFDO1FBQzVELHdCQUFtQixHQUFHLGtDQUFrQyxDQUFDO1FBRWpELGdCQUFXLEdBQUcsTUFBTSxDQUFDLFdBQVcsQ0FBQyxDQUFDO1FBa0J4QyxNQUFNLENBQUMsR0FBRyxFQUFFO1lBQ1YsSUFBSSxJQUFJLENBQUMsV0FBVyxFQUFFLEVBQUUsQ0FBQztnQkFDdkIsSUFBSSxDQUFDLGlCQUFpQixHQUFHLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixhQUFhLGtCQUFrQixDQUFDLElBQUksQ0FBQyxXQUFXLEVBQUUsQ0FBQyxFQUFFLENBQUM7Z0JBQ3hHLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxHQUFHLElBQUksQ0FBQyxtQkFBbUIsYUFBYSxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUMsRUFBRSxDQUFDO1lBQzlHLENBQUM7UUFDSCxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFUSxhQUFhO1FBQ3BCLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUM7WUFDdEMsT0FBTyxFQUFFLENBQUMsRUFBRSxFQUFFLGVBQWUsQ0FBQyxRQUFRLENBQUMsbUJBQW1CLENBQUMsQ0FBQztZQUM1RCxLQUFLLEVBQUUsQ0FBQyxFQUFFLEVBQUUsZUFBZSxDQUFDLFFBQVEsQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDO1NBQzNELENBQUMsQ0FBQztJQUNMLENBQUM7SUFFUSxRQUFRLENBQUMsRUFBTztJQUV6QixDQUFDO0lBRVEsSUFBSTtRQUNYLElBQUksSUFBSSxDQUFDLFlBQVksRUFBRSxFQUFFLENBQUM7WUFDeEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUMxQyxDQUFDO0lBQ0gsQ0FBQzs4R0EzRFUsZ0JBQWdCO2tHQUFoQixnQkFBZ0IsbzFCQ3BDN0IsOG5HQXFHQTs7MkZEakVhLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDRSxVQUFVO3VPQU9YLFVBQVU7c0JBQWxCLEtBQUs7Z0JBRUcsVUFBVTtzQkFBbEIsS0FBSztnQkFFRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBRUcsb0JBQW9CO3NCQUE1QixLQUFLO2dCQUVJLE9BQU87c0JBQWhCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xyXG4gIEFjdGl2YXRlZFJvdXRlLFxyXG4gIFJvdXRlclxyXG59IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XHJcblxyXG5pbXBvcnQge1xyXG4gIENvbXBvbmVudCxcclxuICBlZmZlY3QsXHJcbiAgRXZlbnRFbWl0dGVyLFxyXG4gIGluamVjdCxcclxuICBpbnB1dCxcclxuICBJbnB1dCxcclxuICBPdXRwdXRcclxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbmltcG9ydCB7XHJcbiAgRGlhbG9nU2VydmljZSxcclxuICBEeW5hbWljRGlhbG9nQ29uZmlnLFxyXG4gIER5bmFtaWNEaWFsb2dSZWZcclxufSBmcm9tICdwcmltZW5nL2R5bmFtaWNkaWFsb2cnO1xyXG5cclxuaW1wb3J0IHsgRm9ybUJ1aWxkZXIgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XHJcblxyXG5pbXBvcnQgeyBCYXNlQ29tcG9uZW50Q3J1ZEZvcm0gfSBmcm9tICcuLi8uLi9hcGkvYmFzZS1jb21wb25lbnRzL2Jhc2UtY29tcG9uZW50LWNydWQtZm9ybSc7XHJcbmltcG9ydCB7IE5vdGlmaWNhdGlvblNlcnZpY2UgfSBmcm9tICcuLi8uLi9hcGkvc2VydmljZXMvbm90aWZpY2F0aW9uLnNlcnZpY2UnO1xyXG5pbXBvcnQgeyBLZWV2b1ZhbGlkYXRvcnMgfSBmcm9tICcuLi8uLi8uLi9wdWJsaWMtYXBpJztcclxuXHJcbi8qKlxyXG4gKiBDb21wb25lbnRlIGRlIGxvZ2luIHBlcnNvbmFsaXphZG8uXHJcbiAqIEVzdGUgY29tcG9uZW50ZSBwZXJtaXRlIHF1ZSBvcyB1c3XDoXJpb3MgZmHDp2FtIGxvZ2luIG5vIHNpc3RlbWEgdXRpbGl6YW5kbyBvIGVzdGlsbyBwYWRyw6NvIGRvcyBzaXN0ZW1hcyBLZWV2by5cclxuICovXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAna3YtbG9naW4nLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9rdi1sb2dpbi5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4va3YtbG9naW4uY29tcG9uZW50LnNjc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgS3ZMb2dpbkNvbXBvbmVudCBleHRlbmRzIEJhc2VDb21wb25lbnRDcnVkRm9ybSB7XHJcblxyXG4gIC8qKiBVUkwgZGEgaW1hZ2VtIGRlIGZ1bmRvIGRvIGNvbXBvbmVudGUuICovXHJcbiAgQElucHV0KCkgQmFja2dyb3VuZCE6IGFueTtcclxuICAvKiogVVJMIGRvIGxvZ28gZG8gc2lzdGVtYS4gKi9cclxuICBASW5wdXQoKSBTeXN0ZW1Mb2dvITogYW55O1xyXG4gIC8qKiBDb3IgcHJpbcOhcmlhIGRvIHNpc3RlbWEuICovXHJcbiAgQElucHV0KCkgU3lzdGVtQ29sb3JQcmltYXJ5ITogc3RyaW5nO1xyXG4gIC8qKiBDb3Igc2VjdW5kw6FyaWEgZG8gc2lzdGVtYS4gKi9cclxuICBASW5wdXQoKSBTeXN0ZW1Db2xvclNlY29uZGFyeSE6IHN0cmluZztcclxuICAvKiogRXZlbnRvIGVtaXRpZG8gcXVhbmRvIG8gdXN1w6FyaW8gZmF6IGxvZ2luLiAqL1xyXG4gIEBPdXRwdXQoKSBvbkxvZ2luOiBFdmVudEVtaXR0ZXI8YW55PiA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpO1xyXG5cclxuICB1cmxSZWRpcmVjdCA9IGlucHV0PHN0cmluZz4oJycpO1xyXG5cclxuICB1cmxSZWRlZmluaXJTZW5oYSA9ICdodHRwczovL2tlZXBhc3Muc2VnLmJyL3JlZGVmaW5pcnNlbmhhJztcclxuICB1cmxDYWRhc3RyYXJLZWVwYXNzID0gJ2h0dHBzOi8va2VlcGFzcy5zZWcuYnIvY2FkYXN0cmFyJztcclxuXHJcbiAgcHJpdmF0ZSBmb3JtQnVpbGRlciA9IGluamVjdChGb3JtQnVpbGRlcik7XHJcblxyXG4gIGNvbnN0cnVjdG9yKFxyXG4gICAgZGlhbG9nU2VydmljZTogRGlhbG9nU2VydmljZSxcclxuICAgIG5vdGlmaWNhdGlvblNlcnZpY2U6IE5vdGlmaWNhdGlvblNlcnZpY2UsXHJcbiAgICBhY3RpdmF0ZWRSb3V0ZTogQWN0aXZhdGVkUm91dGUsXHJcbiAgICBkeW5hbWljRGlhbG9nUmVmOiBEeW5hbWljRGlhbG9nUmVmLFxyXG4gICAgZHluYW1pY0RpYWxvZ0NvbmZpZzogRHluYW1pY0RpYWxvZ0NvbmZpZyxcclxuICAgIHJvdXRlcjogUm91dGVyKSB7XHJcbiAgICBzdXBlcihcclxuICAgICAgZGlhbG9nU2VydmljZSxcclxuICAgICAgbm90aWZpY2F0aW9uU2VydmljZSxcclxuICAgICAgYWN0aXZhdGVkUm91dGUsXHJcbiAgICAgIGR5bmFtaWNEaWFsb2dSZWYsXHJcbiAgICAgIGR5bmFtaWNEaWFsb2dDb25maWcsXHJcbiAgICAgIHJvdXRlclxyXG4gICAgKVxyXG5cclxuICAgIGVmZmVjdCgoKSA9PiB7XHJcbiAgICAgIGlmICh0aGlzLnVybFJlZGlyZWN0KCkpIHtcclxuICAgICAgICB0aGlzLnVybFJlZGVmaW5pclNlbmhhID0gYCR7dGhpcy51cmxSZWRlZmluaXJTZW5oYX0/cmVkaXJlY3Q9JHtlbmNvZGVVUklDb21wb25lbnQodGhpcy51cmxSZWRpcmVjdCgpKX1gO1xyXG4gICAgICAgIHRoaXMudXJsQ2FkYXN0cmFyS2VlcGFzcyA9IGAke3RoaXMudXJsQ2FkYXN0cmFyS2VlcGFzc30/cmVkaXJlY3Q9JHtlbmNvZGVVUklDb21wb25lbnQodGhpcy51cmxSZWRpcmVjdCgpKX1gO1xyXG4gICAgICB9IFxyXG4gICAgfSk7XHJcbiAgfVxyXG5cclxuICBvdmVycmlkZSBjb25maWd1cmVGb3JtKCk6IHZvaWQge1xyXG4gICAgdGhpcy5mb3JtR3JvdXAgPSB0aGlzLmZvcm1CdWlsZGVyLmdyb3VwKHtcclxuICAgICAgdXN1YXJpbzogWycnLCBLZWV2b1ZhbGlkYXRvcnMucmVxdWlyZWQoJ0NhbXBvIG9icmlnYXTDs3JpbycpXSxcclxuICAgICAgc2VuaGE6IFsnJywgS2Vldm9WYWxpZGF0b3JzLnJlcXVpcmVkKCdDYW1wbyBvYnJpZ2F0w7NyaW8nKV1cclxuICAgIH0pO1xyXG4gIH1cclxuXHJcbiAgb3ZlcnJpZGUgbG9hZEZvcm0oaWQ6IGFueSk6IHZvaWQge1xyXG5cclxuICB9XHJcblxyXG4gIG92ZXJyaWRlIHNhdmUoKTogdm9pZCB7XHJcbiAgICBpZiAodGhpcy52YWxpZGF0ZUZvcm0oKSkge1xyXG4gICAgICB0aGlzLm9uTG9naW4uZW1pdCh0aGlzLmZvcm1Hcm91cC52YWx1ZSk7XHJcbiAgICB9XHJcbiAgfVxyXG59XHJcbiIsIjxkaXZcclxuICBpZD1cImt2TG9naW4tY29udGFpbmVyXCJcclxuICBjbGFzcz1cImZsZXgganVzdGlmeS1jb250ZW50LWNlbnRlciBhbGlnbi1pdGVtcy1jZW50ZXIgZmxleC1jb2x1bW4gaC1zY3JlZW5cIlxyXG4gIFtzdHlsZS5iYWNrZ3JvdW5kLWltYWdlXT1cIid1cmwoJyArIEJhY2tncm91bmQgKyAnKSdcIlxyXG4+XHJcbiAgPCEtLSBDQVJEIFBSSU5DSVBBTCAtLT5cclxuICA8ZGl2XHJcbiAgICBbZm9ybUdyb3VwXT1cImZvcm1Hcm91cFwiXHJcbiAgICBpZD1cImt2TG9naW4tY2FyZFwiXHJcbiAgICBjbGFzcz1cImZsZXggZmxleC1jb2x1bW4gYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1iZXR3ZWVuIGJnLXdoaXRlIGJvcmRlci1yb3VuZC14bFwiXHJcbiAgICBbc3R5bGUud2lkdGgucmVtXT1cIjIwXCJcclxuICAgIFtzdHlsZS5oZWlnaHQucmVtXT1cIjI4XCJcclxuICAgIChrZXlkb3duLmVudGVyKT1cInNhdmUoKVwiXHJcbiAgPlxyXG4gICAgPCEtLSBMT0dPIERPIFNJU1RFTUEgLS0+XHJcbiAgICA8ZGl2XHJcbiAgICAgIGNsYXNzPVwiZmxleCBmbGV4LXJvdyBhbGlnbi1pdGVtcy1jZW50ZXIganVzdGlmeS1jb250ZW50LWNlbnRlciBwLTMgbXQtMlwiXHJcbiAgICA+XHJcbiAgICAgIDxpbWcgYWx0PVwiTG9nbyBkbyBTaXN0ZW1hXCIgW3N0eWxlLmhlaWdodC5yZW1dPVwiNFwiIFtzcmNdPVwiU3lzdGVtTG9nb1wiIC8+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgICA8IS0tIElORk9STUHDh8OVRVMgQ0VOVFJBSVMgLS0+XHJcbiAgICA8ZGl2IGNsYXNzPVwiZ3JpZCBmb3JtZ3JpZCBwLWZsdWlkIGdhcC0yIHAtMyBwYi0wXCI+XHJcbiAgICAgIDxkaXZcclxuICAgICAgICBjbGFzcz1cIm1iLTIgdy1mdWxsIGZsZXggZmxleC1yb3cgYWxpZ24taXRlbXMtY2VudGVyIGp1c3RpZnktY29udGVudC1zcmFydCBnYXAtMSBmb250LW1lZGl1bVwiXHJcbiAgICAgID5cclxuICAgICAgICA8aW1nXHJcbiAgICAgICAgICBbc3R5bGUuaGVpZ2h0LnJlbV09XCIxLjVcIlxyXG4gICAgICAgICAgY2xhc3M9XCJtbC0yXCJcclxuICAgICAgICAgIGFsdD1cImtlZXBhc3NcIlxyXG4gICAgICAgICAgc3JjPVwiaHR0cHM6Ly93b3JrLWFzc2V0cy5rZWV2by5jb20uYnIvaW1nL2ljb25lLWtlZXBhc3MtcHJldG8ucG5nXCJcclxuICAgICAgICAvPlxyXG4gICAgICAgIDxsYWJlbCBjbGFzcz1cIm10LTEgdGV4dC1zbVwiPiBFbnRyYXIgY29tIEtlZVBhc3MgPC9sYWJlbD5cclxuICAgICAgPC9kaXY+XHJcblxyXG4gICAgICA8a3YtaW5wdXQtdGV4dFxyXG4gICAgICAgIGNvbXBvbmVudElkPVwidXN1YXJpb1wiXHJcbiAgICAgICAgbGFiZWw9XCJDUEYgb3UgZS1tYWlsXCJcclxuICAgICAgICBmb3JtQ29udHJvbE5hbWU9XCJ1c3VhcmlvXCJcclxuICAgICAgICBjbGFzcz1cImZpZWxkIGNvbC0xMlwiXHJcbiAgICAgID5cclxuICAgICAgPC9rdi1pbnB1dC10ZXh0PlxyXG5cclxuICAgICAgPGt2LWlucHV0LXBhc3N3b3JkXHJcbiAgICAgICAgY29tcG9uZW50SWQ9XCJzZW5oYVwiXHJcbiAgICAgICAgbGFiZWw9XCJTZW5oYVwiXHJcbiAgICAgICAgW3RvZ2dsZU1hc2tdPVwidHJ1ZVwiXHJcbiAgICAgICAgZm9ybUNvbnRyb2xOYW1lPVwic2VuaGFcIlxyXG4gICAgICAgIFtyZXF1aXJlZF09XCJ0cnVlXCJcclxuICAgICAgICBjbGFzcz1cImZpZWxkIGNvbC0xMlwiXHJcbiAgICAgID5cclxuICAgICAgPC9rdi1pbnB1dC1wYXNzd29yZD5cclxuXHJcbiAgICAgIDxkaXZcclxuICAgICAgICBjbGFzcz1cImZsZXggdy1mdWxsIGp1c3RpZnktY29udGVudC1lbmQgbWItMiBoLTJcIlxyXG4gICAgICAgIGlkPVwia3ZMb2dpbi1lc3F1ZWNldS1zZW5oYVwiXHJcbiAgICAgID5cclxuICAgICAgICA8YVxyXG4gICAgICAgICAgW2hyZWZdPVwidXJsUmVkZWZpbmlyU2VuaGFcIlxyXG4gICAgICAgICAgdGFyZ2V0PVwiX2JsYW5rXCJcclxuICAgICAgICAgIGNsYXNzPVwidGV4dC14c1wiXHJcbiAgICAgICAgICBbc3R5bGUuY29sb3JdPVwiU3lzdGVtQ29sb3JQcmltYXJ5XCJcclxuICAgICAgICA+XHJcbiAgICAgICAgICBFc3F1ZWNldSBhIHNlbmhhP1xyXG4gICAgICAgIDwvYT5cclxuICAgICAgPC9kaXY+XHJcblxyXG4gICAgICA8ZGl2IGlkPVwia3ZMb2dpbi1jYWRhc3Ryb1wiIGNsYXNzPVwiZmxleCB3LWZ1bGwganVzdGlmeS1jb250ZW50LWNlbnRlciBoLTJcIj5cclxuICAgICAgICA8bGFiZWwgY2xhc3M9XCJ0ZXh0LXhzIGZvbnQtbm9ybWFsXCI+XHJcbiAgICAgICAgICBOb3ZvIG5vIEtlZVBhc3M/XHJcbiAgICAgICAgICA8YVxyXG4gICAgICAgICAgICBbaHJlZl09XCJ1cmxDYWRhc3RyYXJLZWVwYXNzXCJcclxuICAgICAgICAgICAgdGFyZ2V0PVwiX2JsYW5rXCJcclxuICAgICAgICAgICAgY2xhc3M9XCJ0ZXh0LXhzIG0tMCBwLTBcIlxyXG4gICAgICAgICAgICBbc3R5bGUuY29sb3JdPVwiU3lzdGVtQ29sb3JQcmltYXJ5XCJcclxuICAgICAgICAgID5cclxuICAgICAgICAgICAgQ2FkYXN0cmUtc2UuXHJcbiAgICAgICAgICA8L2E+XHJcbiAgICAgICAgPC9sYWJlbD5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuXHJcbiAgICA8YnV0dG9uXHJcbiAgICAgIGlkPVwia3ZMb2dpbi1sb2dpbi1idXR0b25cIlxyXG4gICAgICBbc3R5bGUuYmFja2dyb3VuZC1jb2xvcl09XCJTeXN0ZW1Db2xvclByaW1hcnlcIlxyXG4gICAgICBbc3R5bGUuY29sb3JdPVwiJ3doaXRlJ1wiXHJcbiAgICAgIGNsYXNzPVwidy1mdWxsXCJcclxuICAgICAgKGNsaWNrKT1cInNhdmUoKVwiXHJcbiAgICAgIFtzdHlsZS5oZWlnaHQucHhdPVwiNTBcIlxyXG4gICAgPlxyXG4gICAgICA8c3Ryb25nPkxvZ2luPC9zdHJvbmc+XHJcbiAgICA8L2J1dHRvbj5cclxuICA8L2Rpdj5cclxuXHJcbiAgPGRpdiBjbGFzcz1cImxvZ28ta2Vldm9cIj5cclxuICAgIDxpbWcgc3JjPVwiaHR0cHM6Ly93b3JrLWFzc2V0cy5rZWV2by5jb20uYnIvaW1nL2tlZXZvLWxvZ28tdGVtcC5wbmdcIiAvPlxyXG4gICAgPGxhYmVsIGNsYXNzPVwidGV4dC14c1wiIFtzdHlsZS5jb2xvcl09XCJTeXN0ZW1Db2xvclNlY29uZGFyeVwiPlxyXG4gICAgICBDb3B5cmlnaHQgwqkgMjAyNCAtIEtlZXZvIEx0ZGEgVG9kb3Mgb3MgZGlyZWl0b3MgcmVzZXJ2YWRvcy5cclxuICAgIDwvbGFiZWw+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
@@ -5665,28 +5665,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImpor
5665
5665
  * Este componente permite que os usuários façam login no sistema utilizando o estilo padrão dos sistemas Keevo.
5666
5666
  */
5667
5667
  class KvLoginComponent extends BaseComponentCrudForm {
5668
- constructor() {
5669
- super(...arguments);
5668
+ constructor(dialogService, notificationService, activatedRoute, dynamicDialogRef, dynamicDialogConfig, router) {
5669
+ super(dialogService, notificationService, activatedRoute, dynamicDialogRef, dynamicDialogConfig, router);
5670
5670
  /** Evento emitido quando o usuário faz login. */
5671
5671
  this.onLogin = new EventEmitter();
5672
+ this.urlRedirect = input('');
5673
+ this.urlRedefinirSenha = 'https://keepass.seg.br/redefinirsenha';
5674
+ this.urlCadastrarKeepass = 'https://keepass.seg.br/cadastrar';
5672
5675
  this.formBuilder = inject(FormBuilder);
5676
+ effect(() => {
5677
+ if (this.urlRedirect()) {
5678
+ this.urlRedefinirSenha = `${this.urlRedefinirSenha}?redirect=${encodeURIComponent(this.urlRedirect())}`;
5679
+ this.urlCadastrarKeepass = `${this.urlCadastrarKeepass}?redirect=${encodeURIComponent(this.urlRedirect())}`;
5680
+ }
5681
+ });
5673
5682
  }
5674
- // constructor(
5675
- // dialogService: DialogService,
5676
- // notificationService: NotificationService,
5677
- // activatedRoute: ActivatedRoute,
5678
- // dynamicDialogRef: DynamicDialogRef,
5679
- // dynamicDialogConfig: DynamicDialogConfig,
5680
- // router: Router) {
5681
- // super(
5682
- // dialogService,
5683
- // notificationService,
5684
- // activatedRoute,
5685
- // dynamicDialogRef,
5686
- // dynamicDialogConfig,
5687
- // router
5688
- // )
5689
- // }
5690
5683
  configureForm() {
5691
5684
  this.formGroup = this.formBuilder.group({
5692
5685
  usuario: ['', KeevoValidators.required('Campo obrigatório')],
@@ -5700,13 +5693,13 @@ class KvLoginComponent extends BaseComponentCrudForm {
5700
5693
  this.onLogin.emit(this.formGroup.value);
5701
5694
  }
5702
5695
  }
5703
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvLoginComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
5704
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.8", type: KvLoginComponent, selector: "kv-login", inputs: { Background: "Background", SystemLogo: "SystemLogo", SystemColorPrimary: "SystemColorPrimary", SystemColorSecondary: "SystemColorSecondary" }, outputs: { onLogin: "onLogin" }, usesInheritance: true, ngImport: i0, template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen \"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\" formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n\r\n <!-- LOGO DO SISTEMA -->\r\n <div class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\">\r\n <img\r\n alt=\"Logo do Sistema\"\r\n [style.height.rem]=\"4\"\r\n [src]=\"SystemLogo\"\r\n />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\" grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label\r\n class=\"mt-1 text-sm\"\r\n >\r\n Entrar com KeePass\r\n </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n href=\"https://keepass.seg.br/redefinirsenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label\r\n class=\"text-xs font-normal\"\r\n >\r\n Novo no KeePass?\r\n <a\r\n href=\"https://keepass.seg.br/cadastrar\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n \r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full \"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n ><strong>Login</strong></button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img\r\n src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\"\r\n />\r\n <label\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorSecondary\"\r\n >\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n\r\n</div>", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"], dependencies: [{ kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: KvInputPasswordComponent, selector: "kv-input-password", inputs: ["feedback", "mediumRegex", "strongRegex", "toggleMask"] }, { kind: "component", type: KvInputTextComponent, selector: "kv-input-text", inputs: ["textCaptalized"] }] }); }
5696
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvLoginComponent, deps: [{ token: i1$3.DialogService }, { token: NotificationService }, { token: i3$1.ActivatedRoute }, { token: i1$3.DynamicDialogRef }, { token: i1$3.DynamicDialogConfig }, { token: i3$1.Router }], target: i0.ɵɵFactoryTarget.Component }); }
5697
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "17.3.8", type: KvLoginComponent, selector: "kv-login", inputs: { Background: { classPropertyName: "Background", publicName: "Background", isSignal: false, isRequired: false, transformFunction: null }, SystemLogo: { classPropertyName: "SystemLogo", publicName: "SystemLogo", isSignal: false, isRequired: false, transformFunction: null }, SystemColorPrimary: { classPropertyName: "SystemColorPrimary", publicName: "SystemColorPrimary", isSignal: false, isRequired: false, transformFunction: null }, SystemColorSecondary: { classPropertyName: "SystemColorSecondary", publicName: "SystemColorSecondary", isSignal: false, isRequired: false, transformFunction: null }, urlRedirect: { classPropertyName: "urlRedirect", publicName: "urlRedirect", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onLogin: "onLogin" }, usesInheritance: true, ngImport: i0, template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen\"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\"formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n <!-- LOGO DO SISTEMA -->\r\n <div\r\n class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\"\r\n >\r\n <img alt=\"Logo do Sistema\" [style.height.rem]=\"4\" [src]=\"SystemLogo\" />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\"grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label class=\"mt-1 text-sm\"> Entrar com KeePass </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n [href]=\"urlRedefinirSenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label class=\"text-xs font-normal\">\r\n Novo no KeePass?\r\n <a\r\n [href]=\"urlCadastrarKeepass\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full\"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n >\r\n <strong>Login</strong>\r\n </button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\" />\r\n <label class=\"text-xs\" [style.color]=\"SystemColorSecondary\">\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"], dependencies: [{ kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i2$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i2$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: KvInputPasswordComponent, selector: "kv-input-password", inputs: ["feedback", "mediumRegex", "strongRegex", "toggleMask"] }, { kind: "component", type: KvInputTextComponent, selector: "kv-input-text", inputs: ["textCaptalized"] }] }); }
5705
5698
  }
5706
5699
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.8", ngImport: i0, type: KvLoginComponent, decorators: [{
5707
5700
  type: Component,
5708
- args: [{ selector: 'kv-login', template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen \"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\" formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n\r\n <!-- LOGO DO SISTEMA -->\r\n <div class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\">\r\n <img\r\n alt=\"Logo do Sistema\"\r\n [style.height.rem]=\"4\"\r\n [src]=\"SystemLogo\"\r\n />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\" grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label\r\n class=\"mt-1 text-sm\"\r\n >\r\n Entrar com KeePass\r\n </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n href=\"https://keepass.seg.br/redefinirsenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label\r\n class=\"text-xs font-normal\"\r\n >\r\n Novo no KeePass?\r\n <a\r\n href=\"https://keepass.seg.br/cadastrar\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n \r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full \"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n ><strong>Login</strong></button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img\r\n src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\"\r\n />\r\n <label\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorSecondary\"\r\n >\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n\r\n</div>", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"] }]
5709
- }], propDecorators: { Background: [{
5701
+ args: [{ selector: 'kv-login', template: "<div\r\n id=\"kvLogin-container\"\r\n class=\"flex justify-content-center align-items-center flex-column h-screen\"\r\n [style.background-image]=\"'url(' + Background + ')'\"\r\n>\r\n <!-- CARD PRINCIPAL -->\r\n <div\r\n [formGroup]=\"formGroup\"\r\n id=\"kvLogin-card\"\r\n class=\"flex flex-column align-items-center justify-content-between bg-white border-round-xl\"\r\n [style.width.rem]=\"20\"\r\n [style.height.rem]=\"28\"\r\n (keydown.enter)=\"save()\"\r\n >\r\n <!-- LOGO DO SISTEMA -->\r\n <div\r\n class=\"flex flex-row align-items-center justify-content-center p-3 mt-2\"\r\n >\r\n <img alt=\"Logo do Sistema\" [style.height.rem]=\"4\" [src]=\"SystemLogo\" />\r\n </div>\r\n\r\n <!-- INFORMA\u00C7\u00D5ES CENTRAIS -->\r\n <div class=\"grid formgrid p-fluid gap-2 p-3 pb-0\">\r\n <div\r\n class=\"mb-2 w-full flex flex-row align-items-center justify-content-srart gap-1 font-medium\"\r\n >\r\n <img\r\n [style.height.rem]=\"1.5\"\r\n class=\"ml-2\"\r\n alt=\"keepass\"\r\n src=\"https://work-assets.keevo.com.br/img/icone-keepass-preto.png\"\r\n />\r\n <label class=\"mt-1 text-sm\"> Entrar com KeePass </label>\r\n </div>\r\n\r\n <kv-input-text\r\n componentId=\"usuario\"\r\n label=\"CPF ou e-mail\"\r\n formControlName=\"usuario\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-text>\r\n\r\n <kv-input-password\r\n componentId=\"senha\"\r\n label=\"Senha\"\r\n [toggleMask]=\"true\"\r\n formControlName=\"senha\"\r\n [required]=\"true\"\r\n class=\"field col-12\"\r\n >\r\n </kv-input-password>\r\n\r\n <div\r\n class=\"flex w-full justify-content-end mb-2 h-2\"\r\n id=\"kvLogin-esqueceu-senha\"\r\n >\r\n <a\r\n [href]=\"urlRedefinirSenha\"\r\n target=\"_blank\"\r\n class=\"text-xs\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Esqueceu a senha?\r\n </a>\r\n </div>\r\n\r\n <div id=\"kvLogin-cadastro\" class=\"flex w-full justify-content-center h-2\">\r\n <label class=\"text-xs font-normal\">\r\n Novo no KeePass?\r\n <a\r\n [href]=\"urlCadastrarKeepass\"\r\n target=\"_blank\"\r\n class=\"text-xs m-0 p-0\"\r\n [style.color]=\"SystemColorPrimary\"\r\n >\r\n Cadastre-se.\r\n </a>\r\n </label>\r\n </div>\r\n </div>\r\n\r\n <button\r\n id=\"kvLogin-login-button\"\r\n [style.background-color]=\"SystemColorPrimary\"\r\n [style.color]=\"'white'\"\r\n class=\"w-full\"\r\n (click)=\"save()\"\r\n [style.height.px]=\"50\"\r\n >\r\n <strong>Login</strong>\r\n </button>\r\n </div>\r\n\r\n <div class=\"logo-keevo\">\r\n <img src=\"https://work-assets.keevo.com.br/img/keevo-logo-temp.png\" />\r\n <label class=\"text-xs\" [style.color]=\"SystemColorSecondary\">\r\n Copyright \u00A9 2024 - Keevo Ltda Todos os direitos reservados.\r\n </label>\r\n </div>\r\n</div>\r\n", styles: ["@charset \"UTF-8\";:host{overflow:hidden}#kvLogin-container{font-family:Inter var,Roboto,Arial,Helvetica,sans-serif!important;background:no-repeat center;background-size:cover;padding:20px}#kvLogin-card{box-shadow:#00000059 0 5px 15px}#kvLogin-esqueceu-senha{position:relative;bottom:.5rem;padding-right:10px}#kvLogin-esqueceu-senha a{text-decoration:none;font-weight:500;cursor:pointer;transition:text-shadow .2s ease-in-out}#kvLogin-esqueceu-senha a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-cadastro{margin-bottom:1rem}#kvLogin-cadastro a{text-decoration:none;font-weight:600;cursor:pointer;gap:3px;transition:text-shadow .2s ease-in-out}#kvLogin-cadastro a:hover{text-shadow:0 0 2px rgba(158,158,158,.692)}#kvLogin-login-button{width:100%;height:3rem!important;border-radius:0 0 .5rem .5rem;border:none;cursor:pointer;font-size:14px;transition:all ease-in .2s;-webkit-transition:all ease-in .2s;-moz-transition:all ease-in .2s;-ms-transition:all ease-in .2s;-o-transition:all ease-in .2s}#kvLogin-login-button:hover{opacity:.9}.logo-keevo{text-align:center}.logo-keevo img{height:2rem;width:auto;display:block;margin:0 auto;margin-top:5rem}.logo-keevo label{display:block;margin-top:.5rem}@media (max-height: 700px){.logo-keevo img{margin-top:1rem}#kvLogin-container{padding:10px}#kvLogin-container img{max-width:90%}}\n"] }]
5702
+ }], ctorParameters: () => [{ type: i1$3.DialogService }, { type: NotificationService }, { type: i3$1.ActivatedRoute }, { type: i1$3.DynamicDialogRef }, { type: i1$3.DynamicDialogConfig }, { type: i3$1.Router }], propDecorators: { Background: [{
5710
5703
  type: Input
5711
5704
  }], SystemLogo: [{
5712
5705
  type: Input