raise-common-lib-new 0.0.51 → 0.0.53
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/form/richtexteditor/index.component.mjs +184 -106
- package/fesm2022/raise-common-lib-new.mjs +183 -105
- package/fesm2022/raise-common-lib-new.mjs.map +1 -1
- package/lib/float-box/index.component.d.ts +1 -1
- package/lib/form/richtexteditor/index.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ export declare class FloatBoxComponent implements AfterViewInit, OnDestroy {
|
|
|
9
9
|
_fixed: "yes" | "no";
|
|
10
10
|
get placement(): "top" | "bottom" | "right" | "left";
|
|
11
11
|
get position(): "start" | "center" | "end";
|
|
12
|
-
get trigger(): "
|
|
12
|
+
get trigger(): "hover" | "click";
|
|
13
13
|
get animation(): "yes" | "no";
|
|
14
14
|
get fixed(): "yes" | "no";
|
|
15
15
|
openChange: EventEmitter<boolean>;
|
|
@@ -101,6 +101,7 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
101
101
|
dialogueOpen(selectedQuery: string): void;
|
|
102
102
|
updateAISugesstionsData(selectedQuery: string): void;
|
|
103
103
|
updateAISugesstions(): void;
|
|
104
|
+
fullResponse: string;
|
|
104
105
|
getResponseFromOpenAI(subQuery: string, promptQuery: string): Promise<string>;
|
|
105
106
|
dialogShow(): void;
|
|
106
107
|
closeDialog(): void;
|
|
@@ -120,6 +121,9 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
120
121
|
unescapeHtml(escapedHtml: string): string;
|
|
121
122
|
hideToast(): void;
|
|
122
123
|
onZoom(): void;
|
|
124
|
+
regenerateClick(): void;
|
|
125
|
+
copyClick(): void;
|
|
126
|
+
replaceClick(): void;
|
|
123
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<RichtexteditorComponent, never>;
|
|
124
128
|
static ɵcmp: i0.ɵɵComponentDeclaration<RichtexteditorComponent, "rs-richtext-editor", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "editorId": { "alias": "editorId"; "required": false; }; "saveInterval": { "alias": "saveInterval"; "required": false; }; "height": { "alias": "height"; "required": false; }; "autoSaveOnIdle": { "alias": "autoSaveOnIdle"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "target": { "alias": "target"; "required": false; }; "insertImageSettings": { "alias": "insertImageSettings"; "required": false; }; "showTicketAttachment": { "alias": "showTicketAttachment"; "required": false; }; }, { "toolbarClick": "toolbarClick"; "change": "change"; "created": "created"; "actionBegin": "actionBegin"; "input": "input"; "focus": "focus"; "blur": "blur"; "actionComplete": "actionComplete"; "afterPasteCleanup": "afterPasteCleanup"; }, never, never, false, never>;
|
|
125
129
|
}
|