keevo-components 1.8.200 → 1.8.202
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/esm2022/lib/components/kv-avatar/kv-avatar.component.mjs +21 -7
- package/esm2022/lib/components/kv-button/kv-button.component.mjs +3 -3
- package/esm2022/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.mjs +3 -3
- package/esm2022/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.mjs +8 -5
- package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +3 -3
- package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +3 -14
- package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +11 -11
- package/esm2022/lib/components/kv-page-form/kv-page-form.module.mjs +5 -2
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +4 -1
- package/fesm2022/keevo-components.mjs +46 -33
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-avatar/kv-avatar.component.d.ts +4 -1
- package/lib/components/kv-filter-fieldset/kv-filter-fieldset.component.d.ts +2 -1
- package/lib/components/kv-modal/kv-modal.component.d.ts +1 -3
- package/lib/components/kv-page-form/kv-page-form.component.d.ts +3 -0
- package/lib/components/kv-page-form/kv-page-form.module.d.ts +2 -1
- package/lib/components/kv-table/kv-table.component.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ImagensService } from '../../api/services/imagens.service';
|
|
3
|
+
import { NotificationService } from '../../api/services/notification.service';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class KvAvatarComponent {
|
|
5
6
|
imageService: ImagensService;
|
|
7
|
+
private notificationService;
|
|
6
8
|
imageUrl: string;
|
|
7
9
|
borderColor: string;
|
|
8
10
|
width: number;
|
|
@@ -11,11 +13,12 @@ export declare class KvAvatarComponent {
|
|
|
11
13
|
removerFotoEvent: EventEmitter<void>;
|
|
12
14
|
existeLogo: boolean;
|
|
13
15
|
btnAlterarFoto: boolean;
|
|
14
|
-
constructor(imageService: ImagensService);
|
|
16
|
+
constructor(imageService: ImagensService, notificationService: NotificationService);
|
|
15
17
|
getImageSrc(): string;
|
|
16
18
|
openFile(): void;
|
|
17
19
|
selectFotoSelecionada(event: any): void;
|
|
18
20
|
fileInput: ElementRef;
|
|
21
|
+
questionRemoverFoto(): void;
|
|
19
22
|
removerFoto(): void;
|
|
20
23
|
handleImageError(event: any): void;
|
|
21
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvAvatarComponent, never>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class KvFilterFieldsetComponent {
|
|
4
|
+
isExpandable: boolean;
|
|
4
5
|
collapsedEvent: EventEmitter<boolean>;
|
|
5
6
|
isCollapsed: boolean;
|
|
6
7
|
toggleField(): void;
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvFilterFieldsetComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvFilterFieldsetComponent, "kv-filter-fieldset", never, {}, { "collapsedEvent": "collapsedEvent"; }, never, ["*"], false, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvFilterFieldsetComponent, "kv-filter-fieldset", never, { "isExpandable": { "alias": "isExpandable"; "required": false; }; }, { "collapsedEvent": "collapsedEvent"; }, never, ["*"], false, never>;
|
|
9
10
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
1
|
import { DynamicDialogRef } from 'primeng/dynamicdialog';
|
|
3
2
|
import { ActionItem } from '../../../public-api';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
@@ -10,7 +9,6 @@ export declare class KvModalComponent {
|
|
|
10
9
|
*/
|
|
11
10
|
actions: ActionItem[];
|
|
12
11
|
actionsPosition: string;
|
|
13
|
-
subHeader: ElementRef;
|
|
14
12
|
subtitle: string;
|
|
15
13
|
justify_content: string;
|
|
16
14
|
ngOnInit(): void;
|
|
@@ -23,5 +21,5 @@ export declare class KvModalComponent {
|
|
|
23
21
|
setMarginBottom(): void;
|
|
24
22
|
clickExecute(action: ActionItem): void;
|
|
25
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvModalComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvModalComponent, "kv-modal", never, { "actions": { "alias": "actions"; "required": false; }; "actionsPosition": { "alias": "actionsPosition"; "required": false; }; "
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvModalComponent, "kv-modal", never, { "actions": { "alias": "actions"; "required": false; }; "actionsPosition": { "alias": "actionsPosition"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
27
25
|
}
|
|
@@ -46,6 +46,9 @@ export declare class KvPageFormComponent implements OnInit {
|
|
|
46
46
|
iconBtnSecundary: string;
|
|
47
47
|
showBtnSecundary: boolean;
|
|
48
48
|
txtBtnSecundary: string;
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated Essa não é mais utilizado, favor utilizar a propriedade severityBtnSecundary
|
|
51
|
+
*/
|
|
49
52
|
colorBtnSecundary: string;
|
|
50
53
|
/**
|
|
51
54
|
* Botão genérico com opções
|
|
@@ -4,8 +4,9 @@ import * as i2 from "@angular/common";
|
|
|
4
4
|
import * as i3 from "@angular/forms";
|
|
5
5
|
import * as i4 from "../../api/modules/primeng.module";
|
|
6
6
|
import * as i5 from "../kv-buttons/kv-button.module";
|
|
7
|
+
import * as i6 from "../kv-button/kv-button.module";
|
|
7
8
|
export declare class KvPageFormModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvPageFormModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPageFormModule, [typeof i1.KvPageFormComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PrimeNgModule, typeof i5.KvButtonsModule, typeof i3.ReactiveFormsModule], [typeof i1.KvPageFormComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvPageFormModule, [typeof i1.KvPageFormComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PrimeNgModule, typeof i5.KvButtonsModule, typeof i6.KvButtonModule, typeof i3.ReactiveFormsModule], [typeof i1.KvPageFormComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvPageFormModule>;
|
|
11
12
|
}
|
|
@@ -49,6 +49,9 @@ export declare class KvTableComponent implements OnInit, DoCheck {
|
|
|
49
49
|
rows: number;
|
|
50
50
|
tableSize: number;
|
|
51
51
|
filterColumnsBtn: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* @deprecated Essa propriedade não será mais utilizada por esse componente nas próximas versões.
|
|
54
|
+
*/
|
|
52
55
|
filtrosAvancados: boolean;
|
|
53
56
|
scrollHeight: string;
|
|
54
57
|
isTableScrollable: boolean;
|