Skip to content

WebSharper UI 4.2.5

Compare
Choose a tag to compare
@Tarmil Tarmil released this 17 Apr 12:47
· 400 commits to master since this release

This is a feature release for WebSharper.UI 4.2. See the associated WebSharper release.

Enhancements

  • Add Router.InstallInto and Router.InstallHashInto, which are similar to Router.Install and Router.InstallHash respectively, except that they take a Var<'EndPoint> as argument rather than creating and returning one.

Fixes

  • #164 Remove click event handler on Doc.Checkbox, only keeping change, to avoid setting the Var twice.
  • #166 Add proxy for quotation-based .OnXyz(...) event handlers.
  • #167 Fix initial value of Var.Make whenever an initial value is available from the View.
  • #168 Add View.TryGet : View<'T> -> option<'T> which returns the current value of a View if available, or None if not (eg if a View.MapAsync hasn't returned yet).