keevo-components 2.0.100 → 2.0.101
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/config/kv-editor.config.mjs +3 -1
- package/esm2022/lib/components/kv-inputs/kv-editor/kv-editor.component.mjs +9 -11
- package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-pdf.service.mjs +2 -3
- package/esm2022/lib/components/kv-inputs/kv-editor/services/kv-editor-quill.service.mjs +2 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/keevo-components.mjs +13 -14
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-button/kv-button.component.d.ts +1 -1
- package/lib/components/kv-buttons/kv-button-popup/kv-button-popup.component.d.ts +1 -1
- package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +2 -5
- package/lib/components/kv-tag/kv-tag.component.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -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<"right" | "left">;
|
|
13
13
|
label: import("@angular/core").InputSignal<string>;
|
|
14
14
|
disabled: import("@angular/core").InputSignal<boolean>;
|
|
15
15
|
onClick: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -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" | "normal" | "outline">;
|
|
12
12
|
icon: string;
|
|
13
13
|
constructor();
|
|
14
14
|
handleShow(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnInit
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit } 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';
|
|
@@ -6,9 +6,7 @@ import { ComponentService } from '../../../api/services/component.service';
|
|
|
6
6
|
import { KvEditorRelatorio, KvEditorVariavel } from './kv-editor';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class KvEditorComponent extends BaseComponentInput<string> implements OnInit {
|
|
9
|
-
|
|
10
|
-
private el;
|
|
11
|
-
constructor(componentService: ComponentService, renderer: Renderer2, el: ElementRef);
|
|
9
|
+
constructor(componentService: ComponentService);
|
|
12
10
|
private quillService;
|
|
13
11
|
private relatorioService;
|
|
14
12
|
private mentionService;
|
|
@@ -34,7 +32,6 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
34
32
|
initLoadComplete: import("@angular/core").WritableSignal<boolean>;
|
|
35
33
|
isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
36
34
|
editorToolbarHeight: import("@angular/core").WritableSignal<string>;
|
|
37
|
-
tipoVisualizacao: import("@angular/core").WritableSignal<"descricao" | "valor">;
|
|
38
35
|
filteredVariables: import("@angular/core").WritableSignal<KvEditorVariavel[]>;
|
|
39
36
|
relatorios: import("@angular/core").InputSignal<KvEditorRelatorio[]>;
|
|
40
37
|
idRelatorioInitial: import("@angular/core").InputSignal<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<"warn" | "info" | "success" | "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>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export * from './lib/api/components/dropdown/filtro.combo';
|
|
|
73
73
|
export * from './lib/components/kv-inputs/kv-check/kv-check.component';
|
|
74
74
|
export * from './lib/components/kv-inputs/kv-dropdown/kv-dropdown.component';
|
|
75
75
|
export * from './lib/components/kv-inputs/kv-editor/kv-editor.component';
|
|
76
|
+
export * from './lib/components/kv-inputs/kv-editor/kv-editor';
|
|
76
77
|
export * from './lib/components/kv-inputs/kv-input-calendar/kv-input-calendar.component';
|
|
77
78
|
export * from './lib/components/kv-inputs/kv-input-mask/kv-input-mask.component';
|
|
78
79
|
export * from './lib/components/kv-inputs/kv-input-number/kv-input-number.component';
|