@progress/kendo-angular-editor 16.5.0 → 16.6.0-develop.2

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 (125) hide show
  1. package/dialogs/colorpicker-dialog.component.d.ts +2 -2
  2. package/dialogs/file-link-dialog.component.d.ts +2 -2
  3. package/dialogs/font-family-dialog.component.d.ts +1 -1
  4. package/dialogs/font-size-dialog.component.d.ts +1 -1
  5. package/dialogs/format-dialog.component.d.ts +1 -1
  6. package/dialogs/image-dialog.component.d.ts +2 -2
  7. package/dialogs/insert-table-dialog.component.d.ts +1 -1
  8. package/dialogs/source-dialog.component.d.ts +1 -1
  9. package/directives.d.ts +51 -0
  10. package/editor.component.d.ts +7 -7
  11. package/editor.module.d.ts +14 -36
  12. package/esm2020/dialogs/colorpicker-dialog.component.mjs +7 -6
  13. package/esm2020/dialogs/file-link-dialog.component.mjs +12 -11
  14. package/esm2020/dialogs/font-family-dialog.component.mjs +7 -6
  15. package/esm2020/dialogs/font-size-dialog.component.mjs +7 -6
  16. package/esm2020/dialogs/format-dialog.component.mjs +7 -6
  17. package/esm2020/dialogs/image-dialog.component.mjs +11 -10
  18. package/esm2020/dialogs/insert-table-dialog.component.mjs +8 -6
  19. package/esm2020/dialogs/source-dialog.component.mjs +7 -6
  20. package/esm2020/directives.mjs +97 -0
  21. package/esm2020/editor.component.mjs +30 -30
  22. package/esm2020/editor.module.mjs +56 -349
  23. package/esm2020/index.mjs +1 -0
  24. package/esm2020/localization/custom-messages.component.mjs +3 -2
  25. package/esm2020/localization/localized-messages.directive.mjs +3 -2
  26. package/esm2020/package-metadata.mjs +2 -2
  27. package/esm2020/tools/alignment/editor-align-center-button.directive.mjs +3 -2
  28. package/esm2020/tools/alignment/editor-align-justify-button.directive.mjs +3 -2
  29. package/esm2020/tools/alignment/editor-align-left-button.directive.mjs +3 -2
  30. package/esm2020/tools/alignment/editor-align-right-button.directive.mjs +3 -2
  31. package/esm2020/tools/blockquote/editor-blockquote-button.directive.mjs +3 -2
  32. package/esm2020/tools/colorpicker/editor-back-color.directive.mjs +3 -2
  33. package/esm2020/tools/colorpicker/editor-colorpicker.component.mjs +9 -8
  34. package/esm2020/tools/colorpicker/editor-fore-color.directive.mjs +3 -2
  35. package/esm2020/tools/editor-clean-formatting-button.directive.mjs +3 -2
  36. package/esm2020/tools/fontfamily/editor-fontfamily-dropdownlist.component.mjs +8 -7
  37. package/esm2020/tools/fontfamily/editor-fontfamily.component.mjs +9 -8
  38. package/esm2020/tools/fontsize/editor-fontsize-dropdownlist.component.mjs +6 -5
  39. package/esm2020/tools/fontsize/editor-fontsize.component.mjs +9 -8
  40. package/esm2020/tools/format/editor-format-dropdownlist.component.mjs +8 -7
  41. package/esm2020/tools/format/editor-format.component.mjs +8 -7
  42. package/esm2020/tools/history/editor-redo-button.directive.mjs +3 -2
  43. package/esm2020/tools/history/editor-undo-button.directive.mjs +3 -2
  44. package/esm2020/tools/image/editor-insert-image-button.directive.mjs +3 -2
  45. package/esm2020/tools/indentation/editor-indent-button.directive.mjs +3 -2
  46. package/esm2020/tools/indentation/editor-outdent-button.directive.mjs +3 -2
  47. package/esm2020/tools/link/editor-create-link-button.directive.mjs +3 -2
  48. package/esm2020/tools/link/editor-insert-file-button.directive.mjs +3 -2
  49. package/esm2020/tools/link/editor-unlink-button.directive.mjs +3 -2
  50. package/esm2020/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -2
  51. package/esm2020/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -2
  52. package/esm2020/tools/print/editor-print-button.directive.mjs +3 -2
  53. package/esm2020/tools/select-all/select-all-button.directive.mjs +3 -2
  54. package/esm2020/tools/shared/dropdown-tool.directive.mjs +5 -2
  55. package/esm2020/tools/source/editor-view-source-button.directive.mjs +3 -2
  56. package/esm2020/tools/tables/editor-add-column-after-button.directive.mjs +3 -2
  57. package/esm2020/tools/tables/editor-add-column-before-button.directive.mjs +3 -2
  58. package/esm2020/tools/tables/editor-add-row-after-button.directive.mjs +3 -2
  59. package/esm2020/tools/tables/editor-add-row-before-button.directive.mjs +3 -2
  60. package/esm2020/tools/tables/editor-delete-column-button.directive.mjs +3 -2
  61. package/esm2020/tools/tables/editor-delete-row-button.directive.mjs +3 -2
  62. package/esm2020/tools/tables/editor-delete-table-button.directive.mjs +3 -2
  63. package/esm2020/tools/tables/editor-insert-table-button.component.mjs +11 -9
  64. package/esm2020/tools/tables/editor-merge-cells-button.directive.mjs +3 -2
  65. package/esm2020/tools/tables/editor-split-cell-button.directive.mjs +3 -2
  66. package/esm2020/tools/tables/popup-table-grid.component.mjs +6 -4
  67. package/esm2020/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -2
  68. package/esm2020/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -2
  69. package/esm2020/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -2
  70. package/esm2020/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -2
  71. package/esm2020/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -2
  72. package/esm2020/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -2
  73. package/fesm2015/progress-kendo-angular-editor.mjs +693 -857
  74. package/fesm2020/progress-kendo-angular-editor.mjs +670 -833
  75. package/index.d.ts +1 -0
  76. package/localization/custom-messages.component.d.ts +1 -1
  77. package/localization/localized-messages.directive.d.ts +1 -1
  78. package/package.json +15 -15
  79. package/schematics/ngAdd/index.js +4 -4
  80. package/tools/alignment/editor-align-center-button.directive.d.ts +1 -1
  81. package/tools/alignment/editor-align-justify-button.directive.d.ts +1 -1
  82. package/tools/alignment/editor-align-left-button.directive.d.ts +1 -1
  83. package/tools/alignment/editor-align-right-button.directive.d.ts +1 -1
  84. package/tools/blockquote/editor-blockquote-button.directive.d.ts +1 -1
  85. package/tools/colorpicker/editor-back-color.directive.d.ts +1 -1
  86. package/tools/colorpicker/editor-colorpicker.component.d.ts +3 -3
  87. package/tools/colorpicker/editor-fore-color.directive.d.ts +1 -1
  88. package/tools/editor-clean-formatting-button.directive.d.ts +1 -1
  89. package/tools/fontfamily/editor-fontfamily-dropdownlist.component.d.ts +1 -1
  90. package/tools/fontfamily/editor-fontfamily.component.d.ts +3 -3
  91. package/tools/fontsize/editor-fontsize-dropdownlist.component.d.ts +1 -1
  92. package/tools/fontsize/editor-fontsize.component.d.ts +3 -3
  93. package/tools/format/editor-format-dropdownlist.component.d.ts +1 -1
  94. package/tools/format/editor-format.component.d.ts +2 -2
  95. package/tools/history/editor-redo-button.directive.d.ts +1 -1
  96. package/tools/history/editor-undo-button.directive.d.ts +1 -1
  97. package/tools/image/editor-insert-image-button.directive.d.ts +1 -1
  98. package/tools/indentation/editor-indent-button.directive.d.ts +1 -1
  99. package/tools/indentation/editor-outdent-button.directive.d.ts +1 -1
  100. package/tools/link/editor-create-link-button.directive.d.ts +1 -1
  101. package/tools/link/editor-insert-file-button.directive.d.ts +1 -1
  102. package/tools/link/editor-unlink-button.directive.d.ts +1 -1
  103. package/tools/list/editor-insert-ordered-list-button.directive.d.ts +1 -1
  104. package/tools/list/editor-insert-unordered-list-button.directive.d.ts +1 -1
  105. package/tools/print/editor-print-button.directive.d.ts +1 -1
  106. package/tools/select-all/select-all-button.directive.d.ts +1 -1
  107. package/tools/shared/dropdown-tool.directive.d.ts +1 -1
  108. package/tools/source/editor-view-source-button.directive.d.ts +1 -1
  109. package/tools/tables/editor-add-column-after-button.directive.d.ts +1 -1
  110. package/tools/tables/editor-add-column-before-button.directive.d.ts +1 -1
  111. package/tools/tables/editor-add-row-after-button.directive.d.ts +1 -1
  112. package/tools/tables/editor-add-row-before-button.directive.d.ts +1 -1
  113. package/tools/tables/editor-delete-column-button.directive.d.ts +1 -1
  114. package/tools/tables/editor-delete-row-button.directive.d.ts +1 -1
  115. package/tools/tables/editor-delete-table-button.directive.d.ts +1 -1
  116. package/tools/tables/editor-insert-table-button.component.d.ts +3 -3
  117. package/tools/tables/editor-merge-cells-button.directive.d.ts +1 -1
  118. package/tools/tables/editor-split-cell-button.directive.d.ts +1 -1
  119. package/tools/tables/popup-table-grid.component.d.ts +1 -1
  120. package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +1 -1
  121. package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +1 -1
  122. package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +1 -1
  123. package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +1 -1
  124. package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +1 -1
  125. package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +1 -1
