Spaces:
Running
Running
| <script lang="ts"> | |
| import type { HTMLInputAttributes, HTMLInputTypeAttribute } from 'svelte/elements'; | |
| import { cn, type WithElementRef } from '$lib/utils.js'; | |
| type InputType = Exclude<HTMLInputTypeAttribute, 'file'>; | |
| type Props = WithElementRef< | |
| Omit<HTMLInputAttributes, 'type'> & | |
| ({ type: 'file'; files?: FileList } | { type?: InputType; files?: undefined }) | |
| >; | |
| let { | |
| ref = $bindable(null), | |
| value = $bindable(), | |
| type, | |
| files = $bindable(), | |
| class: className, | |
| 'data-slot': dataSlot = 'input', | |
| ...restProps | |
| }: Props = $props(); | |
| </script> | |
| {#if type === 'file'} | |
| <input | |
| bind:this={ref} | |
| data-slot={dataSlot} | |
| class={cn( | |
| 'bg-input/20 dark:bg-input/30 border-input focus-visible:border-ring focus-visible:ring-ring/30 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 file:text-foreground placeholder:text-muted-foreground h-7 w-full min-w-0 rounded-md border px-2 py-0.5 text-sm transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-xs/relaxed file:font-medium focus-visible:ring-2 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-2 md:text-xs/relaxed', | |
| className | |
| )} | |
| type="file" | |
| bind:files | |
| bind:value | |
| {...restProps} | |
| /> | |
| {:else} | |
| <input | |
| bind:this={ref} | |
| data-slot={dataSlot} | |
| class={cn( | |
| 'bg-input/20 dark:bg-input/30 border-input focus-visible:border-ring focus-visible:ring-ring/30 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 file:text-foreground placeholder:text-muted-foreground h-7 w-full min-w-0 rounded-md border px-2 py-0.5 text-sm transition-colors outline-none file:inline-flex file:h-6 file:border-0 file:bg-transparent file:text-xs/relaxed file:font-medium focus-visible:ring-2 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:ring-2 md:text-xs/relaxed', | |
| className | |
| )} | |
| {type} | |
| bind:value | |
| {...restProps} | |
| /> | |
| {/if} | |