raise-common-lib-new 0.0.38 → 0.0.40

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.
@@ -7,7 +7,7 @@ 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(): "bottom" | "left" | "right" | "top";
10
+ get placement(): "top" | "left" | "right" | "bottom";
11
11
  get position(): "center" | "start" | "end";
12
12
  get trigger(): "click" | "hover";
13
13
  get animation(): "yes" | "no";
@@ -1,5 +1,13 @@
1
1
  import { ItemModel } from "@syncfusion/ej2-angular-splitbuttons";
2
2
  export declare const fontFamily: Object;
3
+ export declare const size: {
4
+ default: string;
5
+ width: string;
6
+ items: {
7
+ text: string;
8
+ value: string;
9
+ }[];
10
+ };
3
11
  export declare const lineHeight_items: ItemModel[];
4
12
  export interface BulletStyle {
5
13
  id: string;
@@ -1,13 +1,13 @@
1
1
  import { OnInit, ChangeDetectorRef, EventEmitter } from "@angular/core";
2
+ import { HttpClient } from "@angular/common/http";
2
3
  import { DropDownListComponent } from "@syncfusion/ej2-angular-dropdowns";
3
4
  import { RichTextEditorComponent, ToolbarSettingsModel } from "@syncfusion/ej2-angular-richtexteditor";
4
5
  import { ButtonComponent } from "@syncfusion/ej2-angular-buttons";
5
6
  import { DialogComponent } from "@syncfusion/ej2-angular-popups";
6
- import { DialogService } from "raise-common-lib";
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class RichtexteditorComponent implements OnInit {
9
- private dialog;
10
9
  private ref;
10
+ private http;
11
11
  rteObj: RichTextEditorComponent;
12
12
  queryCategory: DropDownListComponent;
13
13
  leftRte: RichTextEditorComponent;
@@ -21,19 +21,33 @@ export declare class RichtexteditorComponent implements OnInit {
21
21
  value: string;
22
22
  height: number;
23
23
  autoSaveOnIdle: boolean;
24
+ disabled: boolean;
24
25
  target: string;
26
+ insertImageSettings: {
27
+ saveFormat: string;
28
+ allowedTypes: string[];
29
+ display: string;
30
+ };
25
31
  toolbarClick: EventEmitter<any>;
26
32
  change: EventEmitter<any>;
33
+ created: EventEmitter<any>;
34
+ actionBegin: EventEmitter<any>;
35
+ input: EventEmitter<any>;
36
+ focus: EventEmitter<any>;
37
+ actionComplete: EventEmitter<any>;
27
38
  family: Object;
39
+ fontSize: {
40
+ default: string;
41
+ width: string;
42
+ items: {
43
+ text: string;
44
+ value: string;
45
+ }[];
46
+ };
28
47
  dialogWidth: string;
29
48
  dialogHeight: string;
30
49
  showZoomBtn: boolean;
31
50
  showMsg: boolean;
32
- insertImageSettings: {
33
- saveFormat: string;
34
- allowedTypes: string[];
35
- display: string;
36
- };
37
51
  editorManager: any;
38
52
  size: string;
39
53
  selectedQuery: any;
@@ -58,7 +72,7 @@ export declare class RichtexteditorComponent implements OnInit {
58
72
  apiResultData: any;
59
73
  AIResult: string;
60
74
  tools: ToolbarSettingsModel;
61
- constructor(dialog: DialogService, ref: ChangeDetectorRef);
75
+ constructor(ref: ChangeDetectorRef, http: HttpClient);
62
76
  ngOnInit(): void;
63
77
  onContentChange(args: any): void;
64
78
  onCreate(): void;
@@ -76,8 +90,12 @@ export declare class RichtexteditorComponent implements OnInit {
76
90
  onLanguageSelect(args: any): void;
77
91
  onChipClick(args: any): void;
78
92
  _toolbarClick(args: any): void;
93
+ _actionBegin(args: any): void;
94
+ _input(args: any): void;
95
+ _actionComplete(args: any): void;
96
+ _focus(args: any): void;
79
97
  hideToast(): void;
80
98
  onZoom(): void;
81
99
  static ɵfac: i0.ɵɵFactoryDeclaration<RichtexteditorComponent, never>;
82
- static ɵcmp: i0.ɵɵComponentDeclaration<RichtexteditorComponent, "rs-richtext-editor", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "height": { "alias": "height"; "required": false; }; "autoSaveOnIdle": { "alias": "autoSaveOnIdle"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, { "toolbarClick": "toolbarClick"; "change": "change"; }, never, never, false, never>;
100
+ static ɵcmp: i0.ɵɵComponentDeclaration<RichtexteditorComponent, "rs-richtext-editor", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "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; }; }, { "toolbarClick": "toolbarClick"; "change": "change"; "created": "created"; "actionBegin": "actionBegin"; "input": "input"; "focus": "focus"; "actionComplete": "actionComplete"; }, never, never, false, never>;
83
101
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raise-common-lib-new",
3
- "version": "0.0.38",
3
+ "version": "0.0.40",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^16.0.0",
6
6
  "@angular/core": "^16.0.0"