Skip to content

1.0.0

Compare
Choose a tag to compare
@Rowno Rowno released this 07 Feb 03:35
· 723 commits to master since this release
v1.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.