File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' svelte ' : patch
3
+ ---
4
+
5
+ fix: add bindable dimension attributes types to SVG and MathML elements
Original file line number Diff line number Diff line change @@ -464,14 +464,15 @@ export interface DOMAttributes<T extends EventTarget> {
464
464
onfullscreenerror ?: EventHandler < Event , T > | undefined | null ;
465
465
onfullscreenerrorcapture ?: EventHandler < Event , T > | undefined | null ;
466
466
467
- xmlns ?: string | undefined | null ;
468
-
467
+ // Dimensions
469
468
readonly 'bind:contentRect' ?: DOMRectReadOnly | undefined | null ;
470
469
readonly 'bind:contentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
471
470
readonly 'bind:borderBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
472
471
readonly 'bind:devicePixelContentBoxSize' ?: Array < ResizeObserverSize > | undefined | null ;
473
472
readonly 'bind:clientWidth' ?: number | undefined | null ;
474
473
readonly 'bind:clientHeight' ?: number | undefined | null ;
474
+
475
+ xmlns ?: string | undefined | null ;
475
476
}
476
477
477
478
// All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
You can’t perform that action at this time.
0 commit comments