cmcleese
cmcleese
My initial observations is pointing to with the changes/additions in v1.93 of Improved rendering of ground and sky atmosphere. https://github.com/CesiumGS/cesium/pull/10063
https://webglreport.com/ results:  
For anyone still struggling with this and wanting to keep Cesium installations vanilla, this was my solution. My **package.json** file: ```json ... "scripts": { "postinstall": "node ./scripts/cesium-fix.js", ``` This script...
Hi @ggetz, yes this does sound very similar. However this seems to affect any element which was set via `document.activeElement`. I can also believe it was a relatively recent code...
I have not been able to come up with any alternative in my testing. Currently using hack fix to emulate keypress 'esc' event to get captured event blurred.
Not sure if this works in your situation but perhaps some css styles could be a useful solution. Applying the solution here seems to show promise: [stackoverflow](https://stackoverflow.com/a/47923622/2188340) ```css .vgt-table{ overflow-y:...
+1 also
Just to add a bit more ontop of this if you want your other node modules separately chunked: ```js splitChunks({ cacheGroups: { vendors: { name: `chunk-vendors`, test: /[\\/]node_modules[\\/]/, priority: -10,...
It is necessary to update all options for reactive to trigger update. What I found works is the following for example of dynamic options or data: ```js const darkModeActive= ref(false);...
I have something similar happening also. I using the ElementMixin which each other them have their own data attributes. After a sort has occured the data is being replaced with...