From 3722a0269192bdd5823eb7ecf3bd7f67769e3cb5 Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Wed, 27 Nov 2024 19:21:01 +0800 Subject: [PATCH] feat(css): Add missing `` syntax for `position-area` property (#793) * Add missing `` syntax for `position-area` property * Update css/syntaxes.json Co-authored-by: Brian Smith --------- Co-authored-by: Brian Smith --- css/syntaxes.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/syntaxes.json b/css/syntaxes.json index 4a0ce22e..25a64f33 100644 --- a/css/syntaxes.json +++ b/css/syntaxes.json @@ -623,6 +623,9 @@ "position": { "syntax": "[ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | ] [ top | center | bottom | ]? | [ [ left | right ] ] && [ [ top | bottom ] ] ]" }, + "position-area": { + "syntax": "[ left | center | right | span-left | span-right | x-start | x-end | span-x-start | span-x-end | x-self-start | x-self-end | span-x-self-start | span-x-self-end | span-all ] || [ top | center | bottom | span-top | span-bottom | y-start | y-end | span-y-start | span-y-end | y-self-start | y-self-end | span-y-self-start | span-y-self-end | span-all ] | [ block-start | center | block-end | span-block-start | span-block-end | span-all ] || [ inline-start | center | inline-end | span-inline-start | span-inline-end | span-all ] | [ self-block-start | center | self-block-end | span-self-block-start | span-self-block-end | span-all ] || [ self-inline-start | center | self-inline-end | span-self-inline-start | span-self-inline-end | span-all ] | [ start | center | end | span-start | span-end | span-all ]{1,2} | [ self-start | center | self-end | span-self-start | span-self-end | span-all ]{1,2}" + }, "pow()": { "syntax": "pow( , )" },