1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
import { TextField as Kobalte } from "@kobalte/core/text-field"
import { Show, splitProps } from "solid-js"
import type { ComponentProps } from "solid-js"
export interface InputProps
extends ComponentProps<typeof Kobalte.Input>,
Partial<
Pick<
ComponentProps<typeof Kobalte>,
| "name"
| "defaultValue"
| "value"
| "onChange"
| "onKeyDown"
| "validationState"
| "required"
| "disabled"
| "readOnly"
>
> {
label?: string
hideLabel?: boolean
hidden?: boolean
description?: string
error?: string
variant?: "normal" | "ghost"
}
export function Input(props: InputProps) {
const [local, others] = splitProps(props, [
"name",
"defaultValue",
"value",
"onChange",
"onKeyDown",
"validationState",
"required",
"disabled",
"readOnly",
"class",
"label",
"hidden",
"hideLabel",
"description",
"error",
"variant",
])
return (
<Kobalte
data-component="input"
data-variant={local.variant || "normal"}
name={local.name}
defaultValue={local.defaultValue}
value={local.value}
onChange={local.onChange}
onKeyDown={local.onKeyDown}
required={local.required}
disabled={local.disabled}
readOnly={local.readOnly}
style={{ height: local.hidden ? 0 : undefined }}
validationState={local.validationState}
>
<Show when={local.label}>
<Kobalte.Label data-slot="input-label" classList={{ "sr-only": local.hideLabel }}>
{local.label}
</Kobalte.Label>
</Show>
<Kobalte.Input {...others} data-slot="input-input" class={local.class} />
<Show when={local.description}>
<Kobalte.Description data-slot="input-description">{local.description}</Kobalte.Description>
</Show>
<Kobalte.ErrorMessage data-slot="input-error">{local.error}</Kobalte.ErrorMessage>
</Kobalte>
)
}
|