alissa verkhovsky

Results 26 comments of alissa verkhovsky

I think I have a similar issue: I have enabled the logs for AppSync, including all logs for Field resolver log level and verbose. what I try to create an...

it seems that the examples are updated to the new version see [/demo/handle](https://slider-react-component.vercel.app/demo/handle) just the README and changelog is outdated

@TimoWestland about `onChange` type the `SliderProps` is generic you can pass the value type. for range it will be `SliderProps` though there is a bug there.. since the `Slider` itself...

hi @jasekiw, there are a few workarounds for this issue the first reason all the cells re-render is that the state of the parent component,`App`, is changed - we can...

@jasekiw Unfortunately it seems you're right, I mean memoizing only the cells will have a significant impact only if the cells are heavy enough. But to memoize rows/cells properly the...

@Tsyklop [here](https://codesandbox.io/s/ids-table-n50084?file=/src/main.tsx) is a sandbox with a simple example. you will need some store to implement it. there are other options for how to implement it, for example, you could...

@dennemark I agree, though since the whole data is passed to the table, the table will have to be re-rendered. and to avoid re-rendering the rows some memoization will have...

there is a library for this, which worked great for me https://www.npmjs.com/package/react-dnd-scrolling

as far as I understand, there is no solution in the react-dnd lib. you can write the code yourself :) and track the mouse position while dragging