Skip to content

Commit

Permalink
feat(vue-flow,components): export MiniMapNode component
Browse files Browse the repository at this point in the history
  • Loading branch information
bcakmakoglu committed Jun 15, 2022
1 parent 33cd638 commit 06420ac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
19 changes: 12 additions & 7 deletions docs/src/.vuepress/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@ const typedocSidebarEntries = (): SidebarConfigArray => {
return { text: capitalize(module), children }
})

return [...sidebarItems]
return [
{
text: 'Modules',
link: '/typedocs/',
children: [
...sidebarItems,
],
}
]
}

export default {
Expand Down Expand Up @@ -58,19 +66,16 @@ export default {
children: [
'/guide/utils/graph',
'/guide/utils/instance',
'/guide/utils/edge'
'/guide/utils/edge',
]
},
{
text: 'Additional Components',
children: [
'/guide/components/background',
'/guide/components/minimap',
{
text: 'Controls',
link: '/guide/components/controls',
children: ['/guide/components/control-button']
},
'/guide/components/controls',
'/guide/components/control-button',
],
},
],
Expand Down
1 change: 1 addition & 0 deletions packages/vue-flow/src/additional-components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export { default as MiniMap } from './MiniMap/MiniMap.vue'
export { default as MiniMapNode } from './MiniMap/MiniMapNode'
export { default as Controls } from './Controls/Controls.vue'
export { default as ControlButton } from './Controls/ControlButton.vue'
export { default as Background } from './Background/Background.vue'

0 comments on commit 06420ac

Please sign in to comment.