joshjg

Results 17 comments of joshjg

@sokra - I believe I'm having a similar issue (using regular dynamic `import()`, not loadable-components) after upgrading from 4.x to 5.x - it worked as expected in 4.x. As a...

@sokra Any idea what change from v4-v5 could cause this? This is blocking my team from upgrading to v5. Update: I investigated some more and traced it to a 3rd...

One thing I found is that this function fails in Jest tests, because in Jest `window instanceof Window` returns false. https://github.com/clauderic/dnd-kit/blob/master/packages/core/src/utilities/rect/getRect.ts#L41

Even still, there's not a very practical way to test the library in a `jsdom` environment - this library relies heavily on `getBoundingClientRect` which is stubbed to return all zeroes...

I expected keyboard interaction for a sortable list to work at least, as it simply swaps items (not sure why their size or position would matter). That said, I'm mainly...

Ah, I guess my original assumption was that for the Sortable preset, down arrow would just find the next item in the list (based on the `items` list passed to...

@jonjohnjohnson The link you posted (https://uxdesign.cc/position-stuck-96c9f55d9526) requires javascript (basically, attaching a scroll listener which updates the positioning of other elements). I don't think this is an acceptable workaround, especially from...

I'm running into typing issues when using a styled component definition as an interpolation within `css`. Note the issue only occurs if both styled component definitions include custom prop types....

I'm also getting this cryptic error when running `tsc` in my project. Seems some of TypeScript's internal state is overflowing due to inefficient types: ``` tsc: //node_modules/typescript/lib/tsc.js:96888 throw e; ^...

@agriffis @probablyup Opened #3827 to fix the issues from my first comment here (https://github.com/styled-components/styled-components/issues/3800#issuecomment-1247256052)