Hello,
I am using handsontable in Angular and while using hiddencolumnsplugin, I came across a setting in your documentation that interested me : CopyPasteEnabled. Unfortunately, I don’t seem to be able to use it as I get an error at launch:
error TS2322: Type ‘{ copyPasteEnabled: false; }’ is not assignable to type ‘boolean | Settings’.
Object literal may only specify known properties, and ‘copyPasteEnabled’ does not exist in type ‘Settings’.
104 copyPasteEnabled: false,
~~~~~~~~~~~~~~~~~~~~~~~
node_modules/handsontable/handsontable.d.ts:1664:5
1664 hiddenColumns?: boolean | hiddenColumns.Settings;
~~~~~~~~~~~~~
The expected type comes from property ‘hiddenColumns’ which is declared here on type ‘GridSettings’
I am using handsontable version 10.0.0.
There’s no sign of the setting in handsontable.d.ts :
Is it not implemented yet ?
Thanks for your help.
V