Skip to content

Releases: fsprojects/Avalonia.FuncUI

v1.3.0

25 Feb 09:52
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.2.0...1.3.0

v1.2.0

25 Feb 09:51
Compare
Choose a tag to compare

What's Changed

  • Update README.md by @JaggerJo in #356
  • Fix example titles by @beyon in #362
  • Adding more Color overloads for brush properties by @beyon in #363
  • Gridsplitter properties by @beyon in #364
  • Adding ColumnDefinition and RowDefinition to DSL by @beyon in #371
  • Replace a use of Seq.iteri over a list with List.iteri by @Numpsy in #374
  • Fix a few 'Pattern discard is not allowed for union case that takes n… by @Numpsy in #373
  • Create FUNDING.yml by @JaggerJo in #376

New Contributors

Full Changelog: 1.1.0...1.2.0

1.1.0

23 Oct 07:20
Compare
Choose a tag to compare

What's Changed

  • Performance improvements: ItemsControl @marklam in #352
    Thanks @marklam for working on this issue!

  • Experimental features:

    • Animation helpers (for explicit animations)
    • Operators (.=) to set state
    • Feliz like useDeferred hook

Full Changelog: 1.0.2...1.1.0

v1.0.2

23 Oct 07:15
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.1...1.0.2

1.0.1

09 Aug 07:59
Compare
Choose a tag to compare
  • fix bug in useEffect. If the handler function returns an IDisposable then Dispose should be called when the component is destroyed.

1.0.0

07 Jul 09:05
Compare
Choose a tag to compare
bump version to 1.0.0 and target Avalonia 11.0.0.

1.0.0-RC-1.1.1

26 Jun 06:55
c37c880
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.0-RC-1.1.0...1.0.0-RC-1.1.1

1.0.0 RC 1.1.0

20 Jun 18:48
9647d23
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.6.0-preview8...1.0.0-RC-1.1.0

0.6.0-preview8

28 Feb 14:15
2631f2d
Compare
Choose a tag to compare

What's Changed

  • added StaticComponent for creating XAML like components with bindings
  • added Control.init to run code once after control instantiation
  • updated bindings

Full Changelog: 0.6.0-preview7...0.6.0-preview8

0.6.0-preview7

26 Jan 15:56
ec9bcbc
Compare
Choose a tag to compare
0.6.0-preview7 Pre-release
Pre-release

This pre-release contains:

A new overload added to useElmish hook

  • initArg no longer needs to be specified when initArg is unit.

So this:

let model, dispatch = ctx.useElmish(init, update, ())

Can also be written as this:

let model, dispatch = ctx.useElmish(init, update)

A performance optimization