From ff75e22e70376623d34bbe3aa4864afacedfd397 Mon Sep 17 00:00:00 2001 From: Rasmus Nielsen Date: Tue, 18 May 2021 09:51:48 +0200 Subject: [PATCH 01/61] fix icons page --- docs/pages/docs/icons/index.js | 12 ++++++++++-- src/icons/README.md | 10 +++++----- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/docs/pages/docs/icons/index.js b/docs/pages/docs/icons/index.js index f8877356ced..542fd75639e 100644 --- a/docs/pages/docs/icons/index.js +++ b/docs/pages/docs/icons/index.js @@ -7,7 +7,13 @@ import Main from '~/components/main' import QuickLinks from '~/components/quick-links' import Section from '~/components/section' import docsMixin from '~/plugins/docs-mixin' -import { icons as iconsMeta, bootstrapIconsVersion, bootstrapIconsCount } from '~/content' +import { + icons as iconsMeta, + bootstrapIconsVersion, + bootstrapIconsCount, + bootstrapVersion, + vueVersion +} from '~/content' import readmeData from '~/../src/icons/README.md' const { titleLead = '', body = '', baseTOC = {} } = readmeData @@ -35,7 +41,9 @@ export default { // Key for icons meta is `''` (empty slug) meta: iconsMeta[''], bootstrapIconsVersion, - bootstrapIconsCount + bootstrapIconsCount, + bootstrapVersion, + vueVersion } }, computed: { diff --git a/src/icons/README.md b/src/icons/README.md index 8b1c26057f9..1c8a5736f96 100644 --- a/src/icons/README.md +++ b/src/icons/README.md @@ -130,10 +130,10 @@ icons library: ```html - + - + @@ -143,10 +143,10 @@ If using just the icons: ```html - + - + ``` @@ -514,7 +514,7 @@ class to the icon component, or create a new animation class in the form of `prefers-reduced-motion` media query. See the [reduced motion section of our accessibility documentation](/docs/reference/accessibility#reduced-motion) for additional details. -- The `cylon` animation gets its name from the "eye" of the Cylons from the _original_ +- The `cylon` animation gets its name from the "eye" of the Cylons from the *original* [1978 Battlestar Galactica TV series](https://www.youtube.com/watch?v=5a5bEIf0UaU). ## Stacking icons From ada31152bccac0767f7cc1fed74e297812be1a8d Mon Sep 17 00:00:00 2001 From: Rasmus Nielsen Date: Tue, 18 May 2021 09:52:06 +0200 Subject: [PATCH 02/61] fix intro page --- docs/markdown/intro/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/markdown/intro/README.md b/docs/markdown/intro/README.md index 0897db10f13..7050abc8fe5 100644 --- a/docs/markdown/intro/README.md +++ b/docs/markdown/intro/README.md @@ -712,14 +712,14 @@ JavaScript files. - + - + From a7024aa411aa2a5686b6bd42d3681e617686588b Mon Sep 17 00:00:00 2001 From: Rasmus Nielsen Date: Tue, 18 May 2021 11:25:07 +0200 Subject: [PATCH 03/61] update reference page --- docs/components/main-docs.js | 21 ++++++++++++++++--- .../reference/starter-templates/README.md | 4 ++-- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/docs/components/main-docs.js b/docs/components/main-docs.js index 107fb0bad3f..80e157c089b 100644 --- a/docs/components/main-docs.js +++ b/docs/components/main-docs.js @@ -4,6 +4,7 @@ import QuickLinks from '~/components/quick-links' import Reload from '~/components/reload' import Section from '~/components/section' import { mergeData } from 'vue-functional-data-merge' +import { bootstrapVersion, vueVersion } from '~/content' // @vue/component export default { @@ -62,11 +63,25 @@ export default { const $quickLinks = h(QuickLinks) // Body section - const $bodySection = h(Section, { - props: { play: true }, - domProps: { innerHTML: body || '' } + const $bodySectionContent = h({ + delimiters: ['[[', ']]'], // change the delimiters to avoid conflicts with code examples + data() { + return { + bootstrapVersion, + vueVersion + } + }, + template: `
${body}
` }) + const $bodySection = h( + Section, + { + props: { play: true } + }, + [$bodySectionContent] + ) + return h(Main, mergeData(data, { props: { tag } }), [ $leadSection, $error, diff --git a/docs/markdown/reference/starter-templates/README.md b/docs/markdown/reference/starter-templates/README.md index 0787917fa8e..9b2daa804f5 100644 --- a/docs/markdown/reference/starter-templates/README.md +++ b/docs/markdown/reference/starter-templates/README.md @@ -26,7 +26,7 @@ tags to load the required JavaScript and CSS in your page. - + From 4e76ba50a14be629f1e6aee3bbdafcb866c0d79b Mon Sep 17 00:00:00 2001 From: T Date: Tue, 5 Apr 2022 16:10:15 +0100 Subject: [PATCH 04/61] fix(docs) b-modal - move section on events emitted into own section The documentation on events emitted by the v-b-modal was buried at the end of "Toggle Modal Closing" -> "Prevent Closing" - this is not an appropriate place and made it very hard to find. This PR creates a top-level section "Events". --- src/components/modal/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/modal/README.md b/src/components/modal/README.md index d6cd0cbe3e1..7b2c283200a 100644 --- a/src/components/modal/README.md +++ b/src/components/modal/README.md @@ -317,7 +317,9 @@ To prevent `` from closing (for example when validation fails). you can ``` -**Note**: events `ok`, `cancel`, and `close` are emitted by modal's built in **OK**, **Cancel**, and +##Events + +The events `ok`, `cancel`, and `close` are emitted by modal's built in **OK**, **Cancel**, and header close (**X**) buttons respectively. These events will not be emitted, by default, if you have provided your own buttons in the `modal-footer` slot or have hidden the footer. In this case use the `hide` event to control cancelling of the modal close. Event `hide` is always emitted, even if `ok`, From f74ef89dc921c631c634f7f60e4e2043137f6ad0 Mon Sep 17 00:00:00 2001 From: Matthias Mohr Date: Wed, 3 Aug 2022 12:03:05 +0200 Subject: [PATCH 05/61] b-table sticky header broken if sortable #6961 --- src/components/table/helpers/mixin-thead.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/table/helpers/mixin-thead.js b/src/components/table/helpers/mixin-thead.js index f5126f8ea61..d832f5796bc 100644 --- a/src/components/table/helpers/mixin-thead.js +++ b/src/components/table/helpers/mixin-thead.js @@ -117,7 +117,7 @@ export const theadMixin = Vue.extend({ { // We need to make the header cell relative when we have // a `.sr-only` sort label to work around overflow issues - 'position-relative': sortLabel + 'position-relative': sortLabel && !stickyColumn }, this.fieldClasses(field), sortClass From b22746dee0fd1382ed136c1a2ed8d9a0dd60872c Mon Sep 17 00:00:00 2001 From: David Eisner Date: Mon, 31 Oct 2022 16:21:19 -0400 Subject: [PATCH 06/61] Fix typo in table component's README.md --- src/components/table/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/table/README.md b/src/components/table/README.md index b2ad455df73..f158bb9a41a 100644 --- a/src/components/table/README.md +++ b/src/components/table/README.md @@ -1053,7 +1053,7 @@ formatted value as a string (HTML strings are not supported) ## Header and Footer custom rendering via scoped slots -It is also possible to provide custom rendering for the tables `thead` and `tfoot` elements. Note by +It is also possible to provide custom rendering for the table's `thead` and `tfoot` elements. Note by default the table footer is not rendered unless `foot-clone` is set to `true`. Scoped slots for the header and footer cells uses a special naming convention of From 4bd9f038160cd31451ecfbcd56d0a4c462e8ed9a Mon Sep 17 00:00:00 2001 From: Issayah Date: Tue, 13 Dec 2022 17:51:58 -0600 Subject: [PATCH 07/61] Update src/components/modal/README.md --- src/components/modal/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modal/README.md b/src/components/modal/README.md index 7b2c283200a..94e7f62846c 100644 --- a/src/components/modal/README.md +++ b/src/components/modal/README.md @@ -317,7 +317,7 @@ To prevent `` from closing (for example when validation fails). you can ``` -##Events +## Events The events `ok`, `cancel`, and `close` are emitted by modal's built in **OK**, **Cancel**, and header close (**X**) buttons respectively. These events will not be emitted, by default, if you have From d2e7289a39e6e270282c7482ae685700765bbe69 Mon Sep 17 00:00:00 2001 From: Issayah Date: Tue, 13 Dec 2022 17:54:38 -0600 Subject: [PATCH 08/61] Update src/components/modal/README.md --- src/components/modal/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modal/README.md b/src/components/modal/README.md index 94e7f62846c..63d1e500068 100644 --- a/src/components/modal/README.md +++ b/src/components/modal/README.md @@ -317,7 +317,7 @@ To prevent `` from closing (for example when validation fails). you can ``` -## Events +### Events The events `ok`, `cancel`, and `close` are emitted by modal's built in **OK**, **Cancel**, and header close (**X**) buttons respectively. These events will not be emitted, by default, if you have From 569bfb0819722bd5f1d9bcb27f61a0cdd2ea5c43 Mon Sep 17 00:00:00 2001 From: Issayah Date: Tue, 13 Dec 2022 17:57:41 -0600 Subject: [PATCH 09/61] Update src/components/modal/README.md --- src/components/modal/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modal/README.md b/src/components/modal/README.md index 63d1e500068..94e7f62846c 100644 --- a/src/components/modal/README.md +++ b/src/components/modal/README.md @@ -317,7 +317,7 @@ To prevent `` from closing (for example when validation fails). you can ``` -### Events +## Events The events `ok`, `cancel`, and `close` are emitted by modal's built in **OK**, **Cancel**, and header close (**X**) buttons respectively. These events will not be emitted, by default, if you have From 05c6f74b0ac7bdc594b45100c5abb13ad40dd42f Mon Sep 17 00:00:00 2001 From: Sensational Code Date: Fri, 6 Jan 2023 11:49:26 -0800 Subject: [PATCH 10/61] Fix headerTag docs description incorrectly referring to footer --- src/components/calendar/package.json | 2 +- src/components/modal/package.json | 2 +- src/components/sidebar/package.json | 2 +- src/components/time/package.json | 2 +- src/components/toast/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/calendar/package.json b/src/components/calendar/package.json index 60e7f43da44..d32228b80b9 100644 --- a/src/components/calendar/package.json +++ b/src/components/calendar/package.json @@ -39,7 +39,7 @@ { "prop": "headerTag", "version": "2.22.0", - "description": "Specify the HTML tag to render instead of the default tag for the footer" + "description": "Specify the HTML tag to render instead of the default tag for the header" }, { "prop": "hidden", diff --git a/src/components/modal/package.json b/src/components/modal/package.json index 28c2c692dc2..ad68026f38b 100644 --- a/src/components/modal/package.json +++ b/src/components/modal/package.json @@ -141,7 +141,7 @@ { "prop": "headerTag", "version": "2.22.0", - "description": "Specify the HTML tag to render instead of the default tag for the footer" + "description": "Specify the HTML tag to render instead of the default tag for the header" }, { "prop": "hideBackdrop", diff --git a/src/components/sidebar/package.json b/src/components/sidebar/package.json index f083bd74f45..1b4b172854f 100644 --- a/src/components/sidebar/package.json +++ b/src/components/sidebar/package.json @@ -51,7 +51,7 @@ { "prop": "headerTag", "version": "2.22.0", - "description": "Specify the HTML tag to render instead of the default tag for the footer" + "description": "Specify the HTML tag to render instead of the default tag for the header" }, { "prop": "lazy", diff --git a/src/components/time/package.json b/src/components/time/package.json index 2b8521f7373..d843d30dfe8 100644 --- a/src/components/time/package.json +++ b/src/components/time/package.json @@ -18,7 +18,7 @@ { "prop": "headerTag", "version": "2.22.0", - "description": "Specify the HTML tag to render instead of the default tag for the footer" + "description": "Specify the HTML tag to render instead of the default tag for the header" }, { "prop": "hideHeader", diff --git a/src/components/toast/package.json b/src/components/toast/package.json index fe943ffefac..cb0cb8ed7d4 100644 --- a/src/components/toast/package.json +++ b/src/components/toast/package.json @@ -31,7 +31,7 @@ { "prop": "headerTag", "version": "2.22.0", - "description": "Specify the HTML tag to render instead of the default tag for the footer" + "description": "Specify the HTML tag to render instead of the default tag for the header" }, { "prop": "isStatus", From a0b93ac7f0b86f8217662aaa98257970c8f29358 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Jan 2023 20:03:29 +0000 Subject: [PATCH 11/61] chore(deps): bump actions/cache from 3.0.11 to 3.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 3.2.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.0.11...v3.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bfcb71d9e51..eb275296cbd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache node_modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.2.2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ matrix.os }}-node-v${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4185f1c5f1e..e6cc3d70618 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,7 +36,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache node_modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.2.2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ matrix.os }}-node-v${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -73,7 +73,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache node_modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.2.2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ matrix.os }}-node-v${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -110,7 +110,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache node_modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.2.2 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ matrix.os }}-node-v${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }} From f4d7184d8d85ac12d69ee17c6f55a65d0f334a30 Mon Sep 17 00:00:00 2001 From: Issayah Date: Sun, 8 Jan 2023 10:31:53 -0600 Subject: [PATCH 12/61] docs: update CODE_OF_CONDUCT to v2.1 --- CODE_OF_CONDUCT.md | 158 ++++++++++++++++++++++++++++++++------------- 1 file changed, 113 insertions(+), 45 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index fb779a4ee99..fb0aab45fea 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,65 +1,133 @@ # Contributor Covenant Code of Conduct -## Our pledge +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. -In the interest of fostering an open and welcoming environment, we as contributors and maintainers -pledge to making participation in our project and our community a harassment-free experience for -everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level -of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. +## Scope -## Our standards +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. -Examples of behavior that contributes to creating a positive environment include: +## Enforcement -- Using welcoming and inclusive language -- Being respectful of differing viewpoints and experiences -- Gracefully accepting constructive criticism -- Focusing on what is best for the community -- Showing empathy towards other community members +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting +the project team at pooya@pi0.ir. The project team will review and investigate all complaints, and +will respond in a way that it deems appropriate to the circumstances. The project team is obligated +to maintain confidentiality with regard to the reporter of an incident. Further details of specific +enforcement policies may be posted separately. -Examples of unacceptable behavior by participants include: +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. -- The use of sexualized language or imagery and unwelcome sexual attention or advances -- Trolling, insulting/derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or electronic address, without explicit - permission -- Other conduct which could reasonably be considered inappropriate in a professional setting +## Enforcement Guidelines -## Our responsibilities +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: -Project maintainers are responsible for clarifying the standards of acceptable behavior and are -expected to take appropriate and fair corrective action in response to any instances of unacceptable -behavior. +### 1. Correction -Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, -code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or -to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. -## Scope +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. -This Code of Conduct applies both within project spaces and in public spaces when an individual is -representing the project or its community. Examples of representing a project or community include -using an official project e-mail address, posting via an official social media account, or acting as -an appointed representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. +### 2. Warning -## Enforcement +**Community Impact**: A violation through a single incident or series of +actions. -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting -the project team at pooya@pi0.ir. The project team will review and investigate all complaints, and -will respond in a way that it deems appropriate to the circumstances. The project team is obligated -to maintain confidentiality with regard to the reporter of an incident. Further details of specific -enforcement policies may be posted separately. +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. -Project maintainers who do not follow or enforce the Code of Conduct in good faith may face -temporary or permanent repercussions as determined by other members of the project's leadership. +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. ## Attribution -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at -[https://contributor-covenant.org/version/1/4][version] +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. -[homepage]: https://contributor-covenant.org -[version]: https://contributor-covenant.org/version/1/4/ +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations From a8a5d4efa340fe8ebdbf3a247e716e8ce3a4c2f1 Mon Sep 17 00:00:00 2001 From: Issayah Date: Sun, 8 Jan 2023 10:38:27 -0600 Subject: [PATCH 13/61] chore: update copyright year to 2023 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 80d672f72fb..dd006055d49 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2020 - BootstrapVue +Copyright (c) 2016-2023 - BootstrapVue Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From fa65e58f0dfe03f0d24f81069ed7f0ab8ee6f0d2 Mon Sep 17 00:00:00 2001 From: Renan Sugiyama Date: Sun, 7 May 2023 15:31:33 -0300 Subject: [PATCH 14/61] chore(docs): fix event name to hide a specific tooltip --- src/directives/tooltip/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/directives/tooltip/README.md b/src/directives/tooltip/README.md index 334372c9405..2c5b948b6a5 100644 --- a/src/directives/tooltip/README.md +++ b/src/directives/tooltip/README.md @@ -463,7 +463,7 @@ To close a **specific tooltip**, pass the trigger element's `id`, or the `id` of was provided in the config object) as the first argument: ```js -this.$root.$emit('bv::show::tooltip', 'my-trigger-button-id') +this.$root.$emit('bv::hide::tooltip', 'my-trigger-button-id') ``` To open a **specific tooltip**, pass the trigger element's `id`, or the `id` of the tooltip (if one From 2d597895ba8174ff72f87ec159c7e32658de1683 Mon Sep 17 00:00:00 2001 From: Issayah Date: Thu, 27 Jul 2023 19:17:43 -0500 Subject: [PATCH 15/61] Update vue3.vue --- docs/pages/vue3.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/vue3.vue b/docs/pages/vue3.vue index 058c2fdeced..99e14850f95 100644 --- a/docs/pages/vue3.vue +++ b/docs/pages/vue3.vue @@ -10,7 +10,7 @@ With the release of v2.23.0 you can now use BootstrapVue with migration build of Vue.js 3 - @vue/compat support is designed for early migration to Vue.js 3 and will be eventually replaced with bootstrap-vue 3.0 + @vue/compat support is designed for early migration to Vue.js 3 and will be eventually replaced with BootstrapVueNext. BootstrapVueNext is currently in Alpha

Important limitations From 900ebb5192bb96a3b257196e58f88dc67747aa07 Mon Sep 17 00:00:00 2001 From: Issayah Date: Thu, 27 Jul 2023 19:23:54 -0500 Subject: [PATCH 16/61] Update docs/pages/vue3.vue --- docs/pages/vue3.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/vue3.vue b/docs/pages/vue3.vue index 99e14850f95..d43c93e1c3f 100644 --- a/docs/pages/vue3.vue +++ b/docs/pages/vue3.vue @@ -10,7 +10,7 @@ With the release of v2.23.0 you can now use BootstrapVue with migration build of Vue.js 3 - @vue/compat support is designed for early migration to Vue.js 3 and will be eventually replaced with BootstrapVueNext. BootstrapVueNext is currently in Alpha + @vue/compat support is designed for early migration to Vue.js 3 and will be eventually replaced with BootstrapVueNext. BootstrapVueNext is currently in Alpha

Important limitations From 9177189cb26f7a46c41d455192901f7b565ac599 Mon Sep 17 00:00:00 2001 From: Mika Steyer <108517592+steyer-mika@users.noreply.github.com> Date: Mon, 14 Oct 2024 22:33:24 +0200 Subject: [PATCH 17/61] chore: update copyright year to 2023 (#7203) --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index dd006055d49..1ebf42caf8b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2023 - BootstrapVue +Copyright (c) 2016-2024 - BootstrapVue Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From ef391f5327efdd289c52b3387d2b11892bf4e2c1 Mon Sep 17 00:00:00 2001 From: Issayah Date: Mon, 14 Oct 2024 15:33:43 -0500 Subject: [PATCH 18/61] docs: bootstrap-vue-next recommendation (#7219) --- docs/pages/vue3.vue | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/docs/pages/vue3.vue b/docs/pages/vue3.vue index d43c93e1c3f..1894910a042 100644 --- a/docs/pages/vue3.vue +++ b/docs/pages/vue3.vue @@ -1,39 +1,37 @@