@progress/kendo-angular-editor 17.0.0-develop.9 → 17.0.0

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 (127) hide show
  1. package/common/commands.d.ts +5 -5
  2. package/common/direction.d.ts +1 -1
  3. package/common/plugins-function.d.ts +1 -1
  4. package/common/predicate.d.ts +1 -1
  5. package/config/utils.d.ts +2 -2
  6. package/dialogs/colorpicker-dialog.component.d.ts +1 -1
  7. package/dialogs/file-link-dialog.component.d.ts +1 -1
  8. package/dialogs/font-family-dialog.component.d.ts +1 -1
  9. package/dialogs/font-size-dialog.component.d.ts +1 -1
  10. package/dialogs/format-dialog.component.d.ts +1 -1
  11. package/dialogs/image-dialog.component.d.ts +1 -1
  12. package/dialogs/insert-table-dialog.component.d.ts +1 -1
  13. package/dialogs/source-dialog.component.d.ts +1 -1
  14. package/editor.component.d.ts +1 -1
  15. package/editor.module.d.ts +2 -3
  16. package/{esm2020 → esm2022}/common/provider.service.mjs +4 -3
  17. package/{esm2020 → esm2022}/dialogs/colorpicker-dialog.component.mjs +16 -4
  18. package/{esm2020 → esm2022}/dialogs/file-link-dialog.component.mjs +14 -9
  19. package/{esm2020 → esm2022}/dialogs/font-family-dialog.component.mjs +12 -5
  20. package/{esm2020 → esm2022}/dialogs/font-size-dialog.component.mjs +12 -5
  21. package/{esm2020 → esm2022}/dialogs/format-dialog.component.mjs +12 -5
  22. package/{esm2020 → esm2022}/dialogs/image-dialog.component.mjs +28 -20
  23. package/{esm2020 → esm2022}/dialogs/insert-table-dialog.component.mjs +7 -4
  24. package/{esm2020 → esm2022}/dialogs/source-dialog.component.mjs +9 -5
  25. package/{esm2020 → esm2022}/editor.component.mjs +222 -180
  26. package/esm2022/editor.module.mjs +88 -0
  27. package/{esm2020 → esm2022}/index.mjs +1 -1
  28. package/{esm2020 → esm2022}/localization/custom-messages.component.mjs +9 -8
  29. package/{esm2020 → esm2022}/localization/editor-localization.service.mjs +3 -3
  30. package/{esm2020 → esm2022}/localization/localized-messages.directive.mjs +7 -6
  31. package/esm2022/localization/messages.mjs +364 -0
  32. package/{esm2020 → esm2022}/package-metadata.mjs +2 -2
  33. package/{esm2020 → esm2022}/preventable-events/paste-event.mjs +12 -0
  34. package/{esm2020 → esm2022}/preventable-events/preventable-event.mjs +1 -3
  35. package/{esm2020 → esm2022}/tools/alignment/editor-align-center-button.directive.mjs +3 -3
  36. package/{esm2020 → esm2022}/tools/alignment/editor-align-justify-button.directive.mjs +3 -3
  37. package/{esm2020 → esm2022}/tools/alignment/editor-align-left-button.directive.mjs +3 -3
  38. package/{esm2020 → esm2022}/tools/alignment/editor-align-right-button.directive.mjs +3 -3
  39. package/{esm2020 → esm2022}/tools/blockquote/editor-blockquote-button.directive.mjs +3 -3
  40. package/{esm2020 → esm2022}/tools/colorpicker/editor-back-color.directive.mjs +4 -3
  41. package/{esm2020 → esm2022}/tools/colorpicker/editor-colorpicker.component.mjs +59 -33
  42. package/{esm2020 → esm2022}/tools/colorpicker/editor-fore-color.directive.mjs +4 -3
  43. package/{esm2020 → esm2022}/tools/editor-clean-formatting-button.directive.mjs +3 -3
  44. package/{esm2020 → esm2022}/tools/fontfamily/editor-fontfamily-dropdownlist.component.mjs +14 -7
  45. package/{esm2020 → esm2022}/tools/fontfamily/editor-fontfamily.component.mjs +53 -41
  46. package/{esm2020 → esm2022}/tools/fontsize/editor-fontsize-dropdownlist.component.mjs +14 -7
  47. package/{esm2020 → esm2022}/tools/fontsize/editor-fontsize.component.mjs +48 -36
  48. package/{esm2020 → esm2022}/tools/format/editor-format-dropdownlist.component.mjs +14 -7
  49. package/{esm2020 → esm2022}/tools/format/editor-format.component.mjs +41 -36
  50. package/{esm2020 → esm2022}/tools/history/editor-redo-button.directive.mjs +3 -3
  51. package/{esm2020 → esm2022}/tools/history/editor-undo-button.directive.mjs +3 -3
  52. package/{esm2020 → esm2022}/tools/image/editor-insert-image-button.directive.mjs +3 -3
  53. package/{esm2020 → esm2022}/tools/indentation/editor-indent-button.directive.mjs +3 -3
  54. package/{esm2020 → esm2022}/tools/indentation/editor-outdent-button.directive.mjs +3 -3
  55. package/{esm2020 → esm2022}/tools/link/editor-create-link-button.directive.mjs +3 -3
  56. package/{esm2020 → esm2022}/tools/link/editor-insert-file-button.directive.mjs +3 -3
  57. package/{esm2020 → esm2022}/tools/link/editor-unlink-button.directive.mjs +3 -3
  58. package/{esm2020 → esm2022}/tools/list/editor-insert-ordered-list-button.directive.mjs +3 -3
  59. package/{esm2020 → esm2022}/tools/list/editor-insert-unordered-list-button.directive.mjs +3 -3
  60. package/{esm2020 → esm2022}/tools/print/editor-print-button.directive.mjs +3 -3
  61. package/{esm2020 → esm2022}/tools/select-all/select-all-button.directive.mjs +3 -3
  62. package/{esm2020 → esm2022}/tools/shared/dropdown-tool.directive.mjs +11 -9
  63. package/{esm2020 → esm2022}/tools/shared/editor-command-base.mjs +9 -3
  64. package/{esm2020 → esm2022}/tools/shared/editor-command-button.mjs +5 -0
  65. package/{esm2020 → esm2022}/tools/shared/editor-command-dialog.mjs +5 -0
  66. package/{esm2020 → esm2022}/tools/source/editor-view-source-button.directive.mjs +3 -3
  67. package/{esm2020 → esm2022}/tools/tables/editor-add-column-after-button.directive.mjs +3 -3
  68. package/{esm2020 → esm2022}/tools/tables/editor-add-column-before-button.directive.mjs +3 -3
  69. package/{esm2020 → esm2022}/tools/tables/editor-add-row-after-button.directive.mjs +3 -3
  70. package/{esm2020 → esm2022}/tools/tables/editor-add-row-before-button.directive.mjs +3 -3
  71. package/{esm2020 → esm2022}/tools/tables/editor-delete-column-button.directive.mjs +3 -3
  72. package/{esm2020 → esm2022}/tools/tables/editor-delete-row-button.directive.mjs +3 -3
  73. package/{esm2020 → esm2022}/tools/tables/editor-delete-table-button.directive.mjs +3 -3
  74. package/{esm2020 → esm2022}/tools/tables/editor-insert-table-button.component.mjs +26 -15
  75. package/{esm2020 → esm2022}/tools/tables/editor-merge-cells-button.directive.mjs +3 -3
  76. package/{esm2020 → esm2022}/tools/tables/editor-split-cell-button.directive.mjs +3 -3
  77. package/{esm2020 → esm2022}/tools/tables/popup-table-grid.component.mjs +11 -10
  78. package/{esm2020 → esm2022}/tools/tools.service.mjs +5 -4
  79. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-bold-button.directive.mjs +3 -3
  80. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-italic-button.directive.mjs +3 -3
  81. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-strikethrough-button.directive.mjs +3 -3
  82. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-subscript-button.directive.mjs +3 -3
  83. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-superscript-button.directive.mjs +3 -3
  84. package/{esm2020 → esm2022}/tools/typographical-emphasis/editor-underline-button.directive.mjs +3 -3
  85. package/{fesm2020 → fesm2022}/progress-kendo-angular-editor.mjs +1602 -1168
  86. package/index.d.ts +1 -1
  87. package/localization/messages.d.ts +1 -1
  88. package/package.json +25 -31
  89. package/schematics/ngAdd/index.js +5 -5
  90. package/tools/colorpicker/editor-colorpicker.component.d.ts +2 -4
  91. package/tools/fontfamily/editor-fontfamily-dropdownlist.component.d.ts +1 -1
  92. package/tools/fontfamily/editor-fontfamily.component.d.ts +2 -4
  93. package/tools/fontsize/editor-fontsize-dropdownlist.component.d.ts +1 -1
  94. package/tools/fontsize/editor-fontsize.component.d.ts +2 -4
  95. package/tools/format/editor-format-dropdownlist.component.d.ts +1 -1
  96. package/tools/format/editor-format.component.d.ts +2 -4
  97. package/tools/tables/editor-insert-table-button.component.d.ts +0 -2
  98. package/esm2020/editor.module.mjs +0 -111
  99. package/esm2020/localization/messages.mjs +0 -132
  100. package/fesm2015/progress-kendo-angular-editor.mjs +0 -6403
  101. /package/{esm2020 → esm2022}/common/active-marks.mjs +0 -0
  102. /package/{esm2020 → esm2022}/common/apply-to-word-options.mjs +0 -0
  103. /package/{esm2020 → esm2022}/common/commands.mjs +0 -0
  104. /package/{esm2020 → esm2022}/common/css-settings.interface.mjs +0 -0
  105. /package/{esm2020 → esm2022}/common/direction.mjs +0 -0
  106. /package/{esm2020 → esm2022}/common/error-messages.mjs +0 -0
  107. /package/{esm2020 → esm2022}/common/font-family-item.interface.mjs +0 -0
  108. /package/{esm2020 → esm2022}/common/font-size-item.interface.mjs +0 -0
  109. /package/{esm2020 → esm2022}/common/format-item.interface.mjs +0 -0
  110. /package/{esm2020 → esm2022}/common/image-data.interface.mjs +0 -0
  111. /package/{esm2020 → esm2022}/common/link-data.interface.mjs +0 -0
  112. /package/{esm2020 → esm2022}/common/paste-cleanup-settings.mjs +0 -0
  113. /package/{esm2020 → esm2022}/common/plugins-function.mjs +0 -0
  114. /package/{esm2020 → esm2022}/common/predicate.mjs +0 -0
  115. /package/{esm2020 → esm2022}/common/resizable-options.interface.mjs +0 -0
  116. /package/{esm2020 → esm2022}/common/styles.mjs +0 -0
  117. /package/{esm2020 → esm2022}/common/table-data.interface.mjs +0 -0
  118. /package/{esm2020 → esm2022}/config/command-icons.mjs +0 -0
  119. /package/{esm2020 → esm2022}/config/commands.mjs +0 -0
  120. /package/{esm2020 → esm2022}/config/schema.mjs +0 -0
  121. /package/{esm2020 → esm2022}/config/semantic-nodes.mjs +0 -0
  122. /package/{esm2020 → esm2022}/config/table-commands.mjs +0 -0
  123. /package/{esm2020 → esm2022}/config/utils.mjs +0 -0
  124. /package/{esm2020 → esm2022}/directives.mjs +0 -0
  125. /package/{esm2020 → esm2022}/editor-toolbar-state.mjs +0 -0
  126. /package/{esm2020 → esm2022}/progress-kendo-angular-editor.mjs +0 -0
  127. /package/{esm2020 → esm2022}/util.mjs +0 -0
package/index.d.ts CHANGED
@@ -6,7 +6,7 @@ export { EditorComponent } from './editor.component';
6
6
  export { EditorModule } from './editor.module';
7
7
  export { schema } from './config/schema';
8
8
  export { Schema } from '@progress/kendo-editor-common';
9
- export { EditorState, Plugin, PluginKey, Transaction, EditorView, Decoration, DecorationSet, NodeType, Node, MarkType, Mark, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, baseKeymap, history, dropCursor, gapCursor, tableNodes, NodeSpec, MarkSpec } from '@progress/kendo-editor-common';
9
+ export { EditorState, Plugin, PluginKey, Transaction, EditorView, Decoration, DecorationSet, NodeType, Node, MarkType, Mark, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, baseKeymap, history, dropCursor, gapCursor, tableNodes, NodeSpec, MarkSpec, TextSelection, NodeSelection, CellSelection, AllSelection } from '@progress/kendo-editor-common';
10
10
  export { getSelectionText } from './util';
11
11
  export { PluginsFn } from './common/plugins-function';
12
12
  export { ApplyToWordOptions } from './common/apply-to-word-options';
@@ -238,5 +238,5 @@ export declare class MessagesDirective extends ComponentMessages {
238
238
  */
239
239
  linkWebAddress: string;
240
240
  static ɵfac: i0.ɵɵFactoryDeclaration<MessagesDirective, never>;
241
- static ɵdir: i0.ɵɵDirectiveDeclaration<MessagesDirective, "[kendoEditorMessages]", never, { "alignCenter": "alignCenter"; "alignJustify": "alignJustify"; "alignLeft": "alignLeft"; "alignRight": "alignRight"; "backColor": "backColor"; "blockquote": "blockquote"; "bold": "bold"; "cleanFormatting": "cleanFormatting"; "createLink": "createLink"; "fontFamily": "fontFamily"; "fontSize": "fontSize"; "foreColor": "foreColor"; "format": "format"; "indent": "indent"; "insertFile": "insertFile"; "insertImage": "insertImage"; "insertOrderedList": "insertOrderedList"; "insertUnorderedList": "insertUnorderedList"; "italic": "italic"; "outdent": "outdent"; "print": "print"; "redo": "redo"; "selectAll": "selectAll"; "strikethrough": "strikethrough"; "subscript": "subscript"; "superscript": "superscript"; "underline": "underline"; "undo": "undo"; "unlink": "unlink"; "viewSource": "viewSource"; "insertTable": "insertTable"; "insertTableHint": "insertTableHint"; "addColumnBefore": "addColumnBefore"; "addColumnAfter": "addColumnAfter"; "addRowBefore": "addRowBefore"; "addRowAfter": "addRowAfter"; "deleteColumn": "deleteColumn"; "deleteRow": "deleteRow"; "deleteTable": "deleteTable"; "mergeCells": "mergeCells"; "splitCell": "splitCell"; "dialogApply": "dialogApply"; "dialogCancel": "dialogCancel"; "dialogInsert": "dialogInsert"; "dialogUpdate": "dialogUpdate"; "fileText": "fileText"; "fileTitle": "fileTitle"; "fileWebAddress": "fileWebAddress"; "imageAltText": "imageAltText"; "imageHeight": "imageHeight"; "imageWebAddress": "imageWebAddress"; "imageWidth": "imageWidth"; "linkOpenInNewWindow": "linkOpenInNewWindow"; "linkText": "linkText"; "linkTitle": "linkTitle"; "linkWebAddress": "linkWebAddress"; }, {}, never, never, false, never>;
241
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MessagesDirective, "[kendoEditorMessages]", never, { "alignCenter": { "alias": "alignCenter"; "required": false; }; "alignJustify": { "alias": "alignJustify"; "required": false; }; "alignLeft": { "alias": "alignLeft"; "required": false; }; "alignRight": { "alias": "alignRight"; "required": false; }; "backColor": { "alias": "backColor"; "required": false; }; "blockquote": { "alias": "blockquote"; "required": false; }; "bold": { "alias": "bold"; "required": false; }; "cleanFormatting": { "alias": "cleanFormatting"; "required": false; }; "createLink": { "alias": "createLink"; "required": false; }; "fontFamily": { "alias": "fontFamily"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "foreColor": { "alias": "foreColor"; "required": false; }; "format": { "alias": "format"; "required": false; }; "indent": { "alias": "indent"; "required": false; }; "insertFile": { "alias": "insertFile"; "required": false; }; "insertImage": { "alias": "insertImage"; "required": false; }; "insertOrderedList": { "alias": "insertOrderedList"; "required": false; }; "insertUnorderedList": { "alias": "insertUnorderedList"; "required": false; }; "italic": { "alias": "italic"; "required": false; }; "outdent": { "alias": "outdent"; "required": false; }; "print": { "alias": "print"; "required": false; }; "redo": { "alias": "redo"; "required": false; }; "selectAll": { "alias": "selectAll"; "required": false; }; "strikethrough": { "alias": "strikethrough"; "required": false; }; "subscript": { "alias": "subscript"; "required": false; }; "superscript": { "alias": "superscript"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; "undo": { "alias": "undo"; "required": false; }; "unlink": { "alias": "unlink"; "required": false; }; "viewSource": { "alias": "viewSource"; "required": false; }; "insertTable": { "alias": "insertTable"; "required": false; }; "insertTableHint": { "alias": "insertTableHint"; "required": false; }; "addColumnBefore": { "alias": "addColumnBefore"; "required": false; }; "addColumnAfter": { "alias": "addColumnAfter"; "required": false; }; "addRowBefore": { "alias": "addRowBefore"; "required": false; }; "addRowAfter": { "alias": "addRowAfter"; "required": false; }; "deleteColumn": { "alias": "deleteColumn"; "required": false; }; "deleteRow": { "alias": "deleteRow"; "required": false; }; "deleteTable": { "alias": "deleteTable"; "required": false; }; "mergeCells": { "alias": "mergeCells"; "required": false; }; "splitCell": { "alias": "splitCell"; "required": false; }; "dialogApply": { "alias": "dialogApply"; "required": false; }; "dialogCancel": { "alias": "dialogCancel"; "required": false; }; "dialogInsert": { "alias": "dialogInsert"; "required": false; }; "dialogUpdate": { "alias": "dialogUpdate"; "required": false; }; "fileText": { "alias": "fileText"; "required": false; }; "fileTitle": { "alias": "fileTitle"; "required": false; }; "fileWebAddress": { "alias": "fileWebAddress"; "required": false; }; "imageAltText": { "alias": "imageAltText"; "required": false; }; "imageHeight": { "alias": "imageHeight"; "required": false; }; "imageWebAddress": { "alias": "imageWebAddress"; "required": false; }; "imageWidth": { "alias": "imageWidth"; "required": false; }; "linkOpenInNewWindow": { "alias": "linkOpenInNewWindow"; "required": false; }; "linkText": { "alias": "linkText"; "required": false; }; "linkTitle": { "alias": "linkTitle"; "required": false; }; "linkWebAddress": { "alias": "linkWebAddress"; "required": false; }; }, {}, never, never, false, never>;
242
242
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-editor",
3
- "version": "17.0.0-develop.9",
3
+ "version": "17.0.0",
4
4
  "description": "Kendo UI Editor for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -16,38 +16,34 @@
16
16
  "friendlyName": "Editor"
17
17
  },
18
18
  "peerDependencies": {
19
- "@angular/animations": "15 - 18",
20
- "@angular/common": "15 - 18",
21
- "@angular/core": "15 - 18",
22
- "@angular/forms": "15 - 18",
23
- "@angular/platform-browser": "15 - 18",
24
- "@progress/kendo-drawing": "^1.20.4",
19
+ "@angular/animations": "16 - 18",
20
+ "@angular/common": "16 - 18",
21
+ "@angular/core": "16 - 18",
22
+ "@angular/forms": "16 - 18",
23
+ "@angular/platform-browser": "16 - 18",
24
+ "@progress/kendo-drawing": "^1.21.0",
25
25
  "@progress/kendo-licensing": "^1.0.2",
26
- "@progress/kendo-angular-buttons": "17.0.0-develop.9",
27
- "@progress/kendo-angular-common": "17.0.0-develop.9",
28
- "@progress/kendo-angular-dialog": "17.0.0-develop.9",
29
- "@progress/kendo-angular-dropdowns": "17.0.0-develop.9",
30
- "@progress/kendo-angular-inputs": "17.0.0-develop.9",
31
- "@progress/kendo-angular-intl": "17.0.0-develop.9",
32
- "@progress/kendo-angular-l10n": "17.0.0-develop.9",
33
- "@progress/kendo-angular-label": "17.0.0-develop.9",
34
- "@progress/kendo-angular-layout": "17.0.0-develop.9",
35
- "@progress/kendo-angular-icons": "17.0.0-develop.9",
36
- "@progress/kendo-angular-popup": "17.0.0-develop.9",
37
- "@progress/kendo-angular-toolbar": "17.0.0-develop.9",
26
+ "@progress/kendo-angular-buttons": "17.0.0",
27
+ "@progress/kendo-angular-common": "17.0.0",
28
+ "@progress/kendo-angular-dialog": "17.0.0",
29
+ "@progress/kendo-angular-dropdowns": "17.0.0",
30
+ "@progress/kendo-angular-inputs": "17.0.0",
31
+ "@progress/kendo-angular-intl": "17.0.0",
32
+ "@progress/kendo-angular-l10n": "17.0.0",
33
+ "@progress/kendo-angular-label": "17.0.0",
34
+ "@progress/kendo-angular-layout": "17.0.0",
35
+ "@progress/kendo-angular-icons": "17.0.0",
36
+ "@progress/kendo-angular-popup": "17.0.0",
37
+ "@progress/kendo-angular-toolbar": "17.0.0",
38
38
  "rxjs": "^6.5.3 || ^7.0.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "tslib": "^2.3.1",
42
- "@progress/kendo-angular-schematics": "17.0.0-develop.9",
43
- "@progress/kendo-editor-common": "1.11.6"
42
+ "@progress/kendo-angular-schematics": "17.0.0",
43
+ "@progress/kendo-editor-common": "1.11.8"
44
44
  },
45
45
  "schematics": "./schematics/collection.json",
46
- "module": "fesm2015/progress-kendo-angular-editor.mjs",
47
- "es2020": "fesm2020/progress-kendo-angular-editor.mjs",
48
- "esm2020": "esm2020/progress-kendo-angular-editor.mjs",
49
- "fesm2020": "fesm2020/progress-kendo-angular-editor.mjs",
50
- "fesm2015": "fesm2015/progress-kendo-angular-editor.mjs",
46
+ "module": "fesm2022/progress-kendo-angular-editor.mjs",
51
47
  "typings": "index.d.ts",
52
48
  "exports": {
53
49
  "./package.json": {
@@ -55,11 +51,9 @@
55
51
  },
56
52
  ".": {
57
53
  "types": "./index.d.ts",
58
- "esm2020": "./esm2020/progress-kendo-angular-editor.mjs",
59
- "es2020": "./fesm2020/progress-kendo-angular-editor.mjs",
60
- "es2015": "./fesm2015/progress-kendo-angular-editor.mjs",
61
- "node": "./fesm2015/progress-kendo-angular-editor.mjs",
62
- "default": "./fesm2020/progress-kendo-angular-editor.mjs"
54
+ "esm2022": "./esm2022/progress-kendo-angular-editor.mjs",
55
+ "esm": "./esm2022/progress-kendo-angular-editor.mjs",
56
+ "default": "./fesm2022/progress-kendo-angular-editor.mjs"
63
57
  }
64
58
  },
65
59
  "sideEffects": false
@@ -4,14 +4,14 @@ 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 dependencies of kendo-angular-dropdowns
7
- '@progress/kendo-angular-navigation': '17.0.0-develop.9',
8
- '@progress/kendo-angular-treeview': '17.0.0-develop.9',
7
+ '@progress/kendo-angular-navigation': '17.0.0',
8
+ '@progress/kendo-angular-treeview': '17.0.0',
9
9
  // peer dependency of kendo-angular-layout
10
- '@progress/kendo-angular-progressbar': '17.0.0-develop.9',
10
+ '@progress/kendo-angular-progressbar': '17.0.0',
11
11
  // peer dependency of kendo-angular-inputs
12
- '@progress/kendo-angular-dialog': '17.0.0-develop.9',
12
+ '@progress/kendo-angular-dialog': '17.0.0',
13
13
  // Peer dependency of icons
14
- '@progress/kendo-svg-icons': '^3.0.0'
14
+ '@progress/kendo-svg-icons': '^4.0.0'
15
15
  } });
