tiptap

The headless rich text editor framework for web artisans.

MIT License

Downloads
101.2M
Stars
27K
Committers
367

Bot releases are hidden (Show)

tiptap -

Published by philippkuehn over 5 years ago

  • fix nodeIsActive() (fix #225, PR #283)
  • fix getMarkRange() (PR #280)
tiptap -

Published by philippkuehn over 5 years ago

update dependencies

tiptap -

Published by philippkuehn over 5 years ago

NEW

  • add collaboration extension 🎉 (fix #74)
  • add init() hook to extension class
  • the editor instance is now available in all extensions (this.editor)
tiptap -

Published by philippkuehn over 5 years ago

New way to add events:

this.editor.on('update', () => {
  console.log('update!')
})

You can still add event handlers the old way:

new Editor({
  onUpdate: () => {
    console.log('update!')
  },
})

Available events: init, update, focus, blur, paste, drop

tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • fix a bug in link click handler (PR #276, fix #275)
  • fix menu bubble position (PR #228, fix #215)
  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update prosemirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • you can now destroy and re-mount <editor-content> and nothing will break
  • update prosemirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

CHANGED

  • click on links will open in a new tab by default now
tiptap -

Published by philippkuehn over 5 years ago

NEW

  • you can now set a focus position
    • editor.focus(20) to set the cursor at position 20 of the document
    • editor.focus('start') to set the cursor at the start of the document
    • editor.focus('end') to set the cursor at the start of the document
tiptap -

Published by philippkuehn over 5 years ago

  • update dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • fix a bug in splitToDefaultListItem command
tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

NEW

  • Allow parseOptions to be passed to setContent and Editor constructor (PR #254, fix #168)
  • Allow extensions to override stopEvent (PR #254, fix #217)
  • Check for vulnerabilities (PR #243)
  • Fix missing update event (fix #260)
  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies
tiptap -

Published by philippkuehn over 5 years ago

  • update ProseMirror dependencies