chore: cleanup

This commit is contained in:
Bereket Engida
2025-01-06 14:30:39 +03:00
parent 753f930e88
commit 9f2e45b8c7
525 changed files with 218 additions and 1357 deletions

View File

@@ -2,7 +2,6 @@
import {
type AlertDialogEmits,
type AlertDialogProps,
AlertDialogRoot,
useForwardPropsEmits,
} from "radix-vue";

View File

@@ -1,8 +1,6 @@
<script setup lang="ts">
import { type HTMLAttributes, computed } from "vue";
import { AlertDialogAction, type AlertDialogActionProps } from "radix-vue";
import { cn } from "@/lib/utils";
import { buttonVariants } from "@/components/ui/button";
import { type AlertDialogActionProps } from "radix-vue";
const props = defineProps<
AlertDialogActionProps & { class?: HTMLAttributes["class"] }

View File

@@ -1,8 +1,6 @@
<script setup lang="ts">
import { type HTMLAttributes, computed } from "vue";
import { AlertDialogCancel, type AlertDialogCancelProps } from "radix-vue";
import { cn } from "@/lib/utils";
import { buttonVariants } from "@/components/ui/button";
import { type AlertDialogCancelProps } from "radix-vue";
const props = defineProps<
AlertDialogCancelProps & { class?: HTMLAttributes["class"] }

View File

@@ -1,14 +1,10 @@
<script setup lang="ts">
import { type HTMLAttributes, computed } from "vue";
import {
AlertDialogContent,
type AlertDialogContentEmits,
type AlertDialogContentProps,
AlertDialogOverlay,
AlertDialogPortal,
useForwardPropsEmits,
} from "radix-vue";
import { cn } from "@/lib/utils";
const props = defineProps<
AlertDialogContentProps & { class?: HTMLAttributes["class"] }

View File

@@ -1,10 +1,6 @@
<script setup lang="ts">
import { type HTMLAttributes, computed } from "vue";
import {
AlertDialogDescription,
type AlertDialogDescriptionProps,
} from "radix-vue";
import { cn } from "@/lib/utils";
import { type AlertDialogDescriptionProps } from "radix-vue";
const props = defineProps<
AlertDialogDescriptionProps & { class?: HTMLAttributes["class"] }

View File

@@ -1,6 +1,5 @@
<script setup lang="ts">
import type { HTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<{
class?: HTMLAttributes["class"];

View File

@@ -1,6 +1,5 @@
<script setup lang="ts">
import type { HTMLAttributes } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<{
class?: HTMLAttributes["class"];

View File

@@ -1,7 +1,6 @@
<script setup lang="ts">
import { type HTMLAttributes, computed } from "vue";
import { AlertDialogTitle, type AlertDialogTitleProps } from "radix-vue";
import { cn } from "@/lib/utils";
import { type AlertDialogTitleProps } from "radix-vue";
const props = defineProps<
AlertDialogTitleProps & { class?: HTMLAttributes["class"] }

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import { AlertDialogTrigger, type AlertDialogTriggerProps } from "radix-vue";
import { type AlertDialogTriggerProps } from "radix-vue";
const props = defineProps<AlertDialogTriggerProps>();
</script>