Skip to content

Commit b0dc061

Browse files
committed
Update simulator
1 parent d38f273 commit b0dc061

510 files changed

Lines changed: 35817 additions & 283 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "bootstrap-select",
3+
"main": [
4+
"less/bootstrap-select.less",
5+
"dist/css/bootstrap-select.css",
6+
"dist/js/bootstrap-select.js"
7+
],
8+
"homepage": "http://silviomoreto.github.io/bootstrap-select",
9+
"authors": [
10+
"silviomoreto"
11+
],
12+
"keywords": [
13+
"form",
14+
"bootstrap",
15+
"select",
16+
"replacement"
17+
],
18+
"dependencies": {
19+
"jquery": ">=1.8"
20+
},
21+
"license": "MIT",
22+
"ignore": [
23+
".gitignore",
24+
"CONTRIBUTING.md",
25+
"Gruntfile.js",
26+
"README.md",
27+
"composer.json",
28+
"package.json",
29+
"test.html"
30+
],
31+
"version": "1.12.1",
32+
"_release": "1.12.1",
33+
"_resolution": {
34+
"type": "version",
35+
"tag": "v1.12.1",
36+
"commit": "770f3118df52be9fbf529a7fcfa8a00e3bae28d0"
37+
},
38+
"_source": "https://github.com/silviomoreto/bootstrap-select.git",
39+
"_target": "^1.12.1",
40+
"_originalSource": "bootstrap-select"
41+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
Before posting, please see [guidelines for contributing](https://github.com/silviomoreto/bootstrap-select/blob/master/CONTRIBUTING.md). If you're submitting a bug report, see below.
2+
3+
## Bug reports
4+
5+
A bug is a _demonstrable problem_ that is caused by the code in the repository.
6+
Good bug reports are extremely helpful - thank you!
7+
8+
Guidelines for bug reports:
9+
10+
1. **Use the GitHub issue search.** Check if the issue has already been
11+
reported.
12+
13+
2. **Check if the issue has been fixed.** Try to reproduce it using the
14+
latest `master` or development branch in the repository.
15+
16+
3. **Provide environment details.** Provide your operating system, browser(s),
17+
jQuery version, Bootstrap version, and bootstrap-select version.
18+
19+
4. **Create an isolated and reproducible test case.** Create a [reduced test
20+
case](http://css-tricks.com/6263-reduced-test-cases/).
21+
22+
5. **Include a live example.** Use [this Plunker debugging template](http://silviomoreto.github.io/bootstrap-select/playground/) to share your isolated test cases. You can also make use of [jsFiddle](http://jsfiddle.net/) or [jsBin](http://jsbin.com/).
23+
24+
A good bug report shouldn't leave others needing to chase you up for more
25+
information. Please try to be as detailed as possible in your report. What is
26+
your environment? What steps will reproduce the issue? What browser(s) and OS
27+
experience the problem? What would you expect to be the outcome? All these
28+
details will help people to fix any potential bugs.
29+
30+
Example:
31+
32+
> Short and descriptive example bug report title
33+
>
34+
> A summary of the issue and the browser/OS environment in which it occurs. If
35+
> suitable, include the steps required to reproduce the bug.
36+
>
37+
> 1. This is the first step
38+
> 2. This is the second step
39+
> 3. Further steps, etc.
40+
>
41+
> `<url>` - a link to the reduced test case
42+
>
43+
> Any other information you want to share that is relevant to the issue being
44+
> reported. This might include the lines of code that you have identified as
45+
> causing the bug, and potential solutions (and your opinions on their
46+
> merits).
47+
48+
## Erase the above text and being typing. Thanks!
Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
### v1.12.1 (2016-11-22)
2+
3+
## Bug Fixes
4+
* [#1167], [#1366]: using a method before initializing bootstrap-select throws an error
5+
6+
[#1167]: https://github.com/silviomoreto/bootstrap-select/issues/1167
7+
[#1366]: https://github.com/silviomoreto/bootstrap-select/issues/1366
8+
9+
-------------------
10+
11+
### v1.12.0 (2016-11-18)
12+
13+
## Bug Fixes
14+
* [#1220]: unescape button title
15+
* [#1348]: escape HTML for optgroup label
16+
* [#1506]: Fix bs-placeholder usage for jQuery>=3.0
17+
* [#1509]: inline style Content Security Policy
18+
* [#1477]: using liveSearchNormalize and liveSearchStyle="startsWith" simultaneously breaks search
19+
* [#1489] fix selectOnTab with liveSearch enabled which was broken when [#1489] was fixed
20+
* [#1533]: remove touchstart event listener (issues with FastClick)
21+
* remove destroyLi function - improve refresh() performance
22+
* [#1531]: add Spanish (Spain) translations
23+
* [#1553]: don't use replace in normalizeToBase if text is undefined (throws error otherwise)
24+
25+
## New Features
26+
* [#1503]: Add windowPadding option (either a number or an array of numbers - [top, right, bottom, left])
27+
* [#1516]: Improve liveSearch performance (addresses [#1275])
28+
* [#1440]: allow HTML in placeholder title for non-multiple selects
29+
* [#1555]: Use default with SCSS variables
30+
31+
[#1220]: https://github.com/silviomoreto/bootstrap-select/issues/1220
32+
[#1275]: https://github.com/silviomoreto/bootstrap-select/issues/1275
33+
[#1348]: https://github.com/silviomoreto/bootstrap-select/issues/1348
34+
[#1506]: https://github.com/silviomoreto/bootstrap-select/issues/1506
35+
[#1509]: https://github.com/silviomoreto/bootstrap-select/issues/1509
36+
[#1477]: https://github.com/silviomoreto/bootstrap-select/issues/1477
37+
[#1489]: https://github.com/silviomoreto/bootstrap-select/issues/1489
38+
[#1533]: https://github.com/silviomoreto/bootstrap-select/issues/1533
39+
[#1531]: https://github.com/silviomoreto/bootstrap-select/issues/1531
40+
[#1503]: https://github.com/silviomoreto/bootstrap-select/issues/1503
41+
[#1516]: https://github.com/silviomoreto/bootstrap-select/issues/1516
42+
[#1440]: https://github.com/silviomoreto/bootstrap-select/issues/1440
43+
[#1553]: https://github.com/silviomoreto/bootstrap-select/issues/1553
44+
[#1555]: https://github.com/silviomoreto/bootstrap-select/issues/1555
45+
46+
-------------------
47+
48+
### v1.11.2 (2016-09-09)
49+
50+
#### Bug Fixes
51+
* fix sourceMappingURL in bootstrap-select.min.js
52+
53+
-------------------
54+
55+
### v1.11.1 (2016-09-09)
56+
57+
#### Bug Fixes
58+
* [#1475]: fix Cannot read property 'apply' of null error
59+
* [#1484]: Change events fire twice on IE8
60+
* [#1489]: hide.bs.select and hidden.bs.select events not fired when "Esc" key pressed with live search enabled
61+
62+
[#1475]: https://github.com/silviomoreto/bootstrap-select/issues/1475
63+
[#1484]: https://github.com/silviomoreto/bootstrap-select/issues/1484
64+
[#1489]: https://github.com/silviomoreto/bootstrap-select/issues/1489
65+
66+
-------------------
67+
68+
### v1.11.0 (2016-08-16)
69+
70+
#### Bug Fixes
71+
* [#1291]: don't trigger change event if selecting an option that passes the limit
72+
* [#1284]: check if all options are already selected/deselected before triggering changed/changed.bs.select
73+
* [#1245], [#1310]: With livesearch, when keypress, focus to search field isn't working with some characters
74+
* [#1257]: fix issue with Norwegian translation
75+
* [#1346]: fix edge case where default values are not respected when initializing the plugin
76+
* [#1338]: improve support for disabled optgroups and hidden options
77+
* [#1373]: prevent selectAll and deselectAll from being called on standard select boxes
78+
* [#1363]: if hideDisabled is enabled, and all options in an optgroup are disabled, the optgroup is still visible
79+
* [#1422]: fix menu position inside a scrolling container
80+
* [#1451]: fix select with input-group-addon on both sides
81+
* [#1465]: changed.bs.select not firing for native mobile menu
82+
* [#1459]: jQuery 3 support - $.expr[':'] -> $.expr.pseudos
83+
84+
#### New Features
85+
* [#1139]: add placeholder styling via `bs-placeholder` class
86+
* [#1290]: auto close the menu if maxOptions is set to 1 (instead of leaving open)
87+
* [#1127], [#1016], [#1160], [#1269]: add 'auto' option for dropdownAlignRight
88+
* [58ed408]: support using a string for maxOptionsText
89+
* [#541]: ARIA - Accessibility
90+
91+
[#1291]: https://github.com/silviomoreto/bootstrap-select/issues/1291
92+
[#1284]: https://github.com/silviomoreto/bootstrap-select/issues/1284
93+
[#1245]: https://github.com/silviomoreto/bootstrap-select/issues/1245
94+
[#1257]: https://github.com/silviomoreto/bootstrap-select/issues/1257
95+
[#1310]: https://github.com/silviomoreto/bootstrap-select/issues/1310
96+
[#1346]: https://github.com/silviomoreto/bootstrap-select/issues/1346
97+
[#1338]: https://github.com/silviomoreto/bootstrap-select/issues/1338
98+
[#1373]: https://github.com/silviomoreto/bootstrap-select/issues/1373
99+
[#1363]: https://github.com/silviomoreto/bootstrap-select/issues/1363
100+
[#1422]: https://github.com/silviomoreto/bootstrap-select/issues/1422
101+
[#1451]: https://github.com/silviomoreto/bootstrap-select/issues/1451
102+
[#1465]: https://github.com/silviomoreto/bootstrap-select/issues/1465
103+
[#1459]: https://github.com/silviomoreto/bootstrap-select/issues/1459
104+
[#1139]: https://github.com/silviomoreto/bootstrap-select/issues/1139
105+
[#1290]: https://github.com/silviomoreto/bootstrap-select/issues/1290
106+
[#1127]: https://github.com/silviomoreto/bootstrap-select/issues/1127
107+
[#1016]: https://github.com/silviomoreto/bootstrap-select/issues/1016
108+
[#1160]: https://github.com/silviomoreto/bootstrap-select/issues/1160
109+
[#1269]: https://github.com/silviomoreto/bootstrap-select/issues/1269
110+
[58ed408]: https://github.com/silviomoreto/bootstrap-select/commit/58ed4085019526141be07beeada37788dfe2d316
111+
[#541]: https://github.com/silviomoreto/bootstrap-select/issues/541
112+
113+
-------------------
114+
115+
### v1.10.0 (2016-02-17)
116+
117+
#### Bug Fixes
118+
* [#1268]: performance bug in clickListener
119+
* [#1273]: html5 validation message disappears in Chrome 47+
120+
* [#1295]: hide select by default (so there is no flash of unstyled content)
121+
122+
#### New Features
123+
* [#950]: add `.selectpicker('toggle')` method to allow menu to be open/closed programmatically
124+
* [#1272]: add showTick option
125+
* [#1284]: selectAll and deselectAll now trigger the `changed.bs.select` event
126+
127+
Add Lithuanian translations.
128+
129+
[#1268]: https://github.com/silviomoreto/bootstrap-select/issues/1268
130+
[#1273]: https://github.com/silviomoreto/bootstrap-select/issues/1273
131+
[#1295]: https://github.com/silviomoreto/bootstrap-select/issues/1295
132+
[#950]: https://github.com/silviomoreto/bootstrap-select/issues/950
133+
[#1272]: https://github.com/silviomoreto/bootstrap-select/issues/1272
134+
[#1284]: https://github.com/silviomoreto/bootstrap-select/issues/1284
135+
136+
-------------------
137+
138+
### v1.9.4 (2016-01-18)
139+
140+
#### Bug fixes
141+
* [#1250]: don't destroy original select when using `destroy` method
142+
* [#1230]: Optgroup label missing when first option is disabled and `hideDisabled` is true
143+
144+
Add new translations.
145+
146+
[#1250]: https://github.com/silviomoreto/bootstrap-select/issues/1250
147+
[#1230]: https://github.com/silviomoreto/bootstrap-select/issues/1230
148+
149+
-------------------
150+
151+
### v1.9.3 (2015-12-16)
152+
153+
#### Bug fixes
154+
* Fix [#1235] - issue with selects that had `form-control` class
155+
156+
[#1235]: https://github.com/silviomoreto/bootstrap-select/issues/1235
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2013-2015 bootstrap-select
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "bootstrap-select",
3+
"main": [
4+
"less/bootstrap-select.less",
5+
"dist/css/bootstrap-select.css",
6+
"dist/js/bootstrap-select.js"
7+
],
8+
"homepage": "http://silviomoreto.github.io/bootstrap-select",
9+
"authors": [
10+
"silviomoreto"
11+
],
12+
"keywords": [
13+
"form",
14+
"bootstrap",
15+
"select",
16+
"replacement"
17+
],
18+
"dependencies": {
19+
"jquery": ">=1.8"
20+
},
21+
"license": "MIT",
22+
"ignore": [
23+
".gitignore",
24+
"CONTRIBUTING.md",
25+
"Gruntfile.js",
26+
"README.md",
27+
"composer.json",
28+
"package.json",
29+
"test.html"
30+
]
31+
}

0 commit comments

Comments
 (0)