Skip to content

Commit

Permalink
some minor fixes + roadmap update
Browse files Browse the repository at this point in the history
  • Loading branch information
asvae committed May 17, 2021
1 parent beb6ecc commit bf95bcb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 22 deletions.
6 changes: 0 additions & 6 deletions packages/docs/src/components/DocsTable/DocsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,5 @@ export default class DocsTable extends mixins(PropsMixin) {
padding: 0.75rem !important;
}
}
.MarkdownView {
code {
white-space: pre;
}
}
}
</style>
18 changes: 9 additions & 9 deletions packages/docs/src/components/header/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<va-button
v-for="(link, index) in links" :key="index"
flat
class="header__links__button"
class="header__links__button ml-2"
color="primary"
:to="link.to"
:href="link.url"
Expand Down Expand Up @@ -60,24 +60,24 @@ export default class Header extends mixins(PropsMixin) {
return {
links: [
{
text: 'Overview',
text: this.$t('menu.overview'),
icon: 'fa fa-eye',
to: `/${(this as any).$root.$i18n.locale}/introduction/overview`,
},
{
text: 'Documentation',
icon: 'fa fa-cube',
url: '#', // TODO: add actual links when pages are ready
target: '_blank',
},
// {
// text: 'Documentation',
// icon: 'fa fa-cube',
// url: '#', // TODO: add actual links when pages are ready
// target: '_blank',
// },
{
text: 'GitHub',
icon: 'fa fa-github',
url: 'https://github.com/epicmaxco/vuestic-ui',
target: '_blank',
},
{
text: 'Contribution',
text: this.$t('menu.contribution'),
icon: 'fa fa-share-alt',
to: `/${(this as any).$root.$i18n.locale}/contribution/documentation-page`,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ export default [
DocsHelper.subtitle('roadmap.inDevelopment.title'),
DocsHelper.paragraph('roadmap.inDevelopment.description'),

DocsHelper.headline('roadmap.1-0.title'),
DocsHelper.paragraph('roadmap.1-0.description'),
DocsHelper.headline('roadmap.1-1.title'),
DocsHelper.paragraph('roadmap.1-1.description'),

DocsHelper.subtitle('roadmap.released.title'),

DocsHelper.paragraph('roadmap.released.description'),

DocsHelper.headline('roadmap.1-0.title'),
DocsHelper.paragraph('roadmap.1-0.description'),

DocsHelper.headline('roadmap.0-1.title'),
DocsHelper.paragraph('roadmap.0-1.description'),

Expand All @@ -23,4 +25,3 @@ export default [
// DocsHelper.subtitle('roadmap.archive.title'),
// DocsHelper.paragraph('roadmap.archive.description'),
] as ApiDocsBlock[]

10 changes: 7 additions & 3 deletions packages/docs/src/locales/en/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2675,22 +2675,26 @@
},
"roadmap": {
"title": "Vuestic UI Roadmap",
"description": "Our team is constantly improving the existing code base and adding new features that help make building applications even easier",
"description": "Our team is constantly improving the existing code base and adding new features that help make building applications even easier.",
"inDevelopment": {
"title": "In development",
"description": "The following releases are currently being developed:"
},
"1-1": {
"title": "v1.1",
"description": "We plan a small release to polish and improve `v1.0`. Plus a new feature or two :)."
},
"1-0": {
"title": "v1.0",
"description": "Starting point of vuestic-ui. Reworked and added multiple components, added proper documentation."
},
"0-1": {
"title": "v0.1",
"description": "Not even alpha, we just split components from [vuestic-admin](https://github.com/epicmaxco/vuestic-admin) into separate repository to simplify updates."
"description": "Not even alpha, we've just split components from [vuestic-admin](https://github.com/epicmaxco/vuestic-admin) into separate repository to simplify updates."
},
"released": {
"title": "Released",
"description": "The following are the already released minor and major version updates. "
"description": " Already released versions"
},
"longTimeSupport": {
"title": "Long time support",
Expand Down

0 comments on commit bf95bcb

Please sign in to comment.