Skip to content

Commit 43a3b2b

Browse files
committed
v4.0.0
1 parent c5379a9 commit 43a3b2b

29 files changed

+1309
-672
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### v4.0.0
2+
##### Added / Updated
3+
- You can now customize output-model properties that you need, instead of having all data.
4+
- <a href="https://github.com/isteven/angular-multi-select/issues/201">#201</a> (and other related issues) DOM bug is now fixed.
5+
- <a href="https://github.com/isteven/angular-multi-select/issues/205">#205</a> (and other related issues) CSS bug is now fixed.
6+
- <a href="https://github.com/isteven/angular-multi-select/issues/207">#207</a> (and other related issues) You can now update the directive by modifying the input-model as usual.
7+
8+
##### Deprecated / Breaking Changes
9+
- input-model behaviour is now back like v2.x.x. If you don't re-use your input-model, you should be safe.
10+
111
### v3.0.0
212
##### Added / Updated
313
- Support for AngularJs version 1.3.x (v3.0.0 also supports AngularJs 1.2.x, but beware of the breaking changes)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Doesn't require jQuery and works well with other Javascript libraries.
88
Go to http://isteven.github.io/angular-multi-select
99

1010
### Current Version
11-
3.0.0
11+
4.0.0
1212

1313
### Change Log
1414
See <a href="https://github.com/isteven/angular-multi-select/blob/master/CHANGELOG.md">CHANGELOG.md</a>.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "isteven-angular-multiselect",
3-
"version" : "v3.0.0",
3+
"version" : "v4.0.0",
44
"main" : [
55
"isteven-multi-select.js",
66
"isteven-multi-select.css"

doc/css/bootstrap.min.css

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

doc/css/isteven-multi-select.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@
5858
background-image: linear-gradient(#fff, #e9e9e9);
5959
}
6060

61+
/* button: disabled */
62+
.multiSelect > button:disabled {
63+
background-image: linear-gradient(#fff, #fff);
64+
border: 1px solid #ddd;
65+
color: #999;
66+
}
67+
6168
/* button: clicked */
6269
.multiSelect .buttonClicked {
6370
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
@@ -166,13 +173,17 @@
166173
color: #999;
167174
background-color: #f4f4f4;
168175
}
176+
.multiSelect .helperButton:disabled {
177+
color: #ccc;
178+
border: 1px solid #ddd;
179+
}
169180

170181
.multiSelect .clearButton:focus,
171182
.multiSelect .helperButton:focus,
172183
.multiSelect .inputFilter:focus {
173184
border: 1px solid #66AFE9 !important;
174185
outline: 0;
175-
-webkit-box-shadow: box-shadow: inset 0 0 1px rgba(0,0,0,.065), 0 0 5px rgba(102, 175, 233, .6) !important;
186+
-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,.065), 0 0 5px rgba(102, 175, 233, .6) !important;
176187
box-shadow: inset 0 0 1px rgba(0,0,0,.065), 0 0 5px rgba(102, 175, 233, .6) !important;
177188
}
178189

19.9 KB
Binary file not shown.

doc/fonts/glyphicons-halflings-regular.svg

Lines changed: 229 additions & 0 deletions
Loading
40.3 KB
Binary file not shown.
22.8 KB
Binary file not shown.

doc/index.htm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ <h5>AngularJs MultiSelect &nbsp;&nbsp;<span class="fa fa-home"></span></h5>
8888
<li class="subMenu">
8989
<a href="#/demo-grouping">Grouping</a>
9090
</li>
91+
<li class="subMenu">
92+
<a href="#/demo-helper-elements">Helper Elements</a>
93+
</li>
94+
<li class="subMenu">
95+
<a href="#/demo-output-properties">Output Properties</a>
96+
</li>
9197
<li class="subMenu">
9298
<a href="#/demo-callbacks">Callbacks</a>
9399
</li>

0 commit comments

Comments
 (0)