Skip to content
This repository was archived by the owner on Nov 22, 2021. It is now read-only.

Commit 9da2628

Browse files
committed
chore(release): Release v2.0.1
1 parent de4fe10 commit 9da2628

File tree

2 files changed

+24
-9
lines changed

2 files changed

+24
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### 2.0.1 (2014-04-13)
2+
3+
#### Bug Fixes
4+
5+
* **autocomplete:**
6+
* Escape regex metachars when highlighting ([e3c695f2](https://github.com/mbenford/ngTagsInput/commit/e3c695f26f96ab642a4a1f1129638e763b84b231), [#124](https://github.com/mbenford/ngTagsInput/issues/124))
7+
* Fix autocomplete navigation when maxResultsToShow is set ([d95d35e8](https://github.com/mbenford/ngTagsInput/commit/d95d35e814099d74355ed431e85a957d39ec4745), [#109](https://github.com/mbenford/ngTagsInput/issues/109))
8+
* Fix memory leak ([ba3a1a56](https://github.com/mbenford/ngTagsInput/commit/ba3a1a563d99894f381e4a29f3a1753a540ff453), [#118](https://github.com/mbenford/ngTagsInput/issues/118))
9+
* **autosize:** Re-size input when placeholder changes ([0eacc964](https://github.com/mbenford/ngTagsInput/commit/0eacc9647ed7b12fac8db23cb711bb6c38a8c31a), [#110](https://github.com/mbenford/ngTagsInput/issues/110))
10+
111
## v2.0.0 (2014-03-26)
212

313
#### Bug Fixes

build/ng-tags-input.js

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Copyright (c) 2013-2014 Michael Benford
66
* License: MIT
77
*
8-
* Generated at 2014-04-13 21:10:46 -0300
8+
* Generated at 2014-04-13 21:25:38 -0300
99
*/
1010
(function() {
1111
'use strict';
@@ -75,7 +75,8 @@ var tagsInput = angular.module('ngTagsInput', []);
7575

7676
/**
7777
* @ngdoc directive
78-
* @name tagsInput.directive:tagsInput
78+
* @name tagsInput
79+
* @module ngTagsInput
7980
*
8081
* @description
8182
* Renders an input box with tag editing support.
@@ -96,7 +97,7 @@ var tagsInput = angular.module('ngTagsInput', []);
9697
* @param {boolean=} [addOnComma=true] Flag indicating that a new tag will be added on pressing the COMMA key.
9798
* @param {boolean=} [addOnBlur=true] Flag indicating that a new tag will be added when the input field loses focus.
9899
* @param {boolean=} [replaceSpacesWithDashes=true] Flag indicating that spaces will be replaced with dashes.
99-
* @param {string=} [allowedTagsPattern=^[a-zA-Z0-9\s]+$] Regular expression that determines whether a new tag is valid.
100+
* @param {string=} [allowedTagsPattern=.+] Regular expression that determines whether a new tag is valid.
100101
* @param {boolean=} [enableEditingLastTag=false] Flag indicating that the last tag will be moved back into
101102
* the new tag input box instead of being removed when the backspace key
102103
* is pressed and the input box is empty.
@@ -371,7 +372,8 @@ tagsInput.directive('tagsInput', ["$timeout","$document","tagsInputConfig", func
371372

372373
/**
373374
* @ngdoc directive
374-
* @name tagsInput.directive:autoComplete
375+
* @name autoComplete
376+
* @module ngTagsInput
375377
*
376378
* @description
377379
* Provides autocomplete support for the tagsInput directive.
@@ -605,7 +607,8 @@ tagsInput.directive('autoComplete', ["$document","$timeout","$sce","tagsInputCon
605607

606608
/**
607609
* @ngdoc directive
608-
* @name tagsInput.directive:tiTranscludeAppend
610+
* @name tiTranscludeAppend
611+
* @module ngTagsInput
609612
*
610613
* @description
611614
* Re-creates the old behavior of ng-transclude. Used internally by tagsInput directive.
@@ -620,7 +623,8 @@ tagsInput.directive('tiTranscludeAppend', function() {
620623

621624
/**
622625
* @ngdoc directive
623-
* @name tagsInput.directive:tiAutosize
626+
* @name tiAutosize
627+
* @module ngTagsInput
624628
*
625629
* @description
626630
* Automatically sets the input's width so its content is always visible. Used internally by tagsInput directive.
@@ -674,7 +678,8 @@ tagsInput.directive('tiAutosize', function() {
674678

675679
/**
676680
* @ngdoc service
677-
* @name tagsInput.service:tagsInputConfig
681+
* @name tagsInputConfig
682+
* @module ngTagsInput
678683
*
679684
* @description
680685
* Sets global configuration settings for both tagsInput and autoComplete directives. It's also used internally to parse and
@@ -687,7 +692,7 @@ tagsInput.provider('tagsInputConfig', function() {
687692
* @ngdoc method
688693
* @name setDefaults
689694
* @description Sets the default configuration option for a directive.
690-
* @methodOf tagsInput.service:tagsInputConfig
695+
* @methodOf tagsInputConfig
691696
*
692697
* @param {string} directive Name of the directive to be configured. Must be either 'tagsInput' or 'autoComplete'.
693698
* @param {object} defaults Object containing options and their values.
@@ -703,7 +708,7 @@ tagsInput.provider('tagsInputConfig', function() {
703708
* @ngdoc method
704709
* @name setActiveInterpolation
705710
* @description Sets active interpolation for a set of options.
706-
* @methodOf tagsInput.service:tagsInputConfig
711+
* @methodOf tagsInputConfig
707712
*
708713
* @param {string} directive Name of the directive to be configured. Must be either 'tagsInput' or 'autoComplete'.
709714
* @param {object} options Object containing which options should have interpolation turned on at all times.

0 commit comments

Comments
 (0)