@@ -3,10 +3,10 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
6
+ import { SVGIcon } from '@progress/kendo-svg-icons';
6
7
  import { EditorLocalizationService } from '../localization/editor-localization.service';
7
8
  import { EditorComponent } from '../editor.component';
8
9
  import { PaletteSettings, ActiveColorClickEvent, ColorPickerComponent, ColorPickerView } from '@progress/kendo-angular-inputs';
9
- import { SVGIcon } from '@progress/kendo-svg-icons';
10
10
  import * as i0 from "@angular/core";
11
11
  /**
12
12
  * @hidden
@@ -32,5 +32,5 @@ export declare class ColorPickerDialogComponent extends DialogContentBase {
32
32
  setData(args: any): void;
33
33
  textFor(key: string): string;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerDialogComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
36
36
  }
@@ -4,10 +4,10 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { FormGroup } from '@angular/forms';
6
6
  import { DialogContentBase, DialogRef } from '@progress/kendo-angular-dialog';
7
+ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
7
8
  import { EditorState } from '@progress/kendo-editor-common';
8
9
  import { DialogCommand } from '../common/commands';
9
10
  import { EditorLocalizationService } from '../localization/editor-localization.service';
10
- import { TextBoxComponent } from '@progress/kendo-angular-inputs';
11
11
  import * as i0 from "@angular/core";
12
12
  /**
13
13
  * @hidden
@@ -29,5 +29,5 @@ export declare class FileLinkDialogComponent extends DialogContentBase {
29
29
  private setLinkText;
30
30
  private getData;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<FileLinkDialogComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<FileLinkDialogComponent, "ng-component", never, { "editor": "editor"; "command": "command"; }, {}, never, never, false, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileLinkDialogComponent, "ng-component", never, { "editor": "editor"; "command": "command"; }, {}, never, never, true, never>;
33
33
  }
@@ -27,5 +27,5 @@ export declare class FontFamilyDialogComponent extends DialogContentBase {
27
27
  setData(args: any): void;
28
28
  textFor(key: string): string;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<FontFamilyDialogComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
31
31
  }
@@ -27,5 +27,5 @@ export declare class FontSizeDialogComponent extends DialogContentBase {
27
27
  setData(args: any): void;
28
28
  textFor(key: string): string;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<FontSizeDialogComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
31
31
  }
@@ -27,5 +27,5 @@ export declare class FormatDialogComponent extends DialogContentBase {
27
27
  setData(args: any): void;
28
28
  textFor(key: string): string;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<FormatDialogComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<FormatDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormatDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
31
31
  }
@@ -5,9 +5,9 @@
5
5
  import { FormControl, FormGroup } from '@angular/forms';
6
6
  import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
7
7
  import { EditorState } from '@progress/kendo-editor-common';
8
+ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
8
9
  import { ImageData } from '../common/image-data.interface';
9
10
  import { EditorLocalizationService } from '../localization/editor-localization.service';
10
- import { TextBoxComponent } from '@progress/kendo-angular-inputs';
11
11
  import * as i0 from "@angular/core";
12
12
  /**
13
13
  * @hidden
@@ -36,5 +36,5 @@ export declare class ImageDialogComponent extends DialogContentBase {
36
36
  private getData;
37
37
  private normalizeDimension;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageDialogComponent, never>;
39
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
40
40
  }
@@ -20,5 +20,5 @@ export declare class InsertTableDialogComponent extends DialogContentBase {
20
20
  setData(args: any): void;
21
21
  textFor(key: string): string;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<InsertTableDialogComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<InsertTableDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<InsertTableDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
24
24
  }
@@ -23,5 +23,5 @@ export declare class SourceDialogComponent extends DialogContentBase {
23
23
  textFor(key: string): string;
24
24
  private indent;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<SourceDialogComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<SourceDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<SourceDialogComponent, "ng-component", never, { "editor": "editor"; }, {}, never, never, true, never>;
27
27
  }
@@ -0,0 +1,51 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { EditorComponent } from './editor.component';
6
+ import { EditorFormatComponent } from './tools/format/editor-format.component';
7
+ import { EditorFontSizeComponent } from './tools/fontsize/editor-fontsize.component';
8
+ import { EditorFontFamilyComponent } from './tools/fontfamily/editor-fontfamily.component';
9
+ import { EditorColorPickerComponent } from './tools/colorpicker/editor-colorpicker.component';
10
+ import { EditorInsertTableButtonComponent } from './tools/tables/editor-insert-table-button.component';
11
+ import { EditorAlignLeftButtonDirective } from './tools/alignment/editor-align-left-button.directive';
12
+ import { EditorAlignCenterButtonDirective } from './tools/alignment/editor-align-center-button.directive';
13
+ import { EditorAlignRightButtonDirective } from './tools/alignment/editor-align-right-button.directive';
14
+ import { EditorAlignJustifyButtonDirective } from './tools/alignment/editor-align-justify-button.directive';
15
+ import { EditorBlockquoteDirective } from './tools/blockquote/editor-blockquote-button.directive';
16
+ import { EditorRedoButtonDirective } from './tools/history/editor-redo-button.directive';
17
+ import { EditorUndoButtonDirective } from './tools/history/editor-undo-button.directive';
18
+ import { EditorInsertImageButtonDirective } from './tools/image/editor-insert-image-button.directive';
19
+ import { EditorIndentButtonDirective } from './tools/indentation/editor-indent-button.directive';
20
+ import { EditorOutdentButtonDirective } from './tools/indentation/editor-outdent-button.directive';
21
+ import { EditorCreateLinkButtonDirective } from './tools/link/editor-create-link-button.directive';
22
+ import { EditorUnlinkButtonDirective } from './tools/link/editor-unlink-button.directive';
23
+ import { EditorInsertOrderedListButtonDirective } from './tools/list/editor-insert-ordered-list-button.directive';
24
+ import { EditorInsertUnorderedListButtonDirective } from './tools/list/editor-insert-unordered-list-button.directive';
25
+ import { EditorViewSourceButtonDirective } from './tools/source/editor-view-source-button.directive';
26
+ import { EditorBoldButtonDirective } from './tools/typographical-emphasis/editor-bold-button.directive';
27
+ import { EditorItalicButtonDirective } from './tools/typographical-emphasis/editor-italic-button.directive';
28
+ import { EditorUnderlineButtonDirective } from './tools/typographical-emphasis/editor-underline-button.directive';
29
+ import { EditorStrikethroughButtonDirective } from './tools/typographical-emphasis/editor-strikethrough-button.directive';
30
+ import { EditorSubscriptButtonDirective } from './tools/typographical-emphasis/editor-subscript-button.directive';
31
+ import { EditorSuperscriptButtonDirective } from './tools/typographical-emphasis/editor-superscript-button.directive';
32
+ import { EditorInsertFileButtonDirective } from './tools/link/editor-insert-file-button.directive';
33
+ import { EditorForeColorDirective } from './tools/colorpicker/editor-fore-color.directive';
34
+ import { EditorBackColorDirective } from './tools/colorpicker/editor-back-color.directive';
35
+ import { EditorCleanFormattingButtonDirective } from './tools/editor-clean-formatting-button.directive';
36
+ import { EditorAddColumnBeforeButtonDirective } from './tools/tables/editor-add-column-before-button.directive';
37
+ import { EditorAddColumnAfterButtonDirective } from './tools/tables/editor-add-column-after-button.directive';
38
+ import { EditorAddRowBeforeButtonDirective } from './tools/tables/editor-add-row-before-button.directive';
39
+ import { EditorAddRowAfterButtonDirective } from './tools/tables/editor-add-row-after-button.directive';
40
+ import { EditorDeleteColumnButtonDirective } from './tools/tables/editor-delete-column-button.directive';
41
+ import { EditorDeleteRowButtonDirective } from './tools/tables/editor-delete-row-button.directive';
42
+ import { EditorDeleteTableButtonDirective } from './tools/tables/editor-delete-table-button.directive';
43
+ import { CustomMessagesComponent } from './localization/custom-messages.component';
44
+ import { EditorPrintDirective } from './tools/print/editor-print-button.directive';
45
+ import { EditorSelectAllButtonDirective } from './tools/select-all/select-all-button.directive';
46
+ import { EditorSplitCellButtonDirective } from './tools/tables/editor-split-cell-button.directive';
47
+ import { EditorMergeCellsButtonDirective } from './tools/tables/editor-merge-cells-button.directive';
48
+ /**
49
+ * Utility array that contains all `Editor` related components and directives
50
+ */
51
+ export declare const KENDO_EDITOR: readonly [typeof EditorComponent, typeof EditorAlignLeftButtonDirective, typeof EditorAlignCenterButtonDirective, typeof EditorAlignRightButtonDirective, typeof EditorAlignJustifyButtonDirective, typeof EditorInsertFileButtonDirective, typeof EditorRedoButtonDirective, typeof EditorUndoButtonDirective, typeof EditorInsertImageButtonDirective, typeof EditorIndentButtonDirective, typeof EditorOutdentButtonDirective, typeof EditorCreateLinkButtonDirective, typeof EditorUnlinkButtonDirective, typeof EditorInsertOrderedListButtonDirective, typeof EditorInsertUnorderedListButtonDirective, typeof EditorViewSourceButtonDirective, typeof EditorBoldButtonDirective, typeof EditorItalicButtonDirective, typeof EditorUnderlineButtonDirective, typeof EditorStrikethroughButtonDirective, typeof EditorSubscriptButtonDirective, typeof EditorSuperscriptButtonDirective, typeof EditorForeColorDirective, typeof EditorBackColorDirective, typeof EditorCleanFormattingButtonDirective, typeof EditorAddColumnBeforeButtonDirective, typeof EditorAddColumnAfterButtonDirective, typeof EditorAddRowBeforeButtonDirective, typeof EditorAddRowAfterButtonDirective, typeof EditorDeleteColumnButtonDirective, typeof EditorDeleteRowButtonDirective, typeof EditorDeleteTableButtonDirective, typeof CustomMessagesComponent, typeof EditorPrintDirective, typeof EditorSelectAllButtonDirective, typeof EditorBlockquoteDirective, typeof EditorFontSizeComponent, typeof EditorFontFamilyComponent, typeof EditorFormatComponent, typeof EditorColorPickerComponent, typeof EditorInsertTableButtonComponent, typeof EditorMergeCellsButtonDirective, typeof EditorSplitCellButtonDirective, typeof import("@progress/kendo-angular-toolbar").ToolBarComponent, typeof import("@progress/kendo-angular-toolbar").ToolbarCustomMessagesComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarButtonComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarButtonGroupComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarDropDownButtonComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarSeparatorComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarSpacerComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarSplitButtonComponent, typeof import("@progress/kendo-angular-toolbar").ToolBarToolComponent];
@@ -8,9 +8,9 @@ import { BehaviorSubject, Subject } from 'rxjs';
8
8
  import { ToolBarComponent } from '@progress/kendo-angular-toolbar';
