Skip to content

v0.4.0

Choose a tag to compare

@adoyle0 adoyle0 released this 09 Dec 00:53
· 3 commits to main since this release

Highlights

  • Link behavior changed slightly #38
  • Label behavior changed slightly around some inputs. Any breakage that may be caused by this is a good opportunity to try out the new Field component #27
  • Added stores feature which enables support for reactive stores Fields in Reactive #35
  • DropdownTrigger and PopoverTrigger now take Buttons as children. #37
<DropdownTrigger variant="outline">
    "Click Me"
</DropdownTrigger>

<!-- Becomes -->

<DropdownTrigger>
    <Button variant="outline">
        "Click Me"
    </Button>
</DropdownTrigger>

What's Changed

  • feat: add placeholder to Select by @adoyle0 in #26
  • feat: add Field components by @adoyle0 in #27
  • fix: properly scope non-global contexts by @adoyle0 in #28
  • feat: add Spinner component by @adoyle0 in #29
  • feat: add Progress component by @adoyle0 in #30
  • feat: add Empty component by @adoyle0 in #31
  • docs: match docstrings with docs site component descriptions, sort at… by @adoyle0 in #32
  • feat: add InputGroup component by @adoyle0 in #34
  • feat: add AvatarGroup component and improve AvatarFallback handling by @adoyle0 in #36
  • refactor: DropdownMenuTrigger and PopoverTrigger are now provider wrappers that take Buttons as input by @adoyle0 in #37
  • feat: add as_button to Link component by @adoyle0 in #38
  • change: disable tooltips when using touch input by @adoyle0 in #39
  • feat: add invalid prop to Badge component by @adoyle0 in #40
  • Basic support for Reactive Stores by @godstail in #35
  • fix: don't try to set input value for file inputs by @adoyle0 in #42

New Contributors

Full Changelog: v0.3.10...v0.4.0