Sync generated provider output

This commit is contained in:
github-actions[bot]
2026-09-01 03:28:21 +00:00
parent 1bcdf80f91
commit 40b5151237
16 changed files with 48 additions and 16 deletions
@@ -995,7 +995,9 @@ function extractRadiusTokens(value) {
return String(value || '')
.replace(/\s*\/\s*/g, ' ')
.split(/\s+/)
.map(token => token.trim())
// var() fallbacks leave the closing parenthesis on the final token. Strip
// it before length resolution so `8px)` is not treated as unitless 8rem.
.map(token => token.trim().replace(/\)+$/, ''))
.filter(Boolean);
}