@progress/kendo-angular-editor 11.0.0-develop.112 → 11.0.0-develop.114
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/config/command-icons.d.ts +4 -0
- package/dialogs/colorpicker-dialog.component.d.ts +2 -0
- package/editor.module.d.ts +4 -3
- package/esm2020/config/command-icons.mjs +45 -0
- package/esm2020/dialogs/colorpicker-dialog.component.mjs +3 -0
- package/esm2020/editor.module.mjs +4 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/colorpicker/editor-back-color.directive.mjs +2 -1
- package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +20 -11
- package/esm2020/tools/colorpicker/editor-fore-color.directive.mjs +2 -1
- package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +8 -4
- package/esm2020/tools/fontsize/editor-fontsize.component.mjs +7 -4
- package/esm2020/tools/format/editor-format.component.mjs +7 -4
- package/esm2020/tools/shared/editor-command-base.mjs +20 -13
- package/esm2020/tools/tables/editor-insert-table-button.component.mjs +10 -5
- package/esm2020/tools/tables/popup-table-grid.component.mjs +4 -2
- package/esm2020/tools/tools.service.mjs +5 -4
- package/fesm2015/progress-kendo-angular-editor.mjs +120 -42
- package/fesm2020/progress-kendo-angular-editor.mjs +120 -42
- package/package.json +13 -12
- package/schematics/ngAdd/index.js +5 -3
- package/tools/colorpicker/editor-colorpicker.component.d.ts +7 -5
- package/tools/fontfamily/editor-fontfamily.component.d.ts +2 -0
- package/tools/fontsize/editor-fontsize.component.d.ts +2 -0
- package/tools/format/editor-format.component.d.ts +2 -0
- package/tools/tables/editor-insert-table-button.component.d.ts +2 -0
- package/tools/tables/popup-table-grid.component.d.ts +2 -0
- package/tools/tools.service.d.ts +3 -0
package/tools/tools.service.d.ts
CHANGED
|
@@ -2,13 +2,16 @@
|
|
|
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 { NgZone } from '@angular/core';
|
|
5
6
|
import { Subject } from 'rxjs';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
/**
|
|
8
9
|
* @hidden
|
|
9
10
|
*/
|
|
10
11
|
export declare class EditorToolsService {
|
|
12
|
+
zone: NgZone;
|
|
11
13
|
needsCheck: Subject<any>;
|
|
14
|
+
constructor(zone: NgZone);
|
|
12
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorToolsService, never>;
|
|
13
16
|
static ɵprov: i0.ɵɵInjectableDeclaration<EditorToolsService>;
|
|
14
17
|
}
|