jodit 3.19.1 → 3.19.2

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 (191) hide show
  1. package/build/jodit.es2018.en.css +3665 -1821
  2. package/build/jodit.es2018.en.js +15502 -127
  3. package/build/plugins/speech-recognize/speech-recognize.es2018.en.css +1 -1
  4. package/build/plugins/speech-recognize/speech-recognize.es2018.en.js +1 -1
  5. package/package.json +10 -11
  6. package/src/core/plugin/plugin-system.ts +5 -0
  7. package/src/index.ts +1 -1
  8. package/src/plugins/index.ts +61 -63
  9. package/src/types/index.d.ts +1 -1
  10. package/types/index.d.ts +1 -1
  11. package/types/modules/widget/color-picker/color-picker.d.ts +30 -0
  12. package/types/modules/widget/file-selector/file-selector.d.ts +54 -0
  13. package/types/modules/widget/index.d.ts +13 -0
  14. package/types/modules/widget/tabs/tabs.d.ts +38 -0
  15. package/types/plugins/about/about.d.ts +9 -0
  16. package/types/plugins/add-new-line/add-new-line.d.ts +38 -0
  17. package/types/plugins/add-new-line/config.d.ts +36 -0
  18. package/types/plugins/backspace/backspace.d.ts +28 -0
  19. package/types/plugins/backspace/cases/check-join-neighbors.d.ts +13 -0
  20. package/types/plugins/backspace/cases/check-join-two-lists.d.ts +23 -0
  21. package/types/plugins/backspace/cases/check-not-collapsed.d.ts +23 -0
  22. package/types/plugins/backspace/cases/check-remove-char.d.ts +24 -0
  23. package/types/plugins/backspace/cases/check-remove-content-not-editable.d.ts +14 -0
  24. package/types/plugins/backspace/cases/check-remove-empty-neighbor.d.ts +23 -0
  25. package/types/plugins/backspace/cases/check-remove-empty-parent.d.ts +24 -0
  26. package/types/plugins/backspace/cases/check-remove-unbreakable-element.d.ts +24 -0
  27. package/types/plugins/backspace/cases/check-table-cell.d.ts +24 -0
  28. package/types/plugins/backspace/cases/check-unwrap-first-list-item.d.ts +24 -0
  29. package/types/plugins/backspace/cases/index.d.ts +8 -0
  30. package/types/plugins/backspace/config.d.ts +20 -0
  31. package/types/plugins/backspace/helpers.d.ts +14 -0
  32. package/types/plugins/bold/bold.d.ts +13 -0
  33. package/types/plugins/class-span/class-span.d.ts +37 -0
  34. package/types/plugins/clean-html/clean-html.d.ts +40 -0
  35. package/types/plugins/clean-html/config.d.ts +77 -0
  36. package/types/plugins/clean-html/helpers/get-hash.d.ts +13 -0
  37. package/types/plugins/clean-html/helpers/index.d.ts +12 -0
  38. package/types/plugins/clean-html/helpers/remove-format/remove-format-for-collapsed-selection.d.ts +18 -0
  39. package/types/plugins/clean-html/helpers/remove-format/remove-format-for-selection.d.ts +14 -0
  40. package/types/plugins/clean-html/helpers/visitor/filters/allow-attributes.d.ts +13 -0
  41. package/types/plugins/clean-html/helpers/visitor/filters/fill-empty-paragraph.d.ts +13 -0
  42. package/types/plugins/clean-html/helpers/visitor/filters/index.d.ts +17 -0
  43. package/types/plugins/clean-html/helpers/visitor/filters/remove-inv-text-nodes.d.ts +13 -0
  44. package/types/plugins/clean-html/helpers/visitor/filters/replace-old-tags.d.ts +13 -0
  45. package/types/plugins/clean-html/helpers/visitor/filters/sanitize-attributes.d.ts +13 -0
  46. package/types/plugins/clean-html/helpers/visitor/filters/try-remove-node.d.ts +13 -0
  47. package/types/plugins/clean-html/helpers/visitor/visit-node-walker.d.ts +13 -0
  48. package/types/plugins/clipboard/clipboard.d.ts +22 -0
  49. package/types/plugins/clipboard/config.d.ts +6 -0
  50. package/types/plugins/color/color.d.ts +14 -0
  51. package/types/plugins/color/config.d.ts +6 -0
  52. package/types/plugins/copy-format/copy-format.d.ts +10 -0
  53. package/types/plugins/drag-and-drop/drag-and-drop.d.ts +27 -0
  54. package/types/plugins/drag-and-drop-element/config.d.ts +14 -0
  55. package/types/plugins/drag-and-drop-element/drag-and-drop-element.d.ts +50 -0
  56. package/types/plugins/enter/enter.d.ts +25 -0
  57. package/types/plugins/enter/helpers/check-br.d.ts +14 -0
  58. package/types/plugins/enter/helpers/check-unsplittable-box.d.ts +14 -0
  59. package/types/plugins/enter/helpers/get-block-wrapper.d.ts +14 -0
  60. package/types/plugins/enter/helpers/has-previous-block.d.ts +13 -0
  61. package/types/plugins/enter/helpers/index.d.ts +16 -0
  62. package/types/plugins/enter/helpers/insert-paragraph.d.ts +14 -0
  63. package/types/plugins/enter/helpers/process-empty-li-leaf.d.ts +14 -0
  64. package/types/plugins/enter/helpers/split-fragment.d.ts +15 -0
  65. package/types/plugins/enter/helpers/wrap-text.d.ts +15 -0
  66. package/types/plugins/error-messages/error-messages.d.ts +27 -0
  67. package/types/plugins/file/file.d.ts +10 -0
  68. package/types/plugins/focus/focus.d.ts +19 -0
  69. package/types/plugins/font/config.d.ts +11 -0
  70. package/types/plugins/font/font.d.ts +14 -0
  71. package/types/plugins/format-block/format-block.d.ts +15 -0
  72. package/types/plugins/fullsize/config.d.ts +34 -0
  73. package/types/plugins/fullsize/fullsize.d.ts +15 -0
  74. package/types/plugins/hotkeys/config.d.ts +14 -0
  75. package/types/plugins/hotkeys/hotkeys.d.ts +24 -0
  76. package/types/plugins/hr/hr.d.ts +10 -0
  77. package/types/plugins/iframe/config.d.ts +65 -0
  78. package/types/plugins/iframe/iframe.d.ts +15 -0
  79. package/types/plugins/image/image.d.ts +10 -0
  80. package/types/plugins/image-processor/config.d.ts +16 -0
  81. package/types/plugins/image-processor/image-processor.d.ts +29 -0
  82. package/types/plugins/image-properties/config.d.ts +70 -0
  83. package/types/plugins/image-properties/image-properties.d.ts +70 -0
  84. package/types/plugins/image-properties/templates/form.d.ts +10 -0
  85. package/types/plugins/image-properties/templates/main-tab.d.ts +10 -0
  86. package/types/plugins/image-properties/templates/position-tab.d.ts +10 -0
  87. package/types/plugins/indent/config.d.ts +14 -0
  88. package/types/plugins/indent/helpers.d.ts +10 -0
  89. package/types/plugins/indent/indent.d.ts +14 -0
  90. package/types/plugins/index.d.ts +66 -0
  91. package/types/plugins/inline-popup/config/config.d.ts +18 -0
  92. package/types/plugins/inline-popup/inline-popup.d.ts +69 -0
  93. package/types/plugins/justify/justify.d.ts +13 -0
  94. package/types/plugins/key-arrow-outside/key-arrow-outside.d.ts +18 -0
  95. package/types/plugins/limit/config.d.ts +22 -0
  96. package/types/plugins/limit/limit.d.ts +36 -0
  97. package/types/plugins/line-height/config.d.ts +20 -0
  98. package/types/plugins/line-height/line-height.d.ts +20 -0
  99. package/types/plugins/link/config.d.ts +57 -0
  100. package/types/plugins/link/link.d.ts +25 -0
  101. package/types/plugins/link/template.d.ts +10 -0
  102. package/types/plugins/media/config.d.ts +22 -0
  103. package/types/plugins/media/media.d.ts +14 -0
  104. package/types/plugins/mobile/config.d.ts +18 -0
  105. package/types/plugins/mobile/mobile.d.ts +14 -0
  106. package/types/plugins/ordered-list/config.d.ts +6 -0
  107. package/types/plugins/ordered-list/ordered-list.d.ts +20 -0
  108. package/types/plugins/paste/config.d.ts +38 -0
  109. package/types/plugins/paste/helpers.d.ts +23 -0
  110. package/types/plugins/paste/interface.d.ts +19 -0
  111. package/types/plugins/paste/paste.d.ts +52 -0
  112. package/types/plugins/paste-from-word/config.d.ts +35 -0
  113. package/types/plugins/paste-from-word/paste-from-word.d.ts +27 -0
  114. package/types/plugins/paste-storage/paste-storage.d.ts +28 -0
  115. package/types/plugins/placeholder/config.d.ts +44 -0
  116. package/types/plugins/placeholder/placeholder.d.ts +29 -0
  117. package/types/plugins/powered-by-jodit/powered-by-jodit.d.ts +18 -0
  118. package/types/plugins/preview/preview.d.ts +11 -0
  119. package/types/plugins/print/lib/generate-critical-css.d.ts +13 -0
  120. package/types/plugins/print/print.d.ts +10 -0
  121. package/types/plugins/redo-undo/redo-undo.d.ts +19 -0
  122. package/types/plugins/resize-cells/config.d.ts +11 -0
  123. package/types/plugins/resize-cells/resize-cells.d.ts +77 -0
  124. package/types/plugins/resize-handler/config.d.ts +12 -0
  125. package/types/plugins/resize-handler/resize-handler.d.ts +43 -0
  126. package/types/plugins/resizer/config.d.ts +50 -0
  127. package/types/plugins/resizer/resizer.d.ts +67 -0
  128. package/types/plugins/search/config.d.ts +36 -0
  129. package/types/plugins/search/helpers/index.d.ts +10 -0
  130. package/types/plugins/search/helpers/sentence-finder.d.ts +21 -0
  131. package/types/plugins/search/helpers/wrap-ranges-texts-in-tmp-span.d.ts +14 -0
  132. package/types/plugins/search/search.d.ts +56 -0
  133. package/types/plugins/search/ui/search.d.ts +37 -0
  134. package/types/plugins/select/config.d.ts +21 -0
  135. package/types/plugins/select/select.d.ts +36 -0
  136. package/types/plugins/select-cells/config.d.ts +11 -0
  137. package/types/plugins/select-cells/select-cells.d.ts +59 -0
  138. package/types/plugins/size/config.d.ts +15 -0
  139. package/types/plugins/size/size.d.ts +44 -0
  140. package/types/plugins/source/config.d.ts +46 -0
  141. package/types/plugins/source/editor/engines/ace.d.ts +41 -0
  142. package/types/plugins/source/editor/engines/area.d.ts +28 -0
  143. package/types/plugins/source/editor/engines/index.d.ts +10 -0
  144. package/types/plugins/source/editor/factory.d.ts +10 -0
  145. package/types/plugins/source/editor/sourceEditor.d.ts +27 -0
  146. package/types/plugins/source/source.d.ts +54 -0
  147. package/types/plugins/spellcheck/config.d.ts +15 -0
  148. package/types/plugins/spellcheck/spellcheck.d.ts +20 -0
  149. package/types/plugins/stat/config.d.ts +16 -0
  150. package/types/plugins/stat/stat.d.ts +20 -0
  151. package/types/plugins/sticky/config.d.ts +32 -0
  152. package/types/plugins/sticky/sticky.d.ts +36 -0
  153. package/types/plugins/symbols/config.d.ts +12 -0
  154. package/types/plugins/symbols/symbols.d.ts +25 -0
  155. package/types/plugins/tab/cases/index.d.ts +9 -0
  156. package/types/plugins/tab/cases/on-tab-inside-li.d.ts +15 -0
  157. package/types/plugins/tab/config.d.ts +16 -0
  158. package/types/plugins/tab/tab.d.ts +6 -0
  159. package/types/plugins/table/config.d.ts +14 -0
  160. package/types/plugins/table/table.d.ts +12 -0
  161. package/types/plugins/table-keyboard-navigation/table-keyboard-navigation.d.ts +13 -0
  162. package/types/plugins/tooltip/tooltip.d.ts +9 -0
  163. package/types/plugins/video/config.d.ts +6 -0
  164. package/types/plugins/video/video.d.ts +6 -0
  165. package/types/plugins/wrap-nodes/config.d.ts +16 -0
  166. package/types/plugins/wrap-nodes/wrap-nodes.d.ts +6 -0
  167. package/types/plugins/xpath/config.d.ts +11 -0
  168. package/types/plugins/xpath/xpath.d.ts +10 -0
  169. package/types/types/index.d.ts +1 -1
  170. package/build/jodit.css +0 -5867
  171. package/build/jodit.es2018.css +0 -2979
  172. package/build/jodit.es2018.en.min.css +0 -1
  173. package/build/jodit.es2018.en.min.js +0 -1
  174. package/build/jodit.es2018.js +0 -20265
  175. package/build/jodit.es2018.min.css +0 -1
  176. package/build/jodit.es2018.min.js +0 -1
  177. package/build/jodit.js +0 -39867
  178. package/build/jodit.min.css +0 -8
  179. package/build/jodit.min.js +0 -1
  180. package/build/plugins/speech-recognize/speech-recognize.css +0 -39
  181. package/build/plugins/speech-recognize/speech-recognize.es2018.css +0 -39
  182. package/build/plugins/speech-recognize/speech-recognize.es2018.en.min.css +0 -1
  183. package/build/plugins/speech-recognize/speech-recognize.es2018.en.min.js +0 -1
  184. package/build/plugins/speech-recognize/speech-recognize.es2018.js +0 -1010
  185. package/build/plugins/speech-recognize/speech-recognize.es2018.min.css +0 -1
  186. package/build/plugins/speech-recognize/speech-recognize.es2018.min.js +0 -1
  187. package/build/plugins/speech-recognize/speech-recognize.js +0 -1010
  188. package/build/plugins/speech-recognize/speech-recognize.min.css +0 -1
  189. package/build/plugins/speech-recognize/speech-recognize.min.js +0 -1
  190. package/build/vdom.css +0 -18
  191. package/build/vdom.js +0 -1297

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.