Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 541 Bytes

UPGRADE_GUIDE.md

File metadata and controls

23 lines (14 loc) · 541 Bytes

Upgrade Guide

1.xx.xx -> 2.xx.xx

Upgrade React

react-autosuggest 2.0 requires React 0.14.0-rc1 or above

inputAttributes.value is no longer supported

To set the default value of an uncontrolled component use defaultValue.

Before

<Autosuggest inputAttributes={{ value: 'Mordialloc' }} ... />

After

<Autosuggest defaultValue="Mordialloc" ... />