-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
2854300
commit 2fba941
Showing
17 changed files
with
83 additions
and
77 deletions.
There are no files selected for viewing
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
31 changes: 0 additions & 31 deletions
31
src/web/src/components/breadcrumbs/BatchBreadcrumbItem.vue
This file was deleted.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
src/web/src/components/breadcrumbs/DescriptionBreadcrumbItem.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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<script setup lang="ts"> | ||
import { NIcon, NBreadcrumbItem } from 'naive-ui' | ||
import { ExtractIcon } from '../icons' | ||
import { DescriptionIcon } from '../icons' | ||
import { RouterLink } from 'vue-router' | ||
</script> | ||
|
||
<template> | ||
<n-breadcrumb-item> | ||
<router-link to="/description"> | ||
<router-link to="/apis"> | ||
<n-icon> | ||
<ExtractIcon /> | ||
<DescriptionIcon /> | ||
</n-icon> | ||
Description | ||
APIs | ||
</router-link> | ||
</n-breadcrumb-item> | ||
</template> |
8 changes: 4 additions & 4 deletions
8
src/web/src/components/breadcrumbs/DifferenceBreadcrumbItem.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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<script setup lang="ts"> | ||
import { NIcon, NBreadcrumbItem } from 'naive-ui' | ||
import { DiffIcon } from '../icons' | ||
import { DifferenceIcon } from '../icons' | ||
import { RouterLink } from 'vue-router' | ||
</script> | ||
|
||
<template> | ||
<n-breadcrumb-item> | ||
<router-link to="/difference"> | ||
<router-link to="/changes"> | ||
<n-icon> | ||
<DiffIcon /> | ||
<DifferenceIcon /> | ||
</n-icon> | ||
Difference | ||
Changes | ||
</router-link> | ||
</n-breadcrumb-item> | ||
</template> |
8 changes: 4 additions & 4 deletions
8
src/web/src/components/breadcrumbs/DistributionBreadcrumbItem.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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<script setup lang="ts"> | ||
import { NIcon, NBreadcrumbItem } from 'naive-ui' | ||
import { PreprocessIcon } from '../icons' | ||
import { DistributionIcon } from '../icons' | ||
import { RouterLink } from 'vue-router' | ||
</script> | ||
|
||
<template> | ||
<n-breadcrumb-item> | ||
<router-link to="/distribution"> | ||
<router-link to="/distributions"> | ||
<n-icon> | ||
<PreprocessIcon /> | ||
<DistributionIcon /> | ||
</n-icon> | ||
Distribution | ||
Distributions | ||
</router-link> | ||
</n-breadcrumb-item> | ||
</template> |
16 changes: 16 additions & 0 deletions
16
src/web/src/components/breadcrumbs/PackageBreadcrumbItem.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,16 @@ | ||
<script setup lang="ts"> | ||
import { NIcon, NBreadcrumbItem } from 'naive-ui' | ||
import { PackageIcon } from '../icons' | ||
import { RouterLink } from 'vue-router' | ||
</script> | ||
|
||
<template> | ||
<n-breadcrumb-item> | ||
<router-link to="/packages"> | ||
<n-icon> | ||
<PackageIcon /> | ||
</n-icon> | ||
Packages | ||
</router-link> | ||
</n-breadcrumb-item> | ||
</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
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
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
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
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
Oops, something went wrong.