Fable.Form
3.0.0-beta-002
See the version list below for details.
dotnet add package Fable.Form --version 3.0.0-beta-002
NuGet\Install-Package Fable.Form -Version 3.0.0-beta-002
<PackageReference Include="Fable.Form" Version="3.0.0-beta-002" />
paket add Fable.Form --version 3.0.0-beta-002
#r "nuget: Fable.Form, 3.0.0-beta-002"
// Install Fable.Form as a Cake Addin #addin nuget:?package=Fable.Form&version=3.0.0-beta-002&prerelease // Install Fable.Form as a Cake Tool #tool nuget:?package=Fable.Form&version=3.0.0-beta-002&prerelease
Extensible core library used to build forms
Product | Versions 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. |
-
.NETStandard 2.1
- Fable.Package.SDK (>= 1.0.0)
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: 02e31e6fa32f3722da8868ae0b18d34fa1ea68f7 -->
<!-- EasyBuild: END -->
## 3.0.0-beta-002
### 🚀 Features
* Add support for `ReadOnly` form/field ([02e31e6](https://github.com/glutinum-org/cli/commit/02e31e6fa32f3722da8868ae0b18d34fa1ea68f7))
1. Set it at the field level
```fsharp
Form.textField
// ...
|> Form.readOnly
// or
Form.textField
// ...
|> Form.readOnlyIf myCondition
```
2. Set it at the form level
```fsharp
let formValue : Form.View.Model<Values> = // ...
{ formValue with State = Form.View.State.Loading }
```
* Add `Form.disableIf` ([28337d9](https://github.com/glutinum-org/cli/commit/28337d90c3cd7b686f210db5ab5bde79b371bb66))
## 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