Skip to content

Commit

Permalink
Fix importsNotUsedAsValues
Browse files Browse the repository at this point in the history
  • Loading branch information
u12206050 committed Feb 12, 2025
1 parent a480f04 commit bb4fd41
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion design-library/src/components/BccReact/BccReact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { AddReactionFillIcon, AddReactionIcon, KeyboardArrowLeftIcon } from "@bcc-code/icons-vue";
import { computed, ref } from "vue";
import BccReactEmoji from "./BccReactEmoji.vue";
import { BccReactInfo } from "./types";
import type { BccReactInfo } from "./types";
type Props = {
emojis: BccReactInfo[];
Expand Down
2 changes: 1 addition & 1 deletion design-library/src/components/BccReact/BccReactEmoji.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { ref, watch } from "vue";
import { BccReactInfo } from "./types";
import type { BccReactInfo } from "./types";
const props = defineProps<BccReactInfo>();
Expand Down
2 changes: 1 addition & 1 deletion design-library/src/components/BccTable/BccTable.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts" generic="TItem extends BccTableItem">
import { SwapVertIcon, ArrowUpwardIcon, ArrowDownwardIcon } from "@bcc-code/icons-vue";
import { computed, toRefs } from "vue";
import { BccTableColumn, BccTableItem, BccTableSortDirection } from "./types";
import type { BccTableColumn, BccTableItem, BccTableSortDirection } from "./types";
type Props = {
columns: BccTableColumn[];
Expand Down
2 changes: 1 addition & 1 deletion design-library/src/components/BccTabs/BccTabs.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { BccBadge, BccPin } from "@/index";
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from "@headlessui/vue";
import { BccTabsGroup } from "./types";
import type { BccTabsGroup } from "./types";
type Props = {
tabs: BccTabsGroup;
Expand Down
2 changes: 1 addition & 1 deletion design-library/src/components/BccTabs/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { BccPin, BccBadge } from "@/index";
import { VueComponent } from "@/types";
import type { VueComponent } from "@/types";

export type BccTabsGroup = Array<{
title: string;
Expand Down

0 comments on commit bb4fd41

Please sign in to comment.