keevo-components 2.0.103 → 2.0.104
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 +11 -4
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +27 -10
- package/fesm2022/keevo-components.mjs +69 -49
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-inputs/kv-editor/components/kv-instrucoes-report/kv-instrucoes-report.component.d.ts +3 -0
- package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +6 -3
- package/lib/components/kv-stepper/kv-stepper.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare class KvButtonComponent {
|
|
|
9
9
|
severity: import("@angular/core").InputSignal<"primary" | "secondary" | "tertiary" | "danger">;
|
|
10
10
|
size: import("@angular/core").InputSignal<"small" | "normal" | "large">;
|
|
11
11
|
icon: import("@angular/core").ModelSignal<string>;
|
|
12
|
-
iconPosition: import("@angular/core").InputSignal<"
|
|
12
|
+
iconPosition: import("@angular/core").InputSignal<"left" | "right">;
|
|
13
13
|
label: import("@angular/core").InputSignal<string>;
|
|
14
14
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
15
15
|
onClick: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class KvInstrucoesReportComponent {
|
|
4
|
+
private dialogConfig;
|
|
5
|
+
instrucoesTemplate: import("@angular/core").WritableSignal<TemplateRef<any>>;
|
|
3
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvInstrucoesReportComponent, never>;
|
|
4
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvInstrucoesReportComponent, "kv-instrucoes-report", never, {}, {}, never, never, true, never>;
|
|
5
8
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
2
|
import Quill from 'quill';
|
|
3
3
|
import { OverlayPanel } from 'primeng/overlaypanel';
|
|
4
4
|
import { BaseComponentInput } from '../../../api/base-components/base-component-input';
|
|
@@ -33,10 +33,12 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
33
33
|
isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
34
34
|
editorToolbarHeight: import("@angular/core").WritableSignal<string>;
|
|
35
35
|
filteredVariables: import("@angular/core").WritableSignal<KvEditorVariavel[]>;
|
|
36
|
+
clearedTemplate: import("@angular/core").WritableSignal<boolean>;
|
|
36
37
|
relatorios: import("@angular/core").InputSignal<KvEditorRelatorio[]>;
|
|
37
|
-
idRelatorioInitial: import("@angular/core").
|
|
38
|
+
idRelatorioInitial: import("@angular/core").ModelSignal<number>;
|
|
38
39
|
printButton: import("@angular/core").InputSignal<boolean>;
|
|
39
40
|
labelEmptyDropdown: import("@angular/core").InputSignal<string>;
|
|
41
|
+
instrucoesTemplate: import("@angular/core").InputSignal<TemplateRef<any> | undefined>;
|
|
40
42
|
idRelatorioSelected: import("@angular/core").Signal<number>;
|
|
41
43
|
relatorio: import("@angular/core").Signal<KvEditorRelatorio | null>;
|
|
42
44
|
isLoadingPdf: import("@angular/core").Signal<boolean>;
|
|
@@ -61,6 +63,7 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
61
63
|
selectVariableFromPanel(variable: KvEditorVariavel): void;
|
|
62
64
|
closeVariablesPanel(): void;
|
|
63
65
|
showInstrucoes(): void;
|
|
66
|
+
clearTemplate(): void;
|
|
64
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvEditorComponent, 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>;
|
|
68
|
+
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; }; "instrucoesTemplate": { "alias": "instrucoesTemplate"; "required": false; "isSignal": true; }; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; "outputRaw": "outputRaw"; "outputHtml": "outputHtml"; "idRelatorioInitial": "idRelatorioInitialChange"; }, never, never, false, never>;
|
|
66
69
|
}
|
|
@@ -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<"vertical" | "horizontal">;
|
|
8
8
|
buttonsAlign: import("@angular/core").InputSignal<"center" | "start" | "end">;
|
|
9
9
|
linear: import("@angular/core").InputSignal<boolean>;
|
|
10
10
|
activeStepChange: EventEmitter<number>;
|