Skip to content

Commit 32829a3

Browse files
committed
chore(release): bump package version and update changelog
1 parent 92110ab commit 32829a3

8 files changed

+108
-211
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<a name="0.19.8"></a>
2+
## [0.19.8](https://github.com/angular-ui/ui-select/compare/v0.19.7...v0.19.8) (2017-04-15)
3+
4+
5+
6+
17
<a name="0.19.6"></a>
28
## [0.19.6](https://github.com/angular-ui/ui-select/compare/v0.19.6...v0.19.6) (2017-04-12)
39

dist/select.css

+84-137
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.19.6 - 2017-04-12T06:30:23.759Z
4+
* Version: 0.19.7 - 2017-04-15T14:28:36.790Z
55
* License: MIT
66
*/
77

@@ -21,10 +21,11 @@
2121
overflow: hidden !important;
2222
position: absolute !important;
2323
outline: 0 !important;
24-
left: 0 !important;
25-
top: 0 !important;
24+
left: 0px !important;
25+
top: 0px !important;
2626
}
2727

28+
2829
.ui-select-choices-row:hover {
2930
background-color: #f5f5f5;
3031
}
@@ -33,84 +34,68 @@
3334

3435
/* Mark invalid Select2 */
3536
.ng-dirty.ng-invalid > a.select2-choice {
36-
border-color: #D44950;
37+
border-color: #D44950;
3738
}
3839

3940
.select2-result-single {
4041
padding-left: 0;
4142
}
4243

43-
.select2-locked > .select2-search-choice-close {
44-
display: none;
44+
.select2-locked > .select2-search-choice-close{
45+
display:none;
4546
}
4647

47-
.select-locked > .ui-select-match-close {
48-
display: none;
48+
.select-locked > .ui-select-match-close{
49+
display:none;
4950
}
5051

5152
body > .select2-container.open {
5253
z-index: 9999; /* The z-index Select2 applies to the select2-drop */
5354
}
5455

55-
.select2 .ui-select-footer,
56-
.select2 .ui-select-header {
57-
padding: 4px 10px;
58-
}
59-
60-
.select2 .ui-select-footer {
61-
border-top: 1px solid #dfe5eb;
62-
}
63-
64-
.select2 .ui-select-header {
65-
border-bottom: 1px solid #dfe5eb;
66-
}
67-
6856
/* Handle up direction Select2 */
6957
.ui-select-container[theme="select2"].direction-up .ui-select-match,
7058
.ui-select-container.select2.direction-up .ui-select-match {
71-
border-radius: 4px; /* FIXME hardcoded value :-/ */
72-
border-top-left-radius: 0;
73-
border-top-right-radius: 0;
59+
border-radius: 4px; /* FIXME hardcoded value :-/ */
60+
border-top-left-radius: 0;
61+
border-top-right-radius: 0;
7462
}
75-
7663
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
7764
.ui-select-container.select2.direction-up .ui-select-dropdown {
78-
border-radius: 4px; /* FIXME hardcoded value :-/ */
79-
border-bottom-left-radius: 0;
80-
border-bottom-right-radius: 0;
65+
border-radius: 4px; /* FIXME hardcoded value :-/ */
66+
border-bottom-left-radius: 0;
67+
border-bottom-right-radius: 0;
8168

82-
border-top-width: 1px; /* FIXME hardcoded value :-/ */
83-
border-top-style: solid;
69+
border-top-width: 1px; /* FIXME hardcoded value :-/ */
70+
border-top-style: solid;
8471

85-
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
72+
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
8673

87-
margin-top: -4px; /* FIXME hardcoded value :-/ */
74+
margin-top: -4px; /* FIXME hardcoded value :-/ */
8875
}
89-
9076
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
9177
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
92-
margin-top: 4px; /* FIXME hardcoded value :-/ */
78+
margin-top: 4px; /* FIXME hardcoded value :-/ */
9379
}
94-
9580
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
9681
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
97-
border-bottom-color: #5897fb;
82+
border-bottom-color: #5897fb;
9883
}
9984

