fix deps, add tailwind base styles

This commit is contained in:
Elijah Duffy
2025-07-01 12:58:25 -07:00
parent c3eee453c4
commit c8038cfa1f
13 changed files with 3071 additions and 16 deletions

View File

@@ -1,6 +1,10 @@
<script lang="ts">
import type { HTMLInputAttributes } from 'svelte/elements';
import { validate, type InputValidatorEvent, type ValidatorOptions } from '@repo/validate';
import {
validate,
type InputValidatorEvent,
type ValidatorOptions
} from '@svelte-toolkit/validate';
type $Props = Omit<HTMLInputAttributes, 'name' | 'value'> & {
name: string;