diff --git a/docs/assets/definitions.scss b/docs/assets/definitions.scss index 189800664..d5b47a33d 100644 --- a/docs/assets/definitions.scss +++ b/docs/assets/definitions.scss @@ -4,6 +4,5 @@ $code-color: #696680; $link-color: #368d74; $link-hover-color: #26614d; $selection-color: #badbd2; -$basic-transition: color 0.25s ease, - fill 0.25s ease; +$basic-transition: color 0.25s ease, fill 0.25s ease; $nav-width: 260px; diff --git a/docs/common/DocsDoNot.vue b/docs/common/DocsDoNot.vue index 0f2bf3588..2dbc2dd1b 100644 --- a/docs/common/DocsDoNot.vue +++ b/docs/common/DocsDoNot.vue @@ -5,7 +5,9 @@ v-if="$slots.do" class="show" > -
Do
+
+ Do +
@@ -14,7 +16,9 @@ v-if="$slots.not" class="show" > -
Don't
+
+ Don't +
diff --git a/docs/common/DocsPageTemplate/SideNav/index.vue b/docs/common/DocsPageTemplate/SideNav/index.vue index 8a66d9619..217b3df4f 100644 --- a/docs/common/DocsPageTemplate/SideNav/index.vue +++ b/docs/common/DocsPageTemplate/SideNav/index.vue @@ -67,7 +67,7 @@ // otherwise, check for matching pages by title and keywords else { const matchingPages = section.pages.filter(page => - matches(this.terms, page.title + page.keywords.join(' ')), + matches(this.terms, page.title + page.keywords.join(' ')) ); if (matchingPages.length) { toc.push(section.clone({ pages: matchingPages })); diff --git a/docs/common/DocsPageTemplate/index.vue b/docs/common/DocsPageTemplate/index.vue index 40e874a84..854be74fe 100644 --- a/docs/common/DocsPageTemplate/index.vue +++ b/docs/common/DocsPageTemplate/index.vue @@ -60,7 +60,7 @@ node => node.componentOptions && node.componentOptions.tag === DocsPageSection.name && - node.componentOptions.propsData.anchor, + node.componentOptions.propsData.anchor ) .map(node => node.componentOptions.propsData); } diff --git a/docs/common/DocsPageTemplate/jsdocs/EventsTable.vue b/docs/common/DocsPageTemplate/jsdocs/EventsTable.vue index a024a2394..93038f640 100644 --- a/docs/common/DocsPageTemplate/jsdocs/EventsTable.vue +++ b/docs/common/DocsPageTemplate/jsdocs/EventsTable.vue @@ -4,7 +4,9 @@ Name - Description + + Description + diff --git a/docs/common/DocsPageTemplate/jsdocs/MethodsTable.vue b/docs/common/DocsPageTemplate/jsdocs/MethodsTable.vue index 8d871c2d5..72af96c5e 100644 --- a/docs/common/DocsPageTemplate/jsdocs/MethodsTable.vue +++ b/docs/common/DocsPageTemplate/jsdocs/MethodsTable.vue @@ -4,7 +4,9 @@ Name - Description + + Description + diff --git a/docs/common/DocsPageTemplate/jsdocs/PropsTable.vue b/docs/common/DocsPageTemplate/jsdocs/PropsTable.vue index a9e6f4103..02e038588 100644 --- a/docs/common/DocsPageTemplate/jsdocs/PropsTable.vue +++ b/docs/common/DocsPageTemplate/jsdocs/PropsTable.vue @@ -4,7 +4,9 @@ Name - Description + + Description + Type Default Required diff --git a/docs/common/DocsPageTemplate/jsdocs/SlotsTable.vue b/docs/common/DocsPageTemplate/jsdocs/SlotsTable.vue index 7b9b54171..4a7cd754d 100644 --- a/docs/common/DocsPageTemplate/jsdocs/SlotsTable.vue +++ b/docs/common/DocsPageTemplate/jsdocs/SlotsTable.vue @@ -4,7 +4,9 @@ Name - Description + + Description + diff --git a/docs/common/DocsShowCode/webpack-loader.js b/docs/common/DocsShowCode/webpack-loader.js index 3a9bda661..39799e5f5 100644 --- a/docs/common/DocsShowCode/webpack-loader.js +++ b/docs/common/DocsShowCode/webpack-loader.js @@ -1,11 +1,14 @@ var TAG_PATTERN = new RegExp(`(.*?)`, 'gms'); function escape(unsafe) { - return (unsafe || '').replace(/&/gm, '&').replace(//gm, '>'); + return (unsafe || '') + .replace(/&/gm, '&') + .replace(//gm, '>'); } -module.exports = function (content) { - return content.replace(TAG_PATTERN, function (_, attributes, innerText) { +module.exports = function(content) { + return content.replace(TAG_PATTERN, function(_, attributes, innerText) { return `${escape(innerText)}`; }); }; diff --git a/docs/pages/appbars/index.vue b/docs/pages/appbars/index.vue index d54ddb1a4..cf653de15 100644 --- a/docs/pages/appbars/index.vue +++ b/docs/pages/appbars/index.vue @@ -101,12 +101,16 @@ @@ -119,7 +123,7 @@