Alfonso Garcia-Caro

Results 315 comments of Alfonso Garcia-Caro

It took a while but we finally updated the sample to Fable 1.2 beta, could you give it a try? Please check README for instructions and note the name of...

I did try to make controllers compatible with `HookComponent` (well, it was the [animate directive](https://github.com/lit/lit/tree/main/packages/labs/motion#animate-directive) but it uses a controller under the hood) but I was unsuccessful because controllers require...

Ah, true! You need to keep a reference to the controller so "just initializing" them won't work 😸 Ok, I gave it a quick try at declaring controllers in `LitElement.init`...

I think we discussed this with @MangelMaxime and we opted to have independent samples, because the structure of an Electron app was more complex and it was difficult for users...

Using scss in a Fable project usually involves adding the appropriate loaders in the Webpack config, nothing Fable-specific. You can [check the fulma-demo](https://github.com/MangelMaxime/fulma-demo/blob/f6dae0a0001769d289d4a62de6acee9c968b79d7/webpack.config.js#L133-L142) for example. Or directly the [sass loader](https://github.com/webpack-contrib/sass-loader).

@MangelMaxime `createObj` also outputs a literal JS object if you pass all the members at once: ```fsharp createObj [ "foo" ==> 1; "bar" ==> 5] ``` ```js { foo: 1,...

@mastoj That may be a good idea. FYI, in the next Fable version we will probably go back at distributing sources (but using a special `` build item that will...

@MangelMaxime That suggestion looks very good and intellisense is very important :+1: I haven't checked fable-arch code recently but when I did a few months ago I think one of...

Another idea could be, taking advantage of the fact you can apply parches to the virtual-dom, is to update each componente independently. I'm not a huge fan of computing the...

This is great work @TIHan, looking forward to it! Not entirely sure if it's related but just to mention that it'd be nice if this work also takes into account...