@progress/kendo-angular-editor 13.0.3-develop.2 → 13.0.3-develop.4
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
|
@@ -40,8 +40,8 @@ const packageMetadata = {
|
|
|
40
40
|
name: '@progress/kendo-angular-editor',
|
|
41
41
|
productName: 'Kendo UI for Angular',
|
|
42
42
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
43
|
-
publishDate:
|
|
44
|
-
version: '13.0.3-develop.
|
|
43
|
+
publishDate: 1686564709,
|
|
44
|
+
version: '13.0.3-develop.4',
|
|
45
45
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
46
46
|
};
|
|
47
47
|
|
|
@@ -2407,15 +2407,15 @@ class EditorCommandButton extends EditorCommandBaseDirective {
|
|
|
2407
2407
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2408
2408
|
*
|
|
2409
2409
|
* @example
|
|
2410
|
-
* ```
|
|
2410
|
+
* ```html
|
|
2411
2411
|
* <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
|
|
2412
2412
|
* ```
|
|
2413
2413
|
*
|
|
2414
2414
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2415
2415
|
*
|
|
2416
2416
|
* @example
|
|
2417
|
-
* ```
|
|
2418
|
-
* <kendo-toolbar-button kendoEditorBoldButton
|
|
2417
|
+
* ```html
|
|
2418
|
+
* <kendo-toolbar-button kendoEditorBoldButton ></kendo-toolbar-button>
|
|
2419
2419
|
* ```
|
|
2420
2420
|
*/
|
|
2421
2421
|
class EditorBoldButtonDirective extends EditorCommandButton {
|
|
@@ -2439,15 +2439,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2439
2439
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2440
2440
|
*
|
|
2441
2441
|
* @example
|
|
2442
|
-
* ```
|
|
2442
|
+
* ```html
|
|
2443
2443
|
* <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
|
|
2444
2444
|
* ```
|
|
2445
2445
|
*
|
|
2446
2446
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2447
2447
|
*
|
|
2448
2448
|
* @example
|
|
2449
|
-
* ```
|
|
2450
|
-
* <kendo-toolbar-button kendoEditorItalicButton
|
|
2449
|
+
* ```html
|
|
2450
|
+
* <kendo-toolbar-button kendoEditorItalicButton ></kendo-toolbar-button>
|
|
2451
2451
|
* ```
|
|
2452
2452
|
*/
|
|
2453
2453
|
class EditorItalicButtonDirective extends EditorCommandButton {
|
|
@@ -2471,15 +2471,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2471
2471
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2472
2472
|
*
|
|
2473
2473
|
* @example
|
|
2474
|
-
* ```
|
|
2474
|
+
* ```html
|
|
2475
2475
|
* <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
|
|
2476
2476
|
* ```
|
|
2477
2477
|
*
|
|
2478
2478
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2479
2479
|
*
|
|
2480
2480
|
* @example
|
|
2481
|
-
* ```
|
|
2482
|
-
* <kendo-toolbar-button kendoEditorUnderlineButton
|
|
2481
|
+
* ```html
|
|
2482
|
+
* <kendo-toolbar-button kendoEditorUnderlineButton ></kendo-toolbar-button>
|
|
2483
2483
|
* ```
|
|
2484
2484
|
*/
|
|
2485
2485
|
class EditorUnderlineButtonDirective extends EditorCommandButton {
|
|
@@ -2503,15 +2503,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2503
2503
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2504
2504
|
*
|
|
2505
2505
|
* @example
|
|
2506
|
-
* ```
|
|
2506
|
+
* ```html
|
|
2507
2507
|
* <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
|
|
2508
2508
|
* ```
|
|
2509
2509
|
*
|
|
2510
2510
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2511
2511
|
*
|
|
2512
2512
|
* @example
|
|
2513
|
-
* ```
|
|
2514
|
-
* <kendo-toolbar-button kendoEditorAlignLeftButton
|
|
2513
|
+
* ```html
|
|
2514
|
+
* <kendo-toolbar-button kendoEditorAlignLeftButton ></kendo-toolbar-button>
|
|
2515
2515
|
* ```
|
|
2516
2516
|
*/
|
|
2517
2517
|
class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
@@ -2535,15 +2535,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2535
2535
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2536
2536
|
*
|
|
2537
2537
|
* @example
|
|
2538
|
-
* ```
|
|
2538
|
+
* ```html
|
|
2539
2539
|
* <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
|
|
2540
2540
|
* ```
|
|
2541
2541
|
*
|
|
2542
2542
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2543
2543
|
*
|
|
2544
2544
|
* @example
|
|
2545
|
-
* ```
|
|
2546
|
-
* <kendo-toolbar-button kendoEditorAlignCenterButton
|
|
2545
|
+
* ```html
|
|
2546
|
+
* <kendo-toolbar-button kendoEditorAlignCenterButton ></kendo-toolbar-button>
|
|
2547
2547
|
* ```
|
|
2548
2548
|
*/
|
|
2549
2549
|
class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
@@ -2567,15 +2567,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2567
2567
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2568
2568
|
*
|
|
2569
2569
|
* @example
|
|
2570
|
-
* ```
|
|
2570
|
+
* ```html
|
|
2571
2571
|
* <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
|
|
2572
2572
|
* ```
|
|
2573
2573
|
*
|
|
2574
2574
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2575
2575
|
*
|
|
2576
2576
|
* @example
|
|
2577
|
-
* ```
|
|
2578
|
-
* <kendo-toolbar-button kendoEditorAlignRightButton
|
|
2577
|
+
* ```html
|
|
2578
|
+
* <kendo-toolbar-button kendoEditorAlignRightButton ></kendo-toolbar-button>
|
|
2579
2579
|
* ```
|
|
2580
2580
|
*/
|
|
2581
2581
|
class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
@@ -2599,15 +2599,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2599
2599
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2600
2600
|
*
|
|
2601
2601
|
* @example
|
|
2602
|
-
* ```
|
|
2602
|
+
* ```html
|
|
2603
2603
|
* <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
|
|
2604
2604
|
* ```
|
|
2605
2605
|
*
|
|
2606
2606
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2607
2607
|
*
|
|
2608
2608
|
* @example
|
|
2609
|
-
* ```
|
|
2610
|
-
* <kendo-toolbar-button kendoEditorAlignJustifyButton
|
|
2609
|
+
* ```html
|
|
2610
|
+
* <kendo-toolbar-button kendoEditorAlignJustifyButton ></kendo-toolbar-button>
|
|
2611
2611
|
* ```
|
|
2612
2612
|
*/
|
|
2613
2613
|
class EditorAlignJustifyButtonDirective extends EditorCommandButton {
|
|
@@ -2631,15 +2631,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2631
2631
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2632
2632
|
*
|
|
2633
2633
|
* @example
|
|
2634
|
-
* ```
|
|
2634
|
+
* ```html
|
|
2635
2635
|
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
|
|
2636
2636
|
* ```
|
|
2637
2637
|
*
|
|
2638
2638
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2639
2639
|
*
|
|
2640
2640
|
* @example
|
|
2641
|
-
* ```
|
|
2642
|
-
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton
|
|
2641
|
+
* ```html
|
|
2642
|
+
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton ></kendo-toolbar-button>
|
|
2643
2643
|
* ```
|
|
2644
2644
|
*/
|
|
2645
2645
|
class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
|
|
@@ -2663,15 +2663,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2663
2663
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2664
2664
|
*
|
|
2665
2665
|
* @example
|
|
2666
|
-
* ```
|
|
2666
|
+
* ```html
|
|
2667
2667
|
* <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
|
|
2668
2668
|
* ```
|
|
2669
2669
|
*
|
|
2670
2670
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2671
2671
|
*
|
|
2672
2672
|
* @example
|
|
2673
|
-
* ```
|
|
2674
|
-
* <kendo-toolbar-button kendoEditorInsertOrderedListButton
|
|
2673
|
+
* ```html
|
|
2674
|
+
* <kendo-toolbar-button kendoEditorInsertOrderedListButton ></kendo-toolbar-button>
|
|
2675
2675
|
* ```
|
|
2676
2676
|
*/
|
|
2677
2677
|
class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
|
|
@@ -2695,15 +2695,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2695
2695
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2696
2696
|
*
|
|
2697
2697
|
* @example
|
|
2698
|
-
* ```
|
|
2698
|
+
* ```html
|
|
2699
2699
|
* <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
|
|
2700
2700
|
* ```
|
|
2701
2701
|
*
|
|
2702
2702
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2703
2703
|
*
|
|
2704
2704
|
* @example
|
|
2705
|
-
* ```
|
|
2706
|
-
* <kendo-toolbar-button kendoEditorIndentButton
|
|
2705
|
+
* ```html
|
|
2706
|
+
* <kendo-toolbar-button kendoEditorIndentButton ></kendo-toolbar-button>
|
|
2707
2707
|
* ```
|
|
2708
2708
|
*/
|
|
2709
2709
|
class EditorIndentButtonDirective extends EditorCommandButton {
|
|
@@ -2727,15 +2727,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2727
2727
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2728
2728
|
*
|
|
2729
2729
|
* @example
|
|
2730
|
-
* ```
|
|
2730
|
+
* ```html
|
|
2731
2731
|
* <kendo-toolbar-button kendoEditorOutdentButton></kendo-toolbar-button>
|
|
2732
2732
|
* ```
|
|
2733
2733
|
*
|
|
2734
2734
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2735
2735
|
*
|
|
2736
2736
|
* @example
|
|
2737
|
-
* ```
|
|
2738
|
-
* <kendo-toolbar-button kendoEditorOutdentButton
|
|
2737
|
+
* ```html
|
|
2738
|
+
* <kendo-toolbar-button kendoEditorOutdentButton ></kendo-toolbar-button>
|
|
2739
2739
|
* ```
|
|
2740
2740
|
*/
|
|
2741
2741
|
class EditorOutdentButtonDirective extends EditorCommandButton {
|
|
@@ -2782,15 +2782,15 @@ class EditorCommandDialog extends EditorCommandBaseDirective {
|
|
|
2782
2782
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2783
2783
|
*
|
|
2784
2784
|
* @example
|
|
2785
|
-
* ```
|
|
2785
|
+
* ```html
|
|
2786
2786
|
* <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
|
|
2787
2787
|
* ```
|
|
2788
2788
|
*
|
|
2789
2789
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2790
2790
|
*
|
|
2791
2791
|
* @example
|
|
2792
|
-
* ```
|
|
2793
|
-
* <kendo-toolbar-button kendoEditorCreateLinkButton
|
|
2792
|
+
* ```html
|
|
2793
|
+
* <kendo-toolbar-button kendoEditorCreateLinkButton ></kendo-toolbar-button>
|
|
2794
2794
|
* ```
|
|
2795
2795
|
*/
|
|
2796
2796
|
class EditorCreateLinkButtonDirective extends EditorCommandDialog {
|
|
@@ -2814,15 +2814,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2814
2814
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2815
2815
|
*
|
|
2816
2816
|
* @example
|
|
2817
|
-
* ```
|
|
2817
|
+
* ```html
|
|
2818
2818
|
* <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
|
|
2819
2819
|
* ```
|
|
2820
2820
|
*
|
|
2821
2821
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2822
2822
|
*
|
|
2823
2823
|
* @example
|
|
2824
|
-
* ```
|
|
2825
|
-
* <kendo-toolbar-button kendoEditorUnlinkButton
|
|
2824
|
+
* ```html
|
|
2825
|
+
* <kendo-toolbar-button kendoEditorUnlinkButton ></kendo-toolbar-button>
|
|
2826
2826
|
* ```
|
|
2827
2827
|
*/
|
|
2828
2828
|
class EditorUnlinkButtonDirective extends EditorCommandButton {
|
|
@@ -2845,15 +2845,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2845
2845
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
2846
2846
|
*
|
|
2847
2847
|
* @example
|
|
2848
|
-
* ```
|
|
2848
|
+
* ```html
|
|
2849
2849
|
* <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
|
|
2850
2850
|
* ```
|
|
2851
2851
|
*
|
|
2852
2852
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2853
2853
|
*
|
|
2854
2854
|
* @example
|
|
2855
|
-
* ```
|
|
2856
|
-
* <kendo-toolbar-button kendoEditorInsertImageButton
|
|
2855
|
+
* ```html
|
|
2856
|
+
* <kendo-toolbar-button kendoEditorInsertImageButton ></kendo-toolbar-button>
|
|
2857
2857
|
* ```
|
|
2858
2858
|
*/
|
|
2859
2859
|
class EditorInsertImageButtonDirective extends EditorCommandDialog {
|
|
@@ -5514,7 +5514,7 @@ const popupWrapperHeight = '164px'; // Set to '192px' when TableWizard button is
|
|
|
5514
5514
|
* A toolbar component which allows the user to create and insert a table in the Editor's content.
|
|
5515
5515
|
*
|
|
5516
5516
|
* @example
|
|
5517
|
-
* ```
|
|
5517
|
+
* ```html
|
|
5518
5518
|
* <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
|
|
5519
5519
|
* ```
|
|
5520
5520
|
*/
|
|
@@ -5746,15 +5746,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5746
5746
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
5747
5747
|
*
|
|
5748
5748
|
* @example
|
|
5749
|
-
* ```
|
|
5749
|
+
* ```html
|
|
5750
5750
|
* <kendo-toolbar-button kendoEditorBlockquoteButton></kendo-toolbar-button>
|
|
5751
5751
|
* ```
|
|
5752
5752
|
*
|
|
5753
5753
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5754
5754
|
*
|
|
5755
5755
|
* @example
|
|
5756
|
-
* ```
|
|
5757
|
-
* <kendo-toolbar-button kendoEditorBlockquoteButton
|
|
5756
|
+
* ```html
|
|
5757
|
+
* <kendo-toolbar-button kendoEditorBlockquoteButton ></kendo-toolbar-button>
|
|
5758
5758
|
* ```
|
|
5759
5759
|
*/
|
|
5760
5760
|
class EditorBlockquoteDirective extends EditorCommandButton {
|
|
@@ -5778,15 +5778,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5778
5778
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
5779
5779
|
*
|
|
5780
5780
|
* @example
|
|
5781
|
-
* ```
|
|
5781
|
+
* ```html
|
|
5782
5782
|
* <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
|
|
5783
5783
|
* ```
|
|
5784
5784
|
*
|
|
5785
5785
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5786
5786
|
*
|
|
5787
5787
|
* @example
|
|
5788
|
-
* ```
|
|
5789
|
-
* <kendo-toolbar-button kendoEditorRedoButton
|
|
5788
|
+
* ```html
|
|
5789
|
+
* <kendo-toolbar-button kendoEditorRedoButton ></kendo-toolbar-button>
|
|
5790
5790
|
* ```
|
|
5791
5791
|
*/
|
|
5792
5792
|
class EditorRedoButtonDirective extends EditorCommandButton {
|
|
@@ -5810,15 +5810,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5810
5810
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
5811
5811
|
*
|
|
5812
5812
|
* @example
|
|
5813
|
-
* ```
|
|
5813
|
+
* ```html
|
|
5814
5814
|
* <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
|
|
5815
5815
|
* ```
|
|
5816
5816
|
*
|
|
5817
5817
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5818
5818
|
*
|
|
5819
5819
|
* @example
|
|
5820
|
-
* ```
|
|
5821
|
-
* <kendo-toolbar-button kendoEditorUndoButton
|
|
5820
|
+
* ```html
|
|
5821
|
+
* <kendo-toolbar-button kendoEditorUndoButton ></kendo-toolbar-button>
|
|
5822
5822
|
* ```
|
|
5823
5823
|
*/
|
|
5824
5824
|
class EditorUndoButtonDirective extends EditorCommandButton {
|
|
@@ -5841,15 +5841,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5841
5841
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
5842
5842
|
*
|
|
5843
5843
|
* @example
|
|
5844
|
-
* ```
|
|
5844
|
+
* ```html
|
|
5845
5845
|
* <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>
|
|
5846
5846
|
* ```
|
|
5847
5847
|
*
|
|
5848
5848
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5849
5849
|
*
|
|
5850
5850
|
* @example
|
|
5851
|
-
* ```
|
|
5852
|
-
* <kendo-toolbar-button kendoEditorViewSourceButton
|
|
5851
|
+
* ```html
|
|
5852
|
+
* <kendo-toolbar-button kendoEditorViewSourceButton ></kendo-toolbar-button>
|
|
5853
5853
|
* ```
|
|
5854
5854
|
*/
|
|
5855
5855
|
class EditorViewSourceButtonDirective extends EditorCommandDialog {
|
|
@@ -5873,15 +5873,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5873
5873
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
5874
5874
|
*
|
|
5875
5875
|
* @example
|
|
5876
|
-
* ```
|
|
5876
|
+
* ```html
|
|
5877
5877
|
* <kendo-toolbar-button kendoEditorStrikethroughButton></kendo-toolbar-button>
|
|
5878
5878
|
* ```
|
|
5879
5879
|
*
|
|
5880
5880
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5881
5881
|
*
|
|
5882
5882
|
* @example
|
|
5883
|
-
* ```
|
|
5884
|
-
* <kendo-toolbar-button kendoEditorStrikethroughButton
|
|
5883
|
+
* ```html
|
|
5884
|
+
* <kendo-toolbar-button kendoEditorStrikethroughButton ></kendo-toolbar-button>
|
|
5885
5885
|
* ```
|
|
5886
5886
|
*/
|
|
5887
5887
|
class EditorStrikethroughButtonDirective extends EditorCommandButton {
|
|
@@ -5905,15 +5905,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5905
5905
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
5906
5906
|
*
|
|
5907
5907
|
* @example
|
|
5908
|
-
* ```
|
|
5908
|
+
* ```html
|
|
5909
5909
|
* <kendo-toolbar-button kendoEditorSubscriptButton></kendo-toolbar-button>
|
|
5910
5910
|
* ```
|
|
5911
5911
|
*
|
|
5912
5912
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5913
5913
|
*
|
|
5914
5914
|
* @example
|
|
5915
|
-
* ```
|
|
5916
|
-
* <kendo-toolbar-button kendoEditorSubscriptButton
|
|
5915
|
+
* ```html
|
|
5916
|
+
* <kendo-toolbar-button kendoEditorSubscriptButton ></kendo-toolbar-button>
|
|
5917
5917
|
* ```
|
|
5918
5918
|
*/
|
|
5919
5919
|
class EditorSubscriptButtonDirective extends EditorCommandButton {
|
|
@@ -5937,15 +5937,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5937
5937
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
5938
5938
|
*
|
|
5939
5939
|
* @example
|
|
5940
|
-
* ```
|
|
5940
|
+
* ```html
|
|
5941
5941
|
* <kendo-toolbar-button kendoEditorSuperscriptButton></kendo-toolbar-button>
|
|
5942
5942
|
* ```
|
|
5943
5943
|
*
|
|
5944
5944
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5945
5945
|
*
|
|
5946
5946
|
* @example
|
|
5947
|
-
* ```
|
|
5948
|
-
* <kendo-toolbar-button kendoEditorSuperscriptButton
|
|
5947
|
+
* ```html
|
|
5948
|
+
* <kendo-toolbar-button kendoEditorSuperscriptButton ></kendo-toolbar-button>
|
|
5949
5949
|
* ```
|
|
5950
5950
|
*/
|
|
5951
5951
|
class EditorSuperscriptButtonDirective extends EditorCommandButton {
|
|
@@ -6036,15 +6036,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6036
6036
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6037
6037
|
*
|
|
6038
6038
|
* @example
|
|
6039
|
-
* ```
|
|
6039
|
+
* ```html
|
|
6040
6040
|
* <kendo-toolbar-button kendoEditorCleanFormattingButton></kendo-toolbar-button>
|
|
6041
6041
|
* ```
|
|
6042
6042
|
*
|
|
6043
6043
|
* The following example demonstrates how to change the default icon applied by the directive.
|
|
6044
6044
|
*
|
|
6045
6045
|
* @example
|
|
6046
|
-
* ```
|
|
6047
|
-
* <kendo-toolbar-button kendoEditorCleanFormattingButton
|
|
6046
|
+
* ```html
|
|
6047
|
+
* <kendo-toolbar-button kendoEditorCleanFormattingButton ></kendo-toolbar-button>
|
|
6048
6048
|
* ```
|
|
6049
6049
|
*/
|
|
6050
6050
|
class EditorCleanFormattingButtonDirective extends EditorCommandButton {
|
|
@@ -6332,15 +6332,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6332
6332
|
* > 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.
|
|
6333
6333
|
*
|
|
6334
6334
|
* @example
|
|
6335
|
-
* ```
|
|
6335
|
+
* ```html
|
|
6336
6336
|
* <kendo-toolbar-button kendoEditorPrintButton></kendo-toolbar-button>
|
|
6337
6337
|
* ```
|
|
6338
6338
|
*
|
|
6339
6339
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
6340
6340
|
*
|
|
6341
6341
|
* @example
|
|
6342
|
-
* ```
|
|
6343
|
-
* <kendo-toolbar-button kendoEditorPrintButton
|
|
6342
|
+
* ```html
|
|
6343
|
+
* <kendo-toolbar-button kendoEditorPrintButton ></kendo-toolbar-button>
|
|
6344
6344
|
* ```
|
|
6345
6345
|
*/
|
|
6346
6346
|
class EditorPrintDirective extends EditorCommandButton {
|
|
@@ -6381,15 +6381,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6381
6381
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6382
6382
|
*
|
|
6383
6383
|
* @example
|
|
6384
|
-
* ```
|
|
6384
|
+
* ```html
|
|
6385
6385
|
* <kendo-toolbar-button kendoEditorSelectAllButton></kendo-toolbar-button>
|
|
6386
6386
|
* ```
|
|
6387
6387
|
*
|
|
6388
6388
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
6389
6389
|
*
|
|
6390
6390
|
* @example
|
|
6391
|
-
* ```
|
|
6392
|
-
* <kendo-toolbar-button kendoEditorSelectAllButton
|
|
6391
|
+
* ```html
|
|
6392
|
+
* <kendo-toolbar-button kendoEditorSelectAllButton ></kendo-toolbar-button>
|
|
6393
6393
|
* ```
|
|
6394
6394
|
*/
|
|
6395
6395
|
class EditorSelectAllButtonDirective extends EditorCommandButton {
|