Remirror: v1.0.0-next.35 Release

Release date:
September 13, 2020
Previous version:
v1.0.0-next.34 (released September 10, 2020)
Magnitude:
1,954 Diff Delta
Contributors:
2 total committers
Data confidence:
Commits:

16 Commits in this Release

Ordered by the degree to which they evolved the repo in this version.

Authored September 13, 2020
Authored September 13, 2020
Authored September 13, 2020
Authored September 11, 2020
Authored September 13, 2020
Authored September 13, 2020
Authored September 13, 2020
Authored September 11, 2020
Authored September 13, 2020
Authored September 13, 2020
Authored September 13, 2020
Authored September 13, 2020

Top Contributors in v1.0.0-next.35

ifiokjr
Bertg

Directory Browser for v1.0.0-next.35

We haven't yet finished calculating and confirming the files and directories changed in this release. Please check back soon.

Release Notes Published

Minor Changes

  • ffa36163 #676 Thanks @ifiokjr! - Add support for autoLink in LinkExtension. The option defaults to false and must be turned on. This is intended to replace the AutoLinkExtension.
  import { LinkExtension } from 'remirror/extension-link';

  const link = new LinkExtension({ autoLink: true });

  // Or you can turn it on and off during run time.
  link.setOptions({ autoLink: true });
  • 34b0f0b3 #676 Thanks @ifiokjr! - Add new store.getCommandParameter method which returns the properties required to run a command.

  • 4fee3e94 #676 Thanks @ifiokjr! - Add chainableEditorState which makes the EditorState chainable with a shared transaction. Also set the @remirror/pm entry point to export types and utility methods. This is now used in the core libraries.

  • b155ff47 #676 Thanks @ifiokjr! - Make list commands chainable.

  • 273db89f #676 Thanks @ifiokjr! - Make table commands chainable.

Patch Changes