asksuite-citrus 3.16.24-beta.2 → 3.16.25

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.
@@ -14,6 +14,9 @@ export declare class RichtextWrapper implements RichTextFunctions {
14
14
  private maxLength;
15
15
  private breakOnEnter;
16
16
  private allowImages;
17
+ private isFormatting;
18
+ private pendingFormat;
19
+ private lastKeyCombination;
17
20
  private quillFormats;
18
21
  private textChangeHandler;
19
22
  private selectionChangeHandler;
@@ -25,6 +28,7 @@ export declare class RichtextWrapper implements RichTextFunctions {
25
28
  get listenEscape$(): import("rxjs").Observable<boolean>;
26
29
  get listenEnter$(): import("rxjs").Observable<boolean>;
27
30
  constructor(ngZone: NgZone, cd: ChangeDetectorRef, elementRef: ElementRef<HTMLElement>);
31
+ private emojiMatcher;
28
32
  setItalic(): void;
29
33
  setBold(): void;
30
34
  setUnderline(): void;
@@ -59,7 +63,10 @@ export declare class RichtextWrapper implements RichTextFunctions {
59
63
  private imageMatcher;
60
64
  private htmlPanelMatcher;
61
65
  private listenEditorChanges;
66
+ private setupKeyListeners;
62
67
  private update;
68
+ private setupEmojiDetection;
69
+ private formatEmoji;
63
70
  }
64
71
  export declare const QuillProxy: {
65
72
  Quill: typeof Quill;
@@ -0,0 +1,11 @@
1
+ declare const Inline: any;
2
+ export declare const EMOJI_REGEX: RegExp;
3
+ export declare class EmojiBlot extends Inline {
4
+ static blotName: string;
5
+ static tagName: string;
6
+ static className: string;
7
+ static create(value: any): any;
8
+ static formats(node: HTMLElement): HTMLElement;
9
+ static value(node: HTMLElement): HTMLElement;
10
+ }
11
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asksuite-citrus",
3
- "version": "3.16.24-beta.2",
3
+ "version": "3.16.25",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.7",
6
6
  "@angular/core": "^17.3.7",