Skip to content

Commit

Permalink
fixes the styleguide:build unterminated template literal syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sdellis committed Mar 28, 2024
1 parent a9751a3 commit 17de58f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
18 changes: 10 additions & 8 deletions src/components/logos/LuxLogoLibrary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@

<script>
/**
* Official Princeton University Library Logo.
* Official Princeton University Library Brandmark and Wordmark combination Logo.
* Please, note that the white type on the first example below is not visible due
* to the white background color of the preview box.
*/
export default {
name: "LuxLogoLibrary",
Expand Down Expand Up @@ -77,10 +79,10 @@ export default {
</style>

<docs>
```jsx
<div>
<lux-logo-library></lux-logo-library>
<lux-logo-library color="#000"></lux-logo-library>
</div>
```
</docs>
```jsx
<div>
<lux-logo-library></lux-logo-library>
<lux-logo-library color="#000"></lux-logo-library>
</div>
```
</docs>
14 changes: 7 additions & 7 deletions src/components/logos/LuxLogoLibraryIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<script>
/**
* Official Princeton University Library Logo.
* Official Princeton University Library Brandmark Logo.
*/
export default {
name: "LuxLogoLibraryIcon",
Expand Down Expand Up @@ -61,9 +61,9 @@ export default {
</style>

<docs>
```jsx
<div>
<lux-logo-library-icon></lux-logo-library-icon>
</div>
```
</docs>
```jsx
<div>
<lux-logo-library-icon></lux-logo-library-icon>
</div>
```
</docs>
4 changes: 4 additions & 0 deletions styleguide.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ module.exports = {
name: "Icons",
components: "src/components/icons/[A-Z]*.vue",
},
{
name: "Logos",
components: "src/components/logos/[A-Z]*.vue",
},
{
name: "Internal Components",
components: "src/components/_*.vue",
Expand Down

0 comments on commit 17de58f

Please sign in to comment.