@progress/kendo-angular-editor 19.1.2-develop.4 → 19.1.2-develop.5

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 (87) hide show
  1. package/editor.component.d.ts +2 -0
  2. package/esm2022/editor.component.mjs +2 -0
  3. package/esm2022/package-metadata.mjs +2 -2
  4. package/esm2022/tools/alignment/editor-align-center-button.directive.mjs +2 -0
  5. package/esm2022/tools/alignment/editor-align-justify-button.directive.mjs +2 -0
  6. package/esm2022/tools/alignment/editor-align-left-button.directive.mjs +2 -0
  7. package/esm2022/tools/alignment/editor-align-right-button.directive.mjs +2 -0
  8. package/esm2022/tools/blockquote/editor-blockquote-button.directive.mjs +2 -0
  9. package/esm2022/tools/colorpicker/editor-back-color.directive.mjs +7 -1
  10. package/esm2022/tools/colorpicker/editor-fore-color.directive.mjs +2 -0
  11. package/esm2022/tools/editor-clean-formatting-button.directive.mjs +2 -0
  12. package/esm2022/tools/fontfamily/editor-fontfamily.component.mjs +5 -1
  13. package/esm2022/tools/fontsize/editor-fontsize.component.mjs +5 -1
  14. package/esm2022/tools/format/editor-format.component.mjs +5 -1
  15. package/esm2022/tools/history/editor-redo-button.directive.mjs +2 -0
  16. package/esm2022/tools/history/editor-undo-button.directive.mjs +2 -0
  17. package/esm2022/tools/image/editor-insert-image-button.directive.mjs +2 -0
  18. package/esm2022/tools/indentation/editor-indent-button.directive.mjs +2 -0
  19. package/esm2022/tools/indentation/editor-outdent-button.directive.mjs +2 -0
  20. package/esm2022/tools/link/editor-create-link-button.directive.mjs +2 -0
  21. package/esm2022/tools/link/editor-insert-file-button.directive.mjs +2 -0
  22. package/esm2022/tools/link/editor-unlink-button.directive.mjs +2 -0
  23. package/esm2022/tools/list/editor-insert-ordered-list-button.directive.mjs +2 -0
  24. package/esm2022/tools/list/editor-insert-unordered-list-button.directive.mjs +2 -0
  25. package/esm2022/tools/print/editor-print-button.directive.mjs +2 -0
  26. package/esm2022/tools/select-all/select-all-button.directive.mjs +2 -0
  27. package/esm2022/tools/source/editor-view-source-button.directive.mjs +2 -0
  28. package/esm2022/tools/tables/editor-add-column-after-button.directive.mjs +2 -0
  29. package/esm2022/tools/tables/editor-add-column-before-button.directive.mjs +2 -0
  30. package/esm2022/tools/tables/editor-add-row-after-button.directive.mjs +2 -0
  31. package/esm2022/tools/tables/editor-add-row-before-button.directive.mjs +2 -0
  32. package/esm2022/tools/tables/editor-delete-column-button.directive.mjs +2 -0
  33. package/esm2022/tools/tables/editor-delete-row-button.directive.mjs +2 -0
  34. package/esm2022/tools/tables/editor-delete-table-button.directive.mjs +2 -0
  35. package/esm2022/tools/tables/editor-insert-table-button.component.mjs +5 -1
  36. package/esm2022/tools/tables/editor-merge-cells-button.directive.mjs +2 -0
  37. package/esm2022/tools/tables/editor-split-cell-button.directive.mjs +2 -0
  38. package/esm2022/tools/typographical-emphasis/editor-bold-button.directive.mjs +2 -0
  39. package/esm2022/tools/typographical-emphasis/editor-italic-button.directive.mjs +2 -0
  40. package/esm2022/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +2 -0
  41. package/esm2022/tools/typographical-emphasis/editor-subscript-button.directive.mjs +2 -0
  42. package/esm2022/tools/typographical-emphasis/editor-superscript-button.directive.mjs +2 -0
  43. package/esm2022/tools/typographical-emphasis/editor-underline-button.directive.mjs +2 -0
  44. package/esm2022/util.mjs +1 -1
  45. package/fesm2022/progress-kendo-angular-editor.mjs +102 -8
  46. package/package.json +15 -15
  47. package/schematics/ngAdd/index.js +4 -4
  48. package/tools/alignment/editor-align-center-button.directive.d.ts +2 -0
  49. package/tools/alignment/editor-align-justify-button.directive.d.ts +2 -0
  50. package/tools/alignment/editor-align-left-button.directive.d.ts +2 -0
  51. package/tools/alignment/editor-align-right-button.directive.d.ts +2 -0
  52. package/tools/blockquote/editor-blockquote-button.directive.d.ts +2 -0
  53. package/tools/colorpicker/editor-back-color.directive.d.ts +7 -1
  54. package/tools/colorpicker/editor-fore-color.directive.d.ts +2 -0
  55. package/tools/editor-clean-formatting-button.directive.d.ts +2 -0
  56. package/tools/fontfamily/editor-fontfamily.component.d.ts +5 -1
  57. package/tools/fontsize/editor-fontsize.component.d.ts +5 -1
  58. package/tools/format/editor-format.component.d.ts +5 -1
  59. package/tools/history/editor-redo-button.directive.d.ts +2 -0
  60. package/tools/history/editor-undo-button.directive.d.ts +2 -0
  61. package/tools/image/editor-insert-image-button.directive.d.ts +2 -0
  62. package/tools/indentation/editor-indent-button.directive.d.ts +2 -0
  63. package/tools/indentation/editor-outdent-button.directive.d.ts +2 -0
  64. package/tools/link/editor-create-link-button.directive.d.ts +2 -0
  65. package/tools/link/editor-insert-file-button.directive.d.ts +2 -0
  66. package/tools/link/editor-unlink-button.directive.d.ts +2 -0
  67. package/tools/list/editor-insert-ordered-list-button.directive.d.ts +2 -0
  68. package/tools/list/editor-insert-unordered-list-button.directive.d.ts +2 -0
  69. package/tools/print/editor-print-button.directive.d.ts +2 -0
  70. package/tools/select-all/select-all-button.directive.d.ts +2 -0
  71. package/tools/source/editor-view-source-button.directive.d.ts +2 -0
  72. package/tools/tables/editor-add-column-after-button.directive.d.ts +2 -0
  73. package/tools/tables/editor-add-column-before-button.directive.d.ts +2 -0
  74. package/tools/tables/editor-add-row-after-button.directive.d.ts +2 -0
  75. package/tools/tables/editor-add-row-before-button.directive.d.ts +2 -0
  76. package/tools/tables/editor-delete-column-button.directive.d.ts +2 -0
  77. package/tools/tables/editor-delete-row-button.directive.d.ts +2 -0
  78. package/tools/tables/editor-delete-table-button.directive.d.ts +2 -0
  79. package/tools/tables/editor-insert-table-button.component.d.ts +5 -1
  80. package/tools/tables/editor-merge-cells-button.directive.d.ts +2 -0
  81. package/tools/tables/editor-split-cell-button.directive.d.ts +2 -0
  82. package/tools/typographical-emphasis/editor-bold-button.directive.d.ts +2 -0
  83. package/tools/typographical-emphasis/editor-italic-button.directive.d.ts +2 -0
  84. package/tools/typographical-emphasis/editor-strikethrough-button.directive.d.ts +2 -0
  85. package/tools/typographical-emphasis/editor-subscript-button.directive.d.ts +2 -0
  86. package/tools/typographical-emphasis/editor-superscript-button.directive.d.ts +2 -0
  87. package/tools/typographical-emphasis/editor-underline-button.directive.d.ts +2 -0
