jodit 3.14.2 → 3.15.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 (106) hide show
  1. package/.idea/workspace.xml +140 -130
  2. package/CHANGELOG.MD +39 -5
  3. package/build/jodit.css +3 -3
  4. package/build/jodit.es2018.css +2 -2
  5. package/build/jodit.es2018.en.css +2 -2
  6. package/build/jodit.es2018.en.js +8264 -8957
  7. package/build/jodit.es2018.en.min.css +1 -1
  8. package/build/jodit.es2018.en.min.js +1 -1
  9. package/build/jodit.es2018.js +8283 -8976
  10. package/build/jodit.es2018.min.css +1 -1
  11. package/build/jodit.es2018.min.js +1 -1
  12. package/build/jodit.js +19569 -19209
  13. package/build/jodit.min.css +2 -2
  14. package/build/jodit.min.js +1 -1
  15. package/build/vdom.css +7 -3001
  16. package/build/vdom.js +373 -16548
  17. package/package.json +14 -14
  18. package/src/core/async/async.ts +7 -9
  19. package/src/core/component/component.ts +4 -4
  20. package/src/core/constants.ts +11 -2
  21. package/src/core/dom/dom.ts +23 -26
  22. package/src/core/helpers/html/apply-styles.ts +41 -25
  23. package/src/core/helpers/html/clean-from-word.ts +1 -1
  24. package/src/core/helpers/utils/utils.ts +2 -2
  25. package/src/core/selection/helpers/index.ts +12 -0
  26. package/src/core/selection/helpers/move-node-inside-start.ts +42 -0
  27. package/src/core/selection/helpers/move-the-node-along-the-edge-outward.ts +36 -0
  28. package/src/core/selection/select.ts +91 -4
  29. package/src/core/ui/popup/popup.ts +7 -8
  30. package/src/core/vdom/README.md +2 -0
  31. package/src/core/vdom/helpers/index.ts +2 -4
  32. package/src/core/vdom/index.ts +1 -0
  33. package/src/core/vdom/render/index.ts +1 -1
  34. package/src/core/vdom/v-dom-jodit.less +12 -0
  35. package/src/core/vdom/v-dom-jodit.ts +44 -0
  36. package/src/jodit.ts +5 -0
  37. package/src/modules/image-editor/image-editor.ts +4 -1
  38. package/src/modules/toolbar/button/button.ts +59 -8
  39. package/src/modules/toolbar/collection/editor-collection.ts +1 -1
  40. package/src/modules/widget/tabs/tabs.ts +39 -18
  41. package/src/plugins/clipboard/config.ts +0 -168
  42. package/src/plugins/clipboard/index.ts +1 -0
  43. package/src/plugins/clipboard/paste/config.ts +144 -0
  44. package/src/plugins/clipboard/paste/helpers.ts +122 -10
  45. package/src/plugins/clipboard/paste/interface.ts +29 -0
  46. package/src/plugins/clipboard/paste/paste.ts +14 -174
  47. package/src/plugins/clipboard/paste-from-word/README.md +1 -0
  48. package/src/plugins/clipboard/paste-from-word/config.ts +41 -0
  49. package/src/plugins/clipboard/paste-from-word/paste-from-word.ts +118 -0
  50. package/src/plugins/fix/wrap-text-nodes.ts +15 -0
  51. package/src/plugins/font/font.ts +1 -1
  52. package/src/plugins/iframe/iframe.ts +9 -2
  53. package/src/plugins/image/image-properties/image-properties.ts +15 -6
  54. package/src/plugins/image/image-properties/templates/position-tab.ts +12 -12
  55. package/src/plugins/index.ts +7 -1
  56. package/src/plugins/keyboard/backspace/backspace.ts +2 -2
  57. package/src/plugins/keyboard/backspace/cases/check-remove-char.ts +4 -7
  58. package/src/plugins/keyboard/backspace/cases/check-remove-content-not-editable.ts +2 -2
  59. package/src/plugins/keyboard/helpers.ts +1 -35
  60. package/src/plugins/placeholder/config.ts +56 -0
  61. package/src/plugins/placeholder/placeholder.ts +7 -51
  62. package/src/plugins/select/README.md +8 -0
  63. package/src/plugins/select/config.ts +31 -0
  64. package/src/plugins/select/select.ts +37 -1
  65. package/src/styles/jodit.less +1 -1
  66. package/src/types/popup.d.ts +2 -1
  67. package/src/types/select.d.ts +3 -2
  68. package/tsdoc.json +5 -0
  69. package/types/core/dom/dom.d.ts +2 -1
  70. package/types/core/helpers/html/apply-styles.d.ts +5 -0
  71. package/types/core/selection/helpers/index.d.ts +10 -0
  72. package/types/core/selection/helpers/move-node-inside-start.d.ts +14 -0
  73. package/types/core/selection/helpers/move-the-node-along-the-edge-outward.d.ts +6 -0
  74. package/types/core/selection/select.d.ts +3 -2
  75. package/types/core/ui/popup/popup.d.ts +1 -0
  76. package/types/modules/toolbar/button/button.d.ts +8 -0
  77. package/types/modules/widget/tabs/tabs.d.ts +6 -6
  78. package/types/plugins/clipboard/config.d.ts +1 -50
  79. package/types/plugins/clipboard/index.d.ts +1 -0
  80. package/types/plugins/clipboard/paste/config.d.ts +36 -0
  81. package/types/plugins/clipboard/paste/helpers.d.ts +6 -1
  82. package/types/plugins/clipboard/paste/interface.d.ts +15 -0
  83. package/types/plugins/clipboard/paste/paste.d.ts +2 -13
  84. package/types/plugins/clipboard/paste-from-word/config.d.ts +31 -0
  85. package/types/plugins/clipboard/paste-from-word/paste-from-word.d.ts +26 -0
  86. package/types/plugins/fix/wrap-text-nodes.d.ts +1 -0
  87. package/types/plugins/iframe/iframe.d.ts +1 -1
  88. package/types/plugins/image/image-properties/image-properties.d.ts +1 -0
  89. package/types/plugins/index.d.ts +1 -1
  90. package/types/plugins/keyboard/helpers.d.ts +1 -7
  91. package/types/plugins/placeholder/config.d.ts +44 -0
  92. package/types/plugins/placeholder/placeholder.d.ts +1 -38
  93. package/types/plugins/select/config.d.ts +21 -0
  94. package/types/plugins/select/select.d.ts +5 -0
  95. package/types/types/popup.d.ts +2 -1
  96. package/types/types/select.d.ts +3 -2
  97. package/build/vdom.es2018.css +0 -3012
  98. package/build/vdom.es2018.en.css +0 -3012
  99. package/build/vdom.es2018.en.js +0 -14153
  100. package/build/vdom.es2018.en.min.css +0 -1
  101. package/build/vdom.es2018.en.min.js +0 -1
  102. package/build/vdom.es2018.js +0 -14153
  103. package/build/vdom.es2018.min.css +0 -1
  104. package/build/vdom.es2018.min.js +0 -1
  105. package/build/vdom.min.css +0 -1
  106. package/build/vdom.min.js +0 -1

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.