8000 chore: patch release 2.10.1 · bootstrap-vue/bootstrap-vue@78dc146 · GitHub
[go: up one dir, main page]

Skip to content

Commit 78dc146

Browse files
authored
chore: patch release 2.10.1
2 parents e905681 + af91715 commit 78dc146

File tree

6 files changed

+380
-356
lines changed

6 files changed

+380
-356
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
> All notable changes to this project will be documented in this file.
44
5+
<a name="2.10.1"></a>
6+
7+
## [v2.10.1](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.10.0...v2.10.1)
8+
9+
Released: 2020-04-02
10+
11+
### Bug Fixes v2.10.1
12+
13+
- **b-avatar:** remove default padding when in button mode (fixes
14+
[#5073](https://github.com/bootstrap-vue/bootstrap-vue/issues/5073))
15+
([#5076](https://github.com/bootstrap-vue/bootstrap-vue/issues/5076))
16+
([26377b3](https://github.com/bootstrap-vue/bootstrap-vue/commit/26377b3479f323baa2d702fab7f5200949ed680d))
17+
- **b-table:** fix context object `currentPage` issue introduced in v2.10.0 (fixes
18+
[#5065](https://github.com/bootstrap-vue/bootstrap-vue/issues/5065))
19+
([#5067](https://github.com/bootstrap-vue/bootstrap-vue/issues/5067))
20+
([874dca2](https://github.com/bootstrap-vue/bootstrap-vue/commit/874dca2c8c385fecf7cec76e6cfa44eda9fcabf4))
21+
22+
### Other v2.10.1
23+
24+
- dev dependency updates
25+
526
<a name="2.10.0"></a>
627

728
## [v2.10.0](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.9.0...v2.10.0)

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-vue",
3-
"version": "2.10.0",
3+
"version": "2.10.1",
44
"description": "BootstrapVue, with more than 85 custom components, over 45 plugins, several custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.",
55
"main": "dist/bootstrap-vue.common.js",
66
"web": "dist/bootstrap-vue.js",
@@ -108,7 +108,7 @@
108108
"autoprefixer": "^9.7.5",
109109
"babel-core": "^7.0.0-bridge.0",
110110
"babel-eslint": "^10.1.0",
111-
"babel-jest": "^25.2.4",
111+
"babel-jest": "^25.2.6",
112112
"babel-plugin-istanbul": "^6.0.0",
113113
"bootstrap-icons": "^1.0.0-alpha3",
114114
"clean-css-cli": "^4.3.0",
@@ -132,9 +132,9 @@
132132
"esm": "^3.2.25",
133133
"gh-pages": "^2.2.0",
134134
"highlight.js": "^9.18.1",
135-
"html-loader": "^1.0.0",
135+
"html-loader": "^1.1.0",
136136
"husky": "^4.2.3",
137-
"jest": "^25.2.4",
137+
"jest": "^25.2.6",
138138
"jest-environment-jsdom-fourteen": "^1.0.1",
139139
"lint-staged": "^10.1.1",
140140
"loader-utils": "^2.0.0",

src/components/avatar/_avatar.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@
2121
}
2222

2323
&a,
24-
&button {
24+
&button,
25+
&.btn {
26+
padding: 0;
27+
border: 0;
28+
2529
&:not(:disabled):not(.disabled) {
2630
cursor: if($enable-pointer-cursor-for-buttons, pointer, null);
2731
}

src/components/sidebar/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@ CSS style overrides.
123123

124124
### Width
125125

126-
By default the width of `<b-sidebar>` is restricted to `320px` (100% on 'xs' screens). Simply
127-
provide a style of `width` to change the width to a preferred value. The max width is set to `100%`.
126+
By default the width of `<b-sidebar>` is set to `320px` (100% on 'xs' screens). Simply provide a
127+
value via the `width` prop (i.e. `'180px'`, `'20em'`, etc) to override this default. The max width
128+
is set to `100%` via CSS.
128129

129130
### Padding
130131

src/components/table/helpers/mixin-items.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default {
8585
sortBy: this.localSortBy,
8686
sortDesc: this.localSortDesc,
8787
perPage: Math.max(toInteger(this.perPage, 0), 0),
88-
currentPage: Math.max(toInteger(this.perPage, 0), 1),
88+
currentPage: Math.max(toInteger(this.currentPage, 0), 1),
8989
apiUrl: this.apiUrl
9090
}
9191
}

0 commit comments

Comments
 (0)
0