Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/language-server/src/plugins/html/dataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ const addAttributes: Record<string, IAttributeData[]> = {
input: [
{ name: 'bind:value' },
{ name: 'bind:group', description: 'Available for type="radio" and type="checkbox"' },
{ name: 'bind:files', description: 'Available for type="file" (readonly)' },
indeterminateAttribute,
{ ...indeterminateAttribute, name: 'bind:indeterminate' }
],
Expand All @@ -287,6 +288,11 @@ const addAttributes: Record<string, IAttributeData[]> = {
"SvelteKit-specific attribute. Will cause SvelteKit to run the page's load function as soon as the user hovers over the link (on a desktop) or touches it (on mobile), rather than waiting for the click event to trigger navigation.",
valueSet: 'v'
}
],
details: [
{
name: 'bind:open'
}
]
};

Expand Down