Skip to content

Releases: kiruh/ckeditor5-placeholder

Fix: Take bracket length into account when extracting value

21 Dec 15:57
Compare
Choose a tag to compare

The custom brackets option I introduced the other day resulted in adding 1 character on save every time.

This happens because the editing command was not adapted to the length of the custom brackets and always assumes a length of 1.

Thanks to @baspeeters for contribution

Fix vulnerability issues

20 Dec 12:31
Compare
Choose a tag to compare
1.2.0

update version in examples

Add config option to customize placeholder brackets

20 Dec 11:40
Compare
Choose a tag to compare

Example

ClassicEditor.create(document.querySelector("#editor"), {
  plugins: [
    // ...
    Placeholder,
  ],
  toolbar: [
    // ...
    "placeholder",
  ],
  placeholderProps: {
    types: ["First Name", "Date"],
  },
  placeholderBrackets: {
    open: "{",
    close: "}",
  }
});

Thanks to @baspeeters for contribution!

Support for new and old versions of ckeditor

03 Jul 07:51
Compare
Choose a tag to compare
  • Support for new writer interface in new ckeditor version (@PavolC)
  • Support for old writer interface to be back compatible

Fix placeholder error with viewWriter

16 Mar 11:12
Compare
Choose a tag to compare
1.0.5

update package version

Fix ckeditor-duplicated-modules error

15 Jul 10:24
Compare
Choose a tag to compare

Fix error

ERROR Error: Uncaught (in promise): CKEditorError: **ckeditor-duplicated-modules**: Some CKEditor 5 modules are duplicated. Read more: https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/error-codes.html#error-ckeditor-duplicated-modules

Remove useless files from npm

16 Jul 17:49
Compare
Choose a tag to compare
  • remove useless files from npm 92d2850

v1.0.2...v1.0.3

Fix vulnerability issues

16 Jul 17:45
Compare
Choose a tag to compare
  • update packages; update readme; add favicon to example html 8a38abb
  • update examples package.json 9fd44d5
    • add examples - add prettier script - update readme 99a9f86
  • Add index.js 854311c
  • Update package-lock.json c2844af
  • Add readme cd0755a

86cad73...v1.0.2