From 2169b436fecd88c91ece2c9fbfc7c56c29a1620c Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 13:29:39 -0300 Subject: [PATCH 01/68] Update index.js --- docs/content/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/content/index.js b/docs/content/index.js index 732c98a3e56..14ce6e52655 100644 --- a/docs/content/index.js +++ b/docs/content/index.js @@ -1,5 +1,5 @@ import { importAll, parseVersion } from '~/utils' -import { version, dependencies, devDependencies } from '~/../package.json' +import { version, dependencies, devDependencies, description } from '~/../package.json' import { getDefaults } from '~/../src/utils/config' const componentsContext = require.context('~/../src/components/', true, /package.json/) @@ -46,5 +46,6 @@ export const bootstrapVersion = parseVersion(dependencies.bootstrap) export const vueVersion = parseVersion(devDependencies.vue) export const nuxtVersion = parseVersion(devDependencies.nuxt) export const defaultConfig = getDefaults() +export const bvDescription = description export { version } From bd217e2cc5c542b7d138d42d96680e011aac782a Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 13:45:17 -0300 Subject: [PATCH 02/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index 9bd69540dfd..10ba94ef965 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -14,12 +14,22 @@ export default { computed: { content() { return (this.$route.params.slug && this._content[this.$route.params.slug]) || {} + }, + metaTitle() { + return `${(this.meta && this.meta.title) || 'Docs'} - BootstrapVue` + }, + metaDescription() { + if (this.meta && this.meta.description) { + return { hid: 'description', name: 'description', content: this.meta.descripton } + } + return null } }, head() { return { - title: `${(this.meta && this.meta.title) || 'Docs'} - BootstrapVue` + title: this.metaTitle, + meta: this.metaDescription ? [this.metaDescription] : [] } }, From 3ec4a3db3599d42853441ffed453cdbf374a66e7 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:03:36 -0300 Subject: [PATCH 03/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index 10ba94ef965..e7d98941043 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -2,6 +2,7 @@ * docs-mixin: used by any page under /docs path */ import { scrollTo, offsetTop } from '~/utils' +import { bvDescription } from '~/content' // @vue/component export default { @@ -21,6 +22,8 @@ export default { metaDescription() { if (this.meta && this.meta.description) { return { hid: 'description', name: 'description', content: this.meta.descripton } + } else if (bvDescription) { + return { hid: 'description', name: 'description', content: bvDescription } } return null } From 28c0eee85f4ed03167db8c8eefcb8f0fc11321a8 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:05:46 -0300 Subject: [PATCH 04/68] Update package.json --- src/components/alert/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/alert/package.json b/src/components/alert/package.json index 8d700258a10..d0496c36133 100644 --- a/src/components/alert/package.json +++ b/src/components/alert/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Alert", + "description": "Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.", "components": [ { "component": "BAlert", From 590528bb18269b9b3efc62cbd1fa7c5229cd9856 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:06:39 -0300 Subject: [PATCH 05/68] Update package.json --- src/components/badge/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/badge/package.json b/src/components/badge/package.json index ddf6f3845c5..2f3f34c3909 100644 --- a/src/components/badge/package.json +++ b/src/components/badge/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Badge", + "description": "Small and adaptive tag for adding context to just about any content.", "components": [ "BBadge" ] From 6a767c6178a5a52af35620f2eea14df4e6c89259 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:07:44 -0300 Subject: [PATCH 06/68] Update package.json --- src/components/breadcrumb/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/breadcrumb/package.json b/src/components/breadcrumb/package.json index bcc4541740b..8344a6814d8 100644 --- a/src/components/breadcrumb/package.json +++ b/src/components/breadcrumb/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Breadcrumb", + "description": "Indicate the current page’s location within a navigational hierarchy. Separators are automatically added in CSS through ::before and content.", "components": [ "BBreadcrumb", { From 8dcc73cbc3747d7211703251178750cb66b3b1c5 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:08:43 -0300 Subject: [PATCH 07/68] Update package.json --- src/components/button-group/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/button-group/package.json b/src/components/button-group/package.json index 85783c19a1d..7ffa9d20704 100644 --- a/src/components/button-group/package.json +++ b/src/components/button-group/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Button Group", + "description": "Group a series of buttons together on a single line with .", "components": [ { "component": "BButtonGroup", From 4d8224dcfbf10fa17c422a2d8ae2a992501ed285 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:09:56 -0300 Subject: [PATCH 08/68] Update package.json --- src/components/button-toolbar/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/button-toolbar/package.json b/src/components/button-toolbar/package.json index 8ad561860bc..f0c3578d716 100644 --- a/src/components/button-toolbar/package.json +++ b/src/components/button-toolbar/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Button Toolbar", + "description": "Group a series of and/or together on a single line, with optional keyboard navigation.", "components": [ { "component": "BButtonToolbar", From 2e22cfe8e7e4b4ebeed7c01aa2667513f8ea9c4f Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:11:04 -0300 Subject: [PATCH 09/68] Update package.json --- src/components/button/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/button/package.json b/src/components/button/package.json index 9de9e85822e..f7ee6cc21f8 100644 --- a/src/components/button/package.json +++ b/src/components/button/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Button", + "description": "Use Bootstrap Vue’s component for actions in forms, dialogs, and more. Includes support for a handful of contextual variations, sizes, states, and more.", "components": [ { "component": "BButton", From fe82c7a2043f3504e910feaa6532466bd80103e3 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 15:21:57 -0300 Subject: [PATCH 10/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index e7d98941043..10ba94ef965 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -2,7 +2,6 @@ * docs-mixin: used by any page under /docs path */ import { scrollTo, offsetTop } from '~/utils' -import { bvDescription } from '~/content' // @vue/component export default { @@ -22,8 +21,6 @@ export default { metaDescription() { if (this.meta && this.meta.description) { return { hid: 'description', name: 'description', content: this.meta.descripton } - } else if (bvDescription) { - return { hid: 'description', name: 'description', content: bvDescription } } return null } From 66edc3b4a3f974decfbc181008fee7686d032f44 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 20:08:55 -0300 Subject: [PATCH 11/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index 10ba94ef965..bbe93887af3 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -2,6 +2,7 @@ * docs-mixin: used by any page under /docs path */ import { scrollTo, offsetTop } from '~/utils' +import { bvDescription } from '~/content' // @vue/component export default { @@ -13,14 +14,32 @@ export default { computed: { content() { + // NOTE: is this computed prop used anymore? return (this.$route.params.slug && this._content[this.$route.params.slug]) || {} }, metaTitle() { - return `${(this.meta && this.meta.title) || 'Docs'} - BootstrapVue` + const routeName = this.$route.name + let title = 'Docs' + let section = '' + if (this.meta && this.meta.title) { + title = this.meta.title + } + if (routeName === 'docs-components-slug') { + section = 'Components' + } else if (routeName === 'docs-directives-slug') { + section = 'Directives' + } else if (routeName === 'docs-reference-slug') { + section = 'Reference' + } else if (routeName === 'docs-misc-slug') { + section = 'Misc' + } + return [title, section, 'BootstrapVue'].filter(Boolean).join(' | ') }, metaDescription() { if (this.meta && this.meta.description) { - return { hid: 'description', name: 'description', content: this.meta.descripton } + return { hid: 'description', name: 'description', content: this.meta.description } + } else if (bvDescription) { + return { hid: 'description', name: 'description', content: bvDescription } } return null } From 6464d4ca2b12c9045b0566e5e1d963508d635a61 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 20:20:00 -0300 Subject: [PATCH 12/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index bbe93887af3..17e173d2e10 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -19,19 +19,19 @@ export default { }, metaTitle() { const routeName = this.$route.name - let title = 'Docs' - let section = '' + let title = '' + let section = 'Docs' if (this.meta && this.meta.title) { title = this.meta.title } if (routeName === 'docs-components-slug') { - section = 'Components' + section = 'Components | Docs' } else if (routeName === 'docs-directives-slug') { - section = 'Directives' + section = 'Directives | Docs' } else if (routeName === 'docs-reference-slug') { - section = 'Reference' + section = 'Reference | Docs' } else if (routeName === 'docs-misc-slug') { - section = 'Misc' + section = 'Misc | Docs' } return [title, section, 'BootstrapVue'].filter(Boolean).join(' | ') }, From 4722ddefd47abb362737d97c4347b9dd1a59e23b Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 20:41:43 -0300 Subject: [PATCH 13/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index 17e173d2e10..803aa4aa031 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -35,20 +35,42 @@ export default { } return [title, section, 'BootstrapVue'].filter(Boolean).join(' | ') }, - metaDescription() { + metaMeta() { + const meta = [ + { + hid: 'og:title', + name: 'og:title', + property: 'og:title', + content: this.metaTitle + } + ] if (this.meta && this.meta.description) { - return { hid: 'description', name: 'description', content: this.meta.description } + meta.push({ + hid: 'description', + name: 'description', + content: this.meta.description + }) + meta.push({ + hid: 'og:description', + name: 'og:description', + property: 'og:description', + content: this.meta.description + }) } else if (bvDescription) { - return { hid: 'description', name: 'description', content: bvDescription } + meta.push({ + hid: 'description', + name: 'description', + content: bvDescription + }) } - return null + return meta } }, head() { return { title: this.metaTitle, - meta: this.metaDescription ? [this.metaDescription] : [] + meta: this.metaMeta } }, From 741b94542b3be4ec419197ac65a2ed5f0178d2f3 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 20:46:40 -0300 Subject: [PATCH 14/68] Update package.json --- src/directives/popover/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/directives/popover/package.json b/src/directives/popover/package.json index a2e50ebfbd8..97c6ab70e92 100644 --- a/src/directives/popover/package.json +++ b/src/directives/popover/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "meta": { "title": "Popover", + "description": "Add BootstrapVue popovers to any element on your site, using Bootstrap V4 CSS for styling and animations. Popovers are tooltips on steroids.", "directive": "vBPopover" } } From 53852b15d876aa8faf4e4ef0b4f5896d89ed2210 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 20:47:49 -0300 Subject: [PATCH 15/68] Update package.json --- src/directives/scrollspy/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/directives/scrollspy/package.json b/src/directives/scrollspy/package.json index acdb2566489..777ac5daf95 100644 --- a/src/directives/scrollspy/package.json +++ b/src/directives/scrollspy/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "meta": { "title": "Scrollspy", + "description": "Automatically activate BootstrapVue navigation or list group components based on scroll position to indicate which link is currently active in the viewport.", "directive": "vBScrollspy" } } From 556a6612fafcb4e9846994c9f153c01bda4f5aa9 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 20:48:54 -0300 Subject: [PATCH 16/68] Update package.json --- src/directives/tooltip/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/directives/tooltip/package.json b/src/directives/tooltip/package.json index 350dd0cbb78..2da2a06e171 100644 --- a/src/directives/tooltip/package.json +++ b/src/directives/tooltip/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "meta": { "title": "Tooltip", + "description": "Add custom BootstrapVue tooltips to any element. Tooltips can be triggered by hovering, focusing, or clicking an element.", "directive": "vBTooltip" } } From 98670ea3419466ef0267823e134da512a8b2d5e4 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:01:52 -0300 Subject: [PATCH 17/68] Update docs-mixin.js --- docs/plugins/docs-mixin.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/plugins/docs-mixin.js b/docs/plugins/docs-mixin.js index 803aa4aa031..aa83ed30c32 100644 --- a/docs/plugins/docs-mixin.js +++ b/docs/plugins/docs-mixin.js @@ -17,31 +17,31 @@ export default { // NOTE: is this computed prop used anymore? return (this.$route.params.slug && this._content[this.$route.params.slug]) || {} }, - metaTitle() { + headTitle() { const routeName = this.$route.name let title = '' - let section = 'Docs' + let section = '' if (this.meta && this.meta.title) { title = this.meta.title } if (routeName === 'docs-components-slug') { - section = 'Components | Docs' + section = 'Components' } else if (routeName === 'docs-directives-slug') { - section = 'Directives | Docs' + section = 'Directives' } else if (routeName === 'docs-reference-slug') { - section = 'Reference | Docs' + section = 'Reference' } else if (routeName === 'docs-misc-slug') { - section = 'Misc | Docs' + section = 'Misc' } - return [title, section, 'BootstrapVue'].filter(Boolean).join(' | ') + return [title, section, 'Docs', 'BootstrapVue'].filter(Boolean).join(' | ') }, - metaMeta() { + headMeta() { const meta = [ { hid: 'og:title', name: 'og:title', property: 'og:title', - content: this.metaTitle + content: this.headTitle } ] if (this.meta && this.meta.description) { @@ -69,8 +69,8 @@ export default { head() { return { - title: this.metaTitle, - meta: this.metaMeta + title: this.headTitle, + meta: this.headMeta } }, From 5d3e84fb9c1135477da92a538479129310fb9384 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:03:19 -0300 Subject: [PATCH 18/68] Update package.json --- src/components/card/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/card/package.json b/src/components/card/package.json index 3192b0ce32e..4785356d003 100644 --- a/src/components/card/package.json +++ b/src/components/card/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Card", + "description": "A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.", "components": [ { "component": "BCard", From fa1346ee3133ef75a7a2cbfa3f8181b5ce3c5acb Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:05:32 -0300 Subject: [PATCH 19/68] Update package.json --- src/components/carousel/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/carousel/package.json b/src/components/carousel/package.json index ef13e023aab..60ed915ee3f 100644 --- a/src/components/carousel/package.json +++ b/src/components/carousel/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Carousel", + "description": "The component is a slideshow for cycling through a series of content, built with CSS 3D transforms. It works with a series of images, text, or custom markup.", "components": [ { "component": "BCarousel", From c34f041331ee23074d590d3340ef3f2887b96a9a Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:07:08 -0300 Subject: [PATCH 20/68] Update package.json --- src/components/collapse/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/collapse/package.json b/src/components/collapse/package.json index 832587a5589..a7b236b7a91 100644 --- a/src/components/collapse/package.json +++ b/src/components/collapse/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Collapse", + "description": "Easily toggle content visibility on your pages. Includes support for making accordions.", "components": [ { "component": "BCollapse", From 69b768f53d5ce64f3e2d7b3a70ea22d686b44e2e Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:08:06 -0300 Subject: [PATCH 21/68] Update package.json --- src/components/dropdown/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/dropdown/package.json b/src/components/dropdown/package.json index fb7655378e2..02604392285 100644 --- a/src/components/dropdown/package.json +++ b/src/components/dropdown/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Dropdown", + "description": "Dropdowns are toggleable, contextual overlays for displaying lists of links and actions in a dropdown menu format.", "components": [ { "component": "BDropdown", From fd5f3248f7be838dda9b31fe67ed29b52c3951db Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:09:01 -0300 Subject: [PATCH 22/68] Update package.json --- src/components/embed/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/embed/package.json b/src/components/embed/package.json index 5c7f6a7509f..3f4efeacf9e 100644 --- a/src/components/embed/package.json +++ b/src/components/embed/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Embed", + "description": "Create responsive video or slideshow embeds based on the width of the parent by creating an intrinsic ratio that scales on any device.", "components": [ "BEmbed" ] From 8505d13f5c15ac4332437c893bbba41cebc662b5 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:10:56 -0300 Subject: [PATCH 23/68] Update package.json --- src/components/form/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form/package.json b/src/components/form/package.json index 26c52176849..33a70a4f55d 100644 --- a/src/components/form/package.json +++ b/src/components/form/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Form", + "description": "Form component and form helper components that optionally supports inline form styles and validation states", "slug": "form", "components": [ { From 68a8788c8c3018f7cc5523653c0213d26141c8c9 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:13:04 -0300 Subject: [PATCH 24/68] Update package.json --- src/components/form-checkbox/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form-checkbox/package.json b/src/components/form-checkbox/package.json index b6dca3758b9..78fee753a87 100644 --- a/src/components/form-checkbox/package.json +++ b/src/components/form-checkbox/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Form Checkbox", + "description": "Custom checkbox input and checkbox group to replace the browser default checkbox input, built on top of semantic and accessible markup. Optionally supports switch styling.", "components": [ { "component": "BFormCheckboxGroup", From 408bc5268c9e11a6ba1939a5db0620efc190a2ca Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:15:55 -0300 Subject: [PATCH 25/68] Update package.json --- src/components/form-file/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form-file/package.json b/src/components/form-file/package.json index 68cb4db2bc3..760895bd0d3 100644 --- a/src/components/form-file/package.json +++ b/src/components/form-file/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Form File", + "description": "Customized, cross-browser consistent, file input control that supports single file, multiple files, and directory upload.", "components": [ { "component": "BFormFile", From 9568436e05dcd3ffb1d6e15c88964ca63e26c923 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:17:08 -0300 Subject: [PATCH 26/68] Update package.json --- src/components/form-group/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form-group/package.json b/src/components/form-group/package.json index 39e26bad3c4..49c62160272 100644 --- a/src/components/form-group/package.json +++ b/src/components/form-group/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Form Group", + "description": "Easily add some structure to forms. Its purpose is to pair form controls with a legend or label, and to provide help text and invalid/valid feedback text, as well as visual (color) contextual state feedback.", "components": [ { "component": "BFormGroup", From 20cd0b7a88b85c45961d172e9d4250a33e81a48c Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:18:26 -0300 Subject: [PATCH 27/68] Update package.json --- src/components/form-input/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form-input/package.json b/src/components/form-input/package.json index cdb9444349d..e9cf8df4ecf 100644 --- a/src/components/form-input/package.json +++ b/src/components/form-input/package.json @@ -3,6 +3,7 @@ "version": "1.1.0", "meta": { "title": "Form Input", + "description": "Create various type inputs such as: text, password, number, url, email, search, range, date and more.", "components": [ { "component": "BFormInput", From fefc509871f3193135fd149e1af26c05ab7b4451 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:20:10 -0300 Subject: [PATCH 28/68] Update package.json --- src/components/form-radio/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form-radio/package.json b/src/components/form-radio/package.json index bc23ae2955c..c5159bbfaa8 100644 --- a/src/components/form-radio/package.json +++ b/src/components/form-radio/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Form Radio", + "description": "Cross browser consistent radio inputs and ragio groups, using Bootstrap's custom radio input to replace the browser default radio input.", "components": [ { "component": "BFormRadioGroup", From a8a235db90845b6ecc16daa7c7f497a0cd957ba3 Mon Sep 17 00:00:00 2001 From: Troy Morehouse Date: Sat, 30 Mar 2019 21:21:45 -0300 Subject: [PATCH 29/68] Update package.json --- src/components/form-select/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/form-select/package.json b/src/components/form-select/package.json index ea6ca779aa1..4fbbe10cc3e 100644 --- a/src/components/form-select/package.json +++ b/src/components/form-select/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "meta": { "title": "Form Select", + "description": "Custom