9
9
  import { DialogService } from '@progress/kendo-angular-dialog';
10
10
  import { EditorView, Schema } from '@progress/kendo-editor-common';
11
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
11
12
  import { Direction } from './common/direction';
12
13
  import { EditorCommand, DialogCommand } from './common/commands';
13
- import { LocalizationService } from '@progress/kendo-angular-l10n';
14
14
  import { PasteCleanupSettings } from './common/paste-cleanup-settings';
15
15
  import { PluginsFn } from './common/plugins-function';
16
16
  import { ApplyToWordOptions } from './common/apply-to-word-options';
@@ -33,7 +33,7 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
33
33
  private toolsService;
34
34
  private renderer;
35
35
  /**
36
- * Sets the value of the Editor ([see example]({% slug overview_editor %}#toc-basic-usage)).
36
+ * Sets the value of the Editor ([see example](slug:overview_editor)).
37
37
  */
38
38
  set value(value: string);
39
39
  get value(): string;
@@ -101,23 +101,23 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
101
101
  resizable: boolean | EditorResizableOptions;
102
102
  /**
103
103
  * Fires each time the value of the Editor is changed upon user interaction&mdash;
104
- * for example, when the value is updated through typing in the content area or using some of the Editor tools ([see example]({% slug overview_editor %}#toc-events)).
104
+ * for example, when the value is updated through typing in the content area or using some of the Editor tools ([see example](slug:events_editor)).
105
105
  * When the value of the Editor is programmatically changed through its API (`ngModel`) or form binding (`formControl`),
106
106
  * the `valueChange` event is not triggered because it might cause a mix-up with the
107
107
  * built-in `valueChange` mechanisms of the `ngModel` or `formControl` bindings.
108
108
  */
