Features
-
b1df359b
#780 Thanks @ocavue! - Add new@remirror/extension-codemirror5
package which can be used as an alternative to the@remirror/extension-codeblock
for representing code blocks with syntax highlighting in your editor. -
d720bcd4
#791 Thanks @ifiokjr! - Rename codemirror package to include the version number:@remirror/extension-codemirror5
. This is to allow a future seperate version which supportscodemirror@6
.Make
codemirror
and@types/codemirror
peer dependencies of the@remirror/extension-codemirror5
package. Most setups will need to install codemirror in order to add language support to the code editor. To avoid bundling multiple versions of the same codebase a peer dependency architecture seems to work.
Minor Changes
-
e9d95fa4
#786 Thanks @ifiokjr! - ExportPrioritizedKeyBindings
from@remirror/core
andremirror/core
entry points. -
1b5bf359
#788 Thanks @ifiokjr! - Makedraggability
configurable forMentionAtomExtension
as mentioned in #777.
Fixes
-
8a6d5c34
#781 Thanks @whawker! - The behaviour ofcommands.updateLink.isEnabled()
has been fixed to returnfalse
when thelink
mark can't be applied to the selection. This was fixed by a change in the@remirror/core-utils
package. -
e9d95fa4
#786 Thanks @ifiokjr! - Fix problems around destroying theYjsExtension
provider and theCMD+SHIFT+Z
keymap not registering as mentioned in #772. -
1a0348e7
#789 Thanks @ifiokjr! - FixremoveMark
when called withdispatch = undefined
. This means thatcommand.<NAME>.isEnabled()
checks should all be fixed if they are usingremoveMark
as mentioned in #784.