Results 9 issues of Max Salvén

I need to keep track of which items are visible outside of the `VirtualList` component. However, if I call `setState` in `onItemsRendered`, then React will correctly complain: ``` Warning: Cannot...

I have a large `Droppable` which has multiple smaller `Droppable`s inside of it. Either are valid targets. Once the mouse moves into the parent Droppable, `isOver` gets set to true....

`Property isOver is missing in object type [1].`

I have a basic a calendar where each Day is a `Droppable`. However if I drag an item onto any day, then ALL Droppables think `isOver` is true, when only...

If you've started dragging, pressing escape should cancel a drag.

Fixes https://github.com/L-Blondy/tw-colors/issues/39

My app uses javascript to dynamically set some CSS variables, like a `--brand` color (in HSL). It would be great if we could reference these in `tw-colors`: ``` createThemes({ 'light':...

enhancement

The current docs suggest returning `{:error, %{}, socket}` from `handle_init`. https://github.com/geometerio/absinthe_graphql_ws/blob/b98d3deb15febd856725f69b7a54c38e3b67ab3b/lib/absinthe/graphql_ws/socket.ex#L176-L178 This ends up creating an invalid error message: https://github.com/geometerio/absinthe_graphql_ws/blob/b98d3deb15febd856725f69b7a54c38e3b67ab3b/lib/absinthe/graphql_ws/transport.ex#L129-L130 https://github.com/geometerio/absinthe_graphql_ws/blob/b98d3deb15febd856725f69b7a54c38e3b67ab3b/lib/absinthe/graphql_ws/message/error.ex#L9-L11 The error message will be `type: "error", id: %{},...