From f5b3d83731f7e3743d931b4206391f1fc44eee6a Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sat, 3 Feb 2024 19:56:34 +0100 Subject: [PATCH] chore(docs): remove `empty` example --- docs/examples/empty/App.vue | 33 --------------------------------- docs/examples/empty/index.ts | 1 - docs/examples/index.ts | 4 ---- docs/src/.vitepress/config.mts | 1 - 4 files changed, 39 deletions(-) delete mode 100644 docs/examples/empty/App.vue delete mode 100644 docs/examples/empty/index.ts diff --git a/docs/examples/empty/App.vue b/docs/examples/empty/App.vue deleted file mode 100644 index 03a61f72..00000000 --- a/docs/examples/empty/App.vue +++ /dev/null @@ -1,33 +0,0 @@ - - - diff --git a/docs/examples/empty/index.ts b/docs/examples/empty/index.ts deleted file mode 100644 index 74eb2379..00000000 --- a/docs/examples/empty/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { default as EmptyApp } from './App.vue?raw' diff --git a/docs/examples/index.ts b/docs/examples/index.ts index 3498241c..f7e84949 100644 --- a/docs/examples/index.ts +++ b/docs/examples/index.ts @@ -9,7 +9,6 @@ import { UpdateNodeApp, UpdateNodeCSS } from './update-node' import { ValidationApp, ValidationCSS, ValidationCustomInput, ValidationCustomNode } from './validation' import { SaveRestoreApp, SaveRestoreCSS, SaveRestoreControls } from './save-restore' import { DndApp, DndBackground, DndCSS, DndScript, DndSidebar } from './dnd' -import { EmptyApp } from './empty' import { HiddenApp } from './hidden' import { InteractionApp, InteractionCSS, InteractionControls } from './interaction' import { MultiApp, MultiCSS, MultiFlow } from './multi' @@ -79,9 +78,6 @@ export const exampleImports = { 'style.css': DndCSS, 'useDnD.js': DndScript, }, - empty: { - 'App.vue': EmptyApp, - }, hidden: { 'App.vue': HiddenApp, }, diff --git a/docs/src/.vitepress/config.mts b/docs/src/.vitepress/config.mts index 1be4c8bf..8871f696 100644 --- a/docs/src/.vitepress/config.mts +++ b/docs/src/.vitepress/config.mts @@ -200,7 +200,6 @@ export default defineConfigWithTheme({ { text: 'Basic', link: '/examples/' }, { text: 'Save & Restore', link: '/examples/save' }, { text: 'Drag & Drop', link: '/examples/dnd' }, - { text: 'Empty Flow', link: '/examples/empty' }, { text: 'Hide/Show', link: '/examples/hidden' }, { text: 'Horizontal Flow', link: '/examples/horizontal' }, { text: 'Interactions', link: '/examples/interaction' },