@progress/kendo-angular-editor 16.5.0 → 16.6.0-develop.1
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/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 +97 -0
- package/esm2020/editor.component.mjs +30 -30
- package/esm2020/editor.module.mjs +56 -349
- 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 +693 -857
- package/fesm2020/progress-kendo-angular-editor.mjs +670 -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 +14 -14
- 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
|
@@ -3,36 +3,30 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { Injectable, Inject, Optional, Component, Input, ViewChild, InjectionToken, Directive,
|
|
7
|
-
import
|
|
8
|
-
import
|
|
6
|
+
import { Injectable, Inject, Optional, Component, Input, ViewChild, InjectionToken, Directive, EventEmitter, Output, forwardRef, ElementRef, isDevMode, ViewContainerRef, HostBinding, ContentChild, NgModule } from '@angular/core';
|
|
7
|
+
import { NgIf, NgSwitch, NgSwitchCase, NgSwitchDefault, NgStyle, NgFor } from '@angular/common';
|
|
8
|
+
import * as i3 from '@angular/forms';
|
|
9
|
+
import { FormControl, Validators, FormGroup, ReactiveFormsModule, NG_VALUE_ACCESSOR, FormsModule } from '@angular/forms';
|
|
9
10
|
import { Subject, BehaviorSubject, zip, fromEvent, interval } from 'rxjs';
|
|
10
11
|
import { take, map, filter as filter$1, concatMap, takeUntil } from 'rxjs/operators';
|
|
11
12
|
import * as i1$2 from '@progress/kendo-angular-toolbar';
|
|
12
|
-
import { ToolBarToolComponent, ToolBarComponent,
|
|
13
|
-
import
|
|
14
|
-
import { isDocumentAvailable, guid, shouldShowValidationUI, hasObservers, KendoInput, isPresent as isPresent$1, Keys, WatermarkModule } from '@progress/kendo-angular-common';
|
|
13
|
+
import { ToolBarToolComponent, ToolBarComponent, ToolBarButtonGroupComponent, ToolBarButtonComponent, KENDO_TOOLBAR } from '@progress/kendo-angular-toolbar';
|
|
14
|
+
import { isDocumentAvailable, guid, shouldShowValidationUI, hasObservers, KendoInput, WatermarkOverlayComponent, isPresent as isPresent$1, Keys, ResizeBatchService } from '@progress/kendo-angular-common';
|
|
15
15
|
import { marks as marks$1, nodes as nodes$1, Schema, createTable, insertNode, alignBlocks, alignRemoveRules, expandToWordWrap, toggleInlineFormat, bold, cleanFormatting, applyLink, applyInlineStyle, insertText, italic, strikethrough, subscript, superscript, underline, removeLink, link, selectAll, isAligned, alignCenterRules, alignJustifyRules, alignLeftRules, alignRightRules, formatBlockElements, getHtml, indent, insertImage, toggleOrderedList, toggleUnorderedList, outdent, redo, setHtml, undo, blockquote, addColumnBefore, addColumnAfter, addRowBefore, addRowAfter, deleteRow, deleteColumn, mergeCells, splitCell, deleteTable, hasMark, activeNode, canIndentAsListItem, canBeIndented, indentRules, hasNode, canOutdentAsListItem, outdentRules, isIndented, getActiveMarks, expandSelection, getSelectionText as getSelectionText$1, getNodeFromSelection, getMark, removeComments, sanitize, removeAttribute, sanitizeStyleAttr, sanitizeClassAttr, pasteCleanup, parseContent, AllSelection, TextSelection, Plugin, PluginKey, history, keymap, buildListKeymap, buildKeymap, baseKeymap, gapCursor, imageResizing, tableResizing, tableEditing, caretColor, cspFix, placeholder, EditorState, EditorView } from '@progress/kendo-editor-common';
|
|
16
16
|
export { Decoration, DecorationSet, EditorState, EditorView, InputRule, Mark, MarkType, Node, NodeType, Plugin, PluginKey, Schema, Transaction, baseKeymap, dropCursor, gapCursor, history, inputRules, keymap, tableNodes, textblockTypeInputRule, wrappingInputRule } from '@progress/kendo-editor-common';
|
|
17
17
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
18
|
-
import * as i1$1 from '@progress/kendo-angular-dialog';
|
|
19
|
-
import { DialogContentBase, DialogModule } from '@progress/kendo-angular-dialog';
|
|
20
18
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
21
19
|
import { LocalizationService, L10N_PREFIX, RTL, ComponentMessages } from '@progress/kendo-angular-l10n';
|
|
22
|
-
import * as
|
|
23
|
-
import {
|
|
24
|
-
import
|
|
25
|
-
import {
|
|
26
|
-
import
|
|
27
|
-
import { LabelModule } from '@progress/kendo-angular-label';
|
|
28
|
-
import * as i5 from '@angular/common';
|
|
29
|
-
import { CommonModule } from '@angular/common';
|
|
20
|
+
import * as i1$1 from '@progress/kendo-angular-dialog';
|
|
21
|
+
import { DialogContentBase, DialogTitleBarComponent, DialogActionsComponent, DialogContainerService, DialogService, WindowService, WindowContainerService } from '@progress/kendo-angular-dialog';
|
|
22
|
+
import { TextAreaComponent, FormFieldComponent, TextBoxComponent, CheckBoxDirective, ColorPickerComponent } from '@progress/kendo-angular-inputs';
|
|
23
|
+
import { ButtonComponent } from '@progress/kendo-angular-buttons';
|
|
24
|
+
import { LabelComponent, LabelDirective } from '@progress/kendo-angular-label';
|
|
30
25
|
import { alignCenterIcon, alignJustifyIcon, alignLeftIcon, alignRightIcon, dropletIcon, rightDoubleQuotesIcon, boldIcon, clearCssIcon, linkIcon, foregroundColorIcon, indentIcon, fileAddIcon, fileImageIcon, listOrderedIcon, listUnorderedIcon, italicIcon, outdentIcon, printIcon, redoIcon, selectAllIcon, strikethroughIcon, subscriptIcon, supscriptIcon, underlineIcon, undoIcon, unlinkIcon, codeSnippetIcon, tableAddIcon, tableColumnInsertLeftIcon, tableColumnInsertRightIcon, tableRowInsertAboveIcon, tableRowInsertBelowIcon, tableRowDeleteIcon, tableColumnDeleteIcon, cellsMergeIcon, cellSplitHorizontallyIcon, tableDeleteIcon, applyFormatIcon, tableWizardIcon, fontSizeIcon, fontFamilyIcon } from '@progress/kendo-svg-icons';
|
|
31
|
-
import
|
|
32
|
-
import { DropDownListComponent,
|
|
33
|
-
import * as
|
|
34
|
-
import {
|
|
35
|
-
import * as i2$1 from '@progress/kendo-angular-popup';
|
|
26
|
+
import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
|
|
27
|
+
import { DropDownListComponent, ItemTemplateDirective } from '@progress/kendo-angular-dropdowns';
|
|
28
|
+
import * as i2 from '@progress/kendo-angular-popup';
|
|
29
|
+
import { PopupService } from '@progress/kendo-angular-popup';
|
|
36
30
|
|
|
37
31
|
/**
|
|
38
32
|
* @hidden
|
|
@@ -41,8 +35,8 @@ const packageMetadata = {
|
|
|
41
35
|
name: '@progress/kendo-angular-editor',
|
|
42
36
|
productName: 'Kendo UI for Angular',
|
|
43
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
44
|
-
publishDate:
|
|
45
|
-
version: '16.
|
|
38
|
+
publishDate: 1721828041,
|
|
39
|
+
version: '16.6.0-develop.1',
|
|
46
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
47
41
|
};
|
|
48
42
|
|
|
@@ -708,7 +702,7 @@ class SourceDialogComponent extends DialogContentBase {
|
|
|
708
702
|
}
|
|
709
703
|
}
|
|
710
704
|
SourceDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SourceDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
711
|
-
SourceDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SourceDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
705
|
+
SourceDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: SourceDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
712
706
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
713
707
|
{{ textFor('viewSource') }}
|
|
714
708
|
</kendo-dialog-titlebar>
|
|
@@ -731,7 +725,7 @@ SourceDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
731
725
|
(click)="onCancelAction()"
|
|
732
726
|
>{{ textFor('dialogCancel') }}</button>
|
|
733
727
|
</kendo-dialog-actions>
|
|
734
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
728
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "inputAttributes", "adornmentsOrientation", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode", "showPrefixSeparator", "showSuffixSeparator"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
735
729
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SourceDialogComponent, decorators: [{
|
|
736
730
|
type: Component,
|
|
737
731
|
args: [{
|
|
@@ -758,7 +752,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
758
752
|
(click)="onCancelAction()"
|
|
759
753
|
>{{ textFor('dialogCancel') }}</button>
|
|
760
754
|
</kendo-dialog-actions>
|
|
761
|
-
|
|
755
|
+
`,
|
|
756
|
+
standalone: true,
|
|
757
|
+
imports: [DialogTitleBarComponent, TextAreaComponent, DialogActionsComponent, ButtonComponent]
|
|
762
758
|
}]
|
|
763
759
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
764
760
|
type: Input
|
|
@@ -833,7 +829,7 @@ class ImageDialogComponent extends DialogContentBase {
|
|
|
833
829
|
}
|
|
834
830
|
}
|
|
835
831
|
ImageDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
836
|
-
ImageDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ImageDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "srcInput", first: true, predicate: ["srcInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
832
|
+
ImageDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ImageDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "srcInput", first: true, predicate: ["srcInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
837
833
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
838
834
|
{{ textFor('insertImage') }}
|
|
839
835
|
</kendo-dialog-titlebar>
|
|
@@ -895,7 +891,7 @@ ImageDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
|
895
891
|
(click)="onCancelAction()"
|
|
896
892
|
>{{ textFor('dialogCancel') }}</button>
|
|
897
893
|
</kendo-dialog-actions>
|
|
898
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
894
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
899
895
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ImageDialogComponent, decorators: [{
|
|
900
896
|
type: Component,
|
|
901
897
|
args: [{
|
|
@@ -961,7 +957,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
961
957
|
(click)="onCancelAction()"
|
|
962
958
|
>{{ textFor('dialogCancel') }}</button>
|
|
963
959
|
</kendo-dialog-actions>
|
|
964
|
-
|
|
960
|
+
`,
|
|
961
|
+
standalone: true,
|
|
962
|
+
imports: [DialogTitleBarComponent, FormFieldComponent, LabelComponent, TextBoxComponent, ReactiveFormsModule, DialogActionsComponent, ButtonComponent]
|
|
965
963
|
}]
|
|
966
964
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
967
965
|
type: Input
|
|
@@ -1054,7 +1052,7 @@ class FileLinkDialogComponent extends DialogContentBase {
|
|
|
1054
1052
|
}
|
|
1055
1053
|
}
|
|
1056
1054
|
FileLinkDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FileLinkDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1057
|
-
FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FileLinkDialogComponent, selector: "ng-component", inputs: { editor: "editor", command: "command" }, viewQueries: [{ propertyName: "hrefInput", first: true, predicate: ["hrefInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
1055
|
+
FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FileLinkDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor", command: "command" }, viewQueries: [{ propertyName: "hrefInput", first: true, predicate: ["hrefInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
1058
1056
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
1059
1057
|
{{ titleText }}
|
|
1060
1058
|
</kendo-dialog-titlebar>
|
|
@@ -1120,7 +1118,7 @@ FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
1120
1118
|
(click)="onCancelAction()"
|
|
1121
1119
|
>{{ textFor('dialogCancel') }}</button>
|
|
1122
1120
|
</kendo-dialog-actions>
|
|
1123
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
1121
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { kind: "directive", type: LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
1124
1122
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FileLinkDialogComponent, decorators: [{
|
|
1125
1123
|
type: Component,
|
|
1126
1124
|
args: [{
|
|
@@ -1190,7 +1188,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1190
1188
|
(click)="onCancelAction()"
|
|
1191
1189
|
>{{ textFor('dialogCancel') }}</button>
|
|
1192
1190
|
</kendo-dialog-actions>
|
|
1193
|
-
|
|
1191
|
+
`,
|
|
1192
|
+
standalone: true,
|
|
1193
|
+
imports: [DialogTitleBarComponent, ReactiveFormsModule, FormFieldComponent, LabelComponent, TextBoxComponent, NgIf, CheckBoxDirective, LabelDirective, DialogActionsComponent, ButtonComponent]
|
|
1194
1194
|
}]
|
|
1195
1195
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
1196
1196
|
type: Input
|
|
@@ -1735,21 +1735,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
1735
1735
|
/**
|
|
1736
1736
|
* @hidden
|
|
1737
1737
|
*/
|
|
1738
|
-
class
|
|
1739
|
-
constructor(
|
|
1740
|
-
super(
|
|
1741
|
-
this.
|
|
1738
|
+
class EditorCommandDialog extends EditorCommandBaseDirective {
|
|
1739
|
+
constructor(dialog, button, localization, providerService, toolsService) {
|
|
1740
|
+
super(dialog, button, localization, providerService, toolsService);
|
|
1741
|
+
this.dialog = dialog;
|
|
1742
1742
|
this.button = button;
|
|
1743
1743
|
this.localization = localization;
|
|
1744
1744
|
this.providerService = providerService;
|
|
1745
1745
|
this.toolsService = toolsService;
|
|
1746
1746
|
}
|
|
1747
1747
|
clickHandler() {
|
|
1748
|
-
this.editor.
|
|
1749
|
-
this.editor.focus();
|
|
1750
|
-
}
|
|
1751
|
-
pointerdownHandler(e) {
|
|
1752
|
-
e.preventDefault();
|
|
1748
|
+
this.editor.openDialog(this.dialog);
|
|
1753
1749
|
}
|
|
1754
1750
|
onStateChange(toolBarState) {
|
|
1755
1751
|
this.providerService.editor.ngZone.onStable.pipe(take(1)).subscribe(() => {
|
|
@@ -1760,119 +1756,48 @@ class EditorCommandButton extends EditorCommandBaseDirective {
|
|
|
1760
1756
|
}
|
|
1761
1757
|
|
|
1762
1758
|
/**
|
|
1763
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1764
|
-
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1765
|
-
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1766
|
-
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
1767
|
-
*
|
|
1768
|
-
* @example
|
|
1769
|
-
* ```html
|
|
1770
|
-
* <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
|
|
1771
|
-
* ```
|
|
1772
|
-
*/
|
|
1773
|
-
class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
1774
|
-
constructor(button, localization, providerService, toolsService) {
|
|
1775
|
-
super('alignLeft', button, localization, providerService, toolsService);
|
|
1776
|
-
}
|
|
1777
|
-
}
|
|
1778
|
-
EditorAlignLeftButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignLeftButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1779
|
-
EditorAlignLeftButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignLeftButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignLeftButton]", usesInheritance: true, ngImport: i0 });
|
|
1780
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignLeftButtonDirective, decorators: [{
|
|
1781
|
-
type: Directive,
|
|
1782
|
-
args: [{
|
|
1783
|
-
selector: 'kendo-toolbar-button[kendoEditorAlignLeftButton]'
|
|
1784
|
-
}]
|
|
1785
|
-
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1786
|
-
|
|
1787
|
-
/**
|
|
1788
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignCenter** tool
|
|
1789
|
-
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1790
|
-
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1791
|
-
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
1792
|
-
*
|
|
1793
|
-
* @example
|
|
1794
|
-
* ```html
|
|
1795
|
-
* <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
|
|
1796
|
-
* ```
|
|
1797
|
-
*/
|
|
1798
|
-
class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
1799
|
-
constructor(button, localization, providerService, toolsService) {
|
|
1800
|
-
super('alignCenter', button, localization, providerService, toolsService);
|
|
1801
|
-
}
|
|
1802
|
-
}
|
|
1803
|
-
EditorAlignCenterButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignCenterButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1804
|
-
EditorAlignCenterButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignCenterButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignCenterButton]", usesInheritance: true, ngImport: i0 });
|
|
1805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignCenterButtonDirective, decorators: [{
|
|
1806
|
-
type: Directive,
|
|
1807
|
-
args: [{
|
|
1808
|
-
selector: 'kendo-toolbar-button[kendoEditorAlignCenterButton]'
|
|
1809
|
-
}]
|
|
1810
|
-
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1811
|
-
|
|
1812
|
-
/**
|
|
1813
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignRight** tool
|
|
1814
|
-
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1815
|
-
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1816
|
-
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
1817
|
-
*
|
|
1818
|
-
* @example
|
|
1819
|
-
* ```html
|
|
1820
|
-
* <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
|
|
1821
|
-
* ```
|
|
1822
|
-
*/
|
|
1823
|
-
class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
1824
|
-
constructor(button, localization, providerService, toolsService) {
|
|
1825
|
-
super('alignRight', button, localization, providerService, toolsService);
|
|
1826
|
-
}
|
|
1827
|
-
}
|
|
1828
|
-
EditorAlignRightButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignRightButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1829
|
-
EditorAlignRightButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignRightButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignRightButton]", usesInheritance: true, ngImport: i0 });
|
|
1830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignRightButtonDirective, decorators: [{
|
|
1831
|
-
type: Directive,
|
|
1832
|
-
args: [{
|
|
1833
|
-
selector: 'kendo-toolbar-button[kendoEditorAlignRightButton]'
|
|
1834
|
-
}]
|
|
1835
|
-
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1836
|
-
|
|
1837
|
-
/**
|
|
1838
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignJustify** tool
|
|
1759
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **InsertImage** tool
|
|
1839
1760
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1840
1761
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1841
|
-
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
1842
1762
|
*
|
|
1843
1763
|
* @example
|
|
1844
1764
|
* ```html
|
|
1845
|
-
* <kendo-toolbar-button
|
|
1765
|
+
* <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
|
|
1846
1766
|
* ```
|
|
1847
1767
|
*/
|
|
1848
|
-
class
|
|
1768
|
+
class EditorInsertImageButtonDirective extends EditorCommandDialog {
|
|
1849
1769
|
constructor(button, localization, providerService, toolsService) {
|
|
1850
|
-
super('
|
|
1770
|
+
super('insertImage', button, localization, providerService, toolsService);
|
|
1851
1771
|
}
|
|
1852
1772
|
}
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1773
|
+
EditorInsertImageButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertImageButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1774
|
+
EditorInsertImageButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertImageButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorInsertImageButton]", usesInheritance: true, ngImport: i0 });
|
|
1775
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertImageButtonDirective, decorators: [{
|
|
1856
1776
|
type: Directive,
|
|
1857
1777
|
args: [{
|
|
1858
|
-
selector: 'kendo-toolbar-button[
|
|
1778
|
+
selector: 'kendo-toolbar-button[kendoEditorInsertImageButton]',
|
|
1779
|
+
standalone: true
|
|
1859
1780
|
}]
|
|
1860
1781
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1861
1782
|
|
|
1862
1783
|
/**
|
|
1863
1784
|
* @hidden
|
|
1864
1785
|
*/
|
|
1865
|
-
class
|
|
1866
|
-
constructor(
|
|
1867
|
-
super(
|
|
1868
|
-
this.
|
|
1786
|
+
class EditorCommandButton extends EditorCommandBaseDirective {
|
|
1787
|
+
constructor(command, button, localization, providerService, toolsService) {
|
|
1788
|
+
super(command, button, localization, providerService, toolsService);
|
|
1789
|
+
this.command = command;
|
|
1869
1790
|
this.button = button;
|
|
1870
1791
|
this.localization = localization;
|
|
1871
1792
|
this.providerService = providerService;
|
|
1872
1793
|
this.toolsService = toolsService;
|
|
1873
1794
|
}
|
|
1874
1795
|
clickHandler() {
|
|
1875
|
-
this.editor.
|
|
1796
|
+
this.editor.exec(this.command, this.editor.applyToWord);
|
|
1797
|
+
this.editor.focus();
|
|
1798
|
+
}
|
|
1799
|
+
pointerdownHandler(e) {
|
|
1800
|
+
e.preventDefault();
|
|
1876
1801
|
}
|
|
1877
1802
|
onStateChange(toolBarState) {
|
|
1878
1803
|
this.providerService.editor.ngZone.onStable.pipe(take(1)).subscribe(() => {
|
|
@@ -1883,51 +1808,54 @@ class EditorCommandDialog extends EditorCommandBaseDirective {
|
|
|
1883
1808
|
}
|
|
1884
1809
|
|
|
1885
1810
|
/**
|
|
1886
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1811
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **Unlink** tool
|
|
1887
1812
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1888
1813
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1814
|
+
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
1889
1815
|
*
|
|
1890
1816
|
* @example
|
|
1891
1817
|
* ```html
|
|
1892
|
-
* <kendo-toolbar-button
|
|
1818
|
+
* <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
|
|
1893
1819
|
* ```
|
|
1894
1820
|
*/
|
|
1895
|
-
class
|
|
1821
|
+
class EditorUnlinkButtonDirective extends EditorCommandButton {
|
|
1896
1822
|
constructor(button, localization, providerService, toolsService) {
|
|
1897
|
-
super('
|
|
1823
|
+
super('unlink', button, localization, providerService, toolsService);
|
|
1898
1824
|
}
|
|
1899
1825
|
}
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1826
|
+
EditorUnlinkButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUnlinkButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1827
|
+
EditorUnlinkButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorUnlinkButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorUnlinkButton]", usesInheritance: true, ngImport: i0 });
|
|
1828
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUnlinkButtonDirective, decorators: [{
|
|
1903
1829
|
type: Directive,
|
|
1904
1830
|
args: [{
|
|
1905
|
-
selector: 'kendo-toolbar-button[
|
|
1831
|
+
selector: 'kendo-toolbar-button[kendoEditorUnlinkButton]',
|
|
1832
|
+
standalone: true
|
|
1906
1833
|
}]
|
|
1907
1834
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1908
1835
|
|
|
1909
1836
|
/**
|
|
1910
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1837
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **CreateLink** tool
|
|
1911
1838
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1912
1839
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1913
1840
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
1914
1841
|
*
|
|
1915
1842
|
* @example
|
|
1916
1843
|
* ```html
|
|
1917
|
-
* <kendo-toolbar-button
|
|
1844
|
+
* <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
|
|
1918
1845
|
* ```
|
|
1919
1846
|
*/
|
|
1920
|
-
class
|
|
1847
|
+
class EditorCreateLinkButtonDirective extends EditorCommandDialog {
|
|
1921
1848
|
constructor(button, localization, providerService, toolsService) {
|
|
1922
|
-
super('
|
|
1849
|
+
super('createLink', button, localization, providerService, toolsService);
|
|
1923
1850
|
}
|
|
1924
1851
|
}
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1852
|
+
EditorCreateLinkButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorCreateLinkButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1853
|
+
EditorCreateLinkButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorCreateLinkButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorCreateLinkButton]", usesInheritance: true, ngImport: i0 });
|
|
1854
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorCreateLinkButtonDirective, decorators: [{
|
|
1928
1855
|
type: Directive,
|
|
1929
1856
|
args: [{
|
|
1930
|
-
selector: 'kendo-toolbar-button[
|
|
1857
|
+
selector: 'kendo-toolbar-button[kendoEditorCreateLinkButton]',
|
|
1858
|
+
standalone: true
|
|
1931
1859
|
}]
|
|
1932
1860
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1933
1861
|
|
|
@@ -1948,368 +1876,228 @@ class EditorOutdentButtonDirective extends EditorCommandButton {
|
|
|
1948
1876
|
}
|
|
1949
1877
|
}
|
|
1950
1878
|
EditorOutdentButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorOutdentButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1951
|
-
EditorOutdentButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorOutdentButtonDirective, selector: "kendo-toolbar-button[kendoEditorOutdentButton]", usesInheritance: true, ngImport: i0 });
|
|
1879
|
+
EditorOutdentButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorOutdentButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorOutdentButton]", usesInheritance: true, ngImport: i0 });
|
|
1952
1880
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorOutdentButtonDirective, decorators: [{
|
|
1953
1881
|
type: Directive,
|
|
1954
1882
|
args: [{
|
|
1955
|
-
selector: 'kendo-toolbar-button[kendoEditorOutdentButton]'
|
|
1883
|
+
selector: 'kendo-toolbar-button[kendoEditorOutdentButton]',
|
|
1884
|
+
standalone: true
|
|
1956
1885
|
}]
|
|
1957
1886
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1958
1887
|
|
|
1959
1888
|
/**
|
|
1960
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1889
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **Indent** tool
|
|
1961
1890
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1962
1891
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1963
1892
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
1964
1893
|
*
|
|
1965
1894
|
* @example
|
|
1966
1895
|
* ```html
|
|
1967
|
-
* <kendo-toolbar-button
|
|
1896
|
+
* <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
|
|
1968
1897
|
* ```
|
|
1969
1898
|
*/
|
|
1970
|
-
class
|
|
1899
|
+
class EditorIndentButtonDirective extends EditorCommandButton {
|
|
1971
1900
|
constructor(button, localization, providerService, toolsService) {
|
|
1972
|
-
super('
|
|
1901
|
+
super('indent', button, localization, providerService, toolsService);
|
|
1973
1902
|
}
|
|
1974
1903
|
}
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1904
|
+
EditorIndentButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorIndentButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1905
|
+
EditorIndentButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorIndentButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorIndentButton]", usesInheritance: true, ngImport: i0 });
|
|
1906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorIndentButtonDirective, decorators: [{
|
|
1978
1907
|
type: Directive,
|
|
1979
1908
|
args: [{
|
|
1980
|
-
selector: 'kendo-toolbar-button[
|
|
1909
|
+
selector: 'kendo-toolbar-button[kendoEditorIndentButton]',
|
|
1910
|
+
standalone: true
|
|
1981
1911
|
}]
|
|
1982
1912
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
1983
1913
|
|
|
1984
1914
|
/**
|
|
1985
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1915
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **InsertOrderedList** tool
|
|
1986
1916
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
1987
1917
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
1988
|
-
* In addition, the directive updates the `
|
|
1918
|
+
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
1989
1919
|
*
|
|
1990
1920
|
* @example
|
|
1991
1921
|
* ```html
|
|
1992
|
-
* <kendo-toolbar-button
|
|
1922
|
+
* <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
|
|
1993
1923
|
* ```
|
|
1994
1924
|
*/
|
|
1995
|
-
class
|
|
1925
|
+
class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
|
|
1996
1926
|
constructor(button, localization, providerService, toolsService) {
|
|
1997
|
-
super('
|
|
1927
|
+
super('insertOrderedList', button, localization, providerService, toolsService);
|
|
1998
1928
|
}
|
|
1999
1929
|
}
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1930
|
+
EditorInsertOrderedListButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertOrderedListButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1931
|
+
EditorInsertOrderedListButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertOrderedListButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorInsertOrderedListButton]", usesInheritance: true, ngImport: i0 });
|
|
1932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertOrderedListButtonDirective, decorators: [{
|
|
2003
1933
|
type: Directive,
|
|
2004
1934
|
args: [{
|
|
2005
|
-
selector: 'kendo-toolbar-button[
|
|
1935
|
+
selector: 'kendo-toolbar-button[kendoEditorInsertOrderedListButton]',
|
|
1936
|
+
standalone: true
|
|
2006
1937
|
}]
|
|
2007
1938
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2008
1939
|
|
|
2009
1940
|
/**
|
|
2010
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1941
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **InsertUnorderedList** tool
|
|
2011
1942
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2012
1943
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2013
1944
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2014
1945
|
*
|
|
2015
1946
|
* @example
|
|
2016
1947
|
* ```html
|
|
2017
|
-
* <kendo-toolbar-button
|
|
1948
|
+
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
|
|
2018
1949
|
* ```
|
|
2019
1950
|
*/
|
|
2020
|
-
class
|
|
1951
|
+
class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
|
|
2021
1952
|
constructor(button, localization, providerService, toolsService) {
|
|
2022
|
-
super('
|
|
1953
|
+
super('insertUnorderedList', button, localization, providerService, toolsService);
|
|
2023
1954
|
}
|
|
2024
1955
|
}
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1956
|
+
EditorInsertUnorderedListButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertUnorderedListButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1957
|
+
EditorInsertUnorderedListButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertUnorderedListButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorInsertUnorderedListButton]", usesInheritance: true, ngImport: i0 });
|
|
1958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertUnorderedListButtonDirective, decorators: [{
|
|
2028
1959
|
type: Directive,
|
|
2029
1960
|
args: [{
|
|
2030
|
-
selector: 'kendo-toolbar-button[
|
|
1961
|
+
selector: 'kendo-toolbar-button[kendoEditorInsertUnorderedListButton]',
|
|
1962
|
+
standalone: true
|
|
2031
1963
|
}]
|
|
2032
1964
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2033
1965
|
|
|
2034
1966
|
/**
|
|
2035
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1967
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignJustify** tool
|
|
2036
1968
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2037
1969
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2038
1970
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2039
1971
|
*
|
|
2040
1972
|
* @example
|
|
2041
1973
|
* ```html
|
|
2042
|
-
* <kendo-toolbar-button
|
|
1974
|
+
* <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
|
|
2043
1975
|
* ```
|
|
2044
1976
|
*/
|
|
2045
|
-
class
|
|
1977
|
+
class EditorAlignJustifyButtonDirective extends EditorCommandButton {
|
|
2046
1978
|
constructor(button, localization, providerService, toolsService) {
|
|
2047
|
-
super('
|
|
1979
|
+
super('alignJustify', button, localization, providerService, toolsService);
|
|
2048
1980
|
}
|
|
2049
1981
|
}
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
1982
|
+
EditorAlignJustifyButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignJustifyButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1983
|
+
EditorAlignJustifyButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignJustifyButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAlignJustifyButton]", usesInheritance: true, ngImport: i0 });
|
|
1984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignJustifyButtonDirective, decorators: [{
|
|
2053
1985
|
type: Directive,
|
|
2054
1986
|
args: [{
|
|
2055
|
-
selector: 'kendo-toolbar-button[
|
|
1987
|
+
selector: 'kendo-toolbar-button[kendoEditorAlignJustifyButton]',
|
|
1988
|
+
standalone: true
|
|
2056
1989
|
}]
|
|
2057
1990
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2058
1991
|
|
|
2059
1992
|
/**
|
|
2060
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
1993
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignRight** tool
|
|
2061
1994
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2062
1995
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2063
1996
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2064
1997
|
*
|
|
2065
1998
|
* @example
|
|
2066
1999
|
* ```html
|
|
2067
|
-
* <kendo-toolbar-button
|
|
2000
|
+
* <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
|
|
2068
2001
|
* ```
|
|
2069
2002
|
*/
|
|
2070
|
-
class
|
|
2003
|
+
class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
2071
2004
|
constructor(button, localization, providerService, toolsService) {
|
|
2072
|
-
super('
|
|
2005
|
+
super('alignRight', button, localization, providerService, toolsService);
|
|
2073
2006
|
}
|
|
2074
2007
|
}
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
2008
|
+
EditorAlignRightButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignRightButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2009
|
+
EditorAlignRightButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignRightButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAlignRightButton]", usesInheritance: true, ngImport: i0 });
|
|
2010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignRightButtonDirective, decorators: [{
|
|
2078
2011
|
type: Directive,
|
|
2079
2012
|
args: [{
|
|
2080
|
-
selector: 'kendo-toolbar-button[
|
|
2013
|
+
selector: 'kendo-toolbar-button[kendoEditorAlignRightButton]',
|
|
2014
|
+
standalone: true
|
|
2081
2015
|
}]
|
|
2082
2016
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2083
2017
|
|
|
2084
2018
|
/**
|
|
2085
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
2019
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignCenter** tool
|
|
2086
2020
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2087
2021
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2088
2022
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2089
2023
|
*
|
|
2090
2024
|
* @example
|
|
2091
2025
|
* ```html
|
|
2092
|
-
* <kendo-toolbar-button
|
|
2026
|
+
* <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
|
|
2093
2027
|
* ```
|
|
2094
2028
|
*/
|
|
2095
|
-
class
|
|
2029
|
+
class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
2096
2030
|
constructor(button, localization, providerService, toolsService) {
|
|
2097
|
-
super('
|
|
2031
|
+
super('alignCenter', button, localization, providerService, toolsService);
|
|
2098
2032
|
}
|
|
2099
2033
|
}
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
2034
|
+
EditorAlignCenterButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignCenterButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2035
|
+
EditorAlignCenterButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignCenterButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAlignCenterButton]", usesInheritance: true, ngImport: i0 });
|
|
2036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignCenterButtonDirective, decorators: [{
|
|
2103
2037
|
type: Directive,
|
|
2104
2038
|
args: [{
|
|
2105
|
-
selector: 'kendo-toolbar-button[
|
|
2039
|
+
selector: 'kendo-toolbar-button[kendoEditorAlignCenterButton]',
|
|
2040
|
+
standalone: true
|
|
2106
2041
|
}]
|
|
2107
2042
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2108
2043
|
|
|
2109
2044
|
/**
|
|
2110
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **
|
|
2045
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignLeft** tool
|
|
2111
2046
|
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2112
2047
|
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2113
2048
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2114
2049
|
*
|
|
2115
2050
|
* @example
|
|
2116
2051
|
* ```html
|
|
2117
|
-
* <kendo-toolbar-button
|
|
2052
|
+
* <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
|
|
2118
2053
|
* ```
|
|
2119
2054
|
*/
|
|
2120
|
-
class
|
|
2055
|
+
class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
2121
2056
|
constructor(button, localization, providerService, toolsService) {
|
|
2122
|
-
super('
|
|
2057
|
+
super('alignLeft', button, localization, providerService, toolsService);
|
|
2123
2058
|
}
|
|
2124
2059
|
}
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
2060
|
+
EditorAlignLeftButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignLeftButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2061
|
+
EditorAlignLeftButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAlignLeftButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAlignLeftButton]", usesInheritance: true, ngImport: i0 });
|
|
2062
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAlignLeftButtonDirective, decorators: [{
|
|
2128
2063
|
type: Directive,
|
|
2129
2064
|
args: [{
|
|
2130
|
-
selector: 'kendo-toolbar-button[
|
|
2065
|
+
selector: 'kendo-toolbar-button[kendoEditorAlignLeftButton]',
|
|
2066
|
+
standalone: true
|
|
2131
2067
|
}]
|
|
2132
2068
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2133
2069
|
|
|
2134
2070
|
/**
|
|
2135
2071
|
* @hidden
|
|
2136
2072
|
*/
|
|
2137
|
-
class
|
|
2073
|
+
class DropDownToolDirective {
|
|
2074
|
+
constructor(hostEl, zone) {
|
|
2075
|
+
this.hostEl = hostEl;
|
|
2076
|
+
this.zone = zone;
|
|
2077
|
+
this.preventDefault = (event) => {
|
|
2078
|
+
event.preventDefault();
|
|
2079
|
+
};
|
|
2080
|
+
}
|
|
2081
|
+
get hostElement() {
|
|
2082
|
+
return this.hostEl.nativeElement;
|
|
2083
|
+
}
|
|
2084
|
+
ngAfterViewInit() {
|
|
2085
|
+
this.zone.runOutsideAngular(() => {
|
|
2086
|
+
this.hostElement.addEventListener('pointerdown', this.preventDefault);
|
|
2087
|
+
});
|
|
2088
|
+
}
|
|
2089
|
+
ngOnDestroy() {
|
|
2090
|
+
this.hostElement.removeEventListener('pointerdown', this.preventDefault);
|
|
2091
|
+
}
|
|
2138
2092
|
}
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type:
|
|
2093
|
+
DropDownToolDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownToolDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2094
|
+
DropDownToolDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DropDownToolDirective, isStandalone: true, selector: "[kendoEditorDropDownTool]", ngImport: i0 });
|
|
2095
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownToolDirective, decorators: [{
|
|
2142
2096
|
type: Directive,
|
|
2143
2097
|
args: [{
|
|
2144
|
-
selector: '[
|
|
2098
|
+
selector: '[kendoEditorDropDownTool]',
|
|
2099
|
+
standalone: true
|
|
2145
2100
|
}]
|
|
2146
|
-
}], propDecorators: { alignCenter: [{
|
|
2147
|
-
type: Input
|
|
2148
|
-
}], alignJustify: [{
|
|
2149
|
-
type: Input
|
|
2150
|
-
}], alignLeft: [{
|
|
2151
|
-
type: Input
|
|
2152
|
-
}], alignRight: [{
|
|
2153
|
-
type: Input
|
|
2154
|
-
}], backColor: [{
|
|
2155
|
-
type: Input
|
|
2156
|
-
}], blockquote: [{
|
|
2157
|
-
type: Input
|
|
2158
|
-
}], bold: [{
|
|
2159
|
-
type: Input
|
|
2160
|
-
}], cleanFormatting: [{
|
|
2161
|
-
type: Input
|
|
2162
|
-
}], createLink: [{
|
|
2163
|
-
type: Input
|
|
2164
|
-
}], fontFamily: [{
|
|
2165
|
-
type: Input
|
|
2166
|
-
}], fontSize: [{
|
|
2167
|
-
type: Input
|
|
2168
|
-
}], foreColor: [{
|
|
2169
|
-
type: Input
|
|
2170
|
-
}], format: [{
|
|
2171
|
-
type: Input
|
|
2172
|
-
}], indent: [{
|
|
2173
|
-
type: Input
|
|
2174
|
-
}], insertFile: [{
|
|
2175
|
-
type: Input
|
|
2176
|
-
}], insertImage: [{
|
|
2177
|
-
type: Input
|
|
2178
|
-
}], insertOrderedList: [{
|
|
2179
|
-
type: Input
|
|
2180
|
-
}], insertUnorderedList: [{
|
|
2181
|
-
type: Input
|
|
2182
|
-
}], italic: [{
|
|
2183
|
-
type: Input
|
|
2184
|
-
}], outdent: [{
|
|
2185
|
-
type: Input
|
|
2186
|
-
}], print: [{
|
|
2187
|
-
type: Input
|
|
2188
|
-
}], redo: [{
|
|
2189
|
-
type: Input
|
|
2190
|
-
}], selectAll: [{
|
|
2191
|
-
type: Input
|
|
2192
|
-
}], strikethrough: [{
|
|
2193
|
-
type: Input
|
|
2194
|
-
}], subscript: [{
|
|
2195
|
-
type: Input
|
|
2196
|
-
}], superscript: [{
|
|
2197
|
-
type: Input
|
|
2198
|
-
}], underline: [{
|
|
2199
|
-
type: Input
|
|
2200
|
-
}], undo: [{
|
|
2201
|
-
type: Input
|
|
2202
|
-
}], unlink: [{
|
|
2203
|
-
type: Input
|
|
2204
|
-
}], viewSource: [{
|
|
2205
|
-
type: Input
|
|
2206
|
-
}], insertTable: [{
|
|
2207
|
-
type: Input
|
|
2208
|
-
}], insertTableHint: [{
|
|
2209
|
-
type: Input
|
|
2210
|
-
}], addColumnBefore: [{
|
|
2211
|
-
type: Input
|
|
2212
|
-
}], addColumnAfter: [{
|
|
2213
|
-
type: Input
|
|
2214
|
-
}], addRowBefore: [{
|
|
2215
|
-
type: Input
|
|
2216
|
-
}], addRowAfter: [{
|
|
2217
|
-
type: Input
|
|
2218
|
-
}], deleteColumn: [{
|
|
2219
|
-
type: Input
|
|
2220
|
-
}], deleteRow: [{
|
|
2221
|
-
type: Input
|
|
2222
|
-
}], deleteTable: [{
|
|
2223
|
-
type: Input
|
|
2224
|
-
}], mergeCells: [{
|
|
2225
|
-
type: Input
|
|
2226
|
-
}], splitCell: [{
|
|
2227
|
-
type: Input
|
|
2228
|
-
}], dialogApply: [{
|
|
2229
|
-
type: Input
|
|
2230
|
-
}], dialogCancel: [{
|
|
2231
|
-
type: Input
|
|
2232
|
-
}], dialogInsert: [{
|
|
2233
|
-
type: Input
|
|
2234
|
-
}], dialogUpdate: [{
|
|
2235
|
-
type: Input
|
|
2236
|
-
}], fileText: [{
|
|
2237
|
-
type: Input
|
|
2238
|
-
}], fileTitle: [{
|
|
2239
|
-
type: Input
|
|
2240
|
-
}], fileWebAddress: [{
|
|
2241
|
-
type: Input
|
|
2242
|
-
}], imageAltText: [{
|
|
2243
|
-
type: Input
|
|
2244
|
-
}], imageHeight: [{
|
|
2245
|
-
type: Input
|
|
2246
|
-
}], imageWebAddress: [{
|
|
2247
|
-
type: Input
|
|
2248
|
-
}], imageWidth: [{
|
|
2249
|
-
type: Input
|
|
2250
|
-
}], linkOpenInNewWindow: [{
|
|
2251
|
-
type: Input
|
|
2252
|
-
}], linkText: [{
|
|
2253
|
-
type: Input
|
|
2254
|
-
}], linkTitle: [{
|
|
2255
|
-
type: Input
|
|
2256
|
-
}], linkWebAddress: [{
|
|
2257
|
-
type: Input
|
|
2258
|
-
}] } });
|
|
2259
|
-
|
|
2260
|
-
/**
|
|
2261
|
-
* @hidden
|
|
2262
|
-
*/
|
|
2263
|
-
class LocalizedMessagesDirective extends MessagesDirective {
|
|
2264
|
-
constructor(service) {
|
|
2265
|
-
super();
|
|
2266
|
-
this.service = service;
|
|
2267
|
-
}
|
|
2268
|
-
}
|
|
2269
|
-
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2270
|
-
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, selector: "[kendoEditorLocalizedMessages]", providers: [{
|
|
2271
|
-
provide: MessagesDirective,
|
|
2272
|
-
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
2273
|
-
}], usesInheritance: true, ngImport: i0 });
|
|
2274
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
|
2275
|
-
type: Directive,
|
|
2276
|
-
args: [{
|
|
2277
|
-
providers: [{
|
|
2278
|
-
provide: MessagesDirective,
|
|
2279
|
-
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
2280
|
-
}],
|
|
2281
|
-
selector: '[kendoEditorLocalizedMessages]'
|
|
2282
|
-
}]
|
|
2283
|
-
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
2284
|
-
|
|
2285
|
-
/**
|
|
2286
|
-
* @hidden
|
|
2287
|
-
*/
|
|
2288
|
-
class DropDownToolDirective {
|
|
2289
|
-
constructor(hostEl, zone) {
|
|
2290
|
-
this.hostEl = hostEl;
|
|
2291
|
-
this.zone = zone;
|
|
2292
|
-
this.preventDefault = (event) => {
|
|
2293
|
-
event.preventDefault();
|
|
2294
|
-
};
|
|
2295
|
-
}
|
|
2296
|
-
get hostElement() {
|
|
2297
|
-
return this.hostEl.nativeElement;
|
|
2298
|
-
}
|
|
2299
|
-
ngAfterViewInit() {
|
|
2300
|
-
this.zone.runOutsideAngular(() => {
|
|
2301
|
-
this.hostElement.addEventListener('pointerdown', this.preventDefault);
|
|
2302
|
-
});
|
|
2303
|
-
}
|
|
2304
|
-
ngOnDestroy() {
|
|
2305
|
-
this.hostElement.removeEventListener('pointerdown', this.preventDefault);
|
|
2306
|
-
}
|
|
2307
|
-
}
|
|
2308
|
-
DropDownToolDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownToolDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2309
|
-
DropDownToolDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DropDownToolDirective, selector: "[kendoEditorDropDownTool]", ngImport: i0 });
|
|
2310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DropDownToolDirective, decorators: [{
|
|
2311
|
-
type: Directive,
|
|
2312
|
-
args: [{ selector: '[kendoEditorDropDownTool]' }]
|
|
2313
2101
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2314
2102
|
|
|
2315
2103
|
/**
|
|
@@ -2327,7 +2115,7 @@ class FormatDropDownListComponent {
|
|
|
2327
2115
|
}
|
|
2328
2116
|
}
|
|
2329
2117
|
FormatDropDownListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormatDropDownListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2330
|
-
FormatDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: { data: "data", value: "value", defaultItem: "defaultItem", itemDisabled: "itemDisabled", title: "title", disabled: "disabled", tabindex: "tabindex" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, static: true }, { propertyName: "dropDownList", first: true, predicate: ["element"], descendants: true, read: DropDownListComponent, static: true }], ngImport: i0, template: `
|
|
2118
|
+
FormatDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FormatDropDownListComponent, isStandalone: true, selector: "kendo-editor-format-dropdownlist", inputs: { data: "data", value: "value", defaultItem: "defaultItem", itemDisabled: "itemDisabled", title: "title", disabled: "disabled", tabindex: "tabindex" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, static: true }, { propertyName: "dropDownList", first: true, predicate: ["element"], descendants: true, read: DropDownListComponent, static: true }], ngImport: i0, template: `
|
|
2331
2119
|
<kendo-dropdownlist
|
|
2332
2120
|
#element
|
|
2333
2121
|
kendoEditorDropDownTool
|
|
@@ -2378,7 +2166,7 @@ FormatDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.
|
|
|
2378
2166
|
</ng-container>
|
|
2379
2167
|
</ng-template>
|
|
2380
2168
|
</kendo-dropdownlist>
|
|
2381
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
2169
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: DropDownToolDirective, selector: "[kendoEditorDropDownTool]" }, { kind: "directive", type: ItemTemplateDirective, selector: "[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]" }, { kind: "directive", type: NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: NgSwitchDefault, selector: "[ngSwitchDefault]" }] });
|
|
2382
2170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormatDropDownListComponent, decorators: [{
|
|
2383
2171
|
type: Component,
|
|
2384
2172
|
args: [{
|
|
@@ -2434,7 +2222,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2434
2222
|
</ng-container>
|
|
2435
2223
|
</ng-template>
|
|
2436
2224
|
</kendo-dropdownlist>
|
|
2437
|
-
|
|
2225
|
+
`,
|
|
2226
|
+
standalone: true,
|
|
2227
|
+
imports: [DropDownListComponent, DropDownToolDirective, ItemTemplateDirective, NgSwitch, NgSwitchCase, NgSwitchDefault]
|
|
2438
2228
|
}]
|
|
2439
2229
|
}], propDecorators: { data: [{
|
|
2440
2230
|
type: Input
|
|
@@ -2491,7 +2281,7 @@ class FormatDialogComponent extends DialogContentBase {
|
|
|
2491
2281
|
}
|
|
2492
2282
|
}
|
|
2493
2283
|
FormatDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormatDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2494
|
-
FormatDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FormatDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "formatDropDownList", first: true, predicate: ["formatDropDownList"], descendants: true, read: FormatDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
2284
|
+
FormatDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FormatDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "formatDropDownList", first: true, predicate: ["formatDropDownList"], descendants: true, read: FormatDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
2495
2285
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
2496
2286
|
{{ textFor('format') }}
|
|
2497
2287
|
</kendo-dialog-titlebar>
|
|
@@ -2516,7 +2306,7 @@ FormatDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
|
|
|
2516
2306
|
(click)="onCancelAction()"
|
|
2517
2307
|
>{{ textFor('dialogCancel') }}</button>
|
|
2518
2308
|
</kendo-dialog-actions>
|
|
2519
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
2309
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
2520
2310
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormatDialogComponent, decorators: [{
|
|
2521
2311
|
type: Component,
|
|
2522
2312
|
args: [{
|
|
@@ -2545,7 +2335,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
2545
2335
|
(click)="onCancelAction()"
|
|
2546
2336
|
>{{ textFor('dialogCancel') }}</button>
|
|
2547
2337
|
</kendo-dialog-actions>
|
|
2548
|
-
|
|
2338
|
+
`,
|
|
2339
|
+
standalone: true,
|
|
2340
|
+
imports: [DialogTitleBarComponent, FormatDropDownListComponent, DialogActionsComponent, ButtonComponent]
|
|
2549
2341
|
}]
|
|
2550
2342
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
2551
2343
|
type: Input
|
|
@@ -2689,90 +2481,322 @@ class EditorFormatComponent extends ToolBarToolComponent {
|
|
|
2689
2481
|
return false;
|
|
2690
2482
|
}
|
|
2691
2483
|
}
|
|
2692
|
-
EditorFormatComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFormatComponent, deps: [{ token: i1$1.DialogService }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2693
|
-
EditorFormatComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorFormatComponent, selector: "kendo-toolbar-dropdownlist[kendoEditorFormat]", inputs: { data: "data" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFormatComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "formatDropDownList", first: true, predicate: ["formatDropDownList"], descendants: true }, { propertyName: "formatButton", first: true, predicate: ["formatButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
2694
|
-
<ng-template #toolbarTemplate>
|
|
2695
|
-
<kendo-editor-format-dropdownlist
|
|
2696
|
-
#formatDropDownList
|
|
2697
|
-
[defaultItem]="defaultItem"
|
|
2698
|
-
[data]="data"
|
|
2699
|
-
[(value)]="value"
|
|
2700
|
-
[itemDisabled]="itemDisabled"
|
|
2701
|
-
[title]="title"
|
|
2702
|
-
[disabled]="disabled"
|
|
2703
|
-
[tabindex]="tabindex"
|
|
2704
|
-
(valueChange)="onValueChange($event)"
|
|
2705
|
-
>
|
|
2706
|
-
</kendo-editor-format-dropdownlist>
|
|
2707
|
-
</ng-template>
|
|
2708
|
-
<ng-template #popupTemplate>
|
|
2709
|
-
<div #formatButton
|
|
2710
|
-
role="menuitem"
|
|
2711
|
-
class="k-item k-menu-item"
|
|
2712
|
-
[class.k-disabled]="disabled"
|
|
2713
|
-
[tabindex]="tabindex"
|
|
2714
|
-
(click)="openDialog()">
|
|
2715
|
-
<span
|
|
2716
|
-
class="k-link k-menu-link">
|
|
2717
|
-
<kendo-icon-wrapper name="apply-format" [svgIcon]="applyFormatSVGIcon"></kendo-icon-wrapper>
|
|
2718
|
-
<span *ngIf="title" class="k-menu-link-text">{{title}}</span>
|
|
2719
|
-
</span>
|
|
2720
|
-
</div>
|
|
2721
|
-
</ng-template>
|
|
2722
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
2723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFormatComponent, decorators: [{
|
|
2724
|
-
type: Component,
|
|
2484
|
+
EditorFormatComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFormatComponent, deps: [{ token: i1$1.DialogService }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
2485
|
+
EditorFormatComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorFormatComponent, isStandalone: true, selector: "kendo-toolbar-dropdownlist[kendoEditorFormat]", inputs: { data: "data" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFormatComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "formatDropDownList", first: true, predicate: ["formatDropDownList"], descendants: true }, { propertyName: "formatButton", first: true, predicate: ["formatButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
2486
|
+
<ng-template #toolbarTemplate>
|
|
2487
|
+
<kendo-editor-format-dropdownlist
|
|
2488
|
+
#formatDropDownList
|
|
2489
|
+
[defaultItem]="defaultItem"
|
|
2490
|
+
[data]="data"
|
|
2491
|
+
[(value)]="value"
|
|
2492
|
+
[itemDisabled]="itemDisabled"
|
|
2493
|
+
[title]="title"
|
|
2494
|
+
[disabled]="disabled"
|
|
2495
|
+
[tabindex]="tabindex"
|
|
2496
|
+
(valueChange)="onValueChange($event)"
|
|
2497
|
+
>
|
|
2498
|
+
</kendo-editor-format-dropdownlist>
|
|
2499
|
+
</ng-template>
|
|
2500
|
+
<ng-template #popupTemplate>
|
|
2501
|
+
<div #formatButton
|
|
2502
|
+
role="menuitem"
|
|
2503
|
+
class="k-item k-menu-item"
|
|
2504
|
+
[class.k-disabled]="disabled"
|
|
2505
|
+
[tabindex]="tabindex"
|
|
2506
|
+
(click)="openDialog()">
|
|
2507
|
+
<span
|
|
2508
|
+
class="k-link k-menu-link">
|
|
2509
|
+
<kendo-icon-wrapper name="apply-format" [svgIcon]="applyFormatSVGIcon"></kendo-icon-wrapper>
|
|
2510
|
+
<span *ngIf="title" class="k-menu-link-text">{{title}}</span>
|
|
2511
|
+
</span>
|
|
2512
|
+
</div>
|
|
2513
|
+
</ng-template>
|
|
2514
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFormatComponent, decorators: [{
|
|
2516
|
+
type: Component,
|
|
2517
|
+
args: [{
|
|
2518
|
+
providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFormatComponent) }],
|
|
2519
|
+
selector: 'kendo-toolbar-dropdownlist[kendoEditorFormat]',
|
|
2520
|
+
template: `
|
|
2521
|
+
<ng-template #toolbarTemplate>
|
|
2522
|
+
<kendo-editor-format-dropdownlist
|
|
2523
|
+
#formatDropDownList
|
|
2524
|
+
[defaultItem]="defaultItem"
|
|
2525
|
+
[data]="data"
|
|
2526
|
+
[(value)]="value"
|
|
2527
|
+
[itemDisabled]="itemDisabled"
|
|
2528
|
+
[title]="title"
|
|
2529
|
+
[disabled]="disabled"
|
|
2530
|
+
[tabindex]="tabindex"
|
|
2531
|
+
(valueChange)="onValueChange($event)"
|
|
2532
|
+
>
|
|
2533
|
+
</kendo-editor-format-dropdownlist>
|
|
2534
|
+
</ng-template>
|
|
2535
|
+
<ng-template #popupTemplate>
|
|
2536
|
+
<div #formatButton
|
|
2537
|
+
role="menuitem"
|
|
2538
|
+
class="k-item k-menu-item"
|
|
2539
|
+
[class.k-disabled]="disabled"
|
|
2540
|
+
[tabindex]="tabindex"
|
|
2541
|
+
(click)="openDialog()">
|
|
2542
|
+
<span
|
|
2543
|
+
class="k-link k-menu-link">
|
|
2544
|
+
<kendo-icon-wrapper name="apply-format" [svgIcon]="applyFormatSVGIcon"></kendo-icon-wrapper>
|
|
2545
|
+
<span *ngIf="title" class="k-menu-link-text">{{title}}</span>
|
|
2546
|
+
</span>
|
|
2547
|
+
</div>
|
|
2548
|
+
</ng-template>
|
|
2549
|
+
`,
|
|
2550
|
+
standalone: true,
|
|
2551
|
+
imports: [FormatDropDownListComponent, IconWrapperComponent, NgIf]
|
|
2552
|
+
}]
|
|
2553
|
+
}], ctorParameters: function () { return [{ type: i1$1.DialogService }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }, { type: i0.Renderer2 }]; }, propDecorators: { data: [{
|
|
2554
|
+
type: Input
|
|
2555
|
+
}], valueChange: [{
|
|
2556
|
+
type: Output
|
|
2557
|
+
}], toolbarTemplate: [{
|
|
2558
|
+
type: ViewChild,
|
|
2559
|
+
args: ['toolbarTemplate', { static: true }]
|
|
2560
|
+
}], popupTemplate: [{
|
|
2561
|
+
type: ViewChild,
|
|
2562
|
+
args: ['popupTemplate', { static: true }]
|
|
2563
|
+
}], formatDropDownList: [{
|
|
2564
|
+
type: ViewChild,
|
|
2565
|
+
args: ['formatDropDownList']
|
|
2566
|
+
}], formatButton: [{
|
|
2567
|
+
type: ViewChild,
|
|
2568
|
+
args: ['formatButton', { read: ElementRef }]
|
|
2569
|
+
}] } });
|
|
2570
|
+
|
|
2571
|
+
/**
|
|
2572
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **Underline** tool
|
|
2573
|
+
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2574
|
+
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2575
|
+
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2576
|
+
*
|
|
2577
|
+
* @example
|
|
2578
|
+
* ```html
|
|
2579
|
+
* <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
|
|
2580
|
+
* ```
|
|
2581
|
+
*/
|
|
2582
|
+
class EditorUnderlineButtonDirective extends EditorCommandButton {
|
|
2583
|
+
constructor(button, localization, providerService, toolsService) {
|
|
2584
|
+
super('underline', button, localization, providerService, toolsService);
|
|
2585
|
+
}
|
|
2586
|
+
}
|
|
2587
|
+
EditorUnderlineButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUnderlineButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2588
|
+
EditorUnderlineButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorUnderlineButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorUnderlineButton]", usesInheritance: true, ngImport: i0 });
|
|
2589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUnderlineButtonDirective, decorators: [{
|
|
2590
|
+
type: Directive,
|
|
2591
|
+
args: [{
|
|
2592
|
+
selector: 'kendo-toolbar-button[kendoEditorUnderlineButton]',
|
|
2593
|
+
standalone: true
|
|
2594
|
+
}]
|
|
2595
|
+
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2596
|
+
|
|
2597
|
+
/**
|
|
2598
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **Italic** tool
|
|
2599
|
+
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2600
|
+
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2601
|
+
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2602
|
+
*
|
|
2603
|
+
* @example
|
|
2604
|
+
* ```html
|
|
2605
|
+
* <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
|
|
2606
|
+
* ```
|
|
2607
|
+
*/
|
|
2608
|
+
class EditorItalicButtonDirective extends EditorCommandButton {
|
|
2609
|
+
constructor(button, localization, providerService, toolsService) {
|
|
2610
|
+
super('italic', button, localization, providerService, toolsService);
|
|
2611
|
+
}
|
|
2612
|
+
}
|
|
2613
|
+
EditorItalicButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorItalicButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2614
|
+
EditorItalicButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorItalicButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorItalicButton]", usesInheritance: true, ngImport: i0 });
|
|
2615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorItalicButtonDirective, decorators: [{
|
|
2616
|
+
type: Directive,
|
|
2617
|
+
args: [{
|
|
2618
|
+
selector: 'kendo-toolbar-button[kendoEditorItalicButton]',
|
|
2619
|
+
standalone: true
|
|
2620
|
+
}]
|
|
2621
|
+
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2622
|
+
|
|
2623
|
+
/**
|
|
2624
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor **Bold** tool
|
|
2625
|
+
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
2626
|
+
* The directive will predefine the SVG icon and `click` event handlers of the button.
|
|
2627
|
+
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2628
|
+
*
|
|
2629
|
+
* @example
|
|
2630
|
+
* ```html
|
|
2631
|
+
* <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
|
|
2632
|
+
* ```
|
|
2633
|
+
*/
|
|
2634
|
+
class EditorBoldButtonDirective extends EditorCommandButton {
|
|
2635
|
+
constructor(button, localization, providerService, toolsService) {
|
|
2636
|
+
super('bold', button, localization, providerService, toolsService);
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
EditorBoldButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBoldButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2640
|
+
EditorBoldButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorBoldButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorBoldButton]", usesInheritance: true, ngImport: i0 });
|
|
2641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBoldButtonDirective, decorators: [{
|
|
2642
|
+
type: Directive,
|
|
2643
|
+
args: [{
|
|
2644
|
+
selector: 'kendo-toolbar-button[kendoEditorBoldButton]',
|
|
2645
|
+
standalone: true
|
|
2646
|
+
}]
|
|
2647
|
+
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
2648
|
+
|
|
2649
|
+
/**
|
|
2650
|
+
* @hidden
|
|
2651
|
+
*/
|
|
2652
|
+
class MessagesDirective extends ComponentMessages {
|
|
2653
|
+
}
|
|
2654
|
+
MessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MessagesDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2655
|
+
MessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MessagesDirective, selector: "[kendoEditorMessages]", inputs: { alignCenter: "alignCenter", alignJustify: "alignJustify", alignLeft: "alignLeft", alignRight: "alignRight", backColor: "backColor", blockquote: "blockquote", bold: "bold", cleanFormatting: "cleanFormatting", createLink: "createLink", fontFamily: "fontFamily", fontSize: "fontSize", foreColor: "foreColor", format: "format", indent: "indent", insertFile: "insertFile", insertImage: "insertImage", insertOrderedList: "insertOrderedList", insertUnorderedList: "insertUnorderedList", italic: "italic", outdent: "outdent", print: "print", redo: "redo", selectAll: "selectAll", strikethrough: "strikethrough", subscript: "subscript", superscript: "superscript", underline: "underline", undo: "undo", unlink: "unlink", viewSource: "viewSource", insertTable: "insertTable", insertTableHint: "insertTableHint", addColumnBefore: "addColumnBefore", addColumnAfter: "addColumnAfter", addRowBefore: "addRowBefore", addRowAfter: "addRowAfter", deleteColumn: "deleteColumn", deleteRow: "deleteRow", deleteTable: "deleteTable", mergeCells: "mergeCells", splitCell: "splitCell", dialogApply: "dialogApply", dialogCancel: "dialogCancel", dialogInsert: "dialogInsert", dialogUpdate: "dialogUpdate", fileText: "fileText", fileTitle: "fileTitle", fileWebAddress: "fileWebAddress", imageAltText: "imageAltText", imageHeight: "imageHeight", imageWebAddress: "imageWebAddress", imageWidth: "imageWidth", linkOpenInNewWindow: "linkOpenInNewWindow", linkText: "linkText", linkTitle: "linkTitle", linkWebAddress: "linkWebAddress" }, usesInheritance: true, ngImport: i0 });
|
|
2656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MessagesDirective, decorators: [{
|
|
2657
|
+
type: Directive,
|
|
2658
|
+
args: [{
|
|
2659
|
+
selector: '[kendoEditorMessages]'
|
|
2660
|
+
}]
|
|
2661
|
+
}], propDecorators: { alignCenter: [{
|
|
2662
|
+
type: Input
|
|
2663
|
+
}], alignJustify: [{
|
|
2664
|
+
type: Input
|
|
2665
|
+
}], alignLeft: [{
|
|
2666
|
+
type: Input
|
|
2667
|
+
}], alignRight: [{
|
|
2668
|
+
type: Input
|
|
2669
|
+
}], backColor: [{
|
|
2670
|
+
type: Input
|
|
2671
|
+
}], blockquote: [{
|
|
2672
|
+
type: Input
|
|
2673
|
+
}], bold: [{
|
|
2674
|
+
type: Input
|
|
2675
|
+
}], cleanFormatting: [{
|
|
2676
|
+
type: Input
|
|
2677
|
+
}], createLink: [{
|
|
2678
|
+
type: Input
|
|
2679
|
+
}], fontFamily: [{
|
|
2680
|
+
type: Input
|
|
2681
|
+
}], fontSize: [{
|
|
2682
|
+
type: Input
|
|
2683
|
+
}], foreColor: [{
|
|
2684
|
+
type: Input
|
|
2685
|
+
}], format: [{
|
|
2686
|
+
type: Input
|
|
2687
|
+
}], indent: [{
|
|
2688
|
+
type: Input
|
|
2689
|
+
}], insertFile: [{
|
|
2690
|
+
type: Input
|
|
2691
|
+
}], insertImage: [{
|
|
2692
|
+
type: Input
|
|
2693
|
+
}], insertOrderedList: [{
|
|
2694
|
+
type: Input
|
|
2695
|
+
}], insertUnorderedList: [{
|
|
2696
|
+
type: Input
|
|
2697
|
+
}], italic: [{
|
|
2698
|
+
type: Input
|
|
2699
|
+
}], outdent: [{
|
|
2700
|
+
type: Input
|
|
2701
|
+
}], print: [{
|
|
2702
|
+
type: Input
|
|
2703
|
+
}], redo: [{
|
|
2704
|
+
type: Input
|
|
2705
|
+
}], selectAll: [{
|
|
2706
|
+
type: Input
|
|
2707
|
+
}], strikethrough: [{
|
|
2708
|
+
type: Input
|
|
2709
|
+
}], subscript: [{
|
|
2710
|
+
type: Input
|
|
2711
|
+
}], superscript: [{
|
|
2712
|
+
type: Input
|
|
2713
|
+
}], underline: [{
|
|
2714
|
+
type: Input
|
|
2715
|
+
}], undo: [{
|
|
2716
|
+
type: Input
|
|
2717
|
+
}], unlink: [{
|
|
2718
|
+
type: Input
|
|
2719
|
+
}], viewSource: [{
|
|
2720
|
+
type: Input
|
|
2721
|
+
}], insertTable: [{
|
|
2722
|
+
type: Input
|
|
2723
|
+
}], insertTableHint: [{
|
|
2724
|
+
type: Input
|
|
2725
|
+
}], addColumnBefore: [{
|
|
2726
|
+
type: Input
|
|
2727
|
+
}], addColumnAfter: [{
|
|
2728
|
+
type: Input
|
|
2729
|
+
}], addRowBefore: [{
|
|
2730
|
+
type: Input
|
|
2731
|
+
}], addRowAfter: [{
|
|
2732
|
+
type: Input
|
|
2733
|
+
}], deleteColumn: [{
|
|
2734
|
+
type: Input
|
|
2735
|
+
}], deleteRow: [{
|
|
2736
|
+
type: Input
|
|
2737
|
+
}], deleteTable: [{
|
|
2738
|
+
type: Input
|
|
2739
|
+
}], mergeCells: [{
|
|
2740
|
+
type: Input
|
|
2741
|
+
}], splitCell: [{
|
|
2742
|
+
type: Input
|
|
2743
|
+
}], dialogApply: [{
|
|
2744
|
+
type: Input
|
|
2745
|
+
}], dialogCancel: [{
|
|
2746
|
+
type: Input
|
|
2747
|
+
}], dialogInsert: [{
|
|
2748
|
+
type: Input
|
|
2749
|
+
}], dialogUpdate: [{
|
|
2750
|
+
type: Input
|
|
2751
|
+
}], fileText: [{
|
|
2752
|
+
type: Input
|
|
2753
|
+
}], fileTitle: [{
|
|
2754
|
+
type: Input
|
|
2755
|
+
}], fileWebAddress: [{
|
|
2756
|
+
type: Input
|
|
2757
|
+
}], imageAltText: [{
|
|
2758
|
+
type: Input
|
|
2759
|
+
}], imageHeight: [{
|
|
2760
|
+
type: Input
|
|
2761
|
+
}], imageWebAddress: [{
|
|
2762
|
+
type: Input
|
|
2763
|
+
}], imageWidth: [{
|
|
2764
|
+
type: Input
|
|
2765
|
+
}], linkOpenInNewWindow: [{
|
|
2766
|
+
type: Input
|
|
2767
|
+
}], linkText: [{
|
|
2768
|
+
type: Input
|
|
2769
|
+
}], linkTitle: [{
|
|
2770
|
+
type: Input
|
|
2771
|
+
}], linkWebAddress: [{
|
|
2772
|
+
type: Input
|
|
2773
|
+
}] } });
|
|
2774
|
+
|
|
2775
|
+
/**
|
|
2776
|
+
* @hidden
|
|
2777
|
+
*/
|
|
2778
|
+
class LocalizedMessagesDirective extends MessagesDirective {
|
|
2779
|
+
constructor(service) {
|
|
2780
|
+
super();
|
|
2781
|
+
this.service = service;
|
|
2782
|
+
}
|
|
2783
|
+
}
|
|
2784
|
+
LocalizedMessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2785
|
+
LocalizedMessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoEditorLocalizedMessages]", providers: [{
|
|
2786
|
+
provide: MessagesDirective,
|
|
2787
|
+
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
2788
|
+
}], usesInheritance: true, ngImport: i0 });
|
|
2789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
|
2790
|
+
type: Directive,
|
|
2725
2791
|
args: [{
|
|
2726
|
-
providers: [{
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
[defaultItem]="defaultItem"
|
|
2733
|
-
[data]="data"
|
|
2734
|
-
[(value)]="value"
|
|
2735
|
-
[itemDisabled]="itemDisabled"
|
|
2736
|
-
[title]="title"
|
|
2737
|
-
[disabled]="disabled"
|
|
2738
|
-
[tabindex]="tabindex"
|
|
2739
|
-
(valueChange)="onValueChange($event)"
|
|
2740
|
-
>
|
|
2741
|
-
</kendo-editor-format-dropdownlist>
|
|
2742
|
-
</ng-template>
|
|
2743
|
-
<ng-template #popupTemplate>
|
|
2744
|
-
<div #formatButton
|
|
2745
|
-
role="menuitem"
|
|
2746
|
-
class="k-item k-menu-item"
|
|
2747
|
-
[class.k-disabled]="disabled"
|
|
2748
|
-
[tabindex]="tabindex"
|
|
2749
|
-
(click)="openDialog()">
|
|
2750
|
-
<span
|
|
2751
|
-
class="k-link k-menu-link">
|
|
2752
|
-
<kendo-icon-wrapper name="apply-format" [svgIcon]="applyFormatSVGIcon"></kendo-icon-wrapper>
|
|
2753
|
-
<span *ngIf="title" class="k-menu-link-text">{{title}}</span>
|
|
2754
|
-
</span>
|
|
2755
|
-
</div>
|
|
2756
|
-
</ng-template>
|
|
2757
|
-
`
|
|
2792
|
+
providers: [{
|
|
2793
|
+
provide: MessagesDirective,
|
|
2794
|
+
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
2795
|
+
}],
|
|
2796
|
+
selector: '[kendoEditorLocalizedMessages]',
|
|
2797
|
+
standalone: true
|
|
2758
2798
|
}]
|
|
2759
|
-
}], ctorParameters: function () { return [{ type: i1
|
|
2760
|
-
type: Input
|
|
2761
|
-
}], valueChange: [{
|
|
2762
|
-
type: Output
|
|
2763
|
-
}], toolbarTemplate: [{
|
|
2764
|
-
type: ViewChild,
|
|
2765
|
-
args: ['toolbarTemplate', { static: true }]
|
|
2766
|
-
}], popupTemplate: [{
|
|
2767
|
-
type: ViewChild,
|
|
2768
|
-
args: ['popupTemplate', { static: true }]
|
|
2769
|
-
}], formatDropDownList: [{
|
|
2770
|
-
type: ViewChild,
|
|
2771
|
-
args: ['formatDropDownList']
|
|
2772
|
-
}], formatButton: [{
|
|
2773
|
-
type: ViewChild,
|
|
2774
|
-
args: ['formatButton', { read: ElementRef }]
|
|
2775
|
-
}] } });
|
|
2799
|
+
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
2776
2800
|
|
|
2777
2801
|
const EMPTY_PARAGRAPH = '<p></p>';
|
|
2778
2802
|
const defaultPasteCleanupSettings = {
|
|
@@ -2835,23 +2859,23 @@ class EditorComponent {
|
|
|
2835
2859
|
this.resizable = false;
|
|
2836
2860
|
/**
|
|
2837
2861
|
* Fires each time the value of the Editor is changed upon user interaction—
|
|
2838
|
-
* for example, when the value is updated through typing in the content area or using some of the Editor tools ([see example](
|
|
2862
|
+
* for example, when the value is updated through typing in the content area or using some of the Editor tools ([see example](slug:events_editor)).
|
|
2839
2863
|
* When the value of the Editor is programmatically changed through its API (`ngModel`) or form binding (`formControl`),
|
|
2840
2864
|
* the `valueChange` event is not triggered because it might cause a mix-up with the
|
|
2841
2865
|
* built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
|
|
2842
2866
|
*/
|
|
2843
2867
|
this.valueChange = new EventEmitter();
|
|
2844
2868
|
/**
|
|
2845
|
-
* Fires when the content area of the Editor is focused ([see example](
|
|
2869
|
+
* Fires when the content area of the Editor is focused ([see example](slug:events_editor)).
|
|
2846
2870
|
*/
|
|
2847
2871
|
this.onFocus = new EventEmitter();
|
|
2848
2872
|
/**
|
|
2849
|
-
* Fires when the user performs paste in the content area of the Editor ([see example](
|
|
2873
|
+
* Fires when the user performs paste in the content area of the Editor ([see example](slug:events_editor)).
|
|
2850
2874
|
* The event is preventable. If you cancel it, the Editor content will not change.
|
|
2851
2875
|
*/
|
|
2852
2876
|
this.paste = new EventEmitter();
|
|
2853
2877
|
/**
|
|
2854
|
-
* Fires when the content area of the Editor is blurred ([see example](
|
|
2878
|
+
* Fires when the content area of the Editor is blurred ([see example](slug:events_editor)).
|
|
2855
2879
|
*/
|
|
2856
2880
|
this.onBlur = new EventEmitter();
|
|
2857
2881
|
this.hostClass = true;
|
|
@@ -2953,7 +2977,7 @@ class EditorComponent {
|
|
|
2953
2977
|
this.subs = zip(this.afterViewInit.asObservable(), this.contentAreaLoaded.asObservable()).subscribe(() => this.initialize());
|
|
2954
2978
|
}
|
|
2955
2979
|
/**
|
|
2956
|
-
* Sets the value of the Editor ([see example](
|
|
2980
|
+
* Sets the value of the Editor ([see example](slug:overview_editor)).
|
|
2957
2981
|
*/
|
|
2958
2982
|
set value(value) {
|
|
2959
2983
|
this.changeValue(value);
|
|
@@ -3524,7 +3548,7 @@ class EditorComponent {
|
|
|
3524
3548
|
}
|
|
3525
3549
|
}
|
|
3526
3550
|
EditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorComponent, deps: [{ token: i1$1.DialogService }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: ProviderService }, { token: EditorToolsService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
3527
|
-
EditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorComponent, selector: "kendo-editor", inputs: { value: "value", disabled: "disabled", readonly: "readonly", iframe: "iframe", iframeCss: "iframeCss", applyToWord: "applyToWord", schema: "schema", plugins: "plugins", placeholder: "placeholder", preserveWhitespace: "preserveWhitespace", pasteCleanupSettings: "pasteCleanupSettings", resizable: "resizable" }, outputs: { valueChange: "valueChange", onFocus: "focus", paste: "paste", onBlur: "blur" }, host: { properties: { "class.k-editor": "this.hostClass", "class.k-editor-resizable": "this.resizableClass", "class.k-disabled": "this.isDisabled", "class.k-readonly": "this.isReadonly", "class.k-ie": "this.isIE", "attr.dir": "this.dir", "attr.ariaDisabled": "this.ariaDisabled", "style.minWidth": "this.minWidth", "style.maxWidth": "this.maxWidth", "style.minHeight": "this.minHeight", "style.maxHeight": "this.maxHeight" } }, providers: [
|
|
3551
|
+
EditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorComponent, isStandalone: true, selector: "kendo-editor", inputs: { value: "value", disabled: "disabled", readonly: "readonly", iframe: "iframe", iframeCss: "iframeCss", applyToWord: "applyToWord", schema: "schema", plugins: "plugins", placeholder: "placeholder", preserveWhitespace: "preserveWhitespace", pasteCleanupSettings: "pasteCleanupSettings", resizable: "resizable" }, outputs: { valueChange: "valueChange", onFocus: "focus", paste: "paste", onBlur: "blur" }, host: { properties: { "class.k-editor": "this.hostClass", "class.k-editor-resizable": "this.resizableClass", "class.k-disabled": "this.isDisabled", "class.k-readonly": "this.isReadonly", "class.k-ie": "this.isIE", "attr.dir": "this.dir", "attr.ariaDisabled": "this.ariaDisabled", "style.minWidth": "this.minWidth", "style.maxWidth": "this.maxWidth", "style.minHeight": "this.minHeight", "style.maxHeight": "this.maxHeight" } }, providers: [
|
|
3528
3552
|
EditorLocalizationService,
|
|
3529
3553
|
ProviderService,
|
|
3530
3554
|
EditorToolsService,
|
|
@@ -3704,7 +3728,7 @@ EditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", versio
|
|
|
3704
3728
|
<ng-container #dialogsContainer></ng-container>
|
|
3705
3729
|
|
|
3706
3730
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
3707
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
3731
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoEditorLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ToolBarComponent, selector: "kendo-toolbar", inputs: ["overflow", "resizable", "popupSettings", "tabindex", "size", "tabIndex"], outputs: ["open", "close"], exportAs: ["kendoToolBar"] }, { kind: "component", type: ToolBarButtonGroupComponent, selector: "kendo-toolbar-buttongroup", inputs: ["disabled", "selection", "width", "look"], exportAs: ["kendoToolBarButtonGroup"] }, { kind: "component", type: ToolBarButtonComponent, selector: "kendo-toolbar-button", inputs: ["showText", "showIcon", "text", "style", "className", "title", "disabled", "toggleable", "look", "togglable", "selected", "fillMode", "themeColor", "icon", "iconClass", "svgIcon", "imageUrl"], outputs: ["click", "pointerdown", "selectedChange"], exportAs: ["kendoToolBarButton"] }, { kind: "directive", type: EditorBoldButtonDirective, selector: "kendo-toolbar-button[kendoEditorBoldButton]" }, { kind: "directive", type: EditorItalicButtonDirective, selector: "kendo-toolbar-button[kendoEditorItalicButton]" }, { kind: "directive", type: EditorUnderlineButtonDirective, selector: "kendo-toolbar-button[kendoEditorUnderlineButton]" }, { kind: "component", type: EditorFormatComponent, selector: "kendo-toolbar-dropdownlist[kendoEditorFormat]", inputs: ["data"], outputs: ["valueChange"] }, { kind: "directive", type: EditorAlignLeftButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignLeftButton]" }, { kind: "directive", type: EditorAlignCenterButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignCenterButton]" }, { kind: "directive", type: EditorAlignRightButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignRightButton]" }, { kind: "directive", type: EditorAlignJustifyButtonDirective, selector: "kendo-toolbar-button[kendoEditorAlignJustifyButton]" }, { kind: "directive", type: EditorInsertUnorderedListButtonDirective, selector: "kendo-toolbar-button[kendoEditorInsertUnorderedListButton]" }, { kind: "directive", type: EditorInsertOrderedListButtonDirective, selector: "kendo-toolbar-button[kendoEditorInsertOrderedListButton]" }, { kind: "directive", type: EditorIndentButtonDirective, selector: "kendo-toolbar-button[kendoEditorIndentButton]" }, { kind: "directive", type: EditorOutdentButtonDirective, selector: "kendo-toolbar-button[kendoEditorOutdentButton]" }, { kind: "directive", type: EditorCreateLinkButtonDirective, selector: "kendo-toolbar-button[kendoEditorCreateLinkButton]" }, { kind: "directive", type: EditorUnlinkButtonDirective, selector: "kendo-toolbar-button[kendoEditorUnlinkButton]" }, { kind: "directive", type: EditorInsertImageButtonDirective, selector: "kendo-toolbar-button[kendoEditorInsertImageButton]" }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
|
|
3708
3732
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorComponent, decorators: [{
|
|
3709
3733
|
type: Component,
|
|
3710
3734
|
args: [{
|
|
@@ -3890,7 +3914,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
3890
3914
|
<ng-container #dialogsContainer></ng-container>
|
|
3891
3915
|
|
|
3892
3916
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
|
|
3893
|
-
|
|
3917
|
+
`,
|
|
3918
|
+
standalone: true,
|
|
3919
|
+
imports: [LocalizedMessagesDirective, NgIf, ToolBarComponent, ToolBarButtonGroupComponent, ToolBarButtonComponent, EditorBoldButtonDirective, EditorItalicButtonDirective, EditorUnderlineButtonDirective, EditorFormatComponent, EditorAlignLeftButtonDirective, EditorAlignCenterButtonDirective, EditorAlignRightButtonDirective, EditorAlignJustifyButtonDirective, EditorInsertUnorderedListButtonDirective, EditorInsertOrderedListButtonDirective, EditorIndentButtonDirective, EditorOutdentButtonDirective, EditorCreateLinkButtonDirective, EditorUnlinkButtonDirective, EditorInsertImageButtonDirective, WatermarkOverlayComponent]
|
|
3894
3920
|
}]
|
|
3895
3921
|
}], ctorParameters: function () { return [{ type: i1$1.DialogService }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.ElementRef }, { type: ProviderService }, { type: EditorToolsService }, { type: i0.Renderer2 }]; }, propDecorators: { value: [{
|
|
3896
3922
|
type: Input
|
|
@@ -4020,7 +4046,7 @@ class ColorPickerDialogComponent extends DialogContentBase {
|
|
|
4020
4046
|
}
|
|
4021
4047
|
}
|
|
4022
4048
|
ColorPickerDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColorPickerDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4023
|
-
ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColorPickerDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4049
|
+
ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColorPickerDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4024
4050
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
4025
4051
|
{{ textFor(editorCommand) }}
|
|
4026
4052
|
</kendo-dialog-titlebar>
|
|
@@ -4050,7 +4076,7 @@ ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
4050
4076
|
(click)="onCancelAction()"
|
|
4051
4077
|
>{{ textFor('dialogCancel') }}</button>
|
|
4052
4078
|
</kendo-dialog-actions>
|
|
4053
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
4079
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
4054
4080
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColorPickerDialogComponent, decorators: [{
|
|
4055
4081
|
type: Component,
|
|
4056
4082
|
args: [{
|
|
@@ -4084,7 +4110,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4084
4110
|
(click)="onCancelAction()"
|
|
4085
4111
|
>{{ textFor('dialogCancel') }}</button>
|
|
4086
4112
|
</kendo-dialog-actions>
|
|
4087
|
-
|
|
4113
|
+
`,
|
|
4114
|
+
standalone: true,
|
|
4115
|
+
imports: [DialogTitleBarComponent, ColorPickerComponent, DialogActionsComponent, ButtonComponent]
|
|
4088
4116
|
}]
|
|
4089
4117
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
4090
4118
|
type: Input
|
|
@@ -4108,7 +4136,7 @@ class FontFamilyDropDownListComponent {
|
|
|
4108
4136
|
}
|
|
4109
4137
|
}
|
|
4110
4138
|
FontFamilyDropDownListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontFamilyDropDownListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4111
|
-
FontFamilyDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: { data: "data", value: "value", defaultItem: "defaultItem", itemDisabled: "itemDisabled", title: "title", disabled: "disabled", tabindex: "tabindex" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, static: true }, { propertyName: "dropDownList", first: true, predicate: ["element"], descendants: true, read: DropDownListComponent, static: true }], ngImport: i0, template: `
|
|
4139
|
+
FontFamilyDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontFamilyDropDownListComponent, isStandalone: true, selector: "kendo-editor-fontfamily-dropdownlist", inputs: { data: "data", value: "value", defaultItem: "defaultItem", itemDisabled: "itemDisabled", title: "title", disabled: "disabled", tabindex: "tabindex" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, static: true }, { propertyName: "dropDownList", first: true, predicate: ["element"], descendants: true, read: DropDownListComponent, static: true }], ngImport: i0, template: `
|
|
4112
4140
|
<kendo-dropdownlist
|
|
4113
4141
|
#element
|
|
4114
4142
|
kendoEditorDropDownTool
|
|
@@ -4131,7 +4159,7 @@ FontFamilyDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
4131
4159
|
</span>
|
|
4132
4160
|
</ng-template>
|
|
4133
4161
|
</kendo-dropdownlist>
|
|
4134
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
4162
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: DropDownToolDirective, selector: "[kendoEditorDropDownTool]" }, { kind: "directive", type: ItemTemplateDirective, selector: "[kendoDropDownListItemTemplate],[kendoComboBoxItemTemplate],[kendoAutoCompleteItemTemplate],[kendoMultiSelectItemTemplate]" }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
4135
4163
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontFamilyDropDownListComponent, decorators: [{
|
|
4136
4164
|
type: Component,
|
|
4137
4165
|
args: [{
|
|
@@ -4159,7 +4187,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4159
4187
|
</span>
|
|
4160
4188
|
</ng-template>
|
|
4161
4189
|
</kendo-dropdownlist>
|
|
4162
|
-
|
|
4190
|
+
`,
|
|
4191
|
+
standalone: true,
|
|
4192
|
+
imports: [DropDownListComponent, DropDownToolDirective, ItemTemplateDirective, NgStyle]
|
|
4163
4193
|
}]
|
|
4164
4194
|
}], propDecorators: { data: [{
|
|
4165
4195
|
type: Input
|
|
@@ -4216,7 +4246,7 @@ class FontFamilyDialogComponent extends DialogContentBase {
|
|
|
4216
4246
|
}
|
|
4217
4247
|
}
|
|
4218
4248
|
FontFamilyDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontFamilyDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4219
|
-
FontFamilyDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontFamilyDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontFamilyDropDownList", first: true, predicate: ["fontFamilyDropDownList"], descendants: true, read: FontFamilyDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4249
|
+
FontFamilyDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontFamilyDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontFamilyDropDownList", first: true, predicate: ["fontFamilyDropDownList"], descendants: true, read: FontFamilyDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4220
4250
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
4221
4251
|
{{ textFor('fontFamily') }}
|
|
4222
4252
|
</kendo-dialog-titlebar>
|
|
@@ -4241,7 +4271,7 @@ FontFamilyDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
4241
4271
|
(click)="onCancelAction()"
|
|
4242
4272
|
>{{ textFor('dialogCancel') }}</button>
|
|
4243
4273
|
</kendo-dialog-actions>
|
|
4244
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
4274
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
4245
4275
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontFamilyDialogComponent, decorators: [{
|
|
4246
4276
|
type: Component,
|
|
4247
4277
|
args: [{
|
|
@@ -4270,7 +4300,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4270
4300
|
(click)="onCancelAction()"
|
|
4271
4301
|
>{{ textFor('dialogCancel') }}</button>
|
|
4272
4302
|
</kendo-dialog-actions>
|
|
4273
|
-
|
|
4303
|
+
`,
|
|
4304
|
+
standalone: true,
|
|
4305
|
+
imports: [DialogTitleBarComponent, FontFamilyDropDownListComponent, DialogActionsComponent, ButtonComponent]
|
|
4274
4306
|
}]
|
|
4275
4307
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
4276
4308
|
type: Input
|
|
@@ -4329,7 +4361,7 @@ class PopupTableGridComponent {
|
|
|
4329
4361
|
}
|
|
4330
4362
|
}
|
|
4331
4363
|
PopupTableGridComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupTableGridComponent, deps: [{ token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4332
|
-
PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: { cellClick: "cellClick", tableWizardClick: "tableWizardClick" }, ngImport: i0, template: `
|
|
4364
|
+
PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PopupTableGridComponent, isStandalone: true, selector: "kendo-popup-table-grid", outputs: { cellClick: "cellClick", tableWizardClick: "tableWizardClick" }, ngImport: i0, template: `
|
|
4333
4365
|
<div
|
|
4334
4366
|
[style.border-color]="'inherit'"
|
|
4335
4367
|
class="k-ct-popup"
|
|
@@ -4348,7 +4380,7 @@ PopupTableGridComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
4348
4380
|
<button type="button" kendoButton class="k-tool" [icon]="'table-wizard'" [svgIcon]="tableWizardIcon" (click)="openTableWizard()" title="Table Wizard">Table Wizard</button>
|
|
4349
4381
|
</div>
|
|
4350
4382
|
-->
|
|
4351
|
-
`, isInline: true, dependencies: [{ kind: "directive", type:
|
|
4383
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
4352
4384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PopupTableGridComponent, decorators: [{
|
|
4353
4385
|
type: Component,
|
|
4354
4386
|
args: [{
|
|
@@ -4372,7 +4404,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4372
4404
|
<button type="button" kendoButton class="k-tool" [icon]="'table-wizard'" [svgIcon]="tableWizardIcon" (click)="openTableWizard()" title="Table Wizard">Table Wizard</button>
|
|
4373
4405
|
</div>
|
|
4374
4406
|
-->
|
|
4375
|
-
|
|
4407
|
+
`,
|
|
4408
|
+
standalone: true,
|
|
4409
|
+
imports: [NgFor]
|
|
4376
4410
|
}]
|
|
4377
4411
|
}], ctorParameters: function () { return [{ type: EditorLocalizationService }]; }, propDecorators: { cellClick: [{
|
|
4378
4412
|
type: Output
|
|
@@ -4406,7 +4440,7 @@ class InsertTableDialogComponent extends DialogContentBase {
|
|
|
4406
4440
|
}
|
|
4407
4441
|
}
|
|
4408
4442
|
InsertTableDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InsertTableDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4409
|
-
InsertTableDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: InsertTableDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, usesInheritance: true, ngImport: i0, template: `
|
|
4443
|
+
InsertTableDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: InsertTableDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, usesInheritance: true, ngImport: i0, template: `
|
|
4410
4444
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
4411
4445
|
{{ textFor('insertTable') }}
|
|
4412
4446
|
</kendo-dialog-titlebar>
|
|
@@ -4419,7 +4453,7 @@ InsertTableDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
4419
4453
|
(click)="onCancelAction()"
|
|
4420
4454
|
>{{ textFor('dialogCancel') }}</button>
|
|
4421
4455
|
</kendo-dialog-actions>
|
|
4422
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
4456
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
4423
4457
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: InsertTableDialogComponent, decorators: [{
|
|
4424
4458
|
type: Component,
|
|
4425
4459
|
args: [{
|
|
@@ -4436,7 +4470,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4436
4470
|
(click)="onCancelAction()"
|
|
4437
4471
|
>{{ textFor('dialogCancel') }}</button>
|
|
4438
4472
|
</kendo-dialog-actions>
|
|
4439
|
-
|
|
4473
|
+
`,
|
|
4474
|
+
standalone: true,
|
|
4475
|
+
imports: [DialogTitleBarComponent, PopupTableGridComponent, DialogActionsComponent, ButtonComponent]
|
|
4440
4476
|
}]
|
|
4441
4477
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
4442
4478
|
type: Input
|
|
@@ -4457,7 +4493,7 @@ class FontSizeDropDownListComponent {
|
|
|
4457
4493
|
}
|
|
4458
4494
|
}
|
|
4459
4495
|
FontSizeDropDownListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontSizeDropDownListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
4460
|
-
FontSizeDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: { data: "data", value: "value", defaultItem: "defaultItem", itemDisabled: "itemDisabled", title: "title", disabled: "disabled", tabindex: "tabindex" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, static: true }, { propertyName: "dropDownList", first: true, predicate: ["element"], descendants: true, read: DropDownListComponent, static: true }], ngImport: i0, template: `
|
|
4496
|
+
FontSizeDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontSizeDropDownListComponent, isStandalone: true, selector: "kendo-editor-fontsize-dropdownlist", inputs: { data: "data", value: "value", defaultItem: "defaultItem", itemDisabled: "itemDisabled", title: "title", disabled: "disabled", tabindex: "tabindex" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "element", first: true, predicate: ["element"], descendants: true, static: true }, { propertyName: "dropDownList", first: true, predicate: ["element"], descendants: true, read: DropDownListComponent, static: true }], ngImport: i0, template: `
|
|
4461
4497
|
<kendo-dropdownlist
|
|
4462
4498
|
#element
|
|
4463
4499
|
kendoEditorDropDownTool
|
|
@@ -4475,7 +4511,7 @@ FontSizeDropDownListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "1
|
|
|
4475
4511
|
[style.width.em]="13"
|
|
4476
4512
|
>
|
|
4477
4513
|
</kendo-dropdownlist>
|
|
4478
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
4514
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "title", "subtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: DropDownToolDirective, selector: "[kendoEditorDropDownTool]" }] });
|
|
4479
4515
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontSizeDropDownListComponent, decorators: [{
|
|
4480
4516
|
type: Component,
|
|
4481
4517
|
args: [{
|
|
@@ -4498,7 +4534,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4498
4534
|
[style.width.em]="13"
|
|
4499
4535
|
>
|
|
4500
4536
|
</kendo-dropdownlist>
|
|
4501
|
-
|
|
4537
|
+
`,
|
|
4538
|
+
standalone: true,
|
|
4539
|
+
imports: [DropDownListComponent, DropDownToolDirective]
|
|
4502
4540
|
}]
|
|
4503
4541
|
}], propDecorators: { data: [{
|
|
4504
4542
|
type: Input
|
|
@@ -4555,7 +4593,7 @@ class FontSizeDialogComponent extends DialogContentBase {
|
|
|
4555
4593
|
}
|
|
4556
4594
|
}
|
|
4557
4595
|
FontSizeDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontSizeDialogComponent, deps: [{ token: i1$1.DialogRef }, { token: EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4558
|
-
FontSizeDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontSizeDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontSizeDropDownList", first: true, predicate: ["fontSizeDropDownList"], descendants: true, read: FontSizeDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4596
|
+
FontSizeDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontSizeDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontSizeDropDownList", first: true, predicate: ["fontSizeDropDownList"], descendants: true, read: FontSizeDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
4559
4597
|
<kendo-dialog-titlebar (close)="onCancelAction()">
|
|
4560
4598
|
{{ textFor('fontSize') }}
|
|
4561
4599
|
</kendo-dialog-titlebar>
|
|
@@ -4580,7 +4618,7 @@ FontSizeDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
4580
4618
|
(click)="onCancelAction()"
|
|
4581
4619
|
>{{ textFor('dialogCancel') }}</button>
|
|
4582
4620
|
</kendo-dialog-actions>
|
|
4583
|
-
`, isInline: true, dependencies: [{ kind: "component", type:
|
|
4621
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
4584
4622
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontSizeDialogComponent, decorators: [{
|
|
4585
4623
|
type: Component,
|
|
4586
4624
|
args: [{
|
|
@@ -4609,7 +4647,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4609
4647
|
(click)="onCancelAction()"
|
|
4610
4648
|
>{{ textFor('dialogCancel') }}</button>
|
|
4611
4649
|
</kendo-dialog-actions>
|
|
4612
|
-
|
|
4650
|
+
`,
|
|
4651
|
+
standalone: true,
|
|
4652
|
+
imports: [DialogTitleBarComponent, FontSizeDropDownListComponent, DialogActionsComponent, ButtonComponent]
|
|
4613
4653
|
}]
|
|
4614
4654
|
}], ctorParameters: function () { return [{ type: i1$1.DialogRef }, { type: EditorLocalizationService }]; }, propDecorators: { editor: [{
|
|
4615
4655
|
type: Input
|
|
@@ -4764,7 +4804,7 @@ class EditorFontSizeComponent extends ToolBarToolComponent {
|
|
|
4764
4804
|
}
|
|
4765
4805
|
}
|
|
4766
4806
|
EditorFontSizeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFontSizeComponent, deps: [{ token: i1$1.DialogService }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
4767
|
-
EditorFontSizeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorFontSizeComponent, selector: "kendo-toolbar-dropdownlist[kendoEditorFontSize]", inputs: { data: "data" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFontSizeComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "element", first: true, predicate: ["element"], descendants: true }, { propertyName: "fontSizeDropDownList", first: true, predicate: ["element"], descendants: true, read: FontSizeDropDownListComponent }, { propertyName: "fontSizeButton", first: true, predicate: ["fontSizeButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
4807
|
+
EditorFontSizeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorFontSizeComponent, isStandalone: true, selector: "kendo-toolbar-dropdownlist[kendoEditorFontSize]", inputs: { data: "data" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFontSizeComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "element", first: true, predicate: ["element"], descendants: true }, { propertyName: "fontSizeDropDownList", first: true, predicate: ["element"], descendants: true, read: FontSizeDropDownListComponent }, { propertyName: "fontSizeButton", first: true, predicate: ["fontSizeButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
4768
4808
|
<ng-template #toolbarTemplate>
|
|
4769
4809
|
<kendo-editor-fontsize-dropdownlist
|
|
4770
4810
|
#element
|
|
@@ -4794,7 +4834,7 @@ EditorFontSizeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
|
|
|
4794
4834
|
</span>
|
|
4795
4835
|
</div>
|
|
4796
4836
|
</ng-template>
|
|
4797
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
4837
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
4798
4838
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFontSizeComponent, decorators: [{
|
|
4799
4839
|
type: Component,
|
|
4800
4840
|
args: [{
|
|
@@ -4830,7 +4870,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
4830
4870
|
</span>
|
|
4831
4871
|
</div>
|
|
4832
4872
|
</ng-template>
|
|
4833
|
-
|
|
4873
|
+
`,
|
|
4874
|
+
standalone: true,
|
|
4875
|
+
imports: [FontSizeDropDownListComponent, IconWrapperComponent, NgIf]
|
|
4834
4876
|
}]
|
|
4835
4877
|
}], ctorParameters: function () { return [{ type: i1$1.DialogService }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }, { type: i0.Renderer2 }]; }, propDecorators: { data: [{
|
|
4836
4878
|
type: Input
|
|
@@ -4993,7 +5035,7 @@ class EditorFontFamilyComponent extends ToolBarToolComponent {
|
|
|
4993
5035
|
}
|
|
4994
5036
|
}
|
|
4995
5037
|
EditorFontFamilyComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFontFamilyComponent, deps: [{ token: i1$1.DialogService }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
4996
|
-
EditorFontFamilyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorFontFamilyComponent, selector: "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", inputs: { data: "data" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFontFamilyComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "element", first: true, predicate: ["element"], descendants: true }, { propertyName: "fontFamilyDropDownList", first: true, predicate: ["element"], descendants: true, read: FontFamilyDropDownListComponent }, { propertyName: "fontFamilyButton", first: true, predicate: ["fontFamilyButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
5038
|
+
EditorFontFamilyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorFontFamilyComponent, isStandalone: true, selector: "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", inputs: { data: "data" }, outputs: { valueChange: "valueChange" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorFontFamilyComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "element", first: true, predicate: ["element"], descendants: true }, { propertyName: "fontFamilyDropDownList", first: true, predicate: ["element"], descendants: true, read: FontFamilyDropDownListComponent }, { propertyName: "fontFamilyButton", first: true, predicate: ["fontFamilyButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
4997
5039
|
<ng-template #toolbarTemplate>
|
|
4998
5040
|
<kendo-editor-fontfamily-dropdownlist
|
|
4999
5041
|
#element
|
|
@@ -5023,7 +5065,7 @@ EditorFontFamilyComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
|
|
|
5023
5065
|
</span>
|
|
5024
5066
|
</div>
|
|
5025
5067
|
</ng-template>
|
|
5026
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
5068
|
+
`, isInline: true, dependencies: [{ kind: "component", type: FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
5027
5069
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorFontFamilyComponent, decorators: [{
|
|
5028
5070
|
type: Component,
|
|
5029
5071
|
args: [{
|
|
@@ -5059,7 +5101,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5059
5101
|
</span>
|
|
5060
5102
|
</div>
|
|
5061
5103
|
</ng-template>
|
|
5062
|
-
|
|
5104
|
+
`,
|
|
5105
|
+
standalone: true,
|
|
5106
|
+
imports: [FontFamilyDropDownListComponent, IconWrapperComponent, NgIf]
|
|
5063
5107
|
}]
|
|
5064
5108
|
}], ctorParameters: function () { return [{ type: i1$1.DialogService }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }, { type: i0.Renderer2 }]; }, propDecorators: { data: [{
|
|
5065
5109
|
type: Input
|
|
@@ -5248,7 +5292,7 @@ class EditorColorPickerComponent extends ToolBarToolComponent {
|
|
|
5248
5292
|
}
|
|
5249
5293
|
}
|
|
5250
5294
|
EditorColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorColorPickerComponent, deps: [{ token: EditorLocalizationService }, { token: i1$1.DialogService }, { token: i0.NgZone }, { token: ProviderService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
5251
|
-
EditorColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorColorPickerComponent, selector: "kendo-toolbar-colorpicker", inputs: { value: "value", icon: "icon", svgIcon: "svgIcon", paletteSettings: "paletteSettings", editorCommand: "editorCommand", disabled: "disabled", views: "views", view: "view" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorColorPickerComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "element", first: true, predicate: ["colorpicker"], descendants: true, read: ElementRef }, { propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent }, { propertyName: "colorPickerButton", first: true, predicate: ["colorPickerButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
5295
|
+
EditorColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorColorPickerComponent, isStandalone: true, selector: "kendo-toolbar-colorpicker", inputs: { value: "value", icon: "icon", svgIcon: "svgIcon", paletteSettings: "paletteSettings", editorCommand: "editorCommand", disabled: "disabled", views: "views", view: "view" }, providers: [{ provide: ToolBarToolComponent, useExisting: forwardRef(() => EditorColorPickerComponent) }], viewQueries: [{ propertyName: "toolbarTemplate", first: true, predicate: ["toolbarTemplate"], descendants: true, static: true }, { propertyName: "popupTemplate", first: true, predicate: ["popupTemplate"], descendants: true, static: true }, { propertyName: "element", first: true, predicate: ["colorpicker"], descendants: true, read: ElementRef }, { propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent }, { propertyName: "colorPickerButton", first: true, predicate: ["colorPickerButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: `
|
|
5252
5296
|
<ng-template #toolbarTemplate>
|
|
5253
5297
|
<kendo-colorpicker
|
|
5254
5298
|
#colorpicker
|
|
@@ -5289,7 +5333,7 @@ EditorColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
|
|
|
5289
5333
|
</span>
|
|
5290
5334
|
</div>
|
|
5291
5335
|
</ng-template>
|
|
5292
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
5336
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
5293
5337
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorColorPickerComponent, decorators: [{
|
|
5294
5338
|
type: Component,
|
|
5295
5339
|
args: [{
|
|
@@ -5336,7 +5380,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5336
5380
|
</span>
|
|
5337
5381
|
</div>
|
|
5338
5382
|
</ng-template>
|
|
5339
|
-
|
|
5383
|
+
`,
|
|
5384
|
+
standalone: true,
|
|
5385
|
+
imports: [ColorPickerComponent, NgIf, IconWrapperComponent]
|
|
5340
5386
|
}]
|
|
5341
5387
|
}], ctorParameters: function () { return [{ type: EditorLocalizationService }, { type: i1$1.DialogService }, { type: i0.NgZone }, { type: ProviderService }, { type: i0.Renderer2 }]; }, propDecorators: { value: [{
|
|
5342
5388
|
type: Input
|
|
@@ -5517,8 +5563,8 @@ class EditorInsertTableButtonComponent extends ToolBarToolComponent {
|
|
|
5517
5563
|
return (_a = (this.overflows ? this.overflowElement : this.element)) === null || _a === void 0 ? void 0 : _a.nativeElement;
|
|
5518
5564
|
}
|
|
5519
5565
|
}
|
|
5520
|
-
EditorInsertTableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertTableButtonComponent, deps: [{ token: EditorLocalizationService }, { token: i2
|
|
5521
|
-
EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", 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, read: ElementRef }, { propertyName: "overflowElement", first: true, predicate: ["overflowElement"], descendants: true, read: ElementRef }, { propertyName: "popupGridTemplate", first: true, predicate: ["popupGridTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
5566
|
+
EditorInsertTableButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertTableButtonComponent, deps: [{ token: EditorLocalizationService }, { token: i2.PopupService }, { token: i1$1.DialogService }, { token: ProviderService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
5567
|
+
EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertTableButtonComponent, isStandalone: true, 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, read: ElementRef }, { propertyName: "overflowElement", first: true, predicate: ["overflowElement"], descendants: true, read: ElementRef }, { propertyName: "popupGridTemplate", first: true, predicate: ["popupGridTemplate"], descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
5522
5568
|
<ng-template #toolbarTemplate>
|
|
5523
5569
|
<button
|
|
5524
5570
|
type="button"
|
|
@@ -5550,7 +5596,7 @@ EditorInsertTableButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion:
|
|
|
5550
5596
|
<ng-template #popupGridTemplate>
|
|
5551
5597
|
<kendo-popup-table-grid (cellClick)="onCellClick($event)" (tableWizardClick)="onTableWizardClick()"></kendo-popup-table-grid>
|
|
5552
5598
|
</ng-template>
|
|
5553
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
5599
|
+
`, isInline: true, dependencies: [{ kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PopupTableGridComponent, selector: "kendo-popup-table-grid", outputs: ["cellClick", "tableWizardClick"] }] });
|
|
5554
5600
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertTableButtonComponent, decorators: [{
|
|
5555
5601
|
type: Component,
|
|
5556
5602
|
args: [{
|
|
@@ -5588,9 +5634,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5588
5634
|
<ng-template #popupGridTemplate>
|
|
5589
5635
|
<kendo-popup-table-grid (cellClick)="onCellClick($event)" (tableWizardClick)="onTableWizardClick()"></kendo-popup-table-grid>
|
|
5590
5636
|
</ng-template>
|
|
5591
|
-
|
|
5637
|
+
`,
|
|
5638
|
+
standalone: true,
|
|
5639
|
+
imports: [ButtonComponent, IconWrapperComponent, NgIf, PopupTableGridComponent]
|
|
5592
5640
|
}]
|
|
5593
|
-
}], ctorParameters: function () { return [{ type: EditorLocalizationService }, { type: i2
|
|
5641
|
+
}], ctorParameters: function () { return [{ type: EditorLocalizationService }, { type: i2.PopupService }, { type: i1$1.DialogService }, { type: ProviderService }, { type: i0.Renderer2 }]; }, propDecorators: { toolbarTemplate: [{
|
|
5594
5642
|
type: ViewChild,
|
|
5595
5643
|
args: ['toolbarTemplate', { static: true }]
|
|
5596
5644
|
}], popupTemplate: [{
|
|
@@ -5623,11 +5671,12 @@ class EditorBlockquoteDirective extends EditorCommandButton {
|
|
|
5623
5671
|
}
|
|
5624
5672
|
}
|
|
5625
5673
|
EditorBlockquoteDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBlockquoteDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5626
|
-
EditorBlockquoteDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorBlockquoteDirective, selector: "kendo-toolbar-button[kendoEditorBlockquoteButton]", usesInheritance: true, ngImport: i0 });
|
|
5674
|
+
EditorBlockquoteDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorBlockquoteDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorBlockquoteButton]", usesInheritance: true, ngImport: i0 });
|
|
5627
5675
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBlockquoteDirective, decorators: [{
|
|
5628
5676
|
type: Directive,
|
|
5629
5677
|
args: [{
|
|
5630
|
-
selector: 'kendo-toolbar-button[kendoEditorBlockquoteButton]'
|
|
5678
|
+
selector: 'kendo-toolbar-button[kendoEditorBlockquoteButton]',
|
|
5679
|
+
standalone: true
|
|
5631
5680
|
}]
|
|
5632
5681
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5633
5682
|
|
|
@@ -5648,11 +5697,12 @@ class EditorRedoButtonDirective extends EditorCommandButton {
|
|
|
5648
5697
|
}
|
|
5649
5698
|
}
|
|
5650
5699
|
EditorRedoButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorRedoButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5651
|
-
EditorRedoButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorRedoButtonDirective, selector: "kendo-toolbar-button[kendoEditorRedoButton]", usesInheritance: true, ngImport: i0 });
|
|
5700
|
+
EditorRedoButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorRedoButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorRedoButton]", usesInheritance: true, ngImport: i0 });
|
|
5652
5701
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorRedoButtonDirective, decorators: [{
|
|
5653
5702
|
type: Directive,
|
|
5654
5703
|
args: [{
|
|
5655
|
-
selector: 'kendo-toolbar-button[kendoEditorRedoButton]'
|
|
5704
|
+
selector: 'kendo-toolbar-button[kendoEditorRedoButton]',
|
|
5705
|
+
standalone: true
|
|
5656
5706
|
}]
|
|
5657
5707
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5658
5708
|
|
|
@@ -5673,11 +5723,12 @@ class EditorUndoButtonDirective extends EditorCommandButton {
|
|
|
5673
5723
|
}
|
|
5674
5724
|
}
|
|
5675
5725
|
EditorUndoButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUndoButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5676
|
-
EditorUndoButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorUndoButtonDirective, selector: "kendo-toolbar-button[kendoEditorUndoButton]", usesInheritance: true, ngImport: i0 });
|
|
5726
|
+
EditorUndoButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorUndoButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorUndoButton]", usesInheritance: true, ngImport: i0 });
|
|
5677
5727
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorUndoButtonDirective, decorators: [{
|
|
5678
5728
|
type: Directive,
|
|
5679
5729
|
args: [{
|
|
5680
|
-
selector: 'kendo-toolbar-button[kendoEditorUndoButton]'
|
|
5730
|
+
selector: 'kendo-toolbar-button[kendoEditorUndoButton]',
|
|
5731
|
+
standalone: true
|
|
5681
5732
|
}]
|
|
5682
5733
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5683
5734
|
|
|
@@ -5697,11 +5748,12 @@ class EditorViewSourceButtonDirective extends EditorCommandDialog {
|
|
|
5697
5748
|
}
|
|
5698
5749
|
}
|
|
5699
5750
|
EditorViewSourceButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorViewSourceButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5700
|
-
EditorViewSourceButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorViewSourceButtonDirective, selector: "kendo-toolbar-button[kendoEditorViewSourceButton]", usesInheritance: true, ngImport: i0 });
|
|
5751
|
+
EditorViewSourceButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorViewSourceButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorViewSourceButton]", usesInheritance: true, ngImport: i0 });
|
|
5701
5752
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorViewSourceButtonDirective, decorators: [{
|
|
5702
5753
|
type: Directive,
|
|
5703
5754
|
args: [{
|
|
5704
|
-
selector: 'kendo-toolbar-button[kendoEditorViewSourceButton]'
|
|
5755
|
+
selector: 'kendo-toolbar-button[kendoEditorViewSourceButton]',
|
|
5756
|
+
standalone: true
|
|
5705
5757
|
}]
|
|
5706
5758
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5707
5759
|
|
|
@@ -5722,11 +5774,12 @@ class EditorStrikethroughButtonDirective extends EditorCommandButton {
|
|
|
5722
5774
|
}
|
|
5723
5775
|
}
|
|
5724
5776
|
EditorStrikethroughButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorStrikethroughButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5725
|
-
EditorStrikethroughButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorStrikethroughButtonDirective, selector: "kendo-toolbar-button[kendoEditorStrikethroughButton]", usesInheritance: true, ngImport: i0 });
|
|
5777
|
+
EditorStrikethroughButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorStrikethroughButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorStrikethroughButton]", usesInheritance: true, ngImport: i0 });
|
|
5726
5778
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorStrikethroughButtonDirective, decorators: [{
|
|
5727
5779
|
type: Directive,
|
|
5728
5780
|
args: [{
|
|
5729
|
-
selector: 'kendo-toolbar-button[kendoEditorStrikethroughButton]'
|
|
5781
|
+
selector: 'kendo-toolbar-button[kendoEditorStrikethroughButton]',
|
|
5782
|
+
standalone: true
|
|
5730
5783
|
}]
|
|
5731
5784
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5732
5785
|
|
|
@@ -5747,11 +5800,12 @@ class EditorSubscriptButtonDirective extends EditorCommandButton {
|
|
|
5747
5800
|
}
|
|
5748
5801
|
}
|
|
5749
5802
|
EditorSubscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSubscriptButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5750
|
-
EditorSubscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSubscriptButtonDirective, selector: "kendo-toolbar-button[kendoEditorSubscriptButton]", usesInheritance: true, ngImport: i0 });
|
|
5803
|
+
EditorSubscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSubscriptButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSubscriptButton]", usesInheritance: true, ngImport: i0 });
|
|
5751
5804
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSubscriptButtonDirective, decorators: [{
|
|
5752
5805
|
type: Directive,
|
|
5753
5806
|
args: [{
|
|
5754
|
-
selector: 'kendo-toolbar-button[kendoEditorSubscriptButton]'
|
|
5807
|
+
selector: 'kendo-toolbar-button[kendoEditorSubscriptButton]',
|
|
5808
|
+
standalone: true
|
|
5755
5809
|
}]
|
|
5756
5810
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5757
5811
|
|
|
@@ -5772,11 +5826,12 @@ class EditorSuperscriptButtonDirective extends EditorCommandButton {
|
|
|
5772
5826
|
}
|
|
5773
5827
|
}
|
|
5774
5828
|
EditorSuperscriptButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSuperscriptButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5775
|
-
EditorSuperscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSuperscriptButtonDirective, selector: "kendo-toolbar-button[kendoEditorSuperscriptButton]", usesInheritance: true, ngImport: i0 });
|
|
5829
|
+
EditorSuperscriptButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSuperscriptButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSuperscriptButton]", usesInheritance: true, ngImport: i0 });
|
|
5776
5830
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSuperscriptButtonDirective, decorators: [{
|
|
5777
5831
|
type: Directive,
|
|
5778
5832
|
args: [{
|
|
5779
|
-
selector: 'kendo-toolbar-button[kendoEditorSuperscriptButton]'
|
|
5833
|
+
selector: 'kendo-toolbar-button[kendoEditorSuperscriptButton]',
|
|
5834
|
+
standalone: true
|
|
5780
5835
|
}]
|
|
5781
5836
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5782
5837
|
|
|
@@ -5796,11 +5851,12 @@ class EditorInsertFileButtonDirective extends EditorCommandDialog {
|
|
|
5796
5851
|
}
|
|
5797
5852
|
}
|
|
5798
5853
|
EditorInsertFileButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertFileButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5799
|
-
EditorInsertFileButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertFileButtonDirective, selector: "kendo-toolbar-button[kendoEditorInsertFileButton]", usesInheritance: true, ngImport: i0 });
|
|
5854
|
+
EditorInsertFileButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorInsertFileButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorInsertFileButton]", usesInheritance: true, ngImport: i0 });
|
|
5800
5855
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorInsertFileButtonDirective, decorators: [{
|
|
5801
5856
|
type: Directive,
|
|
5802
5857
|
args: [{
|
|
5803
|
-
selector: 'kendo-toolbar-button[kendoEditorInsertFileButton]'
|
|
5858
|
+
selector: 'kendo-toolbar-button[kendoEditorInsertFileButton]',
|
|
5859
|
+
standalone: true
|
|
5804
5860
|
}]
|
|
5805
5861
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5806
5862
|
|
|
@@ -5822,11 +5878,12 @@ class EditorForeColorDirective {
|
|
|
5822
5878
|
}
|
|
5823
5879
|
}
|
|
5824
5880
|
EditorForeColorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorForeColorDirective, deps: [{ token: EditorColorPickerComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5825
|
-
EditorForeColorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorForeColorDirective, selector: "[kendoEditorForeColor]", ngImport: i0 });
|
|
5881
|
+
EditorForeColorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorForeColorDirective, isStandalone: true, selector: "[kendoEditorForeColor]", ngImport: i0 });
|
|
5826
5882
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorForeColorDirective, decorators: [{
|
|
5827
5883
|
type: Directive,
|
|
5828
5884
|
args: [{
|
|
5829
|
-
selector: '[kendoEditorForeColor]'
|
|
5885
|
+
selector: '[kendoEditorForeColor]',
|
|
5886
|
+
standalone: true
|
|
5830
5887
|
}]
|
|
5831
5888
|
}], ctorParameters: function () { return [{ type: EditorColorPickerComponent }]; } });
|
|
5832
5889
|
|
|
@@ -5848,11 +5905,12 @@ class EditorBackColorDirective {
|
|
|
5848
5905
|
}
|
|
5849
5906
|
}
|
|
5850
5907
|
EditorBackColorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBackColorDirective, deps: [{ token: EditorColorPickerComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5851
|
-
EditorBackColorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorBackColorDirective, selector: "[kendoEditorBackColor]", ngImport: i0 });
|
|
5908
|
+
EditorBackColorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorBackColorDirective, isStandalone: true, selector: "[kendoEditorBackColor]", ngImport: i0 });
|
|
5852
5909
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorBackColorDirective, decorators: [{
|
|
5853
5910
|
type: Directive,
|
|
5854
5911
|
args: [{
|
|
5855
|
-
selector: '[kendoEditorBackColor]'
|
|
5912
|
+
selector: '[kendoEditorBackColor]',
|
|
5913
|
+
standalone: true
|
|
5856
5914
|
}]
|
|
5857
5915
|
}], ctorParameters: function () { return [{ type: EditorColorPickerComponent }]; } });
|
|
5858
5916
|
|
|
@@ -5872,11 +5930,12 @@ class EditorCleanFormattingButtonDirective extends EditorCommandButton {
|
|
|
5872
5930
|
}
|
|
5873
5931
|
}
|
|
5874
5932
|
EditorCleanFormattingButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorCleanFormattingButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5875
|
-
EditorCleanFormattingButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorCleanFormattingButtonDirective, selector: "kendo-toolbar-button[kendoEditorCleanFormattingButton]", usesInheritance: true, ngImport: i0 });
|
|
5933
|
+
EditorCleanFormattingButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorCleanFormattingButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorCleanFormattingButton]", usesInheritance: true, ngImport: i0 });
|
|
5876
5934
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorCleanFormattingButtonDirective, decorators: [{
|
|
5877
5935
|
type: Directive,
|
|
5878
5936
|
args: [{
|
|
5879
|
-
selector: 'kendo-toolbar-button[kendoEditorCleanFormattingButton]'
|
|
5937
|
+
selector: 'kendo-toolbar-button[kendoEditorCleanFormattingButton]',
|
|
5938
|
+
standalone: true
|
|
5880
5939
|
}]
|
|
5881
5940
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5882
5941
|
|
|
@@ -5897,11 +5956,12 @@ class EditorAddColumnBeforeButtonDirective extends EditorCommandButton {
|
|
|
5897
5956
|
}
|
|
5898
5957
|
}
|
|
5899
5958
|
EditorAddColumnBeforeButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddColumnBeforeButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5900
|
-
EditorAddColumnBeforeButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddColumnBeforeButtonDirective, selector: "kendo-toolbar-button[kendoEditorAddColumnBeforeButton]", usesInheritance: true, ngImport: i0 });
|
|
5959
|
+
EditorAddColumnBeforeButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddColumnBeforeButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAddColumnBeforeButton]", usesInheritance: true, ngImport: i0 });
|
|
5901
5960
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddColumnBeforeButtonDirective, decorators: [{
|
|
5902
5961
|
type: Directive,
|
|
5903
5962
|
args: [{
|
|
5904
|
-
selector: 'kendo-toolbar-button[kendoEditorAddColumnBeforeButton]'
|
|
5963
|
+
selector: 'kendo-toolbar-button[kendoEditorAddColumnBeforeButton]',
|
|
5964
|
+
standalone: true
|
|
5905
5965
|
}]
|
|
5906
5966
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5907
5967
|
|
|
@@ -5922,11 +5982,12 @@ class EditorAddColumnAfterButtonDirective extends EditorCommandButton {
|
|
|
5922
5982
|
}
|
|
5923
5983
|
}
|
|
5924
5984
|
EditorAddColumnAfterButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddColumnAfterButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5925
|
-
EditorAddColumnAfterButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddColumnAfterButtonDirective, selector: "kendo-toolbar-button[kendoEditorAddColumnAfterButton]", usesInheritance: true, ngImport: i0 });
|
|
5985
|
+
EditorAddColumnAfterButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddColumnAfterButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAddColumnAfterButton]", usesInheritance: true, ngImport: i0 });
|
|
5926
5986
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddColumnAfterButtonDirective, decorators: [{
|
|
5927
5987
|
type: Directive,
|
|
5928
5988
|
args: [{
|
|
5929
|
-
selector: 'kendo-toolbar-button[kendoEditorAddColumnAfterButton]'
|
|
5989
|
+
selector: 'kendo-toolbar-button[kendoEditorAddColumnAfterButton]',
|
|
5990
|
+
standalone: true
|
|
5930
5991
|
}]
|
|
5931
5992
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5932
5993
|
|
|
@@ -5947,11 +6008,12 @@ class EditorAddRowBeforeButtonDirective extends EditorCommandButton {
|
|
|
5947
6008
|
}
|
|
5948
6009
|
}
|
|
5949
6010
|
EditorAddRowBeforeButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddRowBeforeButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5950
|
-
EditorAddRowBeforeButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddRowBeforeButtonDirective, selector: "kendo-toolbar-button[kendoEditorAddRowBeforeButton]", usesInheritance: true, ngImport: i0 });
|
|
6011
|
+
EditorAddRowBeforeButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddRowBeforeButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAddRowBeforeButton]", usesInheritance: true, ngImport: i0 });
|
|
5951
6012
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddRowBeforeButtonDirective, decorators: [{
|
|
5952
6013
|
type: Directive,
|
|
5953
6014
|
args: [{
|
|
5954
|
-
selector: 'kendo-toolbar-button[kendoEditorAddRowBeforeButton]'
|
|
6015
|
+
selector: 'kendo-toolbar-button[kendoEditorAddRowBeforeButton]',
|
|
6016
|
+
standalone: true
|
|
5955
6017
|
}]
|
|
5956
6018
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5957
6019
|
|
|
@@ -5972,11 +6034,12 @@ class EditorAddRowAfterButtonDirective extends EditorCommandButton {
|
|
|
5972
6034
|
}
|
|
5973
6035
|
}
|
|
5974
6036
|
EditorAddRowAfterButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddRowAfterButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5975
|
-
EditorAddRowAfterButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddRowAfterButtonDirective, selector: "kendo-toolbar-button[kendoEditorAddRowAfterButton]", usesInheritance: true, ngImport: i0 });
|
|
6037
|
+
EditorAddRowAfterButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorAddRowAfterButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorAddRowAfterButton]", usesInheritance: true, ngImport: i0 });
|
|
5976
6038
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorAddRowAfterButtonDirective, decorators: [{
|
|
5977
6039
|
type: Directive,
|
|
5978
6040
|
args: [{
|
|
5979
|
-
selector: 'kendo-toolbar-button[kendoEditorAddRowAfterButton]'
|
|
6041
|
+
selector: 'kendo-toolbar-button[kendoEditorAddRowAfterButton]',
|
|
6042
|
+
standalone: true
|
|
5980
6043
|
}]
|
|
5981
6044
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
5982
6045
|
|
|
@@ -5997,11 +6060,12 @@ class EditorDeleteColumnButtonDirective extends EditorCommandButton {
|
|
|
5997
6060
|
}
|
|
5998
6061
|
}
|
|
5999
6062
|
EditorDeleteColumnButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorDeleteColumnButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6000
|
-
EditorDeleteColumnButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorDeleteColumnButtonDirective, selector: "kendo-toolbar-button[kendoEditorDeleteColumnButton]", usesInheritance: true, ngImport: i0 });
|
|
6063
|
+
EditorDeleteColumnButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorDeleteColumnButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorDeleteColumnButton]", usesInheritance: true, ngImport: i0 });
|
|
6001
6064
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorDeleteColumnButtonDirective, decorators: [{
|
|
6002
6065
|
type: Directive,
|
|
6003
6066
|
args: [{
|
|
6004
|
-
selector: 'kendo-toolbar-button[kendoEditorDeleteColumnButton]'
|
|
6067
|
+
selector: 'kendo-toolbar-button[kendoEditorDeleteColumnButton]',
|
|
6068
|
+
standalone: true
|
|
6005
6069
|
}]
|
|
6006
6070
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6007
6071
|
|
|
@@ -6022,11 +6086,12 @@ class EditorDeleteRowButtonDirective extends EditorCommandButton {
|
|
|
6022
6086
|
}
|
|
6023
6087
|
}
|
|
6024
6088
|
EditorDeleteRowButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorDeleteRowButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6025
|
-
EditorDeleteRowButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorDeleteRowButtonDirective, selector: "kendo-toolbar-button[kendoEditorDeleteRowButton]", usesInheritance: true, ngImport: i0 });
|
|
6089
|
+
EditorDeleteRowButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorDeleteRowButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorDeleteRowButton]", usesInheritance: true, ngImport: i0 });
|
|
6026
6090
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorDeleteRowButtonDirective, decorators: [{
|
|
6027
6091
|
type: Directive,
|
|
6028
6092
|
args: [{
|
|
6029
|
-
selector: 'kendo-toolbar-button[kendoEditorDeleteRowButton]'
|
|
6093
|
+
selector: 'kendo-toolbar-button[kendoEditorDeleteRowButton]',
|
|
6094
|
+
standalone: true
|
|
6030
6095
|
}]
|
|
6031
6096
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6032
6097
|
|
|
@@ -6047,65 +6112,12 @@ class EditorDeleteTableButtonDirective extends EditorCommandButton {
|
|
|
6047
6112
|
}
|
|
6048
6113
|
}
|
|
6049
6114
|
EditorDeleteTableButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorDeleteTableButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6050
|
-
EditorDeleteTableButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorDeleteTableButtonDirective, selector: "kendo-toolbar-button[kendoEditorDeleteTableButton]", usesInheritance: true, ngImport: i0 });
|
|
6115
|
+
EditorDeleteTableButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorDeleteTableButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorDeleteTableButton]", usesInheritance: true, ngImport: i0 });
|
|
6051
6116
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorDeleteTableButtonDirective, decorators: [{
|
|
6052
6117
|
type: Directive,
|
|
6053
6118
|
args: [{
|
|
6054
|
-
selector: 'kendo-toolbar-button[kendoEditorDeleteTableButton]'
|
|
6055
|
-
|
|
6056
|
-
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6057
|
-
|
|
6058
|
-
/**
|
|
6059
|
-
* @hidden
|
|
6060
|
-
*
|
|
6061
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor MergeCells tool
|
|
6062
|
-
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
6063
|
-
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6064
|
-
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
6065
|
-
*
|
|
6066
|
-
* @example
|
|
6067
|
-
* ```ts-no-run
|
|
6068
|
-
* <kendo-toolbar-button kendoEditorMergeCellsButton></kendo-toolbar-button>
|
|
6069
|
-
* ```
|
|
6070
|
-
*/
|
|
6071
|
-
class EditorMergeCellsButtonDirective extends EditorCommandButton {
|
|
6072
|
-
constructor(button, localization, providerService, toolsService) {
|
|
6073
|
-
super('mergeCells', button, localization, providerService, toolsService);
|
|
6074
|
-
}
|
|
6075
|
-
}
|
|
6076
|
-
EditorMergeCellsButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorMergeCellsButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6077
|
-
EditorMergeCellsButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorMergeCellsButtonDirective, selector: "kendo-toolbar-button[kendoEditorMergeCellsButton]", usesInheritance: true, ngImport: i0 });
|
|
6078
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorMergeCellsButtonDirective, decorators: [{
|
|
6079
|
-
type: Directive,
|
|
6080
|
-
args: [{
|
|
6081
|
-
selector: 'kendo-toolbar-button[kendoEditorMergeCellsButton]'
|
|
6082
|
-
}]
|
|
6083
|
-
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6084
|
-
|
|
6085
|
-
/**
|
|
6086
|
-
* @hidden
|
|
6087
|
-
*
|
|
6088
|
-
* A directive which configures an existing `ToolBarButtonComponent` as an Editor SplitCell tool
|
|
6089
|
-
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
6090
|
-
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6091
|
-
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
6092
|
-
*
|
|
6093
|
-
* @example
|
|
6094
|
-
* ```ts-no-run
|
|
6095
|
-
* <kendo-toolbar-button kendoEditorSplitCellButton></kendo-toolbar-button>
|
|
6096
|
-
* ```
|
|
6097
|
-
*/
|
|
6098
|
-
class EditorSplitCellButtonDirective extends EditorCommandButton {
|
|
6099
|
-
constructor(button, localization, providerService, toolsService) {
|
|
6100
|
-
super('splitCell', button, localization, providerService, toolsService);
|
|
6101
|
-
}
|
|
6102
|
-
}
|
|
6103
|
-
EditorSplitCellButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSplitCellButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6104
|
-
EditorSplitCellButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSplitCellButtonDirective, selector: "kendo-toolbar-button[kendoEditorSplitCellButton]", usesInheritance: true, ngImport: i0 });
|
|
6105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSplitCellButtonDirective, decorators: [{
|
|
6106
|
-
type: Directive,
|
|
6107
|
-
args: [{
|
|
6108
|
-
selector: 'kendo-toolbar-button[kendoEditorSplitCellButton]'
|
|
6119
|
+
selector: 'kendo-toolbar-button[kendoEditorDeleteTableButton]',
|
|
6120
|
+
standalone: true
|
|
6109
6121
|
}]
|
|
6110
6122
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6111
6123
|
|
|
@@ -6123,7 +6135,7 @@ class CustomMessagesComponent extends MessagesDirective {
|
|
|
6123
6135
|
}
|
|
6124
6136
|
}
|
|
6125
6137
|
CustomMessagesComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6126
|
-
CustomMessagesComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, selector: "kendo-editor-messages", providers: [
|
|
6138
|
+
CustomMessagesComponent.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-editor-messages", providers: [
|
|
6127
6139
|
{
|
|
6128
6140
|
provide: MessagesDirective,
|
|
6129
6141
|
useExisting: forwardRef(() => CustomMessagesComponent)
|
|
@@ -6139,7 +6151,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6139
6151
|
}
|
|
6140
6152
|
],
|
|
6141
6153
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
6142
|
-
selector: 'kendo-editor-messages'
|
|
6154
|
+
selector: 'kendo-editor-messages',
|
|
6155
|
+
standalone: true
|
|
6143
6156
|
}]
|
|
6144
6157
|
}], ctorParameters: function () { return [{ type: i1.LocalizationService }]; } });
|
|
6145
6158
|
|
|
@@ -6179,11 +6192,12 @@ class EditorPrintDirective extends EditorCommandButton {
|
|
|
6179
6192
|
}
|
|
6180
6193
|
}
|
|
6181
6194
|
EditorPrintDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorPrintDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6182
|
-
EditorPrintDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorPrintDirective, selector: "kendo-toolbar-button[kendoEditorPrintButton]", usesInheritance: true, ngImport: i0 });
|
|
6195
|
+
EditorPrintDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorPrintDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorPrintButton]", usesInheritance: true, ngImport: i0 });
|
|
6183
6196
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorPrintDirective, decorators: [{
|
|
6184
6197
|
type: Directive,
|
|
6185
6198
|
args: [{
|
|
6186
|
-
selector: 'kendo-toolbar-button[kendoEditorPrintButton]'
|
|
6199
|
+
selector: 'kendo-toolbar-button[kendoEditorPrintButton]',
|
|
6200
|
+
standalone: true
|
|
6187
6201
|
}]
|
|
6188
6202
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6189
6203
|
|
|
@@ -6207,51 +6221,100 @@ class EditorSelectAllButtonDirective extends EditorCommandButton {
|
|
|
6207
6221
|
}
|
|
6208
6222
|
}
|
|
6209
6223
|
EditorSelectAllButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSelectAllButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6210
|
-
EditorSelectAllButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSelectAllButtonDirective, selector: "kendo-toolbar-button[kendoEditorSelectAllButton]", usesInheritance: true, ngImport: i0 });
|
|
6224
|
+
EditorSelectAllButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSelectAllButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSelectAllButton]", usesInheritance: true, ngImport: i0 });
|
|
6211
6225
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSelectAllButtonDirective, decorators: [{
|
|
6212
6226
|
type: Directive,
|
|
6213
6227
|
args: [{
|
|
6214
|
-
selector: 'kendo-toolbar-button[kendoEditorSelectAllButton]'
|
|
6228
|
+
selector: 'kendo-toolbar-button[kendoEditorSelectAllButton]',
|
|
6229
|
+
standalone: true
|
|
6215
6230
|
}]
|
|
6216
6231
|
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6217
6232
|
|
|
6218
|
-
|
|
6219
|
-
|
|
6233
|
+
/**
|
|
6234
|
+
* @hidden
|
|
6235
|
+
*
|
|
6236
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor SplitCell tool
|
|
6237
|
+
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
6238
|
+
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6239
|
+
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
6240
|
+
*
|
|
6241
|
+
* @example
|
|
6242
|
+
* ```ts-no-run
|
|
6243
|
+
* <kendo-toolbar-button kendoEditorSplitCellButton></kendo-toolbar-button>
|
|
6244
|
+
* ```
|
|
6245
|
+
*/
|
|
6246
|
+
class EditorSplitCellButtonDirective extends EditorCommandButton {
|
|
6247
|
+
constructor(button, localization, providerService, toolsService) {
|
|
6248
|
+
super('splitCell', button, localization, providerService, toolsService);
|
|
6249
|
+
}
|
|
6250
|
+
}
|
|
6251
|
+
EditorSplitCellButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSplitCellButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6252
|
+
EditorSplitCellButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorSplitCellButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorSplitCellButton]", usesInheritance: true, ngImport: i0 });
|
|
6253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorSplitCellButtonDirective, decorators: [{
|
|
6254
|
+
type: Directive,
|
|
6255
|
+
args: [{
|
|
6256
|
+
selector: 'kendo-toolbar-button[kendoEditorSplitCellButton]',
|
|
6257
|
+
standalone: true
|
|
6258
|
+
}]
|
|
6259
|
+
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6260
|
+
|
|
6261
|
+
/**
|
|
6262
|
+
* @hidden
|
|
6263
|
+
*
|
|
6264
|
+
* A directive which configures an existing `ToolBarButtonComponent` as an Editor MergeCells tool
|
|
6265
|
+
* ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
|
|
6266
|
+
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6267
|
+
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
6268
|
+
*
|
|
6269
|
+
* @example
|
|
6270
|
+
* ```ts-no-run
|
|
6271
|
+
* <kendo-toolbar-button kendoEditorMergeCellsButton></kendo-toolbar-button>
|
|
6272
|
+
* ```
|
|
6273
|
+
*/
|
|
6274
|
+
class EditorMergeCellsButtonDirective extends EditorCommandButton {
|
|
6275
|
+
constructor(button, localization, providerService, toolsService) {
|
|
6276
|
+
super('mergeCells', button, localization, providerService, toolsService);
|
|
6277
|
+
}
|
|
6278
|
+
}
|
|
6279
|
+
EditorMergeCellsButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorMergeCellsButtonDirective, deps: [{ token: i1$2.ToolBarButtonComponent }, { token: EditorLocalizationService }, { token: ProviderService }, { token: EditorToolsService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6280
|
+
EditorMergeCellsButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: EditorMergeCellsButtonDirective, isStandalone: true, selector: "kendo-toolbar-button[kendoEditorMergeCellsButton]", usesInheritance: true, ngImport: i0 });
|
|
6281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorMergeCellsButtonDirective, decorators: [{
|
|
6282
|
+
type: Directive,
|
|
6283
|
+
args: [{
|
|
6284
|
+
selector: 'kendo-toolbar-button[kendoEditorMergeCellsButton]',
|
|
6285
|
+
standalone: true
|
|
6286
|
+
}]
|
|
6287
|
+
}], ctorParameters: function () { return [{ type: i1$2.ToolBarButtonComponent }, { type: EditorLocalizationService }, { type: ProviderService }, { type: EditorToolsService }]; } });
|
|
6288
|
+
|
|
6289
|
+
/**
|
|
6290
|
+
* Utility array that contains all `Editor` related components and directives
|
|
6291
|
+
*/
|
|
6292
|
+
const KENDO_EDITOR = [
|
|
6293
|
+
EditorComponent,
|
|
6220
6294
|
EditorAlignLeftButtonDirective,
|
|
6221
6295
|
EditorAlignCenterButtonDirective,
|
|
6222
6296
|
EditorAlignRightButtonDirective,
|
|
6223
6297
|
EditorAlignJustifyButtonDirective,
|
|
6224
|
-
//file
|
|
6225
6298
|
EditorInsertFileButtonDirective,
|
|
6226
|
-
//history
|
|
6227
6299
|
EditorRedoButtonDirective,
|
|
6228
6300
|
EditorUndoButtonDirective,
|
|
6229
|
-
//image
|
|
6230
6301
|
EditorInsertImageButtonDirective,
|
|
6231
|
-
//indent
|
|
6232
6302
|
EditorIndentButtonDirective,
|
|
6233
6303
|
EditorOutdentButtonDirective,
|
|
6234
|
-
//link
|
|
6235
6304
|
EditorCreateLinkButtonDirective,
|
|
6236
6305
|
EditorUnlinkButtonDirective,
|
|
6237
|
-
//list
|
|
6238
6306
|
EditorInsertOrderedListButtonDirective,
|
|
6239
6307
|
EditorInsertUnorderedListButtonDirective,
|
|
6240
|
-
//source
|
|
6241
6308
|
EditorViewSourceButtonDirective,
|
|
6242
|
-
//typographical emphasis
|
|
6243
6309
|
EditorBoldButtonDirective,
|
|
6244
6310
|
EditorItalicButtonDirective,
|
|
6245
6311
|
EditorUnderlineButtonDirective,
|
|
6246
6312
|
EditorStrikethroughButtonDirective,
|
|
6247
6313
|
EditorSubscriptButtonDirective,
|
|
6248
6314
|
EditorSuperscriptButtonDirective,
|
|
6249
|
-
//color
|
|
6250
6315
|
EditorForeColorDirective,
|
|
6251
6316
|
EditorBackColorDirective,
|
|
6252
|
-
//clear format
|
|
6253
6317
|
EditorCleanFormattingButtonDirective,
|
|
6254
|
-
//table
|
|
6255
6318
|
EditorAddColumnBeforeButtonDirective,
|
|
6256
6319
|
EditorAddColumnAfterButtonDirective,
|
|
6257
6320
|
EditorAddRowBeforeButtonDirective,
|
|
@@ -6259,28 +6322,20 @@ const COMPONENT_DIRECTIVES = [
|
|
|
6259
6322
|
EditorDeleteColumnButtonDirective,
|
|
6260
6323
|
EditorDeleteRowButtonDirective,
|
|
6261
6324
|
EditorDeleteTableButtonDirective,
|
|
6262
|
-
EditorMergeCellsButtonDirective,
|
|
6263
|
-
EditorSplitCellButtonDirective,
|
|
6264
|
-
// EditorTableWizardButtonDirective,
|
|
6265
|
-
//localization
|
|
6266
6325
|
CustomMessagesComponent,
|
|
6267
|
-
LocalizedMessagesDirective,
|
|
6268
|
-
// dropdown tools
|
|
6269
|
-
DropDownToolDirective,
|
|
6270
|
-
// print
|
|
6271
6326
|
EditorPrintDirective,
|
|
6272
|
-
// select all
|
|
6273
6327
|
EditorSelectAllButtonDirective,
|
|
6274
|
-
|
|
6275
|
-
EditorBlockquoteDirective
|
|
6276
|
-
];
|
|
6277
|
-
const TOOLBAR_TOOLS = [
|
|
6328
|
+
EditorBlockquoteDirective,
|
|
6278
6329
|
EditorFontSizeComponent,
|
|
6279
6330
|
EditorFontFamilyComponent,
|
|
6280
6331
|
EditorFormatComponent,
|
|
6281
6332
|
EditorColorPickerComponent,
|
|
6282
|
-
EditorInsertTableButtonComponent
|
|
6333
|
+
EditorInsertTableButtonComponent,
|
|
6334
|
+
EditorMergeCellsButtonDirective,
|
|
6335
|
+
EditorSplitCellButtonDirective,
|
|
6336
|
+
...KENDO_TOOLBAR
|
|
6283
6337
|
];
|
|
6338
|
+
|
|
6284
6339
|
const TOOLBAR_DIALOGS = [
|
|
6285
6340
|
FileLinkDialogComponent,
|
|
6286
6341
|
ImageDialogComponent,
|
|
@@ -6296,12 +6351,7 @@ const TOOLBAR_DIALOGS = [
|
|
|
6296
6351
|
// CellSettingsComponent,
|
|
6297
6352
|
// AccessibilitySettingsComponent
|
|
6298
6353
|
];
|
|
6299
|
-
|
|
6300
|
-
PopupTableGridComponent,
|
|
6301
|
-
FormatDropDownListComponent,
|
|
6302
|
-
FontFamilyDropDownListComponent,
|
|
6303
|
-
FontSizeDropDownListComponent
|
|
6304
|
-
];
|
|
6354
|
+
// IMPORTANT: NgModule export kept for backwards compatibility
|
|
6305
6355
|
/**
|
|
6306
6356
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi']) definition for the Editor component.
|
|
6307
6357
|
*
|
|
@@ -6323,231 +6373,17 @@ const INTERNAL_COMPONENTS = [
|
|
|
6323
6373
|
class EditorModule {
|
|
6324
6374
|
}
|
|
6325
6375
|
EditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6326
|
-
EditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: EditorModule,
|
|
6327
|
-
|
|
6328
|
-
EditorAlignLeftButtonDirective,
|
|
6329
|
-
EditorAlignCenterButtonDirective,
|
|
6330
|
-
EditorAlignRightButtonDirective,
|
|
6331
|
-
EditorAlignJustifyButtonDirective,
|
|
6332
|
-
//file
|
|
6333
|
-
EditorInsertFileButtonDirective,
|
|
6334
|
-
//history
|
|
6335
|
-
EditorRedoButtonDirective,
|
|
6336
|
-
EditorUndoButtonDirective,
|
|
6337
|
-
//image
|
|
6338
|
-
EditorInsertImageButtonDirective,
|
|
6339
|
-
//indent
|
|
6340
|
-
EditorIndentButtonDirective,
|
|
6341
|
-
EditorOutdentButtonDirective,
|
|
6342
|
-
//link
|
|
6343
|
-
EditorCreateLinkButtonDirective,
|
|
6344
|
-
EditorUnlinkButtonDirective,
|
|
6345
|
-
//list
|
|
6346
|
-
EditorInsertOrderedListButtonDirective,
|
|
6347
|
-
EditorInsertUnorderedListButtonDirective,
|
|
6348
|
-
//source
|
|
6349
|
-
EditorViewSourceButtonDirective,
|
|
6350
|
-
//typographical emphasis
|
|
6351
|
-
EditorBoldButtonDirective,
|
|
6352
|
-
EditorItalicButtonDirective,
|
|
6353
|
-
EditorUnderlineButtonDirective,
|
|
6354
|
-
EditorStrikethroughButtonDirective,
|
|
6355
|
-
EditorSubscriptButtonDirective,
|
|
6356
|
-
EditorSuperscriptButtonDirective,
|
|
6357
|
-
//color
|
|
6358
|
-
EditorForeColorDirective,
|
|
6359
|
-
EditorBackColorDirective,
|
|
6360
|
-
//clear format
|
|
6361
|
-
EditorCleanFormattingButtonDirective,
|
|
6362
|
-
//table
|
|
6363
|
-
EditorAddColumnBeforeButtonDirective,
|
|
6364
|
-
EditorAddColumnAfterButtonDirective,
|
|
6365
|
-
EditorAddRowBeforeButtonDirective,
|
|
6366
|
-
EditorAddRowAfterButtonDirective,
|
|
6367
|
-
EditorDeleteColumnButtonDirective,
|
|
6368
|
-
EditorDeleteRowButtonDirective,
|
|
6369
|
-
EditorDeleteTableButtonDirective,
|
|
6370
|
-
EditorMergeCellsButtonDirective,
|
|
6371
|
-
EditorSplitCellButtonDirective,
|
|
6372
|
-
// EditorTableWizardButtonDirective,
|
|
6373
|
-
//localization
|
|
6374
|
-
CustomMessagesComponent,
|
|
6375
|
-
LocalizedMessagesDirective,
|
|
6376
|
-
// dropdown tools
|
|
6377
|
-
DropDownToolDirective,
|
|
6378
|
-
// print
|
|
6379
|
-
EditorPrintDirective,
|
|
6380
|
-
// select all
|
|
6381
|
-
EditorSelectAllButtonDirective,
|
|
6382
|
-
// blockquote
|
|
6383
|
-
EditorBlockquoteDirective, EditorFontSizeComponent,
|
|
6384
|
-
EditorFontFamilyComponent,
|
|
6385
|
-
EditorFormatComponent,
|
|
6386
|
-
EditorColorPickerComponent,
|
|
6387
|
-
EditorInsertTableButtonComponent, FileLinkDialogComponent,
|
|
6388
|
-
ImageDialogComponent,
|
|
6389
|
-
SourceDialogComponent,
|
|
6390
|
-
FormatDialogComponent,
|
|
6391
|
-
ColorPickerDialogComponent,
|
|
6392
|
-
FontFamilyDialogComponent,
|
|
6393
|
-
FontSizeDialogComponent,
|
|
6394
|
-
InsertTableDialogComponent
|
|
6395
|
-
// TableWizardDialogComponent
|
|
6396
|
-
// Table Wizard Building Blocks
|
|
6397
|
-
// TableSettingsComponent,
|
|
6398
|
-
// CellSettingsComponent,
|
|
6399
|
-
// AccessibilitySettingsComponent
|
|
6400
|
-
,
|
|
6401
|
-
PopupTableGridComponent,
|
|
6402
|
-
FormatDropDownListComponent,
|
|
6403
|
-
FontFamilyDropDownListComponent,
|
|
6404
|
-
FontSizeDropDownListComponent], imports: [CommonModule,
|
|
6405
|
-
FormsModule,
|
|
6406
|
-
ReactiveFormsModule,
|
|
6407
|
-
//Kendo UI Angular Modules
|
|
6408
|
-
ButtonModule,
|
|
6409
|
-
ColorPickerModule,
|
|
6410
|
-
DialogModule,
|
|
6411
|
-
DropDownsModule,
|
|
6412
|
-
NumericTextBoxModule,
|
|
6413
|
-
CheckBoxModule,
|
|
6414
|
-
IconsModule,
|
|
6415
|
-
ToolBarModule,
|
|
6416
|
-
TextBoxModule,
|
|
6417
|
-
TextAreaModule,
|
|
6418
|
-
FormFieldModule,
|
|
6419
|
-
LabelModule,
|
|
6420
|
-
WatermarkModule], exports: [EditorComponent,
|
|
6421
|
-
//alignment
|
|
6422
|
-
EditorAlignLeftButtonDirective,
|
|
6423
|
-
EditorAlignCenterButtonDirective,
|
|
6424
|
-
EditorAlignRightButtonDirective,
|
|
6425
|
-
EditorAlignJustifyButtonDirective,
|
|
6426
|
-
//file
|
|
6427
|
-
EditorInsertFileButtonDirective,
|
|
6428
|
-
//history
|
|
6429
|
-
EditorRedoButtonDirective,
|
|
6430
|
-
EditorUndoButtonDirective,
|
|
6431
|
-
//image
|
|
6432
|
-
EditorInsertImageButtonDirective,
|
|
6433
|
-
//indent
|
|
6434
|
-
EditorIndentButtonDirective,
|
|
6435
|
-
EditorOutdentButtonDirective,
|
|
6436
|
-
//link
|
|
6437
|
-
EditorCreateLinkButtonDirective,
|
|
6438
|
-
EditorUnlinkButtonDirective,
|
|
6439
|
-
//list
|
|
6440
|
-
EditorInsertOrderedListButtonDirective,
|
|
6441
|
-
EditorInsertUnorderedListButtonDirective,
|
|
6442
|
-
//source
|
|
6443
|
-
EditorViewSourceButtonDirective,
|
|
6444
|
-
//typographical emphasis
|
|
6445
|
-
EditorBoldButtonDirective,
|
|
6446
|
-
EditorItalicButtonDirective,
|
|
6447
|
-
EditorUnderlineButtonDirective,
|
|
6448
|
-
EditorStrikethroughButtonDirective,
|
|
6449
|
-
EditorSubscriptButtonDirective,
|
|
6450
|
-
EditorSuperscriptButtonDirective,
|
|
6451
|
-
//color
|
|
6452
|
-
EditorForeColorDirective,
|
|
6453
|
-
EditorBackColorDirective,
|
|
6454
|
-
//clear format
|
|
6455
|
-
EditorCleanFormattingButtonDirective,
|
|
6456
|
-
//table
|
|
6457
|
-
EditorAddColumnBeforeButtonDirective,
|
|
6458
|
-
EditorAddColumnAfterButtonDirective,
|
|
6459
|
-
EditorAddRowBeforeButtonDirective,
|
|
6460
|
-
EditorAddRowAfterButtonDirective,
|
|
6461
|
-
EditorDeleteColumnButtonDirective,
|
|
6462
|
-
EditorDeleteRowButtonDirective,
|
|
6463
|
-
EditorDeleteTableButtonDirective,
|
|
6464
|
-
EditorMergeCellsButtonDirective,
|
|
6465
|
-
EditorSplitCellButtonDirective,
|
|
6466
|
-
// EditorTableWizardButtonDirective,
|
|
6467
|
-
//localization
|
|
6468
|
-
CustomMessagesComponent,
|
|
6469
|
-
LocalizedMessagesDirective,
|
|
6470
|
-
// dropdown tools
|
|
6471
|
-
DropDownToolDirective,
|
|
6472
|
-
// print
|
|
6473
|
-
EditorPrintDirective,
|
|
6474
|
-
// select all
|
|
6475
|
-
EditorSelectAllButtonDirective,
|
|
6476
|
-
// blockquote
|
|
6477
|
-
EditorBlockquoteDirective, EditorFontSizeComponent,
|
|
6478
|
-
EditorFontFamilyComponent,
|
|
6479
|
-
EditorFormatComponent,
|
|
6480
|
-
EditorColorPickerComponent,
|
|
6481
|
-
EditorInsertTableButtonComponent, ToolBarModule,
|
|
6482
|
-
ButtonModule,
|
|
6483
|
-
FormsModule,
|
|
6484
|
-
ReactiveFormsModule, PopupTableGridComponent,
|
|
6485
|
-
FormatDropDownListComponent,
|
|
6486
|
-
FontFamilyDropDownListComponent,
|
|
6487
|
-
FontSizeDropDownListComponent] });
|
|
6488
|
-
EditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, imports: [CommonModule,
|
|
6489
|
-
FormsModule,
|
|
6490
|
-
ReactiveFormsModule,
|
|
6491
|
-
//Kendo UI Angular Modules
|
|
6492
|
-
ButtonModule,
|
|
6493
|
-
ColorPickerModule,
|
|
6494
|
-
DialogModule,
|
|
6495
|
-
DropDownsModule,
|
|
6496
|
-
NumericTextBoxModule,
|
|
6497
|
-
CheckBoxModule,
|
|
6498
|
-
IconsModule,
|
|
6499
|
-
ToolBarModule,
|
|
6500
|
-
TextBoxModule,
|
|
6501
|
-
TextAreaModule,
|
|
6502
|
-
FormFieldModule,
|
|
6503
|
-
LabelModule,
|
|
6504
|
-
WatermarkModule, ToolBarModule,
|
|
6505
|
-
ButtonModule,
|
|
6506
|
-
FormsModule,
|
|
6507
|
-
ReactiveFormsModule] });
|
|
6376
|
+
EditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, imports: [EditorComponent, EditorAlignLeftButtonDirective, EditorAlignCenterButtonDirective, EditorAlignRightButtonDirective, EditorAlignJustifyButtonDirective, EditorInsertFileButtonDirective, EditorRedoButtonDirective, EditorUndoButtonDirective, EditorInsertImageButtonDirective, EditorIndentButtonDirective, EditorOutdentButtonDirective, EditorCreateLinkButtonDirective, EditorUnlinkButtonDirective, EditorInsertOrderedListButtonDirective, EditorInsertUnorderedListButtonDirective, EditorViewSourceButtonDirective, EditorBoldButtonDirective, EditorItalicButtonDirective, EditorUnderlineButtonDirective, EditorStrikethroughButtonDirective, EditorSubscriptButtonDirective, EditorSuperscriptButtonDirective, EditorForeColorDirective, EditorBackColorDirective, EditorCleanFormattingButtonDirective, EditorAddColumnBeforeButtonDirective, EditorAddColumnAfterButtonDirective, EditorAddRowBeforeButtonDirective, EditorAddRowAfterButtonDirective, EditorDeleteColumnButtonDirective, EditorDeleteRowButtonDirective, EditorDeleteTableButtonDirective, CustomMessagesComponent, EditorPrintDirective, EditorSelectAllButtonDirective, EditorBlockquoteDirective, EditorFontSizeComponent, EditorFontFamilyComponent, EditorFormatComponent, EditorColorPickerComponent, EditorInsertTableButtonComponent, EditorMergeCellsButtonDirective, EditorSplitCellButtonDirective, i1$2.ToolBarComponent, i1$2.ToolbarCustomMessagesComponent, i1$2.ToolBarButtonComponent, i1$2.ToolBarButtonGroupComponent, i1$2.ToolBarDropDownButtonComponent, i1$2.ToolBarSeparatorComponent, i1$2.ToolBarSpacerComponent, i1$2.ToolBarSplitButtonComponent, i1$2.ToolBarToolComponent], exports: [EditorComponent, EditorAlignLeftButtonDirective, EditorAlignCenterButtonDirective, EditorAlignRightButtonDirective, EditorAlignJustifyButtonDirective, EditorInsertFileButtonDirective, EditorRedoButtonDirective, EditorUndoButtonDirective, EditorInsertImageButtonDirective, EditorIndentButtonDirective, EditorOutdentButtonDirective, EditorCreateLinkButtonDirective, EditorUnlinkButtonDirective, EditorInsertOrderedListButtonDirective, EditorInsertUnorderedListButtonDirective, EditorViewSourceButtonDirective, EditorBoldButtonDirective, EditorItalicButtonDirective, EditorUnderlineButtonDirective, EditorStrikethroughButtonDirective, EditorSubscriptButtonDirective, EditorSuperscriptButtonDirective, EditorForeColorDirective, EditorBackColorDirective, EditorCleanFormattingButtonDirective, EditorAddColumnBeforeButtonDirective, EditorAddColumnAfterButtonDirective, EditorAddRowBeforeButtonDirective, EditorAddRowAfterButtonDirective, EditorDeleteColumnButtonDirective, EditorDeleteRowButtonDirective, EditorDeleteTableButtonDirective, CustomMessagesComponent, EditorPrintDirective, EditorSelectAllButtonDirective, EditorBlockquoteDirective, EditorFontSizeComponent, EditorFontFamilyComponent, EditorFormatComponent, EditorColorPickerComponent, EditorInsertTableButtonComponent, EditorMergeCellsButtonDirective, EditorSplitCellButtonDirective, i1$2.ToolBarComponent, i1$2.ToolbarCustomMessagesComponent, i1$2.ToolBarButtonComponent, i1$2.ToolBarButtonGroupComponent, i1$2.ToolBarDropDownButtonComponent, i1$2.ToolBarSeparatorComponent, i1$2.ToolBarSpacerComponent, i1$2.ToolBarSplitButtonComponent, i1$2.ToolBarToolComponent, FormsModule, ReactiveFormsModule] });
|
|
6377
|
+
EditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [EditorComponent, EditorFontSizeComponent, EditorFontFamilyComponent, EditorFormatComponent, EditorColorPickerComponent, EditorInsertTableButtonComponent, i1$2.ToolBarComponent, i1$2.ToolbarCustomMessagesComponent, i1$2.ToolBarButtonComponent, i1$2.ToolBarButtonGroupComponent, i1$2.ToolBarDropDownButtonComponent, i1$2.ToolBarSeparatorComponent, i1$2.ToolBarSpacerComponent, i1$2.ToolBarSplitButtonComponent, i1$2.ToolBarToolComponent, FormsModule, ReactiveFormsModule] });
|
|
6508
6378
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, decorators: [{
|
|
6509
6379
|
type: NgModule,
|
|
6510
6380
|
args: [{
|
|
6511
|
-
declarations: [
|
|
6512
|
-
EditorComponent,
|
|
6513
|
-
COMPONENT_DIRECTIVES,
|
|
6514
|
-
TOOLBAR_TOOLS,
|
|
6515
|
-
TOOLBAR_DIALOGS,
|
|
6516
|
-
INTERNAL_COMPONENTS
|
|
6517
|
-
],
|
|
6518
6381
|
entryComponents: [
|
|
6519
6382
|
TOOLBAR_DIALOGS
|
|
6520
6383
|
],
|
|
6521
|
-
exports: [
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
TOOLBAR_TOOLS,
|
|
6525
|
-
ToolBarModule,
|
|
6526
|
-
ButtonModule,
|
|
6527
|
-
FormsModule,
|
|
6528
|
-
ReactiveFormsModule,
|
|
6529
|
-
//needed for unit tests
|
|
6530
|
-
INTERNAL_COMPONENTS
|
|
6531
|
-
],
|
|
6532
|
-
imports: [
|
|
6533
|
-
CommonModule,
|
|
6534
|
-
FormsModule,
|
|
6535
|
-
ReactiveFormsModule,
|
|
6536
|
-
//Kendo UI Angular Modules
|
|
6537
|
-
ButtonModule,
|
|
6538
|
-
ColorPickerModule,
|
|
6539
|
-
DialogModule,
|
|
6540
|
-
DropDownsModule,
|
|
6541
|
-
NumericTextBoxModule,
|
|
6542
|
-
CheckBoxModule,
|
|
6543
|
-
IconsModule,
|
|
6544
|
-
ToolBarModule,
|
|
6545
|
-
TextBoxModule,
|
|
6546
|
-
TextAreaModule,
|
|
6547
|
-
FormFieldModule,
|
|
6548
|
-
LabelModule,
|
|
6549
|
-
WatermarkModule
|
|
6550
|
-
]
|
|
6384
|
+
exports: [...KENDO_EDITOR, FormsModule, ReactiveFormsModule],
|
|
6385
|
+
imports: [...KENDO_EDITOR],
|
|
6386
|
+
providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService]
|
|
6551
6387
|
}]
|
|
6552
6388
|
}] });
|
|
6553
6389
|
|
|
@@ -6555,5 +6391,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6555
6391
|
* Generated bundle index. Do not edit.
|
|
6556
6392
|
*/
|
|
6557
6393
|
|
|
6558
|
-
export { CustomMessagesComponent, DropDownToolDirective, EditorAddColumnAfterButtonDirective, EditorAddColumnBeforeButtonDirective, EditorAddRowAfterButtonDirective, EditorAddRowBeforeButtonDirective, EditorAlignCenterButtonDirective, EditorAlignJustifyButtonDirective, EditorAlignLeftButtonDirective, EditorAlignRightButtonDirective, EditorBackColorDirective, EditorBlockquoteDirective, EditorBoldButtonDirective, EditorCleanFormattingButtonDirective, EditorColorPickerComponent, EditorComponent, EditorCreateLinkButtonDirective, EditorDeleteColumnButtonDirective, EditorDeleteRowButtonDirective, EditorDeleteTableButtonDirective, EditorFontFamilyComponent, EditorFontSizeComponent, EditorForeColorDirective, EditorFormatComponent, EditorIndentButtonDirective, EditorInsertFileButtonDirective, EditorInsertImageButtonDirective, EditorInsertOrderedListButtonDirective, EditorInsertTableButtonComponent, EditorInsertUnorderedListButtonDirective, EditorItalicButtonDirective, EditorLocalizationService, EditorMergeCellsButtonDirective, EditorModule, EditorOutdentButtonDirective, EditorPasteEvent, EditorPrintDirective, EditorRedoButtonDirective, EditorSelectAllButtonDirective, EditorSplitCellButtonDirective, EditorStrikethroughButtonDirective, EditorSubscriptButtonDirective, EditorSuperscriptButtonDirective, EditorUnderlineButtonDirective, EditorUndoButtonDirective, EditorUnlinkButtonDirective, EditorViewSourceButtonDirective, FontFamilyDropDownListComponent, FontSizeDropDownListComponent, FormatDropDownListComponent, LocalizedMessagesDirective, PopupTableGridComponent, PreventableEvent, getSelectionText, schema };
|
|
6394
|
+
export { CustomMessagesComponent, DropDownToolDirective, EditorAddColumnAfterButtonDirective, EditorAddColumnBeforeButtonDirective, EditorAddRowAfterButtonDirective, EditorAddRowBeforeButtonDirective, EditorAlignCenterButtonDirective, EditorAlignJustifyButtonDirective, EditorAlignLeftButtonDirective, EditorAlignRightButtonDirective, EditorBackColorDirective, EditorBlockquoteDirective, EditorBoldButtonDirective, EditorCleanFormattingButtonDirective, EditorColorPickerComponent, EditorComponent, EditorCreateLinkButtonDirective, EditorDeleteColumnButtonDirective, EditorDeleteRowButtonDirective, EditorDeleteTableButtonDirective, EditorFontFamilyComponent, EditorFontSizeComponent, EditorForeColorDirective, EditorFormatComponent, EditorIndentButtonDirective, EditorInsertFileButtonDirective, EditorInsertImageButtonDirective, EditorInsertOrderedListButtonDirective, EditorInsertTableButtonComponent, EditorInsertUnorderedListButtonDirective, EditorItalicButtonDirective, EditorLocalizationService, EditorMergeCellsButtonDirective, EditorModule, EditorOutdentButtonDirective, EditorPasteEvent, EditorPrintDirective, EditorRedoButtonDirective, EditorSelectAllButtonDirective, EditorSplitCellButtonDirective, EditorStrikethroughButtonDirective, EditorSubscriptButtonDirective, EditorSuperscriptButtonDirective, EditorUnderlineButtonDirective, EditorUndoButtonDirective, EditorUnlinkButtonDirective, EditorViewSourceButtonDirective, FontFamilyDropDownListComponent, FontSizeDropDownListComponent, FormatDropDownListComponent, KENDO_EDITOR, LocalizedMessagesDirective, PopupTableGridComponent, PreventableEvent, getSelectionText, schema };
|
|
6559
6395
|
|