@progress/kendo-angular-editor 16.5.0 → 16.6.0-develop.10
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/NOTICE.txt +12 -19
- package/dialogs/colorpicker-dialog.component.d.ts +2 -2
- package/dialogs/file-link-dialog.component.d.ts +2 -2
- package/dialogs/font-family-dialog.component.d.ts +1 -1
- package/dialogs/font-size-dialog.component.d.ts +1 -1
- package/dialogs/format-dialog.component.d.ts +1 -1
- package/dialogs/image-dialog.component.d.ts +2 -2
- package/dialogs/insert-table-dialog.component.d.ts +1 -1
- package/dialogs/source-dialog.component.d.ts +1 -1
- package/directives.d.ts +51 -0
- package/editor.component.d.ts +7 -7
- package/editor.module.d.ts +14 -36
- package/esm2020/dialogs/colorpicker-dialog.component.mjs +7 -6
- package/esm2020/dialogs/file-link-dialog.component.mjs +12 -11
- package/esm2020/dialogs/font-family-dialog.component.mjs +7 -6
- package/esm2020/dialogs/font-size-dialog.component.mjs +7 -6
- package/esm2020/dialogs/format-dialog.component.mjs +7 -6
- package/esm2020/dialogs/image-dialog.component.mjs +11 -10
- package/esm2020/dialogs/insert-table-dialog.component.mjs +8 -6
- package/esm2020/dialogs/source-dialog.component.mjs +7 -6
- package/esm2020/directives.mjs +95 -0
- package/esm2020/editor.component.mjs +30 -30
- package/esm2020/editor.module.mjs +55 -348
- package/esm2020/index.mjs +1 -0
- package/esm2020/localization/custom-messages.component.mjs +3 -2
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/alignment/editor-align-center-button.directive.mjs +3 -2
- package/esm2020/tools/alignment/editor-align-justify-button.directive.mjs +3 -2
- package/esm2020/tools/alignment/editor-align-left-button.directive.mjs +3 -2
- package/esm2020/tools/alignment/editor-align-right-button.directive.mjs +3 -2
- package/esm2020/tools/blockquote/editor-blockquote-button.directive.mjs +3 -2
- package/esm2020/tools/colorpicker/editor-back-color.directive.mjs +3 -2
- package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +9 -8
- package/esm2020/tools/colorpicker/editor-fore-color.directive.mjs +3 -2
- package/esm2020/tools/editor-clean-formatting-button.directive.mjs +3 -2
- package/esm2020/tools/fontfamily/editor-fontfamily-dropdownlist.component.mjs +8 -7
- package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +9 -8
- package/esm2020/tools/fontsize/editor-fontsize-dropdownlist.component.mjs +6 -5
- package/esm2020/tools/fontsize/editor-fontsize.component.mjs +9 -8
- package/esm2020/tools/format/editor-format-dropdownlist.component.mjs +8 -7
- package/esm2020/tools/format/editor-format.component.mjs +8 -7
- package/esm2020/tools/history/editor-redo-button.directive.mjs +3 -2
- package/esm2020/tools/history/editor-undo-button.directive.mjs +3 -2
- package/esm2020/tools/image/editor-insert-image-button.directive.mjs +3 -2
- package/esm2020/tools/indentation/editor-indent-button.directive.mjs +3 -2
- package/esm2020/tools/indentation/editor-outdent-button.directive.mjs +3 -2
- package/esm2020/tools/link/editor-create-link-button.directive.mjs +3 -2
- package/esm2020/tools/link/editor-insert-file-button.directive.mjs +3 -2
- package/esm2020/tools/link/editor-unlink-button.directive.mjs +3 -2
- package/esm2020/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -2
- package/esm2020/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -2
- package/esm2020/tools/print/editor-print-button.directive.mjs +3 -2
- package/esm2020/tools/select-all/select-all-button.directive.mjs +3 -2
- package/esm2020/tools/shared/dropdown-tool.directive.mjs +5 -2
- package/esm2020/tools/source/editor-view-source-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-column-after-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-column-before-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-row-after-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-add-row-before-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-delete-column-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-delete-row-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-delete-table-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-insert-table-button.component.mjs +11 -9
- package/esm2020/tools/tables/editor-merge-cells-button.directive.mjs +3 -2
- package/esm2020/tools/tables/editor-split-cell-button.directive.mjs +3 -2
- package/esm2020/tools/tables/popup-table-grid.component.mjs +6 -4
- package/esm2020/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -2
- package/esm2020/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -2
- package/fesm2015/progress-kendo-angular-editor.mjs +692 -857
- package/fesm2020/progress-kendo-angular-editor.mjs +669 -833
- package/index.d.ts +1 -0
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/package.json +15 -15
- package/schematics/ngAdd/index.js +4 -4
- package/tools/alignment/editor-align-center-button.directive.d.ts +1 -1
- package/tools/alignment/editor-align-justify-button.directive.d.ts +1 -1
- package/tools/alignment/editor-align-left-button.directive.d.ts +1 -1
- package/tools/alignment/editor-align-right-button.directive.d.ts +1 -1
- package/tools/blockquote/editor-blockquote-button.directive.d.ts +1 -1
- package/tools/colorpicker/editor-back-color.directive.d.ts +1 -1
- package/tools/colorpicker/editor-colorpicker.component.d.ts +3 -3
- package/tools/colorpicker/editor-fore-color.directive.d.ts +1 -1
- package/tools/editor-clean-formatting-button.directive.d.ts +1 -1
- package/tools/fontfamily/editor-fontfamily-dropdownlist.component.d.ts +1 -1
- package/tools/fontfamily/editor-fontfamily.component.d.ts +3 -3
- package/tools/fontsize/editor-fontsize-dropdownlist.component.d.ts +1 -1
- package/tools/fontsize/editor-fontsize.component.d.ts +3 -3
- package/tools/format/editor-format-dropdownlist.component.d.ts +1 -1
- package/tools/format/editor-format.component.d.ts +2 -2
- package/tools/history/editor-redo-button.directive.d.ts +1 -1
- package/tools/history/editor-undo-button.directive.d.ts +1 -1
- package/tools/image/editor-insert-image-button.directive.d.ts +1 -1
- package/tools/indentation/editor-indent-button.directive.d.ts +1 -1
- package/tools/indentation/editor-outdent-button.directive.d.ts +1 -1
- package/tools/link/editor-create-link-button.directive.d.ts +1 -1
- package/tools/link/editor-insert-file-button.directive.d.ts +1 -1
- package/tools/link/editor-unlink-button.directive.d.ts +1 -1
- package/tools/list/editor-insert-ordered-list-button.directive.d.ts +1 -1
- package/tools/list/editor-insert-unordered-list-button.directive.d.ts +1 -1
- package/tools/print/editor-print-button.directive.d.ts +1 -1
- package/tools/select-all/select-all-button.directive.d.ts +1 -1
- package/tools/shared/dropdown-tool.directive.d.ts +1 -1
- package/tools/source/editor-view-source-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-column-after-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-column-before-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-row-after-button.directive.d.ts +1 -1
- package/tools/tables/editor-add-row-before-button.directive.d.ts +1 -1
- package/tools/tables/editor-delete-column-button.directive.d.ts +1 -1
- package/tools/tables/editor-delete-row-button.directive.d.ts +1 -1
- package/tools/tables/editor-delete-table-button.directive.d.ts +1 -1
- package/tools/tables/editor-insert-table-button.component.d.ts +3 -3
- package/tools/tables/editor-merge-cells-button.directive.d.ts +1 -1
- package/tools/tables/editor-split-cell-button.directive.d.ts +1 -1
- package/tools/tables/popup-table-grid.component.d.ts +1 -1
- package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +1 -1
- package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -65,3 +65,4 @@ export { EditorSelectAllButtonDirective } from './tools/select-all/select-all-bu
|
|
|
65
65
|
export { PreventableEvent } from './preventable-events/preventable-event';
|
|
66
66
|
export { EditorCssSettings } from './common/css-settings.interface';
|
|
67
67
|
export { EditorLocalizationService } from './localization/editor-localization.service';
|
|
68
|
+
export * from './directives';
|
|
@@ -14,5 +14,5 @@ export declare class CustomMessagesComponent extends MessagesDirective {
|
|
|
14
14
|
constructor(service: LocalizationService);
|
|
15
15
|
protected get override(): boolean;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomMessagesComponent, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomMessagesComponent, "kendo-editor-messages", never, {}, {}, never, never,
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomMessagesComponent, "kendo-editor-messages", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -12,5 +12,5 @@ export declare class LocalizedMessagesDirective extends MessagesDirective {
|
|
|
12
12
|
protected service: LocalizationService;
|
|
13
13
|
constructor(service: LocalizationService);
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoEditorLocalizedMessages]", never, {}, {}, never, never,
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoEditorLocalizedMessages]", never, {}, {}, never, never, true, never>;
|
|
16
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-editor",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.10",
|
|
4
4
|
"description": "Kendo UI Editor for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,24 +23,24 @@
|
|
|
23
23
|
"@angular/platform-browser": "15 - 18",
|
|
24
24
|
"@progress/kendo-drawing": "^1.19.0",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-buttons": "16.
|
|
27
|
-
"@progress/kendo-angular-common": "16.
|
|
28
|
-
"@progress/kendo-angular-dialog": "16.
|
|
29
|
-
"@progress/kendo-angular-dropdowns": "16.
|
|
30
|
-
"@progress/kendo-angular-inputs": "16.
|
|
31
|
-
"@progress/kendo-angular-intl": "16.
|
|
32
|
-
"@progress/kendo-angular-l10n": "16.
|
|
33
|
-
"@progress/kendo-angular-label": "16.
|
|
34
|
-
"@progress/kendo-angular-layout": "16.
|
|
35
|
-
"@progress/kendo-angular-icons": "16.
|
|
36
|
-
"@progress/kendo-angular-popup": "16.
|
|
37
|
-
"@progress/kendo-angular-toolbar": "16.
|
|
26
|
+
"@progress/kendo-angular-buttons": "16.6.0-develop.10",
|
|
27
|
+
"@progress/kendo-angular-common": "16.6.0-develop.10",
|
|
28
|
+
"@progress/kendo-angular-dialog": "16.6.0-develop.10",
|
|
29
|
+
"@progress/kendo-angular-dropdowns": "16.6.0-develop.10",
|
|
30
|
+
"@progress/kendo-angular-inputs": "16.6.0-develop.10",
|
|
31
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.10",
|
|
32
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.10",
|
|
33
|
+
"@progress/kendo-angular-label": "16.6.0-develop.10",
|
|
34
|
+
"@progress/kendo-angular-layout": "16.6.0-develop.10",
|
|
35
|
+
"@progress/kendo-angular-icons": "16.6.0-develop.10",
|
|
36
|
+
"@progress/kendo-angular-popup": "16.6.0-develop.10",
|
|
37
|
+
"@progress/kendo-angular-toolbar": "16.6.0-develop.10",
|
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"tslib": "^2.3.1",
|
|
42
|
-
"@progress/kendo-angular-schematics": "16.
|
|
43
|
-
"@progress/kendo-editor-common": "1.11.
|
|
42
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.10",
|
|
43
|
+
"@progress/kendo-editor-common": "1.11.6"
|
|
44
44
|
},
|
|
45
45
|
"schematics": "./schematics/collection.json",
|
|
46
46
|
"module": "fesm2015/progress-kendo-angular-editor.mjs",
|
|
@@ -4,12 +4,12 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
4
4
|
function default_1(options) {
|
|
5
5
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'EditorModule', package: 'editor', peerDependencies: {
|
|
6
6
|
// peer dependencies of kendo-angular-dropdowns
|
|
7
|
-
'@progress/kendo-angular-navigation': '16.
|
|
8
|
-
'@progress/kendo-angular-treeview': '16.
|
|
7
|
+
'@progress/kendo-angular-navigation': '16.6.0-develop.10',
|
|
8
|
+
'@progress/kendo-angular-treeview': '16.6.0-develop.10',
|
|
9
9
|
// peer dependency of kendo-angular-layout
|
|
10
|
-
'@progress/kendo-angular-progressbar': '16.
|
|
10
|
+
'@progress/kendo-angular-progressbar': '16.6.0-develop.10',
|
|
11
11
|
// peer dependency of kendo-angular-inputs
|
|
12
|
-
'@progress/kendo-angular-dialog': '16.
|
|
12
|
+
'@progress/kendo-angular-dialog': '16.6.0-develop.10',
|
|
13
13
|
// Peer dependency of icons
|
|
14
14
|
'@progress/kendo-svg-icons': '^3.0.0'
|
|
15
15
|
} });
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAlignCenterButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignCenterButtonDirective, "kendo-toolbar-button[kendoEditorAlignCenterButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignCenterButtonDirective, "kendo-toolbar-button[kendoEditorAlignCenterButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAlignJustifyButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAlignJustifyButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignJustifyButtonDirective, "kendo-toolbar-button[kendoEditorAlignJustifyButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignJustifyButtonDirective, "kendo-toolbar-button[kendoEditorAlignJustifyButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAlignLeftButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignLeftButtonDirective, "kendo-toolbar-button[kendoEditorAlignLeftButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignLeftButtonDirective, "kendo-toolbar-button[kendoEditorAlignLeftButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAlignRightButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignRightButtonDirective, "kendo-toolbar-button[kendoEditorAlignRightButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAlignRightButtonDirective, "kendo-toolbar-button[kendoEditorAlignRightButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -21,5 +21,5 @@ import * as i0 from "@angular/core";
|
|
|
21
21
|
export declare class EditorBlockquoteDirective extends EditorCommandButton {
|
|
22
22
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorBlockquoteDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBlockquoteDirective, "kendo-toolbar-button[kendoEditorBlockquoteButton]", never, {}, {}, never, never,
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBlockquoteDirective, "kendo-toolbar-button[kendoEditorBlockquoteButton]", never, {}, {}, never, never, true, never>;
|
|
25
25
|
}
|
|
@@ -17,5 +17,5 @@ export declare class EditorBackColorDirective {
|
|
|
17
17
|
private colorPicker;
|
|
18
18
|
constructor(colorPicker: EditorColorPickerComponent);
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorBackColorDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBackColorDirective, "[kendoEditorBackColor]", never, {}, {}, never, never,
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBackColorDirective, "[kendoEditorBackColor]", never, {}, {}, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -5,10 +5,10 @@
|
|
|
5
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
|
-
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
9
8
|
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
10
|
-
import { ProviderService } from '../../common/provider.service';
|
|
11
9
|
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
|
+
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
11
|
+
import { ProviderService } from '../../common/provider.service';
|
|
12
12
|
import * as i0 from "@angular/core";
|
|
13
13
|
/**
|
|
14
14
|
* A component which configures an existing ColorPickerComponent as a ToolBar tool.
|
|
@@ -122,5 +122,5 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
|
|
|
122
122
|
*/
|
|
123
123
|
handleKey(): boolean;
|
|
124
124
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorColorPickerComponent, never>;
|
|
125
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorColorPickerComponent, "kendo-toolbar-colorpicker", never, { "value": "value"; "icon": "icon"; "svgIcon": "svgIcon"; "paletteSettings": "paletteSettings"; "editorCommand": "editorCommand"; "disabled": "disabled"; "views": "views"; "view": "view"; }, {}, never, never,
|
|
125
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorColorPickerComponent, "kendo-toolbar-colorpicker", never, { "value": "value"; "icon": "icon"; "svgIcon": "svgIcon"; "paletteSettings": "paletteSettings"; "editorCommand": "editorCommand"; "disabled": "disabled"; "views": "views"; "view": "view"; }, {}, never, never, true, never>;
|
|
126
126
|
}
|
|
@@ -17,5 +17,5 @@ export declare class EditorForeColorDirective {
|
|
|
17
17
|
private colorPicker;
|
|
18
18
|
constructor(colorPicker: EditorColorPickerComponent);
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorForeColorDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorForeColorDirective, "[kendoEditorForeColor]", never, {}, {}, never, never,
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorForeColorDirective, "[kendoEditorForeColor]", never, {}, {}, never, never, true, never>;
|
|
21
21
|
}
|
|
@@ -21,5 +21,5 @@ import * as i0 from "@angular/core";
|
|
|
21
21
|
export declare class EditorCleanFormattingButtonDirective extends EditorCommandButton {
|
|
22
22
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorCleanFormattingButtonDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorCleanFormattingButtonDirective, "kendo-toolbar-button[kendoEditorCleanFormattingButton]", never, {}, {}, never, never,
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorCleanFormattingButtonDirective, "kendo-toolbar-button[kendoEditorCleanFormattingButton]", never, {}, {}, never, never, true, never>;
|
|
25
25
|
}
|
|
@@ -23,5 +23,5 @@ export declare class FontFamilyDropDownListComponent {
|
|
|
23
23
|
onValueChange(tag: string): void;
|
|
24
24
|
focus(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<FontFamilyDropDownListComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDropDownListComponent, "kendo-editor-fontfamily-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never,
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDropDownListComponent, "kendo-editor-fontfamily-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { TemplateRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
|
|
6
6
|
import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
|
|
7
|
+
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
7
9
|
import { FontFamilyItem } from '../../common/font-family-item.interface';
|
|
8
10
|
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
9
|
-
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
10
11
|
import { FontFamilyDropDownListComponent } from './editor-fontfamily-dropdownlist.component';
|
|
11
12
|
import { ProviderService } from '../../common/provider.service';
|
|
12
13
|
import { EditorToolsService } from '../tools.service';
|
|
13
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
/**
|
|
16
16
|
* A component which configures an existing `DropDownListComponent` as an Editor tool
|
|
@@ -86,5 +86,5 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
|
|
|
86
86
|
*/
|
|
87
87
|
handleKey(): boolean;
|
|
88
88
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorFontFamilyComponent, never>;
|
|
89
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontFamilyComponent, "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never,
|
|
89
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontFamilyComponent, "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
90
90
|
}
|
|
@@ -23,5 +23,5 @@ export declare class FontSizeDropDownListComponent {
|
|
|
23
23
|
onValueChange(size: string): void;
|
|
24
24
|
focus(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<FontSizeDropDownListComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDropDownListComponent, "kendo-editor-fontsize-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never,
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDropDownListComponent, "kendo-editor-fontsize-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -5,13 +5,13 @@
|
|
|
5
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
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
|
+
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
8
10
|
import { FontSizeItem } from '../../common/font-size-item.interface';
|
|
9
11
|
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
10
|
-
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
11
12
|
import { FontSizeDropDownListComponent } from './editor-fontsize-dropdownlist.component';
|
|
12
13
|
import { ProviderService } from '../../common/provider.service';
|
|
13
14
|
import { EditorToolsService } from '../tools.service';
|
|
14
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
/**
|
|
17
17
|
* A component which configures an existing `DropDownListComponent` as an Editor tool
|
|
@@ -85,5 +85,5 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
|
|
|
85
85
|
*/
|
|
86
86
|
handleKey(): boolean;
|
|
87
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorFontSizeComponent, never>;
|
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontSizeComponent, "kendo-toolbar-dropdownlist[kendoEditorFontSize]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never,
|
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontSizeComponent, "kendo-toolbar-dropdownlist[kendoEditorFontSize]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
89
89
|
}
|
|
@@ -23,5 +23,5 @@ export declare class FormatDropDownListComponent {
|
|
|
23
23
|
onValueChange(tag: string): void;
|
|
24
24
|
focus(): void;
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormatDropDownListComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormatDropDownListComponent, "kendo-editor-format-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never,
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormatDropDownListComponent, "kendo-editor-format-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
27
27
|
}
|
|
@@ -6,12 +6,12 @@ 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';
|
|
9
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
9
10
|
import { FormatItem } from '../../common/format-item.interface';
|
|
10
11
|
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
11
12
|
import { FormatDropDownListComponent } from './editor-format-dropdownlist.component';
|
|
12
13
|
import { ProviderService } from '../../common/provider.service';
|
|
13
14
|
import { EditorToolsService } from '../tools.service';
|
|
14
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
15
15
|
import * as i0 from "@angular/core";
|
|
16
16
|
/**
|
|
17
17
|
* A component which configures an existing `DropDownListComponent` as an Editor tool
|
|
@@ -77,5 +77,5 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
|
|
|
77
77
|
*/
|
|
78
78
|
handleKey(): boolean;
|
|
79
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorFormatComponent, never>;
|
|
80
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorFormatComponent, "kendo-toolbar-dropdownlist[kendoEditorFormat]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never,
|
|
80
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorFormatComponent, "kendo-toolbar-dropdownlist[kendoEditorFormat]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
81
81
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorRedoButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorRedoButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorRedoButtonDirective, "kendo-toolbar-button[kendoEditorRedoButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorRedoButtonDirective, "kendo-toolbar-button[kendoEditorRedoButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorUndoButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorUndoButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUndoButtonDirective, "kendo-toolbar-button[kendoEditorUndoButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUndoButtonDirective, "kendo-toolbar-button[kendoEditorUndoButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -21,5 +21,5 @@ import * as i0 from "@angular/core";
|
|
|
21
21
|
export declare class EditorInsertImageButtonDirective extends EditorCommandDialog {
|
|
22
22
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertImageButtonDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertImageButtonDirective, "kendo-toolbar-button[kendoEditorInsertImageButton]", never, {}, {}, never, never,
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertImageButtonDirective, "kendo-toolbar-button[kendoEditorInsertImageButton]", never, {}, {}, never, never, true, never>;
|
|
25
25
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorIndentButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorIndentButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorIndentButtonDirective, "kendo-toolbar-button[kendoEditorIndentButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorIndentButtonDirective, "kendo-toolbar-button[kendoEditorIndentButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorOutdentButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorOutdentButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorOutdentButtonDirective, "kendo-toolbar-button[kendoEditorOutdentButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorOutdentButtonDirective, "kendo-toolbar-button[kendoEditorOutdentButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorCreateLinkButtonDirective extends EditorCommandDialog {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorCreateLinkButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorCreateLinkButtonDirective, "kendo-toolbar-button[kendoEditorCreateLinkButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorCreateLinkButtonDirective, "kendo-toolbar-button[kendoEditorCreateLinkButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -21,5 +21,5 @@ import * as i0 from "@angular/core";
|
|
|
21
21
|
export declare class EditorInsertFileButtonDirective extends EditorCommandDialog {
|
|
22
22
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertFileButtonDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertFileButtonDirective, "kendo-toolbar-button[kendoEditorInsertFileButton]", never, {}, {}, never, never,
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertFileButtonDirective, "kendo-toolbar-button[kendoEditorInsertFileButton]", never, {}, {}, never, never, true, never>;
|
|
25
25
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorUnlinkButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorUnlinkButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUnlinkButtonDirective, "kendo-toolbar-button[kendoEditorUnlinkButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUnlinkButtonDirective, "kendo-toolbar-button[kendoEditorUnlinkButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertOrderedListButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertOrderedListButtonDirective, "kendo-toolbar-button[kendoEditorInsertOrderedListButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertOrderedListButtonDirective, "kendo-toolbar-button[kendoEditorInsertOrderedListButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertUnorderedListButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertUnorderedListButtonDirective, "kendo-toolbar-button[kendoEditorInsertUnorderedListButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertUnorderedListButtonDirective, "kendo-toolbar-button[kendoEditorInsertUnorderedListButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -25,5 +25,5 @@ export declare class EditorPrintDirective extends EditorCommandButton {
|
|
|
25
25
|
ngAfterViewInit(): void;
|
|
26
26
|
protected clickHandler(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorPrintDirective, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorPrintDirective, "kendo-toolbar-button[kendoEditorPrintButton]", never, {}, {}, never, never,
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorPrintDirective, "kendo-toolbar-button[kendoEditorPrintButton]", never, {}, {}, never, never, true, never>;
|
|
29
29
|
}
|
|
@@ -22,5 +22,5 @@ export declare class EditorSelectAllButtonDirective extends EditorCommandButton
|
|
|
22
22
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
23
23
|
protected clickHandler(): void;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorSelectAllButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSelectAllButtonDirective, "kendo-toolbar-button[kendoEditorSelectAllButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSelectAllButtonDirective, "kendo-toolbar-button[kendoEditorSelectAllButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -16,5 +16,5 @@ export declare class DropDownToolDirective {
|
|
|
16
16
|
ngOnDestroy(): void;
|
|
17
17
|
private preventDefault;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropDownToolDirective, never>;
|
|
19
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownToolDirective, "[kendoEditorDropDownTool]", never, {}, {}, never, never,
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownToolDirective, "[kendoEditorDropDownTool]", never, {}, {}, never, never, true, never>;
|
|
20
20
|
}
|
|
@@ -21,5 +21,5 @@ import * as i0 from "@angular/core";
|
|
|
21
21
|
export declare class EditorViewSourceButtonDirective extends EditorCommandDialog {
|
|
22
22
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorViewSourceButtonDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorViewSourceButtonDirective, "kendo-toolbar-button[kendoEditorViewSourceButton]", never, {}, {}, never, never,
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorViewSourceButtonDirective, "kendo-toolbar-button[kendoEditorViewSourceButton]", never, {}, {}, never, never, true, never>;
|
|
25
25
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAddColumnAfterButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAddColumnAfterButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddColumnAfterButtonDirective, "kendo-toolbar-button[kendoEditorAddColumnAfterButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddColumnAfterButtonDirective, "kendo-toolbar-button[kendoEditorAddColumnAfterButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAddColumnBeforeButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAddColumnBeforeButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddColumnBeforeButtonDirective, "kendo-toolbar-button[kendoEditorAddColumnBeforeButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddColumnBeforeButtonDirective, "kendo-toolbar-button[kendoEditorAddColumnBeforeButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAddRowAfterButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAddRowAfterButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddRowAfterButtonDirective, "kendo-toolbar-button[kendoEditorAddRowAfterButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddRowAfterButtonDirective, "kendo-toolbar-button[kendoEditorAddRowAfterButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorAddRowBeforeButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorAddRowBeforeButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddRowBeforeButtonDirective, "kendo-toolbar-button[kendoEditorAddRowBeforeButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorAddRowBeforeButtonDirective, "kendo-toolbar-button[kendoEditorAddRowBeforeButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorDeleteColumnButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorDeleteColumnButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorDeleteColumnButtonDirective, "kendo-toolbar-button[kendoEditorDeleteColumnButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorDeleteColumnButtonDirective, "kendo-toolbar-button[kendoEditorDeleteColumnButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorDeleteRowButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorDeleteRowButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorDeleteRowButtonDirective, "kendo-toolbar-button[kendoEditorDeleteRowButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorDeleteRowButtonDirective, "kendo-toolbar-button[kendoEditorDeleteRowButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorDeleteTableButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorDeleteTableButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorDeleteTableButtonDirective, "kendo-toolbar-button[kendoEditorDeleteTableButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorDeleteTableButtonDirective, "kendo-toolbar-button[kendoEditorDeleteTableButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -5,11 +5,11 @@
|
|
|
5
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
|
-
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
9
8
|
import { DialogService } from '@progress/kendo-angular-dialog';
|
|
9
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
10
|
+
import { EditorLocalizationService } from '../../localization/editor-localization.service';
|
|
10
11
|
import { ProviderService } from '../../common/provider.service';
|
|
11
12
|
import { TableData } from '../../common/table-data.interface';
|
|
12
|
-
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
/**
|
|
15
15
|
* A toolbar component which allows the user to create and insert a table in the Editor's content.
|
|
@@ -83,5 +83,5 @@ export declare class EditorInsertTableButtonComponent extends ToolBarToolCompone
|
|
|
83
83
|
private destroyPopup;
|
|
84
84
|
private getButton;
|
|
85
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertTableButtonComponent, never>;
|
|
86
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditorInsertTableButtonComponent, "kendo-editor-insert-table-button", never, {}, {}, never, never,
|
|
86
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorInsertTableButtonComponent, "kendo-editor-insert-table-button", never, {}, {}, never, never, true, never>;
|
|
87
87
|
}
|
|
@@ -24,5 +24,5 @@ import * as i0 from "@angular/core";
|
|
|
24
24
|
export declare class EditorMergeCellsButtonDirective extends EditorCommandButton {
|
|
25
25
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorMergeCellsButtonDirective, never>;
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorMergeCellsButtonDirective, "kendo-toolbar-button[kendoEditorMergeCellsButton]", never, {}, {}, never, never,
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorMergeCellsButtonDirective, "kendo-toolbar-button[kendoEditorMergeCellsButton]", never, {}, {}, never, never, true, never>;
|
|
28
28
|
}
|
|
@@ -24,5 +24,5 @@ import * as i0 from "@angular/core";
|
|
|
24
24
|
export declare class EditorSplitCellButtonDirective extends EditorCommandButton {
|
|
25
25
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorSplitCellButtonDirective, never>;
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSplitCellButtonDirective, "kendo-toolbar-button[kendoEditorSplitCellButton]", never, {}, {}, never, never,
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSplitCellButtonDirective, "kendo-toolbar-button[kendoEditorSplitCellButton]", never, {}, {}, never, never, true, never>;
|
|
28
28
|
}
|
|
@@ -27,5 +27,5 @@ export declare class PopupTableGridComponent {
|
|
|
27
27
|
insertTable(): void;
|
|
28
28
|
openTableWizard(): void;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopupTableGridComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopupTableGridComponent, "kendo-popup-table-grid", never, {}, { "cellClick": "cellClick"; "tableWizardClick": "tableWizardClick"; }, never, never,
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopupTableGridComponent, "kendo-popup-table-grid", never, {}, { "cellClick": "cellClick"; "tableWizardClick": "tableWizardClick"; }, never, never, true, never>;
|
|
31
31
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorBoldButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorBoldButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBoldButtonDirective, "kendo-toolbar-button[kendoEditorBoldButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorBoldButtonDirective, "kendo-toolbar-button[kendoEditorBoldButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorItalicButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorItalicButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorItalicButtonDirective, "kendo-toolbar-button[kendoEditorItalicButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorItalicButtonDirective, "kendo-toolbar-button[kendoEditorItalicButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorStrikethroughButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorStrikethroughButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorStrikethroughButtonDirective, "kendo-toolbar-button[kendoEditorStrikethroughButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorStrikethroughButtonDirective, "kendo-toolbar-button[kendoEditorStrikethroughButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorSubscriptButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorSubscriptButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSubscriptButtonDirective, "kendo-toolbar-button[kendoEditorSubscriptButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSubscriptButtonDirective, "kendo-toolbar-button[kendoEditorSubscriptButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorSuperscriptButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorSuperscriptButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSuperscriptButtonDirective, "kendo-toolbar-button[kendoEditorSuperscriptButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSuperscriptButtonDirective, "kendo-toolbar-button[kendoEditorSuperscriptButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|
|
@@ -22,5 +22,5 @@ import * as i0 from "@angular/core";
|
|
|
22
22
|
export declare class EditorUnderlineButtonDirective extends EditorCommandButton {
|
|
23
23
|
constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorUnderlineButtonDirective, never>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUnderlineButtonDirective, "kendo-toolbar-button[kendoEditorUnderlineButton]", never, {}, {}, never, never,
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUnderlineButtonDirective, "kendo-toolbar-button[kendoEditorUnderlineButton]", never, {}, {}, never, never, true, never>;
|
|
26
26
|
}
|