remirror

ProseMirror toolkit for React 🎉

MIT License

Downloads
14.7M
Stars
2.6K
Committers
81

Bot releases are visible (Hide)

remirror - @remirror/[email protected]

Published by github-actions[bot] over 2 years ago

2022-02-09

Patch Changes

remirror - [email protected]

Published by github-actions[bot] over 2 years ago

2022-02-08

Patch Changes

  • Add support for attribute filtering for useActive and useAttrs hooks when used with marks.

    This provides consistent behaviour for the hook, aligning with functionality provided for node types.

    const active = useActive();
    
    // Previously this ignored passed attributes and only checked the mark's type
    //
    // Now this will only return true if mark type is active AND its color attribute is red
    const isActive = active.textColor({ color: 'red' });
    
remirror - @remirror/[email protected]

Published by github-actions[bot] over 2 years ago

2022-02-08

Patch Changes

remirror - [email protected]

Published by github-actions[bot] over 2 years ago

2022-02-04

Patch Changes

  • Simplify how auto link works in the link extension, to simplify maintainance and fix a few issues.
remirror - @remirror/[email protected]

Published by github-actions[bot] over 2 years ago

2022-02-04

Patch Changes

remirror - [email protected]

Published by github-actions[bot] over 2 years ago

2022-02-02

Patch Changes

remirror - [email protected]

Published by github-actions[bot] over 2 years ago

2022-01-31

Patch Changes

remirror - [email protected]

Published by github-actions[bot] over 2 years ago

2022-01-21

Patch Changes

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-17

Patch Changes

remirror - @remirror/[email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-17

Patch Changes

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-16

Patch Changes

  • Fix a runtime error when getting font size before the editor view is initialized.
remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-11

Patch Changes

remirror - @remirror/[email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-11

Patch Changes

  • Deprecate getTheme and getThemeProps in favour of new methods getThemeVar and getThemeVarName.

    This removes a code path that used an ES6 Proxy, which cannot be polyfilled.

    getTheme((t) => t.color.primary.text) => `var(--rmr-color-primary-text)`
    
    getThemeProps((t) => t.color.primary.text) => `--rmr-color-primary-text`
    
    getThemeVar('color', 'primary', 'text') => `var(--rmr-color-primary-text)`
    
    getThemeVarName('color', 'primary', 'text') => `--rmr-color-primary-text`
    
  • Updated dependencies []:

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-06

Patch Changes

  • Fix a bug that causes the cursor to jump to the end of the first node when pressing backspace at the beginning of a list and this list is the second child of the document.

  • Updated dependencies []:

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-05

Patch Changes

  • Update yjs packages to latest version.
  • Avoid leaking Yjs UndoManager instances

  • Updated dependencies []:

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-03

Patch Changes

remirror - @remirror/[email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-03

Patch Changes

remirror - @remirror/[email protected]

Published by github-actions[bot] almost 3 years ago

2022-01-03

Patch Changes

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2021-12-30

Patch Changes

  • Correct a document error about CodeBlockExtension's option toggleName. Its default value should be 'paragraph' instead of undefined.
  • Fix a potential issue that might cause invalid text selection when pressing Backspace instead a code block node.

  • Updated dependencies []:

remirror - [email protected]

Published by github-actions[bot] almost 3 years ago

2021-12-17

Patch Changes

Package Rankings
Top 1.07% on Npmjs.org
Related Projects