HTMLSelectAttributes Type — svelte Architecture
Architecture documentation for the HTMLSelectAttributes type/interface in elements.d.ts from the svelte codebase.
Entity Profile
Dependency Diagram
graph TD a9da2bdd_6b99_519a_e7ee_3ae7fb07f990["HTMLSelectAttributes"] 700a5e5a_a1f3_b441_73c5_83af6017e3aa["elements.d.ts"] a9da2bdd_6b99_519a_e7ee_3ae7fb07f990 -->|defined in| 700a5e5a_a1f3_b441_73c5_83af6017e3aa style a9da2bdd_6b99_519a_e7ee_3ae7fb07f990 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/svelte/elements.d.ts lines 1346–1360
export interface HTMLSelectAttributes extends HTMLAttributes<HTMLSelectElement> {
autocomplete?: FullAutoFill | undefined | null;
disabled?: boolean | undefined | null;
form?: string | undefined | null;
multiple?: boolean | undefined | null;
name?: string | undefined | null;
required?: boolean | undefined | null;
size?: number | undefined | null;
value?: any;
'on:change'?: ChangeEventHandler<HTMLSelectElement> | undefined | null;
onchange?: ChangeEventHandler<HTMLSelectElement> | undefined | null;
'bind:value'?: any;
}
Defined In
Source
Frequently Asked Questions
What is the HTMLSelectAttributes type?
HTMLSelectAttributes is a type/interface in the svelte codebase, defined in packages/svelte/elements.d.ts.
Where is HTMLSelectAttributes defined?
HTMLSelectAttributes is defined in packages/svelte/elements.d.ts at line 1346.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free