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

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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes