Jason Miller
Jason Miller
I figured it was easier to show code than explain haha. If you are looking into things, feel free to ping me on [slack](https://preact-slack.now.sh) 👍
Absolutely! Hopefully it's just an oversight, but either way we'll get it solved so draft-js and preact can work in perfect harmony :) I'll take a look at your repro,...
@gabriel-miranda I downloaded the demo from Webpackbin to set up aliases, and with preact 6.2.0, almost everything it working. There seems to be an issue with cursor focus, which makes...
Definitely! I'm glad you were willing to test again with the new version, it fixed a lot of stuff for sure (and is way faster). Now that we've got a...
Lot of interest in this one. I have a repro locally I've been plugging away on and it's improved considerably, but something is still awry with the editor focus.
@haggholm I haven't yet tried draft-js with the most recent versions of Preact (7.2) and preact-compat (3.11).
Just tried out the gist from above against the latest versions and it's much better! Still something awry with the inline styles (bold/italic/underline) but it doesn't duplicate text or anything:...
You might find the technique shown here to be useful: https://jasonformat.com/universal-vdom-components-with-factory-loader/
I've always wanted to release an npm package that tries to infer which virtual-dom library a given project is using. It'd be neat: ```js import { createElement, Component, cloneElement, render...
Strange, I've never heard of that method. You could try patching it in: ``` js import { options } from 'preact'; options.event = e => { e.persist = () =>...