github segmentio/evergreen v1.0.0
1.0.0

latest releases: v7.1.9, v7.1.8, v7.1.7...
6 years ago

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.

Don't miss a new evergreen release

NewReleases is sending notifications on new releases.