Fable.Form 3.0.0-beta-001

This is a prerelease version of Fable.Form.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Fable.Form --version 3.0.0-beta-001                
NuGet\Install-Package Fable.Form -Version 3.0.0-beta-001                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Fable.Form" Version="3.0.0-beta-001" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fable.Form --version 3.0.0-beta-001                
#r "nuget: Fable.Form, 3.0.0-beta-001"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Fable.Form as a Cake Addin
#addin nuget:?package=Fable.Form&version=3.0.0-beta-001&prerelease

// Install Fable.Form as a Cake Tool
#tool nuget:?package=Fable.Form&version=3.0.0-beta-001&prerelease                

Extensible core library used to build forms

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Fable.Form:

Package Downloads
Fable.Form.Simple

Contains the global logic of how a form should behave. It can be used has a standalone library if you want to build your own fields or you can use Fable.Form.Simple.Bulma to have a ready to use fields made for Bulma CSS framework.

Fable.Form.Simple.Bulma

React implementation of standard fields using Bulma CSS framework, to be used with Fable.Form.Simple.

Fable.Form.Simple.MaterialUI

This library is a Material UI implementation of Fable.Form.Simple written in F#.

Fable.Form.Antidote

Package Description

Fable.Form.Antidote.View

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 320 10/20/2024
3.0.0-beta-002 188 9/9/2024
3.0.0-beta-001 67 9/8/2024
2.0.0 2,759 6/23/2023
1.2.0 4,480 7/12/2022
1.1.0 4,492 6/7/2021
1.0.1 582 5/11/2021
1.0.0 537 5/11/2021

# Changelog

All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

<!-- EasyBuild: START -->
<!-- last_commit_released: b4c90120754bc99cd66712e9e240013751f9eff5 -->
<!-- EasyBuild: END -->

## 3.0.0-beta-001

### 🚀 Features

* Make it easier to add custom fields ([c99eed9](https://github.com/glutinum-org/cli/commit/c99eed98527d3a0f19b75967434b74af8cb7ca26))

   * Field attributes now needs to inherit from `IAttributes`
   * Refactor `Base.fill` to explicitly take a `values` argument instead of returning a lambda

       ```fsharp
       val fill:
           Form<'Values,'Output,'Field>
           -> 'Values -> FilledForm<'Output,'Field>
       ```

       ```fsharp
       val fill:
           Form<'Values,'Output,'Field> ->
           values: 'Values
           -> FilledForm<'Output,'Field>
       ```

## 2.0.0 - 2022-06-23

### Changed

* Upgrade to Fable 4

## 1.2.0 - 2022-07-12

### Fixed

* Fix #32: Add `Form.disable`

## 1.1.0 - 2021-06-07

### Changed

* Lower FSharp.Core requirement

## 1.0.1 - 2021-05-11

### Fixed

* Publish the `*.fsi` fiels inside `fable` folder

## 1.0.0 - 2021-05-11

### Added

* Initial release