feat: hidden until found and beforematch (#13612)

* add types

* changeset
pull/13603/head
Frédéric Crozatier 3 weeks ago committed by GitHub
parent 68a2263415
commit 76067a5fbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
'svelte': patch
---
feat: add hidden until-found and beforematch

@ -428,6 +428,9 @@ export interface DOMAttributes<T extends EventTarget> {
onvisibilitychangecapture?: EventHandler<Event, T> | undefined | null;
// Global Events
'on:beforematch'?: EventHandler<Event, T> | undefined | null;
onbeforematch?: EventHandler<Event, T> | undefined | null;
onbeforematchcapture?: EventHandler<Event, T> | undefined | null;
'on:cancel'?: EventHandler<Event, T> | undefined | null;
oncancel?: EventHandler<Event, T> | undefined | null;
oncancelcapture?: EventHandler<Event, T> | undefined | null;
@ -735,7 +738,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
| 'send'
| undefined
| null;
hidden?: boolean | undefined | null;
hidden?: boolean | 'until-found' | '' | undefined | null;
id?: string | undefined | null;
lang?: string | undefined | null;
part?: string | undefined | null;

Loading…
Cancel
Save