fix: Add `miter-clip` and `arcs` to `stroke-linejoin` attribute (#10377)

#10141 for svelte 4
pull/10390/head
navorite 8 months ago committed by GitHub
parent 2cc251003a
commit f834b6eb55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: Add `miter-clip` and `arcs` to `stroke-linejoin` attribute

@ -1403,7 +1403,15 @@ export interface SVGAttributes<T extends EventTarget> extends AriaAttributes, DO
'stroke-dasharray'?: string | number | undefined | null;
'stroke-dashoffset'?: string | number | undefined | null;
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit' | undefined | null;
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit' | undefined | null;
'stroke-linejoin'?:
| 'arcs'
| 'miter-clip'
| 'miter'
| 'round'
| 'bevel'
| 'inherit'
| undefined
| null;
'stroke-miterlimit'?: string | undefined | null;
'stroke-opacity'?: number | string | undefined | null;
'stroke-width'?: number | string | undefined | null;

Loading…
Cancel
Save