@progress/kendo-angular-editor 13.1.0 → 13.1.1-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.
Files changed (99) hide show
  1. package/common/apply-to-word-options.d.ts +1 -3
  2. package/common/commands.d.ts +16 -1
  3. package/common/css-settings.interface.d.ts +1 -3
  4. package/common/font-family-item.interface.d.ts +0 -8
  5. package/common/font-size-item.interface.d.ts +0 -8
  6. package/common/format-item.interface.d.ts +0 -8
  7. package/common/paste-cleanup-settings.d.ts +0 -11
  8. package/editor.component.d.ts +1 -63
  9. package/editor.module.d.ts +4 -25
  10. package/esm2020/editor.component.mjs +1 -63
  11. package/esm2020/editor.module.mjs +4 -25
  12. package/esm2020/localization/custom-messages.component.mjs +1 -1
  13. package/esm2020/package-metadata.mjs +2 -2
  14. package/esm2020/tools/alignment/editor-align-center-button.directive.mjs +2 -9
  15. package/esm2020/tools/alignment/editor-align-justify-button.directive.mjs +2 -9
  16. package/esm2020/tools/alignment/editor-align-left-button.directive.mjs +2 -9
  17. package/esm2020/tools/alignment/editor-align-right-button.directive.mjs +2 -9
  18. package/esm2020/tools/blockquote/editor-blockquote-button.directive.mjs +2 -9
  19. package/esm2020/tools/colorpicker/editor-back-color.directive.mjs +4 -0
  20. package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +3 -1
  21. package/esm2020/tools/colorpicker/editor-fore-color.directive.mjs +4 -0
  22. package/esm2020/tools/editor-clean-formatting-button.directive.mjs +2 -9
  23. package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +1 -1
  24. package/esm2020/tools/fontsize/editor-fontsize.component.mjs +1 -3
  25. package/esm2020/tools/format/editor-format.component.mjs +1 -1
  26. package/esm2020/tools/history/editor-redo-button.directive.mjs +2 -9
  27. package/esm2020/tools/history/editor-undo-button.directive.mjs +2 -9
  28. package/esm2020/tools/image/editor-insert-image-button.directive.mjs +2 -9
  29. package/esm2020/tools/indentation/editor-indent-button.directive.mjs +2 -9
  30. package/esm2020/tools/indentation/editor-outdent-button.directive.mjs +2 -9
  31. package/esm2020/tools/link/editor-create-link-button.directive.mjs +2 -9
  32. package/esm2020/tools/link/editor-insert-file-button.directive.mjs +3 -3
  33. package/esm2020/tools/link/editor-unlink-button.directive.mjs +2 -9
  34. package/esm2020/tools/list/editor-insert-ordered-list-button.directive.mjs +2 -9
  35. package/esm2020/tools/list/editor-insert-unordered-list-button.directive.mjs +2 -9
  36. package/esm2020/tools/print/editor-print-button.directive.mjs +2 -9
  37. package/esm2020/tools/select-all/select-all-button.directive.mjs +2 -9
  38. package/esm2020/tools/source/editor-view-source-button.directive.mjs +2 -9
  39. package/esm2020/tools/tables/editor-add-column-after-button.directive.mjs +3 -3
  40. package/esm2020/tools/tables/editor-add-column-before-button.directive.mjs +3 -3
  41. package/esm2020/tools/tables/editor-add-row-after-button.directive.mjs +3 -3
  42. package/esm2020/tools/tables/editor-add-row-before-button.directive.mjs +3 -3
  43. package/esm2020/tools/tables/editor-delete-column-button.directive.mjs +3 -3
  44. package/esm2020/tools/tables/editor-delete-row-button.directive.mjs +3 -3
  45. package/esm2020/tools/tables/editor-delete-table-button.directive.mjs +3 -3
  46. package/esm2020/tools/typographical-emphasis/editor-bold-button.directive.mjs +2 -9
  47. package/esm2020/tools/typographical-emphasis/editor-italic-button.directive.mjs +2 -9
  48. package/esm2020/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +2 -9
  49. package/esm2020/tools/typographical-emphasis/editor-subscript-button.directive.mjs +2 -9
  50. package/esm2020/tools/typographical-emphasis/editor-superscript-button.directive.mjs +2 -9
  51. package/esm2020/tools/typographical-emphasis/editor-underline-button.directive.mjs +2 -9
  52. package/esm2020/util.mjs +12 -1
  53. package/fesm2015/progress-kendo-angular-editor.mjs +106 -338
  54. package/fesm2020/progress-kendo-angular-editor.mjs +106 -338
  55. package/index.d.ts +0 -1
  56. package/localization/custom-messages.component.d.ts +1 -1
  57. package/package.json +14 -14
  58. package/schematics/ngAdd/index.js +3 -3
  59. package/tools/alignment/editor-align-center-button.directive.d.ts +2 -9
  60. package/tools/alignment/editor-align-justify-button.directive.d.ts +2 -9
  61. package/tools/alignment/editor-align-left-button.directive.d.ts +2 -9
  62. package/tools/alignment/editor-align-right-button.directive.d.ts +2 -9
  63. package/tools/blockquote/editor-blockquote-button.directive.d.ts +2 -9
  64. package/tools/colorpicker/editor-back-color.directive.d.ts +4 -0
  65. package/tools/colorpicker/editor-colorpicker.component.d.ts +3 -1
  66. package/tools/colorpicker/editor-fore-color.directive.d.ts +4 -0
  67. package/tools/editor-clean-formatting-button.directive.d.ts +2 -9
  68. package/tools/fontfamily/editor-fontfamily.component.d.ts +1 -1
  69. package/tools/fontsize/editor-fontsize.component.d.ts +1 -3
  70. package/tools/format/editor-format.component.d.ts +1 -1
  71. package/tools/history/editor-redo-button.directive.d.ts +2 -9
  72. package/tools/history/editor-undo-button.directive.d.ts +2 -9
  73. package/tools/image/editor-insert-image-button.directive.d.ts +2 -9
  74. package/tools/indentation/editor-indent-button.directive.d.ts +2 -9
  75. package/tools/indentation/editor-outdent-button.directive.d.ts +2 -9
  76. package/tools/link/editor-create-link-button.directive.d.ts +2 -9
  77. package/tools/link/editor-insert-file-button.directive.d.ts +3 -3
  78. package/tools/link/editor-unlink-button.directive.d.ts +2 -9
  79. package/tools/list/editor-insert-ordered-list-button.directive.d.ts +2 -9
  80. package/tools/list/editor-insert-unordered-list-button.directive.d.ts +2 -9
  81. package/tools/print/editor-print-button.directive.d.ts +2 -9
  82. package/tools/select-all/select-all-button.directive.d.ts +2 -9
  83. package/tools/source/editor-view-source-button.directive.d.ts +2 -9
  84. package/tools/tables/editor-add-column-after-button.directive.d.ts +3 -3
  85. package/tools/tables/editor-add-column-before-button.directive.d.ts +3 -3
  86. package/tools/tables/editor-add-row-after-button.directive.d.ts +3 -3
  87. package/tools/tables/editor-add-row-before-button.directive.d.ts +3 -3
  88. package/tools/tables/editor-delete-column-button.directive.d.ts +3 -3
  89. package/tools/tables/editor-delete-row-button.directive.d.ts +3 -3
  90. package/tools/tables/editor-delete-table-button.directive.d.ts +3 -3
  91. package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +2 -9
  92. package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +2 -9
  93. package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +2 -9
  94. package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +2 -9
  95. package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +2 -9
  96. package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +2 -9
  97. package/util.d.ts +12 -1
  98. package/esm2020/preventable-events/paste-event-data.mjs +0 -5
  99. package/preventable-events/paste-event-data.d.ts +0 -21
