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.
- package/.idea/workspace.xml +140 -130
- package/CHANGELOG.MD +39 -5
- package/build/jodit.css +3 -3
- package/build/jodit.es2018.css +2 -2
- package/build/jodit.es2018.en.css +2 -2
- package/build/jodit.es2018.en.js +8264 -8957
- package/build/jodit.es2018.en.min.css +1 -1
- package/build/jodit.es2018.en.min.js +1 -1
- package/build/jodit.es2018.js +8283 -8976
- package/build/jodit.es2018.min.css +1 -1
- package/build/jodit.es2018.min.js +1 -1
- package/build/jodit.js +19569 -19209
- package/build/jodit.min.css +2 -2
- package/build/jodit.min.js +1 -1
- package/build/vdom.css +7 -3001
- package/build/vdom.js +373 -16548
- package/package.json +14 -14
- package/src/core/async/async.ts +7 -9
- package/src/core/component/component.ts +4 -4
- package/src/core/constants.ts +11 -2
- package/src/core/dom/dom.ts +23 -26
- package/src/core/helpers/html/apply-styles.ts +41 -25
- package/src/core/helpers/html/clean-from-word.ts +1 -1
- package/src/core/helpers/utils/utils.ts +2 -2
- package/src/core/selection/helpers/index.ts +12 -0
- package/src/core/selection/helpers/move-node-inside-start.ts +42 -0
- package/src/core/selection/helpers/move-the-node-along-the-edge-outward.ts +36 -0
- package/src/core/selection/select.ts +91 -4
- package/src/core/ui/popup/popup.ts +7 -8
- package/src/core/vdom/README.md +2 -0
- package/src/core/vdom/helpers/index.ts +2 -4
- package/src/core/vdom/index.ts +1 -0
- package/src/core/vdom/render/index.ts +1 -1
- package/src/core/vdom/v-dom-jodit.less +12 -0
- package/src/core/vdom/v-dom-jodit.ts +44 -0
- package/src/jodit.ts +5 -0
- package/src/modules/image-editor/image-editor.ts +4 -1
- package/src/modules/toolbar/button/button.ts +59 -8
- package/src/modules/toolbar/collection/editor-collection.ts +1 -1
- package/src/modules/widget/tabs/tabs.ts +39 -18
- package/src/plugins/clipboard/config.ts +0 -168
- package/src/plugins/clipboard/index.ts +1 -0
- package/src/plugins/clipboard/paste/config.ts +144 -0
- package/src/plugins/clipboard/paste/helpers.ts +122 -10
- package/src/plugins/clipboard/paste/interface.ts +29 -0
- package/src/plugins/clipboard/paste/paste.ts +14 -174
- package/src/plugins/clipboard/paste-from-word/README.md +1 -0
- package/src/plugins/clipboard/paste-from-word/config.ts +41 -0
- package/src/plugins/clipboard/paste-from-word/paste-from-word.ts +118 -0
- package/src/plugins/fix/wrap-text-nodes.ts +15 -0
- package/src/plugins/font/font.ts +1 -1
- package/src/plugins/iframe/iframe.ts +9 -2
- package/src/plugins/image/image-properties/image-properties.ts +15 -6
- package/src/plugins/image/image-properties/templates/position-tab.ts +12 -12
- package/src/plugins/index.ts +7 -1
- package/src/plugins/keyboard/backspace/backspace.ts +2 -2
- package/src/plugins/keyboard/backspace/cases/check-remove-char.ts +4 -7
- package/src/plugins/keyboard/backspace/cases/check-remove-content-not-editable.ts +2 -2
- package/src/plugins/keyboard/helpers.ts +1 -35
- package/src/plugins/placeholder/config.ts +56 -0
- package/src/plugins/placeholder/placeholder.ts +7 -51
- package/src/plugins/select/README.md +8 -0
- package/src/plugins/select/config.ts +31 -0
- package/src/plugins/select/select.ts +37 -1
- package/src/styles/jodit.less +1 -1
- package/src/types/popup.d.ts +2 -1
- package/src/types/select.d.ts +3 -2
- package/tsdoc.json +5 -0
- package/types/core/dom/dom.d.ts +2 -1
- package/types/core/helpers/html/apply-styles.d.ts +5 -0
- package/types/core/selection/helpers/index.d.ts +10 -0
- package/types/core/selection/helpers/move-node-inside-start.d.ts +14 -0
- package/types/core/selection/helpers/move-the-node-along-the-edge-outward.d.ts +6 -0
- package/types/core/selection/select.d.ts +3 -2
- package/types/core/ui/popup/popup.d.ts +1 -0
- package/types/modules/toolbar/button/button.d.ts +8 -0
- package/types/modules/widget/tabs/tabs.d.ts +6 -6
- package/types/plugins/clipboard/config.d.ts +1 -50
- package/types/plugins/clipboard/index.d.ts +1 -0
- package/types/plugins/clipboard/paste/config.d.ts +36 -0
- package/types/plugins/clipboard/paste/helpers.d.ts +6 -1
- package/types/plugins/clipboard/paste/interface.d.ts +15 -0
- package/types/plugins/clipboard/paste/paste.d.ts +2 -13
- package/types/plugins/clipboard/paste-from-word/config.d.ts +31 -0
- package/types/plugins/clipboard/paste-from-word/paste-from-word.d.ts +26 -0
- package/types/plugins/fix/wrap-text-nodes.d.ts +1 -0
- package/types/plugins/iframe/iframe.d.ts +1 -1
- package/types/plugins/image/image-properties/image-properties.d.ts +1 -0
- package/types/plugins/index.d.ts +1 -1
- package/types/plugins/keyboard/helpers.d.ts +1 -7
- package/types/plugins/placeholder/config.d.ts +44 -0
- package/types/plugins/placeholder/placeholder.d.ts +1 -38
- package/types/plugins/select/config.d.ts +21 -0
- package/types/plugins/select/select.d.ts +5 -0
- package/types/types/popup.d.ts +2 -1
- package/types/types/select.d.ts +3 -2
- package/build/vdom.es2018.css +0 -3012
- package/build/vdom.es2018.en.css +0 -3012
- package/build/vdom.es2018.en.js +0 -14153
- package/build/vdom.es2018.en.min.css +0 -1
- package/build/vdom.es2018.en.min.js +0 -1
- package/build/vdom.es2018.js +0 -14153
- package/build/vdom.es2018.min.css +0 -1
- package/build/vdom.es2018.min.js +0 -1
- package/build/vdom.min.css +0 -1
- 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.