Maxime Mangel
Maxime Mangel
### Description ```fs open Fable.Core.JsInterop type ToastrOptions = abstract Thing : string [] module Toastr = let mutable private theOptions: ToastrOptions = //() import "options" "toastr" ``` ```js import {...
I have a `Code.tsx` file with a `Components.fs` file where I am binding the component for usage in F#: ```fs [] let Code (code: string) (language : string) = React.imported()...
```fs type Reproduction = | Case1 | Case2 let app () = let state = Store.make Reproduction.Case1 Html.div [ Bind.fragment state (fun state -> match state with | Reproduction.Case1 ->...
The introduction is a bit long, but at the end there is a small reproduction code. I felt like explaining by context could help to understand the why The way...
Sutil is using [Feliz.Engine](https://github.com/alfonsogarciacaro/Feliz.Engine) for providing an HTML DSL. The problem is that Feliz.Engine, is not maintained anymore and @alfonsogarciacaro is the only person that has access to the NuGet...
### Details ```fs type Attributes2() = member val FieldId: string = "" with get, set member val Label: string = "" with get, set let x = Attributes2(FieldId = "")...
### Details Hello, I am working on improving [F# formatting API](https://github.com/fsprojects/FSharp.Formatting/pull/932) documentation and one of the main element is to improve the Tooltip formatting. This leads to having to duplicate...
Not ready yet, I created it as a Draft to let people know that v1 support is being worked on so we are not several to work on it. What...
Hello, This is a proposition. When using `sidebar`, a `margin-top` is automatically applied to the "main content" of the page. This cause the scrollbar to be placed in a not...