10085
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
101-
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input {
102-
opacity: 0;
103-
height: 0;
104-
min-height: 0;
105-
padding: 0;
106-
margin: 0;
107-
border: 0;
86+
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
87+
opacity: 0;
88+
height: 0;
89+
min-height: 0;
90+
padding: 0;
91+
margin: 0;
92+
border:0;
10893
}
10994

11095
/* Selectize theme */
11196

11297
/* Helper class to show styles when focus */
113-
.selectize-input.selectize-focus {
98+
.selectize-input.selectize-focus{
11499
border-color: #007FBB !important;
115100
}
116101

@@ -129,38 +114,25 @@ body > .select2-container.open {
129114
width: 100%;
130115
}
131116

132-
.selectize-dropdown .ui-select-footer,
133-
.selectize-dropdown .ui-select-header {
134-
padding: 5px 8px;
135-
}
136-
137-
.selectize-dropdown .ui-select-header {
138-
border-bottom: 1px solid #b8b8b8;
139-
}
140-
141-
.selectize-dropdown .ui-select-footer {
142-
border-top: 1px solid #b8b8b8;
143-
}
144-
145117
/* Mark invalid Selectize */
146118
.ng-dirty.ng-invalid > div.selectize-input {
147-
border-color: #D44950;
119+
border-color: #D44950;
148120
}
149121

150122
/* Handle up direction Selectize */
151123
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
152-
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
153-
margin-top: -2px; /* FIXME hardcoded value :-/ */
124+
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
125+
margin-top: -2px; /* FIXME hardcoded value :-/ */
154126
}
155127

156-
.ui-select-container[theme="selectize"] input.ui-select-search-hidden {
157-
opacity: 0;
158-
height: 0;
159-
min-height: 0;
160-
padding: 0;
161-
margin: 0;
162-
border: 0;
163-
width: 0;
128+
.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
129+
opacity: 0;
130+
height: 0;
131+
min-height: 0;
132+
padding: 0;
133+
margin: 0;
134+
border:0;
135+
width: 0;
164136
}
165137

166138
/* Bootstrap theme */
@@ -199,23 +171,22 @@ body > .select2-container.open {
199171
border-top-right-radius: 0;
200172
border-bottom-right-radius: 0;
201173
}
202-
203174
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
204175
border-radius: 4px !important; /* FIXME hardcoded value :-/ */
205176
border-top-right-radius: 0 !important;
206177
border-bottom-right-radius: 0 !important;
207178
}
208179

