Harles-Herman Pilter
Harles-Herman Pilter
There is a workaround. Add one "fixed hidden" column to the first column object. If one of the columns is always hidden and rendered, then the toggle works.
For us the main issue is the memory usage. Can't even test the speed of `npm ci`, since our containers die due to lack of memory. We noticed that when...
Had the same issue. I am developing a component library in Angular and I had this in preview.js ``` export const decorators = [ moduleMetadata({ imports: [ComponentLibraryModule] }) ]; ```...
I'm having the same issue. It seems to flip the horizontal direction when there is enough space on the left. But on smaller screens there might not be enough space...
Can we bump this. Still happens and is due to transform being something like `transform: translateY(-33.25px) scale(1)`
This is not possible, when you use Strict in tsconfig.json. You would get an error ```sh Type 'Option[]' is not assignable to type '{ key: string; }[]'. Type 'Option' is...
I think this happens when the parent component re-renders when an option is selected (controlled select). And if you haven't memoized the options array then the menu list re-renders (and...
Same thing happens here. If your mouse moves off the splitter while dragging then it's like iframe takes priority over mouse position
I was able to resolve this by following the steps [here:](https://stackoverflow.com/questions/5645485/detect-mousemove-when-over-an-iframe) For some reason the line 100 in split.pane.js `$(document).on('touchmove mousemove', moveEventHandler);` was not firing when mouse was over an...
Sadly we can't move to 21.4.0 since we use module federation and https://github.com/nrwl/nx/issues/32542 was only fixed in https://github.com/nrwl/nx/releases/tag/21.5.1. So this bug is a major issue for us and prevents us...