Skip to content

Releases: segmentio/evergreen

1.2.0

08 Feb 19:01
v1.2.0
Compare
Choose a tag to compare
  • Adds title prop for Autocomplete (#131).
  • AutocompleteItem is now using Option from SelectMenu (#131).
  • Changed how aria-selected and aria-current works on TableRow (#131).
  • Adds more stories for Autocomplete (#131).

1.1.0

07 Feb 23:30
v1.1.0
Compare
Choose a tag to compare

New features

  • Add child close support for SideSheet (#130).

1.0.1

07 Feb 03:39
v1.0.1
Compare
Choose a tag to compare

Bug fixes

  • Use TableHead in SelectMenu (#129).
  • Consolidate TableHead defaultProps (#129).

1.0.0

07 Feb 03:35
v1.0.0
Compare
Choose a tag to compare

Initial release of evergreen-ui, our new combined package. For a number of reasons we've decided to convert Evergreen from a monorepo to a single package (the evergreen-* packages are now deprecated). But we've made the migration simple, read on to find out how!

Migration guide

To migrate to the new evergreen-ui package, you just need to install the new package (yarn add evergreen-ui). Combine all your Evergreen imports (the export names haven't changed), e.g:

import TextInput from 'evergreen-text-input'
import SelectMenu from 'evergreen-select-menu'

Becomes:

import { TextInput, SelectMenu } from 'evergreen-ui'

And then remove all the old evergreen-* packages.

To ease the migration, we've created a command line tool to automate the process of updating all your imports.

The only breaking API change is that evergreen-avatar's getInitials function is no longer exported.