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

Commit 5ae151a

Browse files
committed
chore(release): bump package version and update changelog
1 parent 9b4421d commit 5ae151a

File tree

7 files changed

+2384
-2
lines changed

7 files changed

+2384
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
<a name="0.16.0"></a>
2+
# [0.16.0](https://github.com/angular-ui/ui-select/compare/v0.16.0...v0.16.0) (2016-03-23)
3+
4+
5+
### Bug Fixes
6+
7+
* **$window:** change input size on window resize ([ce24981](https://github.com/angular-ui/ui-select/commit/ce24981)), closes [#522](https://github.com/angular-ui/ui-select/issues/522)
8+
* **uiSelectMultipleDirective:** add $isEmpty handler ([fccc29a](https://github.com/angular-ui/ui-select/commit/fccc29a)), closes [#850](https://github.com/angular-ui/ui-select/issues/850)
9+
* **uiSelectMultipleDirective:** refresh choices upon selection change ([03293ff](https://github.com/angular-ui/ui-select/commit/03293ff)), closes [#1243](https://github.com/angular-ui/ui-select/issues/1243)
10+
11+
12+
113
# Changelog
214

315
All notable changes to this project will be documented in this file.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui-select",
3-
"version": "0.14.0",
3+
"version": "0.14.1",
44
"homepage": "https://github.com/angular-ui/ui-select",
55
"authors": [
66
"AngularUI"

dist/select.css

Lines changed: 267 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,267 @@
1+
/*!
2+
* ui-select
3+
* http://github.com/angular-ui/ui-select
4+
* Version: 0.16.0 - 2016-03-23T20:51:56.678Z
5+
* License: MIT
6+
*/
7+
8+
9+
/* Style when highlighting a search. */
10+
.ui-select-highlight {
11+
font-weight: bold;
12+
}
13+
14+
.ui-select-offscreen {
15+
clip: rect(0 0 0 0) !important;
16+
width: 1px !important;
17+
height: 1px !important;
18+
border: 0 !important;
19+
margin: 0 !important;
20+
padding: 0 !important;
21+
overflow: hidden !important;
22+
position: absolute !important;
23+
outline: 0 !important;
24+
left: 0px !important;
25+
top: 0px !important;
26+
}
27+
28+
29+
.ui-select-choices-row:hover {
30+
background-color: #f5f5f5;
31+
}
32+
33+
/* Select2 theme */
34+
35+
/* Mark invalid Select2 */
36+
.ng-dirty.ng-invalid > a.select2-choice {
37+
border-color: #D44950;
38+
}
39+
40+
.select2-result-single {
41+
padding-left: 0;
42+
}
43+
44+
.select2-locked > .select2-search-choice-close{
45+
display:none;
46+
}
47+
48+
.select-locked > .ui-select-match-close{
49+
display:none;
50+
}
51+
52+
body > .select2-container.open {
53+
z-index: 9999; /* The z-index Select2 applies to the select2-drop */
54+
}
55+
56+
/* Handle up direction Select2 */
57+
.ui-select-container[theme="select2"].direction-up .ui-select-match {
58+
border-radius: 4px; /* FIXME hardcoded value :-/ */
59+
border-top-left-radius: 0;
60+
border-top-right-radius: 0;
61+
}
62+
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown {
63+
border-radius: 4px; /* FIXME hardcoded value :-/ */
64+
border-bottom-left-radius: 0;
65+
border-bottom-right-radius: 0;
66+
67+
border-top-width: 1px; /* FIXME hardcoded value :-/ */
68+
border-top-style: solid;
69+
70+
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
71+
72+
margin-top: -4px; /* FIXME hardcoded value :-/ */
73+
}
74+
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search {
75+
margin-top: 4px; /* FIXME hardcoded value :-/ */
76+
}
77+
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match {
78+
border-bottom-color: #5897fb;
79+
}
80+
81+
/* Selectize theme */
82+
83+
/* Helper class to show styles when focus */
84+
.selectize-input.selectize-focus{
85+
border-color: #007FBB !important;
86+
}
87+
88+
/* Fix input width for Selectize theme */
89+
.selectize-control > .selectize-input > input {
90+
width: 100%;
91+
}
92+
93+
/* Fix dropdown width for Selectize theme */
94+
.selectize-control > .selectize-dropdown {
95+
width: 100%;
96+
}
97+
98+
/* Mark invalid Selectize */
99+
.ng-dirty.ng-invalid > div.selectize-input {
100+
border-color: #D44950;
101+
}
102+
103+
/* Handle up direction Selectize */
104+
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
105+
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
106+
107+
margin-top: -2px; /* FIXME hardcoded value :-/ */
108+
}
109+
110+
/* Bootstrap theme */
111+
112+
/* Helper class to show styles when focus */
113+
.btn-default-focus {
114+
color: #333;
115+
background-color: #EBEBEB;
116+
border-color: #ADADAD;
117+
text-decoration: none;
118+
outline: 5px auto -webkit-focus-ring-color;
119+
outline-offset: -2px;
120+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
121+
}
122+
123+
.ui-select-bootstrap .ui-select-toggle {
124+
position: relative;
125+
}
126+
127+
.ui-select-bootstrap .ui-select-toggle > .caret {
128+
position: absolute;
129+
height: 10px;
130+
top: 50%;
131+
right: 10px;
132+
margin-top: -2px;
133+
}
134+
135+
/* Fix Bootstrap dropdown position when inside a input-group */
136+
.input-group > .ui-select-bootstrap.dropdown {
137+
/* Instead of relative */
138+
position: static;
139+
}
140+
141+
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
142+
border-radius: 4px; /* FIXME hardcoded value :-/ */
143+
border-top-right-radius: 0;
144+
border-bottom-right-radius: 0;
145+
}
146+
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
147+
border-radius: 4px !important; /* FIXME hardcoded value :-/ */
148+
border-top-right-radius: 0 !important;
149+
border-bottom-right-radius: 0 !important;
150+
}
151+
152+
.ui-select-bootstrap > .ui-select-match > .btn{
153+
/* Instead of center because of .btn */
154+
text-align: left !important;
155+
}
156+
157+
.ui-select-bootstrap > .ui-select-match > .caret {
158+
position: absolute;
159+
top: 45%;
160+
right: 15px;
161+
}
162+
163+
/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
164+
.ui-select-bootstrap > .ui-select-choices {
165+
width: 100%;
166+
height: auto;
167+
max-height: 200px;
168+
overflow-x: hidden;
169+
margin-top: -1px;
170+
}
171+
172+
body > .ui-select-bootstrap.open {
173+
z-index: 1000; /* Standard Bootstrap dropdown z-index */
174+
}
175+
176+
.ui-select-multiple.ui-select-bootstrap {
177+
height: auto;
178+
padding: 3px 3px 0 3px;
179+
}
180+
181+
.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
182+
background-color: transparent !important; /* To prevent double background when disabled */
183+
border: none;
184+
outline: none;
185+
height: 1.666666em;
186+
margin-bottom: 3px;
187+
}
188+
189+
.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
190+
font-size: 1.6em;
191+
line-height: 0.75;
192+
}
193+
194+
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
195+
outline: 0;
196+
margin: 0 3px 3px 0;
197+
}
198+
199+
.ui-select-multiple .ui-select-match-item {
200+
position: relative;
201+
}
202+
203+
.ui-select-multiple .ui-select-match-item.dropping-before:before {
204+
content: "";
205+
position: absolute;
206+
top: 0;
207+
right: 100%;
208+
height: 100%;
209+
margin-right: 2px;
210+
border-left: 1px solid #428bca;
211+
}
212+
213+
.ui-select-multiple .ui-select-match-item.dropping-after:after {
214+
content: "";
215+
position: absolute;
216+
top: 0;
217+
left: 100%;
218+
height: 100%;
219+
margin-left: 2px;
220+
border-right: 1px solid #428bca;
221+
}
222+
223+
.ui-select-bootstrap .ui-select-choices-row>a {
224+
display: block;
225+
padding: 3px 20px;
226+
clear: both;
227+
font-weight: 400;
228+
line-height: 1.42857143;
229+
color: #333;
230+
white-space: nowrap;
231+
}
232+
233+
.ui-select-bootstrap .ui-select-choices-row>a:hover, .ui-select-bootstrap .ui-select-choices-row>a:focus {
234+
text-decoration: none;
235+
color: #262626;
236+
background-color: #f5f5f5;
237+
}
238+
239+
.ui-select-bootstrap .ui-select-choices-row.active>a {
240+
color: #fff;
241+
text-decoration: none;
242+
outline: 0;
243+
background-color: #428bca;
244+
}
245+
246+
.ui-select-bootstrap .ui-select-choices-row.disabled>a,
247+
.ui-select-bootstrap .ui-select-choices-row.active.disabled>a {
248+
color: #777;
249+
cursor: not-allowed;
250+
background-color: #fff;
251+
}
252+
253+
/* fix hide/show angular animation */
254+
.ui-select-match.ng-hide-add,
255+
.ui-select-search.ng-hide-add {
256+
display: none !important;
257+
}
258+
259+
/* Mark invalid Bootstrap */
260+
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
261+
border-color: #D44950;
262+
}
263+
264+
/* Handle up direction Bootstrap */
265+
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
266+
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
267+
}

0 commit comments

Comments
 (0)