Skip to content

chore(deps): bump slate-react from 0.59.0 to 0.65.2#472

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/slate-react-0.65.2
Closed

chore(deps): bump slate-react from 0.59.0 to 0.65.2#472
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/slate-react-0.65.2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jul 1, 2021

Bumps slate-react from 0.59.0 to 0.65.2.

Release notes

Sourced from slate-react's releases.

slate-react@0.65.2

Patch Changes

slate-react@0.65.1

Patch Changes

slate-react@0.65.0

Minor Changes

  • #4299 2c17e2b7 Thanks @​georgberecz! - Allow custom event handlers on Editable component to return boolean flag to specify whether the event can be treated as being handled.

    By default, the Editable component comes with a set of event handlers that handle typical rich-text editing behaviors (for example, it implements its own onCopy, onPaste, onDrop, and onKeyDown handlers).

    In some cases you may want to extend or override Slate's default behavior, which can be done by passing your own event handler(s) to the Editable component.

    Your custom event handler can control whether or not Slate should execute its own event handling for a given event after your handler runs depending on the return value of your event handler as described below.

    import {Editable} from 'slate-react';
    function MyEditor() {
    const onClick = event => {
    // Implement custom event logic...
    // When no value is returned, Slate will execute its own event handler when
    // neither isDefaultPrevented nor isPropagationStopped was set on the event
    
    };
    const onDrop = event => {
    // Implement custom event logic...
    // No matter the state of the event, treat it as being handled by returning
    // true here, Slate will skip its own event handler
    return true;
    
    };
    const onDragStart = event => {
    // Implement custom event logic...
    // No matter the status of the event, treat event as *not* being handled by
    // returning false, Slate will exectue its own event handler afterward
    return false;
    
    };

... (truncated)

Commits
  • ea5e3e4 Version Packages (#4332)
  • a3bc97a Fix deletion of selected inline void nodes in Safari (#4331)
  • 6c99352 Version Packages (#4325)
  • e042ebd Expose interface to setNormalizing (#3859)
  • 61171a2 Fix backward typing bug in Safari by ensuring the selection is removed on blu...
  • 26f4b25 docs: Clarified that Editor.positions in reverse with a word changes the retu...
  • 06121a3 docs: Fix typo
  • c86d0b0 docs: Improve styling and wording in Editor.positions
  • 1f08442 docs: Add detailed description of how Editor.positions works
  • 1e6f60a docs: Try options syntax with defaults
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added topic: dependencies Upgrades & changes to dependencies type: maintenance Some chores, dependencies, documentations labels Jul 1, 2021
@vercel
Copy link
Copy Markdown

vercel Bot commented Jul 1, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/loop-revolution/web/9FVNpDxBaaBqXPjMQ3K4JvvraC4x
✅ Preview: Failed

[Deployment for a070863 failed]

@codecov
Copy link
Copy Markdown

codecov Bot commented Jul 1, 2021

Codecov Report

Merging #472 (a070863) into main (ba3bb2f) will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff          @@
##            main    #472   +/-   ##
=====================================
  Coverage   0.29%   0.29%           
=====================================
  Files         78      78           
  Lines       1673    1673           
  Branches     543     543           
=====================================
  Hits           5       5           
  Misses      1663    1663           
  Partials       5       5           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ba3bb2f...a070863. Read the comment docs.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/slate-react-0.65.2 branch from 72ebd1a to 664c413 Compare July 1, 2021 03:53
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/slate-react-0.65.2 branch from 664c413 to 1f6bb81 Compare July 1, 2021 04:01
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/slate-react-0.65.2 branch from 1f6bb81 to b2b4a43 Compare July 1, 2021 04:08
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/slate-react-0.65.2 branch from b2b4a43 to 732131c Compare July 1, 2021 04:14
Bumps [slate-react](https://github.com/ianstormtaylor/slate) from 0.59.0 to 0.65.2.
- [Release notes](https://github.com/ianstormtaylor/slate/releases)
- [Commits](https://github.com/ianstormtaylor/slate/compare/v0.59.0...slate-react@0.65.2)

---
updated-dependencies:
- dependency-name: slate-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/slate-react-0.65.2 branch from 732131c to a070863 Compare July 1, 2021 04:29
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Aug 11, 2021

Superseded by #487.

@dependabot dependabot Bot closed this Aug 11, 2021
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/slate-react-0.65.2 branch August 11, 2021 03:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

topic: dependencies Upgrades & changes to dependencies type: maintenance Some chores, dependencies, documentations

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants