fix: Add missing miter-clip and arcs value to stroke-linejoin attribute (#10141)

* Add missing miter-clip and arcs attribute stroke-linejoin

* format

* changeset

---------

Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com>
Co-authored-by: Rich Harris <hello@rich-harris.dev>
pull/10304/head
Lucas I 12 months ago committed by GitHub
parent 0504ad5ed7
commit f7cc8cb263
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -1639,7 +1639,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