diff --git a/src/lib/components/ui/card/card-title.svelte b/src/lib/components/ui/card/card-title.svelte
index 099ae93..90d0da9 100644
--- a/src/lib/components/ui/card/card-title.svelte
+++ b/src/lib/components/ui/card/card-title.svelte
@@ -1,20 +1,20 @@
diff --git a/src/lib/components/ui/card/card.svelte b/src/lib/components/ui/card/card.svelte
index 43812d1..8f8a21e 100644
--- a/src/lib/components/ui/card/card.svelte
+++ b/src/lib/components/ui/card/card.svelte
@@ -1,16 +1,16 @@
- import { Popover as PopoverPrimitive } from "bits-ui";
- import { cn, flyAndScale } from "$lib/utils.js";
+ import { Popover as PopoverPrimitive } from 'bits-ui';
+ import { cn, flyAndScale } from '$lib/utils.js';
type $$Props = PopoverPrimitive.ContentProps;
- let className: $$Props["class"] = undefined;
- export let transition: $$Props["transition"] = flyAndScale;
- export let transitionConfig: $$Props["transitionConfig"] = undefined;
- export let align: $$Props["align"] = "center";
- export let sideOffset: $$Props["sideOffset"] = 4;
+ let className: $$Props['class'] = undefined;
+ export let transition: $$Props['transition'] = flyAndScale;
+ export let transitionConfig: $$Props['transitionConfig'] = undefined;
+ export let align: $$Props['align'] = 'center';
+ export let sideOffset: $$Props['sideOffset'] = 4;
export { className as class };
@@ -19,7 +19,7 @@
{sideOffset}
{...$$restProps}
class={cn(
- "z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none",
+ 'z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none',
className
)}
>
diff --git a/src/lib/components/ui/scroll-area/index.ts b/src/lib/components/ui/scroll-area/index.ts
index e86a25b..d546806 100644
--- a/src/lib/components/ui/scroll-area/index.ts
+++ b/src/lib/components/ui/scroll-area/index.ts
@@ -1,10 +1,10 @@
-import Scrollbar from "./scroll-area-scrollbar.svelte";
-import Root from "./scroll-area.svelte";
+import Scrollbar from './scroll-area-scrollbar.svelte';
+import Root from './scroll-area.svelte';
export {
Root,
Scrollbar,
//,
Root as ScrollArea,
- Scrollbar as ScrollAreaScrollbar,
+ Scrollbar as ScrollAreaScrollbar
};
diff --git a/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte b/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte
index a97f3bb..c8068cd 100644
--- a/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte
+++ b/src/lib/components/ui/scroll-area/scroll-area-scrollbar.svelte
@@ -1,27 +1,27 @@
diff --git a/src/lib/components/ui/scroll-area/scroll-area.svelte b/src/lib/components/ui/scroll-area/scroll-area.svelte
index e8e368c..e99a152 100644
--- a/src/lib/components/ui/scroll-area/scroll-area.svelte
+++ b/src/lib/components/ui/scroll-area/scroll-area.svelte
@@ -1,31 +1,31 @@
-
+
- {#if orientation === "vertical" || orientation === "both"}
+ {#if orientation === 'vertical' || orientation === 'both'}
{/if}
- {#if orientation === "horizontal" || orientation === "both"}
+ {#if orientation === 'horizontal' || orientation === 'both'}
{/if}
diff --git a/src/lib/components/ui/separator/index.ts b/src/lib/components/ui/separator/index.ts
index 82442d2..768efac 100644
--- a/src/lib/components/ui/separator/index.ts
+++ b/src/lib/components/ui/separator/index.ts
@@ -1,7 +1,7 @@
-import Root from "./separator.svelte";
+import Root from './separator.svelte';
export {
Root,
//
- Root as Separator,
+ Root as Separator
};
diff --git a/src/lib/components/ui/separator/separator.svelte b/src/lib/components/ui/separator/separator.svelte
index be3843a..3160e6a 100644
--- a/src/lib/components/ui/separator/separator.svelte
+++ b/src/lib/components/ui/separator/separator.svelte
@@ -1,19 +1,19 @@
- import { Toaster as Sonner, type ToasterProps as SonnerProps } from "svelte-sonner";
- import { mode } from "mode-watcher";
+ import { Toaster as Sonner, type ToasterProps as SonnerProps } from 'svelte-sonner';
+ import { mode } from 'mode-watcher';
type $$Props = SonnerProps;
@@ -10,11 +10,12 @@
class="toaster group"
toastOptions={{
classes: {
- toast: "group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
- description: "group-[.toast]:text-muted-foreground",
- actionButton: "group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",
- cancelButton: "group-[.toast]:bg-muted group-[.toast]:text-muted-foreground",
- },
+ toast:
+ 'group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg',
+ description: 'group-[.toast]:text-muted-foreground',
+ actionButton: 'group-[.toast]:bg-primary group-[.toast]:text-primary-foreground',
+ cancelButton: 'group-[.toast]:bg-muted group-[.toast]:text-muted-foreground'
+ }
}}
{...$$restProps}
/>
diff --git a/src/lib/components/ui/tooltip/index.ts b/src/lib/components/ui/tooltip/index.ts
index 7d0444d..243cd02 100644
--- a/src/lib/components/ui/tooltip/index.ts
+++ b/src/lib/components/ui/tooltip/index.ts
@@ -1,5 +1,5 @@
-import { Tooltip as TooltipPrimitive } from "bits-ui";
-import Content from "./tooltip-content.svelte";
+import { Tooltip as TooltipPrimitive } from 'bits-ui';
+import Content from './tooltip-content.svelte';
const Root = TooltipPrimitive.Root;
const Trigger = TooltipPrimitive.Trigger;
@@ -11,5 +11,5 @@ export {
//
Root as Tooltip,
Content as TooltipContent,
- Trigger as TooltipTrigger,
+ Trigger as TooltipTrigger
};
diff --git a/src/lib/components/ui/tooltip/tooltip-content.svelte b/src/lib/components/ui/tooltip/tooltip-content.svelte
index d36d8e8..856b8e7 100644
--- a/src/lib/components/ui/tooltip/tooltip-content.svelte
+++ b/src/lib/components/ui/tooltip/tooltip-content.svelte
@@ -1,15 +1,15 @@
@@ -19,7 +19,7 @@
{transitionConfig}
{sideOffset}
class={cn(
- "z-50 overflow-hidden rounded-md bg-primary px-3 py-1.5 text-xs text-primary-foreground",
+ 'z-50 overflow-hidden rounded-md bg-primary px-3 py-1.5 text-xs text-primary-foreground',
className
)}
{...$$restProps}