esakylli
esakylli
@EgorBo But isn't UrhoSharp using a forked version of Urho3D (from 2017)?
I'm using TypeScript 4.2.3, and here's how I import the grid: import { autoSizerCanvas, CellInterface, Grid, GridRef, Cell, RendererProps, UseEditableOptions, useEditable, useSelection, } from "@rowsncolumns/grid"; If I compile your code...
I just looked at the generated JS-file for grid. There seems to be a difference in the module loading. Here's the old snippet: var __importStar = (this && this.__importStar) ||...
Maybe you have used a different version of tsc when building/publishing?
Unfortunately, I didn't manage to reproduce the error in codesandbox. Here's my tsconfig.json: { "extends": "../tsconfig.settings.json", "compilerOptions": { "outDir": "lib", "rootDir": "src", "lib": ["dom", "es2015", "es2017.object", "esnext.asynciterable", "esnext"] } }...