keevo-components 2.0.101 → 2.0.103
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-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.mjs +3 -3
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +5 -3
- package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.mjs +5 -5
- package/esm2022/lib/components/kv-layout/layout/kv-layout.component.mjs +2 -2
- package/esm2022/lib/components/kv-timeline/kv-timeline.component.mjs +71 -0
- package/esm2022/public-api.mjs +6 -2
- package/fesm2022/keevo-components.mjs +77 -11
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +3 -1
- package/lib/components/kv-stepper/kv-stepper.component.d.ts +1 -1
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/lib/components/kv-timeline/kv-timeline.component.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -1
|
@@ -35,6 +35,8 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
35
35
|
filteredVariables: import("@angular/core").WritableSignal<KvEditorVariavel[]>;
|
|
36
36
|
relatorios: import("@angular/core").InputSignal<KvEditorRelatorio[]>;
|
|
37
37
|
idRelatorioInitial: import("@angular/core").InputSignal<number>;
|
|
38
|
+
printButton: import("@angular/core").InputSignal<boolean>;
|
|
39
|
+
labelEmptyDropdown: import("@angular/core").InputSignal<string>;
|
|
38
40
|
idRelatorioSelected: import("@angular/core").Signal<number>;
|
|
39
41
|
relatorio: import("@angular/core").Signal<KvEditorRelatorio | null>;
|
|
40
42
|
isLoadingPdf: import("@angular/core").Signal<boolean>;
|
|
@@ -60,5 +62,5 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
60
62
|
closeVariablesPanel(): void;
|
|
61
63
|
showInstrucoes(): void;
|
|
62
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvEditorComponent, never>;
|
|
63
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KvEditorComponent, "kv-editor", never, { "canvaHeigth": { "alias": "canvaHeigth"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "relatorios": { "alias": "relatorios"; "required": false; "isSignal": true; }; "idRelatorioInitial": { "alias": "idRelatorioInitial"; "required": false; "isSignal": true; }; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; "outputRaw": "outputRaw"; "outputHtml": "outputHtml"; }, never, never, false, never>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvEditorComponent, "kv-editor", never, { "canvaHeigth": { "alias": "canvaHeigth"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "relatorios": { "alias": "relatorios"; "required": false; "isSignal": true; }; "idRelatorioInitial": { "alias": "idRelatorioInitial"; "required": false; "isSignal": true; }; "printButton": { "alias": "printButton"; "required": false; "isSignal": true; }; "labelEmptyDropdown": { "alias": "labelEmptyDropdown"; "required": false; "isSignal": true; }; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; "outputRaw": "outputRaw"; "outputHtml": "outputHtml"; }, never, never, false, never>;
|
|
64
66
|
}
|
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class KvStepperComponent {
|
|
5
5
|
panels: KvStepperPanel[];
|
|
6
6
|
activeStep: number;
|
|
7
|
-
orientation: import("@angular/core").InputSignal<"
|
|
7
|
+
orientation: import("@angular/core").InputSignal<"horizontal" | "vertical">;
|
|
8
8
|
buttonsAlign: import("@angular/core").InputSignal<"center" | "start" | "end">;
|
|
9
9
|
linear: import("@angular/core").InputSignal<boolean>;
|
|
10
10
|
activeStepChange: EventEmitter<number>;
|
|
@@ -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<"info" | "success" | "warn" | "danger" | "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>;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type TimelineSeverity = 'in_progress' | 'success' | 'cancelled' | 'error' | 'paused' | 'waiting';
|
|
4
|
+
export declare class KvTimelineComponent {
|
|
5
|
+
dataSource: import("@angular/core").InputSignal<any[] | undefined>;
|
|
6
|
+
getSeverityFn: (item: any) => TimelineSeverity;
|
|
7
|
+
getLastActiveCount?: (dataSource: any[]) => number;
|
|
8
|
+
lastOnly: boolean;
|
|
9
|
+
align: string;
|
|
10
|
+
layout: 'horizontal' | 'vertical';
|
|
11
|
+
oppositeTemplate: TemplateRef<any>;
|
|
12
|
+
contentTemplate: TemplateRef<any>;
|
|
13
|
+
get parsedEvents(): any[];
|
|
14
|
+
constructor();
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvTimelineComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvTimelineComponent, "kv-timeline", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "getSeverityFn": { "alias": "getSeverityFn"; "required": false; }; "getLastActiveCount": { "alias": "getLastActiveCount"; "required": false; }; "lastOnly": { "alias": "lastOnly"; "required": false; }; "align": { "alias": "align"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "oppositeTemplate": { "alias": "oppositeTemplate"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ export * from './lib/components/kv-tree-table/kv-tree-table.module';
|
|
|
135
135
|
export * from './lib/components/kv-table-expandable/kv-table-expandable.component';
|
|
136
136
|
export * from './lib/components/kv-table-expandable/kv-table-expandable.module';
|
|
137
137
|
/**
|
|
138
|
-
* Table
|
|
138
|
+
* Table Viewer
|
|
139
139
|
*/
|
|
140
140
|
export * from './lib/components/kv-table-viewer/kv-table-viewer.component';
|
|
141
141
|
/**
|
|
@@ -282,3 +282,7 @@ export { KvFilterCardsComponent, KvFilterCardConfig, mapaSeverityColors, KvSever
|
|
|
282
282
|
*/
|
|
283
283
|
export * from './lib/components/kv-tags/kv-tags.module';
|
|
284
284
|
export { KvTagConfig, KvTagsComponent } from './lib/components/kv-tags/kv-tags.component';
|
|
285
|
+
/**
|
|
286
|
+
* Timeline
|
|
287
|
+
*/
|
|
288
|
+
export * from './lib/components/kv-timeline/kv-timeline.component';
|