@progress/kendo-angular-editor 11.0.0-develop.104 → 11.0.0-develop.106

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.
Files changed (29) hide show
  1. package/dialogs/file-link-dialog.component.d.ts +2 -2
  2. package/dialogs/image-dialog.component.d.ts +2 -2
  3. package/dialogs/source-dialog.component.d.ts +2 -2
  4. package/editor.component.d.ts +3 -2
  5. package/editor.module.d.ts +2 -1
  6. package/esm2020/dialogs/colorpicker-dialog.component.mjs +26 -34
  7. package/esm2020/dialogs/file-link-dialog.component.mjs +79 -77
  8. package/esm2020/dialogs/font-family-dialog.component.mjs +20 -28
  9. package/esm2020/dialogs/font-size-dialog.component.mjs +20 -28
  10. package/esm2020/dialogs/format-dialog.component.mjs +20 -28
  11. package/esm2020/dialogs/image-dialog.component.mjs +74 -63
  12. package/esm2020/dialogs/insert-table-dialog.component.mjs +6 -14
  13. package/esm2020/dialogs/source-dialog.component.mjs +9 -7
  14. package/esm2020/editor.component.mjs +29 -9
  15. package/esm2020/editor.module.mjs +11 -4
  16. package/esm2020/package-metadata.mjs +1 -1
  17. package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +8 -5
  18. package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +8 -5
  19. package/esm2020/tools/fontsize/editor-fontsize.component.mjs +8 -5
  20. package/esm2020/tools/format/editor-format.component.mjs +8 -5
  21. package/esm2020/tools/tables/editor-insert-table-button.component.mjs +8 -5
  22. package/fesm2015/progress-kendo-angular-editor.mjs +332 -321
  23. package/fesm2020/progress-kendo-angular-editor.mjs +332 -321
  24. package/package.json +12 -12
  25. package/tools/colorpicker/editor-colorpicker.component.d.ts +3 -2
  26. package/tools/fontfamily/editor-fontfamily.component.d.ts +3 -2
  27. package/tools/fontsize/editor-fontsize.component.d.ts +3 -2
  28. package/tools/format/editor-format.component.d.ts +3 -2
  29. package/tools/tables/editor-insert-table-button.component.d.ts +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-editor",
3
- "version": "11.0.0-develop.104",
3
+ "version": "11.0.0-develop.106",
4
4
  "description": "Kendo UI Editor for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -23,17 +23,17 @@
23
23
  "@progress/kendo-drawing": "^1.5.12",
24
24
  "@progress/kendo-editor-common": "1.9.3",
25
25
  "@progress/kendo-licensing": "^1.0.2",
26
- "@progress/kendo-angular-buttons": "11.0.0-develop.104",
27
- "@progress/kendo-angular-common": "11.0.0-develop.104",
28
- "@progress/kendo-angular-dialog": "11.0.0-develop.104",
29
- "@progress/kendo-angular-dropdowns": "11.0.0-develop.104",
30
- "@progress/kendo-angular-inputs": "11.0.0-develop.104",
31
- "@progress/kendo-angular-intl": "11.0.0-develop.104",
32
- "@progress/kendo-angular-l10n": "11.0.0-develop.104",
33
- "@progress/kendo-angular-layout": "11.0.0-develop.104",
34
- "@progress/kendo-angular-popup": "11.0.0-develop.104",
35
- "@progress/kendo-angular-schematics": "11.0.0-develop.104",
36
- "@progress/kendo-angular-toolbar": "11.0.0-develop.104",
26
+ "@progress/kendo-angular-buttons": "11.0.0-develop.106",
27
+ "@progress/kendo-angular-common": "11.0.0-develop.106",
28
+ "@progress/kendo-angular-dialog": "11.0.0-develop.106",
29
+ "@progress/kendo-angular-dropdowns": "11.0.0-develop.106",
30
+ "@progress/kendo-angular-inputs": "11.0.0-develop.106",
31
+ "@progress/kendo-angular-intl": "11.0.0-develop.106",
32
+ "@progress/kendo-angular-l10n": "11.0.0-develop.106",
33
+ "@progress/kendo-angular-layout": "11.0.0-develop.106",
34
+ "@progress/kendo-angular-popup": "11.0.0-develop.106",
35
+ "@progress/kendo-angular-schematics": "11.0.0-develop.106",
36
+ "@progress/kendo-angular-toolbar": "11.0.0-develop.106",
37
37
  "rxjs": "^6.5.3 || ^7.0.0"
38
38
  },
