Skip to content

Commit d2ba258

Browse files
fix: add hint popover (#16581)
* fix: add hint popover * changeset --------- Co-authored-by: Rich Harris <[email protected]>
1 parent f00b364 commit d2ba258

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/metal-months-fail.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"svelte": patch
3+
---
4+
5+
fix: add `hint` as a possible value for `popover` attribute

packages/svelte/elements.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
781781
title?: string | undefined | null;
782782
translate?: 'yes' | 'no' | '' | undefined | null;
783783
inert?: boolean | undefined | null;
784-
popover?: 'auto' | 'manual' | '' | undefined | null;
784+
popover?: 'auto' | 'manual' | 'hint' | '' | undefined | null;
785785
writingsuggestions?: Booleanish | undefined | null;
786786

787787
// Unknown

0 commit comments

Comments
 (0)