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

Commit 0e3dcd2

Browse files
committed
chore(release): bump package version and update changelog
1 parent 27b9a17 commit 0e3dcd2

File tree

7 files changed

+137
-43
lines changed

7 files changed

+137
-43
lines changed

dist/select.css

Lines changed: 52 additions & 3 deletions
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.3 - 2016-08-17T06:16:42.140Z
4+
* Version: 0.19.4 - 2016-10-19T19:26:25.444Z
55
* License: MIT
66
*/
77

@@ -100,10 +100,15 @@ body > .select2-container.open {
100100
}
101101

102102
/* Fix input width for Selectize theme */
103-
.selectize-control > .selectize-input > input {
103+
.selectize-control.single > .selectize-input > input {
104104
width: 100%;
105105
}
106106

107+
/* Fix line break when there's at least one item selected with the Selectize theme */
108+
.selectize-control.multi > .selectize-input > input {
109+
margin: 0 !important;
110+
}
111+
107112
/* Fix dropdown width for Selectize theme */
108113
.selectize-control > .selectize-dropdown {
109114
width: 100%;
@@ -317,4 +322,48 @@ body > .ui-select-bootstrap.open {
317322
height: 10px;
318323
right: 10px;
319324
margin-top: -2px;
320-
}
325+
}
326+
327+
/* Spinner */
328+
.ui-select-refreshing {
329+
position: absolute;
330+
right: 0;
331+
padding: 8px 27px;
332+
top: 1px;
333+
display: inline-block;
334+
font-family: 'Glyphicons Halflings';
335+
font-style: normal;
336+
font-weight: normal;
337+
line-height: 1;
338+
-webkit-font-smoothing:antialiased;
339+
}
340+
341+
@-webkit-keyframes ui-select-spin {
342+
0% {
343+
-webkit-transform: rotate(0deg);
344+
transform: rotate(0deg);
345+
}
346+
100% {
347+
-webkit-transform: rotate(359deg);
348+
transform: rotate(359deg);
349+
}
350+
}
351+
@keyframes ui-select-spin {
352+
0% {
353+
-webkit-transform: rotate(0deg);
354+
transform: rotate(0deg);
355+
}
356+
100% {
357+
-webkit-transform: rotate(359deg);
358+
transform: rotate(359deg);
359+
}
360+
}
361+
362+
.ui-select-spin {
363+
-webkit-animation: ui-select-spin 2s infinite linear;
364+
animation: ui-select-spin 2s infinite linear;
365+
}
366+
367+
.ui-select-refreshing.ng-animate {
368+
-webkit-animation: none 0s;
369+
}

dist/select.js

Lines changed: 77 additions & 32 deletions
Large diffs are not rendered by default.

dist/select.min.css

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

0 commit comments

Comments
 (0)