keevo-components 2.0.63 → 2.0.64
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/api/services/image.cutter.service.mjs +2 -2
- package/esm2022/lib/components/kv-button/kv-button.component.mjs +13 -6
- package/esm2022/lib/components/kv-confirmation-modal/kv-confirmation-modal.component.mjs +1 -1
- package/esm2022/lib/components/kv-content-viewer/kv-content-viewer.component.mjs +1 -1
- package/esm2022/lib/components/kv-file-upload/kv-file-upload.component.mjs +33 -4
- package/esm2022/lib/components/kv-file-upload/kv-file-upload.module.mjs +9 -4
- package/esm2022/lib/components/kv-home-card/kv-home-card.component.mjs +1 -1
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +1 -1
- package/esm2022/lib/components/kv-modal/kv-modal.component.mjs +1 -1
- package/esm2022/lib/components/kv-orgchart/kv-orgchart.component.mjs +1 -1
- package/esm2022/lib/components/kv-page-form/kv-page-form.component.mjs +1 -1
- package/esm2022/lib/components/kv-page-stepper/kv-page-stepper.component.mjs +1 -1
- package/esm2022/lib/components/kv-progress-bar/kv-progress-bar.component.mjs +2 -2
- package/esm2022/lib/components/kv-stepper/kv-stepper.component.mjs +1 -1
- package/esm2022/lib/components/kv-table/kv-table.component.mjs +1 -1
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +3 -3
- package/esm2022/lib/components/kv-table-expandable/kv-table-expandable.component.mjs +1 -1
- package/esm2022/lib/components/kv-tree-table/kv-tree-table.component.mjs +1 -1
- package/esm2022/lib/components/kv-workspace/workspace/kv-workspace.component.mjs +1 -1
- package/fesm2022/keevo-components.mjs +65 -28
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +3 -2
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- package/lib/components/kv-file-upload/kv-file-upload.component.d.ts +4 -1
- package/lib/components/kv-file-upload/kv-file-upload.module.d.ts +3 -1
- package/lib/components/kv-table/kv-table.component.d.ts +1 -1
- package/lib/components/kv-table-expandable/kv-table-expandable.component.d.ts +1 -1
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,6 @@ export declare class KvButtonComponent {
|
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
11
|
icon: import("@angular/core").ModelSignal<string>;
|
|
12
12
|
iconPosition: import("@angular/core").InputSignal<"left" | "right">;
|
|
13
|
-
iconPopupPosition: import("@angular/core").InputSignal<"left" | "right">;
|
|
14
13
|
label: import("@angular/core").InputSignal<string>;
|
|
15
14
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
16
15
|
onClick: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -18,6 +17,8 @@ export declare class KvButtonComponent {
|
|
|
18
17
|
popup: import("@angular/core").InputSignal<boolean>;
|
|
19
18
|
ngOnInit(): void;
|
|
20
19
|
handleClick(event: Event): void;
|
|
20
|
+
onShowMenu(): void;
|
|
21
|
+
onHideMenu(): void;
|
|
21
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvButtonComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvButtonComponent, "kv-button", never, { "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "severity": { "alias": "severity"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; "
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvButtonComponent, "kv-button", never, { "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "severity": { "alias": "severity"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconPosition": { "alias": "iconPosition"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "popup": { "alias": "popup"; "required": false; "isSignal": true; }; }, { "icon": "iconChange"; "onClick": "onClick"; }, never, never, false, never>;
|
|
23
24
|
}
|
|
@@ -8,7 +8,7 @@ export declare class KvButtonPopupComponent extends BaseComponentButton {
|
|
|
8
8
|
items: MenuItem[];
|
|
9
9
|
classBtn: string;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
|
-
type: import("@angular/core").InputSignal<"
|
|
11
|
+
type: import("@angular/core").InputSignal<"text" | "outline" | "normal">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -12,6 +12,7 @@ export declare class KvFileUploadComponent {
|
|
|
12
12
|
validFileTypes: string[];
|
|
13
13
|
tamanhoMaximoPermitido: string;
|
|
14
14
|
includeOfficeTypes: boolean;
|
|
15
|
+
maxSizeFile: import("@angular/core").InputSignal<number>;
|
|
15
16
|
fileEmit: EventEmitter<any>;
|
|
16
17
|
removeFileEmit: EventEmitter<any>;
|
|
17
18
|
fileInput: ElementRef;
|
|
@@ -19,6 +20,8 @@ export declare class KvFileUploadComponent {
|
|
|
19
20
|
constructor(notificationService: NotificationService);
|
|
20
21
|
onFileSelected(event: any): void;
|
|
21
22
|
deleteFile(): void;
|
|
23
|
+
progressValue: import("@angular/core").Signal<(bytes: any) => number>;
|
|
24
|
+
returnProgressLabel: import("@angular/core").Signal<(bytes: any) => string>;
|
|
22
25
|
formatBytes(bytes: any, decimals?: number): string;
|
|
23
26
|
addDragOverClass(event: DragEvent): void;
|
|
24
27
|
removeDragOverClass(event: DragEvent): void;
|
|
@@ -28,5 +31,5 @@ export declare class KvFileUploadComponent {
|
|
|
28
31
|
onDrop(event: DragEvent): void;
|
|
29
32
|
setAccept(): string;
|
|
30
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvFileUploadComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvFileUploadComponent, "kv-file-upload", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "widthComponent": { "alias": "widthComponent"; "required": false; }; "heightComponent": { "alias": "heightComponent"; "required": false; }; "description": { "alias": "description"; "required": false; }; "validFileTypes": { "alias": "validFileTypes"; "required": false; }; "tamanhoMaximoPermitido": { "alias": "tamanhoMaximoPermitido"; "required": false; }; "includeOfficeTypes": { "alias": "includeOfficeTypes"; "required": false; }; }, { "fileEmit": "fileEmit"; "removeFileEmit": "removeFileEmit"; }, never, never, false, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvFileUploadComponent, "kv-file-upload", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "widthComponent": { "alias": "widthComponent"; "required": false; }; "heightComponent": { "alias": "heightComponent"; "required": false; }; "description": { "alias": "description"; "required": false; }; "validFileTypes": { "alias": "validFileTypes"; "required": false; }; "tamanhoMaximoPermitido": { "alias": "tamanhoMaximoPermitido"; "required": false; }; "includeOfficeTypes": { "alias": "includeOfficeTypes"; "required": false; }; "maxSizeFile": { "alias": "maxSizeFile"; "required": false; "isSignal": true; }; }, { "fileEmit": "fileEmit"; "removeFileEmit": "removeFileEmit"; }, never, never, false, never>;
|
|
32
35
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./kv-file-upload.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../kv-progress-bar/kv-progress-bar.module";
|
|
5
|
+
import * as i4 from "primeng/button";
|
|
4
6
|
export declare class KvFileUploadModule {
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvFileUploadModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KvFileUploadModule, [typeof i1.KvFileUploadComponent], [typeof i2.CommonModule], [typeof i1.KvFileUploadComponent]>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KvFileUploadModule, [typeof i1.KvFileUploadComponent], [typeof i2.CommonModule, typeof i3.KvProgressBarModule, typeof i4.ButtonModule], [typeof i1.KvFileUploadComponent]>;
|
|
7
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<KvFileUploadModule>;
|
|
8
10
|
}
|
|
@@ -139,7 +139,7 @@ export declare class KvTableComponent implements OnInit, DoCheck, AfterViewInit
|
|
|
139
139
|
onClickEvent(event: any): void;
|
|
140
140
|
styleSetter(style: string, data: string): void;
|
|
141
141
|
checkMenuFiltro(col: TableConfigColumn): void;
|
|
142
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
142
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
143
143
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
144
144
|
checkHideColumns(): void;
|
|
145
145
|
getCustomTemplate(templatename: string): TemplateRef<any>;
|
|
@@ -68,7 +68,7 @@ export declare class KvTableExpandableComponent implements OnInit, DoCheck {
|
|
|
68
68
|
onGlobalFilter(table: Table, event: Event): void;
|
|
69
69
|
executeCollapsed(): void;
|
|
70
70
|
checkMenuFiltro(col: any): void;
|
|
71
|
-
sortByPosition(): (elem1: any, elem2: any) =>
|
|
71
|
+
sortByPosition(): (elem1: any, elem2: any) => 1 | 0 | -1;
|
|
72
72
|
dinamicDisableColumn(col: TableConfigColumn): boolean;
|
|
73
73
|
dinamicColumnSet(e: any, col: any): void;
|
|
74
74
|
addColumn(field: string): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class KvTagComponent {
|
|
3
|
-
severity: import("@angular/core").InputSignal<"
|
|
3
|
+
severity: import("@angular/core").InputSignal<"warn" | "info" | "danger" | "success" | "system" | "contrast">;
|
|
4
4
|
border: import("@angular/core").InputSignal<boolean>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvTagComponent, never>;
|
|
6
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvTagComponent, "kv-tag", never, { "severity": { "alias": "severity"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|