@progress/kendo-angular-editor 13.0.3-develop.1 → 13.0.3-develop.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/esm2020/package-metadata.mjs +2 -2
  2. package/esm2020/tools/alignment/editor-align-center-button.directive.mjs +3 -3
  3. package/esm2020/tools/alignment/editor-align-justify-button.directive.mjs +3 -3
  4. package/esm2020/tools/alignment/editor-align-left-button.directive.mjs +3 -3
  5. package/esm2020/tools/alignment/editor-align-right-button.directive.mjs +3 -3
  6. package/esm2020/tools/blockquote/editor-blockquote-button.directive.mjs +3 -3
  7. package/esm2020/tools/editor-clean-formatting-button.directive.mjs +3 -3
  8. package/esm2020/tools/history/editor-redo-button.directive.mjs +3 -3
  9. package/esm2020/tools/history/editor-undo-button.directive.mjs +3 -3
  10. package/esm2020/tools/image/editor-insert-image-button.directive.mjs +3 -3
  11. package/esm2020/tools/indentation/editor-indent-button.directive.mjs +3 -3
  12. package/esm2020/tools/indentation/editor-outdent-button.directive.mjs +3 -3
  13. package/esm2020/tools/link/editor-create-link-button.directive.mjs +3 -3
  14. package/esm2020/tools/link/editor-unlink-button.directive.mjs +3 -3
  15. package/esm2020/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -3
  16. package/esm2020/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -3
  17. package/esm2020/tools/print/editor-print-button.directive.mjs +3 -3
  18. package/esm2020/tools/select-all/select-all-button.directive.mjs +3 -3
  19. package/esm2020/tools/source/editor-view-source-button.directive.mjs +3 -3
  20. package/esm2020/tools/tables/editor-insert-table-button.component.mjs +1 -1
  21. package/esm2020/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -3
  22. package/esm2020/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -3
  23. package/esm2020/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -3
  24. package/esm2020/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -3
  25. package/esm2020/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -3
  26. package/esm2020/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -3
  27. package/fesm2015/progress-kendo-angular-editor.mjs +75 -75
  28. package/fesm2020/progress-kendo-angular-editor.mjs +75 -75
  29. package/package.json +14 -14
  30. package/schematics/ngAdd/index.js +3 -3
  31. package/tools/alignment/editor-align-center-button.directive.d.ts +3 -3
  32. package/tools/alignment/editor-align-justify-button.directive.d.ts +3 -3
  33. package/tools/alignment/editor-align-left-button.directive.d.ts +3 -3
  34. package/tools/alignment/editor-align-right-button.directive.d.ts +3 -3
  35. package/tools/blockquote/editor-blockquote-button.directive.d.ts +3 -3
  36. package/tools/editor-clean-formatting-button.directive.d.ts +3 -3
  37. package/tools/history/editor-redo-button.directive.d.ts +3 -3
  38. package/tools/history/editor-undo-button.directive.d.ts +3 -3
  39. package/tools/image/editor-insert-image-button.directive.d.ts +3 -3
  40. package/tools/indentation/editor-indent-button.directive.d.ts +3 -3
  41. package/tools/indentation/editor-outdent-button.directive.d.ts +3 -3
  42. package/tools/link/editor-create-link-button.directive.d.ts +3 -3
  43. package/tools/link/editor-unlink-button.directive.d.ts +3 -3
  44. package/tools/list/editor-insert-ordered-list-button.directive.d.ts +3 -3
  45. package/tools/list/editor-insert-unordered-list-button.directive.d.ts +3 -3
  46. package/tools/print/editor-print-button.directive.d.ts +3 -3
  47. package/tools/select-all/select-all-button.directive.d.ts +3 -3
  48. package/tools/source/editor-view-source-button.directive.d.ts +3 -3
  49. package/tools/tables/editor-insert-table-button.component.d.ts +1 -1
  50. package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +3 -3
  51. package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +3 -3
  52. package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +3 -3
  53. package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +3 -3
  54. package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +3 -3
  55. package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +3 -3
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorRedoButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorRedoButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorRedoButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorUndoButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorUndoButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorUndoButtonDirective extends EditorCommandButton {
@@ -14,15 +14,15 @@ import * as i0 from "@angular/core";
14
14
  * The directive will predefine the `icon` and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
- * ```ts-no-run
17
+ * ```html
18
18
  * <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
19
19
  * ```
20
20
  *
21
21
  * The following example demonstrates how to change the default icon that is applied by the directive.
22
22
  *
23
23
  * @example
24
- * ```ts-no-run
25
- * <kendo-toolbar-button kendoEditorInsertImageButton icon="blogger"></kendo-toolbar-button>
24
+ * ```html
25
+ * <kendo-toolbar-button kendoEditorInsertImageButton ></kendo-toolbar-button>
26
26
  * ```
27
27
  */
28
28
  export declare class EditorInsertImageButtonDirective extends EditorCommandDialog {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorIndentButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorIndentButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorIndentButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorOutdentButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorOutdentButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorOutdentButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorOutdentButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorCreateLinkButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorCreateLinkButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorCreateLinkButtonDirective extends EditorCommandDialog {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorUnlinkButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorUnlinkButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorUnlinkButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorInsertOrderedListButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorInsertOrderedListButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorInsertUnorderedListButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorInsertUnorderedListButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
@@ -16,15 +16,15 @@ import * as i0 from "@angular/core";
16
16
  * > The Editor Print tool is supported in the default [`iframe`](https://www.telerik.com/kendo-angular-ui-develop/components/editor/api/EditorComponent/#toc-iframe) mode only.
17
17
  *
18
18
  * @example
19
- * ```ts-no-run
19
+ * ```html
20
20
  * <kendo-toolbar-button kendoEditorPrintButton></kendo-toolbar-button>
21
21
  * ```
22
22
  *
23
23
  * The following example demonstrates how to change the default icon that is applied by the directive.
24
24
  *
25
25
  * @example
26
- * ```ts-no-run
27
- * <kendo-toolbar-button kendoEditorPrintButton icon="blogger"></kendo-toolbar-button>
26
+ * ```html
27
+ * <kendo-toolbar-button kendoEditorPrintButton ></kendo-toolbar-button>
28
28
  * ```
29
29
  */
30
30
  export declare class EditorPrintDirective extends EditorCommandButton {
@@ -14,15 +14,15 @@ import * as i0 from "@angular/core";
14
14
  * The directive will predefine the `icon` and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
- * ```ts-no-run
17
+ * ```html
18
18
  * <kendo-toolbar-button kendoEditorSelectAllButton></kendo-toolbar-button>
19
19
  * ```
20
20
  *
21
21
  * The following example demonstrates how to change the default icon that is applied by the directive.
22
22
  *
23
23
  * @example
24
- * ```ts-no-run
25
- * <kendo-toolbar-button kendoEditorSelectAllButton icon="blogger"></kendo-toolbar-button>
24
+ * ```html
25
+ * <kendo-toolbar-button kendoEditorSelectAllButton ></kendo-toolbar-button>
26
26
  * ```
27
27
  */
28
28
  export declare class EditorSelectAllButtonDirective extends EditorCommandButton {
@@ -14,15 +14,15 @@ import * as i0 from "@angular/core";
14
14
  * The directive will predefine the `icon` and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
- * ```ts-no-run
17
+ * ```html
18
18
  * <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>
19
19
  * ```
20
20
  *
21
21
  * The following example demonstrates how to change the default icon that is applied by the directive.
22
22
  *
23
23
  * @example
24
- * ```ts-no-run
25
- * <kendo-toolbar-button kendoEditorViewSourceButton icon="blogger"></kendo-toolbar-button>
24
+ * ```html
25
+ * <kendo-toolbar-button kendoEditorViewSourceButton ></kendo-toolbar-button>
26
26
  * ```
27
27
  */
28
28
  export declare class EditorViewSourceButtonDirective extends EditorCommandDialog {
@@ -15,7 +15,7 @@ import * as i0 from "@angular/core";
15
15
  * A toolbar component which allows the user to create and insert a table in the Editor's content.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
20
20
  * ```
21
21
  */
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorBoldButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorBoldButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorBoldButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorItalicButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorItalicButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorItalicButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorStrikethroughButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorStrikethroughButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorStrikethroughButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorStrikethroughButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorSubscriptButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorSubscriptButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorSubscriptButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorSubscriptButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorSuperscriptButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorSuperscriptButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorSuperscriptButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorSuperscriptButtonDirective extends EditorCommandButton {
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
15
15
  * In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
16
16
  *
17
17
  * @example
18
- * ```ts-no-run
18
+ * ```html
19
19
  * <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
20
20
  * ```
21
21
  *
22
22
  * The following example demonstrates how to change the default icon that is applied by the directive.
23
23
  *
24
24
  * @example
25
- * ```ts-no-run
26
- * <kendo-toolbar-button kendoEditorUnderlineButton icon="blogger"></kendo-toolbar-button>
25
+ * ```html
26
+ * <kendo-toolbar-button kendoEditorUnderlineButton ></kendo-toolbar-button>
27
27
  * ```
28
28
  */
29
29
  export declare class EditorUnderlineButtonDirective extends EditorCommandButton {