package/index.d.ts CHANGED
@@ -13,7 +13,6 @@ export { ApplyToWordOptions } from './common/apply-to-word-options';
13
13
  export { EditorResizableOptions } from './common/resizable-options.interface';
14
14
  export { FontSizeItem } from './common/font-size-item.interface';
15
15
  export { EditorPasteEvent } from './preventable-events/paste-event';
16
- export { EditorPastedContentArgs } from './preventable-events/paste-event-data';
17
16
  export { PopupTableGridComponent } from './tools/tables/popup-table-grid.component';
18
17
  export { FormatDropDownListComponent } from './tools/format/editor-format-dropdownlist.component';
19
18
  export { FontFamilyDropDownListComponent } from './tools/fontfamily/editor-fontfamily-dropdownlist.component';
@@ -7,7 +7,7 @@ import { MessagesDirective } from './messages';
7
7
  import * as i0 from "@angular/core";
8
8
  /**
9
9
  * Custom component messages override default component messages
10
- * ([see example]({% slug globalization_editor %}#toc-localization)).
10
+ * ([see example]({% slug globalization_editor %}#toc-custom-messages)).
11
11
  */
12
12
  export declare class CustomMessagesComponent extends MessagesDirective {
13
13
  protected service: LocalizationService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-editor",
3
- "version": "13.1.0",
3
+ "version": "13.1.1-develop.1",
4
4
  "description": "Kendo UI Editor for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -22,23 +22,23 @@
22
22
  "@angular/platform-browser": "13 - 16",
23
23
  "@progress/kendo-drawing": "^1.17.2",
24
24
  "@progress/kendo-licensing": "^1.0.2",
25
- "@progress/kendo-angular-buttons": "13.1.0",
26
- "@progress/kendo-angular-common": "13.1.0",
27
- "@progress/kendo-angular-dialog": "13.1.0",
28
- "@progress/kendo-angular-dropdowns": "13.1.0",
29
- "@progress/kendo-angular-inputs": "13.1.0",
30
- "@progress/kendo-angular-intl": "13.1.0",
31
- "@progress/kendo-angular-l10n": "13.1.0",
32
- "@progress/kendo-angular-label": "13.1.0",
33
- "@progress/kendo-angular-layout": "13.1.0",
34
- "@progress/kendo-angular-icons": "13.1.0",
35
- "@progress/kendo-angular-popup": "13.1.0",
36
- "@progress/kendo-angular-toolbar": "13.1.0",
25
+ "@progress/kendo-angular-buttons": "13.1.1-develop.1",
26
+ "@progress/kendo-angular-common": "13.1.1-develop.1",
27
+ "@progress/kendo-angular-dialog": "13.1.1-develop.1",
28
+ "@progress/kendo-angular-dropdowns": "13.1.1-develop.1",
29
+ "@progress/kendo-angular-inputs": "13.1.1-develop.1",
30
+ "@progress/kendo-angular-intl": "13.1.1-develop.1",
31
+ "@progress/kendo-angular-l10n": "13.1.1-develop.1",
32
+ "@progress/kendo-angular-label": "13.1.1-develop.1",
33
+ "@progress/kendo-angular-layout": "13.1.1-develop.1",
34
+ "@progress/kendo-angular-icons": "13.1.1-develop.1",
35
+ "@progress/kendo-angular-popup": "13.1.1-develop.1",
36
+ "@progress/kendo-angular-toolbar": "13.1.1-develop.1",
37
37
  "rxjs": "^6.5.3 || ^7.0.0"
38
38
  },
39
39
  "dependencies": {
40
40
  "tslib": "^2.3.1",
41
- "@progress/kendo-angular-schematics": "13.1.0",
41
+ "@progress/kendo-angular-schematics": "13.1.1-develop.1",
42
42
  "@progress/kendo-editor-common": "1.9.6"
43
43
  },
44
44
  "schematics": "./schematics/collection.json",
@@ -4,11 +4,11 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'EditorModule', package: 'editor', peerDependencies: {
6
6
  // peer dependency of kendo-angular-dropdowns
7
- '@progress/kendo-angular-treeview': '13.1.0',
7
+ '@progress/kendo-angular-treeview': '13.1.1-develop.1',
8
8
  // peer dependency of kendo-angular-layout
9
- '@progress/kendo-angular-progressbar': '13.1.0',
9
+ '@progress/kendo-angular-progressbar': '13.1.1-develop.1',
10
10
  // peer dependency of kendo-angular-inputs
11
- '@progress/kendo-angular-dialog': '13.1.0',
11
+ '@progress/kendo-angular-dialog': '13.1.1-develop.1',
12
12
  // Peer dependency of icons
13
13
  '@progress/kendo-svg-icons': '^1.0.0'
14
14
  } });
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor AlignCenter tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignCenter** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorAlignCenterButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorAlignCenterButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor AlignJustify tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignJustify** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorAlignJustifyButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorAlignJustifyButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor AlignLeft tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignLeft** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorAlignLeftButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorAlignLeftButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor AlignRight tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **AlignRight** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorAlignRightButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorAlignRightButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,21 +9,14 @@ import { EditorToolsService } from '../tools.service';
9
9
  import { ProviderService } from '../../common/provider.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Blockquote tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Blockquote** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorBlockquoteButton></kendo-toolbar-button>