209-
.ui-select-bootstrap .ui-select-search-hidden {
210-
opacity: 0;
211-
height: 0;
212-
min-height: 0;
213-
padding: 0;
214-
margin: 0;
215-
border: 0;
180+
.ui-select-bootstrap .ui-select-search-hidden{
181+
opacity: 0;
182+
height: 0;
183+
min-height: 0;
184+
padding: 0;
185+
margin: 0;
186+
border:0;
216187
}
217188

218-
.ui-select-bootstrap > .ui-select-match > .btn {
189+
.ui-select-bootstrap > .ui-select-match > .btn{
219190
/* Instead of center because of .btn */
220191
text-align: left !important;
221192
}
@@ -227,7 +198,7 @@ body > .select2-container.open {
227198
}
228199

229200
/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
230-
.ui-select-bootstrap > .ui-select-choices, .ui-select-bootstrap > .ui-select-no-choice {
201+
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
231202
width: 100%;
232203
height: auto;
233204
max-height: 200px;
@@ -290,85 +261,62 @@ body > .ui-select-bootstrap.open {
290261
border-right: 1px solid #428bca;
291262
}
292263

293-
.ui-select-bootstrap .ui-select-choices-row > span {
294-
cursor: pointer;
295-
display: block;
296-
padding: 3px 20px;
297-
clear: both;
298-
font-weight: 400;
299-
line-height: 1.42857143;
300-
color: #333;
301-
white-space: nowrap;
302-
}
303-
304-
.ui-select-bootstrap .ui-select-choices-row > span:hover, .ui-select-bootstrap .ui-select-choices-row > span:focus {
305-
text-decoration: none;
306-
color: #262626;
307-
background-color: #f5f5f5;
308-
}
309-
310-
.ui-select-bootstrap .ui-select-choices-row.active > span {
311-
color: #fff;
312-
text-decoration: none;
313-
outline: 0;
314-
background-color: #428bca;
315-
}
316-
317-
.ui-select-bootstrap .ui-select-choices-row.disabled > span,
318-
.ui-select-bootstrap .ui-select-choices-row.active.disabled > span {
319-
color: #777;
320-
cursor: not-allowed;
321-
background-color: #fff;
322-
}
323-
324-
.ui-select-bootstrap .ui-select-footer,
325-
.ui-select-bootstrap .ui-select-header {
326-
display: block;
327-
padding: 3px 20px;
328-
clear: both;
329-
font-weight: 400;
330-
line-height: 1.42857143;
264+
.ui-select-bootstrap .ui-select-choices-row>span {
265+
cursor: pointer;
266+
display: block;
267+
padding: 3px 20px;
268+
clear: both;
269+
font-weight: 400;
270+
line-height: 1.42857143;
271+
color: #333;
272+
white-space: nowrap;
331273
}
332274

333-
.ui-select-bootstrap .ui-select-footer {
334-
border-top: 1px solid #dfe5eb;
275+
.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
276+
text-decoration: none;
277+
color: #262626;
278+
background-color: #f5f5f5;
335279
}
336280

337-
.ui-select-bootstrap .ui-select-header + .ui-select-choices {
338-
margin-top: 10px;
281+
.ui-select-bootstrap .ui-select-choices-row.active>span {
282+
color: #fff;
283+
text-decoration: none;
284+
outline: 0;
285+
background-color: #428bca;
339286
}
340287

341-
.ui-select-bootstrap .ui-select-header {
342-
border-bottom: 1px solid #dfe5eb;
288+
.ui-select-bootstrap .ui-select-choices-row.disabled>span,
289+
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
290+
color: #777;
291+
cursor: not-allowed;
292+
background-color: #fff;
343293
}
344294

345295
/* fix hide/show angular animation */
346296
.ui-select-match.ng-hide-add,
347297
.ui-select-search.ng-hide-add {
348-
display: none !important;
298+
display: none !important;
349299
}
350300

351301
/* Mark invalid Bootstrap */
352302
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
353-
border-color: #D44950;
303+
border-color: #D44950;
354304
}
355305

356306
/* Handle up direction Bootstrap */
357307
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
358-
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
308+
box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
359309
}
360310

361311
.ui-select-bootstrap .ui-select-match-text {
362-
width: 100%;
363-
padding-right: 1em;
312+
width: 100%;
313+
padding-right: 1em;
364314
}
365-
366315
.ui-select-bootstrap .ui-select-match-text span {
367-
display: inline-block;
368-
width: 100%;
369-
overflow: hidden;
316+
display: inline-block;
317+
width: 100%;
318+
overflow: hidden;
370319
}
371-
372320
.ui-select-bootstrap .ui-select-toggle > a.btn {
373321
position: absolute;
374322
height: 10px;
@@ -378,10 +326,10 @@ body > .ui-select-bootstrap.open {
378326

379327
/* Spinner */
380328
.ui-select-refreshing.glyphicon {
381-
position: absolute;
382-
right: 0;
383-
padding: 8px 27px;
384-
}
329+
position: absolute;
330+
right: 0;
331+
padding: 8px 27px;
332+
}
385333

386334
@-webkit-keyframes ui-select-spin {
387335
0% {
@@ -393,7 +341,6 @@ body > .ui-select-bootstrap.open {
393341
transform: rotate(359deg);
394342
}
395343
}
396-
397344
@keyframes ui-select-spin {
398345
0% {
399346
-webkit-transform: rotate(0deg);

0 commit comments

Comments
 (0)