How to append multiple columns or rows to the end of the table?

Hello,

I’m using prosemirror-tables with Tiptap, and I’m trying to add multiple columns or rows to the end of an existing table. I have a text input where you can type a number of columns or rows.

I noticed that the built-in commands only support inserting single column/row before or after a current cursor position.

Is there a way to do it properly using existing API?

Thanks!

You can dispatch a transaction that inserts a Fragment that inserts multiple TableRows containing empty TableCells.