From a99c620b18a85ab82eb862bd182d23c92c8f935a Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Wed, 7 Feb 2024 22:23:38 +0100 Subject: [PATCH] chore(docs): reorder menu items --- docs/src/.vitepress/config.mts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/.vitepress/config.mts b/docs/src/.vitepress/config.mts index 9d9523cc..a24c9397 100644 --- a/docs/src/.vitepress/config.mts +++ b/docs/src/.vitepress/config.mts @@ -198,20 +198,20 @@ export default defineConfigWithTheme({ ], '/examples/': [ { - text: 'General Examples', + text: 'General', collapsed: false, items: [ { text: 'Basic', link: '/examples/' }, - { text: 'Save & Restore', link: '/examples/save' }, - { text: 'Drag & Drop', link: '/examples/dnd' }, - { text: 'Hide/Show', link: '/examples/hidden' }, { text: 'Layouting', link: '/examples/layout' }, + { text: 'Drag & Drop', link: '/examples/dnd' }, { text: 'Interactions', link: '/examples/interaction' }, + { text: 'Save & Restore', link: '/examples/save' }, + { text: 'Hide/Show', link: '/examples/hidden' }, { text: 'Intersection', link: '/examples/intersection' }, - { text: 'Teleport', link: '/examples/teleport' }, - { text: 'Transition', link: '/examples/transition' }, - { text: 'Multiple Flows', link: '/examples/multi' }, + { text: 'Multiple', link: '/examples/multi' }, { text: 'Pinia', link: '/examples/pinia' }, + { text: 'Transition', link: '/examples/transition' }, + { text: 'Teleport', link: '/examples/teleport' }, { text: 'Stress', link: '/examples/stress' }, ], },