From 4738c4e3f430a6213a70ccaf9de3719c0b1bcc31 Mon Sep 17 00:00:00 2001 From: jonniebigodes Date: Wed, 13 Jan 2021 16:28:43 +0000 Subject: [PATCH] address Tom's feedback --- docs/snippets/vue/app-story-with-mock.js.mdx | 2 +- ...optypes.js.mdx => button-component-with-proptypes.vue.mdx} | 0 ...on-implementation.js.mdx => button-implementation.vue.mdx} | 0 docs/snippets/vue/button-story.js.mdx | 4 +++- ...plementation.js.mdx => simple-page-implementation.vue.mdx} | 0 docs/workflows/build-pages-with-storybook.md | 2 +- docs/writing-docs/doc-blocks.md | 4 ++-- 7 files changed, 7 insertions(+), 5 deletions(-) rename docs/snippets/vue/{button-component-with-proptypes.js.mdx => button-component-with-proptypes.vue.mdx} (100%) rename docs/snippets/vue/{button-implementation.js.mdx => button-implementation.vue.mdx} (100%) rename docs/snippets/vue/{simple-page-implementation.js.mdx => simple-page-implementation.vue.mdx} (100%) diff --git a/docs/snippets/vue/app-story-with-mock.js.mdx b/docs/snippets/vue/app-story-with-mock.js.mdx index 0ce8e266d44..c092e3fdeef 100644 --- a/docs/snippets/vue/app-story-with-mock.js.mdx +++ b/docs/snippets/vue/app-story-with-mock.js.mdx @@ -8,7 +8,7 @@ export default { component: App }; -const Template = (_args, { argTypes }) => ({ +const Template = (args, { argTypes }) => ({ props: Object.keys(argTypes), components: { App }, template: "" diff --git a/docs/snippets/vue/button-component-with-proptypes.js.mdx b/docs/snippets/vue/button-component-with-proptypes.vue.mdx similarity index 100% rename from docs/snippets/vue/button-component-with-proptypes.js.mdx rename to docs/snippets/vue/button-component-with-proptypes.vue.mdx diff --git a/docs/snippets/vue/button-implementation.js.mdx b/docs/snippets/vue/button-implementation.vue.mdx similarity index 100% rename from docs/snippets/vue/button-implementation.js.mdx rename to docs/snippets/vue/button-implementation.vue.mdx diff --git a/docs/snippets/vue/button-story.js.mdx b/docs/snippets/vue/button-story.js.mdx index 51281edef6a..4aee2c83b54 100644 --- a/docs/snippets/vue/button-story.js.mdx +++ b/docs/snippets/vue/button-story.js.mdx @@ -3,7 +3,9 @@ import Button from './Button'; -export default { title: 'Components/Button' }; +export default { + title: 'Components/Button' +}; export const Primary = () => ({ components: { Button }, diff --git a/docs/snippets/vue/simple-page-implementation.js.mdx b/docs/snippets/vue/simple-page-implementation.vue.mdx similarity index 100% rename from docs/snippets/vue/simple-page-implementation.js.mdx rename to docs/snippets/vue/simple-page-implementation.vue.mdx diff --git a/docs/workflows/build-pages-with-storybook.md b/docs/workflows/build-pages-with-storybook.md index eb501e34a1d..13ac64da2aa 100644 --- a/docs/workflows/build-pages-with-storybook.md +++ b/docs/workflows/build-pages-with-storybook.md @@ -38,7 +38,7 @@ When you are building screens in this way, it is typical that the inputs of a co paths={[ 'react/simple-page-implementation.js.mdx', 'react/simple-page-implementation.ts.mdx', - 'vue/simple-page-implementation.js.mdx' + 'vue/simple-page-implementation.vue.mdx' ]} /> diff --git a/docs/writing-docs/doc-blocks.md b/docs/writing-docs/doc-blocks.md index 847b2b1c02e..93f2b6282ae 100644 --- a/docs/writing-docs/doc-blocks.md +++ b/docs/writing-docs/doc-blocks.md @@ -26,7 +26,7 @@ This is extremely useful, but it can be further expanded. Additional information 'react/button-component-with-proptypes.js.mdx', 'react/button-component-with-proptypes.ts.mdx', 'angular/button-component-with-proptypes.ts.mdx', - 'vue/button-component-with-proptypes.js.mdx' + 'vue/button-component-with-proptypes.vue.mdx' ]} /> @@ -125,7 +125,7 @@ Looking at the following component: 'react/button-implementation.js.mdx', 'react/button-implementation.ts.mdx', 'angular/button-implementation.ts.mdx', - 'vue/button-implementation.js.mdx' + 'vue/button-implementation.vue.mdx' ]} />