Fable.Form.Simple offers custom fields that are not supported by default by Bulma.

In order, to support them, Fable.Form.Simple.Bulma comes with an npm package fable-form-simple-bulma that you need to install.

  • Add the NuGet package to your project

    # .NET CLI
    dotnet add yourProject.fsproj package Fable.Form.Simple.Bulma
    
    # Paket CLI
    paket add Fable.Form.Simple.Bulma
  • Open the library modules

    open Fable.Form.Simple
    open Fable.Form.Simple.Bulma
  • Add the NPM package to your project

    npm add fable-form-simple-bulma
  • Import the style in your style.scss file

    // First import Bulma
    @import "~bulma";
    
    // Import
    @import "~fable-form-simple-bulma";

You are ready to go ๐ŸŽ‰