@progress/kendo-angular-editor 3.1.2 → 4.0.0-dev.202204140850

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 (442) hide show
  1. package/bundles/kendo-angular-editor.umd.js +5 -0
  2. package/{dist/es2015/common → common}/active-marks.d.ts +0 -0
  3. package/{dist/es2015/common → common}/apply-to-word-options.d.ts +0 -0
  4. package/{dist/es2015/common → common}/commands.d.ts +0 -0
  5. package/{dist/es2015/common → common}/direction.d.ts +0 -0
  6. package/{dist/es2015/common → common}/error-messages.d.ts +0 -0
  7. package/{dist/es2015/common → common}/font-family-item.interface.d.ts +0 -0
  8. package/{dist/es2015/common → common}/font-size-item.interface.d.ts +0 -0
  9. package/{dist/es2015/common → common}/format-item.interface.d.ts +0 -0
  10. package/{dist/es2015/common → common}/image-data.interface.d.ts +0 -0
  11. package/{dist/es2015/common → common}/link-data.interface.d.ts +0 -0
  12. package/{dist/es2015/common → common}/paste-cleanup-settings.d.ts +0 -0
  13. package/{dist/es2015/common → common}/plugins-function.d.ts +0 -1
  14. package/{dist/es2015/common → common}/predicate.d.ts +0 -0
  15. package/common/provider.service.d.ts +14 -0
  16. package/{dist/es2015/common → common}/resizable-options.interface.d.ts +0 -0
  17. package/{dist/es2015/common → common}/styles.d.ts +0 -0
  18. package/{dist/es2015/common → common}/table-data.interface.d.ts +0 -0
  19. package/{dist/es2015/config → config}/command-icons.d.ts +0 -0
  20. package/{dist/es2015/config → config}/commands.d.ts +0 -0
  21. package/{dist/es2015/config → config}/schema.d.ts +0 -0
  22. package/{dist/es2015/config → config}/semantic-nodes.d.ts +0 -0
  23. package/{dist/es2015/config → config}/table-commands.d.ts +0 -0
  24. package/{dist/es2015/config → config}/utils.d.ts +8 -8
  25. package/{dist/es2015/dialogs → dialogs}/colorpicker-dialog.component.d.ts +3 -0
  26. package/{dist/es2015/dialogs → dialogs}/file-link-dialog.component.d.ts +4 -1
  27. package/{dist/es2015/dialogs → dialogs}/font-family-dialog.component.d.ts +3 -0
  28. package/{dist/es2015/dialogs → dialogs}/font-size-dialog.component.d.ts +3 -0
  29. package/{dist/es2015/dialogs → dialogs}/format-dialog.component.d.ts +4 -1
  30. package/{dist/es2015/dialogs → dialogs}/image-dialog.component.d.ts +3 -0
  31. package/{dist/es2015/dialogs → dialogs}/insert-table-dialog.component.d.ts +5 -4
  32. package/{dist/es2015/dialogs → dialogs}/source-dialog.component.d.ts +3 -0
  33. package/{dist/es2015/editor-toolbar-state.d.ts → editor-toolbar-state.d.ts} +1 -1
  34. package/{dist/es2015/editor.component.d.ts → editor.component.d.ts} +32 -20
  35. package/editor.module.d.ts +113 -0
  36. package/{dist/es2015 → esm2015}/common/active-marks.js +1 -0
  37. package/{dist/es2015 → esm2015}/common/apply-to-word-options.js +1 -0
  38. package/{dist/es → esm2015}/common/commands.js +1 -0
  39. package/{dist/es2015 → esm2015}/common/direction.js +1 -0
  40. package/{dist/es2015 → esm2015}/common/error-messages.js +2 -5
  41. package/{dist/es → esm2015}/common/font-family-item.interface.js +1 -0
  42. package/{dist/es → esm2015}/common/font-size-item.interface.js +1 -0
  43. package/{dist/es → esm2015}/common/format-item.interface.js +1 -0
  44. package/{dist/es → esm2015}/common/image-data.interface.js +1 -0
  45. package/{dist/es → esm2015}/common/link-data.interface.js +1 -0
  46. package/{dist/es → esm2015}/common/paste-cleanup-settings.js +1 -0
  47. package/{dist/es → esm2015}/common/plugins-function.js +1 -0
  48. package/{dist/es → esm2015}/common/predicate.js +1 -0
  49. package/esm2015/common/provider.service.js +16 -0
  50. package/{dist/es → esm2015}/common/resizable-options.interface.js +1 -0
  51. package/{dist/es2015 → esm2015}/common/styles.js +0 -0
  52. package/{dist/es → esm2015}/common/table-data.interface.js +1 -0
  53. package/{dist/es2015 → esm2015}/config/command-icons.js +0 -0
  54. package/esm2015/config/commands.js +62 -0
  55. package/{dist/es2015 → esm2015}/config/schema.js +0 -0
  56. package/{dist/es2015 → esm2015}/config/semantic-nodes.js +1 -4
  57. package/{dist/es2015 → esm2015}/config/table-commands.js +0 -0
  58. package/{dist/es2015 → esm2015}/config/utils.js +1 -1
  59. package/esm2015/dialogs/colorpicker-dialog.component.js +117 -0
  60. package/esm2015/dialogs/file-link-dialog.component.js +209 -0
  61. package/esm2015/dialogs/font-family-dialog.component.js +106 -0
  62. package/esm2015/dialogs/font-size-dialog.component.js +106 -0
  63. package/esm2015/dialogs/format-dialog.component.js +106 -0
  64. package/{dist/es2015 → esm2015}/dialogs/image-dialog.component.js +60 -21
  65. package/esm2015/dialogs/insert-table-dialog.component.js +74 -0
  66. package/esm2015/dialogs/source-dialog.component.js +89 -0
  67. package/{dist/es2015 → esm2015}/editor-toolbar-state.js +0 -0
  68. package/{dist/es2015 → esm2015}/editor.component.js +331 -200
  69. package/{dist/es2015 → esm2015}/editor.module.js +205 -31
  70. package/{dist/es/common/active-marks.js → esm2015/kendo-angular-editor.js} +4 -0
  71. package/esm2015/localization/custom-messages.component.js +41 -0
  72. package/esm2015/localization/editor-localization.service.js +31 -0
  73. package/esm2015/localization/localized-messages.directive.js +32 -0
  74. package/esm2015/localization/messages.js +126 -0
  75. package/{dist/es2015/index.js → esm2015/main.js} +37 -47
  76. package/{dist/es2015 → esm2015}/package-metadata.js +1 -1
  77. package/{dist/es → esm2015}/preventable-events/paste-event-data.js +1 -0
  78. package/{dist/es2015 → esm2015}/preventable-events/paste-event.js +1 -1
  79. package/esm2015/preventable-events/preventable-event.js +27 -0
  80. package/esm2015/tools/alignment/editor-align-center-button.directive.js +42 -0
  81. package/esm2015/tools/alignment/editor-align-justify-button.directive.js +42 -0
  82. package/esm2015/tools/alignment/editor-align-left-button.directive.js +42 -0
  83. package/esm2015/tools/alignment/editor-align-right-button.directive.js +42 -0
  84. package/esm2015/tools/blockquote/editor-blockquote-button.directive.js +41 -0
  85. package/esm2015/tools/colorpicker/editor-back-color.directive.js +28 -0
  86. package/esm2015/tools/colorpicker/editor-colorpicker.component.js +262 -0
  87. package/esm2015/tools/colorpicker/editor-fore-color.directive.js +28 -0
  88. package/esm2015/tools/editor-clean-formatting-button.directive.js +41 -0
  89. package/esm2015/tools/fontfamily/editor-fontfamily-dropdownlist.component.js +104 -0
  90. package/{dist/es2015 → esm2015}/tools/fontfamily/editor-fontfamily.component.js +73 -57
  91. package/esm2015/tools/fontsize/editor-fontsize-dropdownlist.component.js +93 -0
  92. package/{dist/es2015 → esm2015}/tools/fontsize/editor-fontsize.component.js +72 -54
  93. package/esm2015/tools/format/editor-format-dropdownlist.component.js +160 -0
  94. package/{dist/es2015 → esm2015}/tools/format/editor-format.component.js +69 -51
  95. package/esm2015/tools/history/editor-redo-button.directive.js +42 -0
  96. package/esm2015/tools/history/editor-undo-button.directive.js +42 -0
  97. package/esm2015/tools/image/editor-insert-image-button.directive.js +41 -0
  98. package/esm2015/tools/indentation/editor-indent-button.directive.js +42 -0
  99. package/esm2015/tools/indentation/editor-outdent-button.directive.js +42 -0
  100. package/esm2015/tools/link/editor-create-link-button.directive.js +42 -0
  101. package/esm2015/tools/link/editor-insert-file-button.directive.js +34 -0
  102. package/esm2015/tools/link/editor-unlink-button.directive.js +42 -0
  103. package/esm2015/tools/list/editor-insert-ordered-list-button.directive.js +42 -0
  104. package/esm2015/tools/list/editor-insert-unordered-list-button.directive.js +42 -0
  105. package/{dist/es2015 → esm2015}/tools/print/editor-print-button.directive.js +18 -22
  106. package/esm2015/tools/select-all/select-all-button.directive.js +45 -0
  107. package/{dist/es2015 → esm2015}/tools/shared/dropdown-tool.directive.js +10 -10
  108. package/esm2015/tools/shared/editor-command-base.js +64 -0
  109. package/{dist/es2015 → esm2015}/tools/shared/editor-command-button.js +5 -5
  110. package/{dist/es2015 → esm2015}/tools/shared/editor-command-dialog.js +4 -5
  111. package/esm2015/tools/source/editor-view-source-button.directive.js +41 -0
  112. package/esm2015/tools/tables/editor-add-column-after-button.directive.js +35 -0
  113. package/esm2015/tools/tables/editor-add-column-before-button.directive.js +35 -0
  114. package/esm2015/tools/tables/editor-add-row-after-button.directive.js +35 -0
  115. package/esm2015/tools/tables/editor-add-row-before-button.directive.js +35 -0
  116. package/esm2015/tools/tables/editor-delete-column-button.directive.js +35 -0
  117. package/esm2015/tools/tables/editor-delete-row-button.directive.js +35 -0
  118. package/esm2015/tools/tables/editor-delete-table-button.directive.js +35 -0
  119. package/{dist/es2015 → esm2015}/tools/tables/editor-insert-table-button.component.js +66 -45
  120. package/esm2015/tools/tables/editor-merge-cells-button.directive.js +37 -0
  121. package/esm2015/tools/tables/editor-split-cell-button.directive.js +37 -0
  122. package/{dist/es2015 → esm2015}/tools/tables/popup-table-grid.component.js +32 -21
  123. package/esm2015/tools/tools.service.js +20 -0
  124. package/esm2015/tools/typographical-emphasis/editor-bold-button.directive.js +42 -0
  125. package/esm2015/tools/typographical-emphasis/editor-italic-button.directive.js +42 -0
  126. package/esm2015/tools/typographical-emphasis/editor-strikethrough-button.directive.js +42 -0
  127. package/esm2015/tools/typographical-emphasis/editor-subscript-button.directive.js +42 -0
  128. package/esm2015/tools/typographical-emphasis/editor-superscript-button.directive.js +42 -0
  129. package/esm2015/tools/typographical-emphasis/editor-underline-button.directive.js +42 -0
  130. package/{dist/es2015 → esm2015}/util.js +8 -0
  131. package/fesm2015/kendo-angular-editor.js +6396 -0
  132. package/kendo-angular-editor.d.ts +9 -0
  133. package/{dist/es2015/localization → localization}/custom-messages.component.d.ts +6 -3
  134. package/{dist/es2015/localization → localization}/editor-localization.service.d.ts +3 -0
  135. package/{dist/es2015/localization → localization}/localized-messages.directive.d.ts +5 -2
  136. package/{dist/es2015/localization → localization}/messages.d.ts +4 -1
  137. package/{dist/es/index.js → main.d.ts} +39 -47
  138. package/{dist/es2015/package-metadata.d.ts → package-metadata.d.ts} +0 -0
  139. package/package.json +44 -121
  140. package/{dist/es2015/preventable-events → preventable-events}/paste-event-data.d.ts +0 -0
  141. package/{dist/es2015/preventable-events → preventable-events}/paste-event.d.ts +1 -1
  142. package/preventable-events/preventable-event.d.ts +21 -0
  143. package/schematics/ngAdd/index.js +5 -2
  144. package/schematics/ngAdd/index.js.map +1 -1
  145. package/{dist/es2015/tools → tools}/alignment/editor-align-center-button.directive.d.ts +5 -2
  146. package/{dist/es2015/tools → tools}/alignment/editor-align-justify-button.directive.d.ts +5 -2
  147. package/{dist/es2015/tools → tools}/alignment/editor-align-left-button.directive.d.ts +5 -2
  148. package/{dist/es2015/tools → tools}/alignment/editor-align-right-button.directive.d.ts +5 -2
  149. package/{dist/es2015/tools → tools}/blockquote/editor-blockquote-button.directive.d.ts +5 -3
  150. package/{dist/es2015/tools → tools}/colorpicker/editor-back-color.directive.d.ts +3 -0
  151. package/{dist/es2015/tools → tools}/colorpicker/editor-colorpicker.component.d.ts +10 -6
  152. package/{dist/es2015/tools → tools}/colorpicker/editor-fore-color.directive.d.ts +3 -0
  153. package/{dist/es2015/tools → tools}/editor-clean-formatting-button.directive.d.ts +5 -2
  154. package/{dist/es2015/tools → tools}/fontfamily/editor-fontfamily-dropdownlist.component.d.ts +3 -0
  155. package/{dist/es2015/tools → tools}/fontfamily/editor-fontfamily.component.d.ts +10 -6
  156. package/{dist/es2015/tools → tools}/fontsize/editor-fontsize-dropdownlist.component.d.ts +3 -0
  157. package/{dist/es2015/tools → tools}/fontsize/editor-fontsize.component.d.ts +10 -6
  158. package/{dist/es2015/tools → tools}/format/editor-format-dropdownlist.component.d.ts +3 -0
  159. package/{dist/es2015/tools → tools}/format/editor-format.component.d.ts +10 -6
  160. package/{dist/es2015/tools → tools}/history/editor-redo-button.directive.d.ts +5 -2
  161. package/{dist/es2015/tools → tools}/history/editor-undo-button.directive.d.ts +5 -2
  162. package/{dist/es2015/tools → tools}/image/editor-insert-image-button.directive.d.ts +5 -2
  163. package/{dist/es2015/tools → tools}/indentation/editor-indent-button.directive.d.ts +5 -2
  164. package/{dist/es2015/tools → tools}/indentation/editor-outdent-button.directive.d.ts +5 -2
  165. package/{dist/es2015/tools → tools}/link/editor-create-link-button.directive.d.ts +5 -2
  166. package/{dist/es2015/tools → tools}/link/editor-insert-file-button.directive.d.ts +5 -2
  167. package/{dist/es2015/tools → tools}/link/editor-unlink-button.directive.d.ts +5 -2
  168. package/{dist/es2015/tools → tools}/list/editor-insert-ordered-list-button.directive.d.ts +5 -2
  169. package/{dist/es2015/tools → tools}/list/editor-insert-unordered-list-button.directive.d.ts +5 -2
  170. package/{dist/es2015/tools → tools}/print/editor-print-button.directive.d.ts +5 -3
  171. package/{dist/es2015/tools → tools}/select-all/select-all-button.directive.d.ts +5 -2
  172. package/{dist/es2015/tools → tools}/shared/dropdown-tool.directive.d.ts +4 -1
  173. package/{dist/es2015/tools → tools}/shared/editor-command-base.d.ts +8 -4
  174. package/{dist/es2015/tools → tools}/shared/editor-command-button.d.ts +5 -5
  175. package/{dist/es2015/tools → tools}/shared/editor-command-dialog.d.ts +4 -5
  176. package/{dist/es2015/tools → tools}/source/editor-view-source-button.directive.d.ts +5 -2
  177. package/{dist/es2015/tools → tools}/tables/editor-add-column-after-button.directive.d.ts +5 -2
  178. package/{dist/es2015/tools → tools}/tables/editor-add-column-before-button.directive.d.ts +5 -2
  179. package/{dist/es2015/tools → tools}/tables/editor-add-row-after-button.directive.d.ts +5 -2
  180. package/{dist/es2015/tools → tools}/tables/editor-add-row-before-button.directive.d.ts +5 -2
  181. package/{dist/es2015/tools → tools}/tables/editor-delete-column-button.directive.d.ts +5 -2
  182. package/{dist/es2015/tools → tools}/tables/editor-delete-row-button.directive.d.ts +5 -2
  183. package/{dist/es2015/tools → tools}/tables/editor-delete-table-button.directive.d.ts +5 -2
  184. package/{dist/es2015/tools → tools}/tables/editor-insert-table-button.component.d.ts +10 -9
  185. package/{dist/es2015/tools → tools}/tables/editor-merge-cells-button.directive.d.ts +5 -2
  186. package/{dist/es2015/tools → tools}/tables/editor-split-cell-button.directive.d.ts +5 -2
  187. package/{dist/es2015/tools → tools}/tables/popup-table-grid.component.d.ts +7 -6
  188. package/{dist/es2015/tools → tools}/tools.service.d.ts +3 -0
  189. package/{dist/es2015/tools → tools}/typographical-emphasis/editor-bold-button.directive.d.ts +5 -2
  190. package/{dist/es2015/tools → tools}/typographical-emphasis/editor-italic-button.directive.d.ts +5 -2
  191. package/{dist/es2015/tools → tools}/typographical-emphasis/editor-strikethrough-button.directive.d.ts +5 -2
  192. package/{dist/es2015/tools → tools}/typographical-emphasis/editor-subscript-button.directive.d.ts +5 -2
  193. package/{dist/es2015/tools → tools}/typographical-emphasis/editor-superscript-button.directive.d.ts +5 -2
  194. package/{dist/es2015/tools → tools}/typographical-emphasis/editor-underline-button.directive.d.ts +5 -2
  195. package/{dist/es2015/util.d.ts → util.d.ts} +7 -0
  196. package/dist/cdn/js/kendo-angular-editor.js +0 -20
  197. package/dist/cdn/main.js +0 -5
  198. package/dist/es/common/apply-to-word-options.js +0 -4
  199. package/dist/es/common/direction.js +0 -4
  200. package/dist/es/common/error-messages.js +0 -19
  201. package/dist/es/common/styles.js +0 -16
  202. package/dist/es/config/command-icons.js +0 -48
  203. package/dist/es/config/commands.js +0 -71
  204. package/dist/es/config/schema.js +0 -22
  205. package/dist/es/config/semantic-nodes.js +0 -32
  206. package/dist/es/config/table-commands.js +0 -14
  207. package/dist/es/config/utils.js +0 -102
  208. package/dist/es/dialogs/colorpicker-dialog.component.js +0 -70
  209. package/dist/es/dialogs/file-link-dialog.component.js +0 -126
  210. package/dist/es/dialogs/font-family-dialog.component.js +0 -65
  211. package/dist/es/dialogs/font-size-dialog.component.js +0 -65
  212. package/dist/es/dialogs/format-dialog.component.js +0 -65
  213. package/dist/es/dialogs/image-dialog.component.js +0 -102
  214. package/dist/es/dialogs/insert-table-dialog.component.js +0 -49
  215. package/dist/es/dialogs/source-dialog.component.js +0 -72
  216. package/dist/es/editor-toolbar-state.js +0 -280
  217. package/dist/es/editor.component.js +0 -1039
  218. package/dist/es/editor.module.js +0 -241
  219. package/dist/es/localization/custom-messages.component.js +0 -45
  220. package/dist/es/localization/editor-localization.service.js +0 -24
  221. package/dist/es/localization/localized-messages.directive.js +0 -36
  222. package/dist/es/localization/messages.js +0 -230
  223. package/dist/es/main.js +0 -9
  224. package/dist/es/package-metadata.js +0 -15
  225. package/dist/es/preventable-events/paste-event.js +0 -25
  226. package/dist/es/tools/alignment/editor-align-center-button.directive.js +0 -47
  227. package/dist/es/tools/alignment/editor-align-justify-button.directive.js +0 -47
  228. package/dist/es/tools/alignment/editor-align-left-button.directive.js +0 -47
  229. package/dist/es/tools/alignment/editor-align-right-button.directive.js +0 -47
  230. package/dist/es/tools/blockquote/editor-blockquote-button.directive.js +0 -48
  231. package/dist/es/tools/colorpicker/editor-back-color.directive.js +0 -28
  232. package/dist/es/tools/colorpicker/editor-colorpicker.component.js +0 -233
  233. package/dist/es/tools/colorpicker/editor-fore-color.directive.js +0 -28
  234. package/dist/es/tools/editor-clean-formatting-button.directive.js +0 -46
  235. package/dist/es/tools/fontfamily/editor-fontfamily-dropdownlist.component.js +0 -71
  236. package/dist/es/tools/fontfamily/editor-fontfamily.component.js +0 -211
  237. package/dist/es/tools/fontsize/editor-fontsize-dropdownlist.component.js +0 -71
  238. package/dist/es/tools/fontsize/editor-fontsize.component.js +0 -206
  239. package/dist/es/tools/format/editor-format-dropdownlist.component.js +0 -71
  240. package/dist/es/tools/format/editor-format.component.js +0 -202
  241. package/dist/es/tools/history/editor-redo-button.directive.js +0 -47
  242. package/dist/es/tools/history/editor-undo-button.directive.js +0 -47
  243. package/dist/es/tools/image/editor-insert-image-button.directive.js +0 -46
  244. package/dist/es/tools/indentation/editor-indent-button.directive.js +0 -47
  245. package/dist/es/tools/indentation/editor-outdent-button.directive.js +0 -47
  246. package/dist/es/tools/link/editor-create-link-button.directive.js +0 -47
  247. package/dist/es/tools/link/editor-insert-file-button.directive.js +0 -39
  248. package/dist/es/tools/link/editor-unlink-button.directive.js +0 -47
  249. package/dist/es/tools/list/editor-insert-ordered-list-button.directive.js +0 -47
  250. package/dist/es/tools/list/editor-insert-unordered-list-button.directive.js +0 -47
  251. package/dist/es/tools/print/editor-print-button.directive.js +0 -69
  252. package/dist/es/tools/select-all/select-all-button.directive.js +0 -50
  253. package/dist/es/tools/shared/dropdown-tool.directive.js +0 -41
  254. package/dist/es/tools/shared/editor-command-base.js +0 -49
  255. package/dist/es/tools/shared/editor-command-button.js +0 -34
  256. package/dist/es/tools/shared/editor-command-dialog.js +0 -30
  257. package/dist/es/tools/source/editor-view-source-button.directive.js +0 -46
  258. package/dist/es/tools/tables/editor-add-column-after-button.directive.js +0 -40
  259. package/dist/es/tools/tables/editor-add-column-before-button.directive.js +0 -40
  260. package/dist/es/tools/tables/editor-add-row-after-button.directive.js +0 -40
  261. package/dist/es/tools/tables/editor-add-row-before-button.directive.js +0 -40
  262. package/dist/es/tools/tables/editor-delete-column-button.directive.js +0 -40
  263. package/dist/es/tools/tables/editor-delete-row-button.directive.js +0 -40
  264. package/dist/es/tools/tables/editor-delete-table-button.directive.js +0 -40
  265. package/dist/es/tools/tables/editor-insert-table-button.component.js +0 -202
  266. package/dist/es/tools/tables/editor-merge-cells-button.directive.js +0 -42
  267. package/dist/es/tools/tables/editor-split-cell-button.directive.js +0 -42
  268. package/dist/es/tools/tables/popup-table-grid.component.js +0 -69
  269. package/dist/es/tools/tools.service.js +0 -20
  270. package/dist/es/tools/typographical-emphasis/editor-bold-button.directive.js +0 -47
  271. package/dist/es/tools/typographical-emphasis/editor-italic-button.directive.js +0 -47
  272. package/dist/es/tools/typographical-emphasis/editor-strikethrough-button.directive.js +0 -47
  273. package/dist/es/tools/typographical-emphasis/editor-subscript-button.directive.js +0 -47
  274. package/dist/es/tools/typographical-emphasis/editor-superscript-button.directive.js +0 -47
  275. package/dist/es/tools/typographical-emphasis/editor-underline-button.directive.js +0 -47
  276. package/dist/es/util.js +0 -127
  277. package/dist/es2015/common/commands.js +0 -4
  278. package/dist/es2015/common/font-family-item.interface.js +0 -4
  279. package/dist/es2015/common/font-size-item.interface.js +0 -4
  280. package/dist/es2015/common/format-item.interface.js +0 -4
  281. package/dist/es2015/common/image-data.interface.js +0 -4
  282. package/dist/es2015/common/link-data.interface.js +0 -4
  283. package/dist/es2015/common/paste-cleanup-settings.js +0 -4
  284. package/dist/es2015/common/plugins-function.js +0 -4
  285. package/dist/es2015/common/predicate.js +0 -4
  286. package/dist/es2015/common/resizable-options.interface.js +0 -4
  287. package/dist/es2015/common/table-data.interface.js +0 -4
  288. package/dist/es2015/config/commands.js +0 -67
  289. package/dist/es2015/dialogs/colorpicker-dialog.component.js +0 -92
  290. package/dist/es2015/dialogs/file-link-dialog.component.js +0 -163
  291. package/dist/es2015/dialogs/font-family-dialog.component.js +0 -84
  292. package/dist/es2015/dialogs/font-size-dialog.component.js +0 -84
  293. package/dist/es2015/dialogs/format-dialog.component.js +0 -84
  294. package/dist/es2015/dialogs/insert-table-dialog.component.js +0 -60
  295. package/dist/es2015/dialogs/source-dialog.component.js +0 -81
  296. package/dist/es2015/editor.module.d.ts +0 -45
  297. package/dist/es2015/index.d.ts +0 -72
  298. package/dist/es2015/index.metadata.json +0 -1
  299. package/dist/es2015/localization/custom-messages.component.js +0 -37
  300. package/dist/es2015/localization/editor-localization.service.js +0 -22
  301. package/dist/es2015/localization/localized-messages.directive.js +0 -32
  302. package/dist/es2015/localization/messages.js +0 -224
  303. package/dist/es2015/main.d.ts +0 -13
  304. package/dist/es2015/main.js +0 -9
  305. package/dist/es2015/preventable-events/paste-event-data.js +0 -4
  306. package/dist/es2015/tools/alignment/editor-align-center-button.directive.js +0 -45
  307. package/dist/es2015/tools/alignment/editor-align-justify-button.directive.js +0 -45
  308. package/dist/es2015/tools/alignment/editor-align-left-button.directive.js +0 -45
  309. package/dist/es2015/tools/alignment/editor-align-right-button.directive.js +0 -45
  310. package/dist/es2015/tools/blockquote/editor-blockquote-button.directive.js +0 -45
  311. package/dist/es2015/tools/colorpicker/editor-back-color.directive.js +0 -27
  312. package/dist/es2015/tools/colorpicker/editor-colorpicker.component.js +0 -249
  313. package/dist/es2015/tools/colorpicker/editor-fore-color.directive.js +0 -27
  314. package/dist/es2015/tools/editor-clean-formatting-button.directive.js +0 -44
  315. package/dist/es2015/tools/fontfamily/editor-fontfamily-dropdownlist.component.js +0 -99
  316. package/dist/es2015/tools/fontsize/editor-fontsize-dropdownlist.component.js +0 -94
  317. package/dist/es2015/tools/format/editor-format-dropdownlist.component.js +0 -127
  318. package/dist/es2015/tools/history/editor-redo-button.directive.js +0 -45
  319. package/dist/es2015/tools/history/editor-undo-button.directive.js +0 -45
  320. package/dist/es2015/tools/image/editor-insert-image-button.directive.js +0 -44
  321. package/dist/es2015/tools/indentation/editor-indent-button.directive.js +0 -45
  322. package/dist/es2015/tools/indentation/editor-outdent-button.directive.js +0 -45
  323. package/dist/es2015/tools/link/editor-create-link-button.directive.js +0 -45
  324. package/dist/es2015/tools/link/editor-insert-file-button.directive.js +0 -37
  325. package/dist/es2015/tools/link/editor-unlink-button.directive.js +0 -45
  326. package/dist/es2015/tools/list/editor-insert-ordered-list-button.directive.js +0 -45
  327. package/dist/es2015/tools/list/editor-insert-unordered-list-button.directive.js +0 -45
  328. package/dist/es2015/tools/select-all/select-all-button.directive.js +0 -48
  329. package/dist/es2015/tools/shared/editor-command-base.js +0 -46
  330. package/dist/es2015/tools/source/editor-view-source-button.directive.js +0 -44
  331. package/dist/es2015/tools/tables/editor-add-column-after-button.directive.js +0 -38
  332. package/dist/es2015/tools/tables/editor-add-column-before-button.directive.js +0 -38
  333. package/dist/es2015/tools/tables/editor-add-row-after-button.directive.js +0 -38
  334. package/dist/es2015/tools/tables/editor-add-row-before-button.directive.js +0 -38
  335. package/dist/es2015/tools/tables/editor-delete-column-button.directive.js +0 -38
  336. package/dist/es2015/tools/tables/editor-delete-row-button.directive.js +0 -38
  337. package/dist/es2015/tools/tables/editor-delete-table-button.directive.js +0 -38
  338. package/dist/es2015/tools/tables/editor-merge-cells-button.directive.js +0 -40
  339. package/dist/es2015/tools/tables/editor-split-cell-button.directive.js +0 -40
  340. package/dist/es2015/tools/tools.service.js +0 -22
  341. package/dist/es2015/tools/typographical-emphasis/editor-bold-button.directive.js +0 -45
  342. package/dist/es2015/tools/typographical-emphasis/editor-italic-button.directive.js +0 -45
  343. package/dist/es2015/tools/typographical-emphasis/editor-strikethrough-button.directive.js +0 -45
  344. package/dist/es2015/tools/typographical-emphasis/editor-subscript-button.directive.js +0 -45
  345. package/dist/es2015/tools/typographical-emphasis/editor-superscript-button.directive.js +0 -45
  346. package/dist/es2015/tools/typographical-emphasis/editor-underline-button.directive.js +0 -45
  347. package/dist/fesm2015/index.js +0 -5842
  348. package/dist/fesm5/index.js +0 -5300
  349. package/dist/npm/common/active-marks.js +0 -6
  350. package/dist/npm/common/apply-to-word-options.js +0 -6
  351. package/dist/npm/common/commands.js +0 -6
  352. package/dist/npm/common/direction.js +0 -6
  353. package/dist/npm/common/error-messages.js +0 -22
  354. package/dist/npm/common/font-family-item.interface.js +0 -6
  355. package/dist/npm/common/font-size-item.interface.js +0 -6
  356. package/dist/npm/common/format-item.interface.js +0 -6
  357. package/dist/npm/common/image-data.interface.js +0 -6
  358. package/dist/npm/common/link-data.interface.js +0 -6
  359. package/dist/npm/common/paste-cleanup-settings.js +0 -6
  360. package/dist/npm/common/plugins-function.js +0 -6
  361. package/dist/npm/common/predicate.js +0 -6
  362. package/dist/npm/common/resizable-options.interface.js +0 -6
  363. package/dist/npm/common/styles.js +0 -18
  364. package/dist/npm/common/table-data.interface.js +0 -6
  365. package/dist/npm/config/command-icons.js +0 -50
  366. package/dist/npm/config/commands.js +0 -112
  367. package/dist/npm/config/schema.js +0 -21
  368. package/dist/npm/config/semantic-nodes.js +0 -35
  369. package/dist/npm/config/table-commands.js +0 -16
  370. package/dist/npm/config/utils.js +0 -104
  371. package/dist/npm/dialogs/colorpicker-dialog.component.js +0 -72
  372. package/dist/npm/dialogs/file-link-dialog.component.js +0 -128
  373. package/dist/npm/dialogs/font-family-dialog.component.js +0 -67
  374. package/dist/npm/dialogs/font-size-dialog.component.js +0 -67
  375. package/dist/npm/dialogs/format-dialog.component.js +0 -67
  376. package/dist/npm/dialogs/image-dialog.component.js +0 -104
  377. package/dist/npm/dialogs/insert-table-dialog.component.js +0 -51
  378. package/dist/npm/dialogs/source-dialog.component.js +0 -74
  379. package/dist/npm/editor-toolbar-state.js +0 -282
  380. package/dist/npm/editor.component.js +0 -1041
  381. package/dist/npm/editor.module.js +0 -243
  382. package/dist/npm/index.js +0 -138
  383. package/dist/npm/localization/custom-messages.component.js +0 -47
  384. package/dist/npm/localization/editor-localization.service.js +0 -26
  385. package/dist/npm/localization/localized-messages.directive.js +0 -38
  386. package/dist/npm/localization/messages.js +0 -232
  387. package/dist/npm/main.js +0 -38
  388. package/dist/npm/package-metadata.js +0 -17
  389. package/dist/npm/preventable-events/paste-event-data.js +0 -6
  390. package/dist/npm/preventable-events/paste-event.js +0 -27
  391. package/dist/npm/tools/alignment/editor-align-center-button.directive.js +0 -49
  392. package/dist/npm/tools/alignment/editor-align-justify-button.directive.js +0 -49
  393. package/dist/npm/tools/alignment/editor-align-left-button.directive.js +0 -49
  394. package/dist/npm/tools/alignment/editor-align-right-button.directive.js +0 -49
  395. package/dist/npm/tools/blockquote/editor-blockquote-button.directive.js +0 -50
  396. package/dist/npm/tools/colorpicker/editor-back-color.directive.js +0 -30
  397. package/dist/npm/tools/colorpicker/editor-colorpicker.component.js +0 -235
  398. package/dist/npm/tools/colorpicker/editor-fore-color.directive.js +0 -30
  399. package/dist/npm/tools/editor-clean-formatting-button.directive.js +0 -48
  400. package/dist/npm/tools/fontfamily/editor-fontfamily-dropdownlist.component.js +0 -73
  401. package/dist/npm/tools/fontfamily/editor-fontfamily.component.js +0 -213
  402. package/dist/npm/tools/fontsize/editor-fontsize-dropdownlist.component.js +0 -73
  403. package/dist/npm/tools/fontsize/editor-fontsize.component.js +0 -208
  404. package/dist/npm/tools/format/editor-format-dropdownlist.component.js +0 -73
  405. package/dist/npm/tools/format/editor-format.component.js +0 -204
  406. package/dist/npm/tools/history/editor-redo-button.directive.js +0 -49
  407. package/dist/npm/tools/history/editor-undo-button.directive.js +0 -49
  408. package/dist/npm/tools/image/editor-insert-image-button.directive.js +0 -48
  409. package/dist/npm/tools/indentation/editor-indent-button.directive.js +0 -49
  410. package/dist/npm/tools/indentation/editor-outdent-button.directive.js +0 -49
  411. package/dist/npm/tools/link/editor-create-link-button.directive.js +0 -49
  412. package/dist/npm/tools/link/editor-insert-file-button.directive.js +0 -41
  413. package/dist/npm/tools/link/editor-unlink-button.directive.js +0 -49
  414. package/dist/npm/tools/list/editor-insert-ordered-list-button.directive.js +0 -49
  415. package/dist/npm/tools/list/editor-insert-unordered-list-button.directive.js +0 -49
  416. package/dist/npm/tools/print/editor-print-button.directive.js +0 -71
  417. package/dist/npm/tools/select-all/select-all-button.directive.js +0 -52
  418. package/dist/npm/tools/shared/dropdown-tool.directive.js +0 -43
  419. package/dist/npm/tools/shared/editor-command-base.js +0 -51
  420. package/dist/npm/tools/shared/editor-command-button.js +0 -36
  421. package/dist/npm/tools/shared/editor-command-dialog.js +0 -32
  422. package/dist/npm/tools/source/editor-view-source-button.directive.js +0 -48
  423. package/dist/npm/tools/tables/editor-add-column-after-button.directive.js +0 -42
  424. package/dist/npm/tools/tables/editor-add-column-before-button.directive.js +0 -42
  425. package/dist/npm/tools/tables/editor-add-row-after-button.directive.js +0 -42
  426. package/dist/npm/tools/tables/editor-add-row-before-button.directive.js +0 -42
  427. package/dist/npm/tools/tables/editor-delete-column-button.directive.js +0 -42
  428. package/dist/npm/tools/tables/editor-delete-row-button.directive.js +0 -42
  429. package/dist/npm/tools/tables/editor-delete-table-button.directive.js +0 -42
  430. package/dist/npm/tools/tables/editor-insert-table-button.component.js +0 -204
  431. package/dist/npm/tools/tables/editor-merge-cells-button.directive.js +0 -44
  432. package/dist/npm/tools/tables/editor-split-cell-button.directive.js +0 -44
  433. package/dist/npm/tools/tables/popup-table-grid.component.js +0 -71
  434. package/dist/npm/tools/tools.service.js +0 -22
  435. package/dist/npm/tools/typographical-emphasis/editor-bold-button.directive.js +0 -49
  436. package/dist/npm/tools/typographical-emphasis/editor-italic-button.directive.js +0 -49
  437. package/dist/npm/tools/typographical-emphasis/editor-strikethrough-button.directive.js +0 -49
  438. package/dist/npm/tools/typographical-emphasis/editor-subscript-button.directive.js +0 -49
  439. package/dist/npm/tools/typographical-emphasis/editor-superscript-button.directive.js +0 -49
  440. package/dist/npm/tools/typographical-emphasis/editor-underline-button.directive.js +0 -49
  441. package/dist/npm/util.js +0 -130
  442. package/dist/systemjs/kendo-angular-editor.js +0 -5