16
16
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
17
17
  }
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, TemplateRef, NgZone, Renderer2 } from '@angular/core';
5
+ import { ElementRef, NgZone, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { PaletteSettings, ActiveColorClickEvent, ColorPickerComponent, ColorPickerView } from '@progress/kendo-angular-inputs';
8
8
  import { DialogService } from '@progress/kendo-angular-dialog';
@@ -65,8 +65,6 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
65
65
  * @hidden
66
66
  */
67
67
  get title(): string;
68
- toolbarTemplate: TemplateRef<any>;
69
- popupTemplate: TemplateRef<any>;
70
68
  element: ElementRef;
71
69
  private colorPicker;
72
70
  private colorPickerButton;
@@ -122,5 +120,5 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
122
120
  */
123
121
  handleKey(): boolean;
124
122
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorColorPickerComponent, never>;
125
- static ɵcmp: i0.ɵɵComponentDeclaration<EditorColorPickerComponent, "kendo-toolbar-colorpicker", never, { "value": "value"; "icon": "icon"; "svgIcon": "svgIcon"; "paletteSettings": "paletteSettings"; "editorCommand": "editorCommand"; "disabled": "disabled"; "views": "views"; "view": "view"; }, {}, never, never, true, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorColorPickerComponent, "kendo-toolbar-colorpicker", never, { "value": { "alias": "value"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "svgIcon": { "alias": "svgIcon"; "required": false; }; "paletteSettings": { "alias": "paletteSettings"; "required": false; }; "editorCommand": { "alias": "editorCommand"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "views": { "alias": "views"; "required": false; }; "view": { "alias": "view"; "required": false; }; }, {}, never, never, true, never>;
126
124
  }
@@ -23,5 +23,5 @@ export declare class FontFamilyDropDownListComponent {
23
23
  onValueChange(tag: string): void;
24
24
  focus(): void;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<FontFamilyDropDownListComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDropDownListComponent, "kendo-editor-fontfamily-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<FontFamilyDropDownListComponent, "kendo-editor-fontfamily-dropdownlist", never, { "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
27
27
  }
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
5
+ import { ElementRef, EventEmitter, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { DialogService } from '@progress/kendo-angular-dialog';
8
8
  import { SVGIcon } from '@progress/kendo-svg-icons';
@@ -40,8 +40,6 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
40
40
  * Fires when the user updates the value of the drop-down list.
41
41
  */
42
42
  valueChange: EventEmitter<FontFamilyItem>;
43
- toolbarTemplate: TemplateRef<any>;
44
- popupTemplate: TemplateRef<any>;
45
43
  element: ElementRef;
46
44
  fontFamilyDropDownList: FontFamilyDropDownListComponent;
47
45
  fontFamilyButton: ElementRef;
@@ -86,5 +84,5 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
86
84
  */
87
85
  handleKey(): boolean;
88
86
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorFontFamilyComponent, never>;
89
- static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontFamilyComponent, "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
87
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontFamilyComponent, "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", never, { "data": { "alias": "data"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
90
88
  }
@@ -23,5 +23,5 @@ export declare class FontSizeDropDownListComponent {
23
23
  onValueChange(size: string): void;
24
24
  focus(): void;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<FontSizeDropDownListComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDropDownListComponent, "kendo-editor-fontsize-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<FontSizeDropDownListComponent, "kendo-editor-fontsize-dropdownlist", never, { "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
27
27
  }
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core';
5
+ import { ElementRef, EventEmitter, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { ItemDisabledFn } from '@progress/kendo-angular-dropdowns';
8
8
  import { SVGIcon } from '@progress/kendo-svg-icons';
@@ -42,8 +42,6 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
42
42
  * Fires when the user updates the value of the drop-down list.
43
43
  */
44
44
  valueChange: EventEmitter<FontSizeItem>;
45
- toolbarTemplate: TemplateRef<any>;
46
- popupTemplate: TemplateRef<any>;
47
45
  element: ElementRef;
48
46
  fontSizeDropDownList: FontSizeDropDownListComponent;
49
47
  fontSizeButton: ElementRef;
@@ -85,5 +83,5 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
85
83
  */
86
84
  handleKey(): boolean;
87
85
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorFontSizeComponent, never>;
88
- static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontSizeComponent, "kendo-toolbar-dropdownlist[kendoEditorFontSize]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
86
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontSizeComponent, "kendo-toolbar-dropdownlist[kendoEditorFontSize]", never, { "data": { "alias": "data"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
89
87
  }
@@ -23,5 +23,5 @@ export declare class FormatDropDownListComponent {
23
23
  onValueChange(tag: string): void;
24
24
  focus(): void;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<FormatDropDownListComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<FormatDropDownListComponent, "kendo-editor-format-dropdownlist", never, { "data": "data"; "value": "value"; "defaultItem": "defaultItem"; "itemDisabled": "itemDisabled"; "title": "title"; "disabled": "disabled"; "tabindex": "tabindex"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormatDropDownListComponent, "kendo-editor-format-dropdownlist", never, { "data": { "alias": "data"; "required": false; }; "value": { "alias": "value"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "itemDisabled": { "alias": "itemDisabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
27
27
  }
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2024 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, EventEmitter, ElementRef, Renderer2 } from '@angular/core';
5
+ import { EventEmitter, ElementRef, Renderer2 } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
7
  import { ItemDisabledFn } from '@progress/kendo-angular-dropdowns';
8
8
  import { DialogService } from '@progress/kendo-angular-dialog';
@@ -43,8 +43,6 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
43
43
  * Fires when the user updates the value of the drop-down list.
44
44
  */
45
45
  valueChange: EventEmitter<FormatItem>;
46
- toolbarTemplate: TemplateRef<any>;
47
- popupTemplate: TemplateRef<any>;
48
46
  formatDropDownList: FormatDropDownListComponent;
49
47
  formatButton: ElementRef;
50
48
  private subs;
@@ -77,5 +75,5 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
77
75
  */
78
76
  handleKey(): boolean;
79
77
  static ɵfac: i0.ɵɵFactoryDeclaration<EditorFormatComponent, never>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<EditorFormatComponent, "kendo-toolbar-dropdownlist[kendoEditorFormat]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
78
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorFormatComponent, "kendo-toolbar-dropdownlist[kendoEditorFormat]", never, { "data": { "alias": "data"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
81
79
  }
@@ -24,8 +24,6 @@ export declare class EditorInsertTableButtonComponent extends ToolBarToolCompone
24
24
  private popupService;
25
25
  private dialogService;
26
26
  private renderer;
27
- toolbarTemplate: TemplateRef<any>;
28
- popupTemplate: TemplateRef<any>;
29
27
  element: ElementRef;
30
28
  overflowElement: ElementRef;
31
29
  popupGridTemplate: TemplateRef<any>;
@@ -1,111 +0,0 @@
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 { NgModule } from '@angular/core';
6
- import { ResizeBatchService } from '@progress/kendo-angular-common';
7
- import { DialogContainerService, DialogService, WindowContainerService, WindowService } from '@progress/kendo-angular-dialog';
8
- import { IconsService } from '@progress/kendo-angular-icons';
9
- import { ToolBarModule } from '@progress/kendo-angular-toolbar';
10
- import { PopupService } from '@progress/kendo-angular-popup';
11
- import { ImageDialogComponent } from './dialogs/image-dialog.component';
12
- import { SourceDialogComponent } from './dialogs/source-dialog.component';
13
- import { FileLinkDialogComponent } from './dialogs/file-link-dialog.component';
14
- import { FormatDialogComponent } from './dialogs/format-dialog.component';
15
- import { ColorPickerDialogComponent } from './dialogs/colorpicker-dialog.component';
16
- import { FontFamilyDialogComponent } from './dialogs/font-family-dialog.component';
17
- import { InsertTableDialogComponent } from './dialogs/insert-table-dialog.component';
18
- import { FontSizeDialogComponent } from './dialogs/font-size-dialog.component';
19
- import { KENDO_EDITOR } from './directives';
20
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
21
- import * as i0 from "@angular/core";
22
- import * as i1 from "./editor.component";
23
- import * as i2 from "./tools/alignment/editor-align-left-button.directive";
24
- import * as i3 from "./tools/alignment/editor-align-center-button.directive";
25
- import * as i4 from "./tools/alignment/editor-align-right-button.directive";
26
- import * as i5 from "./tools/alignment/editor-align-justify-button.directive";
27
- import * as i6 from "./tools/link/editor-insert-file-button.directive";
28
- import * as i7 from "./tools/history/editor-redo-button.directive";
29
- import * as i8 from "./tools/history/editor-undo-button.directive";
30
- import * as i9 from "./tools/image/editor-insert-image-button.directive";
31
- import * as i10 from "./tools/indentation/editor-indent-button.directive";
32
- import * as i11 from "./tools/indentation/editor-outdent-button.directive";
33
- import * as i12 from "./tools/link/editor-create-link-button.directive";
34
- import * as i13 from "./tools/link/editor-unlink-button.directive";
35
- import * as i14 from "./tools/list/editor-insert-ordered-list-button.directive";
36
- import * as i15 from "./tools/list/editor-insert-unordered-list-button.directive";
37
- import * as i16 from "./tools/source/editor-view-source-button.directive";
38
- import * as i17 from "./tools/typographical-emphasis/editor-bold-button.directive";
39
- import * as i18 from "./tools/typographical-emphasis/editor-italic-button.directive";
40
- import * as i19 from "./tools/typographical-emphasis/editor-underline-button.directive";
41
- import * as i20 from "./tools/typographical-emphasis/editor-strikethrough-button.directive";
42
- import * as i21 from "./tools/typographical-emphasis/editor-subscript-button.directive";
43
- import * as i22 from "./tools/typographical-emphasis/editor-superscript-button.directive";
44
- import * as i23 from "./tools/colorpicker/editor-fore-color.directive";
45
- import * as i24 from "./tools/colorpicker/editor-back-color.directive";
46
- import * as i25 from "./tools/editor-clean-formatting-button.directive";
47
- import * as i26 from "./tools/tables/editor-add-column-before-button.directive";
48
- import * as i27 from "./tools/tables/editor-add-column-after-button.directive";
49
- import * as i28 from "./tools/tables/editor-add-row-before-button.directive";
50
- import * as i29 from "./tools/tables/editor-add-row-after-button.directive";
51
- import * as i30 from "./tools/tables/editor-delete-column-button.directive";
52
- import * as i31 from "./tools/tables/editor-delete-row-button.directive";
53
- import * as i32 from "./tools/tables/editor-delete-table-button.directive";
54
- import * as i33 from "./localization/custom-messages.component";
55
- import * as i34 from "./tools/print/editor-print-button.directive";
56
- import * as i35 from "./tools/select-all/select-all-button.directive";
57
- import * as i36 from "./tools/blockquote/editor-blockquote-button.directive";
58
- import * as i37 from "./tools/fontsize/editor-fontsize.component";
59
- import * as i38 from "./tools/fontfamily/editor-fontfamily.component";
60
- import * as i39 from "./tools/format/editor-format.component";
61
- import * as i40 from "./tools/colorpicker/editor-colorpicker.component";
62
- import * as i41 from "./tools/tables/editor-insert-table-button.component";
63
- import * as i42 from "./tools/tables/editor-merge-cells-button.directive";
64
- import * as i43 from "./tools/tables/editor-split-cell-button.directive";
65
- const TOOLBAR_DIALOGS = [
66
- FileLinkDialogComponent,
67
- ImageDialogComponent,
68
- SourceDialogComponent,
69
- FormatDialogComponent,
70
- ColorPickerDialogComponent,
71
- FontFamilyDialogComponent,
72
- FontSizeDialogComponent,
73
- InsertTableDialogComponent
74
- // TableWizardDialogComponent
75
- // Table Wizard Building Blocks
76
- // TableSettingsComponent,
77
- // CellSettingsComponent,
78
- // AccessibilitySettingsComponent
79
- ];
80
- // IMPORTANT: NgModule export kept for backwards compatibility
81
- /**
82
- * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi']) definition for the Editor component.
83
- *
84
- * ```ts-no-run
85
- * import { NgModule } from '@angular/core';
86
- * import { EditorModule } from '@progress/kendo-angular-editor';
87
- * import { BrowserModule } from "@angular/platform-browser";
88
- * import { AppComponent } from './app.component';
89
- *
90
- * _@NgModule({
91
- * declarations: [AppComponent],
92
- * imports: [BrowserModule, EditorModule],
93
- * bootstrap: [AppComponent]
94
- * })
95
- * export class AppModule {}
96
- *
97
- * ```
98
- */
99
- export class EditorModule {
100
- }
101
- EditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
102
- EditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, imports: [i1.EditorComponent, i2.EditorAlignLeftButtonDirective, i3.EditorAlignCenterButtonDirective, i4.EditorAlignRightButtonDirective, i5.EditorAlignJustifyButtonDirective, i6.EditorInsertFileButtonDirective, i7.EditorRedoButtonDirective, i8.EditorUndoButtonDirective, i9.EditorInsertImageButtonDirective, i10.EditorIndentButtonDirective, i11.EditorOutdentButtonDirective, i12.EditorCreateLinkButtonDirective, i13.EditorUnlinkButtonDirective, i14.EditorInsertOrderedListButtonDirective, i15.EditorInsertUnorderedListButtonDirective, i16.EditorViewSourceButtonDirective, i17.EditorBoldButtonDirective, i18.EditorItalicButtonDirective, i19.EditorUnderlineButtonDirective, i20.EditorStrikethroughButtonDirective, i21.EditorSubscriptButtonDirective, i22.EditorSuperscriptButtonDirective, i23.EditorForeColorDirective, i24.EditorBackColorDirective, i25.EditorCleanFormattingButtonDirective, i26.EditorAddColumnBeforeButtonDirective, i27.EditorAddColumnAfterButtonDirective, i28.EditorAddRowBeforeButtonDirective, i29.EditorAddRowAfterButtonDirective, i30.EditorDeleteColumnButtonDirective, i31.EditorDeleteRowButtonDirective, i32.EditorDeleteTableButtonDirective, i33.CustomMessagesComponent, i34.EditorPrintDirective, i35.EditorSelectAllButtonDirective, i36.EditorBlockquoteDirective, i37.EditorFontSizeComponent, i38.EditorFontFamilyComponent, i39.EditorFormatComponent, i40.EditorColorPickerComponent, i41.EditorInsertTableButtonComponent, i42.EditorMergeCellsButtonDirective, i43.EditorSplitCellButtonDirective], exports: [i1.EditorComponent, i2.EditorAlignLeftButtonDirective, i3.EditorAlignCenterButtonDirective, i4.EditorAlignRightButtonDirective, i5.EditorAlignJustifyButtonDirective, i6.EditorInsertFileButtonDirective, i7.EditorRedoButtonDirective, i8.EditorUndoButtonDirective, i9.EditorInsertImageButtonDirective, i10.EditorIndentButtonDirective, i11.EditorOutdentButtonDirective, i12.EditorCreateLinkButtonDirective, i13.EditorUnlinkButtonDirective, i14.EditorInsertOrderedListButtonDirective, i15.EditorInsertUnorderedListButtonDirective, i16.EditorViewSourceButtonDirective, i17.EditorBoldButtonDirective, i18.EditorItalicButtonDirective, i19.EditorUnderlineButtonDirective, i20.EditorStrikethroughButtonDirective, i21.EditorSubscriptButtonDirective, i22.EditorSuperscriptButtonDirective, i23.EditorForeColorDirective, i24.EditorBackColorDirective, i25.EditorCleanFormattingButtonDirective, i26.EditorAddColumnBeforeButtonDirective, i27.EditorAddColumnAfterButtonDirective, i28.EditorAddRowBeforeButtonDirective, i29.EditorAddRowAfterButtonDirective, i30.EditorDeleteColumnButtonDirective, i31.EditorDeleteRowButtonDirective, i32.EditorDeleteTableButtonDirective, i33.CustomMessagesComponent, i34.EditorPrintDirective, i35.EditorSelectAllButtonDirective, i36.EditorBlockquoteDirective, i37.EditorFontSizeComponent, i38.EditorFontFamilyComponent, i39.EditorFormatComponent, i40.EditorColorPickerComponent, i41.EditorInsertTableButtonComponent, i42.EditorMergeCellsButtonDirective, i43.EditorSplitCellButtonDirective, FormsModule, ReactiveFormsModule, ToolBarModule] });
103
- EditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService], imports: [i1.EditorComponent, i37.EditorFontSizeComponent, i38.EditorFontFamilyComponent, i39.EditorFormatComponent, i40.EditorColorPickerComponent, i41.EditorInsertTableButtonComponent, FormsModule, ReactiveFormsModule, ToolBarModule] });
104
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: EditorModule, decorators: [{
105
- type: NgModule,
106
- args: [{
107
- exports: [...KENDO_EDITOR, FormsModule, ReactiveFormsModule, ToolBarModule],
108
- imports: [...KENDO_EDITOR],
109
- providers: [IconsService, PopupService, ResizeBatchService, DialogContainerService, DialogService, WindowService, WindowContainerService]
110
- }]
111
- }] });
@@ -1,132 +0,0 @@
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 { Directive, Input } from '@angular/core';
6
- import { ComponentMessages } from '@progress/kendo-angular-l10n';
7
- import * as i0 from "@angular/core";
8
- /**
9
- * @hidden
10
- */
11
- export class MessagesDirective extends ComponentMessages {
12
- }
13
- MessagesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MessagesDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
14
- MessagesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: MessagesDirective, selector: "[kendoEditorMessages]", inputs: { alignCenter: "alignCenter", alignJustify: "alignJustify", alignLeft: "alignLeft", alignRight: "alignRight", backColor: "backColor", blockquote: "blockquote", bold: "bold", cleanFormatting: "cleanFormatting", createLink: "createLink", fontFamily: "fontFamily", fontSize: "fontSize", foreColor: "foreColor", format: "format", indent: "indent", insertFile: "insertFile", insertImage: "insertImage", insertOrderedList: "insertOrderedList", insertUnorderedList: "insertUnorderedList", italic: "italic", outdent: "outdent", print: "print", redo: "redo", selectAll: "selectAll", strikethrough: "strikethrough", subscript: "subscript", superscript: "superscript", underline: "underline", undo: "undo", unlink: "unlink", viewSource: "viewSource", insertTable: "insertTable", insertTableHint: "insertTableHint", addColumnBefore: "addColumnBefore", addColumnAfter: "addColumnAfter", addRowBefore: "addRowBefore", addRowAfter: "addRowAfter", deleteColumn: "deleteColumn", deleteRow: "deleteRow", deleteTable: "deleteTable", mergeCells: "mergeCells", splitCell: "splitCell", dialogApply: "dialogApply", dialogCancel: "dialogCancel", dialogInsert: "dialogInsert", dialogUpdate: "dialogUpdate", fileText: "fileText", fileTitle: "fileTitle", fileWebAddress: "fileWebAddress", imageAltText: "imageAltText", imageHeight: "imageHeight", imageWebAddress: "imageWebAddress", imageWidth: "imageWidth", linkOpenInNewWindow: "linkOpenInNewWindow", linkText: "linkText", linkTitle: "linkTitle", linkWebAddress: "linkWebAddress" }, usesInheritance: true, ngImport: i0 });
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MessagesDirective, decorators: [{
16
- type: Directive,
17
- args: [{
18
- selector: '[kendoEditorMessages]'
19
- }]
20
- }], propDecorators: { alignCenter: [{
21
- type: Input
22
- }], alignJustify: [{
23
- type: Input
24
- }], alignLeft: [{
25
- type: Input
26
- }], alignRight: [{
27
- type: Input
28
- }], backColor: [{
29
- type: Input
30
- }], blockquote: [{
31
- type: Input
32
- }], bold: [{
33
- type: Input
34
- }], cleanFormatting: [{
35
- type: Input
36
- }], createLink: [{
37
- type: Input
38
- }], fontFamily: [{
39
- type: Input
40
- }], fontSize: [{
41
- type: Input
42
- }], foreColor: [{
43
- type: Input
44
- }], format: [{
45
- type: Input
46
- }], indent: [{
47
- type: Input
48
- }], insertFile: [{
49
- type: Input
50
- }], insertImage: [{
51
- type: Input
52
- }], insertOrderedList: [{
53
- type: Input
54
- }], insertUnorderedList: [{
55
- type: Input
56
- }], italic: [{
57
- type: Input
58
- }], outdent: [{
59
- type: Input
60
- }], print: [{
61
- type: Input
62
- }], redo: [{
63
- type: Input
64
- }], selectAll: [{
65
- type: Input
66
- }], strikethrough: [{
67
- type: Input
68
- }], subscript: [{
69
- type: Input
70
- }], superscript: [{
71
- type: Input
72
- }], underline: [{
73
- type: Input
74
- }], undo: [{
75
- type: Input
76
- }], unlink: [{
77
- type: Input
78
- }], viewSource: [{
79
- type: Input
80
- }], insertTable: [{
81
- type: Input
82
- }], insertTableHint: [{
83
- type: Input
84
- }], addColumnBefore: [{
85
- type: Input
86
- }], addColumnAfter: [{
87
- type: Input
88
- }], addRowBefore: [{
89
- type: Input
90
- }], addRowAfter: [{
91
- type: Input
92
- }], deleteColumn: [{
93
- type: Input
94
- }], deleteRow: [{
95
- type: Input
96
- }], deleteTable: [{
97
- type: Input
98
- }], mergeCells: [{
99
- type: Input
100
- }], splitCell: [{
101
- type: Input
102
- }], dialogApply: [{
103
- type: Input
104
- }], dialogCancel: [{
105
- type: Input
106
- }], dialogInsert: [{
107
- type: Input
108
- }], dialogUpdate: [{
109
- type: Input
110
- }], fileText: [{
111
- type: Input
112
- }], fileTitle: [{
113
- type: Input
114
- }], fileWebAddress: [{
115
- type: Input
116
- }], imageAltText: [{
117
- type: Input
118
- }], imageHeight: [{
119
- type: Input
120
- }], imageWebAddress: [{
121
- type: Input
122
- }], imageWidth: [{
123
- type: Input
124
- }], linkOpenInNewWindow: [{
125
- type: Input
126
- }], linkText: [{
127
- type: Input
128
- }], linkTitle: [{
129
- type: Input
130
- }], linkWebAddress: [{
131
- type: Input
132
- }] } });