ColumnResize and CellSelection is not working in prosemirror-tables

I am building a highly customized rich text editor purely based on prosemirror-tables.

My code styles suggests i need to remove any default cellAttrs from the table schema and since i have forked all the files from pm-tables i am no longer using pm-tables or importing anything from pm-tables.

In order to achieve the removal of default CellAttrs from the schema, i had to add colspan:1, rowspan:1 and colwidth:null manually in all the files and plugins where it is being used.

After doing so my columnResizer broke and i have no idea how to fix this Any help appreciated.

It might be easier for you if you don’t remove default cellAttrs, in which case you can reuse more existing code and avoid some unexpected behavior like the one you’re showing. Is there any strong reason you have to remove default cellAttrs?