All Versions
40
Latest Version
Avg Release Cycle
44 days
Latest Release
2001 days ago

Changelog History
Page 2

  • v0.5.0-beta2 Changes

    September 17, 2016
    • 🔨 Just some refactoring
    • API changed - registerInput goes as a third parameter now: jsx <Autocomplete value={value} options={countries} onChange={e => onChange(e.target.value)} > {(inputProps, otherProps, registerInput) => <FormControl ref={c => registerInput(ReactDOM.findDOMNode(c))} type='text' {...inputProps} /> } </Autocomplete>
  • v0.5.0-beta1 Changes

    September 11, 2016
    • 🗄 Auto-resolving input node is deprecated - now you have to provide it yourself, i.e.: jsx <Autocomplete value={value} options={countries} onChange={e => onChange(e.target.value)} > {(inputProps, { registerInput }) => <FormControl ref={c => registerInput(ReactDOM.findDOMNode(c))} type='text' {...inputProps} /> } </Autocomplete>
    • 🗄 onValueChange is deprecated - use onSelect instead
    • Components do not proxy props anymore (unless these props are used in component)
    • Not-so-themeable react-date-picker is replaced with react-day-picker-themeable, this library no longer depends on jss
    • DatePicker and Dropdown are now themeable (via react-base16-styling)
  • v0.4.12 Changes

    June 20, 2016
    • 0.4.12
    • upgrade moment for DatePicker
  • v0.4.11 Changes

    May 16, 2016
    • 0.4.11
    • fix managing null value in dropdown
  • v0.4.10 Changes

    May 01, 2016
    • 0.4.10
    • fix bluring Dropdown
    • fix disabled option
    • 0.4.9
    • remove a hack (proposed in #13)
  • v0.4.8 Changes

    March 18, 2016
    • 0.4.8
    • better async dropdown update
  • v0.4.7 Changes

    March 10, 2016
    • 0.4.7
    • fix dependencies
  • v0.4.6 Changes

    March 10, 2016
    • 0.4.6
    • sync options changes with input text
  • v0.4.5 Changes

    January 29, 2016
    • 0.4.5
    • fix weird react error on dropdown options traversing
  • v0.4.4 Changes

    January 13, 2016
    • 0.4.4
    • allow function as option label