Martin Pengelly-Phillips
Martin Pengelly-Phillips
Would be good to have an example of nested drag and drop, as well as test and improve the API if necessary for this use case. Imagine a classic filetree...
Useful for collaboration (shared rule definition) and automating some good practices. See https://prettier.io/docs/en/integrating-with-linters.html for how to avoid conflicts with prettier. For example, consider turning on this [rule](https://github.com/import-js/eslint-plugin-import/blob/v2.25.3/docs/rules/group-exports.md) following discussion on...
Might make it easier to collaborate and enhance with confidence if some unit tests are added.
Not sure if Windows is supposed to be supported, but for me it fails on Windows 10 Python 2.7.12 with the following error when live_server fixture used: ``` request =...
Consider adding a builtin solution for auto-scrolling when dragging in scrollable containers.
I've been porting one of my personal projects to SUID and have noticed a significant performance degradation (especially on mobile) as a result. For example, rendering a list with listitem...
For example, if want to call `recomputeLayouts` on drag start, it would be easier to do this in the top level callback. However, there is no way to access this...
Re https://github.com/thisbeyond/solid-dnd/pull/90#issuecomment-1547004461 layouts are automatically recomputed when items added, but not when they are removed. Consider adding similar logic for removal, but check for unintended side-effects.
I have a 'dict' like class that actually implements the Python [`collections.MutableMapping`](https://docs.python.org/2/library/collections.html#collections.MutableMapping) interface. However, pystache will not render templates correctly with this object as it is not considered a `dict`...
As part of a recent project I needed Pystache to work with a custom class that followed the collections.Mapping spec and was not directly subclassed from dict. As a result,...