Gordon Smith
Gordon Smith
Its the second case where my lat/lon dataset might look like this: ``` [{45, -100}, {90, 0}, {45, 100}, {-45, 100}, {-90, 0}, {-45, -100}] ``` I would expect the...
Setting `windowResizeAware` to true makes it worse! FWIW I was unable to reproduce in a vanilla page - but did isolate my issue down to when using it within a...
"src" is already included in the packages (I didn't think it got removed?): https://github.com/jupyterlab/lumino/blob/master/packages/widgets/package.json#L23 https://cdn.jsdelivr.net/npm/@lumino/widgets/ Unless I missed some by mistake?
Also if you look in the map files you should see that the bundled versions map back to the ts files in question: https://cdn.jsdelivr.net/npm/@lumino/[email protected]/dist/index.js.map
Its there in the released package: https://cdn.jsdelivr.net/npm/@lumino/[email protected]/package.json
...and: https://cdn.jsdelivr.net/npm/@lumino/[email protected]/src/
If your using WebPack to build your project and your including JS files which in turn already have a source map associated with them (like from TS) then you should...
You might need to change the "devTool" for non production builds as well: https://github.com/GordonSmith/HPCC-Platform/blob/eclwatch-8.x/esp/src/webpack.config.js#L111 (not 100% sure)
As an alternative - it might be worth investigating using native web components, as this opens the door for not just React, but also Angular, Vue etc. I have an...
Some thoughts / suggestions: 1. There shouldn't be a need to add a new dependency to the lumino project, I had initially used the microsoft/fast framework to create the web...