David Sancho
David Sancho
``` let editor = Tiptap.Editor.use( ~provider, ~document=ydoc, ~renderCursor=CollaborationCursor.renderCursor, ~user=initialUser, ~onCreate=({editor}: Tiptap.createProps) => { onCreateEditor(editor) } ); ``` Gets formatted to ``` let editor = Tiptap.Editor.use( ~provider, ~document=ydoc, ~renderCursor=CollaborationCursor.renderCursor, ~user=initialUser, ~onCreate=({editor}:...
Hey, I'm opening this PR as the continuation of https://github.com/facebook/reason/pull/2454 in order to land it. I manually cherry-picked @sync commits on top to avoid conflicts and finished a few test.sh...
Only one style_rule is allowed in %styled.global: https://styled-ppx.vercel.app/reference/globals ``` %styled.global(` html, body { margin: 0; padding: 0; } `) ``` I would be useful to have support for an entire...
Changes the element tag from the React.createElement We would need to add `as` in makeProps as well
I often find myself wanting to add some rules conditionally. Because I often use switch statement, (but it's true for ifs as well), all branches should have the same type....
Hey @glennsl I was trying to add the "binding" to `expect.addSnapshotSerializer()` in bs-jest and I found creating too much crap for this particular case. How it works it's simple, while...
First I would love to profile q and try to understand where are the pain points, and I have no clue how to do that yet. ### Assumption The biggest...
- Remove some checks for options - Migrate from mocha, chai to vitetest - Migrate from standard, snazzy to prettier, eslint
Each prop might contain a small description of itself, that we could provide to the user. Which would be great to have as documentation on your editor with the hover...