Vesa Karvonen

Results 84 comments of Vesa Karvonen

FYI, I added a `Highlight` component to the [GitHub Snippet Recorder example](https://codesandbox.io/s/8zo3ko95p2) that uses [Highlight.js](https://highlightjs.org/) to highlight a code block after changes (just edit the text in the CodeMirror editor...

Also support React `16.0.0`. I already made a quick hack to see if Karet works with React `16.0.0-alpha.12` and it seemed to just work.

Karet doesn't need Preact combat. Here is [a JSBin that uses Karet with Preact](https://jsbin.com/docoja/3/edit?js,output). I have a some work I'd like to complete on Partial Lenses, but after that I'll...

I think some of the bundlers allow you to [rename or alias packages](https://github.com/developit/preact-compat#usage-with-webpack). One way to parameterize Karet might be by relying on such a renaming technique. I'm not sure...

BTW, I recently simply used the `createElement` function named as `h` in a project where there was no transpiler or JSX. It wasn't a particularly large/complex UI, but I found...

Hmm... I've never used `React.cloneElement` and I can't think of convincing use cases for it—although that doesn't mean that there wouldn't be any. So, I'm happy to reconsider, assuming someone...

The root cause of this is described in #330. Specifically, the minified `klipse_plugin.min.js` exposes its global variables (including functions) to the `window` object. In the snippet `var x` refers to...

I just got bitten by this non-overlapping behaviour of `flatMapLatest`. I do think that the overlapping behaviour should be the default, because that way `combine` style semantics can be explained...

@rpominov > I don't use Static or Fantasy Land in anything real, it always was experimental/academic for me. That is entirely acceptable. I do use Static Land in real projects...

@hallettj > I'm not sure I agree that ap should have sequential semantics. Note that my point isn't that `ap` should have sequential semantics—quite the contrary actually. My point is...