Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Oct 21:09
· 513 commits to main since this release
3678590

Patch Changes

  • #4555 c29eea02 Thanks @bryanph! - createEditor is now exported from slate-hyperscript, making it easier to set up custom editor tests

    For example:

    const jsx = createHyperscript({
      creators: {
        editor: createEditor(aFunctionThatReturnsAnEditorObject)
      },
      elements: {
        block: { type: 'block' },
        inline: { type: 'inline' }
      }
    })