bucklescript-tea icon indicating copy to clipboard operation
bucklescript-tea copied to clipboard

TEA for Bucklescript

Results 53 bucklescript-tea issues
Sort by recently updated
recently updated
newest added

If I use code like this: ``` div [styles [("position", "absolute") ;("left", toPX swipeyStyle##left) ;("top", toPX swipeyStyle##top) ] ] [ img [(src Swipey.image) ][] ] ``` (toPX swipey... resolves to...

Our BS-tea-based editor uses contenteditable so that we can have a cursor in our app. Unfortunately, we are having difficult interactions between the bs-tea model and placing the cursor which...

To make the debugger useful in our app, we added this CSS. It doesn't make it completely usable, but it's an improvement. ``` #debug { min-height: 20px; z-index: 100; position:...

TODO: Wrap Cmd callbacks in exception handlers to prevent exception from propagating unhandled from potentially called javascript in Cmd's...

I was hoping to chain a few http requests into a task when I noticed that Elm's `Http.toTask` function hasn't been adopted (or is missing). I attempted to split the...

Thank you for the great library. It has been a great experience so far. I am trying to wrap **bucklescript-tea** component into web components. The initial skeleton looks like this:...

I'm debugging some performance issues in our app. While looking through the code I saw that bs-tea doesn't use requestAnimationFrame, seemingly by accident. In [scheduleRender](https://github.com/OvermindDL1/bucklescript-tea/blob/63c1876fc3719203372faa48c97598463b3cc787/src-ocaml/tea_app.ml#L187), there's a comment: > (*...

This is just a question. I was wondering if it would be possible (and be useful) to create tea with React as the view layer. The reason why it could...

Hey! I've (and @pbiggar too ;)) been having some difficulties when trying to contribute some of our forked changes upstream. We have a fork (darklang/bucklescript-tea) with changes that we're baking...

This is an experiment of initializing a bucklescript-tea application to a pre-rendered DOM. The app is provided with a flag at startup that tells if the parent node already includes...