From df08f676feed01e93a28942a2dbd313d99e171f8 Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Fri, 22 Nov 2024 23:15:02 +0800 Subject: [PATCH] feat(css): Add missing syntax `` for `stroke-dasharray` (#791) * Add missing syntax `` for `stroke-dasharray` * Apply suggestions from code review --- css/syntaxes.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/syntaxes.json b/css/syntaxes.json index 08b197e9..3d27ea2f 100644 --- a/css/syntaxes.json +++ b/css/syntaxes.json @@ -215,6 +215,9 @@ "cubic-bezier-timing-function": { "syntax": "ease | ease-in | ease-out | ease-in-out | cubic-bezier(, , , )" }, + "dasharray": { + "syntax": "[ [ | ]+ ]#" + }, "deprecated-system-color": { "syntax": "ActiveBorder | ActiveCaption | AppWorkspace | Background | ButtonFace | ButtonHighlight | ButtonShadow | ButtonText | CaptionText | GrayText | Highlight | HighlightText | InactiveBorder | InactiveCaption | InactiveCaptionText | InfoBackground | InfoText | Menu | MenuText | Scrollbar | ThreeDDarkShadow | ThreeDFace | ThreeDHighlight | ThreeDLightShadow | ThreeDShadow | Window | WindowFrame | WindowText" },