Skip to content

chore: release v2.0.0-rc.16 #2876

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 48 commits into from
Mar 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ec6951d
fix(docs): fix typo (#2864)
atrunelle Mar 18, 2019
8570c96
chore(deps): update dependency eslint to ^5.15.3 (#2868)
renovate[bot] Mar 18, 2019
da49558
fix(table): fix range selection (#2865)
tmorehouse Mar 19, 2019
ddcd66a
feat(table): add basic keyboard nav when table has row-clicked handle…
tmorehouse Mar 19, 2019
1eb490f
chore(deps): update all non-major dependencies to ^7.4.0 (#2874)
renovate[bot] Mar 19, 2019
ffac355
chore(deps): update all non-major dependencies to ^7.4.1 (#2875)
renovate[bot] Mar 19, 2019
cb367e0
chore(tests): more tests (#2872)
tmorehouse Mar 20, 2019
b566c58
chore: more unit testing adjustments (#2877)
tmorehouse Mar 20, 2019
eaa00cd
chore(deps): update all non-major dependencies to ^2.6.10 (#2878)
renovate[bot] Mar 20, 2019
591f0ed
chore(deps): update dependency rollup to ^1.7.0 (#2879)
renovate[bot] Mar 20, 2019
b609b5d
chore(deps): update dependency codemirror to ^5.45.0 (#2881)
renovate[bot] Mar 20, 2019
004c2e8
chore(deps): update all non-major dependencies to ^7.4.2 (#2885)
renovate[bot] Mar 21, 2019
8a503ec
feat(carousel): add no-hover-pause prop (#2888)
tmorehouse Mar 21, 2019
3702d3f
chore: create jest.config.js
Mar 21, 2019
12bc076
chore: simplify package.json
Mar 21, 2019
af8a8fa
docs: prepare babel.config.js for nuxt 2.5.x
Mar 21, 2019
5090f42
chore(docs): upgrade nuxt to 2.5.1
Mar 21, 2019
cbd0708
chore(deps): update dependency esm to ^3.2.20 (#2890)
renovate[bot] Mar 21, 2019
61b75dc
feat(utils/noop): add `noop()` util (#2892)
jacobmllr95 Mar 21, 2019
ddc2006
fix(table): fix broken aria-labels for sortable columns + break out c…
tmorehouse Mar 22, 2019
12d5b0e
chore(docs): minor fixes (#2894)
tmorehouse Mar 22, 2019
04deaef
docs(form-checkbox): fixed closing `<b-form-valid-feedback>` tag in c…
ruudz Mar 22, 2019
7d9c311
Update ISSUE_TEMPLATE.md
tmorehouse Mar 22, 2019
6c1940d
fix(table): fix SSR mismatch errors (#2897)
tmorehouse Mar 22, 2019
9d4408d
fix(utils/dom): update closest routine to support SVG (#2901)
tmorehouse Mar 22, 2019
e9a8e85
feat(forms): new b-form-datalist helper component (#2899)
tmorehouse Mar 22, 2019
f53b5f8
feat(form-file): add in prop and scoped slot for formatting selected …
tmorehouse Mar 23, 2019
95ce20b
chore(docs): fix typo in collapse accordion example (closes #2903) (#…
tmorehouse Mar 23, 2019
8bad401
Update navbar.js
tmorehouse Mar 24, 2019
66505c7
Update navbar.js
tmorehouse Mar 24, 2019
a17de35
Update dependency rollup to ^1.7.2 (#2906)
renovate[bot] Mar 24, 2019
44d0351
feat: add BOOTSTRAP_VUE_NO_WARN environment variable to hide warnings…
Mar 25, 2019
1e89e0f
chore(deps): update dependency rollup to ^1.7.3 (#2907)
renovate[bot] Mar 25, 2019
b184e19
chore(deps): update dependency rollup-plugin-commonjs to ^9.2.2 (#2908)
renovate[bot] Mar 25, 2019
3bef981
fix(dropdown): fix `no-caret` prop when dropleft (fixes #2909) (#2910)
tmorehouse Mar 25, 2019
6f38d9d
feat(form-checkbox/radio): allow no label in plain mode (fixes #2911)…
tmorehouse Mar 25, 2019
67d12a4
chore(docs): fix typo in pagination-nav docs
tmorehouse Mar 25, 2019
8018bdf
feat(core): create configurable base global configuration (#2905)
tmorehouse Mar 25, 2019
34b7d18
chore: prettify (#2913)
jacobmllr95 Mar 25, 2019
f0b1710
chore(docs): fix syntax mistake (#2918)
LittleGarry Mar 26, 2019
6f899fc
fix(collapse/toggle): persist toggle state on element and prevent mul…
tmorehouse Mar 27, 2019
310c7dc
fix(docs): drop self-closing tags + build system improvements (fixes …
jacobmllr95 Mar 27, 2019
0910b22
feat(alert): remove need for custom CSS for fade transition (#2925)
tmorehouse Mar 27, 2019
2e2542f
chore(unit testing): convert more tests to vue-test-utils (#2926)
tmorehouse Mar 27, 2019
4705091
chore: directives code cleanup (#2927)
jacobmllr95 Mar 27, 2019
95f0d16
chore(unit tests): more test conversion (#2929)
tmorehouse Mar 28, 2019
db7c9e2
chore: update scrollspy.spec.js (#2930)
tmorehouse Mar 28, 2019
10d000b
chore: bump version (#2931)
tmorehouse Mar 28, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.nuxt/
dist/
docs-dist/
es/
node_modules/
nuxt/plugin.template.js
12 changes: 11 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
extends: ['standard', 'plugin:vue/recommended', 'plugin:prettier/recommended'],
plugins: ['jest', 'node', 'promise'],
plugins: ['jest', 'markdown', 'node', 'promise'],
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
Expand All @@ -14,6 +14,16 @@ module.exports = {
Vue: true
},
rules: {
'vue/html-self-closing': [
'error',
{
html: {
void: 'never',
normal: 'never',
component: 'never'
}
}
],
'vue/max-attributes-per-line': ['error', { singleline: 4 }],
'vue/no-template-shadow': 'off',
'vue/no-use-v-if-with-v-for': 'off',
Expand Down
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
Replace the text below with a thorough description of your issue.
Issues without a description will be closed.
-->

**Before opening an issue:**

- [Search for duplicate or closed issues](https://github.com/bootstrap-vue/bootstrap-vue/issues?utf8=%E2%9C%93&q=is%3Aissue)
Expand Down
62 changes: 62 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,68 @@ guidelines.

<a name="2.0.0-rc.15"></a>

## [v2.0.0-rc.16](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.0.0-rc.15...v2.0.0-rc.16)

Released 2019-03-28

### Bug Fixes v2.0.0-rc.16

- **collapse/toggle:** persist toggle state on element and prevent multiple state emits (closes
[#2923](https://github.com/bootstrap-vue/bootstrap-vue/issues/2923))
([#2924](https://github.com/bootstrap-vue/bootstrap-vue/issues/2924))
([6f899fc](https://github.com/bootstrap-vue/bootstrap-vue/commit/6f899fc))
- **docs:** drop self-closing tags + build system improvements (fixes
[#2882](https://github.com/bootstrap-vue/bootstrap-vue/issues/2882))
([#2893](https://github.com/bootstrap-vue/bootstrap-vue/issues/2893))
([310c7dc](https://github.com/bootstrap-vue/bootstrap-vue/commit/310c7dc))
- **dropdown:** fix `no-caret` prop when dropleft (fixes
[#2909](https://github.com/bootstrap-vue/bootstrap-vue/issues/2909))
([#2910](https://github.com/bootstrap-vue/bootstrap-vue/issues/2910))
([3bef981](https://github.com/bootstrap-vue/bootstrap-vue/commit/3bef981))
- **table:** fix broken aria-labels for sortable columns + break out code into additional mixins +
tests ([#2884](https://github.com/bootstrap-vue/bootstrap-vue/issues/2884))
([ddc2006](https://github.com/bootstrap-vue/bootstrap-vue/commit/ddc2006))
- **table:** fix range selection
([#2865](https://github.com/bootstrap-vue/bootstrap-vue/issues/2865))
([da49558](https://github.com/bootstrap-vue/bootstrap-vue/commit/da49558))
- **table:** fix SSR mismatch errors
([#2897](https://github.com/bootstrap-vue/bootstrap-vue/issues/2897))
([6c1940d](https://github.com/bootstrap-vue/bootstrap-vue/commit/6c1940d))
- **utils/dom:** update closest routine to support SVG
([#2901](https://github.com/bootstrap-vue/bootstrap-vue/issues/2901))
([9d4408d](https://github.com/bootstrap-vue/bootstrap-vue/commit/9d4408d))

### Features v2.0.0-rc.16

- add BOOTSTRAP_VUE_NO_WARN environment variable to hide warnings
([#2826](https://github.com/bootstrap-vue/bootstrap-vue/issues/2826))
([44d0351](https://github.com/bootstrap-vue/bootstrap-vue/commit/44d0351))
- **alert:** remove need for custom CSS for fade transition
([#2925](https://github.com/bootstrap-vue/bootstrap-vue/issues/2925))
([0910b22](https://github.com/bootstrap-vue/bootstrap-vue/commit/0910b22))
- **carousel:** add no-hover-pause prop
([#2888](https://github.com/bootstrap-vue/bootstrap-vue/issues/2888))
([8a503ec](https://github.com/bootstrap-vue/bootstrap-vue/commit/8a503ec))
- **core:** create configurable base global configuration
([#2905](https://github.com/bootstrap-vue/bootstrap-vue/issues/2905))
([8018bdf](https://github.com/bootstrap-vue/bootstrap-vue/commit/8018bdf))
- **form-checkbox/radio:** allow no label in plain mode (fixes
[#2911](https://github.com/bootstrap-vue/bootstrap-vue/issues/2911))
([#2912](https://github.com/bootstrap-vue/bootstrap-vue/issues/2912))
([6f38d9d](https://github.com/bootstrap-vue/bootstrap-vue/commit/6f38d9d))
- **form-file:** add in prop and scoped slot for formatting selected file names
([#2902](https://github.com/bootstrap-vue/bootstrap-vue/issues/2902))
([f53b5f8](https://github.com/bootstrap-vue/bootstrap-vue/commit/f53b5f8))
- **forms:** new b-form-datalist helper component
([#2899](https://github.com/bootstrap-vue/bootstrap-vue/issues/2899))
([e9a8e85](https://github.com/bootstrap-vue/bootstrap-vue/commit/e9a8e85))
- **table:** add basic keyboard nav when table has row-clicked handler or is selctable (closes
[#2869](https://github.com/bootstrap-vue/bootstrap-vue/issues/2869))
([#2870](https://github.com/bootstrap-vue/bootstrap-vue/issues/2870))
([ddcd66a](https://github.com/bootstrap-vue/bootstrap-vue/commit/ddcd66a))

<a name="2.0.0-rc.15"></a>

## [v2.0.0-rc.15](https://github.com/bootstrap-vue/bootstrap-vue/compare/v2.0.0-rc.14...v2.0.0-rc.15)

Released: 2019-03-18
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Thank you to all our backers! 🙏

This project exists thanks to all the people who contribute. [[Contribute]](CONTRIBUTING.md).

<a href="https://github.com/bootstrap-vue/bootstrap-vue/graphs/contributors"><img src="https://opencollective.com/bootstrap-vue/contributors.svg?width=890" /></a>
<a href="https://github.com/bootstrap-vue/bootstrap-vue/graphs/contributors"><img src="https://opencollective.com/bootstrap-vue/contributors.svg?width=890"></a>

<h2 align="center">License</h2>

Expand Down
40 changes: 16 additions & 24 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@
module.exports = {
presets: [
[
'@babel/env',
{
useBuiltIns: 'entry'
module.exports = api => {
const isDocs = api.env('docs')

let presets = []
if (!isDocs) {
presets.push(['@babel/env', { useBuiltIns: 'entry', corejs: { version: 2 } }])
}

return {
presets,
env: {
es: {
plugins: [['@babel/plugin-transform-modules-commonjs', { noInterop: true, loose: true }]]
},
test: {
presets: [['@babel/env', { targets: { node: 'current' } }]]
}
]
],
env: {
docs: {
plugins: ['@babel/plugin-transform-runtime']
},
es: {
plugins: [['@babel/plugin-transform-modules-commonjs', { noInterop: true, loose: true }]]
},
test: {
presets: [
[
'@babel/env',
{
targets: { node: 'current' }
}
]
]
}
}
}
4 changes: 2 additions & 2 deletions docs/assets/scss/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
}

.bd-toc-item.active > .bd-toc-link {
color: #563d7c;
font-weight: bold;
color: #563d7c;
font-weight: bold;
}

.bd-toc-link,
Expand Down
24 changes: 24 additions & 0 deletions docs/components/anchored-heading.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
export default {
props: {
level: {
type: [Number, String],
default: 2
},
id: {
type: String,
default: ''
}
},
render(h) {
const $anchor = h(
'b-link',
{
staticClass: 'anchorjs-link',
attrs: { to: { hash: `#${this.id}` }, 'aria-label': 'Anchor' }
},
[h(false)]
)
const $content = h('span', { staticClass: 'bd-content-title' }, [this.$slots.default, $anchor])
return h(`h${this.level}`, { attrs: { id: this.id, tabindex: '-1' } }, [$content])
}
}
2 changes: 1 addition & 1 deletion docs/components/codemirror.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<textarea ref="textArea" :value="value" />
<textarea ref="textArea" :value="value"></textarea>
</template>

<script>
Expand Down
Loading