@progress/kendo-angular-editor 13.0.3-develop.1 → 13.0.3-develop.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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: 1686561522,
|
|
44
|
+
version: '13.0.3-develop.3',
|
|
45
45
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
46
46
|
};
|
|
47
47
|
|
|
@@ -2409,15 +2409,15 @@ class EditorCommandButton extends EditorCommandBaseDirective {
|
|
|
2409
2409
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2410
2410
|
*
|
|
2411
2411
|
* @example
|
|
2412
|
-
* ```
|
|
2412
|
+
* ```html
|
|
2413
2413
|
* <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
|
|
2414
2414
|
* ```
|
|
2415
2415
|
*
|
|
2416
2416
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2417
2417
|
*
|
|
2418
2418
|
* @example
|
|
2419
|
-
* ```
|
|
2420
|
-
* <kendo-toolbar-button kendoEditorBoldButton
|
|
2419
|
+
* ```html
|
|
2420
|
+
* <kendo-toolbar-button kendoEditorBoldButton ></kendo-toolbar-button>
|
|
2421
2421
|
* ```
|
|
2422
2422
|
*/
|
|
2423
2423
|
class EditorBoldButtonDirective extends EditorCommandButton {
|
|
@@ -2441,15 +2441,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2441
2441
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2442
2442
|
*
|
|
2443
2443
|
* @example
|
|
2444
|
-
* ```
|
|
2444
|
+
* ```html
|
|
2445
2445
|
* <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
|
|
2446
2446
|
* ```
|
|
2447
2447
|
*
|
|
2448
2448
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2449
2449
|
*
|
|
2450
2450
|
* @example
|
|
2451
|
-
* ```
|
|
2452
|
-
* <kendo-toolbar-button kendoEditorItalicButton
|
|
2451
|
+
* ```html
|
|
2452
|
+
* <kendo-toolbar-button kendoEditorItalicButton ></kendo-toolbar-button>
|
|
2453
2453
|
* ```
|
|
2454
2454
|
*/
|
|
2455
2455
|
class EditorItalicButtonDirective extends EditorCommandButton {
|
|
@@ -2473,15 +2473,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2473
2473
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2474
2474
|
*
|
|
2475
2475
|
* @example
|
|
2476
|
-
* ```
|
|
2476
|
+
* ```html
|
|
2477
2477
|
* <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
|
|
2478
2478
|
* ```
|
|
2479
2479
|
*
|
|
2480
2480
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2481
2481
|
*
|
|
2482
2482
|
* @example
|
|
2483
|
-
* ```
|
|
2484
|
-
* <kendo-toolbar-button kendoEditorUnderlineButton
|
|
2483
|
+
* ```html
|
|
2484
|
+
* <kendo-toolbar-button kendoEditorUnderlineButton ></kendo-toolbar-button>
|
|
2485
2485
|
* ```
|
|
2486
2486
|
*/
|
|
2487
2487
|
class EditorUnderlineButtonDirective extends EditorCommandButton {
|
|
@@ -2505,15 +2505,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2505
2505
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2506
2506
|
*
|
|
2507
2507
|
* @example
|
|
2508
|
-
* ```
|
|
2508
|
+
* ```html
|
|
2509
2509
|
* <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
|
|
2510
2510
|
* ```
|
|
2511
2511
|
*
|
|
2512
2512
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2513
2513
|
*
|
|
2514
2514
|
* @example
|
|
2515
|
-
* ```
|
|
2516
|
-
* <kendo-toolbar-button kendoEditorAlignLeftButton
|
|
2515
|
+
* ```html
|
|
2516
|
+
* <kendo-toolbar-button kendoEditorAlignLeftButton ></kendo-toolbar-button>
|
|
2517
2517
|
* ```
|
|
2518
2518
|
*/
|
|
2519
2519
|
class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
@@ -2537,15 +2537,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2537
2537
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2538
2538
|
*
|
|
2539
2539
|
* @example
|
|
2540
|
-
* ```
|
|
2540
|
+
* ```html
|
|
2541
2541
|
* <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
|
|
2542
2542
|
* ```
|
|
2543
2543
|
*
|
|
2544
2544
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2545
2545
|
*
|
|
2546
2546
|
* @example
|
|
2547
|
-
* ```
|
|
2548
|
-
* <kendo-toolbar-button kendoEditorAlignCenterButton
|
|
2547
|
+
* ```html
|
|
2548
|
+
* <kendo-toolbar-button kendoEditorAlignCenterButton ></kendo-toolbar-button>
|
|
2549
2549
|
* ```
|
|
2550
2550
|
*/
|
|
2551
2551
|
class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
@@ -2569,15 +2569,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2569
2569
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2570
2570
|
*
|
|
2571
2571
|
* @example
|
|
2572
|
-
* ```
|
|
2572
|
+
* ```html
|
|
2573
2573
|
* <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
|
|
2574
2574
|
* ```
|
|
2575
2575
|
*
|
|
2576
2576
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2577
2577
|
*
|
|
2578
2578
|
* @example
|
|
2579
|
-
* ```
|
|
2580
|
-
* <kendo-toolbar-button kendoEditorAlignRightButton
|
|
2579
|
+
* ```html
|
|
2580
|
+
* <kendo-toolbar-button kendoEditorAlignRightButton ></kendo-toolbar-button>
|
|
2581
2581
|
* ```
|
|
2582
2582
|
*/
|
|
2583
2583
|
class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
@@ -2601,15 +2601,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2601
2601
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2602
2602
|
*
|
|
2603
2603
|
* @example
|
|
2604
|
-
* ```
|
|
2604
|
+
* ```html
|
|
2605
2605
|
* <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
|
|
2606
2606
|
* ```
|
|
2607
2607
|
*
|
|
2608
2608
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2609
2609
|
*
|
|
2610
2610
|
* @example
|
|
2611
|
-
* ```
|
|
2612
|
-
* <kendo-toolbar-button kendoEditorAlignJustifyButton
|
|
2611
|
+
* ```html
|
|
2612
|
+
* <kendo-toolbar-button kendoEditorAlignJustifyButton ></kendo-toolbar-button>
|
|
2613
2613
|
* ```
|
|
2614
2614
|
*/
|
|
2615
2615
|
class EditorAlignJustifyButtonDirective extends EditorCommandButton {
|
|
@@ -2633,15 +2633,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2633
2633
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2634
2634
|
*
|
|
2635
2635
|
* @example
|
|
2636
|
-
* ```
|
|
2636
|
+
* ```html
|
|
2637
2637
|
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
|
|
2638
2638
|
* ```
|
|
2639
2639
|
*
|
|
2640
2640
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2641
2641
|
*
|
|
2642
2642
|
* @example
|
|
2643
|
-
* ```
|
|
2644
|
-
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton
|
|
2643
|
+
* ```html
|
|
2644
|
+
* <kendo-toolbar-button kendoEditorInsertUnorderedListButton ></kendo-toolbar-button>
|
|
2645
2645
|
* ```
|
|
2646
2646
|
*/
|
|
2647
2647
|
class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
|
|
@@ -2665,15 +2665,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2665
2665
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
2666
2666
|
*
|
|
2667
2667
|
* @example
|
|
2668
|
-
* ```
|
|
2668
|
+
* ```html
|
|
2669
2669
|
* <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
|
|
2670
2670
|
* ```
|
|
2671
2671
|
*
|
|
2672
2672
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2673
2673
|
*
|
|
2674
2674
|
* @example
|
|
2675
|
-
* ```
|
|
2676
|
-
* <kendo-toolbar-button kendoEditorInsertOrderedListButton
|
|
2675
|
+
* ```html
|
|
2676
|
+
* <kendo-toolbar-button kendoEditorInsertOrderedListButton ></kendo-toolbar-button>
|
|
2677
2677
|
* ```
|
|
2678
2678
|
*/
|
|
2679
2679
|
class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
|
|
@@ -2697,15 +2697,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2697
2697
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2698
2698
|
*
|
|
2699
2699
|
* @example
|
|
2700
|
-
* ```
|
|
2700
|
+
* ```html
|
|
2701
2701
|
* <kendo-toolbar-button kendoEditorIndentButton></kendo-toolbar-button>
|
|
2702
2702
|
* ```
|
|
2703
2703
|
*
|
|
2704
2704
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2705
2705
|
*
|
|
2706
2706
|
* @example
|
|
2707
|
-
* ```
|
|
2708
|
-
* <kendo-toolbar-button kendoEditorIndentButton
|
|
2707
|
+
* ```html
|
|
2708
|
+
* <kendo-toolbar-button kendoEditorIndentButton ></kendo-toolbar-button>
|
|
2709
2709
|
* ```
|
|
2710
2710
|
*/
|
|
2711
2711
|
class EditorIndentButtonDirective extends EditorCommandButton {
|
|
@@ -2729,15 +2729,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2729
2729
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2730
2730
|
*
|
|
2731
2731
|
* @example
|
|
2732
|
-
* ```
|
|
2732
|
+
* ```html
|
|
2733
2733
|
* <kendo-toolbar-button kendoEditorOutdentButton></kendo-toolbar-button>
|
|
2734
2734
|
* ```
|
|
2735
2735
|
*
|
|
2736
2736
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2737
2737
|
*
|
|
2738
2738
|
* @example
|
|
2739
|
-
* ```
|
|
2740
|
-
* <kendo-toolbar-button kendoEditorOutdentButton
|
|
2739
|
+
* ```html
|
|
2740
|
+
* <kendo-toolbar-button kendoEditorOutdentButton ></kendo-toolbar-button>
|
|
2741
2741
|
* ```
|
|
2742
2742
|
*/
|
|
2743
2743
|
class EditorOutdentButtonDirective extends EditorCommandButton {
|
|
@@ -2784,15 +2784,15 @@ class EditorCommandDialog extends EditorCommandBaseDirective {
|
|
|
2784
2784
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2785
2785
|
*
|
|
2786
2786
|
* @example
|
|
2787
|
-
* ```
|
|
2787
|
+
* ```html
|
|
2788
2788
|
* <kendo-toolbar-button kendoEditorCreateLinkButton></kendo-toolbar-button>
|
|
2789
2789
|
* ```
|
|
2790
2790
|
*
|
|
2791
2791
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2792
2792
|
*
|
|
2793
2793
|
* @example
|
|
2794
|
-
* ```
|
|
2795
|
-
* <kendo-toolbar-button kendoEditorCreateLinkButton
|
|
2794
|
+
* ```html
|
|
2795
|
+
* <kendo-toolbar-button kendoEditorCreateLinkButton ></kendo-toolbar-button>
|
|
2796
2796
|
* ```
|
|
2797
2797
|
*/
|
|
2798
2798
|
class EditorCreateLinkButtonDirective extends EditorCommandDialog {
|
|
@@ -2816,15 +2816,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2816
2816
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
2817
2817
|
*
|
|
2818
2818
|
* @example
|
|
2819
|
-
* ```
|
|
2819
|
+
* ```html
|
|
2820
2820
|
* <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
|
|
2821
2821
|
* ```
|
|
2822
2822
|
*
|
|
2823
2823
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2824
2824
|
*
|
|
2825
2825
|
* @example
|
|
2826
|
-
* ```
|
|
2827
|
-
* <kendo-toolbar-button kendoEditorUnlinkButton
|
|
2826
|
+
* ```html
|
|
2827
|
+
* <kendo-toolbar-button kendoEditorUnlinkButton ></kendo-toolbar-button>
|
|
2828
2828
|
* ```
|
|
2829
2829
|
*/
|
|
2830
2830
|
class EditorUnlinkButtonDirective extends EditorCommandButton {
|
|
@@ -2847,15 +2847,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2847
2847
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
2848
2848
|
*
|
|
2849
2849
|
* @example
|
|
2850
|
-
* ```
|
|
2850
|
+
* ```html
|
|
2851
2851
|
* <kendo-toolbar-button kendoEditorInsertImageButton></kendo-toolbar-button>
|
|
2852
2852
|
* ```
|
|
2853
2853
|
*
|
|
2854
2854
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
2855
2855
|
*
|
|
2856
2856
|
* @example
|
|
2857
|
-
* ```
|
|
2858
|
-
* <kendo-toolbar-button kendoEditorInsertImageButton
|
|
2857
|
+
* ```html
|
|
2858
|
+
* <kendo-toolbar-button kendoEditorInsertImageButton ></kendo-toolbar-button>
|
|
2859
2859
|
* ```
|
|
2860
2860
|
*/
|
|
2861
2861
|
class EditorInsertImageButtonDirective extends EditorCommandDialog {
|
|
@@ -5515,7 +5515,7 @@ const popupWrapperHeight = '164px'; // Set to '192px' when TableWizard button is
|
|
|
5515
5515
|
* A toolbar component which allows the user to create and insert a table in the Editor's content.
|
|
5516
5516
|
*
|
|
5517
5517
|
* @example
|
|
5518
|
-
* ```
|
|
5518
|
+
* ```html
|
|
5519
5519
|
* <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
|
|
5520
5520
|
* ```
|
|
5521
5521
|
*/
|
|
@@ -5747,15 +5747,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5747
5747
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
5748
5748
|
*
|
|
5749
5749
|
* @example
|
|
5750
|
-
* ```
|
|
5750
|
+
* ```html
|
|
5751
5751
|
* <kendo-toolbar-button kendoEditorBlockquoteButton></kendo-toolbar-button>
|
|
5752
5752
|
* ```
|
|
5753
5753
|
*
|
|
5754
5754
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5755
5755
|
*
|
|
5756
5756
|
* @example
|
|
5757
|
-
* ```
|
|
5758
|
-
* <kendo-toolbar-button kendoEditorBlockquoteButton
|
|
5757
|
+
* ```html
|
|
5758
|
+
* <kendo-toolbar-button kendoEditorBlockquoteButton ></kendo-toolbar-button>
|
|
5759
5759
|
* ```
|
|
5760
5760
|
*/
|
|
5761
5761
|
class EditorBlockquoteDirective extends EditorCommandButton {
|
|
@@ -5779,15 +5779,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5779
5779
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
5780
5780
|
*
|
|
5781
5781
|
* @example
|
|
5782
|
-
* ```
|
|
5782
|
+
* ```html
|
|
5783
5783
|
* <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
|
|
5784
5784
|
* ```
|
|
5785
5785
|
*
|
|
5786
5786
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5787
5787
|
*
|
|
5788
5788
|
* @example
|
|
5789
|
-
* ```
|
|
5790
|
-
* <kendo-toolbar-button kendoEditorRedoButton
|
|
5789
|
+
* ```html
|
|
5790
|
+
* <kendo-toolbar-button kendoEditorRedoButton ></kendo-toolbar-button>
|
|
5791
5791
|
* ```
|
|
5792
5792
|
*/
|
|
5793
5793
|
class EditorRedoButtonDirective extends EditorCommandButton {
|
|
@@ -5811,15 +5811,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5811
5811
|
* In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
|
|
5812
5812
|
*
|
|
5813
5813
|
* @example
|
|
5814
|
-
* ```
|
|
5814
|
+
* ```html
|
|
5815
5815
|
* <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
|
|
5816
5816
|
* ```
|
|
5817
5817
|
*
|
|
5818
5818
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5819
5819
|
*
|
|
5820
5820
|
* @example
|
|
5821
|
-
* ```
|
|
5822
|
-
* <kendo-toolbar-button kendoEditorUndoButton
|
|
5821
|
+
* ```html
|
|
5822
|
+
* <kendo-toolbar-button kendoEditorUndoButton ></kendo-toolbar-button>
|
|
5823
5823
|
* ```
|
|
5824
5824
|
*/
|
|
5825
5825
|
class EditorUndoButtonDirective extends EditorCommandButton {
|
|
@@ -5842,15 +5842,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5842
5842
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
5843
5843
|
*
|
|
5844
5844
|
* @example
|
|
5845
|
-
* ```
|
|
5845
|
+
* ```html
|
|
5846
5846
|
* <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>
|
|
5847
5847
|
* ```
|
|
5848
5848
|
*
|
|
5849
5849
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5850
5850
|
*
|
|
5851
5851
|
* @example
|
|
5852
|
-
* ```
|
|
5853
|
-
* <kendo-toolbar-button kendoEditorViewSourceButton
|
|
5852
|
+
* ```html
|
|
5853
|
+
* <kendo-toolbar-button kendoEditorViewSourceButton ></kendo-toolbar-button>
|
|
5854
5854
|
* ```
|
|
5855
5855
|
*/
|
|
5856
5856
|
class EditorViewSourceButtonDirective extends EditorCommandDialog {
|
|
@@ -5874,15 +5874,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5874
5874
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
5875
5875
|
*
|
|
5876
5876
|
* @example
|
|
5877
|
-
* ```
|
|
5877
|
+
* ```html
|
|
5878
5878
|
* <kendo-toolbar-button kendoEditorStrikethroughButton></kendo-toolbar-button>
|
|
5879
5879
|
* ```
|
|
5880
5880
|
*
|
|
5881
5881
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5882
5882
|
*
|
|
5883
5883
|
* @example
|
|
5884
|
-
* ```
|
|
5885
|
-
* <kendo-toolbar-button kendoEditorStrikethroughButton
|
|
5884
|
+
* ```html
|
|
5885
|
+
* <kendo-toolbar-button kendoEditorStrikethroughButton ></kendo-toolbar-button>
|
|
5886
5886
|
* ```
|
|
5887
5887
|
*/
|
|
5888
5888
|
class EditorStrikethroughButtonDirective extends EditorCommandButton {
|
|
@@ -5906,15 +5906,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5906
5906
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
5907
5907
|
*
|
|
5908
5908
|
* @example
|
|
5909
|
-
* ```
|
|
5909
|
+
* ```html
|
|
5910
5910
|
* <kendo-toolbar-button kendoEditorSubscriptButton></kendo-toolbar-button>
|
|
5911
5911
|
* ```
|
|
5912
5912
|
*
|
|
5913
5913
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5914
5914
|
*
|
|
5915
5915
|
* @example
|
|
5916
|
-
* ```
|
|
5917
|
-
* <kendo-toolbar-button kendoEditorSubscriptButton
|
|
5916
|
+
* ```html
|
|
5917
|
+
* <kendo-toolbar-button kendoEditorSubscriptButton ></kendo-toolbar-button>
|
|
5918
5918
|
* ```
|
|
5919
5919
|
*/
|
|
5920
5920
|
class EditorSubscriptButtonDirective extends EditorCommandButton {
|
|
@@ -5938,15 +5938,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5938
5938
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
5939
5939
|
*
|
|
5940
5940
|
* @example
|
|
5941
|
-
* ```
|
|
5941
|
+
* ```html
|
|
5942
5942
|
* <kendo-toolbar-button kendoEditorSuperscriptButton></kendo-toolbar-button>
|
|
5943
5943
|
* ```
|
|
5944
5944
|
*
|
|
5945
5945
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
5946
5946
|
*
|
|
5947
5947
|
* @example
|
|
5948
|
-
* ```
|
|
5949
|
-
* <kendo-toolbar-button kendoEditorSuperscriptButton
|
|
5948
|
+
* ```html
|
|
5949
|
+
* <kendo-toolbar-button kendoEditorSuperscriptButton ></kendo-toolbar-button>
|
|
5950
5950
|
* ```
|
|
5951
5951
|
*/
|
|
5952
5952
|
class EditorSuperscriptButtonDirective extends EditorCommandButton {
|
|
@@ -6037,15 +6037,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6037
6037
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6038
6038
|
*
|
|
6039
6039
|
* @example
|
|
6040
|
-
* ```
|
|
6040
|
+
* ```html
|
|
6041
6041
|
* <kendo-toolbar-button kendoEditorCleanFormattingButton></kendo-toolbar-button>
|
|
6042
6042
|
* ```
|
|
6043
6043
|
*
|
|
6044
6044
|
* The following example demonstrates how to change the default icon applied by the directive.
|
|
6045
6045
|
*
|
|
6046
6046
|
* @example
|
|
6047
|
-
* ```
|
|
6048
|
-
* <kendo-toolbar-button kendoEditorCleanFormattingButton
|
|
6047
|
+
* ```html
|
|
6048
|
+
* <kendo-toolbar-button kendoEditorCleanFormattingButton ></kendo-toolbar-button>
|
|
6049
6049
|
* ```
|
|
6050
6050
|
*/
|
|
6051
6051
|
class EditorCleanFormattingButtonDirective extends EditorCommandButton {
|
|
@@ -6333,15 +6333,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6333
6333
|
* > 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.
|
|
6334
6334
|
*
|
|
6335
6335
|
* @example
|
|
6336
|
-
* ```
|
|
6336
|
+
* ```html
|
|
6337
6337
|
* <kendo-toolbar-button kendoEditorPrintButton></kendo-toolbar-button>
|
|
6338
6338
|
* ```
|
|
6339
6339
|
*
|
|
6340
6340
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
6341
6341
|
*
|
|
6342
6342
|
* @example
|
|
6343
|
-
* ```
|
|
6344
|
-
* <kendo-toolbar-button kendoEditorPrintButton
|
|
6343
|
+
* ```html
|
|
6344
|
+
* <kendo-toolbar-button kendoEditorPrintButton ></kendo-toolbar-button>
|
|
6345
6345
|
* ```
|
|
6346
6346
|
*/
|
|
6347
6347
|
class EditorPrintDirective extends EditorCommandButton {
|
|
@@ -6382,15 +6382,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
6382
6382
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
6383
6383
|
*
|
|
6384
6384
|
* @example
|
|
6385
|
-
* ```
|
|
6385
|
+
* ```html
|
|
6386
6386
|
* <kendo-toolbar-button kendoEditorSelectAllButton></kendo-toolbar-button>
|
|
6387
6387
|
* ```
|
|
6388
6388
|
*
|
|
6389
6389
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
6390
6390
|
*
|
|
6391
6391
|
* @example
|
|
6392
|
-
* ```
|
|
6393
|
-
* <kendo-toolbar-button kendoEditorSelectAllButton
|
|
6392
|
+
* ```html
|
|
6393
|
+
* <kendo-toolbar-button kendoEditorSelectAllButton ></kendo-toolbar-button>
|
|
6394
6394
|
* ```
|
|
6395
6395
|
*/
|
|
6396
6396
|
class EditorSelectAllButtonDirective extends EditorCommandButton {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-editor",
|
|
3
|
-
"version": "13.0.3-develop.
|
|
3
|
+
"version": "13.0.3-develop.3",
|
|
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.0.3-develop.
|
|
26
|
-
"@progress/kendo-angular-common": "13.0.3-develop.
|
|
27
|
-
"@progress/kendo-angular-dialog": "13.0.3-develop.
|
|
28
|
-
"@progress/kendo-angular-dropdowns": "13.0.3-develop.
|
|
29
|
-
"@progress/kendo-angular-inputs": "13.0.3-develop.
|
|
30
|
-
"@progress/kendo-angular-intl": "13.0.3-develop.
|
|
31
|
-
"@progress/kendo-angular-l10n": "13.0.3-develop.
|
|
32
|
-
"@progress/kendo-angular-label": "13.0.3-develop.
|
|
33
|
-
"@progress/kendo-angular-layout": "13.0.3-develop.
|
|
34
|
-
"@progress/kendo-angular-icons": "13.0.3-develop.
|
|
35
|
-
"@progress/kendo-angular-popup": "13.0.3-develop.
|
|
36
|
-
"@progress/kendo-angular-toolbar": "13.0.3-develop.
|
|
25
|
+
"@progress/kendo-angular-buttons": "13.0.3-develop.3",
|
|
26
|
+
"@progress/kendo-angular-common": "13.0.3-develop.3",
|
|
27
|
+
"@progress/kendo-angular-dialog": "13.0.3-develop.3",
|
|
28
|
+
"@progress/kendo-angular-dropdowns": "13.0.3-develop.3",
|
|
29
|
+
"@progress/kendo-angular-inputs": "13.0.3-develop.3",
|
|
30
|
+
"@progress/kendo-angular-intl": "13.0.3-develop.3",
|
|
31
|
+
"@progress/kendo-angular-l10n": "13.0.3-develop.3",
|
|
32
|
+
"@progress/kendo-angular-label": "13.0.3-develop.3",
|
|
33
|
+
"@progress/kendo-angular-layout": "13.0.3-develop.3",
|
|
34
|
+
"@progress/kendo-angular-icons": "13.0.3-develop.3",
|
|
35
|
+
"@progress/kendo-angular-popup": "13.0.3-develop.3",
|
|
36
|
+
"@progress/kendo-angular-toolbar": "13.0.3-develop.3",
|
|
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.0.3-develop.
|
|
41
|
+
"@progress/kendo-angular-schematics": "13.0.3-develop.3",
|
|
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.0.3-develop.
|
|
7
|
+
'@progress/kendo-angular-treeview': '13.0.3-develop.3',
|
|
8
8
|
// peer dependency of kendo-angular-layout
|
|
9
|
-
'@progress/kendo-angular-progressbar': '13.0.3-develop.
|
|
9
|
+
'@progress/kendo-angular-progressbar': '13.0.3-develop.3',
|
|
10
10
|
// peer dependency of kendo-angular-inputs
|
|
11
|
-
'@progress/kendo-angular-dialog': '13.0.3-develop.
|
|
11
|
+
'@progress/kendo-angular-dialog': '13.0.3-develop.3',
|
|
12
12
|
// Peer dependency of icons
|
|
13
13
|
'@progress/kendo-svg-icons': '^1.0.0'
|
|
14
14
|
} });
|
|
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```
|
|
18
|
+
* ```html
|
|
19
19
|
* <kendo-toolbar-button kendoEditorAlignCenterButton></kendo-toolbar-button>
|
|
20
20
|
* ```
|
|
21
21
|
*
|
|
22
22
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
-
* ```
|
|
26
|
-
* <kendo-toolbar-button kendoEditorAlignCenterButton
|
|
25
|
+
* ```html
|
|
26
|
+
* <kendo-toolbar-button kendoEditorAlignCenterButton ></kendo-toolbar-button>
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
29
|
export declare class EditorAlignCenterButtonDirective extends EditorCommandButton {
|
|
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```
|
|
18
|
+
* ```html
|
|
19
19
|
* <kendo-toolbar-button kendoEditorAlignJustifyButton></kendo-toolbar-button>
|
|
20
20
|
* ```
|
|
21
21
|
*
|
|
22
22
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
-
* ```
|
|
26
|
-
* <kendo-toolbar-button kendoEditorAlignJustifyButton
|
|
25
|
+
* ```html
|
|
26
|
+
* <kendo-toolbar-button kendoEditorAlignJustifyButton ></kendo-toolbar-button>
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
29
|
export declare class EditorAlignJustifyButtonDirective extends EditorCommandButton {
|
|
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```
|
|
18
|
+
* ```html
|
|
19
19
|
* <kendo-toolbar-button kendoEditorAlignLeftButton></kendo-toolbar-button>
|
|
20
20
|
* ```
|
|
21
21
|
*
|
|
22
22
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
-
* ```
|
|
26
|
-
* <kendo-toolbar-button kendoEditorAlignLeftButton
|
|
25
|
+
* ```html
|
|
26
|
+
* <kendo-toolbar-button kendoEditorAlignLeftButton ></kendo-toolbar-button>
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
29
|
export declare class EditorAlignLeftButtonDirective extends EditorCommandButton {
|
|
@@ -15,15 +15,15 @@ import * as i0 from "@angular/core";
|
|
|
15
15
|
* In addition, the directive updates the `selected` state of the button according to the cursor position in the editing area.
|
|
16
16
|
*
|
|
17
17
|
* @example
|
|
18
|
-
* ```
|
|
18
|
+
* ```html
|
|
19
19
|
* <kendo-toolbar-button kendoEditorAlignRightButton></kendo-toolbar-button>
|
|
20
20
|
* ```
|
|
21
21
|
*
|
|
22
22
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
|
-
* ```
|
|
26
|
-
* <kendo-toolbar-button kendoEditorAlignRightButton
|
|
25
|
+
* ```html
|
|
26
|
+
* <kendo-toolbar-button kendoEditorAlignRightButton ></kendo-toolbar-button>
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
29
|
export declare class EditorAlignRightButtonDirective extends EditorCommandButton {
|
|
@@ -14,15 +14,15 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
|
-
* ```
|
|
17
|
+
* ```html
|
|
18
18
|
* <kendo-toolbar-button kendoEditorBlockquoteButton></kendo-toolbar-button>
|
|
19
19
|
* ```
|
|
20
20
|
*
|
|
21
21
|
* The following example demonstrates how to change the default icon that is applied by the directive.
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
|
-
* ```
|
|
25
|
-
* <kendo-toolbar-button kendoEditorBlockquoteButton
|
|
24
|
+
* ```html
|
|
25
|
+
* <kendo-toolbar-button kendoEditorBlockquoteButton ></kendo-toolbar-button>
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
28
|
export declare class EditorBlockquoteDirective extends EditorCommandButton {
|
|
@@ -14,15 +14,15 @@ import * as i0 from "@angular/core";
|
|
|
14
14
|
* The directive will predefine the `icon` and `click` event handlers of the button.
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
|
-
* ```
|
|
17
|
+
* ```html
|
|
18
18
|
* <kendo-toolbar-button kendoEditorCleanFormattingButton></kendo-toolbar-button>
|
|
19
19
|
* ```
|
|
20
20
|
*
|
|
21
21
|
* The following example demonstrates how to change the default icon applied by the directive.
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
|
-
* ```
|
|
25
|
-
* <kendo-toolbar-button kendoEditorCleanFormattingButton
|
|
24
|
+
* ```html
|
|
25
|
+
* <kendo-toolbar-button kendoEditorCleanFormattingButton ></kendo-toolbar-button>
|
|
26
26
|
* ```
|
|
27
27
|
*/
|
|
28
28
|
export declare class EditorCleanFormattingButtonDirective extends EditorCommandButton {
|