109
109
  valueChange: EventEmitter<string>;
110
110
  /**
111
- * Fires when the content area of the Editor is focused ([see example]({% slug overview_editor %}#toc-events)).
111
+ * Fires when the content area of the Editor is focused ([see example](slug:events_editor)).
112
112
  */
113
113
  onFocus: EventEmitter<undefined>;
114
114
  /**
115
- * Fires when the user performs paste in the content area of the Editor ([see example]({% slug overview_editor %}#toc-events)).
115
+ * Fires when the user performs paste in the content area of the Editor ([see example](slug:events_editor)).
116
116
  * The event is preventable. If you cancel it, the Editor content will not change.
117
117
  */
118
118
  paste: EventEmitter<EditorPasteEvent>;
119
119
  /**
120
- * Fires when the content area of the Editor is blurred ([see example]({% slug overview_editor %}#toc-events)).
120
+ * Fires when the content area of the Editor is blurred ([see example](slug:events_editor)).
121
121
  */
122
122
  onBlur: EventEmitter<undefined>;
123
123
  hostClass: boolean;
@@ -258,5 +258,5 @@ export declare class EditorComponent implements AfterViewInit, ControlValueAcces
258
258
  private onPaste;
259
259
  private dispatchPasteEvent;
260
260
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, never>;
261
- static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "kendo-editor", never, { "value": "value"; "disabled": "disabled"; "readonly": "readonly"; "iframe": "iframe"; "iframeCss": "iframeCss"; "applyToWord": "applyToWord"; "schema": "schema"; "plugins": "plugins"; "placeholder": "placeholder"; "preserveWhitespace": "preserveWhitespace"; "pasteCleanupSettings": "pasteCleanupSettings"; "resizable": "resizable"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "paste": "paste"; "onBlur": "blur"; }, ["userToolBarComponent", "userToolBarElement"], ["kendo-toolbar"], false, never>;
261
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "kendo-editor", never, { "value": "value"; "disabled": "disabled"; "readonly": "readonly"; "iframe": "iframe"; "iframeCss": "iframeCss"; "applyToWord": "applyToWord"; "schema": "schema"; "plugins": "plugins"; "placeholder": "placeholder"; "preserveWhitespace": "preserveWhitespace"; "pasteCleanupSettings": "pasteCleanupSettings"; "resizable": "resizable"; }, { "valueChange": "valueChange"; "onFocus": "focus"; "paste": "paste"; "onBlur": "blur"; }, ["userToolBarComponent", "userToolBarElement"], ["kendo-toolbar"], true, never>;
262
262
  }
@@ -35,41 +35,19 @@ import * as i29 from "./tools/tables/editor-add-row-after-button.directive";
35
35
  import * as i30 from "./tools/tables/editor-delete-column-button.directive";
36
36
  import * as i31 from "./tools/tables/editor-delete-row-button.directive";
37
37
  import * as i32 from "./tools/tables/editor-delete-table-button.directive";
38
- import * as i33 from "./tools/tables/editor-merge-cells-button.directive";
39
- import * as i34 from "./tools/tables/editor-split-cell-button.directive";
40
- import * as i35 from "./localization/custom-messages.component";
41
- import * as i36 from "./localization/localized-messages.directive";
42
- import * as i37 from "./tools/shared/dropdown-tool.directive";
43
- import * as i38 from "./tools/print/editor-print-button.directive";
44
- import * as i39 from "./tools/select-all/select-all-button.directive";
45
- import * as i40 from "./tools/blockquote/editor-blockquote-button.directive";
46
- import * as i41 from "./tools/fontsize/editor-fontsize.component";
47
- import * as i42 from "./tools/fontfamily/editor-fontfamily.component";
48
- import * as i43 from "./tools/format/editor-format.component";
49
- import * as i44 from "./tools/colorpicker/editor-colorpicker.component";
50
- import * as i45 from "./tools/tables/editor-insert-table-button.component";
51
- import * as i46 from "./dialogs/file-link-dialog.component";
52
- import * as i47 from "./dialogs/image-dialog.component";
53
- import * as i48 from "./dialogs/source-dialog.component";
54
- import * as i49 from "./dialogs/format-dialog.component";
55
- import * as i50 from "./dialogs/colorpicker-dialog.component";
56
- import * as i51 from "./dialogs/font-family-dialog.component";
57
- import * as i52 from "./dialogs/font-size-dialog.component";
58
- import * as i53 from "./dialogs/insert-table-dialog.component";
59
- import * as i54 from "./tools/tables/popup-table-grid.component";
60
- import * as i55 from "./tools/format/editor-format-dropdownlist.component";
61
- import * as i56 from "./tools/fontfamily/editor-fontfamily-dropdownlist.component";
62
- import * as i57 from "./tools/fontsize/editor-fontsize-dropdownlist.component";
63
- import * as i58 from "@angular/common";
64
- import * as i59 from "@angular/forms";
65
- import * as i60 from "@progress/kendo-angular-buttons";
66
- import * as i61 from "@progress/kendo-angular-inputs";
67
- import * as i62 from "@progress/kendo-angular-dialog";
68
- import * as i63 from "@progress/kendo-angular-dropdowns";
69
- import * as i64 from "@progress/kendo-angular-icons";
70
- import * as i65 from "@progress/kendo-angular-toolbar";
71
- import * as i66 from "@progress/kendo-angular-label";
72
- import * as i67 from "@progress/kendo-angular-common";
38
+ import * as i33 from "./localization/custom-messages.component";
39
+ import * as i34 from "./tools/print/editor-print-button.directive";
40
+ import * as i35 from "./tools/select-all/select-all-button.directive";
41
+ import * as i36 from "./tools/blockquote/editor-blockquote-button.directive";
42
+ import * as i37 from "./tools/fontsize/editor-fontsize.component";
43
+ import * as i38 from "./tools/fontfamily/editor-fontfamily.component";
44
+ import * as i39 from "./tools/format/editor-format.component";
45
+ import * as i40 from "./tools/colorpicker/editor-colorpicker.component";
46
+ import * as i41 from "./tools/tables/editor-insert-table-button.component";
47
+ import * as i42 from "./tools/tables/editor-merge-cells-button.directive";
48
+ import * as i43 from "./tools/tables/editor-split-cell-button.directive";
49
+ import * as i44 from "@progress/kendo-angular-toolbar";
50
+ import * as i45 from "@angular/forms";
73
51
  /**
74
52
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi']) definition for the Editor component.
75
53
  *
@@ -90,6 +68,6 @@ import * as i67 from "@progress/kendo-angular-common";
90
68
  */
