raise-common-lib-new 0.0.47 → 0.0.49
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 +101 -15
- package/fesm2022/raise-common-lib-new.mjs +100 -15
- 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 +16 -1
- package/package.json +1 -1
- package/src/assets/img/bullet-dash.svg +3 -0
|
@@ -7,9 +7,9 @@ export declare class FloatBoxComponent implements AfterViewInit, OnDestroy {
|
|
|
7
7
|
_trigger: "hover" | "click";
|
|
8
8
|
_animation: "yes" | "no";
|
|
9
9
|
_fixed: "yes" | "no";
|
|
10
|
-
get placement(): "top" | "
|
|
10
|
+
get placement(): "top" | "bottom" | "right" | "left";
|
|
11
11
|
get position(): "center" | "start" | "end";
|
|
12
|
-
get trigger(): "
|
|
12
|
+
get trigger(): "click" | "hover";
|
|
13
13
|
get animation(): "yes" | "no";
|
|
14
14
|
get fixed(): "yes" | "no";
|
|
15
15
|
openChange: EventEmitter<boolean>;
|
|
@@ -4,10 +4,12 @@ import { DropDownListComponent } from "@syncfusion/ej2-angular-dropdowns";
|
|
|
4
4
|
import { RichTextEditorComponent, ToolbarSettingsModel } from "@syncfusion/ej2-angular-richtexteditor";
|
|
5
5
|
import { ButtonComponent } from "@syncfusion/ej2-angular-buttons";
|
|
6
6
|
import { DialogComponent } from "@syncfusion/ej2-angular-popups";
|
|
7
|
+
import { DialogService } from "../../service/dialog.service";
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class RichtexteditorComponent implements OnInit {
|
|
9
10
|
private ref;
|
|
10
11
|
private http;
|
|
12
|
+
private dialog;
|
|
11
13
|
rteObj: RichTextEditorComponent;
|
|
12
14
|
queryCategory: DropDownListComponent;
|
|
13
15
|
leftRte: RichTextEditorComponent;
|
|
@@ -76,7 +78,19 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
76
78
|
apiResultData: any;
|
|
77
79
|
AIResult: string;
|
|
78
80
|
tools: ToolbarSettingsModel;
|
|
79
|
-
|
|
81
|
+
bulletFormatList: {
|
|
82
|
+
types: {
|
|
83
|
+
text: string;
|
|
84
|
+
value: string;
|
|
85
|
+
}[];
|
|
86
|
+
};
|
|
87
|
+
numberFormatList: {
|
|
88
|
+
types: {
|
|
89
|
+
text: string;
|
|
90
|
+
value: string;
|
|
91
|
+
}[];
|
|
92
|
+
};
|
|
93
|
+
constructor(ref: ChangeDetectorRef, http: HttpClient, dialog: DialogService);
|
|
80
94
|
ngOnInit(): void;
|
|
81
95
|
onContentChange(args: any): void;
|
|
82
96
|
onCreate(): void;
|
|
@@ -99,6 +113,7 @@ export declare class RichtexteditorComponent implements OnInit {
|
|
|
99
113
|
_actionComplete(args: any): void;
|
|
100
114
|
_focus(args: any): void;
|
|
101
115
|
_blur(args: any): void;
|
|
116
|
+
_dialogOpen(args: any): void;
|
|
102
117
|
hideToast(): void;
|
|
103
118
|
onZoom(): void;
|
|
104
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<RichtexteditorComponent, never>;
|
package/package.json
CHANGED