keevo-components 1.5.154 → 1.5.156
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/lib/api/services/form.service.mjs +3 -21
- package/esm2020/lib/buttons/button-popup/button-popup.component.mjs +4 -3
- package/esm2020/lib/menu/menu.component.mjs +28 -8
- package/esm2020/lib/page-form/page-form.component.mjs +49 -13
- package/fesm2015/keevo-components.mjs +79 -41
- package/fesm2015/keevo-components.mjs.map +1 -1
- package/fesm2020/keevo-components.mjs +79 -41
- package/fesm2020/keevo-components.mjs.map +1 -1
- package/lib/menu/menu.component.d.ts +1 -0
- package/lib/page-form/page-form.component.d.ts +10 -6
- package/package.json +1 -1
|
@@ -61,6 +61,7 @@ export declare class MenuComponent implements OnInit {
|
|
|
61
61
|
expandMenuEvent(): void;
|
|
62
62
|
ajustarHeigthCard(): number;
|
|
63
63
|
verificarPaginaSelecionada(link: any): string;
|
|
64
|
+
retornarTituloBreadCrumbs(str: string): string;
|
|
64
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
65
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "kv-menu", never, { "menuCompleto": "menuCompleto"; "licencas": "licencas"; "licencaSelecionada": "licencaSelecionada"; "logoImage": "logoImage"; "nomeUsuario": "nomeUsuario"; "breadCrumbs": "breadCrumbs"; }, { "licencaChange": "licencaChange"; "gerenciarKeePassEvent": "gerenciarKeePassEvent"; "sairEvent": "sairEvent"; "expandMenuEmit": "expandMenuEmit"; }, never, ["*"], false, never>;
|
|
66
67
|
}
|
|
@@ -12,6 +12,7 @@ export declare class PageFormComponent implements OnInit {
|
|
|
12
12
|
SubTituloForm: string | undefined;
|
|
13
13
|
isSaveLoading: boolean;
|
|
14
14
|
popup: boolean;
|
|
15
|
+
locationUseComponent: 'page' | 'dialog';
|
|
15
16
|
/**
|
|
16
17
|
* Botão cancelar
|
|
17
18
|
*/
|
|
@@ -44,22 +45,25 @@ export declare class PageFormComponent implements OnInit {
|
|
|
44
45
|
*/
|
|
45
46
|
onCancel: EventEmitter<any>;
|
|
46
47
|
constructor(fb: FormBuilder);
|
|
48
|
+
/**
|
|
49
|
+
* Adiciona sub-título à tela
|
|
50
|
+
*/
|
|
51
|
+
addSubTitle(): void;
|
|
47
52
|
ngOnInit(): void;
|
|
48
53
|
/**
|
|
49
54
|
* Dispara o método de cancelamento da tela
|
|
50
55
|
* @param event evento
|
|
51
56
|
*/
|
|
52
57
|
cancel(event: Event): void;
|
|
53
|
-
/**
|
|
54
|
-
* Método para habilitar o sub título da tela
|
|
55
|
-
* @returns True/False
|
|
56
|
-
*/
|
|
57
|
-
enableSubTitle(): boolean;
|
|
58
58
|
/**
|
|
59
59
|
* Dispara o método de salvar da tela
|
|
60
60
|
* @param event evento
|
|
61
61
|
*/
|
|
62
62
|
save(event: Event): void;
|
|
63
|
+
/**
|
|
64
|
+
* Ajusta o tamanho da tela considerando o menu lateral
|
|
65
|
+
*/
|
|
66
|
+
setPageFormContainerAttributes(): void;
|
|
63
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageFormComponent, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageFormComponent, "kv-page-form", never, { "formGroup": "formGroup"; "TituloForm": "TituloForm"; "SubTituloForm": "SubTituloForm"; "isSaveLoading": "isSaveLoading"; "popup": "popup"; "iconBtnCancel": "iconBtnCancel"; "showBtnCancel": "showBtnCancel"; "txtBtnCancel": "txtBtnCancel"; "iconBtnSave": "iconBtnSave"; "showBtnSave": "showBtnSave"; "txtBtnSave": "txtBtnSave"; "actions": "actions"; "iconBtnSaveToogle": "iconBtnSaveToogle"; "showBtnSaveToogle": "showBtnSaveToogle"; "txtBtnSaveToogle": "txtBtnSaveToogle"; "disableBtnSair": "disableBtnSair"; }, { "onSave": "onSave"; "onCancel": "onCancel"; }, never, ["*"], false, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageFormComponent, "kv-page-form", never, { "formGroup": "formGroup"; "TituloForm": "TituloForm"; "SubTituloForm": "SubTituloForm"; "isSaveLoading": "isSaveLoading"; "popup": "popup"; "locationUseComponent": "locationUseComponent"; "iconBtnCancel": "iconBtnCancel"; "showBtnCancel": "showBtnCancel"; "txtBtnCancel": "txtBtnCancel"; "iconBtnSave": "iconBtnSave"; "showBtnSave": "showBtnSave"; "txtBtnSave": "txtBtnSave"; "actions": "actions"; "iconBtnSaveToogle": "iconBtnSaveToogle"; "showBtnSaveToogle": "showBtnSaveToogle"; "txtBtnSaveToogle": "txtBtnSaveToogle"; "disableBtnSair": "disableBtnSair"; }, { "onSave": "onSave"; "onCancel": "onCancel"; }, never, ["*"], false, never>;
|
|
65
69
|
}
|