@libs-ui/components-inputs-quill 0.2.223 → 0.2.225

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.
@@ -28,6 +28,7 @@ export interface IQuillToolbarConfig {
28
28
  type: string;
29
29
  mode?: Array<TYPE_MODE_BAR_CONFIG_OPTION>;
30
30
  width: number;
31
+ display?: boolean;
31
32
  }
32
33
  export interface IQuillEventSave {
33
34
  link: string;
@@ -60,6 +61,7 @@ export interface IQuillFunctionControlEvent {
60
61
  indexSelect: number;
61
62
  length?: number;
62
63
  }, type: string, data: unknown, sources?: Sources) => Promise<void>;
64
+ reCalculatorToolbar: () => Promise<void>;
63
65
  }
64
66
  export interface IQuillLink {
65
67
  title: string;
package/package.json CHANGED
@@ -1,30 +1,30 @@
1
1
  {
2
2
  "name": "@libs-ui/components-inputs-quill",
3
- "version": "0.2.223",
3
+ "version": "0.2.225",
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.223",
9
+ "@libs-ui/components-label": "^0.2.225",
10
10
  "quill-delta": "5.1.0",
11
- "@libs-ui/components-inputs-valid": "^0.2.223",
12
- "@libs-ui/components-modal": "^0.2.223",
13
- "@libs-ui/utils": "^0.2.223",
14
- "@libs-ui/components-buttons-button": "^0.2.223",
15
- "@libs-ui/components-buttons-select-color": "^0.2.223",
16
- "@libs-ui/components-dropdown": "^0.2.223",
17
- "@libs-ui/components-inputs-emoji": "^0.2.223",
18
- "@libs-ui/components-inputs-mention": "^0.2.223",
19
- "@libs-ui/components-list": "^0.2.223",
20
- "@libs-ui/components-popover": "^0.2.223",
21
- "@libs-ui/interfaces-types": "^0.2.223",
22
- "@libs-ui/services-dynamic-component": "^0.2.223",
11
+ "@libs-ui/components-inputs-valid": "^0.2.225",
12
+ "@libs-ui/components-modal": "^0.2.225",
13
+ "@libs-ui/utils": "^0.2.225",
14
+ "@libs-ui/components-buttons-button": "^0.2.225",
15
+ "@libs-ui/components-buttons-select-color": "^0.2.225",
16
+ "@libs-ui/components-dropdown": "^0.2.225",
17
+ "@libs-ui/components-inputs-emoji": "^0.2.225",
18
+ "@libs-ui/components-inputs-mention": "^0.2.225",
19
+ "@libs-ui/components-list": "^0.2.225",
20
+ "@libs-ui/components-popover": "^0.2.225",
21
+ "@libs-ui/interfaces-types": "^0.2.225",
22
+ "@libs-ui/services-dynamic-component": "^0.2.225",
23
23
  "@ngx-translate/core": "^15.0.0",
24
24
  "rxjs": "~7.8.0",
25
- "@libs-ui/components-spinner": "^0.2.223",
26
- "@libs-ui/services-notification": "^0.2.223",
27
- "@libs-ui/services-http-request": "^0.2.223"
25
+ "@libs-ui/components-spinner": "^0.2.225",
26
+ "@libs-ui/services-notification": "^0.2.225",
27
+ "@libs-ui/services-http-request": "^0.2.225"
28
28
  },
29
29
  "sideEffects": false,
30
30
  "module": "fesm2022/libs-ui-components-inputs-quill.mjs",
@@ -1,4 +1,4 @@
1
- import { AfterViewInit, ElementRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, OnDestroy, OnInit, TemplateRef, WritableSignal } from '@angular/core';
2
2
  import { IEmitSelectKey } from '@libs-ui/components-dropdown';
3
3
  import { IMentionConfig, IMentionInsert } from '@libs-ui/components-inputs-mention';
4
4
  import { IValidLength, IValidRequired } from '@libs-ui/components-inputs-valid';
@@ -9,29 +9,29 @@ import { TYPE_OBJECT } from '@libs-ui/interfaces-types';
9
9
  import { IQuillBlotRegister, IQuillFunctionControlEvent, IQuillLink, IQuillSelectionChange, IQuillTextChange, IQuillToolbarConfig, IQuillUploadImageConfig, TYPE_MODE_BAR_CONFIG_OPTION } from './interfaces/quill.interface';
10
10
  import * as i0 from "@angular/core";
11
11
  export declare class LibsUiComponentsInputsQuillComponent implements OnInit, AfterViewInit, OnDestroy {
12
- protected qlEditorElement: import("@angular/core").WritableSignal<HTMLElement | undefined>;
12
+ protected qlEditorElement: WritableSignal<HTMLElement | undefined>;
13
13
  private timeoutScrollToSelectionWithElementScrollHeightAuto;
14
- protected loadingUploadImage: import("@angular/core").WritableSignal<boolean>;
15
- protected readonly timeDelayInit: import("@angular/core").WritableSignal<number>;
16
- protected messageError: import("@angular/core").WritableSignal<string>;
17
- protected display: import("@angular/core").WritableSignal<boolean>;
18
- protected listConfigAlign: import("@angular/core").WritableSignal<IListConfigItem>;
19
- protected alignSelected: import("@angular/core").WritableSignal<IEmitSelectKey | undefined>;
14
+ protected loadingUploadImage: WritableSignal<boolean>;
15
+ protected readonly timeDelayInit: WritableSignal<number>;
16
+ protected messageError: WritableSignal<string>;
17
+ protected display: WritableSignal<boolean>;
18
+ protected listConfigAlign: WritableSignal<IListConfigItem>;
19
+ protected alignSelected: WritableSignal<IEmitSelectKey | undefined>;
20
20
  protected iconAlignSelectedComputed: import("@angular/core").Signal<any>;
21
- protected listConfigFont: import("@angular/core").WritableSignal<IListConfigItem>;
22
- protected fontSelected: import("@angular/core").WritableSignal<IEmitSelectKey | undefined>;
21
+ protected listConfigFont: WritableSignal<IListConfigItem>;
22
+ protected fontSelected: 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>;
24
+ protected listConfigHeader: WritableSignal<IListConfigItem>;
25
+ protected headerSelected: WritableSignal<IEmitSelectKey | undefined>;
26
26
  protected labelHeaderSelectedComputed: import("@angular/core").Signal<any>;
27
- protected size: import("@angular/core").WritableSignal<{
27
+ protected size: WritableSignal<{
28
28
  value: number;
29
29
  }>;
30
- protected itemHiddenExpand: import("@angular/core").WritableSignal<number[]>;
31
- protected itemHidden: import("@angular/core").WritableSignal<number[]>;
32
- protected showMoreAction: import("@angular/core").WritableSignal<boolean>;
33
- protected link: import("@angular/core").WritableSignal<IQuillLink>;
34
- protected toolbarOptionsConfig: import("@angular/core").Signal<IQuillToolbarConfig[]>;
30
+ protected showMoreAction: WritableSignal<boolean>;
31
+ protected link: WritableSignal<IQuillLink>;
32
+ protected toolbarOptionsConfig: WritableSignal<Array<IQuillToolbarConfig>>;
33
+ protected displayShowMoreToolbar: import("@angular/core").Signal<boolean>;
34
+ protected displaySkeleton: import("@angular/core").Signal<boolean>;
35
35
  private timeCalculationToolBar;
36
36
  private popoverFunctionControl;
37
37
  private quill;
@@ -92,8 +92,7 @@ export declare class LibsUiComponentsInputsQuillComponent implements OnInit, Aft
92
92
  readonly editorEl: import("@angular/core").Signal<ElementRef<any>>;
93
93
  readonly quillOptionEl: import("@angular/core").Signal<ElementRef<any>>;
94
94
  readonly quillEditorEl: import("@angular/core").Signal<ElementRef<any>>;
95
- readonly toolbarItemsEl: import("@angular/core").Signal<ElementRef<any> | undefined>;
96
- readonly itemsEl: import("@angular/core").Signal<readonly ElementRef<any>[]>;
95
+ readonly toolbarItemsEl: import("@angular/core").Signal<ElementRef<any>>;
97
96
  private notificationService;
98
97
  constructor();
99
98
  ngOnInit(): void;