raise-common-lib-new 0.0.54 → 0.0.55
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 +118 -232
- package/fesm2022/raise-common-lib-new.mjs +118 -231
- package/fesm2022/raise-common-lib-new.mjs.map +1 -1
- package/lib/float-box/index.component.d.ts +2 -2
- package/lib/form/richtexteditor/index.component.d.ts +1 -10
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@ export declare class FloatBoxComponent implements AfterViewInit, OnDestroy {
|
|
|
8
8
|
_animation: "yes" | "no";
|
|
9
9
|
_fixed: "yes" | "no";
|
|
10
10
|
get placement(): "top" | "bottom" | "right" | "left";
|
|
11
|
-
get position(): "
|
|
12
|
-
get trigger(): "
|
|
11
|
+
get position(): "center" | "start" | "end";
|
|
12
|
+
get trigger(): "click" | "hover";
|
|
13
13
|
get animation(): "yes" | "no";
|
|
14
14
|
get fixed(): "yes" | "no";
|
|
15
15
|
openChange: EventEmitter<boolean>;
|
|
@@ -41,7 +41,6 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
41
41
|
focus: EventEmitter<any>;
|
|
42
42
|
blur: EventEmitter<any>;
|
|
43
43
|
actionComplete: EventEmitter<any>;
|
|
44
|
-
afterPasteCleanup: EventEmitter<any>;
|
|
45
44
|
family: Object;
|
|
46
45
|
fontSize: {
|
|
47
46
|
default: string;
|
|
@@ -79,7 +78,6 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
79
78
|
apiResultData: any;
|
|
80
79
|
AIResult: string;
|
|
81
80
|
tools: ToolbarSettingsModel;
|
|
82
|
-
isDialogVisible: boolean;
|
|
83
81
|
bulletFormatList: {
|
|
84
82
|
types: {
|
|
85
83
|
text: string;
|
|
@@ -101,7 +99,6 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
101
99
|
dialogueOpen(selectedQuery: string): void;
|
|
102
100
|
updateAISugesstionsData(selectedQuery: string): void;
|
|
103
101
|
updateAISugesstions(): void;
|
|
104
|
-
fullResponse: string;
|
|
105
102
|
getResponseFromOpenAI(subQuery: string, promptQuery: string): Promise<string>;
|
|
106
103
|
dialogShow(): void;
|
|
107
104
|
closeDialog(): void;
|
|
@@ -117,14 +114,8 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
117
114
|
_focus(args: any): void;
|
|
118
115
|
_blur(args: any): void;
|
|
119
116
|
_dialogOpen(args: any): void;
|
|
120
|
-
_afterPasteCleanup(args: any): void;
|
|
121
|
-
unescapeHtml(escapedHtml: string): string;
|
|
122
117
|
hideToast(): void;
|
|
123
118
|
onZoom(): void;
|
|
124
|
-
regenerateClick(): void;
|
|
125
|
-
copyClick(): void;
|
|
126
|
-
replaceClick(): void;
|
|
127
|
-
scrollToBottom(): void;
|
|
128
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<RichtexteditorComponent, never>;
|
|
129
|
-
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";
|
|
120
|
+
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"; }, never, never, false, never>;
|
|
130
121
|
}
|