Skip to content

Latest commit

 

History

History
151 lines (116 loc) · 9.76 KB

CHANGELOG.md

File metadata and controls

151 lines (116 loc) · 9.76 KB

v2.0.1 (2014-04-13)

Bug Fixes

  • autocomplete:
  • autosize: Re-size input when placeholder changes (0eacc964, #110)

v2.0.0 (2014-03-26)

Bug Fixes

Features

  • tagsInput:
  • configProvider: Make options optionally data-bound (390380bf, #73)

Breaking Changes

  • Stylesheets were changed and .ngTagsInput class selector was replaced by tags-input type selector. (7f9e8bba)
  • From now on, arrays of strings are no longer supported. In order to keep some backward compatibility a one-time conversion from an array of strings into an array of objects is available. (5c036806)

v1.1.1 (2014-01-23)

Bug Fixes

  • tagsInput: Fix input-change event name (47b40e13, #57)

v1.1.0 (2014-01-14)

Bug Fixes

  • tagsInput:
    • Change input width accordingly to its content (8abdf79b, #6)
  • autocomplete:
    • Fix require property (231f275c)
    • Close suggestion list when input loses focus (d73d1567, #52)
    • Hide suggestion list when there's nothing to show (5a58a927, #39)

Features

Breaking Changes

  • Some CSS selectors must be changed, and therefore custom stylesheets based on the old selectors will conflict with this fix. They'll have to be updated to use class selectors. (8abdf79b, #6)

v1.0.1 (2013-12-16)

  • tagsInput
    • Ignore modifier keys when processing keystrokes (820014e, #35)
  • autocomplete
    • Encode HTML chars in suggestion list (6e4f7c7, #34)
    • Prevent pending promises from executing (710d33a, #36)

v1.0.0 (2013-12-07)

v0.1.5 (2013-11-23)

  • Renamed autocomplete directive as auto-complete so it doesn't conflict with input's autocomplete attribute
  • Changed 'restrict' property of both tags-input and auto-complete directives to 'E'

v0.1.4 (2013-11-21)

  • Added basic autocomplete support
  • Added onTagAdded and onTagRemoved callbacks

v0.1.3 (2013-10-02)

  • Added support for one-time string interpolation to all options

v0.1.2 (2013-09-08)

  • Fixed the CSS classes so the directive gets rendered consistently across different browsers

v0.1.1 (2013-08-17)

  • Removed allowed-chars-pattern option since it wouldn't prevent invalid chars from being inserted by pasting data from the clipboard. The allowed-tags-pattern option is the correct way to validate input from now on