@@ -6,15 +6,15 @@ import { TemplateRef, NgZone } 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 { EditorLocalizationService } from '../../localization/editor-localization.service';
9
- import { EditorComponent } from '../../editor.component';
10
9
  import { DialogService } from '@progress/kendo-angular-dialog';
10
+ import { ProviderService } from '../../common/provider.service';
11
+ import * as i0 from "@angular/core";
11
12
  /**
12
13
  * A component which configures an existing ColorPickerComponent as a ToolBar tool.
13
14
  * To associate a `kendo-toolbar-colorpicker` with an Editor command that changes the
14
15
  * foreground or the background color of the text, use the `kendoEditorForeColor` or `kendoEditorBackColor` directive.
15
16
  */
16
17
  export declare class EditorColorPickerComponent extends ToolBarToolComponent {
17
- private editor;
18
18
  private localization;
19
19
  private dialogService;
20
20
  private ngZone;
@@ -50,11 +50,12 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
50
50
  *
51
51
  * For backward compatibility with configurations using the deprecated "view" input.
52
52
  */
53
- view: ColorPickerView;
53
+ set view(view: ColorPickerView);
54
+ get view(): ColorPickerView;
54
55
  /**
55
56
  * @hidden
56
57
  */
57
- readonly title: string;
58
+ get title(): string;
58
59
  toolbarTemplate: TemplateRef<any>;
59
60
  popupTemplate: TemplateRef<any>;
60
61
  private element;
@@ -62,7 +63,8 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
62
63
  private colorPickerButton;
63
64
  private subs;
64
65
  private valueCache;
65
- constructor(editor: EditorComponent, localization: EditorLocalizationService, dialogService: DialogService, ngZone: NgZone);
66
+ private editor;
67
+ constructor(localization: EditorLocalizationService, dialogService: DialogService, ngZone: NgZone, providerService: ProviderService);
66
68
  ngOnInit(): void;
67
69
  ngOnDestroy(): void;
68
70
  /**
@@ -84,7 +86,7 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
84
86
  /**
85
87
  * @hidden
86
88
  */
87
- readonly outerWidth: number;
89
+ get outerWidth(): number;
88
90
  /**
89
91
  * @hidden
90
92
  */
@@ -101,4 +103,6 @@ export declare class EditorColorPickerComponent extends ToolBarToolComponent {
101
103
  * @hidden
102
104
  */
103
105
  handleKey(): boolean;
106
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorColorPickerComponent, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorColorPickerComponent, "kendo-toolbar-colorpicker", never, { "value": "value"; "icon": "icon"; "paletteSettings": "paletteSettings"; "editorCommand": "editorCommand"; "disabled": "disabled"; "views": "views"; "view": "view"; }, {}, never, never>;
104
108
  }
@@ -3,6 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { EditorColorPickerComponent } from './editor-colorpicker.component';
6
+ import * as i0 from "@angular/core";
6
7
  /**
7
8
  * A directive which configures an `EditorColorPickerComponent`
8
9
  * for manipulating the foreground color of the text
@@ -11,4 +12,6 @@ import { EditorColorPickerComponent } from './editor-colorpicker.component';
11
12
  export declare class EditorForeColorDirective {
12
13
  private colorPicker;
13
14
  constructor(colorPicker: EditorColorPickerComponent);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorForeColorDirective, never>;
16
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorForeColorDirective, "[kendoEditorForeColor]", never, {}, {}, never>;
14
17
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../editor.component';
7
6
  import { EditorCommandButton } from './shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../localization/editor-localization.service';
8
+ import { ProviderService } from '../common/provider.service';
9
9
  import { EditorToolsService } from './tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Clean Formatting tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -25,5 +26,7 @@ import { EditorToolsService } from './tools.service';
25
26
  * ```
26
27
  */
27
28
  export declare class EditorCleanFormattingButtonDirective extends EditorCommandButton {
28
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
29
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorCleanFormattingButtonDirective, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorCleanFormattingButtonDirective, "kendo-toolbar-button[kendoEditorCleanFormattingButton]", never, {}, {}, never>;
29
32
  }
@@ -5,6 +5,7 @@
5
5
  import { ElementRef, EventEmitter } from '@angular/core';
6
6
  import { ItemDisabledFn, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
7
  import { FontFamilyItem } from '../../common/font-family-item.interface';
8
+ import * as i0 from "@angular/core";
8
9
  /**
9
10
  * @hidden
10
11
  */
@@ -21,4 +22,6 @@ export declare class FontFamilyDropDownListComponent {
21
22
  dropDownList: DropDownListComponent;
22
23
  onValueChange(tag: string): void;
23
24
  focus(): void;
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>;
24
27
  }
@@ -4,12 +4,13 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { TemplateRef, ElementRef, EventEmitter } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
- import { EditorComponent } from '../../editor.component';
8
7
  import { FontFamilyItem } from '../../common/font-family-item.interface';
9
8
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
10
9
  import { DialogService } from '@progress/kendo-angular-dialog';
11
10
  import { FontFamilyDropDownListComponent } from './editor-fontfamily-dropdownlist.component';
11
+ import { ProviderService } from '../../common/provider.service';
12
12
  import { EditorToolsService } from '../tools.service';
13
+ import * as i0 from "@angular/core";
13
14
  /**
14
15
  * A component which configures an existing `DropDownListComponent` as an Editor tool
15
16
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -22,7 +23,6 @@ import { EditorToolsService } from '../tools.service';
22
23
  * ```
23
24
  */
24
25
  export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
25
- private editor;
26
26
  private dialogService;
27
27
  private localization;
28
28
  private toolsService;
@@ -32,7 +32,8 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
32
32
  /**
33
33
  * Overrides the default font list.
34
34
  */
35
- data: FontFamilyItem[];
35
+ set data(fonts: FontFamilyItem[]);
36
+ get data(): FontFamilyItem[];
36
37
  /**
37
38
  * Fires when the user updates the value of the drop-down list.
38
39
  */
@@ -54,16 +55,17 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
54
55
  index: number;
55
56
  }) => boolean;