91
69
  export declare class EditorModule {
92
70
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorModule, never>;
93
- static ɵmod: i0.ɵɵNgModuleDeclaration<EditorModule, [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.EditorMergeCellsButtonDirective, typeof i34.EditorSplitCellButtonDirective, typeof i35.CustomMessagesComponent, typeof i36.LocalizedMessagesDirective, typeof i37.DropDownToolDirective, typeof i38.EditorPrintDirective, typeof i39.EditorSelectAllButtonDirective, typeof i40.EditorBlockquoteDirective, typeof i41.EditorFontSizeComponent, typeof i42.EditorFontFamilyComponent, typeof i43.EditorFormatComponent, typeof i44.EditorColorPickerComponent, typeof i45.EditorInsertTableButtonComponent, typeof i46.FileLinkDialogComponent, typeof i47.ImageDialogComponent, typeof i48.SourceDialogComponent, typeof i49.FormatDialogComponent, typeof i50.ColorPickerDialogComponent, typeof i51.FontFamilyDialogComponent, typeof i52.FontSizeDialogComponent, typeof i53.InsertTableDialogComponent, typeof i54.PopupTableGridComponent, typeof i55.FormatDropDownListComponent, typeof i56.FontFamilyDropDownListComponent, typeof i57.FontSizeDropDownListComponent], [typeof i58.CommonModule, typeof i59.FormsModule, typeof i59.ReactiveFormsModule, typeof i60.ButtonModule, typeof i61.ColorPickerModule, typeof i62.DialogModule, typeof i63.DropDownsModule, typeof i61.NumericTextBoxModule, typeof i61.CheckBoxModule, typeof i64.IconsModule, typeof i65.ToolBarModule, typeof i61.TextBoxModule, typeof i61.TextAreaModule, typeof i61.FormFieldModule, typeof i66.LabelModule, typeof i67.WatermarkModule], [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.EditorMergeCellsButtonDirective, typeof i34.EditorSplitCellButtonDirective, typeof i35.CustomMessagesComponent, typeof i36.LocalizedMessagesDirective, typeof i37.DropDownToolDirective, typeof i38.EditorPrintDirective, typeof i39.EditorSelectAllButtonDirective, typeof i40.EditorBlockquoteDirective, typeof i41.EditorFontSizeComponent, typeof i42.EditorFontFamilyComponent, typeof i43.EditorFormatComponent, typeof i44.EditorColorPickerComponent, typeof i45.EditorInsertTableButtonComponent, typeof i65.ToolBarModule, typeof i60.ButtonModule, typeof i59.FormsModule, typeof i59.ReactiveFormsModule, typeof i54.PopupTableGridComponent, typeof i55.FormatDropDownListComponent, typeof i56.FontFamilyDropDownListComponent, typeof i57.FontSizeDropDownListComponent]>;
71
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EditorModule, never, [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.CustomMessagesComponent, typeof i34.EditorPrintDirective, typeof i35.EditorSelectAllButtonDirective, typeof i36.EditorBlockquoteDirective, typeof i37.EditorFontSizeComponent, typeof i38.EditorFontFamilyComponent, typeof i39.EditorFormatComponent, typeof i40.EditorColorPickerComponent, typeof i41.EditorInsertTableButtonComponent, typeof i42.EditorMergeCellsButtonDirective, typeof i43.EditorSplitCellButtonDirective, typeof i44.ToolBarComponent, typeof i44.ToolbarCustomMessagesComponent, typeof i44.ToolBarButtonComponent, typeof i44.ToolBarButtonGroupComponent, typeof i44.ToolBarDropDownButtonComponent, typeof i44.ToolBarSeparatorComponent, typeof i44.ToolBarSpacerComponent, typeof i44.ToolBarSplitButtonComponent, typeof i44.ToolBarToolComponent], [typeof i1.EditorComponent, typeof i2.EditorAlignLeftButtonDirective, typeof i3.EditorAlignCenterButtonDirective, typeof i4.EditorAlignRightButtonDirective, typeof i5.EditorAlignJustifyButtonDirective, typeof i6.EditorInsertFileButtonDirective, typeof i7.EditorRedoButtonDirective, typeof i8.EditorUndoButtonDirective, typeof i9.EditorInsertImageButtonDirective, typeof i10.EditorIndentButtonDirective, typeof i11.EditorOutdentButtonDirective, typeof i12.EditorCreateLinkButtonDirective, typeof i13.EditorUnlinkButtonDirective, typeof i14.EditorInsertOrderedListButtonDirective, typeof i15.EditorInsertUnorderedListButtonDirective, typeof i16.EditorViewSourceButtonDirective, typeof i17.EditorBoldButtonDirective, typeof i18.EditorItalicButtonDirective, typeof i19.EditorUnderlineButtonDirective, typeof i20.EditorStrikethroughButtonDirective, typeof i21.EditorSubscriptButtonDirective, typeof i22.EditorSuperscriptButtonDirective, typeof i23.EditorForeColorDirective, typeof i24.EditorBackColorDirective, typeof i25.EditorCleanFormattingButtonDirective, typeof i26.EditorAddColumnBeforeButtonDirective, typeof i27.EditorAddColumnAfterButtonDirective, typeof i28.EditorAddRowBeforeButtonDirective, typeof i29.EditorAddRowAfterButtonDirective, typeof i30.EditorDeleteColumnButtonDirective, typeof i31.EditorDeleteRowButtonDirective, typeof i32.EditorDeleteTableButtonDirective, typeof i33.CustomMessagesComponent, typeof i34.EditorPrintDirective, typeof i35.EditorSelectAllButtonDirective, typeof i36.EditorBlockquoteDirective, typeof i37.EditorFontSizeComponent, typeof i38.EditorFontFamilyComponent, typeof i39.EditorFormatComponent, typeof i40.EditorColorPickerComponent, typeof i41.EditorInsertTableButtonComponent, typeof i42.EditorMergeCellsButtonDirective, typeof i43.EditorSplitCellButtonDirective, typeof i44.ToolBarComponent, typeof i44.ToolbarCustomMessagesComponent, typeof i44.ToolBarButtonComponent, typeof i44.ToolBarButtonGroupComponent, typeof i44.ToolBarDropDownButtonComponent, typeof i44.ToolBarSeparatorComponent, typeof i44.ToolBarSpacerComponent, typeof i44.ToolBarSplitButtonComponent, typeof i44.ToolBarToolComponent, typeof i45.FormsModule, typeof i45.ReactiveFormsModule]>;
94
72
  static ɵinj: i0.ɵɵInjectorDeclaration<EditorModule>;
95
73
  }
@@ -4,15 +4,14 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  /* eslint-disable @typescript-eslint/no-explicit-any */
6
6
  import { Component, Input, ViewChild } from '@angular/core';
7
- import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
7
+ import { DialogRef, DialogContentBase, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
8
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
8
9
  import { EditorLocalizationService } from '../localization/editor-localization.service';
9
10
  import { EditorComponent } from '../editor.component';
10
11
  import { ColorPickerComponent } from '@progress/kendo-angular-inputs';
11
12
  import * as i0 from "@angular/core";
12
13
  import * as i1 from "@progress/kendo-angular-dialog";
13
14
  import * as i2 from "../localization/editor-localization.service";
14
- import * as i3 from "@progress/kendo-angular-buttons";
15
- import * as i4 from "@progress/kendo-angular-inputs";
16
15
  /**
17
16
  * @hidden
18
17
  */
@@ -53,7 +52,7 @@ export class ColorPickerDialogComponent extends DialogContentBase {
53
52
  }
54
53
  }
55
54
  ColorPickerDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColorPickerDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
56
- ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColorPickerDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
55
+ ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: ColorPickerDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "colorPicker", first: true, predicate: ["colorpicker"], descendants: true, read: ColorPickerComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
57
56
  <kendo-dialog-titlebar (close)="onCancelAction()">
58
57
  {{ textFor(editorCommand) }}
59
58
  </kendo-dialog-titlebar>
@@ -83,7 +82,7 @@ ColorPickerDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0
83
82
  (click)="onCancelAction()"
84
83
  >{{ textFor('dialogCancel') }}</button>
85
84
  </kendo-dialog-actions>
