Releases: segmentio/evergreen
Releases · segmentio/evergreen
Release list
1.2.0
1.1.0
1.0.1
1.0.0
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.