keevo-components 1.7.22 → 1.8.0
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/avatar/avatar.component.mjs +18 -4
- package/esm2022/lib/avatar/kv-avatar.module.mjs +12 -4
- package/esm2022/lib/treetable/treetable.component.mjs +3 -4
- package/fesm2022/keevo-components.mjs +28 -9
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/avatar/avatar.component.d.ts +4 -1
- package/lib/avatar/kv-avatar.module.d.ts +3 -1
- package/package.json +1 -1
|
@@ -8,12 +8,15 @@ export declare class AvatarComponent {
|
|
|
8
8
|
width: number;
|
|
9
9
|
height: number;
|
|
10
10
|
imageUrlChange: EventEmitter<string>;
|
|
11
|
+
removerFotoEvent: EventEmitter<void>;
|
|
12
|
+
existeLogo: boolean;
|
|
11
13
|
btnAlterarFoto: boolean;
|
|
12
14
|
constructor(imageService: ImagensService);
|
|
13
15
|
getImageSrc(): string;
|
|
14
16
|
openFile(): void;
|
|
15
17
|
selectFotoSelecionada(event: any): void;
|
|
18
|
+
removerFoto(): void;
|
|
16
19
|
handleImageError(event: any): void;
|
|
17
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "kv-avatar", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "btnAlterarFoto": { "alias": "btnAlterarFoto"; "required": false; }; }, { "imageUrlChange": "imageUrlChange"; }, never, never, false, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "kv-avatar", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; "borderColor": { "alias": "borderColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "btnAlterarFoto": { "alias": "btnAlterarFoto"; "required": false; }; }, { "imageUrlChange": "imageUrlChange"; "removerFotoEvent": "removerFotoEvent"; }, never, never, false, never>;
|
|
19
22
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./avatar.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "primeng/button";
|
|
5
|
+
import * as i4 from "primeng/fileupload";
|
|
4
6
|
export declare class KvAvatarModule {
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvAvatarModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvAvatarModule, [typeof i1.AvatarComponent], [typeof i2.CommonModule], [typeof i1.AvatarComponent]>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvAvatarModule, [typeof i1.AvatarComponent], [typeof i2.CommonModule, typeof i3.ButtonModule, typeof i4.FileUploadModule], [typeof i1.AvatarComponent]>;
|
|
7
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvAvatarModule>;
|
|
8
10
|
}
|