JP Obley
JP Obley
I have a fork of the original sandbox that @hanspagel put together, and it has the desired effect, but it's a little rough around the edges and I'm unsure if...
I should also point out that one can also `await` and `catch` the error via `indexedDbProvider.whenSynced`, so this PR isn't _totally_ necessary.
Cool. Updated. I wasn't entirely sure what you meant by your request, so lemme know if I misunderstood it. > This issue is fairly preventable. The example should probably show...
Updating the `selectAll` command to use the `AllSelection` class from `prosemirror-state` fixes this issue, but I don't know why: https://github.com/jpobley/tiptap/commit/61794def2fc7c1bafb2663897a9ff12abf2ca8e4. Something about how `setTextSelection` is resolving the range of the...
Oooooooh, yeah, I thought there might be dragons elsewhere. Thanks for the education, @philippkuehn.
I updated my dependencies recently and noticed that the table extension is now using a fork at `@_ueberdosis/prosemirror-tables`. Does this mean the TipTap team is moving towards being able to...
`onUpdate` will also fire even if a transaction has been filtered by a plugin. Here's a minimal reproduction that filters every transaction but logs out calls to `onUpdate`: https://codesandbox.io/p/sandbox/billowing-pond-2t5md7?workspaceId=a77e85f9-e56d-47f2-ae56-008fa38d6d0c
> if the editor.state is equal to the editor.state from before, that means none of the transactions could be applied and we can just skip calling the rest of the...
It's probably good practice and more accurate to look at the appended transactions. However, they've been ignored up until now so maybe it doesn't matter and can wait until a...
Ok. I'm happy to put together a pull request for a pre callback if you don't think you'll get to the ColVis rewrite for a while.