Skip to content

Commit 8c17704

Browse files
committed
0.10.0
1 parent 5d28fd9 commit 8c17704

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
## 0.10.0 (2021/02/19)
2+
3+
- Breaking change: full rewrite to support `<textarea>` and `<select>`
4+
5+
- `is-loading` must be on the input's parent instead of on the input
6+
- no more `is-loading-sm`
7+
8+
```HTML
9+
<!-- Before -->
10+
<div class="form-group">
11+
<label for="email">Email address</label>
12+
<input type="email" id="email" class="form-control is-loading is-loading-sm">
13+
<span class="spinner-border spinner-border-sm"></span>
14+
</div>
15+
16+
<!-- After -->
17+
<div class="form-group">
18+
<label for="email">Email address</label>
19+
<div class="is-loading">
20+
<input type="email" id="email" class="form-control">
21+
<div class="spinner-border spinner-border-sm"></div>
22+
</div>
23+
</div>
24+
```
25+
26+
- Way more tests
27+
- Update npm packages
28+
- Needs Bootstrap >= 4.4
29+
130
## 0.4.1 (2020/08/18)
231

332
- Opacify the spinner in a readonly input

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tkrotoff/bootstrap-input-spinner",
3-
"version": "0.4.1",
3+
"version": "0.10.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/tkrotoff/bootstrap-input-spinner.git"

0 commit comments

Comments
 (0)