Skip to content

Commit

Permalink
docs: update 1.8 roadmap (#3548)
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ksem authored Jun 27, 2023
1 parent ad2dcd2 commit 84cf09c
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { default as PageLayout } from './pageLayout.vue'
export { default as Menu } from './menu.vue'
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<svg xmlns="http://www.w3.org/2000/svg" width="428.9" height="405.2" viewBox="0 0 214.4 202.6"><defs/><path fill="none" stroke="var(--va-text-primary)" stroke-linecap="round" d="M10 10h97m-97 0h97m0 0v39m0-39v39m0 0H10m97 0H10m0 0V10m0 39V10M11 58h193M11 58h193m0 0v135m0-135v135m0 0H11m193 0H11m0 0V58m0 135V58M18 62h178M18 62h178m0 0v36m0-36v36m0 0H18m178 0H18m0 0V62m0 36V62M18 106h179m-179 0h179m0 0v38m0-38v38m0 0H18m179 0H18m0 0v-38m0 38v-38M19 148h177m-177 0h177m0 0v35m0-35v35m0 0H19m177 0H19m0 0v-35m0 35v-35"/></svg>
</template>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<svg xmlns="http://www.w3.org/2000/svg" width="713.4" height="457.6" viewBox="0 0 356.7 228.8"><defs/><path fill="none" stroke="var(--va-text-primary)" stroke-linecap="round" d="M11 10c78-1 156-2 336-1M10 10h336m0 1c2 74 1 149 2 209m-1-210c1 77 1 153-1 209m0 0c-71-2-143-2-336-1m337 1H10m0-1L12 9m-1 209L10 10M20 17h316M20 17h316m0 0v22m0-22v22m0 0H20m316 0H20m0 0V17m0 22V17M20 48h94m-94 0h94m0 0v163m0-163v163m0 0H20m94 0H20m0 0V48m0 163V48M124 49h210m-210 0h210m0 0v162m0-162v162m0 0H124m210 0H124m0 0V49m0 162V49"/></svg>
</template>
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './1.5'
export * from './1.6'
export * from './1.7'
export * from './1.8'
49 changes: 46 additions & 3 deletions packages/docs/page-config/introduction/roadmap/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,32 @@ export default definePageConfig({
block.subtitle("In development"),
block.paragraph("The following features are currently being in development:"),

block.headline("[v1.7](https://github.com/epicmaxco/vuestic-ui/milestone/27)"),
block.paragraph("We still plan things to do in 1.7, but here is what we decided to do for now:"),

block.headline("v1.8"),
block.component("Roadmap", {
roadmap: [
{
title: "Color Picker",
type: "component",
image: "colorPicker",
},
{
title: "Page Layout",
type: "component",
image: "PageLayout"
},
{
title: "Menu",
type: "component",
image: "Menu"
},
{
title: "Vuestic Design Kit",
type: "other",
},
{
title: "Input redesign",
type: "component",
},
{
title: "Accessibility Improvements",
type: "other",
Expand All @@ -30,6 +46,33 @@ export default definePageConfig({

block.subtitle("Released"),

block.headline("[v1.7](https://github.com/epicmaxco/vuestic-ui/milestone/27)"),
block.paragraph("We focus on improving existing components and documentation pages."),
block.component("Roadmap", {
roadmap: [
{
title: "Form improvements",
type: "component",
},
{
title: "Accessibility Improvements",
type: "other",
},
{
title: "Docs Improvements",
type: "other",
},
{
title: "Bug fixes",
type: "other",
},
{
title: "Performance improvements",
type: "other",
},
] as RoadmapItem[],
}),

block.headline("[v1.6](https://github.com/epicmaxco/vuestic-ui/milestone/19)"),
block.paragraph("We focus on new services, components and integration with CSS frameworks."),

Expand Down
2 changes: 1 addition & 1 deletion packages/docs/page-config/introduction/roadmap/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type RoadmapItem = {
title: string;
type?: "redesign" | "component" | "service";
type?: "redesign" | "component" | "service" | "other";
link?: string;
image?: string;
};

0 comments on commit 84cf09c

Please sign in to comment.