add frontend code for selecting/setting the library

This commit is contained in:
maxDorninger
2025-07-16 14:31:59 +02:00
parent b18b11c682
commit 14942f9653
17 changed files with 441 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
<script lang="ts">
import { Command as CommandPrimitive } from 'bits-ui';
import Search from '@lucide/svelte/icons/search';
import { cn } from '$lib/utils.js';
let {
ref = $bindable(null),
class: className,
value = $bindable(''),
...restProps
}: CommandPrimitive.InputProps = $props();
</script>
<div class="flex items-center border-b px-3" data-command-input-wrapper="">
<Search class="mr-2 size-4 shrink-0 opacity-50" />
<CommandPrimitive.Input
class={cn(
'flex h-10 w-full rounded-md bg-transparent py-3 text-base outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50 md:text-sm',
className
)}
bind:ref
bind:value
{...restProps}
/>
</div>