Skip to content

Releases: ueberdosis/tiptap

[email protected]

01 Jan 21:34
Compare
Choose a tag to compare

update dependencies

[email protected]

20 Dec 07:24
Compare
Choose a tag to compare

New

  • add prosemirror-dropcursor (#140, #141)

[email protected]

20 Dec 07:24
Compare
Choose a tag to compare

update dependencies

[email protected]

19 Dec 22:17
Compare
Choose a tag to compare

NEW

  • you can now use editor.setOptions() for updating options after init (#111)
  • add option to set placeholder text with javascript (#114, #127, #137)
  • add original event to onBlur() and onFocus() (#83)

[email protected]

19 Dec 22:18
Compare
Choose a tag to compare

update dependencies

[email protected]

19 Dec 22:18
Compare
Choose a tag to compare

NEW

add option to set placeholder text with javascript (#114, #127, #137)

[email protected]

19 Dec 22:17
Compare
Choose a tag to compare

update dependencies

[email protected]

09 Dec 10:17
Compare
Choose a tag to compare

NEW

  • add support for tables (#120)

FIXED

  • there is support for special chars in mention now (#121)
  • add support for extending mention class (#122)

[email protected]

09 Dec 10:18
Compare
Choose a tag to compare

NEW

  • add table extension (#120)

[email protected]

26 Nov 10:26
Compare
Choose a tag to compare

New

  • added pasteRules (#88). Now you can define some rules for transforming pasted text. For example this is helpful for linkify your text. This pasteRule is defined in the default Link mark.
import { Mark } from 'tiptap'
import { pasteRule } from 'tiptap-commands'

export default class Link extends Mark {

  pasteRules({ type }) {
    return [
      pasteRule(
        /https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_+.~#?&//=]*)/g,
        type,
        url => ({ href: url }),
      ),
    ]
  }

}