@@ -16,6 +16,8 @@ import * as i0 from "@angular/core";
16
16
  * ```html
17
17
  * <kendo-toolbar-button kendoEditorInsertFileButton></kendo-toolbar-button>
18
18
  * ```
19
+ * @remarks
20
+ * Applied to: {@link ToolBarButtonComponent}
19
21
  */
20
22
  export declare class EditorInsertFileButtonDirective extends EditorCommandDialog {
21
23
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -17,6 +17,8 @@ import * as i0 from "@angular/core";
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorUnlinkButton></kendo-toolbar-button>
19
19
  * ```
20
+ * @remarks
21
+ * Applied to: {@link ToolBarButtonComponent}
20
22
  */
21
23
  export declare class EditorUnlinkButtonDirective extends EditorCommandButton {
22
24
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -17,6 +17,8 @@ import * as i0 from "@angular/core";
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorInsertOrderedListButton></kendo-toolbar-button>
19
19
  * ```
20
+ * @remarks
21
+ * Applied to: {@link ToolBarButtonComponent}
20
22
  */
21
23
  export declare class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
22
24
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorInsertUnorderedListButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -19,6 +19,8 @@ import * as i0 from "@angular/core";
19
19
  * ```html
20
20
  * <kendo-toolbar-button kendoEditorPrintButton></kendo-toolbar-button>
21
21
  * ```
22
+ * @remarks
23
+ * Applied to: {@link ToolBarButtonComponent}
22
24
  */
23
25
  export declare class EditorPrintDirective extends EditorCommandButton {
24
26
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -17,6 +17,8 @@ import * as i0 from "@angular/core";
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorSelectAllButton></kendo-toolbar-button>
19
19
  * ```
20
+ * @remarks
21
+ * Applied to: {@link ToolBarButtonComponent}
20
22
  */
21
23
  export declare class EditorSelectAllButtonDirective extends EditorCommandButton {
22
24
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -17,6 +17,8 @@ import * as i0 from "@angular/core";
17
17
  * ```html
18
18
  * <kendo-toolbar-button kendoEditorViewSourceButton></kendo-toolbar-button>
19
19
  * ```
20
+ * @remarks
21
+ * Applied to: {@link ToolBarButtonComponent}
20
22
  */
21
23
  export declare class EditorViewSourceButtonDirective extends EditorCommandDialog {
22
24
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAddColumnAfterButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorAddColumnAfterButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAddColumnBeforeButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorAddColumnBeforeButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAddRowAfterButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorAddRowAfterButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorAddRowBeforeButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorAddRowBeforeButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorDeleteColumnButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorDeleteColumnButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorDeleteRowButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorDeleteRowButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorDeleteTableButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorDeleteTableButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,7 +18,11 @@ import * as i0 from "@angular/core";
18
18
  *
19
19
  * @example
20
20
  * ```html
21
- * <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
21
+ * <kendo-editor>
22
+ * <kendo-toolbar>
23
+ * <kendo-editor-insert-table-button></kendo-editor-insert-table-button>
24
+ * </kendo-toolbar>
25
+ * </kendo-editor>
22
26
  * ```
23
27
  */
24
28
  export declare class EditorInsertTableButtonComponent extends ToolBarToolComponent implements OnDestroy {
@@ -20,6 +20,8 @@ import * as i0 from "@angular/core";
20
20
  * ```html
21
21
  * <kendo-toolbar-button kendoEditorMergeCellsButton></kendo-toolbar-button>
22
22
  * ```
23
+ * @remarks
24
+ * Applied to: {@link ToolBarButtonComponent}
23
25
  */
24
26
  export declare class EditorMergeCellsButtonDirective extends EditorCommandButton {
25
27
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -20,6 +20,8 @@ import * as i0 from "@angular/core";
20
20
  * ```html
21
21
  * <kendo-toolbar-button kendoEditorSplitCellButton></kendo-toolbar-button>
22
22
  * ```
23
+ * @remarks
24
+ * Applied to: {@link ToolBarButtonComponent}
23
25
  */
24
26
  export declare class EditorSplitCellButtonDirective extends EditorCommandButton {
25
27
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorBoldButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorBoldButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorItalicButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorItalicButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorStrikethroughButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorStrikethroughButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorSubscriptButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorSubscriptButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorSuperscriptButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorSuperscriptButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
@@ -18,6 +18,8 @@ import * as i0 from "@angular/core";
18
18
  * ```html
19
19
  * <kendo-toolbar-button kendoEditorUnderlineButton></kendo-toolbar-button>
20
20
  * ```
21
+ * @remarks
22
+ * Applied to: {@link ToolBarButtonComponent}
21
23
  */
22
24
  export declare class EditorUnderlineButtonDirective extends EditorCommandButton {
23
25
  constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);