How to optimise performance caused by reflow

Hi Marijn. I meet a severe performance issue using pm-tables.

I found every time i input a character in table cell will trigger reflow:

is there any way to do something like debounce to improve performance? (the table is like 1500(row) * 10) .

Inputting text changes the DOM, and changing the DOM always triggers a reflow.

so, any chance to add a mask for a table cell using decoration, then do a throttle funcion to update table and decoration input?