Oleksandr Hudym

Results 10 comments of Oleksandr Hudym

Thank you for the quick reply. If there is any help needed from my side - just let me know.

Hello @hshoff @williaster , actually the values are not slightly out of sync, they are out of scale and domain. In the [demo](https://codesandbox.io/s/unruffled-carson-hm357i?file=/Example.tsx) open the console and click the brush...

@JoeVanGundy I managed to fix it by using new xScale for brush only: ```tsx const xScaleBrush = useMemo( () => scaleTime({ domain: xScale.domain(), // https://github.com/airbnb/visx/blob/master/packages/visx-brush/src/Brush.tsx#L119 // visx brush adds 2...

Unfortunately the fix provided above doesn't fix the whole issue with this "additions" as we have the range 4px wider for the brush in comparison to a normal scale.

Currently fixed this issue in a following way: ```tsx const brushSafeDiff = useMemo(() => { // Brush adds 2 pixels to the xScale range, we have to calculate this diff...

Any update on that functionality?

Hi, I have the same issue, but not with forge. I am trying to package the application on M1 chip with exactly the same error. I know, that it is...

More over, it prevents clicks inside the container. See the behavior in codesandboxes: new: https://codesandbox.io/p/sandbox/cranky-bird-6fgmhf old: https://codesandbox.io/p/sandbox/zen-morning-vjqt5y Click is is still possible ### Normal way Adding draggableCancel class to button....

It is caused by https://github.com/react-grid-layout/react-grid-layout/pull/1923 @tantawyk @STRML guys you were discussing simple clicks which now are broken @STRML wrote: > I think it was that it didn't make much sense...

> It's important not to render a placeholder on a click - otherwise you would see a transparent red widget flash when you're just trying to click a button. It...