Previously we were using Handsontable.wot.CellCoords
in our project, for example in a callback function for the Comments
plugin.
While upgrading to v12
, we changed to using import CellCoords from 'handsontable/3rdparty/walkontable/src/cell/coords';
to fix Typescript error since wot
seems to have been removed.
However, this results in a build error:
Module not found: Error: Package path ./3rdparty/walkontable/src/cell/coords is not exported from package /private/var/folders/n0/cw72x0014q52pdnnmdvjjdxc0000gp/T/broccoli-236l6nx7sN78ycz/cache-918-webpack_bundler_ember_auto_import_webpack/node_modules/handsontable (see exports field in /private/var/folders/n0/cw72x0014q52pdnnmdvjjdxc0000gp/T/broccoli-236l6nx7sN78ycz/cache-918-webpack_bundler_ember_auto_import_webpack/node_modules/handsontable/package.json)
I understand that walkontable
is somehow private, but how I can work with types that the public API of handsontable
uses from that package?