@csstools/css-syntax-patches-for-csstree 1.0.18 → 1.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -4
- package/dist/index.json +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# Changes to CSS Syntax Patches For CSSTree
|
|
2
2
|
|
|
3
|
-
### 1.0.
|
|
3
|
+
### 1.0.20
|
|
4
4
|
|
|
5
|
-
_November
|
|
5
|
+
_November 29, 2025_
|
|
6
6
|
|
|
7
|
-
- Patch `
|
|
8
|
-
- Patch color functions to support relative color component keywords
|
|
7
|
+
- Patch `overflow-*` to include `<-non-standard-overflow>`
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/packages/css-syntax-patches-for-csstree/CHANGELOG.md)
|
package/dist/index.json
CHANGED
|
@@ -339,6 +339,7 @@
|
|
|
339
339
|
"outline-color": "auto | <'border-top-color'>",
|
|
340
340
|
"outline-style": "auto | none | dotted | dashed | solid | double | groove | ridge | inset | outset",
|
|
341
341
|
"overflow": "<'overflow-block'>{1,2} | <-non-standard-overflow>",
|
|
342
|
+
"overflow-block": "| <-non-standard-overflow>",
|
|
342
343
|
"overflow-clip-margin-block": "<visual-box> || <length [0,∞]>",
|
|
343
344
|
"overflow-clip-margin-block-end": "<visual-box> || <length [0,∞]>",
|
|
344
345
|
"overflow-clip-margin-block-start": "<visual-box> || <length [0,∞]>",
|
|
@@ -349,6 +350,9 @@
|
|
|
349
350
|
"overflow-clip-margin-left": "<visual-box> || <length [0,∞]>",
|
|
350
351
|
"overflow-clip-margin-right": "<visual-box> || <length [0,∞]>",
|
|
351
352
|
"overflow-clip-margin-top": "<visual-box> || <length [0,∞]>",
|
|
353
|
+
"overflow-inline": "| <-non-standard-overflow>",
|
|
354
|
+
"overflow-x": "| <-non-standard-overflow>",
|
|
355
|
+
"overflow-y": "| <-non-standard-overflow>",
|
|
352
356
|
"padding": "<'padding-top'>{1,4}",
|
|
353
357
|
"padding-block": "<'padding-top'>{1,2}",
|
|
354
358
|
"padding-block-end": "<'padding-top'>",
|
|
@@ -546,8 +550,8 @@
|
|
|
546
550
|
"calc-keyword": "e | pi | infinity | -infinity | NaN",
|
|
547
551
|
"calc-mix()": "calc-mix( [ <calc-sum> <percentage [0,100]>? ]# )",
|
|
548
552
|
"calc-product": "<calc-value> [ [ '*' | / ] <calc-value> ]*",
|
|
549
|
-
"calc-size-basis": "[ <size-keyword> | <calc-size()> |
|
|
550
|
-
"calc-size()": "calc-size( <calc-size-basis> , <calc-sum> )",
|
|
553
|
+
"calc-size-basis": "[ <size-keyword> | <calc-size()> | <calc-sum> ]",
|
|
554
|
+
"calc-size()": "calc-size( [ [ <calc-size-basis> , [ <calc-sum> | size ] ] | [ any , <calc-sum> ] ] )",
|
|
551
555
|
"calc-value": "<number> | <dimension> | <percentage> | <calc-keyword> | ( <calc-sum> )",
|
|
552
556
|
"cf-image": "[ <image> | <color> ] && <percentage [0,100]>?",
|
|
553
557
|
"circle()": "circle( <radial-size>? [ at <position> ]? )",
|