Skip to content

Commit

Permalink
refactor: move tab groups to folders
Browse files Browse the repository at this point in the history
  • Loading branch information
caro3801 committed Sep 4, 2024
1 parent d3dc644 commit 8ae6a3d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 101 deletions.
31 changes: 2 additions & 29 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,35 +416,8 @@ declare module 'vue' {
TabEntry: typeof import('./src/components/NavigationTabs/TabEntry.vue')['default']
TabGroup: typeof import('./src/components/TabGroup/TabGroup.vue')['default']
TabGroupEntry: typeof import('./src/components/TabGroup/TabGroupEntry.vue')['default']
TabGroupNavigation: typeof import('./src/components/TabGroup/TabGroupNavigation.vue')['default']
TabGroupNavigationEntry: typeof import('./src/components/TabGroup/TabGroupNavigationEntry.vue')['default']
TabGroupTitle: typeof import('./src/components/TabGroup/TabGroupTitle.vue')['default']
EntityPopover: typeof import('./src/components/EntityPopover/EntityPopover.vue')['default']
EntityPopoverInfo: typeof import('./src/components/EntityPopover/EntityPopoverInfo.vue')['default']
EntityPopoverMentionExcerpt: typeof import('./src/components/EntityPopover/EntityPopoverMentionExcerpt.vue')['default']
EntityPopoverMentionOccurrences: typeof import('./src/components/EntityPopover/EntityPopoverMentionOccurrences.vue')['default']
EntityPopoverMentions: typeof import('./src/components/EntityPopover/EntityPopoverMentions.vue')['default']
EntityPopoverTabGroup: typeof import('./src/components/EntityPopover/EntityPopoverTabGroup.vue')['default']
EntityPopoverTabs: typeof import('./src/components/EntityPopover/EntityPopoverTabs.vue')['default']
EntityButton: typeof import('./src/components/Entity/EntityButton.vue')['default']
EntityOccurrences: typeof import('./src/components/Entity/EntityOccurrences.vue')['default']
EntityPopover: typeof import('./src/components/Entity/EntityPopover/EntityPopover.vue')['default']
EntityPopoverInfo: typeof import('./src/components/Entity/EntityPopover/EntityPopoverInfo.vue')['default']
EntityPopoverMentionExcerpt: typeof import('./src/components/Entity/EntityPopover/EntityPopoverMentionExcerpt.vue')['default']
EntityPopoverMentionOccurrences: typeof import('./src/components/Entity/EntityPopover/EntityPopoverMentionOccurrences.vue')['default']
EntityPopoverMentions: typeof import('./src/components/Entity/EntityPopover/EntityPopoverMentions.vue')['default']
EntityPopoverTabs: typeof import('./src/components/Entity/EntityPopover/EntityPopoverTabs.vue')['default']
EntitySection: typeof import('./src/components/Entity/EntitySection/EntitySection.vue')['default']
EntitySectionActions: typeof import('./src/components/Entity/EntitySection/EntitySectionActions.vue')['default']
EntitySectionActionsEntry: typeof import('./src/components/Entity/EntitySection/EntitySectionActionsEntry.vue')['default']
EntitySectionList: typeof import('./src/components/Entity/EntitySection/EntitySectionList.vue')['default']
EntitySectionListEntry: typeof import('./src/components/Entity/EntitySection/EntitySectionListEntry.vue')['default']
EntitySectionMore: typeof import('./src/components/Entity/EntitySection/EntitySectionMore.vue')['default']
EntitySectionTitle: typeof import('./src/components/Entity/EntitySection/EntitySectionTitle.vue')['default']
TabGroup: typeof import('./src/components/TabGroup/TabGroup.vue')['default']
TabGroupEntry: typeof import('./src/components/TabGroup/TabGroupEntry.vue')['default']
TabGroupNavigation: typeof import('./src/components/TabGroup/TabGroupNavigation.vue')['default']
TabGroupNavigationEntry: typeof import('./src/components/TabGroup/TabGroupNavigationEntry.vue')['default']
TabGroupNavigation: typeof import('./src/components/TabGroup/TabGroupNavigation/TabGroupNavigation.vue')['default']
TabGroupNavigationEntry: typeof import('./src/components/TabGroup/TabGroupNavigation/TabGroupNavigationEntry.vue')['default']
TabGroupTitle: typeof import('./src/components/TabGroup/TabGroupTitle.vue')['default']
TaskItemStatus: typeof import('./src/components/TaskItemStatus.vue')['default']
TasksList: typeof import('./src/components/TasksList.vue')['default']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { useI18n } from 'vue-i18n'
import EntityPopoverMentions from './EntityPopoverMentions'
import EntityPopoverInfo from './EntityPopoverInfo'
import TabGroup from '@/components/TabGroup/TabGroup'
import TabGroupEntry from '@/components/TabGroup/TabGroupEntry'
const props = defineProps({
Expand Down
46 changes: 0 additions & 46 deletions src/components/Entity/EntityPopover/EntityPopoverTabs.vue

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import EntityPopoverTabGroup from '@/components/EntityPopover/EntityPopoverTabGroup'
import EntityPopoverTabGroup from '@/components/Entity/EntityPopover/EntityPopoverTabGroup'

export default {
title: 'Components/EntityPopover/EntityPopoverTabGroup',
title: 'Components/Entity/EntityPopover/EntityPopoverTabGroup',
component: EntityPopoverTabGroup,
tags: ['autodocs'],
args: {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import TabGroup from '@/components/TabGroup/TabGroup'
import TabGroupEntry from '@/components/TabGroup/TabGroupEntry'

export default {
title: 'Components/TabGroupNavigation/TabGroup',
title: 'Components/TabGroup/TabGroup',
tags: ['autodocs'],
component: TabGroup,

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { vueRouter } from 'storybook-vue3-router'

import TabGroupNavigation from '@/components/TabGroup/TabGroupNavigation'
import TabGroupNavigationEntry from '@/components/TabGroup/TabGroupNavigationEntry'
import TabGroupNavigation from '@/components/TabGroup/TabGroupNavigation/TabGroupNavigation'
import TabGroupNavigationEntry from '@/components/TabGroup/TabGroupNavigation/TabGroupNavigationEntry'

const routes = [
{ path: '/', name: 'general' },
Expand All @@ -13,7 +13,7 @@ const routes = [
]

export default {
title: 'Components/TabGroupNavigation/TabGroupNavigation',
title: 'Components/TabGroup/TabGroupNavigation/TabGroupNavigation',
tags: ['autodocs'],
decorators: [vueRouter(routes)],
component: TabGroupNavigation,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import TabGroupNavigationEntry from '@/components/TabGroup/TabGroupNavigationEntry'
import TabGroupNavigationEntry from '@/components/TabGroup/TabGroupNavigation/TabGroupNavigationEntry'

export default {
title: 'Components/TabGroupNavigation/TabGroupNavigationEntry',
title: 'Components/TabGroup/TabGroupNavigation/TabGroupNavigationEntry',
tags: ['autodocs'],
component: TabGroupNavigationEntry,
args: {
Expand Down

0 comments on commit 8ae6a3d

Please sign in to comment.