@progress/kendo-angular-editor 4.1.12 → 4.2.0
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/bundles/kendo-angular-editor.umd.js +1 -1
- package/common/css-settings.interface.d.ts +23 -0
- package/editor.component.d.ts +8 -1
- package/editor.module.d.ts +1 -1
- package/esm2015/common/css-settings.interface.js +5 -0
- package/esm2015/common/provider.service.js +3 -3
- package/esm2015/dialogs/colorpicker-dialog.component.js +3 -3
- package/esm2015/dialogs/file-link-dialog.component.js +3 -3
- package/esm2015/dialogs/font-family-dialog.component.js +3 -3
- package/esm2015/dialogs/font-size-dialog.component.js +3 -3
- package/esm2015/dialogs/format-dialog.component.js +3 -3
- package/esm2015/dialogs/image-dialog.component.js +3 -3
- package/esm2015/dialogs/insert-table-dialog.component.js +3 -3
- package/esm2015/dialogs/source-dialog.component.js +3 -3
- package/esm2015/editor.component.js +32 -10
- package/esm2015/editor.module.js +5 -5
- package/esm2015/localization/custom-messages.component.js +3 -3
- package/esm2015/localization/editor-localization.service.js +3 -3
- package/esm2015/localization/localized-messages.directive.js +3 -3
- package/esm2015/localization/messages.js +3 -3
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/tools/alignment/editor-align-center-button.directive.js +3 -3
- package/esm2015/tools/alignment/editor-align-justify-button.directive.js +3 -3
- package/esm2015/tools/alignment/editor-align-left-button.directive.js +3 -3
- package/esm2015/tools/alignment/editor-align-right-button.directive.js +3 -3
- package/esm2015/tools/blockquote/editor-blockquote-button.directive.js +3 -3
- package/esm2015/tools/colorpicker/editor-back-color.directive.js +3 -3
- package/esm2015/tools/colorpicker/editor-colorpicker.component.js +4 -4
- package/esm2015/tools/colorpicker/editor-fore-color.directive.js +3 -3
- package/esm2015/tools/editor-clean-formatting-button.directive.js +3 -3
- package/esm2015/tools/fontfamily/editor-fontfamily-dropdownlist.component.js +3 -3
- package/esm2015/tools/fontfamily/editor-fontfamily.component.js +3 -3
- package/esm2015/tools/fontsize/editor-fontsize-dropdownlist.component.js +3 -3
- package/esm2015/tools/fontsize/editor-fontsize.component.js +3 -3
- package/esm2015/tools/format/editor-format-dropdownlist.component.js +3 -3
- package/esm2015/tools/format/editor-format.component.js +3 -3
- package/esm2015/tools/history/editor-redo-button.directive.js +3 -3
- package/esm2015/tools/history/editor-undo-button.directive.js +3 -3
- package/esm2015/tools/image/editor-insert-image-button.directive.js +3 -3
- package/esm2015/tools/indentation/editor-indent-button.directive.js +3 -3
- package/esm2015/tools/indentation/editor-outdent-button.directive.js +3 -3
- package/esm2015/tools/link/editor-create-link-button.directive.js +3 -3
- package/esm2015/tools/link/editor-insert-file-button.directive.js +3 -3
- package/esm2015/tools/link/editor-unlink-button.directive.js +3 -3
- package/esm2015/tools/list/editor-insert-ordered-list-button.directive.js +3 -3
- package/esm2015/tools/list/editor-insert-unordered-list-button.directive.js +3 -3
- package/esm2015/tools/print/editor-print-button.directive.js +3 -3
- package/esm2015/tools/select-all/select-all-button.directive.js +3 -3
- package/esm2015/tools/shared/dropdown-tool.directive.js +3 -3
- package/esm2015/tools/shared/editor-command-base.js +3 -3
- package/esm2015/tools/source/editor-view-source-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-add-column-after-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-add-column-before-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-add-row-after-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-add-row-before-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-delete-column-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-delete-row-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-delete-table-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-insert-table-button.component.js +3 -3
- package/esm2015/tools/tables/editor-merge-cells-button.directive.js +3 -3
- package/esm2015/tools/tables/editor-split-cell-button.directive.js +3 -3
- package/esm2015/tools/tables/popup-table-grid.component.js +3 -3
- package/esm2015/tools/tools.service.js +3 -3
- package/esm2015/tools/typographical-emphasis/editor-bold-button.directive.js +3 -3
- package/esm2015/tools/typographical-emphasis/editor-italic-button.directive.js +3 -3
- package/esm2015/tools/typographical-emphasis/editor-strikethrough-button.directive.js +3 -3
- package/esm2015/tools/typographical-emphasis/editor-subscript-button.directive.js +3 -3
- package/esm2015/tools/typographical-emphasis/editor-superscript-button.directive.js +3 -3
- package/esm2015/tools/typographical-emphasis/editor-underline-button.directive.js +3 -3
- package/fesm2015/kendo-angular-editor.js +222 -200
- package/main.d.ts +1 -0
- package/package.json +1 -1
|
@@ -25,9 +25,9 @@ export class EditorDeleteTableButtonDirective extends EditorCommandButton {
|
|
|
25
25
|
super('deleteTable', button, localization, providerService, toolsService);
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
EditorDeleteTableButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
29
|
-
EditorDeleteTableButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
28
|
+
EditorDeleteTableButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorDeleteTableButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
29
|
+
EditorDeleteTableButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorDeleteTableButtonDirective, selector: "kendo-toolbar-button[kendoEditorDeleteTableButton]", usesInheritance: true, ngImport: i0 });
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorDeleteTableButtonDirective, decorators: [{
|
|
31
31
|
type: Directive,
|
|
32
32
|
args: [{
|
|
33
33
|
selector: 'kendo-toolbar-button[kendoEditorDeleteTableButton]'
|
|
@@ -154,8 +154,8 @@ export class EditorInsertTableButtonComponent extends ToolBarToolComponent {
|
|
|
154
154
|
return (this.overflows ? this.overflowElement : this.element).nativeElement;
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
|
-
EditorInsertTableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
158
|
-
EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
157
|
+
EditorInsertTableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorInsertTableButtonComponent, deps: [{ token: i1.EditorLocalizationService }, { token: i2.PopupService }, { token: i3.DialogService }, { token: i4.ProviderService }], target: i0.ɵɵFactoryTarget.Component });
|
|
158
|
+
EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: EditorInsertTableButtonComponent, selector: "kendo-editor-insert-table-button", providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorInsertTableButtonComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true }, { propertyName: "element", first: true, predicate: ["element"], descendants: true }, { propertyName: "overflowElement", first: true, predicate: ["overflowElement"], descendants: true }, { propertyName: "popupGridTemplate", first: true, predicate: ["popupGridTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
159
159
|
<ng-template #toolbarTemplate>
|
|
160
160
|
<button
|
|
161
161
|
type="button"
|
|
@@ -185,7 +185,7 @@ EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
185
185
|
<kendo-popup-table-grid (cellClick)="onCellClick($event)" (tableWizardClick)="onTableWizardClick()"></kendo-popup-table-grid>
|
|
186
186
|
</ng-template>
|
|
187
187
|
`, isInline: true, components: [{ type: i5.PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }], directives: [{ type: i6.ButtonDirective, selector: "button[kendoButton], span[kendoButton]", inputs: ["toggleable", "togglable", "selected", "tabIndex", "icon", "iconClass", "imageUrl", "disabled", "size", "rounded", "fillMode", "themeColor", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorInsertTableButtonComponent, decorators: [{
|
|
189
189
|
type: Component,
|
|
190
190
|
args: [{
|
|
191
191
|
providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorInsertTableButtonComponent) }],
|
|
@@ -27,9 +27,9 @@ export class EditorMergeCellsButtonDirective extends EditorCommandButton {
|
|
|
27
27
|
super('mergeCells', button, localization, providerService, toolsService);
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
EditorMergeCellsButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
31
|
-
EditorMergeCellsButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
30
|
+
EditorMergeCellsButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorMergeCellsButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31
|
+
EditorMergeCellsButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorMergeCellsButtonDirective, selector: "kendo-toolbar-button[kendoEditorMergeCellsButton]", usesInheritance: true, ngImport: i0 });
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorMergeCellsButtonDirective, decorators: [{
|
|
33
33
|
type: Directive,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: 'kendo-toolbar-button[kendoEditorMergeCellsButton]'
|
|
@@ -27,9 +27,9 @@ export class EditorSplitCellButtonDirective extends EditorCommandButton {
|
|
|
27
27
|
super('splitCell', button, localization, providerService, toolsService);
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
EditorSplitCellButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
31
|
-
EditorSplitCellButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
30
|
+
EditorSplitCellButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorSplitCellButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
31
|
+
EditorSplitCellButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorSplitCellButtonDirective, selector: "kendo-toolbar-button[kendoEditorSplitCellButton]", usesInheritance: true, ngImport: i0 });
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorSplitCellButtonDirective, decorators: [{
|
|
33
33
|
type: Directive,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: 'kendo-toolbar-button[kendoEditorSplitCellButton]'
|
|
@@ -44,8 +44,8 @@ export class PopupTableGridComponent {
|
|
|
44
44
|
this.tableWizardClick.emit();
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
PopupTableGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
48
|
-
PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.
|
|
47
|
+
PopupTableGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: PopupTableGridComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
48
|
+
PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: { cellClick: "cellClick", tableWizardClick: "tableWizardClick" }, ngImport: i0, template: `
|
|
49
49
|
<div style="border-color: inherit;" (mouseleave)="resetState()" (click)="insertTable()">
|
|
50
50
|
<span *ngFor="let i of cells"
|
|
51
51
|
class="k-ct-cell"
|
|
@@ -61,7 +61,7 @@ PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
61
61
|
</div>
|
|
62
62
|
-->
|
|
63
63
|
`, isInline: true, directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
64
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
64
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: PopupTableGridComponent, decorators: [{
|
|
65
65
|
type: Component,
|
|
66
66
|
args: [{
|
|
67
67
|
selector: 'kendo-popup-table-grid',
|
|
@@ -13,8 +13,8 @@ export class EditorToolsService {
|
|
|
13
13
|
this.needsCheck = new Subject();
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
EditorToolsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
17
|
-
EditorToolsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.
|
|
18
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
16
|
+
EditorToolsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorToolsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
17
|
+
EditorToolsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorToolsService });
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorToolsService, decorators: [{
|
|
19
19
|
type: Injectable
|
|
20
20
|
}] });
|
|
@@ -32,9 +32,9 @@ export class EditorBoldButtonDirective extends EditorCommandButton {
|
|
|
32
32
|
super('bold', button, localization, providerService, toolsService);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
EditorBoldButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
36
|
-
EditorBoldButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
35
|
+
EditorBoldButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorBoldButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36
|
+
EditorBoldButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorBoldButtonDirective, selector: "kendo-toolbar-button[kendoEditorBoldButton]", usesInheritance: true, ngImport: i0 });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorBoldButtonDirective, decorators: [{
|
|
38
38
|
type: Directive,
|
|
39
39
|
args: [{
|
|
40
40
|
selector: 'kendo-toolbar-button[kendoEditorBoldButton]'
|
|
@@ -32,9 +32,9 @@ export class EditorItalicButtonDirective extends EditorCommandButton {
|
|
|
32
32
|
super('italic', button, localization, providerService, toolsService);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
EditorItalicButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
36
|
-
EditorItalicButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
35
|
+
EditorItalicButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorItalicButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36
|
+
EditorItalicButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorItalicButtonDirective, selector: "kendo-toolbar-button[kendoEditorItalicButton]", usesInheritance: true, ngImport: i0 });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorItalicButtonDirective, decorators: [{
|
|
38
38
|
type: Directive,
|
|
39
39
|
args: [{
|
|
40
40
|
selector: 'kendo-toolbar-button[kendoEditorItalicButton]'
|
|
@@ -32,9 +32,9 @@ export class EditorStrikethroughButtonDirective extends EditorCommandButton {
|
|
|
32
32
|
super('strikethrough', button, localization, providerService, toolsService);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
EditorStrikethroughButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
36
|
-
EditorStrikethroughButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
35
|
+
EditorStrikethroughButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorStrikethroughButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36
|
+
EditorStrikethroughButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorStrikethroughButtonDirective, selector: "kendo-toolbar-button[kendoEditorStrikethroughButton]", usesInheritance: true, ngImport: i0 });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorStrikethroughButtonDirective, decorators: [{
|
|
38
38
|
type: Directive,
|
|
39
39
|
args: [{
|
|
40
40
|
selector: 'kendo-toolbar-button[kendoEditorStrikethroughButton]'
|
|
@@ -32,9 +32,9 @@ export class EditorSubscriptButtonDirective extends EditorCommandButton {
|
|
|
32
32
|
super('subscript', button, localization, providerService, toolsService);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
EditorSubscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
36
|
-
EditorSubscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
35
|
+
EditorSubscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorSubscriptButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36
|
+
EditorSubscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorSubscriptButtonDirective, selector: "kendo-toolbar-button[kendoEditorSubscriptButton]", usesInheritance: true, ngImport: i0 });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorSubscriptButtonDirective, decorators: [{
|
|
38
38
|
type: Directive,
|
|
39
39
|
args: [{
|
|
40
40
|
selector: 'kendo-toolbar-button[kendoEditorSubscriptButton]'
|
|
@@ -32,9 +32,9 @@ export class EditorSuperscriptButtonDirective extends EditorCommandButton {
|
|
|
32
32
|
super('superscript', button, localization, providerService, toolsService);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
EditorSuperscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
36
|
-
EditorSuperscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
35
|
+
EditorSuperscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorSuperscriptButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36
|
+
EditorSuperscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorSuperscriptButtonDirective, selector: "kendo-toolbar-button[kendoEditorSuperscriptButton]", usesInheritance: true, ngImport: i0 });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorSuperscriptButtonDirective, decorators: [{
|
|
38
38
|
type: Directive,
|
|
39
39
|
args: [{
|
|
40
40
|
selector: 'kendo-toolbar-button[kendoEditorSuperscriptButton]'
|
|
@@ -32,9 +32,9 @@ export class EditorUnderlineButtonDirective extends EditorCommandButton {
|
|
|
32
32
|
super('underline', button, localization, providerService, toolsService);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
EditorUnderlineButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.
|
|
36
|
-
EditorUnderlineButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.
|
|
35
|
+
EditorUnderlineButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorUnderlineButtonDirective, deps: [{ token: i1.ToolBarButtonComponent }, { token: i2.EditorLocalizationService }, { token: i3.ProviderService }, { token: i4.EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
36
|
+
EditorUnderlineButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.17", type: EditorUnderlineButtonDirective, selector: "kendo-toolbar-button[kendoEditorUnderlineButton]", usesInheritance: true, ngImport: i0 });
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: EditorUnderlineButtonDirective, decorators: [{
|
|
38
38
|
type: Directive,
|
|
39
39
|
args: [{
|
|
40
40
|
selector: 'kendo-toolbar-button[kendoEditorUnderlineButton]'
|