86
- `, isInline: true, dependencies: [{ kind: "component", type: i3.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i4.ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { kind: "component", type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }] });
85
+ `, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: ["views", "view", "activeView", "readonly", "disabled", "format", "value", "popupSettings", "paletteSettings", "gradientSettings", "icon", "iconClass", "svgIcon", "clearButton", "tabindex", "preview", "actionsLayout", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur", "cancel", "activeColorClick", "clearButtonClick", "activeViewChange"], exportAs: ["kendoColorPicker"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
87
86
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ColorPickerDialogComponent, decorators: [{
88
87
  type: Component,
89
88
  args: [{
@@ -117,7 +116,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
117
116
  (click)="onCancelAction()"
118
117
  >{{ textFor('dialogCancel') }}</button>
119
118
  </kendo-dialog-actions>
120
- `
119
+ `,
120
+ standalone: true,
121
+ imports: [DialogTitleBarComponent, ColorPickerComponent, DialogActionsComponent, ButtonComponent]
121
122
  }]
122
123
  }], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
123
124
  type: Input
@@ -3,20 +3,19 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, ViewChild } from '@angular/core';
6
- import { FormGroup, FormControl, Validators } from '@angular/forms';
7
- import { DialogContentBase, DialogRef } from '@progress/kendo-angular-dialog';
6
+ import { NgIf } from '@angular/common';
7
+ import { FormGroup, FormControl, Validators, ReactiveFormsModule } from '@angular/forms';
8
+ import { DialogContentBase, DialogRef, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
9
+ import { TextBoxComponent, CheckBoxDirective, FormFieldComponent } from '@progress/kendo-angular-inputs';
10
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
11
+ import { LabelDirective, LabelComponent } from '@progress/kendo-angular-label';
8
12
  import { getMark, getSelectionText, expandSelection } from '@progress/kendo-editor-common';
9
13
  import { isPresent } from '../util';
10
14
  import { EditorLocalizationService } from '../localization/editor-localization.service';
11
- import { TextBoxComponent } from '@progress/kendo-angular-inputs';
12
15
  import * as i0 from "@angular/core";
13
16
  import * as i1 from "@progress/kendo-angular-dialog";
14
17
  import * as i2 from "../localization/editor-localization.service";
15
- import * as i3 from "@angular/common";
16
- import * as i4 from "@angular/forms";
17
- import * as i5 from "@progress/kendo-angular-buttons";
18
- import * as i6 from "@progress/kendo-angular-inputs";
19
- import * as i7 from "@progress/kendo-angular-label";
18
+ import * as i3 from "@angular/forms";
20
19
  /**
21
20
  * @hidden
22
21
  */
@@ -101,7 +100,7 @@ export class FileLinkDialogComponent extends DialogContentBase {
101
100
  }
102
101
  }
103
102
  FileLinkDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FileLinkDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
