devin
devin
I have been having similar issues — my markup may return arbitrary whitespace (hard-coded tabs or space) as well as errant whitespace (some spaces between elements, `/n`, etc.). Here's the...
Has anyone figured this out?
I am having the same issue. It looks like the v4 docs still specify the expected behavior of `createNewItemFromQuery` as firing onClick in `createNewItemRenderer` or on enter keypress. Seems like...
I was hoping I could do something similar to the advanced context menu render pattern: ```jsx ( handleBlockClick(ctxContentProps.block)} text="Add to canvas" /> {/* other menu items */} )} > {(ctxMenuProps)...
Update: I was able to achieve this by adding a state value that is set within `onContextMenu`, and then used within the `ContextMenu2` `content` prop. Still curious if there is...
Thanks for the context @BoldMonday, I'll stay tuned then :)
+1, but in the meantime, you can use `dangerouslySetInnerHTML`
imo since it seems like react-draggable is using DOM apis under the hood i imagine this would actually pretty useful and not break the paradigm of this library, given that...
This solved it for me https://github.com/greena13/react-hotkeys/issues/209#issuecomment-539593307: Adding either of these worked around this issue for me: * `configure({ simulateMissingKeyPressEvents: false });` * `configure({ ignoreKeymapAndHandlerChangesByDefault: false });`
@svekl's [answer](https://github.com/greena13/react-hotkeys/issues/228#issuecomment-634508229) worked for me! I have `GlobalHotKeys` used in two distant parts of the tree, but only one was being returned by `getApplicationKeyMap` (the first one rendered on the...