39
39
  "dependencies": {
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, NgZone } from '@angular/core';
5
+ import { TemplateRef, NgZone, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { PaletteSettings, ActiveColorClickEvent, ColorPickerComponent, ColorPickerView } from '@progress/kendo-angular-inputs';
8
8
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
@@ -18,6 +18,7 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
18
18
  private localization;
19
19
  private dialogService;
20
20
  private ngZone;
21
+ private renderer;
21
22
  tabindex: number;
22
23
  /**
23
24
  * Specifies the initial value of the color picker.
@@ -65,7 +66,7 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
65
66
  private valueCache;
66
67
  private editor;
67
68
  private activeView;
68
- constructor(localization: EditorLocalizationService, dialogService: DialogService, ngZone: NgZone, providerService: ProviderService);
69
+ constructor(localization: EditorLocalizationService, dialogService: DialogService, ngZone: NgZone, providerService: ProviderService, renderer: Renderer2);
69
70
  ngOnInit(): void;
70
71
  ngOnDestroy(): void;
71
72
  /**
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, ElementRef, EventEmitter } from '@angular/core';
5
+ import { TemplateRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { FontFamilyItem } from '../../common/font-family-item.interface';
8
8
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
@@ -26,6 +26,7 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
26
26
  private dialogService;
27
27
  private localization;
28
28
  private toolsService;
29
+ private renderer;
29
30
  value: string;
30
31
  disabled: boolean;
31
32
  tabindex: number;
@@ -57,7 +58,7 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
57
58
  private subs;
58
59
  private editor;
59
60
  private _data;
60
- constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
61
+ constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService, renderer: Renderer2);
61
62
  ngOnInit(): void;
62
63
  /**
63
64
  * @hidden
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, ElementRef, EventEmitter } from '@angular/core';
5
+ import { TemplateRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { ItemDisabledFn } from '@progress/kendo-angular-dropdowns';
8
8
  import { FontSizeItem } from '../../common/font-size-item.interface';
@@ -29,6 +29,7 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
29
29
  private dialogService;
30
30
  private localization;
31
31
  private toolsService;
32
+ private renderer;
32
33
  value: string;
33
34
  disabled: boolean;
34
35
  tabindex: number;
@@ -58,7 +59,7 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
58
59
  private subs;
59
60
  private editor;
60
61
  private _data;
61
- constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
62
+ constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService, renderer: Renderer2);
62
63
  ngOnInit(): void;
63
64
  /**
64
65
  * @hidden
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, EventEmitter, ElementRef } from '@angular/core';
5
+ import { TemplateRef, EventEmitter, ElementRef, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { ItemDisabledFn } from '@progress/kendo-angular-dropdowns';
8
8
  import { DialogService } from '@progress/kendo-angular-dialog';
@@ -27,6 +27,7 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
27
27
  private dialogService;
28
28
  private localization;
29
29
  private toolsService;
30
+ private renderer;
30
31
  value: string;
31
32
  defaultItem: FormatItem;
32
33
  itemDisabled: ItemDisabledFn;
@@ -48,7 +49,7 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
48
49
  private subs;
49
50
  private _data;
50
51
  private editor;
51
- constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
52
+ constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService, renderer: Renderer2);
52
53
  ngOnInit(): void;
53
54
  /**
54
55
  * @hidden
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2023 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, ElementRef, OnDestroy } from '@angular/core';
5
+ import { TemplateRef, ElementRef, OnDestroy, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { PopupRef, PopupService } from '@progress/kendo-angular-popup';
8
8
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
@@ -22,6 +22,7 @@ export declare class EditorInsertTableButtonComponent extends ToolBarToolCompone
22
22
  private localization;
23
23
  private popupService;
24
24
  private dialogService;
25
+ private renderer;
25
26
  toolbarTemplate: TemplateRef<any>;
26
27
  popupTemplate: TemplateRef<any>;
27
28
  element: ElementRef;
@@ -40,7 +41,7 @@ export declare class EditorInsertTableButtonComponent extends ToolBarToolCompone
40
41
  private cellClicked;
41
42
  private subs;
42
43
  private editor;
43
- constructor(localization: EditorLocalizationService, popupService: PopupService, dialogService: DialogService, providerService: ProviderService);
44
+ constructor(localization: EditorLocalizationService, popupService: PopupService, dialogService: DialogService, providerService: ProviderService, renderer: Renderer2);
44
45
  ngOnDestroy(): void;
45
46
  get outerWidth(): number;
46
47
  get title(): string;