keevo-components 2.0.17 → 2.0.18
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-content-viewer/kv-content-viewer.component.mjs +6 -3
- package/esm2022/lib/components/kv-pick-list/kv-pick-list.component.mjs +48 -9
- package/esm2022/lib/components/kv-table-edit/kv-table-edit.component.mjs +3 -3
- package/fesm2022/keevo-components.mjs +54 -12
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-content-viewer/kv-content-viewer.component.d.ts +2 -1
- package/lib/components/kv-pick-list/kv-pick-list.component.d.ts +2 -0
- package/lib/components/kv-stepper/kv-stepper.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare class KvButtonComponent {
|
|
|
6
6
|
severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary">;
|
|
7
7
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
8
8
|
icon: import("@angular/core").InputSignal<string>;
|
|
9
|
-
iconPosition: import("@angular/core").InputSignal<"
|
|
9
|
+
iconPosition: import("@angular/core").InputSignal<"right" | "left">;
|
|
10
10
|
label: import("@angular/core").InputSignal<string>;
|
|
11
11
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
12
12
|
onClick: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -29,6 +29,7 @@ export declare class KvContentViewerComponent {
|
|
|
29
29
|
indvisualizado: boolean;
|
|
30
30
|
btnTelaCheia: boolean;
|
|
31
31
|
isLoadingSkeleton: boolean;
|
|
32
|
+
borderCardNaoVisualizado: boolean;
|
|
32
33
|
keyVisualizado: string;
|
|
33
34
|
todayDate(): string;
|
|
34
35
|
onScrollHandler: EventEmitter<any>;
|
|
@@ -40,5 +41,5 @@ export declare class KvContentViewerComponent {
|
|
|
40
41
|
ngOnInit(): void;
|
|
41
42
|
scrollHandler($event: Event): void;
|
|
42
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvContentViewerComponent, never>;
|
|
43
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvContentViewerComponent, "kv-content-viewer", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "arquivo": { "alias": "arquivo"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "blob": { "alias": "blob"; "required": false; "isSignal": true; }; "ekpContent": { "alias": "ekpContent"; "required": false; "isSignal": true; }; "extencaoDocumento": { "alias": "extencaoDocumento"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "visualizadorDocumentos": { "alias": "visualizadorDocumentos"; "required": false; }; "cardTemplate": { "alias": "cardTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "noDocumentSelectedTemplate": { "alias": "noDocumentSelectedTemplate"; "required": false; }; "noDocumentListTemplate": { "alias": "noDocumentListTemplate"; "required": false; }; "indvisualizado": { "alias": "indvisualizado"; "required": false; }; "btnTelaCheia": { "alias": "btnTelaCheia"; "required": false; }; "isLoadingSkeleton": { "alias": "isLoadingSkeleton"; "required": false; }; }, { "onScrollHandler": "onScrollHandler"; "onSelectFile": "onSelectFile"; }, never, never, false, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvContentViewerComponent, "kv-content-viewer", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "arquivo": { "alias": "arquivo"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "blob": { "alias": "blob"; "required": false; "isSignal": true; }; "ekpContent": { "alias": "ekpContent"; "required": false; "isSignal": true; }; "extencaoDocumento": { "alias": "extencaoDocumento"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "visualizadorDocumentos": { "alias": "visualizadorDocumentos"; "required": false; }; "cardTemplate": { "alias": "cardTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "noDocumentSelectedTemplate": { "alias": "noDocumentSelectedTemplate"; "required": false; }; "noDocumentListTemplate": { "alias": "noDocumentListTemplate"; "required": false; }; "indvisualizado": { "alias": "indvisualizado"; "required": false; }; "btnTelaCheia": { "alias": "btnTelaCheia"; "required": false; }; "isLoadingSkeleton": { "alias": "isLoadingSkeleton"; "required": false; }; "borderCardNaoVisualizado": { "alias": "borderCardNaoVisualizado"; "required": false; }; }, { "onScrollHandler": "onScrollHandler"; "onSelectFile": "onSelectFile"; }, never, never, false, never>;
|
|
44
45
|
}
|
|
@@ -6,6 +6,7 @@ export declare class KvPickListComponent implements OnInit {
|
|
|
6
6
|
private fb;
|
|
7
7
|
picklist: PickList;
|
|
8
8
|
form: FormGroup;
|
|
9
|
+
ultimoItemSelecionado: any[];
|
|
9
10
|
constructor(fb: FormBuilder);
|
|
10
11
|
itemIdField: string;
|
|
11
12
|
breakpoint: string;
|
|
@@ -41,6 +42,7 @@ export declare class KvPickListComponent implements OnInit {
|
|
|
41
42
|
OnSourceSelect(event: any): void;
|
|
42
43
|
OnTargetSelect(event: any): void;
|
|
43
44
|
onSelectAll(): void;
|
|
45
|
+
onKeyDown(event: any, picklist: any): void;
|
|
44
46
|
selectAllItems(isSelected: boolean): void;
|
|
45
47
|
selectCheckBox(item: any): void;
|
|
46
48
|
isItemSelected(item: any): boolean;
|
|
@@ -5,7 +5,7 @@ export declare class KvStepperComponent {
|
|
|
5
5
|
panels: KvStepperPanel[];
|
|
6
6
|
activeStep: number;
|
|
7
7
|
orientation: import("@angular/core").InputSignal<"vertical" | "horizontal">;
|
|
8
|
-
buttonsAlign: import("@angular/core").InputSignal<"center" | "
|
|
8
|
+
buttonsAlign: import("@angular/core").InputSignal<"center" | "end" | "start">;
|
|
9
9
|
linear: import("@angular/core").InputSignal<boolean>;
|
|
10
10
|
activeStepChange: EventEmitter<number>;
|
|
11
11
|
concluirCallback: EventEmitter<void>;
|