56
57
  private subs;
58
+ private editor;
57
59
  private _data;
58
- constructor(editor: EditorComponent, dialogService: DialogService, localization: EditorLocalizationService, toolsService: EditorToolsService);
60
+ constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
59
61
  ngOnInit(): void;
60
62
  /**
61
63
  * @hidden
62
64
  */
63
65
  onValueChange(ev: string): void;
64
66
  ngOnDestroy(): void;
65
- readonly outerWidth: number;
66
- readonly title: string;
67
+ get outerWidth(): number;
68
+ get title(): string;
67
69
  /**
68
70
  * @hidden
69
71
  */
@@ -80,4 +82,6 @@ export declare class EditorFontFamilyComponent extends ToolBarToolComponent {
80
82
  * @hidden
81
83
  */
82
84
  handleKey(): boolean;
85
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorFontFamilyComponent, never>;
86
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontFamilyComponent, "kendo-toolbar-dropdownlist[kendoEditorFontFamily]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never>;
83
87
  }
@@ -5,6 +5,7 @@
5
5
  import { ElementRef, EventEmitter } from '@angular/core';
6
6
  import { ItemDisabledFn, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
7
  import { FontSizeItem } from '../../common/font-size-item.interface';
8
+ import * as i0 from "@angular/core";
8
9
  /**
9
10
  * @hidden
10
11
  */
@@ -21,4 +22,6 @@ export declare class FontSizeDropDownListComponent {
21
22
  dropDownList: DropDownListComponent;
22
23
  onValueChange(size: string): void;
23
24
  focus(): void;
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>;
24
27
  }
@@ -4,13 +4,14 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { TemplateRef, ElementRef, EventEmitter } from '@angular/core';
6
6
  import { ToolBarToolComponent } from '@progress/kendo-angular-toolbar';
7
- import { EditorComponent } from '../../editor.component';
8
7
  import { ItemDisabledFn } from '@progress/kendo-angular-dropdowns';
9
8
  import { FontSizeItem } from '../../common/font-size-item.interface';
10
9
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
11
10
  import { DialogService } from '@progress/kendo-angular-dialog';
12
11
  import { FontSizeDropDownListComponent } from './editor-fontsize-dropdownlist.component';
12
+ import { ProviderService } from '../../common/provider.service';
13
13
  import { EditorToolsService } from '../tools.service';
14
+ import * as i0 from "@angular/core";
14
15
  /**
15
16
  * A component which configures an existing `DropDownListComponent` as an Editor tool
16
17
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -23,7 +24,6 @@ import { EditorToolsService } from '../tools.service';
23
24
  * ```
24
25
  */
25
26
  export declare class EditorFontSizeComponent extends ToolBarToolComponent {
26
- private editor;
27
27
  private dialogService;
28
28
  private localization;
29
29
  private toolsService;
@@ -33,7 +33,8 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
33
33
  /**
34
34
  * Overrides the default font size list.
35
35
  */
36
- data: FontSizeItem[];
36
+ set data(sizes: FontSizeItem[]);
37
+ get data(): FontSizeItem[];
37
38
  /**
38
39
  * Fires when the user updates the value of the drop-down list.
39
40
  */
@@ -52,16 +53,17 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
52
53
  */
53
54
  itemDisabled: ItemDisabledFn;
54
55
  private subs;
56
+ private editor;
55
57
  private _data;
56
- constructor(editor: EditorComponent, dialogService: DialogService, localization: EditorLocalizationService, toolsService: EditorToolsService);
58
+ constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
57
59
  ngOnInit(): void;
58
60
  /**
59
61
  * @hidden
60
62
  */
61
63
  onValueChange(ev: string): void;
62
64
  ngOnDestroy(): void;
63
- readonly outerWidth: number;
64
- readonly title: string;
65
+ get outerWidth(): number;
66
+ get title(): string;
65
67
  /**
66
68
  * @hidden
67
69
  */
@@ -78,4 +80,6 @@ export declare class EditorFontSizeComponent extends ToolBarToolComponent {
78
80
  * @hidden
79
81
  */
80
82
  handleKey(): boolean;
83
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorFontSizeComponent, never>;
84
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorFontSizeComponent, "kendo-toolbar-dropdownlist[kendoEditorFontSize]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never>;
81
85
  }
@@ -5,6 +5,7 @@
5
5
  import { ElementRef, EventEmitter } from '@angular/core';
6
6
  import { ItemDisabledFn, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
7
  import { FormatItem } from '../../common/format-item.interface';
8
+ import * as i0 from "@angular/core";
8
9
  /**
9
10
  * @hidden
10
11
  */
@@ -21,4 +22,6 @@ export declare class FormatDropDownListComponent {
21
22
  dropDownList: DropDownListComponent;
22
23
  onValueChange(tag: string): void;
23
24
  focus(): void;
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>;
24
27
  }
@@ -6,11 +6,12 @@ import { TemplateRef, EventEmitter, ElementRef } 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';
9
- import { EditorComponent } from '../../editor.component';
10
9
  import { FormatItem } from '../../common/format-item.interface';
11
10
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
12
11
  import { FormatDropDownListComponent } from './editor-format-dropdownlist.component';
12
+ import { ProviderService } from '../../common/provider.service';
13
13
  import { EditorToolsService } from '../tools.service';
14
+ import * as i0 from "@angular/core";
14
15
  /**
15
16
  * A component which configures an existing `DropDownListComponent` as an Editor tool
16
17
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -23,7 +24,6 @@ import { EditorToolsService } from '../tools.service';
23
24
  * ```
24
25
  */
25
26
  export declare class EditorFormatComponent extends ToolBarToolComponent {
26
- private editor;
27
27
  private dialogService;
28
28
  private localization;
29
29
  private toolsService;
@@ -35,7 +35,8 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
35
35
  /**
36
36
  * Overrides the default format items list.
37
37
  */
38
- data: FormatItem[];
38
+ set data(formatItems: FormatItem[]);
39
+ get data(): FormatItem[];
39
40
  /**
40
41
  * Fires when the user updates the value of the drop-down list.
41
42
  */
@@ -46,15 +47,16 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
46
47
  formatButton: ElementRef;
47
48
  private subs;
48
49
  private _data;
49
- constructor(editor: EditorComponent, dialogService: DialogService, localization: EditorLocalizationService, toolsService: EditorToolsService);
50
+ private editor;
51
+ constructor(dialogService: DialogService, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
50
52
  ngOnInit(): void;
51
53
  /**
52
54
  * @hidden
53
55
  */
54
56
  onValueChange(ev: string): void;
55
57
  ngOnDestroy(): void;
56
- readonly outerWidth: number;
57
- readonly title: string;
58
+ get outerWidth(): number;
59
+ get title(): string;
58
60
  /**
59
61
  * @hidden
60
62
  */
@@ -71,4 +73,6 @@ export declare class EditorFormatComponent extends ToolBarToolComponent {
71
73
  * @hidden
72
74
  */
73
75
  handleKey(): boolean;
76
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorFormatComponent, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditorFormatComponent, "kendo-toolbar-dropdownlist[kendoEditorFormat]", never, { "data": "data"; }, { "valueChange": "valueChange"; }, never, never>;
74
78
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Redo tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorRedoButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorRedoButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorRedoButtonDirective, "kendo-toolbar-button[kendoEditorRedoButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Undo tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorUndoButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorUndoButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUndoButtonDirective, "kendo-toolbar-button[kendoEditorUndoButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandDialog } from '../shared/editor-command-dialog';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor InsertImage tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -25,5 +26,7 @@ import { EditorToolsService } from '../tools.service';
25
26
  * ```
26
27
  */
27
28
  export declare class EditorInsertImageButtonDirective extends EditorCommandDialog {
28
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
29
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertImageButtonDirective, never>;
31
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertImageButtonDirective, "kendo-toolbar-button[kendoEditorInsertImageButton]", never, {}, {}, never>;
29
32
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Indent tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorIndentButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorIndentButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorIndentButtonDirective, "kendo-toolbar-button[kendoEditorIndentButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Outdent tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorOutdentButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorOutdentButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorOutdentButtonDirective, "kendo-toolbar-button[kendoEditorOutdentButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandDialog } from '../shared/editor-command-dialog';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor CreateLink tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorCreateLinkButtonDirective extends EditorCommandDialog {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorCreateLinkButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorCreateLinkButtonDirective, "kendo-toolbar-button[kendoEditorCreateLinkButton]", never, {}, {}, never>;
30
33
  }
@@ -2,11 +2,12 @@
2
2
  * Copyright © 2021 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 { EditorComponent } from '../../editor.component';
6
5
  import { EditorCommandDialog } from '../shared/editor-command-dialog';
7
6
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from "../../common/provider.service";
9
9
  import { EditorToolsService } from "../tools.service";
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor 'Insert File' tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -18,5 +19,7 @@ import { EditorToolsService } from "../tools.service";
18
19
  * ```
19
20
  */
20
21
  export declare class EditorInsertFileButtonDirective extends EditorCommandDialog {
21
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
22
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertFileButtonDirective, never>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertFileButtonDirective, "kendo-toolbar-button[kendoEditorInsertFileButton]", never, {}, {}, never>;
22
25
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Unlink tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorUnlinkButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorUnlinkButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorUnlinkButtonDirective, "kendo-toolbar-button[kendoEditorUnlinkButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor InsertOrderedList tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorInsertOrderedListButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertOrderedListButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertOrderedListButtonDirective, "kendo-toolbar-button[kendoEditorInsertOrderedListButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
8
+ import { ProviderService } from '../../common/provider.service';
9
9
  import { EditorToolsService } from '../tools.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor InsertUnorderedList tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -26,5 +27,7 @@ import { EditorToolsService } from '../tools.service';
26
27
  * ```
27
28
  */
28
29
  export declare class EditorInsertUnorderedListButtonDirective extends EditorCommandButton {
29
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
30
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorInsertUnorderedListButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorInsertUnorderedListButtonDirective, "kendo-toolbar-button[kendoEditorInsertUnorderedListButton]", never, {}, {}, never>;
30
33
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
9
8
  import { EditorToolsService } from '../tools.service';
9
+ import { ProviderService } from '../../common/provider.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor Print tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -27,8 +28,9 @@ import { EditorToolsService } from '../tools.service';
27
28
  * ```
28
29
  */
29
30
  export declare class EditorPrintDirective extends EditorCommandButton {
30
- protected editor: EditorComponent;
31
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
31
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
32
32
  ngAfterViewInit(): void;
33
33
  protected clickHandler(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorPrintDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorPrintDirective, "kendo-toolbar-button[kendoEditorPrintButton]", never, {}, {}, never>;
34
36
  }
@@ -3,10 +3,11 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ToolBarButtonComponent } from '@progress/kendo-angular-toolbar';
6
- import { EditorComponent } from '../../editor.component';
7
6
  import { EditorCommandButton } from '../shared/editor-command-button';
8
7
  import { EditorLocalizationService } from '../../localization/editor-localization.service';
9
8
  import { EditorToolsService } from '../tools.service';
9
+ import { ProviderService } from '../../common/provider.service';
10
+ import * as i0 from "@angular/core";
10
11
  /**
11
12
  * A directive which configures an existing `ToolBarButtonComponent` as an Editor SelectAll tool
12
13
  * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
@@ -25,6 +26,8 @@ import { EditorToolsService } from '../tools.service';
25
26
  * ```
26
27
  */
27
28
  export declare class EditorSelectAllButtonDirective extends EditorCommandButton {
28
- constructor(button: ToolBarButtonComponent, editor: EditorComponent, localization: EditorLocalizationService, toolsService: EditorToolsService);
29
+ constructor(button: ToolBarButtonComponent, localization: EditorLocalizationService, providerService: ProviderService, toolsService: EditorToolsService);
29
30
  protected clickHandler(): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorSelectAllButtonDirective, never>;
32
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditorSelectAllButtonDirective, "kendo-toolbar-button[kendoEditorSelectAllButton]", never, {}, {}, never>;
30
33
  }
@@ -3,15 +3,18 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ElementRef, NgZone } from '@angular/core';
6
+ import * as i0 from "@angular/core";
6
7
  /**
7
8
  * @hidden
8
9
  */
9
10
  export declare class DropDownToolDirective {
10
11
  private hostEl;
11
12
  private zone;
12
- private readonly hostElement;
13
+ private get hostElement();
13
14
  constructor(hostEl: ElementRef, zone: NgZone);
14
15
  ngAfterViewInit(): void;
15
16
  ngOnDestroy(): void;
16
17
  private preventDefault;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropDownToolDirective, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DropDownToolDirective, "[kendoEditorDropDownTool]", never, {}, {}, never>;
17
20
  }