@progress/kendo-angular-editor 13.0.3-develop.2 → 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.
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/tools/alignment/editor-align-center-button.directive.mjs +3 -3
- package/esm2020/tools/alignment/editor-align-justify-button.directive.mjs +3 -3
- package/esm2020/tools/alignment/editor-align-left-button.directive.mjs +3 -3
- package/esm2020/tools/alignment/editor-align-right-button.directive.mjs +3 -3
- package/esm2020/tools/blockquote/editor-blockquote-button.directive.mjs +3 -3
- package/esm2020/tools/editor-clean-formatting-button.directive.mjs +3 -3
- package/esm2020/tools/history/editor-redo-button.directive.mjs +3 -3
- package/esm2020/tools/history/editor-undo-button.directive.mjs +3 -3
- package/esm2020/tools/image/editor-insert-image-button.directive.mjs +3 -3
- package/esm2020/tools/indentation/editor-indent-button.directive.mjs +3 -3
- package/esm2020/tools/indentation/editor-outdent-button.directive.mjs +3 -3
- package/esm2020/tools/link/editor-create-link-button.directive.mjs +3 -3
- package/esm2020/tools/link/editor-unlink-button.directive.mjs +3 -3
- package/esm2020/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -3
- package/esm2020/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -3
- package/esm2020/tools/print/editor-print-button.directive.mjs +3 -3
- package/esm2020/tools/select-all/select-all-button.directive.mjs +3 -3
- package/esm2020/tools/source/editor-view-source-button.directive.mjs +3 -3
- package/esm2020/tools/tables/editor-insert-table-button.component.mjs +1 -1
- package/esm2020/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -3
- package/esm2020/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -3
- package/esm2020/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -3
- package/esm2020/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -3
- package/esm2020/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -3
- package/esm2020/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -3
- package/fesm2015/progress-kendo-angular-editor.mjs +75 -75
- package/fesm2020/progress-kendo-angular-editor.mjs +75 -75
- package/package.json +14 -14
- package/schematics/ngAdd/index.js +3 -3
- package/tools/alignment/editor-align-center-button.directive.d.ts +3 -3
- package/tools/alignment/editor-align-justify-button.directive.d.ts +3 -3
- package/tools/alignment/editor-align-left-button.directive.d.ts +3 -3
- package/tools/alignment/editor-align-right-button.directive.d.ts +3 -3
- package/tools/blockquote/editor-blockquote-button.directive.d.ts +3 -3
- package/tools/editor-clean-formatting-button.directive.d.ts +3 -3
- package/tools/history/editor-redo-button.directive.d.ts +3 -3
- package/tools/history/editor-undo-button.directive.d.ts +3 -3
- package/tools/image/editor-insert-image-button.directive.d.ts +3 -3
- package/tools/indentation/editor-indent-button.directive.d.ts +3 -3
- package/tools/indentation/editor-outdent-button.directive.d.ts +3 -3
- package/tools/link/editor-create-link-button.directive.d.ts +3 -3
- package/tools/link/editor-unlink-button.directive.d.ts +3 -3
- package/tools/list/editor-insert-ordered-list-button.directive.d.ts +3 -3
- package/tools/list/editor-insert-unordered-list-button.directive.d.ts +3 -3
- package/tools/print/editor-print-button.directive.d.ts +3 -3
- package/tools/select-all/select-all-button.directive.d.ts +3 -3
- package/tools/source/editor-view-source-button.directive.d.ts +3 -3
- package/tools/tables/editor-insert-table-button.component.d.ts +1 -1
- package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +3 -3
- package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +3 -3
- package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +3 -3
- package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +3 -3
- package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +3 -3
- package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +3 -3
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-editor',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.0.3-develop.
|
|
12
|
+
publishDate: 1686561522,
|
|
13
|
+
version: '13.0.3-develop.3',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorAlignCenterButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorAlignCenterButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorAlignJustifyButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorAlignJustifyButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorAlignJustifyButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorAlignLeftButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorAlignLeftButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorAlignRightButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorAlignRightButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
@@ -19,15 +19,15 @@ import * as i4 from "../tools.service";
|
|
|
19
19
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
|
-
* ```
|
|
22
|
+
* ```html
|
|
23
23
|
* <kendo-toolbar-button kendoEditorBlockquoteButton></kendo-toolbar-button>
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
* ```
|
|
30
|
-
* <kendo-toolbar-button kendoEditorBlockquoteButton
|
|
29
|
+
* ```html
|
|
30
|
+
* <kendo-toolbar-button kendoEditorBlockquoteButton ></kendo-toolbar-button>
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export class EditorBlockquoteDirective extends EditorCommandButton {
|
|
@@ -19,15 +19,15 @@ import * as i4 from "./tools.service";
|
|
|
19
19
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
|
-
* ```
|
|
22
|
+
* ```html
|
|
23
23
|
* <kendo-toolbar-button kendoEditorCleanFormattingButton></kendo-toolbar-button>
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* The following example demonstrates how to change the default icon applied by the directive.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
* ```
|
|
30
|
-
* <kendo-toolbar-button kendoEditorCleanFormattingButton
|
|
29
|
+
* ```html
|
|
30
|
+
* <kendo-toolbar-button kendoEditorCleanFormattingButton ></kendo-toolbar-button>
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export class EditorCleanFormattingButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorRedoButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorRedoButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorRedoButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorUndoButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorUndoButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorUndoButtonDirective extends EditorCommandButton {
|
|
@@ -19,15 +19,15 @@ import * as i4 from "../tools.service";
|
|
|
19
19
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
|
-
* ```
|
|
22
|
+
* ```html
|
|
23
23
|
* <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
* ```
|
|
30
|
-
* <kendo-toolbar-button kendoEditorInsertImageButton
|
|
29
|
+
* ```html
|
|
30
|
+
* <kendo-toolbar-button kendoEditorInsertImageButton ></kendo-toolbar-button>
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export class EditorInsertImageButtonDirective extends EditorCommandDialog {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorIndentButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorIndentButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorIndentButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorOutdentButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorOutdentButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorOutdentButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorOutdentButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorCreateLinkButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorCreateLinkButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorCreateLinkButtonDirective extends EditorCommandDialog {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorUnlinkButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorUnlinkButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorUnlinkButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorInsertOrderedListButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorInsertOrderedListButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
|
|
@@ -22,15 +22,15 @@ import * as i4 from "../tools.service";
|
|
|
22
22
|
* > 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.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
-
* ```
|
|
25
|
+
* ```html
|
|
26
26
|
* <kendo-toolbar-button kendoEditorPrintButton></kendo-toolbar-button>
|
|
27
27
|
* ```
|
|
28
28
|
*
|
|
29
29
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
30
30
|
*
|
|
31
31
|
* @example
|
|
32
|
-
* ```
|
|
33
|
-
* <kendo-toolbar-button kendoEditorPrintButton
|
|
32
|
+
* ```html
|
|
33
|
+
* <kendo-toolbar-button kendoEditorPrintButton ></kendo-toolbar-button>
|
|
34
34
|
* ```
|
|
35
35
|
*/
|
|
36
36
|
export class EditorPrintDirective extends EditorCommandButton {
|
|
@@ -19,15 +19,15 @@ import * as i4 from "../tools.service";
|
|
|
19
19
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
|
-
* ```
|
|
22
|
+
* ```html
|
|
23
23
|
* <kendo-toolbar-button kendoEditorSelectAllButton></kendo-toolbar-button>
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
* ```
|
|
30
|
-
* <kendo-toolbar-button kendoEditorSelectAllButton
|
|
29
|
+
* ```html
|
|
30
|
+
* <kendo-toolbar-button kendoEditorSelectAllButton ></kendo-toolbar-button>
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export class EditorSelectAllButtonDirective extends EditorCommandButton {
|
|
@@ -19,15 +19,15 @@ import * as i4 from "../tools.service";
|
|
|
19
19
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
|
-
* ```
|
|
22
|
+
* ```html
|
|
23
23
|
* <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
|
-
* ```
|
|
30
|
-
* <kendo-toolbar-button kendoEditorViewSourceButton
|
|
29
|
+
* ```html
|
|
30
|
+
* <kendo-toolbar-button kendoEditorViewSourceButton ></kendo-toolbar-button>
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export class EditorViewSourceButtonDirective extends EditorCommandDialog {
|
|
@@ -29,7 +29,7 @@ const popupWrapperHeight = '164px'; // Set to '192px' when TableWizard button is
|
|
|
29
29
|
* A toolbar component which allows the user to create and insert a table in the Editor's content.
|
|
30
30
|
*
|
|
31
31
|
* @example
|
|
32
|
-
* ```
|
|
32
|
+
* ```html
|
|
33
33
|
* <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
|
|
34
34
|
* ```
|
|
35
35
|
*/
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorBoldButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorBoldButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorBoldButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorItalicButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorItalicButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorItalicButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorStrikethroughButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorStrikethroughButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorStrikethroughButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorStrikethroughButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorSubscriptButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorSubscriptButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorSubscriptButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorSubscriptButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorSuperscriptButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorSuperscriptButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorSuperscriptButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorSuperscriptButtonDirective extends EditorCommandButton {
|
|
@@ -20,15 +20,15 @@ import * as i4 from "../tools.service";
|
|
|
20
20
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
21
21
|
*
|
|
22
22
|
* @example
|
|
23
|
-
* ```
|
|
23
|
+
* ```html
|
|
24
24
|
* <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
28
28
|
*
|
|
29
29
|
* @example
|
|
30
|
-
* ```
|
|
31
|
-
* <kendo-toolbar-button kendoEditorUnderlineButton
|
|
30
|
+
* ```html
|
|
31
|
+
* <kendo-toolbar-button kendoEditorUnderlineButton ></kendo-toolbar-button>
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
export class EditorUnderlineButtonDirective extends EditorCommandButton {
|