Skip to content

Commit

Permalink
Better naming convention for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
arielsalminen committed Mar 1, 2018
1 parent ecd0bba commit 07a9bbb
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/components/status/Components.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
<thead>
<tr>
<th>Component Name</th>
<th>Added In</th>
<th>Released in</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr v-for="component in components" class="component">
<td v-if="component.name">{{component.name}}</td>
<td v-else>N/A</td>
<td v-if="component.addedInVersion">{{component.addedInVersion}}</td>
<td v-if="component.release">{{component.release}}</td>
<td v-else>N/A</td>
<td v-if="component.version">
<svg-icon
Expand Down
2 changes: 1 addition & 1 deletion src/ExampleComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default {
* ready Green Ready to be used
*/
version: "prototype",
addedInVersion: "1.0.0",
release: "1.0.0",
/**
* Prop definitions should be as detailed as possible, specifying at least
* type(s). See examples below:
Expand Down
2 changes: 1 addition & 1 deletion src/elements/Heading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export default {
name: "Heading",
version: "prototype",
addedInVersion: "1.0.0",
release: "1.0.0",
props: {
/**
* The heading level used for the heading.
Expand Down
2 changes: 1 addition & 1 deletion src/elements/SvgIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const req = require.context("@/assets/icons/", true, /^\.\/.*\.svg$/)
export default {
name: "SvgIcon",
version: "review",
addedInVersion: "1.0.0",
release: "1.0.0",
props: {
/**
* The name of the icon to display
Expand Down
2 changes: 1 addition & 1 deletion src/elements/TextLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export default {
name: "TextLink",
version: "ready",
addedInVersion: "1.0.0",
release: "1.0.0",
props: {
/**
* The URL for the link
Expand Down
2 changes: 1 addition & 1 deletion src/elements/TextStyle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export default {
name: "TextStyle",
version: "ready",
addedInVersion: "1.0.0",
release: "1.0.0",
props: {
/**
* The html element name used for the text
Expand Down
2 changes: 1 addition & 1 deletion src/elements/Wrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export default {
name: "Wrapper",
version: "review",
addedInVersion: "1.0.0",
release: "1.0.0",
props: {
/**
* The html element name used for the wrapper
Expand Down
2 changes: 1 addition & 1 deletion src/patterns/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export default {
name: "NavBar",
version: "ready",
addedInVersion: "1.0.0",
release: "1.0.0",
model: {
prop: "active",
},
Expand Down
2 changes: 1 addition & 1 deletion src/templates/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
export default {
name: "Index",
version: "deprecated",
addedInVersion: "1.0.0",
release: "1.0.0",
metaInfo: {
title: "Vue Design System",
htmlAttrs: {
Expand Down

0 comments on commit 07a9bbb

Please sign in to comment.