belle v1.2.0 Release Notes

Release Date: 2015-08-19 // over 8 years ago
  • ➕ Added

    • [TextInput] Added minRows and maxRows properties #146
    <TextInput minRows={ 5 } placeholder="Please fill in description …">
    

    🛠 Fixed

    • ⚠ [Select] Avoid printing a PropTypes warning when a Select has less than 2 children. #147
    • [Select] Allowing to a mix single components together with arrays of components as children. #161
    <Select>
      <Placeholder>Choose your City</Placeholder>
      {
        cities.map((city, index) => {
          return (
            <Option key={ index } value={ city.id } >
              { city.name }
            </Option>
          );
        });
      }
    </Select>
    
    • [ComboBox] Fix detecting isMatchingOption after pressing backspace. #162