raise-common-lib-new 0.0.59 → 0.0.61
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.
|
@@ -56,7 +56,6 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
56
56
|
dialogWidth: string;
|
|
57
57
|
dialogHeight: string;
|
|
58
58
|
showZoomBtn: boolean;
|
|
59
|
-
showMsg: boolean;
|
|
60
59
|
editorManager: any;
|
|
61
60
|
size: string;
|
|
62
61
|
selectedQuery: any;
|
|
@@ -92,6 +91,7 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
92
91
|
}[];
|
|
93
92
|
};
|
|
94
93
|
translation: any;
|
|
94
|
+
zoomout: boolean;
|
|
95
95
|
constructor(ref: ChangeDetectorRef, http: HttpClient, dialog: DialogService, snackBar: MatSnackBar);
|
|
96
96
|
ngOnInit(): void;
|
|
97
97
|
onContentChange(args: any): void;
|
|
@@ -101,7 +101,8 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
101
101
|
dialogueOpen(selectedQuery: string): void;
|
|
102
102
|
updateAISugesstionsData(selectedQuery: string): void;
|
|
103
103
|
updateAISugesstions(): void;
|
|
104
|
-
|
|
104
|
+
currentResponse: string;
|
|
105
|
+
abortController: AbortController | null;
|
|
105
106
|
getResponseFromOpenAI(subQuery: string, promptQuery: string): Promise<string>;
|
|
106
107
|
dialogShow(): void;
|
|
107
108
|
closeDialog(): void;
|
|
@@ -119,15 +120,14 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
119
120
|
_dialogOpen(args: any): void;
|
|
120
121
|
_afterPasteCleanup(args: any): void;
|
|
121
122
|
unescapeHtml(escapedHtml: string): string;
|
|
122
|
-
hideToast(): void;
|
|
123
123
|
onZoom(): void;
|
|
124
124
|
regenerateClick(): void;
|
|
125
125
|
copyClick(): void;
|
|
126
126
|
replaceClick(): void;
|
|
127
|
-
|
|
127
|
+
updateResponse(content: any): void;
|
|
128
|
+
extractHTMLFromResponse(content: any): any;
|
|
128
129
|
onMinimize(): void;
|
|
129
130
|
showDialog(): void;
|
|
130
|
-
insertHtmlToEditor(html: string): void;
|
|
131
131
|
static ɵfac: i0.ɵɵFactoryDeclaration<RichtexteditorComponent, never>;
|
|
132
132
|
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>;
|
|
133
133
|
}
|