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

@@ -1,6 +1,5 @@
<script lang="ts" setup>
import type { DrawerRootEmits, DrawerRootProps } from "vaul-vue";
import { DrawerRoot } from "vaul-vue";
import { useForwardPropsEmits } from "radix-vue";
const props = withDefaults(defineProps<DrawerRootProps>(), {

View File

@@ -1,10 +1,7 @@
<script lang="ts" setup>
import { DrawerContent, DrawerPortal } from "vaul-vue";
import type { DialogContentEmits, DialogContentProps } from "radix-vue";
import { useForwardPropsEmits } from "radix-vue";
import type { HtmlHTMLAttributes } from "vue";
import DrawerOverlay from "./DrawerOverlay.vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DialogContentProps & { class?: HtmlHTMLAttributes["class"] }

View File

@@ -1,8 +1,6 @@
<script lang="ts" setup>
import type { DrawerDescriptionProps } from "vaul-vue";
import { DrawerDescription } from "vaul-vue";
import { type HtmlHTMLAttributes, computed } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DrawerDescriptionProps & { class?: HtmlHTMLAttributes["class"] }

View File

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

View File

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

View File

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

View File

@@ -1,8 +1,6 @@
<script lang="ts" setup>
import type { DrawerTitleProps } from "vaul-vue";
import { DrawerTitle } from "vaul-vue";
import { type HtmlHTMLAttributes, computed } from "vue";
import { cn } from "@/lib/utils";
const props = defineProps<
DrawerTitleProps & { class?: HtmlHTMLAttributes["class"] }