52 lines
1.5 KiB
Svelte
52 lines
1.5 KiB
Svelte
<script lang="ts">
|
|
import type { HTMLInputAttributes } from 'svelte/elements';
|
|
|
|
import { cn } from '$lib';
|
|
|
|
type FormInputEvent<T extends Event = Event> = T & {
|
|
currentTarget: EventTarget & HTMLInputElement;
|
|
};
|
|
|
|
type InputEvents = {
|
|
blur: FormInputEvent<FocusEvent>;
|
|
change: FormInputEvent<Event>;
|
|
click: FormInputEvent<MouseEvent>;
|
|
focus: FormInputEvent<FocusEvent>;
|
|
keydown: FormInputEvent<KeyboardEvent>;
|
|
keypress: FormInputEvent<KeyboardEvent>;
|
|
keyup: FormInputEvent<KeyboardEvent>;
|
|
mouseover: FormInputEvent<MouseEvent>;
|
|
mouseenter: FormInputEvent<MouseEvent>;
|
|
mouseleave: FormInputEvent<MouseEvent>;
|
|
paste: FormInputEvent<ClipboardEvent>;
|
|
input: FormInputEvent<InputEvent>;
|
|
};
|
|
|
|
type $$Props = HTMLInputAttributes;
|
|
type $$Events = InputEvents;
|
|
|
|
let className: $$Props['class'] = undefined;
|
|
export let value: $$Props['value'] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<input
|
|
class={cn(
|
|
'flex h-10 w-full rounded-md border border-primary-600 bg-highlight-primary px-3 py-2 text-sm ring-offset-highlight-primary file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted focus:bg-primary-800 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-brand focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
|
|
className
|
|
)}
|
|
bind:value
|
|
on:blur
|
|
on:change
|
|
on:click
|
|
on:focus
|
|
on:keydown
|
|
on:keypress
|
|
on:keyup
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
on:paste
|
|
on:input
|
|
{...$$restProps}
|
|
/>
|