Skip to content

New version 3.19.5. Read more https://github.com/xdan/jodit/blob/mast…

Compare
Choose a tag to compare
@xdan xdan released this 21 Aug 23:50

3.19.5

🚀 New Feature

🐛 Bug Fix

3.19.4

🚀 New Feature

Jodit.make('#editor', {
	uploader: {
		url: 'https://sitename.net/jodit/connector/index.php?action=fileUpload',
		getDisplayName: (_, name) => 'File:' + name
	}
});
  • Added cleanHTML.useIframeSandbox:boolean option(default: false). Use iframe[sandbox] to paste HTML code into the editor to check it for safety.
    Allows you not to run scripts and handlers, but it works much slower

🐛 Bug Fix

3.19.3

🐛 Bug Fix

  • Quick fix bug with webpack output.clean=true.

3.19.2

🐛 Bug Fix

  • Big bugfix in es2018 version, sideEffect cut all styles and configs

3.19.1

🏠 Internal

  • Plugin icons moved to their respective plugins
  • Used plugin webpack.ids.DeterministicModuleIdsPlugin for more reliable sharing of exported module names between builds.
    Now you can include plugins from 'es5' in the assembly for 'es2018.en'.
  • Deps
     @types/node                       ^17.0.36  →  ^17.0.41
     @typescript-eslint/eslint-plugin   ^5.27.0  →   ^5.27.1
     @typescript-eslint/parser          ^5.27.0  →   ^5.27.1
     cssnano-preset-advanced             ^5.3.6  →    ^5.3.7
     eslint                             ^8.16.0  →   ^8.17.0
     lint-staged                        ^12.4.3  →   ^13.0.0
     terser-webpack-plugin               ^5.3.1  →    ^5.3.3
     typescript                          ^4.7.2  →    ^4.7.3
     webpack                            ^5.72.1  →   ^5.73.0
     webpack-dev-server                  ^4.9.0  →    ^4.9.2
     core-js                            ^3.22.7  →   ^3.22.8
    

3.18.7

🚀 New Feature

🐛 Bug Fix

3.18.6

🚀 New Feature

3.18.5

💥 Breaking Change

  • Added default table style to createAttributes option:
Jodit.defaultOptions.createAttributes = {
	table: {
		style: 'border-collapse:collapse;width: 100%;'
	}
};

🐛 Bug Fix