@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
@@ -1,73 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_dropdowns_1 = require("@progress/kendo-angular-dropdowns");
10
- /**
11
- * @hidden
12
- */
13
- var FontSizeDropDownListComponent = /** @class */ (function () {
14
- function FontSizeDropDownListComponent() {
15
- this.valueChange = new core_1.EventEmitter();
16
- }
17
- FontSizeDropDownListComponent.prototype.onValueChange = function (size) {
18
- this.valueChange.emit(size);
19
- };
20
- FontSizeDropDownListComponent.prototype.focus = function () {
21
- this.dropDownList.focus();
22
- };
23
- tslib_1.__decorate([
24
- core_1.Input(),
25
- tslib_1.__metadata("design:type", Array)
26
- ], FontSizeDropDownListComponent.prototype, "data", void 0);
27
- tslib_1.__decorate([
28
- core_1.Input(),
29
- tslib_1.__metadata("design:type", String)
30
- ], FontSizeDropDownListComponent.prototype, "value", void 0);
31
- tslib_1.__decorate([
32
- core_1.Input(),
33
- tslib_1.__metadata("design:type", Object)
34
- ], FontSizeDropDownListComponent.prototype, "defaultItem", void 0);
35
- tslib_1.__decorate([
36
- core_1.Input(),
37
- tslib_1.__metadata("design:type", Function)
38
- ], FontSizeDropDownListComponent.prototype, "itemDisabled", void 0);
39
- tslib_1.__decorate([
40
- core_1.Input(),
41
- tslib_1.__metadata("design:type", String)
42
- ], FontSizeDropDownListComponent.prototype, "title", void 0);
43
- tslib_1.__decorate([
44
- core_1.Input(),
45
- tslib_1.__metadata("design:type", Boolean)
46
- ], FontSizeDropDownListComponent.prototype, "disabled", void 0);
47
- tslib_1.__decorate([
48
- core_1.Input(),
49
- tslib_1.__metadata("design:type", Number)
50
- ], FontSizeDropDownListComponent.prototype, "tabindex", void 0);
51
- tslib_1.__decorate([
52
- core_1.Output(),
53
- tslib_1.__metadata("design:type", core_1.EventEmitter)
54
- ], FontSizeDropDownListComponent.prototype, "valueChange", void 0);
55
- tslib_1.__decorate([
56
- core_1.ViewChild('element', { static: true }),
57
- tslib_1.__metadata("design:type", core_1.ElementRef)
58
- ], FontSizeDropDownListComponent.prototype, "element", void 0);
59
- tslib_1.__decorate([
60
- core_1.ViewChild('element', { read: kendo_angular_dropdowns_1.DropDownListComponent, static: true }),
61
- tslib_1.__metadata("design:type", kendo_angular_dropdowns_1.DropDownListComponent)
62
- ], FontSizeDropDownListComponent.prototype, "dropDownList", void 0);
63
- FontSizeDropDownListComponent = tslib_1.__decorate([
64
- core_1.Component({
65
- // tslint:disable-next-line:no-forward-ref
66
- selector: 'kendo-editor-fontsize-dropdownlist',
67
- template: "\n <kendo-dropdownlist\n #element\n kendoEditorDropDownTool\n [defaultItem]=\"defaultItem\"\n [textField]=\"'text'\"\n [valueField]=\"'size'\"\n [data]=\"data\"\n [(value)]=\"value\"\n [valuePrimitive]=\"true\"\n [itemDisabled]=\"itemDisabled\"\n [attr.title]=\"title\"\n [disabled]=\"disabled\"\n [tabindex]=\"tabindex\"\n (valueChange)=\"onValueChange($event)\"\n >\n </kendo-dropdownlist>\n ",
68
- styles: ["\n .k-dropdownlist {\n width: 13em;\n }\n "]
69
- })
70
- ], FontSizeDropDownListComponent);
71
- return FontSizeDropDownListComponent;
72
- }());
73
- exports.FontSizeDropDownListComponent = FontSizeDropDownListComponent;
@@ -1,208 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_toolbar_1 = require("@progress/kendo-angular-toolbar");
10
- var util_1 = require("../../util");
11
- var editor_component_1 = require("../../editor.component");
12
- var editor_localization_service_1 = require("../../localization/editor-localization.service");
13
- var kendo_angular_dialog_1 = require("@progress/kendo-angular-dialog");
14
- var font_size_dialog_component_1 = require("../../dialogs/font-size-dialog.component");
15
- var editor_fontsize_dropdownlist_component_1 = require("./editor-fontsize-dropdownlist.component");
16
- var tools_service_1 = require("../tools.service");
17
- /**
18
- * A component which configures an existing `DropDownListComponent` as an Editor tool
19
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
20
- * The component associates a `kendo-dropdownlist` with an Editor command that changes the font size of a content block and
21
- * automatically defines the options of the drop-down list and sets its values.
22
- *
23
- * @example
24
- * ```ts-no-run
25
- * <kendo-toolbar-dropdownlist kendoEditorFontSize></kendo-toolbar-dropdownlist>
26
- * ```
27
- */
28
- var EditorFontSizeComponent = /** @class */ (function (_super) {
29
- tslib_1.__extends(EditorFontSizeComponent, _super);
30
- function EditorFontSizeComponent(editor, dialogService, localization, toolsService) {
31
- var _this = _super.call(this) || this;
32
- _this.editor = editor;
33
- _this.dialogService = dialogService;
34
- _this.localization = localization;
35
- _this.toolsService = toolsService;
36
- _this.disabled = false;
37
- _this.tabindex = -1;
38
- /**
39
- * Fires when the user updates the value of the drop-down list.
40
- */
41
- _this.valueChange = new core_1.EventEmitter();
42
- _this._data = [
43
- { text: '8px', size: 8 },
44
- { text: '10px', size: 10 },
45
- { text: '12px', size: 12 },
46
- { text: '14px', size: 14 },
47
- { text: '18px', size: 18 },
48
- { text: '24px', size: 24 },
49
- { text: '36px', size: 36 }
50
- ];
51
- return _this;
52
- }
53
- EditorFontSizeComponent_1 = EditorFontSizeComponent;
54
- Object.defineProperty(EditorFontSizeComponent.prototype, "data", {
55
- get: function () {
56
- return this._data;
57
- },
58
- /**
59
- * Overrides the default font size list.
60
- */
61
- set: function (sizes) {
62
- this._data = sizes || this._data;
63
- },
64
- enumerable: true,
65
- configurable: true
66
- });
67
- EditorFontSizeComponent.prototype.ngOnInit = function () {
68
- var _this = this;
69
- this.itemDisabled = function (itemArgs) {
70
- if (!_this.overflows && _this.fontSizeDropDownList && !_this.fontSizeDropDownList.dropDownList.isOpen) {
71
- return true; //disable all items in order to prevent navigation when DDL is closed
72
- }
73
- else {
74
- return itemArgs.dataItem.size === null;
75
- }
76
- };
77
- setTimeout(function () {
78
- _this.defaultItem = { text: _this.title, size: null };
79
- _this.toolsService.needsCheck.next();
80
- });
81
- this.subs = this.editor.stateChange.subscribe(function (_a) {
82
- // remove units(px, em, rem...)
83
- // string#match returns array
84
- var style = _a.style;
85
- _this.value = (util_1.getUniqueStyleValues(style.selected, 'font-size').match(/\d+/g) || [null])[0];
86
- _this.disabled = style.disabled;
87
- });
88
- };
89
- /**
90
- * @hidden
91
- */
92
- EditorFontSizeComponent.prototype.onValueChange = function (ev) {
93
- if (util_1.isPresent(ev)) {
94
- this.editor.exec('fontSize', ev);
95
- this.editor.view.focus();
96
- this.valueChange.emit(this.data.find(function (d) { return d.size === parseInt(ev, 10); }));
97
- }
98
- };
99
- EditorFontSizeComponent.prototype.ngOnDestroy = function () {
100
- if (this.subs) {
101
- this.subs.unsubscribe();
102
- }
103
- };
104
- Object.defineProperty(EditorFontSizeComponent.prototype, "outerWidth", {
105
- get: function () {
106
- if (this.element) {
107
- return util_1.outerWidth(this.element.nativeElement);
108
- }
109
- },
110
- enumerable: true,
111
- configurable: true
112
- });
113
- Object.defineProperty(EditorFontSizeComponent.prototype, "title", {
114
- get: function () {
115
- return this.localization.get('fontSize');
116
- },
117
- enumerable: true,
118
- configurable: true
119
- });
120
- /**
121
- * @hidden
122
- */
123
- EditorFontSizeComponent.prototype.openDialog = function () {
124
- var dialogSettings = {
125
- appendTo: this.editor.dialogContainer,
126
- content: font_size_dialog_component_1.FontSizeDialogComponent
127
- };
128
- this.editor.toolbar.toggle(false);
129
- var dialogContent = this.dialogService.open(dialogSettings).content.instance;
130
- dialogContent.setData({
131
- editor: this.editor,
132
- data: this.data,
133
- defaultItem: this.defaultItem,
134
- value: this.value,
135
- itemDisabled: this.itemDisabled
136
- });
137
- };
138
- /**
139
- * @hidden
140
- */
141
- EditorFontSizeComponent.prototype.canFocus = function () {
142
- return !this.disabled;
143
- };
144
- /**
145
- * @hidden
146
- */
147
- EditorFontSizeComponent.prototype.focus = function () {
148
- this.tabindex = 0;
149
- if (this.overflows) {
150
- this.fontSizeButton.nativeElement.focus();
151
- }
152
- else {
153
- this.fontSizeDropDownList.focus();
154
- }
155
- };
156
- /**
157
- * @hidden
158
- */
159
- EditorFontSizeComponent.prototype.handleKey = function () {
160
- this.tabindex = -1;
161
- return false;
162
- };
163
- var EditorFontSizeComponent_1;
164
- tslib_1.__decorate([
165
- core_1.Input(),
166
- tslib_1.__metadata("design:type", Array),
167
- tslib_1.__metadata("design:paramtypes", [Array])
168
- ], EditorFontSizeComponent.prototype, "data", null);
169
- tslib_1.__decorate([
170
- core_1.Output(),
171
- tslib_1.__metadata("design:type", core_1.EventEmitter)
172
- ], EditorFontSizeComponent.prototype, "valueChange", void 0);
173
- tslib_1.__decorate([
174
- core_1.ViewChild('toolbarTemplate', { static: true }),
175
- tslib_1.__metadata("design:type", core_1.TemplateRef)
176
- ], EditorFontSizeComponent.prototype, "toolbarTemplate", void 0);
177
- tslib_1.__decorate([
178
- core_1.ViewChild('popupTemplate', { static: true }),
179
- tslib_1.__metadata("design:type", core_1.TemplateRef)
180
- ], EditorFontSizeComponent.prototype, "popupTemplate", void 0);
181
- tslib_1.__decorate([
182
- core_1.ViewChild('element', { static: false }),
183
- tslib_1.__metadata("design:type", core_1.ElementRef)
184
- ], EditorFontSizeComponent.prototype, "element", void 0);
185
- tslib_1.__decorate([
186
- core_1.ViewChild('element', { read: editor_fontsize_dropdownlist_component_1.FontSizeDropDownListComponent, static: false }),
187
- tslib_1.__metadata("design:type", editor_fontsize_dropdownlist_component_1.FontSizeDropDownListComponent)
188
- ], EditorFontSizeComponent.prototype, "fontSizeDropDownList", void 0);
189
- tslib_1.__decorate([
190
- core_1.ViewChild('fontSizeButton', { static: false }),
191
- tslib_1.__metadata("design:type", core_1.ElementRef)
192
- ], EditorFontSizeComponent.prototype, "fontSizeButton", void 0);
193
- EditorFontSizeComponent = EditorFontSizeComponent_1 = tslib_1.__decorate([
194
- core_1.Component({
195
- // tslint:disable-next-line:no-forward-ref
196
- providers: [{ provide: kendo_angular_toolbar_1.ToolBarToolComponent, useExisting: core_1.forwardRef(function () { return EditorFontSizeComponent_1; }) }],
197
- selector: 'kendo-toolbar-dropdownlist[kendoEditorFontSize]',
198
- template: "\n <ng-template #toolbarTemplate>\n <kendo-editor-fontsize-dropdownlist\n #element\n [defaultItem]=\"defaultItem\"\n [data]=\"data\"\n [(value)]=\"value\"\n [itemDisabled]=\"itemDisabled\"\n [title]=\"title\"\n [disabled]=\"disabled\"\n [tabindex]=\"tabindex\"\n (valueChange)=\"onValueChange($event)\"\n >\n </kendo-editor-fontsize-dropdownlist>\n </ng-template>\n <ng-template #popupTemplate>\n <button\n tabindex=\"-1\"\n type=\"button\"\n kendoButton\n #fontSizeButton\n class=\"k-overflow-button\"\n [icon]=\"'font-size'\"\n [attr.title]=\"title\"\n [disabled]=\"disabled\"\n [tabindex]=\"tabindex\"\n (click)=\"openDialog()\"\n >\n {{ title }}\n </button>\n </ng-template>\n "
199
- }),
200
- tslib_1.__param(0, core_1.Host()),
201
- tslib_1.__metadata("design:paramtypes", [editor_component_1.EditorComponent,
202
- kendo_angular_dialog_1.DialogService,
203
- editor_localization_service_1.EditorLocalizationService,
204
- tools_service_1.EditorToolsService])
205
- ], EditorFontSizeComponent);
206
- return EditorFontSizeComponent;
207
- }(kendo_angular_toolbar_1.ToolBarToolComponent));
208
- exports.EditorFontSizeComponent = EditorFontSizeComponent;
@@ -1,73 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_dropdowns_1 = require("@progress/kendo-angular-dropdowns");
10
- /**
11
- * @hidden
12
- */
13
- var FormatDropDownListComponent = /** @class */ (function () {
14
- function FormatDropDownListComponent() {
15
- this.valueChange = new core_1.EventEmitter();
16
- }
17
- FormatDropDownListComponent.prototype.onValueChange = function (tag) {
18
- this.valueChange.emit(tag);
19
- };
20
- FormatDropDownListComponent.prototype.focus = function () {
21
- this.dropDownList.focus();
22
- };
23
- tslib_1.__decorate([
24
- core_1.Input(),
25
- tslib_1.__metadata("design:type", Array)
26
- ], FormatDropDownListComponent.prototype, "data", void 0);
27
- tslib_1.__decorate([
28
- core_1.Input(),
29
- tslib_1.__metadata("design:type", String)
30
- ], FormatDropDownListComponent.prototype, "value", void 0);
31
- tslib_1.__decorate([
32
- core_1.Input(),
33
- tslib_1.__metadata("design:type", Object)
34
- ], FormatDropDownListComponent.prototype, "defaultItem", void 0);
35
- tslib_1.__decorate([
36
- core_1.Input(),
37
- tslib_1.__metadata("design:type", Function)
38
- ], FormatDropDownListComponent.prototype, "itemDisabled", void 0);
39
- tslib_1.__decorate([
40
- core_1.Input(),
41
- tslib_1.__metadata("design:type", String)
42
- ], FormatDropDownListComponent.prototype, "title", void 0);
43
- tslib_1.__decorate([
44
- core_1.Input(),
45
- tslib_1.__metadata("design:type", Boolean)
46
- ], FormatDropDownListComponent.prototype, "disabled", void 0);
47
- tslib_1.__decorate([
48
- core_1.Input(),
49
- tslib_1.__metadata("design:type", Number)
50
- ], FormatDropDownListComponent.prototype, "tabindex", void 0);
51
- tslib_1.__decorate([
52
- core_1.Output(),
53
- tslib_1.__metadata("design:type", core_1.EventEmitter)
54
- ], FormatDropDownListComponent.prototype, "valueChange", void 0);
55
- tslib_1.__decorate([
56
- core_1.ViewChild('element', { static: true }),
57
- tslib_1.__metadata("design:type", core_1.ElementRef)
58
- ], FormatDropDownListComponent.prototype, "element", void 0);
59
- tslib_1.__decorate([
60
- core_1.ViewChild('element', { read: kendo_angular_dropdowns_1.DropDownListComponent, static: true }),
61
- tslib_1.__metadata("design:type", kendo_angular_dropdowns_1.DropDownListComponent)
62
- ], FormatDropDownListComponent.prototype, "dropDownList", void 0);
63
- FormatDropDownListComponent = tslib_1.__decorate([
64
- core_1.Component({
65
- // tslint:disable-next-line:no-forward-ref
66
- selector: 'kendo-editor-format-dropdownlist',
67
- template: "\n <kendo-dropdownlist\n #element\n kendoEditorDropDownTool\n [defaultItem]=\"defaultItem\"\n [textField]=\"'text'\"\n [valueField]=\"'tag'\"\n [data]=\"data\"\n [(value)]=\"value\"\n [valuePrimitive]=\"true\"\n [itemDisabled]=\"itemDisabled\"\n [attr.title]=\"title\"\n [disabled]=\"disabled\"\n [tabindex]=\"tabindex\"\n (valueChange)=\"onValueChange($event)\"\n >\n <ng-template kendoDropDownListItemTemplate let-dataItem>\n <ng-container [ngSwitch]=\"dataItem.tag\">\n <span *ngSwitchCase=\"'h1'\" style=\"display: block; font-size: 2em; margin-left: 0; font-weight: bold;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchCase=\"'h2'\" style=\"display: block; font-size: 1.5em; margin-left: 0; font-weight: bold;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchCase=\"'h3'\" style=\"display: block; font-size: 1.17em; margin-left: 0; font-weight: bold;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchCase=\"'h4'\" style=\"display: block; font-size: 1em; margin-left: 0; font-weight: bold;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchCase=\"'h5'\" style=\"display: block; font-size: .83em; margin-left: 0; font-weight: bold;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchCase=\"'h6'\" style=\"display: block; font-size: .67em; margin-left: 0; font-weight: bold;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchCase=\"'p'\" style=\"display: block; margin-left: 0;\">\n {{ dataItem.text }}\n </span>\n\n <span *ngSwitchDefault>{{ dataItem.text }}</span>\n </ng-container>\n </ng-template>\n </kendo-dropdownlist>\n ",
68
- styles: ["\n .k-dropdownlist {\n width: 13em;\n }\n "]
69
- })
70
- ], FormatDropDownListComponent);
71
- return FormatDropDownListComponent;
72
- }());
73
- exports.FormatDropDownListComponent = FormatDropDownListComponent;
@@ -1,204 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_toolbar_1 = require("@progress/kendo-angular-toolbar");
10
- var kendo_angular_dialog_1 = require("@progress/kendo-angular-dialog");
11
- var util_1 = require("../../util");
12
- var editor_component_1 = require("../../editor.component");
13
- var editor_localization_service_1 = require("../../localization/editor-localization.service");
14
- var format_dialog_component_1 = require("../../dialogs/format-dialog.component");
15
- var editor_format_dropdownlist_component_1 = require("./editor-format-dropdownlist.component");
16
- var tools_service_1 = require("../tools.service");
17
- /**
18
- * A component which configures an existing `DropDownListComponent` as an Editor tool
19
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
20
- * The component associates a `kendo-dropdownlist` with an Editor command that changes the format of a content block and
21
- * automatically defines the options of the drop-down list and sets its values.
22
- *
23
- * @example
24
- * ```ts-no-run
25
- * <kendo-toolbar-dropdownlist kendoEditorFormat></kendo-toolbar-dropdownlist>
26
- * ```
27
- */
28
- var EditorFormatComponent = /** @class */ (function (_super) {
29
- tslib_1.__extends(EditorFormatComponent, _super);
30
- function EditorFormatComponent(editor, dialogService, localization, toolsService) {
31
- var _this = _super.call(this) || this;
32
- _this.editor = editor;
33
- _this.dialogService = dialogService;
34
- _this.localization = localization;
35
- _this.toolsService = toolsService;
36
- _this.disabled = false;
37
- _this.tabindex = -1;
38
- /**
39
- * Fires when the user updates the value of the drop-down list.
40
- */
41
- _this.valueChange = new core_1.EventEmitter();
42
- _this._data = [
43
- { text: 'Paragraph', tag: 'p' },
44
- { text: 'Heading 1', tag: 'h1' },
45
- { text: 'Heading 2', tag: 'h2' },
46
- { text: 'Heading 3', tag: 'h3' },
47
- { text: 'Heading 4', tag: 'h4' },
48
- { text: 'Heading 5', tag: 'h5' },
49
- { text: 'Heading 6', tag: 'h6' }
50
- ];
51
- return _this;
52
- }
53
- EditorFormatComponent_1 = EditorFormatComponent;
54
- Object.defineProperty(EditorFormatComponent.prototype, "data", {
55
- get: function () {
56
- return this._data;
57
- },
58
- /**
59
- * Overrides the default format items list.
60
- */
61
- set: function (formatItems) {
62
- this._data = formatItems || this._data;
63
- },
64
- enumerable: true,
65
- configurable: true
66
- });
67
- EditorFormatComponent.prototype.ngOnInit = function () {
68
- var _this = this;
69
- this.itemDisabled = function (itemArgs) {
70
- if (!_this.overflows && _this.formatDropDownList && !_this.formatDropDownList.dropDownList.isOpen) {
71
- return true; //disable all items in order to prevent navigation when DDL is closed
72
- }
73
- else {
74
- return itemArgs.dataItem.tag === null;
75
- }
76
- };
77
- setTimeout(function () {
78
- _this.defaultItem = { text: _this.title, tag: null };
79
- _this.toolsService.needsCheck.next();
80
- });
81
- this.subs = this.editor.stateChange.subscribe(function (_a) {
82
- var format = _a.format;
83
- var index = _this.data.findIndex(function (item) { return item.tag === format.selected.tag; });
84
- _this.value = index !== -1 ? format.selected.tag : null;
85
- _this.disabled = format.disabled;
86
- });
87
- };
88
- /**
89
- * @hidden
90
- */
91
- EditorFormatComponent.prototype.onValueChange = function (ev) {
92
- if (util_1.isPresent(ev)) {
93
- this.editor.exec('format', { tag: ev });
94
- this.editor.view.focus();
95
- this.valueChange.emit(this.data.find(function (d) { return d.tag === ev; }));
96
- }
97
- };
98
- EditorFormatComponent.prototype.ngOnDestroy = function () {
99
- if (this.subs) {
100
- this.subs.unsubscribe();
101
- }
102
- };
103
- Object.defineProperty(EditorFormatComponent.prototype, "outerWidth", {
104
- get: function () {
105
- var element = this.formatDropDownList.element;
106
- if (element) {
107
- return util_1.outerWidth(element.nativeElement);
108
- }
109
- },
110
- enumerable: true,
111
- configurable: true
112
- });
113
- Object.defineProperty(EditorFormatComponent.prototype, "title", {
114
- get: function () {
115
- return this.localization.get('format');
116
- },
117
- enumerable: true,
118
- configurable: true
119
- });
120
- /**
121
- * @hidden
122
- */
123
- EditorFormatComponent.prototype.openDialog = function () {
124
- var dialogSettings = {
125
- appendTo: this.editor.dialogContainer,
126
- content: format_dialog_component_1.FormatDialogComponent
127
- };
128
- this.editor.toolbar.toggle(false);
129
- var dialogContent = this.dialogService.open(dialogSettings).content.instance;
130
- dialogContent.setData({
131
- editor: this.editor,
132
- data: this.data,
133
- defaultItem: this.defaultItem,
134
- value: this.value,
135
- itemDisabled: this.itemDisabled
136
- });
137
- };
138
- /**
139
- * @hidden
140
- */
141
- EditorFormatComponent.prototype.canFocus = function () {
142
- return !this.disabled;
143
- };
144
- /**
145
- * @hidden
146
- */
147
- EditorFormatComponent.prototype.focus = function () {
148
- this.tabindex = 0;
149
- if (this.overflows) {
150
- this.formatButton.nativeElement.focus();
151
- }
152
- else {
153
- this.formatDropDownList.focus();
154
- }
155
- };
156
- /**
157
- * @hidden
158
- */
159
- EditorFormatComponent.prototype.handleKey = function () {
160
- this.tabindex = -1;
161
- return false;
162
- };
163
- var EditorFormatComponent_1;
164
- tslib_1.__decorate([
165
- core_1.Input(),
166
- tslib_1.__metadata("design:type", Array),
167
- tslib_1.__metadata("design:paramtypes", [Array])
168
- ], EditorFormatComponent.prototype, "data", null);
169
- tslib_1.__decorate([
170
- core_1.Output(),
171
- tslib_1.__metadata("design:type", core_1.EventEmitter)
172
- ], EditorFormatComponent.prototype, "valueChange", void 0);
173
- tslib_1.__decorate([
174
- core_1.ViewChild('toolbarTemplate', { static: true }),
175
- tslib_1.__metadata("design:type", core_1.TemplateRef)
176
- ], EditorFormatComponent.prototype, "toolbarTemplate", void 0);
177
- tslib_1.__decorate([
178
- core_1.ViewChild('popupTemplate', { static: true }),
179
- tslib_1.__metadata("design:type", core_1.TemplateRef)
180
- ], EditorFormatComponent.prototype, "popupTemplate", void 0);
181
- tslib_1.__decorate([
182
- core_1.ViewChild('formatDropDownList', { static: false }),
183
- tslib_1.__metadata("design:type", editor_format_dropdownlist_component_1.FormatDropDownListComponent)
184
- ], EditorFormatComponent.prototype, "formatDropDownList", void 0);
185
- tslib_1.__decorate([
186
- core_1.ViewChild('formatButton', { static: false }),
187
- tslib_1.__metadata("design:type", core_1.ElementRef)
188
- ], EditorFormatComponent.prototype, "formatButton", void 0);
189
- EditorFormatComponent = EditorFormatComponent_1 = tslib_1.__decorate([
190
- core_1.Component({
191
- // tslint:disable-next-line:no-forward-ref
192
- providers: [{ provide: kendo_angular_toolbar_1.ToolBarToolComponent, useExisting: core_1.forwardRef(function () { return EditorFormatComponent_1; }) }],
193
- selector: 'kendo-toolbar-dropdownlist[kendoEditorFormat]',
194
- template: "\n <ng-template #toolbarTemplate>\n <kendo-editor-format-dropdownlist\n #formatDropDownList\n [defaultItem]=\"defaultItem\"\n [data]=\"data\"\n [(value)]=\"value\"\n [itemDisabled]=\"itemDisabled\"\n [title]=\"title\"\n [disabled]=\"disabled\"\n [tabindex]=\"tabindex\"\n (valueChange)=\"onValueChange($event)\"\n >\n </kendo-editor-format-dropdownlist>\n </ng-template>\n <ng-template #popupTemplate>\n <button\n #formatButton\n [tabindex]=\"tabindex\"\n type=\"button\"\n kendoButton\n class=\"k-overflow-button\"\n [icon]=\"'apply-format'\"\n [attr.title]=\"title\"\n [disabled]=\"disabled\"\n [tabindex]=\"tabindex\"\n (click)=\"openDialog()\"\n >\n {{ title }}\n </button>\n </ng-template>\n "
195
- }),
196
- tslib_1.__param(0, core_1.Host()),
197
- tslib_1.__metadata("design:paramtypes", [editor_component_1.EditorComponent,
198
- kendo_angular_dialog_1.DialogService,
199
- editor_localization_service_1.EditorLocalizationService,
200
- tools_service_1.EditorToolsService])
201
- ], EditorFormatComponent);
202
- return EditorFormatComponent;
203
- }(kendo_angular_toolbar_1.ToolBarToolComponent));
204
- exports.EditorFormatComponent = EditorFormatComponent;
@@ -1,49 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_toolbar_1 = require("@progress/kendo-angular-toolbar");
10
- var editor_component_1 = require("../../editor.component");
11
- var editor_command_button_1 = require("../shared/editor-command-button");
12
- var editor_localization_service_1 = require("../../localization/editor-localization.service");
13
- var tools_service_1 = require("../tools.service");
14
- /**
15
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Redo tool
16
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
17
- * The directive will predefine the `icon` and `click` event handlers of the button.
18
- * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
19
- *
20
- * @example
21
- * ```ts-no-run
22
- * <kendo-toolbar-button kendoEditorRedoButton></kendo-toolbar-button>
23
- * ```
24
- *
25
- * The following example demonstrates how to change the default icon that is applied by the directive.
26
- *
27
- * @example
28
- * ```ts-no-run
29
- * <kendo-toolbar-button kendoEditorRedoButton icon="blogger"></kendo-toolbar-button>
30
- * ```
31
- */
32
- var EditorRedoButtonDirective = /** @class */ (function (_super) {
33
- tslib_1.__extends(EditorRedoButtonDirective, _super);
34
- function EditorRedoButtonDirective(button, editor, localization, toolsService) {
35
- return _super.call(this, 'redo', button, editor, localization, toolsService) || this;
36
- }
37
- EditorRedoButtonDirective = tslib_1.__decorate([
38
- core_1.Directive({
39
- selector: 'kendo-toolbar-button[kendoEditorRedoButton]'
40
- }),
41
- tslib_1.__param(1, core_1.Host()),
42
- tslib_1.__metadata("design:paramtypes", [kendo_angular_toolbar_1.ToolBarButtonComponent,
43
- editor_component_1.EditorComponent,
44
- editor_localization_service_1.EditorLocalizationService,
45
- tools_service_1.EditorToolsService])
46
- ], EditorRedoButtonDirective);
47
- return EditorRedoButtonDirective;
48
- }(editor_command_button_1.EditorCommandButton));
49
- exports.EditorRedoButtonDirective = EditorRedoButtonDirective;
@@ -1,49 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2021 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- "use strict";
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- var tslib_1 = require("tslib");
8
- var core_1 = require("@angular/core");
9
- var kendo_angular_toolbar_1 = require("@progress/kendo-angular-toolbar");
10
- var editor_component_1 = require("../../editor.component");
11
- var editor_command_button_1 = require("../shared/editor-command-button");
12
- var editor_localization_service_1 = require("../../localization/editor-localization.service");
13
- var tools_service_1 = require("../tools.service");
14
- /**
15
- * A directive which configures an existing `ToolBarButtonComponent` as an Editor Undo tool
16
- * ([see example]({% slug toolbartools_editor %}#toc-built-in-tools)).
17
- * The directive will predefine the `icon` and `click` event handlers of the button.
18
- * In addition, the directive updates the `disabled` state of the button according to the cursor position in the editing area.
19
- *
20
- * @example
21
- * ```ts-no-run
22
- * <kendo-toolbar-button kendoEditorUndoButton></kendo-toolbar-button>
23
- * ```
24
- *
25
- * The following example demonstrates how to change the default icon that is applied by the directive.
26
- *
27
- * @example
28
- * ```ts-no-run
29
- * <kendo-toolbar-button kendoEditorUndoButton icon="blogger"></kendo-toolbar-button>
30
- * ```
31
- */
32
- var EditorUndoButtonDirective = /** @class */ (function (_super) {
33
- tslib_1.__extends(EditorUndoButtonDirective, _super);
34
- function EditorUndoButtonDirective(button, editor, localization, toolsService) {
35
- return _super.call(this, 'undo', button, editor, localization, toolsService) || this;
36
- }
37
- EditorUndoButtonDirective = tslib_1.__decorate([
38
- core_1.Directive({
39
- selector: 'kendo-toolbar-button[kendoEditorUndoButton]'
40
- }),
41
- tslib_1.__param(1, core_1.Host()),
42
- tslib_1.__metadata("design:paramtypes", [kendo_angular_toolbar_1.ToolBarButtonComponent,
43
- editor_component_1.EditorComponent,
44
- editor_localization_service_1.EditorLocalizationService,
45
- tools_service_1.EditorToolsService])
46
- ], EditorUndoButtonDirective);
47
- return EditorUndoButtonDirective;
48
- }(editor_command_button_1.EditorCommandButton));
49
- exports.EditorUndoButtonDirective = EditorUndoButtonDirective;