Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 423a817

Browse files
committed
chore(release): bump package version and update changelog
1 parent 49166a9 commit 423a817

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="0.14.4"></a>
2+
## [0.14.4](https://github.com/angular-ui/ui-select/compare/v0.14.4...v0.14.4) (2016-02-18)
3+
4+
5+
### Bug Fixes
6+
7+
* Allow setting a ngClass on <ui-select> element ([6a99b08](https://github.com/angular-ui/ui-select/commit/6a99b08)), closes [#277](https://github.com/angular-ui/ui-select/issues/277)
8+
9+
10+
111
<a name="0.14.3"></a>
212
## [0.14.3](https://github.com/angular-ui/ui-select/compare/v0.14.3...v0.14.3) (2016-02-18)
313

dist/select.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.14.3 - 2016-02-18T19:58:15.973Z
4+
* Version: 0.14.4 - 2016-02-18T20:29:05.232Z
55
* License: MIT
66
*/
77

dist/select.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.14.3 - 2016-02-18T19:58:15.912Z
4+
* Version: 0.14.4 - 2016-02-18T20:29:05.181Z
55
* License: MIT
66
*/
77

@@ -865,6 +865,14 @@ uis.directive('uiSelect',
865865
controllerAs: '$select',
866866
compile: function(tElement, tAttrs) {
867867

868+
// Allow setting ngClass on uiSelect
869+
var match = /{(.*)}\s*{(.*)}/.exec(tAttrs.ngClass);
870+
if(match) {
871+
var combined = '{'+ match[1] +', '+ match[2] +'}';
872+
tAttrs.ngClass = combined;
873+
tElement.attr('ng-class', combined);
874+
}
875+
868876
//Multiple or Single depending if multiple attribute presence
869877
if (angular.isDefined(tAttrs.multiple))
870878
tElement.append('<ui-select-multiple/>').removeAttr('multiple');

dist/select.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/select.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "git://github.com/angular-ui/ui-select.git"
88
},
99
"style": "dist/select.css",
10-
"version": "0.14.4",
10+
"version": "0.14.5",
1111
"devDependencies": {
1212
"bower": "~1.3",
1313
"conventional-changelog": "^0.5.3",

0 commit comments

Comments
 (0)