1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-31 10:51:44 +02:00
Files
slate/packages/slate-hyperscript/CHANGELOG.md
github-actions[bot] 9cce07b23f Version Packages (#5860)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-02 07:44:35 -07:00

3.1 KiB

slate-hyperscript

0.115.0

Patch Changes

  • #5862 98b115b7 Thanks @12joan! - Increase minimum slate version to 0.114.3

  • #5859 72532fd2 Thanks @12joan! - Optimize isElement, isText, isNodeList and isEditor by removing dependency on is-plain-object and by performing shallow checks by default. To perform a full check, including all descendants, pass the { deep: true } option to isElement, isNodeList or isEditor.

0.100.0

Minor Changes

0.81.3

Patch Changes

0.77.0

Patch Changes

0.67.0

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' }
      }
    })
    

0.66.0

Patch Changes

0.62.0

Minor Changes

  • #4154 7283c51f Thanks @ianstormtaylor! - Start using 🦋 Changesets to manage releases. Going forward, whenever a pull request is made that fixes or adds functionality to Slate, it will need to be accompanied by a changset Markdown file describing the change. These files will be automatically used in the release process when bump the versions of Slate and compiling the changelog.