-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
packages/docs/page-config/introduction/roadmap/images/1.8/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
3 changes: 3 additions & 0 deletions
3
packages/docs/page-config/introduction/roadmap/images/1.8/menu.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
3 changes: 3 additions & 0 deletions
3
packages/docs/page-config/introduction/roadmap/images/1.8/pageLayout.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; |