104
- FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FileLinkDialogComponent, selector: "ng-component", inputs: { editor: "editor", command: "command" }, viewQueries: [{ propertyName: "hrefInput", first: true, predicate: ["hrefInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
103
+ FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FileLinkDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor", command: "command" }, viewQueries: [{ propertyName: "hrefInput", first: true, predicate: ["hrefInput"], descendants: true }], usesInheritance: true, ngImport: i0, template: `
105
104
  <kendo-dialog-titlebar (close)="onCancelAction()">
106
105
  {{ titleText }}
107
106
  </kendo-dialog-titlebar>
@@ -167,7 +166,7 @@ FileLinkDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
167
166
  (click)="onCancelAction()"
168
167
  >{{ textFor('dialogCancel') }}</button>
169
168
  </kendo-dialog-actions>
170
- `, isInline: true, dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i4.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i5.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "directive", type: i6.CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { kind: "component", type: i6.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "component", type: i6.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "directive", type: i7.LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { kind: "component", type: i7.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }] });
169
+ `, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { kind: "component", type: LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional", "labelCssStyle", "labelCssClass"], exportAs: ["kendoLabel"] }, { kind: "component", type: TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength", "inputAttributes"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: CheckBoxDirective, selector: "input[kendoCheckBox]", inputs: ["size", "rounded"] }, { kind: "directive", type: LabelDirective, selector: "label[for]", inputs: ["for", "labelClass"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
171
170
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FileLinkDialogComponent, decorators: [{
172
171
  type: Component,
173
172
  args: [{
@@ -237,7 +236,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
237
236
  (click)="onCancelAction()"
238
237
  >{{ textFor('dialogCancel') }}</button>
239
238
  </kendo-dialog-actions>
240
- `
239
+ `,
240
+ standalone: true,
241
+ imports: [DialogTitleBarComponent, ReactiveFormsModule, FormFieldComponent, LabelComponent, TextBoxComponent, NgIf, CheckBoxDirective, LabelDirective, DialogActionsComponent, ButtonComponent]
241
242
  }]
242
243
  }], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
243
244
  type: Input
@@ -3,15 +3,14 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, ViewChild } from '@angular/core';
6
- import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
6
+ import { DialogRef, DialogContentBase, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
7
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
7
8
  import { EditorLocalizationService } from '../localization/editor-localization.service';
8
9
  import { EditorComponent } from '../editor.component';
9
10
  import { FontFamilyDropDownListComponent } from '../tools/fontfamily/editor-fontfamily-dropdownlist.component';
10
11
  import * as i0 from "@angular/core";
11
12
  import * as i1 from "@progress/kendo-angular-dialog";
12
13
  import * as i2 from "../localization/editor-localization.service";
13
- import * as i3 from "@progress/kendo-angular-buttons";
14
- import * as i4 from "../tools/fontfamily/editor-fontfamily-dropdownlist.component";
15
14
  /**
16
15
  * @hidden
17
16
  */
@@ -43,7 +42,7 @@ export class FontFamilyDialogComponent extends DialogContentBase {
43
42
  }
44
43
  }
45
44
  FontFamilyDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontFamilyDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
46
- FontFamilyDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontFamilyDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontFamilyDropDownList", first: true, predicate: ["fontFamilyDropDownList"], descendants: true, read: FontFamilyDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
45
+ FontFamilyDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontFamilyDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontFamilyDropDownList", first: true, predicate: ["fontFamilyDropDownList"], descendants: true, read: FontFamilyDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
47
46
  <kendo-dialog-titlebar (close)="onCancelAction()">
48
47
  {{ textFor('fontFamily') }}
49
48
  </kendo-dialog-titlebar>
@@ -68,7 +67,7 @@ FontFamilyDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.
68
67
  (click)="onCancelAction()"
69
68
  >{{ textFor('dialogCancel') }}</button>
70
69
  </kendo-dialog-actions>
71
- `, isInline: true, dependencies: [{ kind: "component", type: i3.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: i4.FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }] });
70
+ `, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FontFamilyDropDownListComponent, selector: "kendo-editor-fontfamily-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
72
71
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontFamilyDialogComponent, decorators: [{
73
72
  type: Component,
74
73
  args: [{
@@ -97,7 +96,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
97
96
  (click)="onCancelAction()"
98
97
  >{{ textFor('dialogCancel') }}</button>
99
98
  </kendo-dialog-actions>
100
- `
99
+ `,
100
+ standalone: true,
101
+ imports: [DialogTitleBarComponent, FontFamilyDropDownListComponent, DialogActionsComponent, ButtonComponent]
101
102
  }]
102
103
  }], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
103
104
  type: Input
@@ -3,15 +3,14 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, ViewChild } from '@angular/core';
6
- import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
6
+ import { DialogRef, DialogContentBase, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
7
7
  import { EditorLocalizationService } from '../localization/editor-localization.service';
8
8
  import { EditorComponent } from '../editor.component';
9
9
  import { FontSizeDropDownListComponent } from '../tools/fontsize/editor-fontsize-dropdownlist.component';
10
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
10
11
  import * as i0 from "@angular/core";
11
12
  import * as i1 from "@progress/kendo-angular-dialog";
12
13
  import * as i2 from "../localization/editor-localization.service";
13
- import * as i3 from "@progress/kendo-angular-buttons";
14
- import * as i4 from "../tools/fontsize/editor-fontsize-dropdownlist.component";
15
14
  /**
16
15
  * @hidden
17
16
  */
@@ -43,7 +42,7 @@ export class FontSizeDialogComponent extends DialogContentBase {
43
42
  }
44
43
  }
45
44
  FontSizeDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontSizeDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
46
- FontSizeDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontSizeDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontSizeDropDownList", first: true, predicate: ["fontSizeDropDownList"], descendants: true, read: FontSizeDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
45
+ FontSizeDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FontSizeDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "fontSizeDropDownList", first: true, predicate: ["fontSizeDropDownList"], descendants: true, read: FontSizeDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
47
46
  <kendo-dialog-titlebar (close)="onCancelAction()">
48
47
  {{ textFor('fontSize') }}
49
48
  </kendo-dialog-titlebar>
@@ -68,7 +67,7 @@ FontSizeDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0"
68
67
  (click)="onCancelAction()"
69
68
  >{{ textFor('dialogCancel') }}</button>
70
69
  </kendo-dialog-actions>
71
- `, isInline: true, dependencies: [{ kind: "component", type: i3.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: i4.FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }] });
70
+ `, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FontSizeDropDownListComponent, selector: "kendo-editor-fontsize-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
72
71
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FontSizeDialogComponent, decorators: [{
73
72
  type: Component,
74
73
  args: [{
@@ -97,7 +96,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
97
96
  (click)="onCancelAction()"
98
97
  >{{ textFor('dialogCancel') }}</button>
99
98
  </kendo-dialog-actions>
100
- `
99
+ `,
100
+ standalone: true,
101
+ imports: [DialogTitleBarComponent, FontSizeDropDownListComponent, DialogActionsComponent, ButtonComponent]
101
102
  }]
102
103
  }], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
103
104
  type: Input
@@ -3,14 +3,13 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, ViewChild } from '@angular/core';
6
- import { DialogRef, DialogContentBase } from '@progress/kendo-angular-dialog';
6
+ import { DialogRef, DialogContentBase, DialogActionsComponent, DialogTitleBarComponent } from '@progress/kendo-angular-dialog';
7
+ import { ButtonComponent } from '@progress/kendo-angular-buttons';
7
8
  import { EditorLocalizationService } from '../localization/editor-localization.service';
8
9
  import { FormatDropDownListComponent } from '../tools/format/editor-format-dropdownlist.component';
9
10
  import * as i0 from "@angular/core";
10
11
  import * as i1 from "@progress/kendo-angular-dialog";
11
12
  import * as i2 from "../localization/editor-localization.service";
12
- import * as i3 from "@progress/kendo-angular-buttons";
13
- import * as i4 from "../tools/format/editor-format-dropdownlist.component";
14
13
  /**
15
14
  * @hidden
16
15
  */
@@ -42,7 +41,7 @@ export class FormatDialogComponent extends DialogContentBase {
42
41
  }
43
42
  }
44
43
  FormatDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormatDialogComponent, deps: [{ token: i1.DialogRef }, { token: i2.EditorLocalizationService }], target: i0.ɵɵFactoryTarget.Component });
45
- FormatDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FormatDialogComponent, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "formatDropDownList", first: true, predicate: ["formatDropDownList"], descendants: true, read: FormatDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
44
+ FormatDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FormatDialogComponent, isStandalone: true, selector: "ng-component", inputs: { editor: "editor" }, viewQueries: [{ propertyName: "formatDropDownList", first: true, predicate: ["formatDropDownList"], descendants: true, read: FormatDropDownListComponent, static: true }], usesInheritance: true, ngImport: i0, template: `
46
45
  <kendo-dialog-titlebar (close)="onCancelAction()">
47
46
  {{ textFor('format') }}
48
47
  </kendo-dialog-titlebar>
@@ -67,7 +66,7 @@ FormatDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0",
67
66
  (click)="onCancelAction()"
68
67
  >{{ textFor('dialogCancel') }}</button>
69
68
  </kendo-dialog-actions>
70
- `, isInline: true, dependencies: [{ kind: "component", type: i3.ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { kind: "component", type: i1.DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: i1.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: i4.FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }] });
69
+ `, isInline: true, dependencies: [{ kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "component", type: FormatDropDownListComponent, selector: "kendo-editor-format-dropdownlist", inputs: ["data", "value", "defaultItem", "itemDisabled", "title", "disabled", "tabindex"], outputs: ["valueChange"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
71
70
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FormatDialogComponent, decorators: [{
72
71
  type: Component,
73
72
  args: [{
@@ -96,7 +95,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
96
95
  (click)="onCancelAction()"
97
96
  >{{ textFor('dialogCancel') }}</button>
98
97
  </kendo-dialog-actions>
99
- `
98
+ `,
99
+ standalone: true,
100
+ imports: [DialogTitleBarComponent, FormatDropDownListComponent, DialogActionsComponent, ButtonComponent]
100
101
  }]
101
102
  }], ctorParameters: function () { return [{ type: i1.DialogRef }, { type: i2.EditorLocalizationService }]; }, propDecorators: { editor: [{
102
103
  type: Input