@libs-ui/components-inputs-quill 0.2.347-0 → 0.2.348-2
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/quill2x.component.mjs +118 -96
- package/esm2022/utils/quill2x.define.mjs +2 -2
- package/fesm2022/libs-ui-components-inputs-quill.mjs +117 -95
- package/fesm2022/libs-ui-components-inputs-quill.mjs.map +1 -1
- package/package.json +17 -17
- package/quill2x.component.d.ts +6 -2
- package/utils/quill2x.define.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-inputs-quill",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.348-2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
@@ -8,25 +8,25 @@
|
|
|
8
8
|
"quill2x": "npm:quill@2.0.3",
|
|
9
9
|
"@ssumo/quill-resize-module": "1.0.3",
|
|
10
10
|
"parchment": "1.1.4",
|
|
11
|
-
"@libs-ui/components-label": "0.2.
|
|
11
|
+
"@libs-ui/components-label": "0.2.348-2",
|
|
12
12
|
"quill-delta": "5.1.0",
|
|
13
|
-
"@libs-ui/components-inputs-valid": "0.2.
|
|
14
|
-
"@libs-ui/components-modal": "0.2.
|
|
15
|
-
"@libs-ui/utils": "0.2.
|
|
16
|
-
"@libs-ui/components-buttons-button": "0.2.
|
|
17
|
-
"@libs-ui/components-buttons-select-color": "0.2.
|
|
18
|
-
"@libs-ui/components-dropdown": "0.2.
|
|
19
|
-
"@libs-ui/components-inputs-emoji": "0.2.
|
|
20
|
-
"@libs-ui/components-inputs-mention": "0.2.
|
|
21
|
-
"@libs-ui/components-list": "0.2.
|
|
22
|
-
"@libs-ui/components-popover": "0.2.
|
|
23
|
-
"@libs-ui/interfaces-types": "0.2.
|
|
24
|
-
"@libs-ui/services-dynamic-component": "0.2.
|
|
13
|
+
"@libs-ui/components-inputs-valid": "0.2.348-2",
|
|
14
|
+
"@libs-ui/components-modal": "0.2.348-2",
|
|
15
|
+
"@libs-ui/utils": "0.2.348-2",
|
|
16
|
+
"@libs-ui/components-buttons-button": "0.2.348-2",
|
|
17
|
+
"@libs-ui/components-buttons-select-color": "0.2.348-2",
|
|
18
|
+
"@libs-ui/components-dropdown": "0.2.348-2",
|
|
19
|
+
"@libs-ui/components-inputs-emoji": "0.2.348-2",
|
|
20
|
+
"@libs-ui/components-inputs-mention": "0.2.348-2",
|
|
21
|
+
"@libs-ui/components-list": "0.2.348-2",
|
|
22
|
+
"@libs-ui/components-popover": "0.2.348-2",
|
|
23
|
+
"@libs-ui/interfaces-types": "0.2.348-2",
|
|
24
|
+
"@libs-ui/services-dynamic-component": "0.2.348-2",
|
|
25
25
|
"@ngx-translate/core": "^15.0.0",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
|
-
"@libs-ui/components-spinner": "0.2.
|
|
28
|
-
"@libs-ui/services-notification": "0.2.
|
|
29
|
-
"@libs-ui/services-http-request": "0.2.
|
|
27
|
+
"@libs-ui/components-spinner": "0.2.348-2",
|
|
28
|
+
"@libs-ui/services-notification": "0.2.348-2",
|
|
29
|
+
"@libs-ui/services-http-request": "0.2.348-2"
|
|
30
30
|
},
|
|
31
31
|
"sideEffects": false,
|
|
32
32
|
"module": "fesm2022/libs-ui-components-inputs-quill.mjs",
|
package/quill2x.component.d.ts
CHANGED
|
@@ -7,12 +7,13 @@ import { ILabel } from '@libs-ui/components-label';
|
|
|
7
7
|
import { IListConfigItem } from '@libs-ui/components-list';
|
|
8
8
|
import { TYPE_POPOVER_EVENT } from '@libs-ui/components-popover';
|
|
9
9
|
import { TYPE_OBJECT } from '@libs-ui/interfaces-types';
|
|
10
|
+
import { IOutputColorChangeMultipleType } from '@libs-ui/components-color-picker';
|
|
10
11
|
import { IQuill2xBlotRegister, IQuill2xCustomConfig, IQuill2xFunctionControlEvent, IQuill2xLink, IQuill2xSelectionChange, IQuill2xTextChange, IQuill2xToolbarConfig, IQuill2xUploadImageConfig } from './interfaces/quill2x.interface';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare class LibsUiComponentsInputsQuill2xComponent implements OnInit, OnDestroy {
|
|
13
14
|
private displayEditor;
|
|
14
15
|
private isPaste;
|
|
15
|
-
private quill
|
|
16
|
+
private quill;
|
|
16
17
|
private addEditLinkComponentRef;
|
|
17
18
|
private uploadImageComponentRef;
|
|
18
19
|
private handlers;
|
|
@@ -21,6 +22,8 @@ export declare class LibsUiComponentsInputsQuill2xComponent implements OnInit, O
|
|
|
21
22
|
private totalRecallCalculatorToolbar;
|
|
22
23
|
private isCalculatorToolbarSuccess;
|
|
23
24
|
private showMention;
|
|
25
|
+
private handlerTextChangeBind;
|
|
26
|
+
private handlerSelectionChangeBind;
|
|
24
27
|
protected borderColor: import("@angular/core").Signal<string>;
|
|
25
28
|
protected containerClass: import("@angular/core").Signal<string>;
|
|
26
29
|
protected containerToolbarClass: import("@angular/core").Signal<string>;
|
|
@@ -115,7 +118,7 @@ export declare class LibsUiComponentsInputsQuill2xComponent implements OnInit, O
|
|
|
115
118
|
protected handleSelectHeader(event: IEmitSelectKey | undefined): void;
|
|
116
119
|
protected handlerValueChangeFontSize(event?: IFocusAndBlurEvent): void;
|
|
117
120
|
protected handleSelectAlign(event: IEmitSelectKey | undefined): void;
|
|
118
|
-
protected handlerSetFormat(type: string, data:
|
|
121
|
+
protected handlerSetFormat(type: string, data: IOutputColorChangeMultipleType): void;
|
|
119
122
|
protected handlerInsertEmoji(emoji: unknown): void;
|
|
120
123
|
protected handlerUnlink(event: Event): void;
|
|
121
124
|
protected handlerEditLink(event: Event): void;
|
|
@@ -127,6 +130,7 @@ export declare class LibsUiComponentsInputsQuill2xComponent implements OnInit, O
|
|
|
127
130
|
private handlerShowUploadImage;
|
|
128
131
|
private insertText;
|
|
129
132
|
private handlerSelectionChange;
|
|
133
|
+
private handlerCopy;
|
|
130
134
|
private handlerPaste;
|
|
131
135
|
private handlerTextChange;
|
|
132
136
|
private updateStateToolbarByFormatInCursor;
|
|
@@ -7,4 +7,4 @@ export declare const mergeCells: (startCell: HTMLElement, endCell: HTMLElement)
|
|
|
7
7
|
export declare function splitCells(cellSplit: HTMLElement): void;
|
|
8
8
|
export declare const getAllTablesWithSpan: (quill: any) => void;
|
|
9
9
|
export declare const registerQuill2x: () => void;
|
|
10
|
-
export declare const isEmptyQuill: (quill
|
|
10
|
+
export declare const isEmptyQuill: (quill: Quill2x | null) => boolean;
|