19
19
  * ```
20
- *
21
- * The following example demonstrates how to change the default icon that is applied by the directive.
22
- *
23
- * @example
24
- * ```html
25
- * <kendo-toolbar-button kendoEditorBlockquoteButton ></kendo-toolbar-button>
26
- * ```
27
20
  */
28
21
  export declare class EditorBlockquoteDirective extends EditorCommandButton {
29
22
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -8,6 +8,10 @@ import * as i0 from "@angular/core";
8
8
  * A directive which configures an `EditorColorPickerComponent`
9
9
  * for manipulating the background color of the text
10
10
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
11
+ *
12
+ * ```html
13
+ * <kendo-toolbar-colorpicker kendoEditorBackColor view="gradient"> </kendo-toolbar-colorpicker>
14
+ * ```
11
15
  */
12
16
  export declare class EditorBackColorDirective {
13
17
  private colorPicker;
@@ -13,7 +13,7 @@ import * as i0 from "@angular/core";
13
13
  /**
14
14
  * A component which configures an existing ColorPickerComponent as a ToolBar tool.
15
15
  * To associate a `kendo-toolbar-colorpicker` with an Editor command that changes the
16
- * foreground or the background color of the text, use the `kendoEditorForeColor` or `kendoEditorBackColor` directive.
16
+ * foreground or the background color of the text, use the `kendoEditorForeColor` or `kendoEditorBackColor` directivе ([more information]({% slug toolbartools_editor %}#toc-colorpickers)).
17
17
  */
18
18
  export declare class EditorColorPickerComponent extends ToolBarToolComponent {
19
19
  private localization;
@@ -44,6 +44,8 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
44
44
  editorCommand: 'foreColor' | 'backColor';
45
45
  /**
46
46
  * Specifies if the component should be disabled.
47
+ *
48
+ * @default false
47
49
  */
48
50
  disabled: boolean;
49
51
  /**
@@ -8,6 +8,10 @@ import * as i0 from "@angular/core";
8
8
  * A directive which configures an `EditorColorPickerComponent`
9
9
  * for manipulating the foreground color of the text
10
10
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
11
+ *
12
+ * ```html
13
+ * <kendo-toolbar-colorpicker kendoEditorForeColor ></kendo-toolbar-colorpicker>
14
+ * ```
11
15
  */
12
16
  export declare class EditorForeColorDirective {
13
17
  private colorPicker;
@@ -9,21 +9,14 @@ import { ProviderService } from '../common/provider.service';
9
9
  import { EditorToolsService } from './tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Clean Formatting tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Clean Formatting** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorCleanFormattingButton></kendo-toolbar-button>
19
19
  * ```
20
- *
21
- * The following example demonstrates how to change the default icon applied by the directive.
22
- *
23
- * @example
24
- * ```html
25
- * <kendo-toolbar-button kendoEditorCleanFormattingButton ></kendo-toolbar-button>
26
- * ```
27
20
  */
