keevo-components 1.8.219 → 1.8.221
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 +2 -2
- package/esm2022/lib/components/kv-home-card/kv-home-card.component.mjs +27 -0
- package/esm2022/lib/components/kv-home-card/kv-home-card.module.mjs +32 -0
- package/esm2022/lib/components/kv-image-upload/kv-image-upload.component.mjs +6 -4
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +3 -3
- package/esm2022/public-api.mjs +6 -1
- package/fesm2022/keevo-components.mjs +58 -8
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-home-card/kv-home-card.component.d.ts +24 -0
- package/lib/components/kv-home-card/kv-home-card.module.d.ts +11 -0
- package/lib/components/kv-image-upload/kv-image-upload.component.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { ActionItem } from '../../api/components/table/action-item';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KvHomeCardComponent {
|
|
5
|
+
/**
|
|
6
|
+
* Titulo do card
|
|
7
|
+
* @type {string}
|
|
8
|
+
*/
|
|
9
|
+
titulo: string;
|
|
10
|
+
/**
|
|
11
|
+
* Aarray de ações exibidas no header do modal. (recomendo no maximo 3)
|
|
12
|
+
* @type {ActionItem[]}
|
|
13
|
+
*/
|
|
14
|
+
headerActions: ActionItem[];
|
|
15
|
+
/**
|
|
16
|
+
* Template que sera exibido do lado do titulo (entre os botões e o titulo)
|
|
17
|
+
* @type {TemplateRef}
|
|
18
|
+
*/
|
|
19
|
+
headerTemplate: TemplateRef<any>;
|
|
20
|
+
borderCalss: any;
|
|
21
|
+
contentOverflow: string;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvHomeCardComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvHomeCardComponent, "kv-home-card", never, { "titulo": { "alias": "titulo"; "required": false; }; "headerActions": { "alias": "headerActions"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "borderCalss": { "alias": "borderCalss"; "required": false; }; "contentOverflow": { "alias": "contentOverflow"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kv-home-card.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../kv-inputs/kv-inputs.module";
|
|
5
|
+
import * as i4 from "../../api/modules/primeng.module";
|
|
6
|
+
import * as i5 from "../kv-button/kv-button.module";
|
|
7
|
+
export declare class KvHomeCardModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvHomeCardModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvHomeCardModule, [typeof i1.KvHomeCardComponent], [typeof i2.CommonModule, typeof i3.KvInputsModule, typeof i4.PrimeNgModule, typeof i5.KvButtonModule], [typeof i1.KvHomeCardComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KvHomeCardModule>;
|
|
11
|
+
}
|
|
@@ -20,5 +20,5 @@ export declare class KvImageUploadComponent {
|
|
|
20
20
|
removeDragOverClass(event: DragEvent): void;
|
|
21
21
|
deleteImage(): void;
|
|
22
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvImageUploadComponent, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvImageUploadComponent, "kv-image-upload", never, { "widthComponent": { "alias": "widthComponent"; "required": false; }; "heightComponent": { "alias": "heightComponent"; "required": false; }; "maxHeightImage": { "alias": "maxHeightImage"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, { "fileEmit": "fileEmit"; }, never, never, false, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvImageUploadComponent, "kv-image-upload", never, { "fileSrc": { "alias": "fileSrc"; "required": false; }; "widthComponent": { "alias": "widthComponent"; "required": false; }; "heightComponent": { "alias": "heightComponent"; "required": false; }; "maxHeightImage": { "alias": "maxHeightImage"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, { "fileEmit": "fileEmit"; }, never, never, false, never>;
|
|
24
24
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -220,3 +220,8 @@ export * from './lib/components/kv-g-icon/kv-g-icon.module';
|
|
|
220
220
|
*/
|
|
221
221
|
export * from './lib/components/kv-file-viewer/kv-file-viewer.component';
|
|
222
222
|
export * from './lib/components/kv-file-viewer/kv-file-viewer.module';
|
|
223
|
+
/**
|
|
224
|
+
* Componentes comuns utilizados no keex
|
|
225
|
+
*/
|
|
226
|
+
export * from './lib/components/kv-home-card/kv-home-card.component';
|
|
227
|
+
export * from './lib/components/kv-home-card/kv-home-card.module';
|