@libs-ui/components-inputs-quill 0.2.202 → 0.2.204
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/quill.component.mjs +14 -5
- package/esm2022/utils/quill.define.mjs +34 -1
- package/fesm2022/libs-ui-components-inputs-quill.mjs +45 -3
- package/fesm2022/libs-ui-components-inputs-quill.mjs.map +1 -1
- package/package.json +17 -17
- package/quill.component.d.ts +5 -0
- package/utils/quill.define.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libs-ui/components-inputs-quill",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.204",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^18.2.0",
|
|
6
6
|
"@angular/core": "^18.2.0",
|
|
7
7
|
"quill": "1.3.7",
|
|
8
8
|
"parchment": "1.1.4",
|
|
9
|
-
"@libs-ui/components-label": "^0.2.
|
|
9
|
+
"@libs-ui/components-label": "^0.2.204",
|
|
10
10
|
"quill-delta": "5.1.0",
|
|
11
|
-
"@libs-ui/components-inputs-valid": "^0.2.
|
|
12
|
-
"@libs-ui/components-modal": "^0.2.
|
|
13
|
-
"@libs-ui/utils": "^0.2.
|
|
14
|
-
"@libs-ui/components-buttons-button": "^0.2.
|
|
15
|
-
"@libs-ui/components-buttons-select-color": "^0.2.
|
|
16
|
-
"@libs-ui/components-dropdown": "^0.2.
|
|
17
|
-
"@libs-ui/components-inputs-emoji": "^0.2.
|
|
18
|
-
"@libs-ui/components-inputs-mention": "^0.2.
|
|
19
|
-
"@libs-ui/components-list": "^0.2.
|
|
20
|
-
"@libs-ui/components-popover": "^0.2.
|
|
21
|
-
"@libs-ui/interfaces-types": "^0.2.
|
|
22
|
-
"@libs-ui/services-dynamic-component": "^0.2.
|
|
11
|
+
"@libs-ui/components-inputs-valid": "^0.2.204",
|
|
12
|
+
"@libs-ui/components-modal": "^0.2.204",
|
|
13
|
+
"@libs-ui/utils": "^0.2.204",
|
|
14
|
+
"@libs-ui/components-buttons-button": "^0.2.204",
|
|
15
|
+
"@libs-ui/components-buttons-select-color": "^0.2.204",
|
|
16
|
+
"@libs-ui/components-dropdown": "^0.2.204",
|
|
17
|
+
"@libs-ui/components-inputs-emoji": "^0.2.204",
|
|
18
|
+
"@libs-ui/components-inputs-mention": "^0.2.204",
|
|
19
|
+
"@libs-ui/components-list": "^0.2.204",
|
|
20
|
+
"@libs-ui/components-popover": "^0.2.204",
|
|
21
|
+
"@libs-ui/interfaces-types": "^0.2.204",
|
|
22
|
+
"@libs-ui/services-dynamic-component": "^0.2.204",
|
|
23
23
|
"@ngx-translate/core": "^15.0.0",
|
|
24
24
|
"rxjs": "~7.8.0",
|
|
25
|
-
"@libs-ui/components-spinner": "^0.2.
|
|
26
|
-
"@libs-ui/services-notification": "^0.2.
|
|
27
|
-
"@libs-ui/services-http-request": "^0.2.
|
|
25
|
+
"@libs-ui/components-spinner": "^0.2.204",
|
|
26
|
+
"@libs-ui/services-notification": "^0.2.204",
|
|
27
|
+
"@libs-ui/services-http-request": "^0.2.204"
|
|
28
28
|
},
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"module": "fesm2022/libs-ui-components-inputs-quill.mjs",
|
package/quill.component.d.ts
CHANGED
|
@@ -21,6 +21,9 @@ export declare class LibsUiComponentsInputsQuillComponent implements OnInit, Aft
|
|
|
21
21
|
protected listConfigFont: import("@angular/core").WritableSignal<IListConfigItem>;
|
|
22
22
|
protected fontSelected: import("@angular/core").WritableSignal<IEmitSelectKey | undefined>;
|
|
23
23
|
protected labelFontSelectedComputed: import("@angular/core").Signal<any>;
|
|
24
|
+
protected listConfigHeader: import("@angular/core").WritableSignal<IListConfigItem>;
|
|
25
|
+
protected headerSelected: import("@angular/core").WritableSignal<IEmitSelectKey | undefined>;
|
|
26
|
+
protected labelHeaderSelectedComputed: import("@angular/core").Signal<any>;
|
|
24
27
|
protected size: import("@angular/core").WritableSignal<{
|
|
25
28
|
value: number;
|
|
26
29
|
}>;
|
|
@@ -109,6 +112,7 @@ export declare class LibsUiComponentsInputsQuillComponent implements OnInit, Aft
|
|
|
109
112
|
protected handlerUnlink(event: Event): void;
|
|
110
113
|
protected handlerEdit(event: Event): void;
|
|
111
114
|
private calculatorToolbar;
|
|
115
|
+
private setColor;
|
|
112
116
|
protected setStyle(type: string, data: string | number): void;
|
|
113
117
|
private getFontSize;
|
|
114
118
|
private getFont;
|
|
@@ -137,6 +141,7 @@ export declare class LibsUiComponentsInputsQuillComponent implements OnInit, Aft
|
|
|
137
141
|
private scrollToSelectionWithElementScrollHeightAuto;
|
|
138
142
|
private getQlEditorElement;
|
|
139
143
|
private removeUnwantedPart;
|
|
144
|
+
protected handleSelectHeader(event: IEmitSelectKey | undefined): void;
|
|
140
145
|
ngOnDestroy(): void;
|
|
141
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibsUiComponentsInputsQuillComponent, never>;
|
|
142
147
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibsUiComponentsInputsQuillComponent, "libs_ui-components-inputs-quill", never, { "isShowToolBar": { "alias": "isShowToolBar"; "required": false; "isSignal": true; }; "isToolbarPositionFixed": { "alias": "isToolbarPositionFixed"; "required": false; "isSignal": true; }; "classIncludeToolbar": { "alias": "classIncludeToolbar"; "required": false; "isSignal": true; }; "stylesIncludeToolbar": { "alias": "stylesIncludeToolbar"; "required": false; "isSignal": true; }; "toolbarConfig": { "alias": "toolbarConfig"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "item": { "alias": "item"; "required": false; "isSignal": true; }; "autoUpdateValueWhenTextChange": { "alias": "autoUpdateValueWhenTextChange"; "required": false; "isSignal": true; }; "fieldNameBind": { "alias": "fieldNameBind"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "showErrorLabel": { "alias": "showErrorLabel"; "required": false; "isSignal": true; }; "showErrorBorder": { "alias": "showErrorBorder"; "required": false; "isSignal": true; }; "onlyShowErrorBorderInContent": { "alias": "onlyShowErrorBorderInContent"; "required": false; "isSignal": true; }; "classIncludeTemplate": { "alias": "classIncludeTemplate"; "required": false; "isSignal": true; }; "classInclude": { "alias": "classInclude"; "required": false; "isSignal": true; }; "handlersExpand": { "alias": "handlersExpand"; "required": false; "isSignal": true; }; "validRequired": { "alias": "validRequired"; "required": false; "isSignal": true; }; "validMinLength": { "alias": "validMinLength"; "required": false; "isSignal": true; }; "validMaxLength": { "alias": "validMaxLength"; "required": false; "isSignal": true; }; "zIndex": { "alias": "zIndex"; "required": false; "isSignal": true; }; "dataConfigMention": { "alias": "dataConfigMention"; "required": false; "isSignal": true; }; "blotsRegister": { "alias": "blotsRegister"; "required": false; "isSignal": true; }; "autoFocus": { "alias": "autoFocus"; "required": false; "isSignal": true; }; "focusBottom": { "alias": "focusBottom"; "required": false; "isSignal": true; }; "blockUndoRedoKeyboard": { "alias": "blockUndoRedoKeyboard"; "required": false; "isSignal": true; }; "templateToolBarPersonalize": { "alias": "templateToolBarPersonalize"; "required": false; "isSignal": true; }; "template": { "alias": "template"; "required": false; "isSignal": true; }; "uploadImageConfig": { "alias": "uploadImageConfig"; "required": false; "isSignal": true; }; "heightAuto": { "alias": "heightAuto"; "required": false; "isSignal": true; }; "elementScrollHeightAuto": { "alias": "elementScrollHeightAuto"; "required": false; "isSignal": true; }; }, { "item": "itemChange"; "outMessageError": "outMessageError"; "outBlur": "outBlur"; "outFocus": "outFocus"; "outChange": "outChange"; "outFunctionsControl": "outFunctionsControl"; "outSelectionChange": "outSelectionChange"; "outTextChange": "outTextChange"; "outContextMenu": "outContextMenu"; }, never, never, true, never>;
|
package/utils/quill.define.d.ts
CHANGED
|
@@ -8,8 +8,13 @@ export declare const listFont: () => {
|
|
|
8
8
|
key: string;
|
|
9
9
|
label: string;
|
|
10
10
|
}[];
|
|
11
|
+
export declare const listHeader: () => {
|
|
12
|
+
key: string;
|
|
13
|
+
label: string;
|
|
14
|
+
}[];
|
|
11
15
|
export declare const listConfigAlign: () => IListConfigItem;
|
|
12
16
|
export declare const listConfigFont: () => IListConfigItem;
|
|
17
|
+
export declare const listConfigHeader: () => IListConfigItem;
|
|
13
18
|
export declare const toolBarOptions: (mode: TYPE_MODE_BAR_CONFIG_OPTION, hasIconImage: boolean, hasIconPersonalize: boolean) => Array<IQuillToolbarConfig>;
|
|
14
19
|
export declare const iconList: () => Array<{
|
|
15
20
|
key: string;
|