28
21
  export declare class EditorCleanFormattingButtonDirective extends EditorCommandButton {
29
22
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -16,7 +16,7 @@ import * as i0 from "@angular/core";
16
16
  * A component which configures an existing `DropDownListComponent` as an Editor tool
17
17
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
18
18
  * The component associates a `kendo-toolbar-dropdownlist` with an Editor command that changes the font family of a content block and
19
- * automatically defines the options of the drop-down list and sets its values.
19
+ * automatically defines the options of the drop-down list and sets its values ([see example]({% slug toolbartools_editor %}#toc-dropdownlists)).
20
20
  *
21
21
  * @example
22
22
  * ```ts-no-run
@@ -17,14 +17,12 @@ import * as i0 from "@angular/core";
17
17
  * A component which configures an existing `DropDownListComponent` as an Editor tool
18
18
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
19
19
  * The component associates a `kendo-dropdownlist` with an Editor command that changes the font size of a content block and
20
- * automatically defines the options of the drop-down list and sets its values.
20
+ * automatically defines the options of the drop-down list and sets its values ([see example]({% slug toolbartools_editor %}#toc-dropdownlists)).
21
21
  *
22
22
  * @example
23
23
  * ```ts-no-run
24
24
  * <kendo-toolbar-dropdownlist kendoEditorFontSize></kendo-toolbar-dropdownlist>
25
25
  * ```
26
- *
27
- * Use the FontSize tool to provide a custom list of font size options including any allowed units ([see example]({% slug toolbartools_editor %}#toc-dropdownlists)).
28
26
  */
29
27
  export declare class EditorFontSizeComponent extends ToolBarToolComponent {
30
28
  private dialogService;
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
17
17
  * A component which configures an existing `DropDownListComponent` as an Editor tool
18
18
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
19
19
  * The component associates a `kendo-dropdownlist` with an Editor command that changes the format of a content block and
20
- * automatically defines the options of the drop-down list and sets its values.
20
+ * automatically defines the options of the drop-down list and sets its values ([see example]({% slug toolbartools_editor %}#toc-dropdownlists)).
21
21
  *
22
22
  * @example
23
23
  * ```ts-no-run
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Redo tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Redo** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorRedoButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorRedoButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Undo tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Undo** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorUndoButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorUndoButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,21 +9,14 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor InsertImage tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **InsertImage** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
19
19
  * ```
20
- *
21
- * The following example demonstrates how to change the default icon that is applied by the directive.
22
- *
23
- * @example
24
- * ```html
25
- * <kendo-toolbar-button kendoEditorInsertImageButton ></kendo-toolbar-button>
26
- * ```
27
20
  */
28
21
  export declare class EditorInsertImageButtonDirective extends EditorCommandDialog {
29
22
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Indent tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Indent** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorIndentButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorIndentButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Outdent tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Outdent** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorOutdentButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorOutdentButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorOutdentButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor CreateLink tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **CreateLink** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorCreateLinkButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorCreateLinkButtonDirective extends EditorCommandDialog {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,12 +9,12 @@ import { ProviderService } from "../../common/provider.service";
9
9
  import { EditorToolsService } from "../tools.service";
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor 'Insert File' tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Insert File** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
- * ```ts-no-run
17
+ * ```html
18
18
  * <kendo-toolbar-button kendoEditorInsertFileButton></kendo-toolbar-button>
19
19
  * ```
20
20
  */
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Unlink tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Unlink** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorUnlinkButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorUnlinkButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor InsertOrderedList tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **InsertOrderedList** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorInsertOrderedListButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,22 +9,15 @@ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor InsertUnorderedList tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **InsertUnorderedList** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
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
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
20
20
  * ```
21
- *
22
- * The following example demonstrates how to change the default icon that is applied by the directive.
23
- *
24
- * @example
25
- * ```html
26
- * <kendo-toolbar-button kendoEditorInsertUnorderedListButton ></kendo-toolbar-button>
27
- * ```
28
21
  */
29
22
  export declare class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
30
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,9 +9,9 @@ import { EditorToolsService } from '../tools.service';
9
9
  import { ProviderService } from '../../common/provider.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Print tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **Print** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
15
15
  *
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
  *
@@ -19,13 +19,6 @@ import * as i0 from "@angular/core";
19
19
  * ```html
20
20
  * <kendo-toolbar-button kendoEditorPrintButton></kendo-toolbar-button>
21
21
  * ```
22
- *
23
- * The following example demonstrates how to change the default icon that is applied by the directive.
24
- *
25
- * @example
26
- * ```html
27
- * <kendo-toolbar-button kendoEditorPrintButton ></kendo-toolbar-button>
28
- * ```
29
22
  */
30
23
  export declare class EditorPrintDirective extends EditorCommandButton {
31
24
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -9,21 +9,14 @@ import { EditorToolsService } from '../tools.service';
9
9
  import { ProviderService } from '../../common/provider.service';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor SelectAll tool
12
+ * A directive which configures an existing `ToolBarButtonComponent` as an Editor **SelectAll** tool
13
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
14
- * The directive will predefine the `icon` and `click` event handlers of the button.
14
+ * The directive will predefine the SVG icon and `click` event handlers of the button.
15
15
  *
16
16
  * @example
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorSelectAllButton></kendo-toolbar-button>
19
19
  * ```
20
- *
21
- * The following example demonstrates how to change the default icon that is applied by the directive.
22
- *
23
- * @example
24
- * ```html
25
- * <kendo-toolbar-button kendoEditorSelectAllButton ></kendo-toolbar-button>
26
- * ```
27
20
  */
28
21
  export declare class EditorSelectAllButtonDirective extends EditorCommandButton {
29
22
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);