keevo-components 2.0.70 → 2.0.72
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/kv-editor.component.mjs +13 -3
- package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +2 -2
- package/fesm2022/keevo-components.mjs +14 -4
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-inputs/kv-editor/kv-editor.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
21
21
|
quill: Quill;
|
|
22
22
|
initLoadComplete: import("@angular/core").WritableSignal<boolean>;
|
|
23
23
|
isLoading: import("@angular/core").WritableSignal<boolean>;
|
|
24
|
+
editorToolbarHeight: import("@angular/core").WritableSignal<string>;
|
|
24
25
|
private editorReadyPromise;
|
|
25
26
|
/**
|
|
26
27
|
* caso defina como "text" o texto ira ser enviado sem formatação
|
|
@@ -34,6 +35,7 @@ export declare class KvEditorComponent extends BaseComponentInput<string> implem
|
|
|
34
35
|
addQuillCss(): void;
|
|
35
36
|
writeValue(value: any): void;
|
|
36
37
|
escrevaValor(htmlvalue: any, rawvalue?: any): Promise<void>;
|
|
38
|
+
getEditorSize(): void;
|
|
37
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<KvEditorComponent, never>;
|
|
38
40
|
static ɵcmp: i0.ɵɵComponentDeclaration<KvEditorComponent, "kv-editor", never, { "readonly": { "alias": "readonly"; "required": false; }; "debug": { "alias": "debug"; "required": false; }; "canvaHeigth": { "alias": "canvaHeigth"; "required": false; }; "contentType": { "alias": "contentType"; "required": false; }; }, { "onTextChange": "onTextChange"; "onSelectionChange": "onSelectionChange"; "outputRaw": "outputRaw"; "outputHtml": "outputHtml"; }, never, never, false, never>;
|
|
39
41
|
}
|