styled raw & text input: include all props & add disabled

This commit is contained in:
Elijah Duffy
2025-07-07 17:35:39 -07:00
parent 45ca099570
commit 48e456c3a7
3 changed files with 16 additions and 25 deletions

View File

@@ -8,7 +8,7 @@
import { generateIdentifier } from './util';
import { onMount } from 'svelte';
type $Props = Omit<HTMLInputAttributes, 'name' | 'value' | 'class'> & {
type $Props = Omit<HTMLInputAttributes, 'name' | 'value'> & {
name?: string;
value?: string;
validate?: ValidatorOptions;
@@ -16,7 +16,6 @@
use?: (node: HTMLInputElement) => void;
ref?: HTMLInputElement | null;
onvalidate?: (e: InputValidatorEvent) => void;
class?: ClassValue | null | undefined;
};
let {
@@ -25,6 +24,7 @@
value = $bindable(''),
placeholder,
validate: validateOpts,
disabled = false,
focus: focusOnMount = false,
use,
ref = $bindable<HTMLInputElement | null>(null),
@@ -68,8 +68,11 @@
'dark:text-sui-background dark:placeholder:text-sui-background/60 dark:sm:bg-slate-800',
'ring-sui-primary ring-offset-1 placeholder-shown:text-ellipsis focus:ring-2',
!valid && 'border-red-500!',
disabled &&
'border-sui-accent/20 text-sui-text/60 dark:text-sui-background/60 cursor-not-allowed',
classValue
]}
{disabled}
use:validate={validateOpts}
use:conditionalUse
onvalidate={(e) => {

View File

@@ -1,38 +1,27 @@
<script lang="ts">
import Label from './Label.svelte';
import StyledRawInput from './StyledRawInput.svelte';
import { type ValidatorOptions } from '@svelte-toolkit/validate';
import { generateIdentifier } from './util';
import type { ClassValue } from 'svelte/elements';
import type { ComponentProps } from 'svelte';
interface Props {
interface Props extends ComponentProps<typeof StyledRawInput> {
id?: string;
name?: string;
label?: string;
value?: string;
placeholder?: string;
type?: HTMLInputElement['type'];
validate?: ValidatorOptions;
invalidMessage?: string;
focus?: boolean;
use?: (node: HTMLInputElement) => void;
ref?: HTMLInputElement | null;
class?: ClassValue | null | undefined;
}
let {
id = generateIdentifier('text-input'),
name,
label,
value = $bindable(''),
placeholder,
type,
validate: validateOpts,
invalidMessage = 'Field is required',
focus: focusOnMount = false,
use,
ref = $bindable<HTMLInputElement | null>(null),
class: classValue
class: classValue,
...others
}: Props = $props();
let valid: boolean = $state(true);
@@ -48,21 +37,16 @@
{/if}
<StyledRawInput
{placeholder}
{id}
{name}
{type}
bind:value
bind:ref
validate={validateOpts}
onvalidate={(e) => {
valid = e.detail.valid;
}}
focus={focusOnMount}
{use}
{...others}
/>
{#if validateOpts}
{#if others.validate}
<div class={['opacity-0 transition-opacity', !valid && 'opacity-100']}>
<Label for={id} error>
{invalidMessage}

View File

@@ -150,12 +150,16 @@
</div>
<div class="component">
<p class="title">Styled Raw Input, Text Input</p>
<p class="title">Styled Raw Input, Text Input, Disabled Input</p>
<InputGroup>
<StyledRawInput placeholder="Type here..." class="basis-1/2" />
<TextInput label="Write something here" placeholder="Enter text..." class="basis-1/2" />
</InputGroup>
<InputGroup>
<TextInput label="Disabled input" placeholder="You can't enter text" disabled />
</InputGroup>
</div>
<div class="component">