fix: add hint popover (#16581)

* fix: add hint popover

* changeset

---------

Co-authored-by: Rich Harris <hello@rich-harris.dev>
pull/16602/head
shamokit 4 weeks ago committed by GitHub
parent f00b364d5b
commit d2ba2589fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
"svelte": patch
---
fix: add `hint` as a possible value for `popover` attribute

@ -781,7 +781,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
title?: string | undefined | null; title?: string | undefined | null;
translate?: 'yes' | 'no' | '' | undefined | null; translate?: 'yes' | 'no' | '' | undefined | null;
inert?: boolean | undefined | null; inert?: boolean | undefined | null;
popover?: 'auto' | 'manual' | '' | undefined | null; popover?: 'auto' | 'manual' | 'hint' | '' | undefined | null;
writingsuggestions?: Booleanish | undefined | null; writingsuggestions?: Booleanish | undefined | null;
// Unknown // Unknown

Loading…
Cancel
Save