stylelint-plugin-use-baseline 0.3.0
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/LICENSE +21 -0
- package/README.md +121 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +62 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Ryo Matsukawa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# stylelint-plugin-use-baseline
|
|
2
|
+
|
|
3
|
+
Disallow CSS features not in [Baseline](https://web.dev/baseline).
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```shell
|
|
10
|
+
npm install stylelint-plugin-use-baseline --save-dev
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
> Note: stylelint is a peer dependency, so you need to install it as well.
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
1. Create or update your Stylelint configuration file, for example `.stylelintrc.js`.
|
|
18
|
+
2. Add `"stylelint-plugin-use-baseline"` to the `plugins` array.
|
|
19
|
+
3. Enable the rule by adding `"plugin/use-baseline"` to your `rules`.
|
|
20
|
+
|
|
21
|
+
A minimal `.stylelintrc.js` might look like this:
|
|
22
|
+
|
|
23
|
+
```js
|
|
24
|
+
/** @type {import("stylelint").Config} */
|
|
25
|
+
export default {
|
|
26
|
+
plugins: ["stylelint-plugin-use-baseline"],
|
|
27
|
+
rules: {
|
|
28
|
+
"plugin/use-baseline": [
|
|
29
|
+
true,
|
|
30
|
+
{
|
|
31
|
+
// "available" can be "widely" (default) or "newly"
|
|
32
|
+
available: "widely",
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Run Stylelint in your project (e.g., `npx stylelint "src/**/*.css"`).
|
|
40
|
+
|
|
41
|
+
## Rule Details
|
|
42
|
+
|
|
43
|
+
This rule reports the following cases:
|
|
44
|
+
|
|
45
|
+
- CSS properties not in Baseline, unless enclosed in a `@supports` block.
|
|
46
|
+
- At-rules that aren't widely available.
|
|
47
|
+
- Media conditions inside `@media` that aren't widely available.
|
|
48
|
+
- CSS property values that aren't widely available or aren't enclosed in a `@supports` block (currently limited to identifiers only).
|
|
49
|
+
- CSS functions that aren't widely available.
|
|
50
|
+
- CSS pseudo-elements and pseudo-classes that aren't widely available.
|
|
51
|
+
|
|
52
|
+
The data is sourced from [`web-features`](https://npmjs.com/package/web-features).
|
|
53
|
+
|
|
54
|
+
### Note
|
|
55
|
+
|
|
56
|
+
Although `cursor` is not yet labeled as Baseline, it has broad support. By default, **this plugin does not flag `cursor`** because it is [expected to be added to Baseline soon](https://github.com/web-platform-dx/web-features/issues/1038).
|
|
57
|
+
|
|
58
|
+
## Options
|
|
59
|
+
|
|
60
|
+
### `available`: `"widely" | "newly"` | `YYYY`
|
|
61
|
+
|
|
62
|
+
_Default_: `"widely"`
|
|
63
|
+
|
|
64
|
+
- `"widely"` (default) – Allows features supported in all Baseline browsers for at least 30 months.
|
|
65
|
+
- `"newly"` – Allows features supported in all Baseline browsers for less than 30 months. Limited availability features still trigger warnings.
|
|
66
|
+
- `YYYY` – Allows features that became Baseline newly available that year, or earlier. For example, `2023`.
|
|
67
|
+
|
|
68
|
+
## Examples
|
|
69
|
+
|
|
70
|
+
```css
|
|
71
|
+
/* invalid - accent-color is not widely available */
|
|
72
|
+
a {
|
|
73
|
+
accent-color: red;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* valid - using @supports for accent-color */
|
|
77
|
+
@supports (accent-color: auto) {
|
|
78
|
+
a {
|
|
79
|
+
accent-color: auto;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* invalid - abs() is not widely available */
|
|
84
|
+
.box {
|
|
85
|
+
width: abs(20% - 100px);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* invalid - :has() is not widely available */
|
|
89
|
+
h1:has(+ h2) {
|
|
90
|
+
margin: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* valid - @supports indicates limited availability */
|
|
94
|
+
@supports selector(:has()) {
|
|
95
|
+
h1:has(+ h2) {
|
|
96
|
+
margin: 0;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* invalid - property value doesn't match @supports indicator */
|
|
101
|
+
@supports (accent-color: auto) {
|
|
102
|
+
a {
|
|
103
|
+
accent-color: abs(20% - 10px); /* mismatch */
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* invalid - device-posture is not widely available */
|
|
108
|
+
@media (device-posture: folded) {
|
|
109
|
+
.foldable {
|
|
110
|
+
padding: 1rem;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Prior art
|
|
116
|
+
|
|
117
|
+
[eslint/css use-baseline](https://github.com/eslint/css/blob/main/docs/rules/use-baseline.md)
|
|
118
|
+
|
|
119
|
+
## License
|
|
120
|
+
|
|
121
|
+
[MIT](LICENSE)
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{parse as e,walk as n}from"css-tree";import t from"stylelint";import a from"postcss-value-parser";const o=new Map([["accent-color",0],["alignment-baseline",0],["all",10],["anchor-name",0],["anchor-scope",0],["position-anchor",0],["position-area",0],["position-try",0],["position-try-fallbacks",0],["position-try-order",0],["position-visibility",0],["animation-composition",5],["animation",10],["animation-delay",10],["animation-direction",10],["animation-duration",10],["animation-fill-mode",10],["animation-iteration-count",10],["animation-name",10],["animation-play-state",10],["animation-timing-function",10],["appearance",10],["aspect-ratio",10],["backdrop-filter",5],["background",10],["background-attachment",10],["background-blend-mode",10],["background-clip",10],["background-color",10],["background-image",10],["background-origin",10],["background-position",10],["background-position-x",10],["background-position-y",10],["background-repeat",10],["background-size",10],["baseline-shift",0],["baseline-source",0],["border-image",10],["border-image-outset",10],["border-image-repeat",10],["border-image-slice",10],["border-image-source",10],["border-image-width",10],["border-bottom-left-radius",10],["border-bottom-right-radius",10],["border-radius",10],["border-top-left-radius",10],["border-top-right-radius",10],["border",10],["border-bottom",10],["border-bottom-color",10],["border-bottom-style",10],["border-bottom-width",10],["border-color",10],["border-left",10],["border-left-color",10],["border-left-style",10],["border-left-width",10],["border-right",10],["border-right-color",10],["border-right-style",10],["border-right-width",10],["border-style",10],["border-top",10],["border-top-color",10],["border-top-style",10],["border-top-width",10],["border-width",10],["box-decoration-break",0],["box-shadow",10],["box-sizing",10],["caret-color",10],["clip",0],["clip-path",10],["color",10],["color-adjust",0],["color-scheme",10],["column-fill",10],["column-span",10],["contain",10],["contain-intrinsic-block-size",5],["contain-intrinsic-height",5],["contain-intrinsic-inline-size",5],["contain-intrinsic-size",5],["contain-intrinsic-width",5],["container",5],["container-name",5],["container-type",5],["content",10],["content-visibility",0],["counter-set",5],["counter-increment",10],["counter-reset",10],["custom-property",10],["display",10],["dominant-baseline",10],["field-sizing",0],["filter",10],["align-content",10],["align-items",10],["align-self",10],["flex",10],["flex-basis",10],["flex-direction",10],["flex-flow",10],["flex-grow",10],["flex-shrink",10],["flex-wrap",10],["justify-content",10],["justify-items",10],["order",10],["place-content",10],["place-items",10],["place-self",10],["clear",10],["float",10],["font-family",10],["font-feature-settings",10],["font-kerning",10],["font-language-override",0],["font-optical-sizing",10],["font-palette",5],["font",10],["font-size",10],["font-size-adjust",5],["font-stretch",10],["font-style",10],["font-synthesis",10],["font-synthesis-position",0],["font-synthesis-small-caps",5],["font-synthesis-style",5],["font-synthesis-weight",5],["font-variant",10],["font-variant-alternates",5],["font-variant-caps",10],["font-variant-east-asian",10],["font-variant-emoji",0],["font-variant-ligatures",10],["font-variant-numeric",10],["font-variant-position",0],["font-variation-settings",10],["font-weight",10],["forced-color-adjust",5],["glyph-orientation-vertical",0],["gap",10],["grid",10],["grid-area",10],["grid-auto-columns",10],["grid-auto-flow",10],["grid-auto-rows",10],["grid-column",10],["grid-column-end",10],["grid-column-start",10],["grid-row",10],["grid-row-end",10],["grid-row-start",10],["grid-template",10],["grid-template-areas",10],["grid-template-columns",10],["grid-template-rows",10],["justify-self",10],["row-gap",10],["hanging-punctuation",0],["hyphenate-character",5],["hyphenate-limit-chars",0],["hyphens",5],["image-orientation",10],["image-rendering",10],["ime-mode",0],["rotate",10],["scale",10],["translate",10],["initial-letter",0],["interpolate-size",0],["isolation",10],["direction",10],["unicode-bidi",10],["letter-spacing",10],["line-break",10],["line-clamp",0],["line-height",10],["list-style",10],["list-style-image",10],["list-style-position",10],["list-style-type",10],["block-size",10],["border-block",10],["border-block-color",10],["border-block-end",10],["border-block-end-color",10],["border-block-end-style",10],["border-block-end-width",10],["border-block-start",10],["border-block-start-color",10],["border-block-start-style",10],["border-block-start-width",10],["border-block-style",10],["border-block-width",10],["border-end-end-radius",10],["border-end-start-radius",10],["border-inline",10],["border-inline-color",10],["border-inline-end",10],["border-inline-end-color",10],["border-inline-end-style",10],["border-inline-end-width",10],["border-inline-start",10],["border-inline-start-color",10],["border-inline-start-style",10],["border-inline-start-width",10],["border-inline-style",10],["border-inline-width",10],["border-start-end-radius",10],["border-start-start-radius",10],["inline-size",10],["inset",10],["inset-block",10],["inset-block-end",10],["inset-block-start",10],["inset-inline",10],["inset-inline-end",10],["inset-inline-start",10],["margin-block",10],["margin-block-end",10],["margin-block-start",10],["margin-inline",10],["margin-inline-end",10],["margin-inline-start",10],["max-block-size",10],["max-inline-size",10],["min-block-size",10],["min-inline-size",10],["overflow-block",10],["overflow-inline",10],["padding-block",10],["padding-block-end",10],["padding-block-start",10],["padding-inline",10],["padding-inline-end",10],["padding-inline-start",10],["margin",10],["margin-bottom",10],["margin-left",10],["margin-right",10],["margin-top",10],["margin-trim",0],["mask-border",0],["mask-border-outset",0],["mask-border-repeat",0],["mask-border-slice",0],["mask-border-source",0],["mask-border-width",0],["mask-type",10],["mask",5],["mask-clip",5],["mask-composite",5],["mask-image",5],["mask-mode",5],["mask-origin",5],["mask-position",5],["mask-repeat",5],["mask-size",5],["math-depth",5],["math-shift",5],["math-style",5],["max-height",10],["max-width",10],["min-height",10],["min-width",10],["mix-blend-mode",10],["offset",5],["offset-anchor",5],["offset-distance",5],["offset-path",5],["offset-position",5],["offset-rotate",5],["column-count",10],["column-gap",10],["column-rule",10],["column-rule-color",10],["column-rule-style",10],["column-rule-width",10],["column-width",10],["columns",10],["object-fit",10],["object-position",10],["object-view-box",0],["opacity",10],["fill-opacity",10],["stroke-opacity",10],["outline",5],["outline-color",10],["outline-offset",10],["outline-style",10],["outline-width",10],["overflow-anchor",0],["overflow-clip-margin",0],["overflow",5],["overflow-x",5],["overflow-y",5],["overflow-wrap",10],["overlay",0],["overscroll-behavior",5],["overscroll-behavior-block",5],["overscroll-behavior-inline",5],["overscroll-behavior-x",5],["overscroll-behavior-y",5],["padding",10],["padding-bottom",10],["padding-left",10],["padding-right",10],["padding-top",10],["page-break-after",0],["page-break-before",0],["page-break-inside",0],["break-after",10],["break-before",10],["break-inside",10],["page",0],["paint-order",0],["bottom",10],["left",10],["right",10],["top",10],["pointer-events",10],["position",10],["print-color-adjust",0],["quotes",10],["reading-flow",0],["resize",0],["line-height-step",0],["ruby-align",5],["ruby-overhang",0],["ruby-position",5],["scroll-behavior",10],["animation-range",0],["animation-range-end",0],["animation-range-start",0],["animation-timeline",0],["scroll-timeline",0],["scroll-timeline-axis",0],["scroll-timeline-name",0],["timeline-scope",0],["view-timeline",0],["view-timeline-axis",0],["view-timeline-inset",0],["view-timeline-name",0],["scroll-margin",10],["scroll-margin-block",10],["scroll-margin-block-end",10],["scroll-margin-block-start",10],["scroll-margin-bottom",10],["scroll-margin-inline",10],["scroll-margin-inline-end",10],["scroll-margin-inline-start",10],["scroll-margin-left",10],["scroll-margin-right",10],["scroll-margin-top",10],["scroll-padding",10],["scroll-padding-block",10],["scroll-padding-block-end",10],["scroll-padding-block-start",10],["scroll-padding-bottom",10],["scroll-padding-inline",10],["scroll-padding-inline-end",10],["scroll-padding-inline-start",10],["scroll-padding-left",10],["scroll-padding-right",10],["scroll-padding-top",10],["scroll-snap-align",10],["scroll-snap-stop",10],["scroll-snap-type",10],["scrollbar-color",0],["scrollbar-gutter",5],["scrollbar-width",5],["shape-image-threshold",10],["shape-margin",10],["shape-outside",10],["speak",0],["speak-as",0],["clip-rule",10],["color-interpolation",10],["cx",10],["cy",10],["d",10],["fill",10],["fill-rule",10],["marker",10],["marker-end",10],["marker-mid",10],["marker-start",10],["r",10],["rx",10],["ry",10],["shape-rendering",10],["stop-color",10],["stop-opacity",10],["stroke",10],["stroke-color",10],["stroke-dasharray",10],["stroke-dashoffset",10],["stroke-linecap",10],["stroke-linejoin",10],["stroke-miterlimit",10],["stroke-width",10],["text-anchor",10],["text-rendering",10],["vector-effect",10],["x",10],["y",10],["color-interpolation-filters",10],["flood-color",10],["flood-opacity",10],["lighting-color",10],["tab-size",10],["border-collapse",10],["border-spacing",10],["caption-side",10],["empty-cells",10],["table-layout",10],["text-align",10],["text-align-last",5],["text-autospace",0],["text-box",0],["text-box-edge",0],["text-box-trim",0],["text-combine-upright",10],["text-decoration",10],["text-decoration-color",10],["text-decoration-line",10],["text-decoration-skip",10],["text-decoration-skip-ink",10],["text-decoration-style",10],["text-decoration-thickness",10],["text-emphasis",10],["text-emphasis-color",10],["text-emphasis-position",10],["text-emphasis-style",10],["text-indent",10],["text-justify",0],["text-orientation",10],["text-overflow",10],["text-shadow",10],["text-size-adjust",0],["text-spacing-trim",0],["-webkit-text-fill-color",10],["-webkit-text-stroke",10],["-webkit-text-stroke-color",10],["-webkit-text-stroke-width",10],["text-transform",10],["text-underline-offset",10],["text-underline-position",10],["text-wrap",5],["text-wrap-mode",5],["text-wrap-style",0],["touch-action",10],["transform-box",5],["transform",10],["transform-origin",10],["backface-visibility",10],["perspective",10],["perspective-origin",10],["transform-style",10],["transition-behavior",5],["transition",10],["transition-delay",10],["transition-duration",10],["transition-property",10],["transition-timing-function",10],["user-select",0],["vertical-align",10],["view-transition-class",0],["view-transition-name",0],["visibility",10],["white-space",10],["white-space-collapse",5],["orphans",0],["widows",0],["height",10],["width",10],["will-change",10],["word-break",10],["word-spacing",10],["writing-mode",10],["z-index",10],["zoom",5]]),i=new Map([["position-try",0],["keyframes",10],["layer",10],["charset",10],["container",5],["counter-style",5],["view-transition",0],["font-face",10],["font-palette-values",5],["font-feature-values",5],["import",10],["media",10],["namespace",10],["page",5],["property",5],["scope",0],["starting-style",0],["supports",10]]),r=new Map([["color-gamut",5],["device-posture",0],["device-aspect-ratio",0],["device-height",0],["device-width",0],["display-mode",0],["dynamic-range",10],["forced-colors",5],["any-hover",10],["any-pointer",10],["hover",10],["pointer",10],["inverted-colors",0],["aspect-ratio",10],["calc",10],["color",10],["color-index",10],["grid",10],["height",10],["monochrome",10],["nested-queries",10],["orientation",10],["width",10],["overflow-block",5],["overflow-inline",5],["prefers-color-scheme",10],["prefers-contrast",10],["prefers-reduced-data",0],["prefers-reduced-motion",10],["prefers-reduced-transparency",0],["resolution",5],["-webkit-device-pixel-ratio",10],["-webkit-max-device-pixel-ratio",10],["-webkit-min-device-pixel-ratio",10],["scripting",5],["-webkit-transform-3d",10],["update",5],["video-dynamic-range",0]]),s=new Map([["abs",0],["sign",0],["anchor",0],["anchor-size",0],["time",10],["attr",10],["blend-mode",10],["line-style",10],["calc",10],["calc-keyword",5],["calc-size",0],["shape",0],["color",10],["string",10],["counter",10],["counters",10],["easing-function",10],["exp",5],["hypot",5],["log",5],["pow",5],["sqrt",5],["filter-function",10],["url",10],["gradient",10],["image",10],["flex",10],["ratio",10],["clamp",10],["max",10],["min",10],["ray",5],["number",10],["overflow",5],["resolution",5],["mod",5],["rem",5],["round",5],["basic-shape",10],["text-edge",0],["angle",10],["angle-percentage",10],["position",10],["transform-function",10],["acos",5],["asin",5],["atan",5],["atan2",5],["cos",5],["sin",5],["tan",5],["dimension",10],["length",10],["length-percentage",10],["percentage",10],["integer",10]]),l=new Map([["active-view-transition",0],["active-view-transition-type",0],["autofill",5],["defined",10],["backdrop",10],["after",10],["before",10],["default",10],["details-content",0],["dir",5],["empty",10],["file-selector-button",10],["first-letter",10],["first-line",10],["focus-visible",10],["focus-within",10],["in-range",10],["invalid",10],["optional",10],["out-of-range",10],["required",10],["valid",10],["fullscreen",0],["has",5],["has-slotted",0],["highlight",0],["host",10],["hostfunction",10],["host-context",0],["indeterminate",10],["checked",10],["disabled",10],["enabled",10],["is",10],["lang",10],["any-link",10],["link",10],["visited",10],["marker",0],["buffering",0],["muted",0],["paused",0],["playing",0],["seeking",0],["stalled",0],["volume-locked",0],["modal",5],["namespace",10],["nesting",5],["not",10],["first-child",10],["last-child",10],["nth-child",10],["nth-last-child",10],["only-child",10],["first-of-type",10],["last-of-type",10],["nth-last-of-type",10],["nth-of-type",10],["only-of-type",10],["closed",0],["open",0],["first",0],["left",0],["right",0],["picture-in-picture",0],["placeholder",10],["placeholder-shown",10],["popover-open",5],["read-only",10],["read-write",10],["root",10],["scope",10],["selection",0],["attribute",10],["child",10],["class",10],["descendant",10],["id",10],["list",10],["next-sibling",10],["subsequent-sibling",10],["type",10],["universal",10],["part",10],["slotted",10],["grammar-error",0],["spelling-error",0],["state",5],["target",10],["target-text",5],["future",0],["past",0],["active",10],["focus",10],["hover",10],["user-invalid",5],["user-valid",5],["view-transition",0],["view-transition-group",0],["view-transition-image-pair",0],["view-transition-new",0],["view-transition-old",0],["cue",10],["xr-overlay",0],["where",10]]),c=new Map([["position",new Map([["absolute",10],["fixed",10],["relative",10],["static",10],["sticky",10]])],["accent-color",new Map([["auto",0]])],["alignment-baseline",new Map([["alphabetic",0],["baseline",0],["central",0],["ideographic",0],["mathematical",0],["middle",0]])],["align-items",new Map([["anchor-center",0]])],["align-self",new Map([["anchor-center",0]])],["anchor-name",new Map([["none",0]])],["anchor-scope",new Map([["all",0],["none",0]])],["block-size",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10]])],["bottom",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["height",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10],["stretch",0],["auto",10]])],["inline-size",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10]])],["inset-block-end",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["inset-block-start",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["inset-block",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["inset-inline-end",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["inset-inline-start",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["inset-inline",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["inset",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["justify-items",new Map([["anchor-center",0]])],["justify-self",new Map([["anchor-center",0]])],["left",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["margin-block-end",new Map([["anchor-size",0]])],["margin-block-start",new Map([["anchor-size",0]])],["margin-block",new Map([["anchor-size",0]])],["margin-bottom",new Map([["anchor-size",0],["auto",10]])],["margin-inline-end",new Map([["anchor-size",0]])],["margin-inline-start",new Map([["anchor-size",0]])],["margin-inline",new Map([["anchor-size",0]])],["margin-left",new Map([["anchor-size",0],["auto",10]])],["margin-right",new Map([["anchor-size",0],["auto",10]])],["margin-top",new Map([["anchor-size",0],["auto",10]])],["margin",new Map([["anchor-size",0],["auto",10]])],["max-block-size",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10]])],["max-height",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10],["none",10],["stretch",0]])],["max-inline-size",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10]])],["max-width",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10],["none",10],["stretch",0]])],["min-block-size",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10]])],["min-height",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10],["auto",10],["stretch",0]])],["min-inline-size",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10]])],["min-width",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10],["auto",10],["stretch",0]])],["place-items",new Map([["anchor-center",0]])],["place-self",new Map([["anchor-center",0]])],["position-anchor",new Map([["auto",0]])],["position-area",new Map([["block-end",0],["block-start",0],["bottom",0],["center",0],["end",0],["inline-end",0],["inline-start",0],["left",0],["none",0],["right",0],["self-end",0],["self-start",0],["span-all",0],["span-block-end",0],["span-block-start",0],["span-bottom",0],["span-end",0],["span-inline-end",0],["span-inline-start",0],["span-start",0],["span-top",0],["span-x-end",0],["span-x-start",0],["span-y-end",0],["span-y-start",0],["start",0],["top",0],["x-end",0],["x-self-end",0],["x-self-start",0],["x-start",0],["y-end",0],["y-self-end",0],["y-self-start",0],["y-start",0]])],["position-try-fallbacks",new Map([["flip-block",0],["flip-inline",0],["flip-start",0],["none",0],["position-area",0]])],["position-try-order",new Map([["most-block-size",0],["most-height",0],["most-inline-size",0],["most-width",0],["normal",0]])],["position-visibility",new Map([["always",0],["anchors-visible",0],["no-overflow",0]])],["right",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["top",new Map([["anchor",0],["anchor-size",0],["auto",10]])],["width",new Map([["anchor-size",0],["fit-content",10],["max-content",10],["min-content",10],["stretch",0],["auto",10]])],["animation-direction",new Map([["alternate",10],["alternate-reverse",10],["normal",10],["reverse",10]])],["animation-duration",new Map([["auto",10]])],["animation-fill-mode",new Map([["backwards",10],["both",10],["forwards",10],["none",10]])],["animation-iteration-count",new Map([["infinite",10]])],["animation-name",new Map([["none",10]])],["animation-play-state",new Map([["paused",10],["running",10]])],["animation-timing-function",new Map([["jump",10]])],["appearance",new Map([["auto",10],["button",10],["checkbox",10],["listbox",10],["menulist",10],["menulist-button",10],["meter",10],["none",10],["progress-bar",10],["radio",10],["searchfield",10],["textarea",10],["textfield",10]])],["aspect-ratio",new Map([["auto",10]])],["background-attachment",new Map([["fixed",10],["local",10],["scroll",10]])],["background-clip",new Map([["border-box",10],["content-box",10],["padding-box",10],["border-area",0],["text",0]])],["background",new Map([["background-clip",10],["background-origin",10],["background-size",10]])],["background-image",new Map([["none",10],["element",0],["gradients",10],["image-set",5]])],["background-origin",new Map([["border-box",10],["content-box",10],["padding-box",10]])],["background-position",new Map([["bottom",10],["center",10],["left",10],["right",10],["top",10]])],["background-repeat",new Map([["2-value",10],["no-repeat",10],["repeat",10],["repeat-x",10],["repeat-y",10],["round",10],["space",10]])],["background-size",new Map([["auto",10],["contain",10],["cover",10]])],["baseline-shift",new Map([["baseline",0],["sub",0],["super",0]])],["baseline-source",new Map([["auto",0],["first",0],["last",0]])],["border-image-repeat",new Map([["repeat",10],["round",10],["space",10],["stretch",10]])],["border-image-width",new Map([["auto",10]])],["border-image",new Map([["fill",10],["gradient",10]])],["border-bottom-left-radius",new Map([["percentages",10]])],["border-bottom-right-radius",new Map([["percentages",10]])],["border-radius",new Map([["percentages",10]])],["border-top-left-radius",new Map([["percentages",10]])],["border-top-right-radius",new Map([["percentages",10]])],["border-style",new Map([["dashed",10],["dotted",10],["double",10],["groove",10],["hidden",10],["inset",10],["none",10],["outset",10],["ridge",10],["solid",10]])],["box-decoration-break",new Map([["clone",0],["slice",0]])],["box-shadow",new Map([["inset",10]])],["box-sizing",new Map([["border-box",10],["content-box",10]])],["clip",new Map([["auto",0]])],["clip-path",new Map([["path",10],["fill-box",5],["stroke-box",5],["view-box",5]])],["color-scheme",new Map([["dark",10],["light",10],["normal",10]])],["break-after",new Map([["avoid-column",0],["column",0],["always",10],["auto",10],["avoid",10],["avoid-page",10],["left",10],["page",10],["recto",10],["right",10],["verso",10]])],["break-before",new Map([["avoid-column",0],["column",0],["always",10],["auto",10],["avoid",10],["avoid-page",10],["left",10],["page",10],["recto",10],["right",10],["verso",10]])],["break-inside",new Map([["avoid-column",0],["auto",10],["avoid",10],["avoid-page",10]])],["column-fill",new Map([["auto",10],["balance",10]])],["column-span",new Map([["all",10],["none",10]])],["contain",new Map([["content",10],["none",10],["strict",10],["inline-size",5],["layout",10],["paint",10],["size",10],["style",10]])],["contain-intrinsic-block-size",new Map([["none",5]])],["contain-intrinsic-height",new Map([["none",5]])],["contain-intrinsic-inline-size",new Map([["none",5]])],["contain-intrinsic-size",new Map([["none",5]])],["contain-intrinsic-width",new Map([["none",5]])],["container-name",new Map([["none",5]])],["container-type",new Map([["inline-size",5],["normal",5],["size",5],["scroll-state",0]])],["content",new Map([["gradient",10],["none",10],["normal",10],["url",10],["image-set",5]])],["content-visibility",new Map([["auto",0],["hidden",0],["visible",0]])],["counter-reset",new Map([["reversed",0],["list-item",10],["none",10]])],["counter-set",new Map([["list-item",5],["none",5]])],["counter-increment",new Map([["list-item",10],["none",10]])],["image-rendering",new Map([["crisp-edges",0],["auto",10],["pixelated",10],["smooth",0]])],["text-overflow",new Map([["string",0],["clip",10],["ellipsis",10]])],["custom-property",new Map([["var",10],["env",10]])],["display",new Map([["block",10],["inline",10],["inline-block",10],["none",10],["contents",0],["flow-root",10],["list-item",10],["ruby",0],["ruby-base",0],["ruby-base-container",0],["ruby-text",0],["ruby-text-container",0],["inline-table",10],["table",10],["table-caption",10],["table-cell",10],["table-column",10],["table-column-group",10],["table-footer-group",10],["table-header-group",10],["table-row",10],["table-row-group",10],["flex",10],["inline-flex",10],["grid",10],["inline-grid",10],["math",5]])],["dominant-baseline",new Map([["alphabetic",10],["auto",10],["central",10],["hanging",10],["ideographic",10],["mathematical",10],["middle",10]])],["field-sizing",new Map([["content",0],["fixed",0]])],["flex-basis",new Map([["auto",10],["content",10],["fit-content",10],["max-content",10],["min-content",10]])],["flex-direction",new Map([["column",10],["column-reverse",10],["row",10],["row-reverse",10]])],["flex-wrap",new Map([["nowrap",10],["wrap",10],["wrap-reverse",10]])],["flex",new Map([["none",10]])],["clear",new Map([["both",10],["left",10],["right",10],["inline-end",10],["inline-start",10]])],["float",new Map([["left",10],["none",10],["right",10],["inline-end",10],["inline-start",10]])],["font-family",new Map([["math",0],["system-ui",10],["ui-monospace",0],["ui-rounded",0],["ui-sans-serif",0],["ui-serif",0]])],["font-feature-settings",new Map([["normal",10]])],["font-optical-sizing",new Map([["auto",10],["none",10]])],["font-palette",new Map([["dark",5],["light",5],["normal",5]])],["font",new Map([["caption",10],["icon",10],["menu",10],["message-box",10],["small-caption",10],["status-bar",10]])],["font-size",new Map([["xxx-large",10],["math",5]])],["font-size-adjust",new Map([["from-font",5],["none",5],["two-values",5]])],["font-stretch",new Map([["percentage",10]])],["font-style",new Map([["italic",10],["normal",10],["oblique-angle",10]])],["font-synthesis",new Map([["position",10],["small-caps",10],["style",10],["weight",10]])],["font-synthesis-position",new Map([["auto",0],["none",0]])],["font-synthesis-small-caps",new Map([["auto",5],["none",5]])],["font-synthesis-style",new Map([["auto",5],["none",5]])],["font-synthesis-weight",new Map([["auto",5],["none",5]])],["font-variant",new Map([["historical-forms",10],["none",10],["normal",10],["sub",10],["super",10]])],["font-variant-alternates",new Map([["annotation",5],["historical-forms",5],["normal",5],["ornaments",5],["styleset",5],["stylistic",5],["swash",5]])],["font-variant-caps",new Map([["all-petite-caps",10],["all-small-caps",10],["normal",10],["petite-caps",10],["small-caps",10],["titling-caps",10],["unicase",10]])],["font-variant-east-asian",new Map([["full-width",10],["jis04",10],["jis78",10],["jis83",10],["jis90",10],["normal",10],["proportional-width",10],["ruby",10],["simplified",10],["traditional",10]])],["font-variant-emoji",new Map([["emoji",0],["normal",0],["text",0],["unicode",0]])],["font-variant-ligatures",new Map([["common-ligatures",10],["contextual",10],["discretionary-ligatures",10],["historical-ligatures",10],["no-common-ligatures",10],["no-contextual",10],["no-discretionary-ligatures",10],["no-historical-ligatures",10],["none",10],["normal",10]])],["font-variant-numeric",new Map([["diagonal-fractions",10],["lining-nums",10],["normal",10],["oldstyle-nums",10],["ordinal",10],["proportional-nums",10],["slashed-zero",10],["stacked-fractions",10],["tabular-nums",10]])],["font-variant-position",new Map([["normal",0],["sub",0],["super",0]])],["font-weight",new Map([["bold",10],["bolder",10],["lighter",10],["normal",10],["number",10]])],["forced-color-adjust",new Map([["auto",5],["none",5],["preserve-parent-color",5]])],["grid-auto-flow",new Map([["column",10],["dense",10],["row",10]])],["grid-template-areas",new Map([["none",10]])],["grid-template-columns",new Map([["auto",10],["fit-content",10],["max-content",10],["min-content",10],["minmax",10],["none",10],["repeat",10],["animation",5],["masonry",0],["subgrid",5]])],["grid-template-rows",new Map([["auto",10],["fit-content",10],["max-content",10],["min-content",10],["minmax",10],["none",10],["repeat",10],["animation",5],["masonry",0],["subgrid",5]])],["grid-template",new Map([["none",10]])],["hanging-punctuation",new Map([["allow-end",0],["first",0],["last",0],["none",0]])],["hyphenate-character",new Map([["auto",5]])],["hyphenate-limit-chars",new Map([["auto",0]])],["hyphens",new Map([["auto",5]])],["image-orientation",new Map([["from-image",10],["none",10]])],["rotate",new Map([["none",10]])],["scale",new Map([["none",10]])],["translate",new Map([["none",10]])],["initial-letter",new Map([["normal",0]])],["interpolate-size",new Map([["allow-keywords",0],["numeric-only",0]])],["direction",new Map([["ltr",10],["rtl",10]])],["unicode-bidi",new Map([["bidi-override",10],["embed",10],["isolate",10],["isolate-override",10],["normal",10],["plaintext",10]])],["letter-spacing",new Map([["normal",10]])],["line-break",new Map([["anywhere",10],["auto",10],["loose",10],["normal",10],["strict",10]])],["line-clamp",new Map([["none",0]])],["line-height",new Map([["normal",10]])],["list-style-image",new Map([["none",10]])],["list-style-position",new Map([["inside",10],["outside",10]])],["list-style-type",new Map([["arabic-indic",10],["armenian",10],["bengali",10],["cambodian",10],["circle",10],["cjk-decimal",10],["cjk-earthly-branch",10],["cjk-heavenly-stem",10],["cjk-ideographic",10],["decimal",10],["decimal-leading-zero",10],["devanagari",10],["disc",10],["disclosure-closed",10],["disclosure-open",10],["ethiopic-numeric",10],["georgian",10],["gujarati",10],["gurmukhi",10],["hebrew",10],["hiragana",10],["hiragana-iroha",10],["japanese-formal",10],["japanese-informal",10],["kannada",10],["katakana",10],["katakana-iroha",10],["khmer",10],["korean-hangul-formal",10],["korean-hanja-formal",10],["korean-hanja-informal",10],["lao",10],["lower-alpha",10],["lower-armenian",10],["lower-greek",10],["lower-latin",10],["lower-roman",10],["malayalam",10],["mongolian",10],["myanmar",10],["none",10],["oriya",10],["persian",10],["simp-chinese-formal",10],["simp-chinese-informal",10],["square",10],["string",10],["symbols",10],["tamil",10],["telugu",10],["thai",10],["tibetan",10],["trad-chinese-formal",10],["trad-chinese-informal",10],["upper-alpha",10],["upper-armenian",10],["upper-latin",10],["upper-roman",10]])],["list-style",new Map([["symbols",10]])],["overflow-block",new Map([["overlay",10]])],["overflow-inline",new Map([["overlay",10]])],["margin-trim",new Map([["block",0],["block-end",0],["block-start",0],["inline",0],["inline-end",0],["inline-start",0],["none",0]])],["mask-type",new Map([["alpha",10],["luminance",10]])],["mask-clip",new Map([["border",5],["content",5],["padding",5],["text",5]])],["mask-composite",new Map([["add",5],["exclude",5],["intersect",5],["subtract",5]])],["mask-mode",new Map([["alpha",5],["luminance",5],["match-source",5]])],["mask-origin",new Map([["border",5],["content",5],["fill-box",5],["padding",5],["stroke-box",5],["view-box",5]])],["text-transform",new Map([["math-auto",5],["capitalize",10],["full-size-kana",10],["full-width",10],["lowercase",10],["none",10],["uppercase",10]])],["mix-blend-mode",new Map([["plus-darker",10],["plus-lighter",10]])],["offset-anchor",new Map([["auto",5],["bottom",5],["center",5],["left",5],["right",5],["top",5]])],["offset-path",new Map([["border-box",5],["content-box",5],["fill-box",5],["margin-box",5],["none",5],["padding-box",5],["path",5],["ray",5],["stroke-box",5],["url",5],["view-box",5]])],["offset-position",new Map([["auto",5],["bottom",5],["center",5],["left",5],["normal",5],["right",5],["top",5]])],["offset-rotate",new Map([["auto",5],["reverse",5]])],["column-count",new Map([["auto",10]])],["column-width",new Map([["auto",10]])],["object-fit",new Map([["contain",10],["cover",10],["fill",10],["none",10],["scale-down",10]])],["object-view-box",new Map([["none",0]])],["opacity",new Map([["percentages",10]])],["outline-style",new Map([["auto",10],["dashed",10],["dotted",10],["double",10],["groove",10],["inset",10],["none",10],["outset",10],["ridge",10],["solid",10]])],["overflow-anchor",new Map([["auto",0],["none",0]])],["overflow-clip-margin",new Map([["border-box",0],["content-box",0],["padding-box",0]])],["overflow-x",new Map([["auto",5],["clip",5],["hidden",5],["scroll",5],["visible",5]])],["overflow-y",new Map([["auto",5],["clip",5],["hidden",5],["scroll",5],["visible",5]])],["overflow",new Map([["auto",5],["clip",5],["hidden",5],["scroll",5],["visible",5]])],["overflow-wrap",new Map([["anywhere",10],["break-word",10],["normal",10]])],["overlay",new Map([["auto",0],["none",0]])],["overscroll-behavior-block",new Map([["auto",5],["contain",5],["none",5]])],["overscroll-behavior-inline",new Map([["auto",5],["contain",5],["none",5]])],["overscroll-behavior-x",new Map([["auto",5],["contain",5],["none",5]])],["overscroll-behavior-y",new Map([["auto",5],["contain",5],["none",5]])],["overscroll-behavior",new Map([["auto",5],["contain",5],["none",5]])],["page-break-after",new Map([["always",0],["auto",0],["avoid",0],["left",0],["right",0]])],["page-break-before",new Map([["always",0],["auto",0],["avoid",0],["left",0],["right",0]])],["page-break-inside",new Map([["auto",0],["avoid",0]])],["print-color-adjust",new Map([["economy",0],["exact",0]])],["quotes",new Map([["auto",10],["none",10]])],["resize",new Map([["block",0],["inline",0]])],["ruby-align",new Map([["center",5],["space-around",5],["space-between",5],["start",5]])],["ruby-overhang",new Map([["auto",0],["none",0]])],["ruby-position",new Map([["alternate",5],["inter-character",5],["over",5],["under",5]])],["scroll-behavior",new Map([["auto",10],["smooth",10]])],["animation-range-end",new Map([["normal",0]])],["animation-range-start",new Map([["normal",0]])],["animation-timeline",new Map([["scroll",0],["view",0]])],["scroll-timeline-axis",new Map([["block",0],["inline",0],["x",0],["y",0]])],["timeline-scope",new Map([["all",0],["none",0]])],["view-timeline-axis",new Map([["block",0],["inline",0],["x",0],["y",0]])],["view-timeline-inset",new Map([["auto",0]])],["scroll-padding-block-end",new Map([["auto",10]])],["scroll-padding-block-start",new Map([["auto",10]])],["scroll-padding-block",new Map([["auto",10]])],["scroll-padding-inline-end",new Map([["auto",10]])],["scroll-padding-inline-start",new Map([["auto",10]])],["scroll-padding-inline",new Map([["auto",10]])],["scroll-padding",new Map([["auto",10]])],["scroll-snap-align",new Map([["center",10],["end",10],["none",10],["start",10]])],["scroll-snap-stop",new Map([["always",10],["normal",10]])],["scroll-snap-type",new Map([["block",10],["both",10],["inline",10],["none",10],["x",10],["y",10]])],["scrollbar-color",new Map([["auto",0]])],["scrollbar-gutter",new Map([["auto",5],["stable",5]])],["scrollbar-width",new Map([["auto",5],["none",5],["thin",5]])],["shape-image-threshold",new Map([["percentages",10]])],["shape-outside",new Map([["circle",10],["gradient",10],["image",10],["inset",10],["none",10],["path",10],["polygon",10]])],["speak-as",new Map([["digits",0],["literal-punctuation",0],["no-punctuation",0],["normal",0],["spell-out",0]])],["clip-rule",new Map([["evenodd",10],["nonzero",10]])],["color-interpolation",new Map([["linearGradient",10],["sRGB",10]])],["fill-rule",new Map([["evenodd",10],["nonzero",10]])],["stroke-dasharray",new Map([["none",10]])],["stroke-linecap",new Map([["butt",10],["round",10],["square",10]])],["stroke-linejoin",new Map([["bevel",10],["miter",10],["round",10]])],["text-rendering",new Map([["auto",10],["geometricPrecision",10]])],["color-interpolation-filters",new Map([["auto",10],["linearRGB",10],["sRGB",10]])],["tab-size",new Map([["length",10]])],["border-collapse",new Map([["collapse",10],["separate",10]])],["caption-side",new Map([["bottom",10],["bottom-outside",10],["top",10],["top-outside",10]])],["text-align",new Map([["center",10],["end",10],["justify",10],["left",10],["match-parent",10],["right",10],["start",10]])],["text-align-last",new Map([["auto",5]])],["text-autospace",new Map([["auto",0],["ideograph-alpha",0],["ideograph-numeric",0],["no-autospace",0],["normal",0]])],["text-box-edge",new Map([["auto",0]])],["text-box-trim",new Map([["none",0],["trim-both",0],["trim-end",0],["trim-start",0]])],["text-box",new Map([["normal",0]])],["text-decoration-line",new Map([["grammar-error",10],["line-through",10],["none",10],["overline",10],["spelling-error",10],["underline",10],["blink",0]])],["text-decoration-skip-ink",new Map([["all",10],["auto",10],["none",10]])],["text-decoration-skip",new Map([["auto",10],["none",10]])],["text-decoration-style",new Map([["wavy",10]])],["text-decoration-thickness",new Map([["auto",10],["from-font",10],["percentage",10]])],["text-emphasis-position",new Map([["auto",10],["left",10],["over",10],["right",10],["under",10]])],["text-emphasis-style",new Map([["circle",10],["dot",10],["double-circle",10],["filled",10],["none",10],["sesame",10],["triangle",10]])],["text-indent",new Map([["each-line",0],["hanging",0]])],["text-justify",new Map([["auto",0],["inter-character",0],["inter-word",0],["none",0]])],["text-orientation",new Map([["mixed",10],["sideways",10],["upright",10]])],["text-size-adjust",new Map([["auto",0],["none",0],["percentages",0]])],["text-spacing-trim",new Map([["normal",0],["space-all",0],["space-first",0],["trim-start",0]])],["text-underline-offset",new Map([["auto",10],["percentage",10]])],["text-underline-position",new Map([["from-font",10],["left",10],["right",10],["under",10]])],["text-wrap",new Map([["wrap",5],["balance",5],["nowrap",5],["pretty",0],["stable",5]])],["text-wrap-mode",new Map([["nowrap",5],["wrap",5]])],["text-wrap-style",new Map([["auto",0],["balance",0],["pretty",0],["stable",0]])],["touch-action",new Map([["manipulation",10],["none",10],["pan-down",10],["pan-left",10],["pan-right",10],["pan-up",10],["pan-x",10],["pan-y",10],["pinch-zoom",10]])],["transform-box",new Map([["border-box",5],["content-box",5],["fill-box",5],["stroke-box",5],["view-box",5]])],["transform-origin",new Map([["bottom",10],["center",10],["left",10],["right",10],["top",10]])],["perspective-origin",new Map([["bottom",10],["center",10],["left",10],["right",10],["top",10]])],["perspective",new Map([["none",10]])],["transform",new Map([["3d",10]])],["transition",new Map([["transition-behavior",5]])],["transition-property",new Map([["all",10],["none",10]])],["transition-timing-function",new Map([["jump",10]])],["user-select",new Map([["all",0],["auto",0],["none",0],["text",0]])],["vertical-align",new Map([["baseline",10],["bottom",10],["middle",10],["sub",10],["super",10],["text-bottom",10],["text-top",10],["top",10]])],["view-transition-class",new Map([["none",0]])],["view-transition-name",new Map([["none",0]])],["visibility",new Map([["collapse",10],["hidden",10],["visible",10]])],["white-space",new Map([["break-spaces",10],["normal",10],["nowrap",10],["pre",10],["pre-line",10],["pre-wrap",10]])],["white-space-collapse",new Map([["break-spaces",5],["collapse",5],["preserve",5],["preserve-breaks",5],["preserve-spaces",5]])],["will-change",new Map([["auto",10],["contents",10],["scroll-position",10]])],["word-break",new Map([["break-all",10],["keep-all",10],["normal",10],["auto-phrase",0],["break-word",0]])],["word-spacing",new Map([["normal",10]])],["writing-mode",new Map([["horizontal-tb",10],["sideways-lr",10],["sideways-rl",10],["vertical-lr",10],["vertical-rl",10],["lr",0],["lr-tb",0],["rl",0],["rl-tb",0],["tb",0],["tb-rl",0]])],["z-index",new Map([["auto",10]])]]),p=new Set(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"]),{createPlugin:d,utils:{report:u,ruleMessages:m,validateOptions:w}}=t,h="plugin/require-baseline",g=m(h,{notBaselineProperty:(e,n)=>`Property "${e}" is not a ${n} available baseline feature.`,notBaselinePropertyValue:(e,n,t)=>`Value "${n}" of property "${e}" is not a ${t} available baseline feature.`,notBaselineType:(e,n)=>`Type "${e}" is not a ${n} available baseline feature.`,notBaselineAtRule:(e,n)=>`At-rule "${e}" is not a ${n} available baseline feature.`,notBaselineMediaCondition:(e,n)=>`Media condition "${e}" is not a ${n} available baseline feature.`,notBaselineSelector:(e,n)=>`Selector "${e}" is not a ${n} available baseline feature.`});class b{name;#e=new Set;#n=new Set;constructor(e){this.name=e}addIdentifier(e){this.#e.add(e)}hasIdentifier(e){return this.#e.has(e)}hasIdentifiers(){return this.#e.size>0}addFunction(e){this.#n.add(e)}hasFunction(e){return this.#n.has(e)}hasFunctions(){return this.#n.size>0}}class f{#t=new Map;#a=new Set;addProperty(e){if(this.#t.has(e))return this.#t.get(e);const n=new b(e);return this.#t.set(e,n),n}hasProperty(e){return this.#t.has(e)}getProperty(e){return this.#t.get(e)}hasPropertyIdentifier(e,n){const t=this.#t.get(e);return!!t&&t.hasIdentifier(n)}hasPropertyIdentifiers(e){const n=this.#t.get(e);return!!n&&n.hasIdentifiers()}hasFunction(e,n){const t=this.#t.get(e);return!!t&&t.hasFunction(n)}hasFunctions(e){const n=this.#t.get(e);return!!n&&n.hasFunctions()}addSelector(e){this.#a.add(e)}hasSelector(e){return this.#a.has(e)}}class M{#o=[];push(e){this.#o.push(e)}pop(){return this.#o.pop()}last(){return this.#o.at(-1)}hasProperty(e){return this.#o.some((n=>n.hasProperty(e)))}hasPropertyIdentifier(e,n){return this.#o.some((t=>t.hasPropertyIdentifier(e,n)))}hasPropertyIdentifiers(e){return this.#o.some((n=>n.hasPropertyIdentifiers(e)))}hasPropertyFunction(e,n){return this.#o.some((t=>t.hasFunction(e,n)))}hasPropertyFunctions(e){return this.#o.some((n=>n.hasFunctions(e)))}hasSelector(e){return this.#o.some((n=>n.hasSelector(e)))}}const y=(t,d)=>(m,b)=>{if(!w(b,h,{actual:t}))return;const y="newly"===d?.available?"newly":"widely",v="widely"===y?10:5,x=new M;function z(t){const a=new f;x.push(a);try{const o=e(t.params,{context:"atrulePrelude",atrule:"supports",parseAtrulePrelude:!0,positions:!0});let i=!1,r=0;n(o,{enter(e){if(!i){if("Identifier"===e.type&&"not"===e.name)return i=!0,void r++;if("SupportsDeclaration"===e.type){const{declaration:n}=e,t=n.property,o=a.addProperty(t);n.value.children.forEach((e=>{"Identifier"!==e.type?"Function"===e.type&&o.addFunction(e.name):o.addIdentifier(e.name)}))}if("FeatureFunction"===e.type&&"selector"===e.feature)for(const n of e.value.children)a.addSelector(n.name)}},leave(){i&&(0===r?i=!1:r--)}})}catch{}t.each((e=>{if("supports"!==e.name){switch(e.type){case"atrule":j(e);break;case"decl":P(e);break;case"rule":q(e)}"function"==typeof e.walk&&e.walk((e=>{switch(e.type){case"atrule":j(e);break;case"decl":P(e);break;case"rule":q(e)}}))}else z(e)})),x.pop()}function j(t){const{name:a}=t;if("supports"===a.toLowerCase())return void z(t);if("media"===a)return void function(t){const a=t.params;try{const o=e(a,{context:"atrulePrelude",atrule:"media",parseAtrulePrelude:!0,positions:!0});n(o,(e=>{if("Feature"===e.type){const n=e.name;if(!r.has(n))return;if(r.get(n)<v){const a=function(e){const n=1+e.name.length;return n+(e.raws.afterName?.length??0)}(t),o=e.loc.start.column,i=o+n.length;u({ruleName:h,result:b,message:g.notBaselineMediaCondition(n,y),node:t,index:a+o,endIndex:a+i})}}}))}catch{}}(t);if(!i.has(a))return;i.get(a)<v&&u({message:g.notBaselineAtRule,messageArgs:[`@${a}`,y],result:b,node:t,index:0,endIndex:a.length+1})}function P(e){const{prop:n,value:t}=e;if(function(e,n){if(x.hasProperty(n))return;if(!o.has(n))return;if(o.get(n)<v)return u({message:g.notBaselineProperty,messageArgs:[n,y],result:b,node:e,word:n}),!0;return!1}(e,n))return;a(t).walk((t=>{"word"===t.type?function(e,n,t){if(x.hasPropertyIdentifier(n,t))return;if(p.has(t))return;if(!c.has(n))return;const a=c.get(n);if(!a.has(t))return;const o=a.get(t);o<v&&u({message:g.notBaselinePropertyValue,messageArgs:[n,t,y],result:b,node:e,word:t})}(e,n,t.value):"function"===t.type&&function(e,n){if(x.hasPropertyFunction(e.prop,n))return;if(!s.has(n))return;s.get(n)<v&&u({message:g.notBaselineType,messageArgs:[n,y],result:b,node:e,word:n})}(e,t.value)}))}function q(t){const{selector:a}=t;try{const o=e(a,{context:"selector",positions:!0});n(o,(e=>{const n=e.name;if(x.hasSelector(n))return;if(!l.has(n))return;if(l.get(n)<v){let a=0;"PseudoClassSelector"===e.type?a=1:"PseudoElementSelector"===e.type&&(a=2);const o=e.loc.start.offset,i=o+n.length+a;u({ruleName:h,result:b,message:g.notBaselineSelector(n,y),node:t,index:o,endIndex:i})}}))}catch{}}m.walkAtRules(/^supports$/i,(e=>{k(e)||z(e)})),m.walk((e=>{if(("atrule"!==e.type||"supports"!==e.name.toLowerCase())&&!k(e))switch(e.type){case"atrule":j(e);break;case"rule":q(e);break;case"decl":P(e)}}))};function k(e){let n=e.parent;for(;n;){if("atrule"===n.type&&"supports"===n.name)return!0;n=n.parent}return!1}y.ruleName=h,y.messages=g;var v=d(h,y);export{v as default};
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/data/baseline-data.js","../src/data/colors.js","../src/lib/index.js"],"sourcesContent":["/**\n * @fileoverview CSS features extracted from the web-features package.\n * @author tools/generate-baseline.js\n *\n * THIS FILE IS AUTOGENERATED. DO NOT MODIFY DIRECTLY.\n */\n\nexport const BASELINE_HIGH = 10;\nexport const BASELINE_LOW = 5;\nexport const BASELINE_FALSE = 0;\n\nexport const properties = new Map([\n [\"accent-color\", 0],\n [\"alignment-baseline\", 0],\n [\"all\", 10],\n [\"anchor-name\", 0],\n [\"anchor-scope\", 0],\n [\"position-anchor\", 0],\n [\"position-area\", 0],\n [\"position-try\", 0],\n [\"position-try-fallbacks\", 0],\n [\"position-try-order\", 0],\n [\"position-visibility\", 0],\n [\"animation-composition\", 5],\n [\"animation\", 10],\n [\"animation-delay\", 10],\n [\"animation-direction\", 10],\n [\"animation-duration\", 10],\n [\"animation-fill-mode\", 10],\n [\"animation-iteration-count\", 10],\n [\"animation-name\", 10],\n [\"animation-play-state\", 10],\n [\"animation-timing-function\", 10],\n [\"appearance\", 10],\n [\"aspect-ratio\", 10],\n [\"backdrop-filter\", 5],\n [\"background\", 10],\n [\"background-attachment\", 10],\n [\"background-blend-mode\", 10],\n [\"background-clip\", 10],\n [\"background-color\", 10],\n [\"background-image\", 10],\n [\"background-origin\", 10],\n [\"background-position\", 10],\n [\"background-position-x\", 10],\n [\"background-position-y\", 10],\n [\"background-repeat\", 10],\n [\"background-size\", 10],\n [\"baseline-shift\", 0],\n [\"baseline-source\", 0],\n [\"border-image\", 10],\n [\"border-image-outset\", 10],\n [\"border-image-repeat\", 10],\n [\"border-image-slice\", 10],\n [\"border-image-source\", 10],\n [\"border-image-width\", 10],\n [\"border-bottom-left-radius\", 10],\n [\"border-bottom-right-radius\", 10],\n [\"border-radius\", 10],\n [\"border-top-left-radius\", 10],\n [\"border-top-right-radius\", 10],\n [\"border\", 10],\n [\"border-bottom\", 10],\n [\"border-bottom-color\", 10],\n [\"border-bottom-style\", 10],\n [\"border-bottom-width\", 10],\n [\"border-color\", 10],\n [\"border-left\", 10],\n [\"border-left-color\", 10],\n [\"border-left-style\", 10],\n [\"border-left-width\", 10],\n [\"border-right\", 10],\n [\"border-right-color\", 10],\n [\"border-right-style\", 10],\n [\"border-right-width\", 10],\n [\"border-style\", 10],\n [\"border-top\", 10],\n [\"border-top-color\", 10],\n [\"border-top-style\", 10],\n [\"border-top-width\", 10],\n [\"border-width\", 10],\n [\"box-decoration-break\", 0],\n [\"box-shadow\", 10],\n [\"box-sizing\", 10],\n [\"caret-color\", 10],\n [\"clip\", 0],\n [\"clip-path\", 10],\n [\"color\", 10],\n [\"color-adjust\", 0],\n [\"color-scheme\", 10],\n [\"column-fill\", 10],\n [\"column-span\", 10],\n [\"contain\", 10],\n [\"contain-intrinsic-block-size\", 5],\n [\"contain-intrinsic-height\", 5],\n [\"contain-intrinsic-inline-size\", 5],\n [\"contain-intrinsic-size\", 5],\n [\"contain-intrinsic-width\", 5],\n [\"container\", 5],\n [\"container-name\", 5],\n [\"container-type\", 5],\n [\"content\", 10],\n [\"content-visibility\", 0],\n [\"counter-set\", 5],\n [\"counter-increment\", 10],\n [\"counter-reset\", 10],\n [\"custom-property\", 10],\n [\"display\", 10],\n [\"dominant-baseline\", 10],\n [\"field-sizing\", 0],\n [\"filter\", 10],\n [\"align-content\", 10],\n [\"align-items\", 10],\n [\"align-self\", 10],\n [\"flex\", 10],\n [\"flex-basis\", 10],\n [\"flex-direction\", 10],\n [\"flex-flow\", 10],\n [\"flex-grow\", 10],\n [\"flex-shrink\", 10],\n [\"flex-wrap\", 10],\n [\"justify-content\", 10],\n [\"justify-items\", 10],\n [\"order\", 10],\n [\"place-content\", 10],\n [\"place-items\", 10],\n [\"place-self\", 10],\n [\"clear\", 10],\n [\"float\", 10],\n [\"font-family\", 10],\n [\"font-feature-settings\", 10],\n [\"font-kerning\", 10],\n [\"font-language-override\", 0],\n [\"font-optical-sizing\", 10],\n [\"font-palette\", 5],\n [\"font\", 10],\n [\"font-size\", 10],\n [\"font-size-adjust\", 5],\n [\"font-stretch\", 10],\n [\"font-style\", 10],\n [\"font-synthesis\", 10],\n [\"font-synthesis-position\", 0],\n [\"font-synthesis-small-caps\", 5],\n [\"font-synthesis-style\", 5],\n [\"font-synthesis-weight\", 5],\n [\"font-variant\", 10],\n [\"font-variant-alternates\", 5],\n [\"font-variant-caps\", 10],\n [\"font-variant-east-asian\", 10],\n [\"font-variant-emoji\", 0],\n [\"font-variant-ligatures\", 10],\n [\"font-variant-numeric\", 10],\n [\"font-variant-position\", 0],\n [\"font-variation-settings\", 10],\n [\"font-weight\", 10],\n [\"forced-color-adjust\", 5],\n [\"glyph-orientation-vertical\", 0],\n [\"gap\", 10],\n [\"grid\", 10],\n [\"grid-area\", 10],\n [\"grid-auto-columns\", 10],\n [\"grid-auto-flow\", 10],\n [\"grid-auto-rows\", 10],\n [\"grid-column\", 10],\n [\"grid-column-end\", 10],\n [\"grid-column-start\", 10],\n [\"grid-row\", 10],\n [\"grid-row-end\", 10],\n [\"grid-row-start\", 10],\n [\"grid-template\", 10],\n [\"grid-template-areas\", 10],\n [\"grid-template-columns\", 10],\n [\"grid-template-rows\", 10],\n [\"justify-self\", 10],\n [\"row-gap\", 10],\n [\"hanging-punctuation\", 0],\n [\"hyphenate-character\", 5],\n [\"hyphenate-limit-chars\", 0],\n [\"hyphens\", 5],\n [\"image-orientation\", 10],\n [\"image-rendering\", 10],\n [\"ime-mode\", 0],\n [\"rotate\", 10],\n [\"scale\", 10],\n [\"translate\", 10],\n [\"initial-letter\", 0],\n [\"interpolate-size\", 0],\n [\"isolation\", 10],\n [\"direction\", 10],\n [\"unicode-bidi\", 10],\n [\"letter-spacing\", 10],\n [\"line-break\", 10],\n [\"line-clamp\", 0],\n [\"line-height\", 10],\n [\"list-style\", 10],\n [\"list-style-image\", 10],\n [\"list-style-position\", 10],\n [\"list-style-type\", 10],\n [\"block-size\", 10],\n [\"border-block\", 10],\n [\"border-block-color\", 10],\n [\"border-block-end\", 10],\n [\"border-block-end-color\", 10],\n [\"border-block-end-style\", 10],\n [\"border-block-end-width\", 10],\n [\"border-block-start\", 10],\n [\"border-block-start-color\", 10],\n [\"border-block-start-style\", 10],\n [\"border-block-start-width\", 10],\n [\"border-block-style\", 10],\n [\"border-block-width\", 10],\n [\"border-end-end-radius\", 10],\n [\"border-end-start-radius\", 10],\n [\"border-inline\", 10],\n [\"border-inline-color\", 10],\n [\"border-inline-end\", 10],\n [\"border-inline-end-color\", 10],\n [\"border-inline-end-style\", 10],\n [\"border-inline-end-width\", 10],\n [\"border-inline-start\", 10],\n [\"border-inline-start-color\", 10],\n [\"border-inline-start-style\", 10],\n [\"border-inline-start-width\", 10],\n [\"border-inline-style\", 10],\n [\"border-inline-width\", 10],\n [\"border-start-end-radius\", 10],\n [\"border-start-start-radius\", 10],\n [\"inline-size\", 10],\n [\"inset\", 10],\n [\"inset-block\", 10],\n [\"inset-block-end\", 10],\n [\"inset-block-start\", 10],\n [\"inset-inline\", 10],\n [\"inset-inline-end\", 10],\n [\"inset-inline-start\", 10],\n [\"margin-block\", 10],\n [\"margin-block-end\", 10],\n [\"margin-block-start\", 10],\n [\"margin-inline\", 10],\n [\"margin-inline-end\", 10],\n [\"margin-inline-start\", 10],\n [\"max-block-size\", 10],\n [\"max-inline-size\", 10],\n [\"min-block-size\", 10],\n [\"min-inline-size\", 10],\n [\"overflow-block\", 10],\n [\"overflow-inline\", 10],\n [\"padding-block\", 10],\n [\"padding-block-end\", 10],\n [\"padding-block-start\", 10],\n [\"padding-inline\", 10],\n [\"padding-inline-end\", 10],\n [\"padding-inline-start\", 10],\n [\"margin\", 10],\n [\"margin-bottom\", 10],\n [\"margin-left\", 10],\n [\"margin-right\", 10],\n [\"margin-top\", 10],\n [\"margin-trim\", 0],\n [\"mask-border\", 0],\n [\"mask-border-outset\", 0],\n [\"mask-border-repeat\", 0],\n [\"mask-border-slice\", 0],\n [\"mask-border-source\", 0],\n [\"mask-border-width\", 0],\n [\"mask-type\", 10],\n [\"mask\", 5],\n [\"mask-clip\", 5],\n [\"mask-composite\", 5],\n [\"mask-image\", 5],\n [\"mask-mode\", 5],\n [\"mask-origin\", 5],\n [\"mask-position\", 5],\n [\"mask-repeat\", 5],\n [\"mask-size\", 5],\n [\"math-depth\", 5],\n [\"math-shift\", 5],\n [\"math-style\", 5],\n [\"max-height\", 10],\n [\"max-width\", 10],\n [\"min-height\", 10],\n [\"min-width\", 10],\n [\"mix-blend-mode\", 10],\n [\"offset\", 5],\n [\"offset-anchor\", 5],\n [\"offset-distance\", 5],\n [\"offset-path\", 5],\n [\"offset-position\", 5],\n [\"offset-rotate\", 5],\n [\"column-count\", 10],\n [\"column-gap\", 10],\n [\"column-rule\", 10],\n [\"column-rule-color\", 10],\n [\"column-rule-style\", 10],\n [\"column-rule-width\", 10],\n [\"column-width\", 10],\n [\"columns\", 10],\n [\"object-fit\", 10],\n [\"object-position\", 10],\n [\"object-view-box\", 0],\n [\"opacity\", 10],\n [\"fill-opacity\", 10],\n [\"stroke-opacity\", 10],\n [\"outline\", 5],\n [\"outline-color\", 10],\n [\"outline-offset\", 10],\n [\"outline-style\", 10],\n [\"outline-width\", 10],\n [\"overflow-anchor\", 0],\n [\"overflow-clip-margin\", 0],\n [\"overflow\", 5],\n [\"overflow-x\", 5],\n [\"overflow-y\", 5],\n [\"overflow-wrap\", 10],\n [\"overlay\", 0],\n [\"overscroll-behavior\", 5],\n [\"overscroll-behavior-block\", 5],\n [\"overscroll-behavior-inline\", 5],\n [\"overscroll-behavior-x\", 5],\n [\"overscroll-behavior-y\", 5],\n [\"padding\", 10],\n [\"padding-bottom\", 10],\n [\"padding-left\", 10],\n [\"padding-right\", 10],\n [\"padding-top\", 10],\n [\"page-break-after\", 0],\n [\"page-break-before\", 0],\n [\"page-break-inside\", 0],\n [\"break-after\", 10],\n [\"break-before\", 10],\n [\"break-inside\", 10],\n [\"page\", 0],\n [\"paint-order\", 0],\n [\"bottom\", 10],\n [\"left\", 10],\n [\"right\", 10],\n [\"top\", 10],\n [\"pointer-events\", 10],\n [\"position\", 10],\n [\"print-color-adjust\", 0],\n [\"quotes\", 10],\n [\"reading-flow\", 0],\n [\"resize\", 0],\n [\"line-height-step\", 0],\n [\"ruby-align\", 5],\n [\"ruby-overhang\", 0],\n [\"ruby-position\", 5],\n [\"scroll-behavior\", 10],\n [\"animation-range\", 0],\n [\"animation-range-end\", 0],\n [\"animation-range-start\", 0],\n [\"animation-timeline\", 0],\n [\"scroll-timeline\", 0],\n [\"scroll-timeline-axis\", 0],\n [\"scroll-timeline-name\", 0],\n [\"timeline-scope\", 0],\n [\"view-timeline\", 0],\n [\"view-timeline-axis\", 0],\n [\"view-timeline-inset\", 0],\n [\"view-timeline-name\", 0],\n [\"scroll-margin\", 10],\n [\"scroll-margin-block\", 10],\n [\"scroll-margin-block-end\", 10],\n [\"scroll-margin-block-start\", 10],\n [\"scroll-margin-bottom\", 10],\n [\"scroll-margin-inline\", 10],\n [\"scroll-margin-inline-end\", 10],\n [\"scroll-margin-inline-start\", 10],\n [\"scroll-margin-left\", 10],\n [\"scroll-margin-right\", 10],\n [\"scroll-margin-top\", 10],\n [\"scroll-padding\", 10],\n [\"scroll-padding-block\", 10],\n [\"scroll-padding-block-end\", 10],\n [\"scroll-padding-block-start\", 10],\n [\"scroll-padding-bottom\", 10],\n [\"scroll-padding-inline\", 10],\n [\"scroll-padding-inline-end\", 10],\n [\"scroll-padding-inline-start\", 10],\n [\"scroll-padding-left\", 10],\n [\"scroll-padding-right\", 10],\n [\"scroll-padding-top\", 10],\n [\"scroll-snap-align\", 10],\n [\"scroll-snap-stop\", 10],\n [\"scroll-snap-type\", 10],\n [\"scrollbar-color\", 0],\n [\"scrollbar-gutter\", 5],\n [\"scrollbar-width\", 5],\n [\"shape-image-threshold\", 10],\n [\"shape-margin\", 10],\n [\"shape-outside\", 10],\n [\"speak\", 0],\n [\"speak-as\", 0],\n [\"clip-rule\", 10],\n [\"color-interpolation\", 10],\n [\"cx\", 10],\n [\"cy\", 10],\n [\"d\", 10],\n [\"fill\", 10],\n [\"fill-rule\", 10],\n [\"marker\", 10],\n [\"marker-end\", 10],\n [\"marker-mid\", 10],\n [\"marker-start\", 10],\n [\"r\", 10],\n [\"rx\", 10],\n [\"ry\", 10],\n [\"shape-rendering\", 10],\n [\"stop-color\", 10],\n [\"stop-opacity\", 10],\n [\"stroke\", 10],\n [\"stroke-color\", 10],\n [\"stroke-dasharray\", 10],\n [\"stroke-dashoffset\", 10],\n [\"stroke-linecap\", 10],\n [\"stroke-linejoin\", 10],\n [\"stroke-miterlimit\", 10],\n [\"stroke-width\", 10],\n [\"text-anchor\", 10],\n [\"text-rendering\", 10],\n [\"vector-effect\", 10],\n [\"x\", 10],\n [\"y\", 10],\n [\"color-interpolation-filters\", 10],\n [\"flood-color\", 10],\n [\"flood-opacity\", 10],\n [\"lighting-color\", 10],\n [\"tab-size\", 10],\n [\"border-collapse\", 10],\n [\"border-spacing\", 10],\n [\"caption-side\", 10],\n [\"empty-cells\", 10],\n [\"table-layout\", 10],\n [\"text-align\", 10],\n [\"text-align-last\", 5],\n [\"text-autospace\", 0],\n [\"text-box\", 0],\n [\"text-box-edge\", 0],\n [\"text-box-trim\", 0],\n [\"text-combine-upright\", 10],\n [\"text-decoration\", 10],\n [\"text-decoration-color\", 10],\n [\"text-decoration-line\", 10],\n [\"text-decoration-skip\", 10],\n [\"text-decoration-skip-ink\", 10],\n [\"text-decoration-style\", 10],\n [\"text-decoration-thickness\", 10],\n [\"text-emphasis\", 10],\n [\"text-emphasis-color\", 10],\n [\"text-emphasis-position\", 10],\n [\"text-emphasis-style\", 10],\n [\"text-indent\", 10],\n [\"text-justify\", 0],\n [\"text-orientation\", 10],\n [\"text-overflow\", 10],\n [\"text-shadow\", 10],\n [\"text-size-adjust\", 0],\n [\"text-spacing-trim\", 0],\n [\"-webkit-text-fill-color\", 10],\n [\"-webkit-text-stroke\", 10],\n [\"-webkit-text-stroke-color\", 10],\n [\"-webkit-text-stroke-width\", 10],\n [\"text-transform\", 10],\n [\"text-underline-offset\", 10],\n [\"text-underline-position\", 10],\n [\"text-wrap\", 5],\n [\"text-wrap-mode\", 5],\n [\"text-wrap-style\", 0],\n [\"touch-action\", 10],\n [\"transform-box\", 5],\n [\"transform\", 10],\n [\"transform-origin\", 10],\n [\"backface-visibility\", 10],\n [\"perspective\", 10],\n [\"perspective-origin\", 10],\n [\"transform-style\", 10],\n [\"transition-behavior\", 5],\n [\"transition\", 10],\n [\"transition-delay\", 10],\n [\"transition-duration\", 10],\n [\"transition-property\", 10],\n [\"transition-timing-function\", 10],\n [\"user-select\", 0],\n [\"vertical-align\", 10],\n [\"view-transition-class\", 0],\n [\"view-transition-name\", 0],\n [\"visibility\", 10],\n [\"white-space\", 10],\n [\"white-space-collapse\", 5],\n [\"orphans\", 0],\n [\"widows\", 0],\n [\"height\", 10],\n [\"width\", 10],\n [\"will-change\", 10],\n [\"word-break\", 10],\n [\"word-spacing\", 10],\n [\"writing-mode\", 10],\n [\"z-index\", 10],\n [\"zoom\", 5],\n]);\nexport const atRules = new Map([\n [\"position-try\", 0],\n [\"keyframes\", 10],\n [\"layer\", 10],\n [\"charset\", 10],\n [\"container\", 5],\n [\"counter-style\", 5],\n [\"view-transition\", 0],\n [\"font-face\", 10],\n [\"font-palette-values\", 5],\n [\"font-feature-values\", 5],\n [\"import\", 10],\n [\"media\", 10],\n [\"namespace\", 10],\n [\"page\", 5],\n [\"property\", 5],\n [\"scope\", 0],\n [\"starting-style\", 0],\n [\"supports\", 10],\n]);\nexport const mediaConditions = new Map([\n [\"color-gamut\", 5],\n [\"device-posture\", 0],\n [\"device-aspect-ratio\", 0],\n [\"device-height\", 0],\n [\"device-width\", 0],\n [\"display-mode\", 0],\n [\"dynamic-range\", 10],\n [\"forced-colors\", 5],\n [\"any-hover\", 10],\n [\"any-pointer\", 10],\n [\"hover\", 10],\n [\"pointer\", 10],\n [\"inverted-colors\", 0],\n [\"aspect-ratio\", 10],\n [\"calc\", 10],\n [\"color\", 10],\n [\"color-index\", 10],\n [\"grid\", 10],\n [\"height\", 10],\n [\"monochrome\", 10],\n [\"nested-queries\", 10],\n [\"orientation\", 10],\n [\"width\", 10],\n [\"overflow-block\", 5],\n [\"overflow-inline\", 5],\n [\"prefers-color-scheme\", 10],\n [\"prefers-contrast\", 10],\n [\"prefers-reduced-data\", 0],\n [\"prefers-reduced-motion\", 10],\n [\"prefers-reduced-transparency\", 0],\n [\"resolution\", 5],\n [\"-webkit-device-pixel-ratio\", 10],\n [\"-webkit-max-device-pixel-ratio\", 10],\n [\"-webkit-min-device-pixel-ratio\", 10],\n [\"scripting\", 5],\n [\"-webkit-transform-3d\", 10],\n [\"update\", 5],\n [\"video-dynamic-range\", 0],\n]);\nexport const types = new Map([\n [\"abs\", 0],\n [\"sign\", 0],\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"time\", 10],\n [\"attr\", 10],\n [\"blend-mode\", 10],\n [\"line-style\", 10],\n [\"calc\", 10],\n [\"calc-keyword\", 5],\n [\"calc-size\", 0],\n [\"shape\", 0],\n [\"color\", 10],\n [\"string\", 10],\n [\"counter\", 10],\n [\"counters\", 10],\n [\"easing-function\", 10],\n [\"exp\", 5],\n [\"hypot\", 5],\n [\"log\", 5],\n [\"pow\", 5],\n [\"sqrt\", 5],\n [\"filter-function\", 10],\n [\"url\", 10],\n [\"gradient\", 10],\n [\"image\", 10],\n [\"flex\", 10],\n [\"ratio\", 10],\n [\"clamp\", 10],\n [\"max\", 10],\n [\"min\", 10],\n [\"ray\", 5],\n [\"number\", 10],\n [\"overflow\", 5],\n [\"resolution\", 5],\n [\"mod\", 5],\n [\"rem\", 5],\n [\"round\", 5],\n [\"basic-shape\", 10],\n [\"text-edge\", 0],\n [\"angle\", 10],\n [\"angle-percentage\", 10],\n [\"position\", 10],\n [\"transform-function\", 10],\n [\"acos\", 5],\n [\"asin\", 5],\n [\"atan\", 5],\n [\"atan2\", 5],\n [\"cos\", 5],\n [\"sin\", 5],\n [\"tan\", 5],\n [\"dimension\", 10],\n [\"length\", 10],\n [\"length-percentage\", 10],\n [\"percentage\", 10],\n [\"integer\", 10],\n]);\nexport const selectors = new Map([\n [\"active-view-transition\", 0],\n [\"active-view-transition-type\", 0],\n [\"autofill\", 5],\n [\"defined\", 10],\n [\"backdrop\", 10],\n [\"after\", 10],\n [\"before\", 10],\n [\"default\", 10],\n [\"details-content\", 0],\n [\"dir\", 5],\n [\"empty\", 10],\n [\"file-selector-button\", 10],\n [\"first-letter\", 10],\n [\"first-line\", 10],\n [\"focus-visible\", 10],\n [\"focus-within\", 10],\n [\"in-range\", 10],\n [\"invalid\", 10],\n [\"optional\", 10],\n [\"out-of-range\", 10],\n [\"required\", 10],\n [\"valid\", 10],\n [\"fullscreen\", 0],\n [\"has\", 5],\n [\"has-slotted\", 0],\n [\"highlight\", 0],\n [\"host\", 10],\n [\"hostfunction\", 10],\n [\"host-context\", 0],\n [\"indeterminate\", 10],\n [\"checked\", 10],\n [\"disabled\", 10],\n [\"enabled\", 10],\n [\"is\", 10],\n [\"lang\", 10],\n [\"any-link\", 10],\n [\"link\", 10],\n [\"visited\", 10],\n [\"marker\", 0],\n [\"buffering\", 0],\n [\"muted\", 0],\n [\"paused\", 0],\n [\"playing\", 0],\n [\"seeking\", 0],\n [\"stalled\", 0],\n [\"volume-locked\", 0],\n [\"modal\", 5],\n [\"namespace\", 10],\n [\"nesting\", 5],\n [\"not\", 10],\n [\"first-child\", 10],\n [\"last-child\", 10],\n [\"nth-child\", 10],\n [\"nth-last-child\", 10],\n [\"only-child\", 10],\n [\"first-of-type\", 10],\n [\"last-of-type\", 10],\n [\"nth-last-of-type\", 10],\n [\"nth-of-type\", 10],\n [\"only-of-type\", 10],\n [\"closed\", 0],\n [\"open\", 0],\n [\"first\", 0],\n [\"left\", 0],\n [\"right\", 0],\n [\"picture-in-picture\", 0],\n [\"placeholder\", 10],\n [\"placeholder-shown\", 10],\n [\"popover-open\", 5],\n [\"read-only\", 10],\n [\"read-write\", 10],\n [\"root\", 10],\n [\"scope\", 10],\n [\"selection\", 0],\n [\"attribute\", 10],\n [\"child\", 10],\n [\"class\", 10],\n [\"descendant\", 10],\n [\"id\", 10],\n [\"list\", 10],\n [\"next-sibling\", 10],\n [\"subsequent-sibling\", 10],\n [\"type\", 10],\n [\"universal\", 10],\n [\"part\", 10],\n [\"slotted\", 10],\n [\"grammar-error\", 0],\n [\"spelling-error\", 0],\n [\"state\", 5],\n [\"target\", 10],\n [\"target-text\", 5],\n [\"future\", 0],\n [\"past\", 0],\n [\"active\", 10],\n [\"focus\", 10],\n [\"hover\", 10],\n [\"user-invalid\", 5],\n [\"user-valid\", 5],\n [\"view-transition\", 0],\n [\"view-transition-group\", 0],\n [\"view-transition-image-pair\", 0],\n [\"view-transition-new\", 0],\n [\"view-transition-old\", 0],\n [\"cue\", 10],\n [\"xr-overlay\", 0],\n [\"where\", 10],\n]);\nexport const propertyValues = new Map([\n [\n \"position\",\n new Map([\n [\"absolute\", 10],\n [\"fixed\", 10],\n [\"relative\", 10],\n [\"static\", 10],\n [\"sticky\", 10],\n ]),\n ],\n [\"accent-color\", new Map([[\"auto\", 0]])],\n [\n \"alignment-baseline\",\n new Map([\n [\"alphabetic\", 0],\n [\"baseline\", 0],\n [\"central\", 0],\n [\"ideographic\", 0],\n [\"mathematical\", 0],\n [\"middle\", 0],\n ]),\n ],\n [\"align-items\", new Map([[\"anchor-center\", 0]])],\n [\"align-self\", new Map([[\"anchor-center\", 0]])],\n [\"anchor-name\", new Map([[\"none\", 0]])],\n [\n \"anchor-scope\",\n new Map([\n [\"all\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"block-size\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"bottom\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"height\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"stretch\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inline-size\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"inset-block-end\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inset-block-start\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inset-block\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inset-inline-end\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inset-inline-start\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inset-inline\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"inset\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\"justify-items\", new Map([[\"anchor-center\", 0]])],\n [\"justify-self\", new Map([[\"anchor-center\", 0]])],\n [\n \"left\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\"margin-block-end\", new Map([[\"anchor-size\", 0]])],\n [\"margin-block-start\", new Map([[\"anchor-size\", 0]])],\n [\"margin-block\", new Map([[\"anchor-size\", 0]])],\n [\n \"margin-bottom\",\n new Map([\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\"margin-inline-end\", new Map([[\"anchor-size\", 0]])],\n [\"margin-inline-start\", new Map([[\"anchor-size\", 0]])],\n [\"margin-inline\", new Map([[\"anchor-size\", 0]])],\n [\n \"margin-left\",\n new Map([\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"margin-right\",\n new Map([\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"margin-top\",\n new Map([\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"margin\",\n new Map([\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"max-block-size\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"max-height\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"none\", 10],\n [\"stretch\", 0],\n ]),\n ],\n [\n \"max-inline-size\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"max-width\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"none\", 10],\n [\"stretch\", 0],\n ]),\n ],\n [\n \"min-block-size\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"min-height\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"auto\", 10],\n [\"stretch\", 0],\n ]),\n ],\n [\n \"min-inline-size\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"min-width\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"auto\", 10],\n [\"stretch\", 0],\n ]),\n ],\n [\"place-items\", new Map([[\"anchor-center\", 0]])],\n [\"place-self\", new Map([[\"anchor-center\", 0]])],\n [\"position-anchor\", new Map([[\"auto\", 0]])],\n [\n \"position-area\",\n new Map([\n [\"block-end\", 0],\n [\"block-start\", 0],\n [\"bottom\", 0],\n [\"center\", 0],\n [\"end\", 0],\n [\"inline-end\", 0],\n [\"inline-start\", 0],\n [\"left\", 0],\n [\"none\", 0],\n [\"right\", 0],\n [\"self-end\", 0],\n [\"self-start\", 0],\n [\"span-all\", 0],\n [\"span-block-end\", 0],\n [\"span-block-start\", 0],\n [\"span-bottom\", 0],\n [\"span-end\", 0],\n [\"span-inline-end\", 0],\n [\"span-inline-start\", 0],\n [\"span-start\", 0],\n [\"span-top\", 0],\n [\"span-x-end\", 0],\n [\"span-x-start\", 0],\n [\"span-y-end\", 0],\n [\"span-y-start\", 0],\n [\"start\", 0],\n [\"top\", 0],\n [\"x-end\", 0],\n [\"x-self-end\", 0],\n [\"x-self-start\", 0],\n [\"x-start\", 0],\n [\"y-end\", 0],\n [\"y-self-end\", 0],\n [\"y-self-start\", 0],\n [\"y-start\", 0],\n ]),\n ],\n [\n \"position-try-fallbacks\",\n new Map([\n [\"flip-block\", 0],\n [\"flip-inline\", 0],\n [\"flip-start\", 0],\n [\"none\", 0],\n [\"position-area\", 0],\n ]),\n ],\n [\n \"position-try-order\",\n new Map([\n [\"most-block-size\", 0],\n [\"most-height\", 0],\n [\"most-inline-size\", 0],\n [\"most-width\", 0],\n [\"normal\", 0],\n ]),\n ],\n [\n \"position-visibility\",\n new Map([\n [\"always\", 0],\n [\"anchors-visible\", 0],\n [\"no-overflow\", 0],\n ]),\n ],\n [\n \"right\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"top\",\n new Map([\n [\"anchor\", 0],\n [\"anchor-size\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"width\",\n new Map([\n [\"anchor-size\", 0],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"stretch\", 0],\n [\"auto\", 10],\n ]),\n ],\n [\n \"animation-direction\",\n new Map([\n [\"alternate\", 10],\n [\"alternate-reverse\", 10],\n [\"normal\", 10],\n [\"reverse\", 10],\n ]),\n ],\n [\"animation-duration\", new Map([[\"auto\", 10]])],\n [\n \"animation-fill-mode\",\n new Map([\n [\"backwards\", 10],\n [\"both\", 10],\n [\"forwards\", 10],\n [\"none\", 10],\n ]),\n ],\n [\"animation-iteration-count\", new Map([[\"infinite\", 10]])],\n [\"animation-name\", new Map([[\"none\", 10]])],\n [\n \"animation-play-state\",\n new Map([\n [\"paused\", 10],\n [\"running\", 10],\n ]),\n ],\n [\"animation-timing-function\", new Map([[\"jump\", 10]])],\n [\n \"appearance\",\n new Map([\n [\"auto\", 10],\n [\"button\", 10],\n [\"checkbox\", 10],\n [\"listbox\", 10],\n [\"menulist\", 10],\n [\"menulist-button\", 10],\n [\"meter\", 10],\n [\"none\", 10],\n [\"progress-bar\", 10],\n [\"radio\", 10],\n [\"searchfield\", 10],\n [\"textarea\", 10],\n [\"textfield\", 10],\n ]),\n ],\n [\"aspect-ratio\", new Map([[\"auto\", 10]])],\n [\n \"background-attachment\",\n new Map([\n [\"fixed\", 10],\n [\"local\", 10],\n [\"scroll\", 10],\n ]),\n ],\n [\n \"background-clip\",\n new Map([\n [\"border-box\", 10],\n [\"content-box\", 10],\n [\"padding-box\", 10],\n [\"border-area\", 0],\n [\"text\", 0],\n ]),\n ],\n [\n \"background\",\n new Map([\n [\"background-clip\", 10],\n [\"background-origin\", 10],\n [\"background-size\", 10],\n ]),\n ],\n [\n \"background-image\",\n new Map([\n [\"none\", 10],\n [\"element\", 0],\n [\"gradients\", 10],\n [\"image-set\", 5],\n ]),\n ],\n [\n \"background-origin\",\n new Map([\n [\"border-box\", 10],\n [\"content-box\", 10],\n [\"padding-box\", 10],\n ]),\n ],\n [\n \"background-position\",\n new Map([\n [\"bottom\", 10],\n [\"center\", 10],\n [\"left\", 10],\n [\"right\", 10],\n [\"top\", 10],\n ]),\n ],\n [\n \"background-repeat\",\n new Map([\n [\"2-value\", 10],\n [\"no-repeat\", 10],\n [\"repeat\", 10],\n [\"repeat-x\", 10],\n [\"repeat-y\", 10],\n [\"round\", 10],\n [\"space\", 10],\n ]),\n ],\n [\n \"background-size\",\n new Map([\n [\"auto\", 10],\n [\"contain\", 10],\n [\"cover\", 10],\n ]),\n ],\n [\n \"baseline-shift\",\n new Map([\n [\"baseline\", 0],\n [\"sub\", 0],\n [\"super\", 0],\n ]),\n ],\n [\n \"baseline-source\",\n new Map([\n [\"auto\", 0],\n [\"first\", 0],\n [\"last\", 0],\n ]),\n ],\n [\n \"border-image-repeat\",\n new Map([\n [\"repeat\", 10],\n [\"round\", 10],\n [\"space\", 10],\n [\"stretch\", 10],\n ]),\n ],\n [\"border-image-width\", new Map([[\"auto\", 10]])],\n [\n \"border-image\",\n new Map([\n [\"fill\", 10],\n [\"gradient\", 10],\n ]),\n ],\n [\"border-bottom-left-radius\", new Map([[\"percentages\", 10]])],\n [\"border-bottom-right-radius\", new Map([[\"percentages\", 10]])],\n [\"border-radius\", new Map([[\"percentages\", 10]])],\n [\"border-top-left-radius\", new Map([[\"percentages\", 10]])],\n [\"border-top-right-radius\", new Map([[\"percentages\", 10]])],\n [\n \"border-style\",\n new Map([\n [\"dashed\", 10],\n [\"dotted\", 10],\n [\"double\", 10],\n [\"groove\", 10],\n [\"hidden\", 10],\n [\"inset\", 10],\n [\"none\", 10],\n [\"outset\", 10],\n [\"ridge\", 10],\n [\"solid\", 10],\n ]),\n ],\n [\n \"box-decoration-break\",\n new Map([\n [\"clone\", 0],\n [\"slice\", 0],\n ]),\n ],\n [\"box-shadow\", new Map([[\"inset\", 10]])],\n [\n \"box-sizing\",\n new Map([\n [\"border-box\", 10],\n [\"content-box\", 10],\n ]),\n ],\n [\"clip\", new Map([[\"auto\", 0]])],\n [\n \"clip-path\",\n new Map([\n [\"path\", 10],\n [\"fill-box\", 5],\n [\"stroke-box\", 5],\n [\"view-box\", 5],\n ]),\n ],\n [\n \"color-scheme\",\n new Map([\n [\"dark\", 10],\n [\"light\", 10],\n [\"normal\", 10],\n ]),\n ],\n [\n \"break-after\",\n new Map([\n [\"avoid-column\", 0],\n [\"column\", 0],\n [\"always\", 10],\n [\"auto\", 10],\n [\"avoid\", 10],\n [\"avoid-page\", 10],\n [\"left\", 10],\n [\"page\", 10],\n [\"recto\", 10],\n [\"right\", 10],\n [\"verso\", 10],\n ]),\n ],\n [\n \"break-before\",\n new Map([\n [\"avoid-column\", 0],\n [\"column\", 0],\n [\"always\", 10],\n [\"auto\", 10],\n [\"avoid\", 10],\n [\"avoid-page\", 10],\n [\"left\", 10],\n [\"page\", 10],\n [\"recto\", 10],\n [\"right\", 10],\n [\"verso\", 10],\n ]),\n ],\n [\n \"break-inside\",\n new Map([\n [\"avoid-column\", 0],\n [\"auto\", 10],\n [\"avoid\", 10],\n [\"avoid-page\", 10],\n ]),\n ],\n [\n \"column-fill\",\n new Map([\n [\"auto\", 10],\n [\"balance\", 10],\n ]),\n ],\n [\n \"column-span\",\n new Map([\n [\"all\", 10],\n [\"none\", 10],\n ]),\n ],\n [\n \"contain\",\n new Map([\n [\"content\", 10],\n [\"none\", 10],\n [\"strict\", 10],\n [\"inline-size\", 5],\n [\"layout\", 10],\n [\"paint\", 10],\n [\"size\", 10],\n [\"style\", 10],\n ]),\n ],\n [\"contain-intrinsic-block-size\", new Map([[\"none\", 5]])],\n [\"contain-intrinsic-height\", new Map([[\"none\", 5]])],\n [\"contain-intrinsic-inline-size\", new Map([[\"none\", 5]])],\n [\"contain-intrinsic-size\", new Map([[\"none\", 5]])],\n [\"contain-intrinsic-width\", new Map([[\"none\", 5]])],\n [\"container-name\", new Map([[\"none\", 5]])],\n [\n \"container-type\",\n new Map([\n [\"inline-size\", 5],\n [\"normal\", 5],\n [\"size\", 5],\n [\"scroll-state\", 0],\n ]),\n ],\n [\n \"content\",\n new Map([\n [\"gradient\", 10],\n [\"none\", 10],\n [\"normal\", 10],\n [\"url\", 10],\n [\"image-set\", 5],\n ]),\n ],\n [\n \"content-visibility\",\n new Map([\n [\"auto\", 0],\n [\"hidden\", 0],\n [\"visible\", 0],\n ]),\n ],\n [\n \"counter-reset\",\n new Map([\n [\"reversed\", 0],\n [\"list-item\", 10],\n [\"none\", 10],\n ]),\n ],\n [\n \"counter-set\",\n new Map([\n [\"list-item\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"counter-increment\",\n new Map([\n [\"list-item\", 10],\n [\"none\", 10],\n ]),\n ],\n [\n \"image-rendering\",\n new Map([\n [\"crisp-edges\", 0],\n [\"auto\", 10],\n [\"pixelated\", 10],\n [\"smooth\", 0],\n ]),\n ],\n [\n \"text-overflow\",\n new Map([\n [\"string\", 0],\n [\"clip\", 10],\n [\"ellipsis\", 10],\n ]),\n ],\n [\n \"custom-property\",\n new Map([\n [\"var\", 10],\n [\"env\", 10],\n ]),\n ],\n [\n \"display\",\n new Map([\n [\"block\", 10],\n [\"inline\", 10],\n [\"inline-block\", 10],\n [\"none\", 10],\n [\"contents\", 0],\n [\"flow-root\", 10],\n [\"list-item\", 10],\n [\"ruby\", 0],\n [\"ruby-base\", 0],\n [\"ruby-base-container\", 0],\n [\"ruby-text\", 0],\n [\"ruby-text-container\", 0],\n [\"inline-table\", 10],\n [\"table\", 10],\n [\"table-caption\", 10],\n [\"table-cell\", 10],\n [\"table-column\", 10],\n [\"table-column-group\", 10],\n [\"table-footer-group\", 10],\n [\"table-header-group\", 10],\n [\"table-row\", 10],\n [\"table-row-group\", 10],\n [\"flex\", 10],\n [\"inline-flex\", 10],\n [\"grid\", 10],\n [\"inline-grid\", 10],\n [\"math\", 5],\n ]),\n ],\n [\n \"dominant-baseline\",\n new Map([\n [\"alphabetic\", 10],\n [\"auto\", 10],\n [\"central\", 10],\n [\"hanging\", 10],\n [\"ideographic\", 10],\n [\"mathematical\", 10],\n [\"middle\", 10],\n ]),\n ],\n [\n \"field-sizing\",\n new Map([\n [\"content\", 0],\n [\"fixed\", 0],\n ]),\n ],\n [\n \"flex-basis\",\n new Map([\n [\"auto\", 10],\n [\"content\", 10],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n ]),\n ],\n [\n \"flex-direction\",\n new Map([\n [\"column\", 10],\n [\"column-reverse\", 10],\n [\"row\", 10],\n [\"row-reverse\", 10],\n ]),\n ],\n [\n \"flex-wrap\",\n new Map([\n [\"nowrap\", 10],\n [\"wrap\", 10],\n [\"wrap-reverse\", 10],\n ]),\n ],\n [\"flex\", new Map([[\"none\", 10]])],\n [\n \"clear\",\n new Map([\n [\"both\", 10],\n [\"left\", 10],\n [\"right\", 10],\n [\"inline-end\", 10],\n [\"inline-start\", 10],\n ]),\n ],\n [\n \"float\",\n new Map([\n [\"left\", 10],\n [\"none\", 10],\n [\"right\", 10],\n [\"inline-end\", 10],\n [\"inline-start\", 10],\n ]),\n ],\n [\n \"font-family\",\n new Map([\n [\"math\", 0],\n [\"system-ui\", 10],\n [\"ui-monospace\", 0],\n [\"ui-rounded\", 0],\n [\"ui-sans-serif\", 0],\n [\"ui-serif\", 0],\n ]),\n ],\n [\"font-feature-settings\", new Map([[\"normal\", 10]])],\n [\n \"font-optical-sizing\",\n new Map([\n [\"auto\", 10],\n [\"none\", 10],\n ]),\n ],\n [\n \"font-palette\",\n new Map([\n [\"dark\", 5],\n [\"light\", 5],\n [\"normal\", 5],\n ]),\n ],\n [\n \"font\",\n new Map([\n [\"caption\", 10],\n [\"icon\", 10],\n [\"menu\", 10],\n [\"message-box\", 10],\n [\"small-caption\", 10],\n [\"status-bar\", 10],\n ]),\n ],\n [\n \"font-size\",\n new Map([\n [\"xxx-large\", 10],\n [\"math\", 5],\n ]),\n ],\n [\n \"font-size-adjust\",\n new Map([\n [\"from-font\", 5],\n [\"none\", 5],\n [\"two-values\", 5],\n ]),\n ],\n [\"font-stretch\", new Map([[\"percentage\", 10]])],\n [\n \"font-style\",\n new Map([\n [\"italic\", 10],\n [\"normal\", 10],\n [\"oblique-angle\", 10],\n ]),\n ],\n [\n \"font-synthesis\",\n new Map([\n [\"position\", 10],\n [\"small-caps\", 10],\n [\"style\", 10],\n [\"weight\", 10],\n ]),\n ],\n [\n \"font-synthesis-position\",\n new Map([\n [\"auto\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"font-synthesis-small-caps\",\n new Map([\n [\"auto\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"font-synthesis-style\",\n new Map([\n [\"auto\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"font-synthesis-weight\",\n new Map([\n [\"auto\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"font-variant\",\n new Map([\n [\"historical-forms\", 10],\n [\"none\", 10],\n [\"normal\", 10],\n [\"sub\", 10],\n [\"super\", 10],\n ]),\n ],\n [\n \"font-variant-alternates\",\n new Map([\n [\"annotation\", 5],\n [\"historical-forms\", 5],\n [\"normal\", 5],\n [\"ornaments\", 5],\n [\"styleset\", 5],\n [\"stylistic\", 5],\n [\"swash\", 5],\n ]),\n ],\n [\n \"font-variant-caps\",\n new Map([\n [\"all-petite-caps\", 10],\n [\"all-small-caps\", 10],\n [\"normal\", 10],\n [\"petite-caps\", 10],\n [\"small-caps\", 10],\n [\"titling-caps\", 10],\n [\"unicase\", 10],\n ]),\n ],\n [\n \"font-variant-east-asian\",\n new Map([\n [\"full-width\", 10],\n [\"jis04\", 10],\n [\"jis78\", 10],\n [\"jis83\", 10],\n [\"jis90\", 10],\n [\"normal\", 10],\n [\"proportional-width\", 10],\n [\"ruby\", 10],\n [\"simplified\", 10],\n [\"traditional\", 10],\n ]),\n ],\n [\n \"font-variant-emoji\",\n new Map([\n [\"emoji\", 0],\n [\"normal\", 0],\n [\"text\", 0],\n [\"unicode\", 0],\n ]),\n ],\n [\n \"font-variant-ligatures\",\n new Map([\n [\"common-ligatures\", 10],\n [\"contextual\", 10],\n [\"discretionary-ligatures\", 10],\n [\"historical-ligatures\", 10],\n [\"no-common-ligatures\", 10],\n [\"no-contextual\", 10],\n [\"no-discretionary-ligatures\", 10],\n [\"no-historical-ligatures\", 10],\n [\"none\", 10],\n [\"normal\", 10],\n ]),\n ],\n [\n \"font-variant-numeric\",\n new Map([\n [\"diagonal-fractions\", 10],\n [\"lining-nums\", 10],\n [\"normal\", 10],\n [\"oldstyle-nums\", 10],\n [\"ordinal\", 10],\n [\"proportional-nums\", 10],\n [\"slashed-zero\", 10],\n [\"stacked-fractions\", 10],\n [\"tabular-nums\", 10],\n ]),\n ],\n [\n \"font-variant-position\",\n new Map([\n [\"normal\", 0],\n [\"sub\", 0],\n [\"super\", 0],\n ]),\n ],\n [\n \"font-weight\",\n new Map([\n [\"bold\", 10],\n [\"bolder\", 10],\n [\"lighter\", 10],\n [\"normal\", 10],\n [\"number\", 10],\n ]),\n ],\n [\n \"forced-color-adjust\",\n new Map([\n [\"auto\", 5],\n [\"none\", 5],\n [\"preserve-parent-color\", 5],\n ]),\n ],\n [\n \"grid-auto-flow\",\n new Map([\n [\"column\", 10],\n [\"dense\", 10],\n [\"row\", 10],\n ]),\n ],\n [\"grid-template-areas\", new Map([[\"none\", 10]])],\n [\n \"grid-template-columns\",\n new Map([\n [\"auto\", 10],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"minmax\", 10],\n [\"none\", 10],\n [\"repeat\", 10],\n [\"animation\", 5],\n [\"masonry\", 0],\n [\"subgrid\", 5],\n ]),\n ],\n [\n \"grid-template-rows\",\n new Map([\n [\"auto\", 10],\n [\"fit-content\", 10],\n [\"max-content\", 10],\n [\"min-content\", 10],\n [\"minmax\", 10],\n [\"none\", 10],\n [\"repeat\", 10],\n [\"animation\", 5],\n [\"masonry\", 0],\n [\"subgrid\", 5],\n ]),\n ],\n [\"grid-template\", new Map([[\"none\", 10]])],\n [\n \"hanging-punctuation\",\n new Map([\n [\"allow-end\", 0],\n [\"first\", 0],\n [\"last\", 0],\n [\"none\", 0],\n ]),\n ],\n [\"hyphenate-character\", new Map([[\"auto\", 5]])],\n [\"hyphenate-limit-chars\", new Map([[\"auto\", 0]])],\n [\"hyphens\", new Map([[\"auto\", 5]])],\n [\n \"image-orientation\",\n new Map([\n [\"from-image\", 10],\n [\"none\", 10],\n ]),\n ],\n [\"rotate\", new Map([[\"none\", 10]])],\n [\"scale\", new Map([[\"none\", 10]])],\n [\"translate\", new Map([[\"none\", 10]])],\n [\"initial-letter\", new Map([[\"normal\", 0]])],\n [\n \"interpolate-size\",\n new Map([\n [\"allow-keywords\", 0],\n [\"numeric-only\", 0],\n ]),\n ],\n [\n \"direction\",\n new Map([\n [\"ltr\", 10],\n [\"rtl\", 10],\n ]),\n ],\n [\n \"unicode-bidi\",\n new Map([\n [\"bidi-override\", 10],\n [\"embed\", 10],\n [\"isolate\", 10],\n [\"isolate-override\", 10],\n [\"normal\", 10],\n [\"plaintext\", 10],\n ]),\n ],\n [\"letter-spacing\", new Map([[\"normal\", 10]])],\n [\n \"line-break\",\n new Map([\n [\"anywhere\", 10],\n [\"auto\", 10],\n [\"loose\", 10],\n [\"normal\", 10],\n [\"strict\", 10],\n ]),\n ],\n [\"line-clamp\", new Map([[\"none\", 0]])],\n [\"line-height\", new Map([[\"normal\", 10]])],\n [\"list-style-image\", new Map([[\"none\", 10]])],\n [\n \"list-style-position\",\n new Map([\n [\"inside\", 10],\n [\"outside\", 10],\n ]),\n ],\n [\n \"list-style-type\",\n new Map([\n [\"arabic-indic\", 10],\n [\"armenian\", 10],\n [\"bengali\", 10],\n [\"cambodian\", 10],\n [\"circle\", 10],\n [\"cjk-decimal\", 10],\n [\"cjk-earthly-branch\", 10],\n [\"cjk-heavenly-stem\", 10],\n [\"cjk-ideographic\", 10],\n [\"decimal\", 10],\n [\"decimal-leading-zero\", 10],\n [\"devanagari\", 10],\n [\"disc\", 10],\n [\"disclosure-closed\", 10],\n [\"disclosure-open\", 10],\n [\"ethiopic-numeric\", 10],\n [\"georgian\", 10],\n [\"gujarati\", 10],\n [\"gurmukhi\", 10],\n [\"hebrew\", 10],\n [\"hiragana\", 10],\n [\"hiragana-iroha\", 10],\n [\"japanese-formal\", 10],\n [\"japanese-informal\", 10],\n [\"kannada\", 10],\n [\"katakana\", 10],\n [\"katakana-iroha\", 10],\n [\"khmer\", 10],\n [\"korean-hangul-formal\", 10],\n [\"korean-hanja-formal\", 10],\n [\"korean-hanja-informal\", 10],\n [\"lao\", 10],\n [\"lower-alpha\", 10],\n [\"lower-armenian\", 10],\n [\"lower-greek\", 10],\n [\"lower-latin\", 10],\n [\"lower-roman\", 10],\n [\"malayalam\", 10],\n [\"mongolian\", 10],\n [\"myanmar\", 10],\n [\"none\", 10],\n [\"oriya\", 10],\n [\"persian\", 10],\n [\"simp-chinese-formal\", 10],\n [\"simp-chinese-informal\", 10],\n [\"square\", 10],\n [\"string\", 10],\n [\"symbols\", 10],\n [\"tamil\", 10],\n [\"telugu\", 10],\n [\"thai\", 10],\n [\"tibetan\", 10],\n [\"trad-chinese-formal\", 10],\n [\"trad-chinese-informal\", 10],\n [\"upper-alpha\", 10],\n [\"upper-armenian\", 10],\n [\"upper-latin\", 10],\n [\"upper-roman\", 10],\n ]),\n ],\n [\"list-style\", new Map([[\"symbols\", 10]])],\n [\"overflow-block\", new Map([[\"overlay\", 10]])],\n [\"overflow-inline\", new Map([[\"overlay\", 10]])],\n [\n \"margin-trim\",\n new Map([\n [\"block\", 0],\n [\"block-end\", 0],\n [\"block-start\", 0],\n [\"inline\", 0],\n [\"inline-end\", 0],\n [\"inline-start\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"mask-type\",\n new Map([\n [\"alpha\", 10],\n [\"luminance\", 10],\n ]),\n ],\n [\n \"mask-clip\",\n new Map([\n [\"border\", 5],\n [\"content\", 5],\n [\"padding\", 5],\n [\"text\", 5],\n ]),\n ],\n [\n \"mask-composite\",\n new Map([\n [\"add\", 5],\n [\"exclude\", 5],\n [\"intersect\", 5],\n [\"subtract\", 5],\n ]),\n ],\n [\n \"mask-mode\",\n new Map([\n [\"alpha\", 5],\n [\"luminance\", 5],\n [\"match-source\", 5],\n ]),\n ],\n [\n \"mask-origin\",\n new Map([\n [\"border\", 5],\n [\"content\", 5],\n [\"fill-box\", 5],\n [\"padding\", 5],\n [\"stroke-box\", 5],\n [\"view-box\", 5],\n ]),\n ],\n [\n \"text-transform\",\n new Map([\n [\"math-auto\", 5],\n [\"capitalize\", 10],\n [\"full-size-kana\", 10],\n [\"full-width\", 10],\n [\"lowercase\", 10],\n [\"none\", 10],\n [\"uppercase\", 10],\n ]),\n ],\n [\n \"mix-blend-mode\",\n new Map([\n [\"plus-darker\", 10],\n [\"plus-lighter\", 10],\n ]),\n ],\n [\n \"offset-anchor\",\n new Map([\n [\"auto\", 5],\n [\"bottom\", 5],\n [\"center\", 5],\n [\"left\", 5],\n [\"right\", 5],\n [\"top\", 5],\n ]),\n ],\n [\n \"offset-path\",\n new Map([\n [\"border-box\", 5],\n [\"content-box\", 5],\n [\"fill-box\", 5],\n [\"margin-box\", 5],\n [\"none\", 5],\n [\"padding-box\", 5],\n [\"path\", 5],\n [\"ray\", 5],\n [\"stroke-box\", 5],\n [\"url\", 5],\n [\"view-box\", 5],\n ]),\n ],\n [\n \"offset-position\",\n new Map([\n [\"auto\", 5],\n [\"bottom\", 5],\n [\"center\", 5],\n [\"left\", 5],\n [\"normal\", 5],\n [\"right\", 5],\n [\"top\", 5],\n ]),\n ],\n [\n \"offset-rotate\",\n new Map([\n [\"auto\", 5],\n [\"reverse\", 5],\n ]),\n ],\n [\"column-count\", new Map([[\"auto\", 10]])],\n [\"column-width\", new Map([[\"auto\", 10]])],\n [\n \"object-fit\",\n new Map([\n [\"contain\", 10],\n [\"cover\", 10],\n [\"fill\", 10],\n [\"none\", 10],\n [\"scale-down\", 10],\n ]),\n ],\n [\"object-view-box\", new Map([[\"none\", 0]])],\n [\"opacity\", new Map([[\"percentages\", 10]])],\n [\n \"outline-style\",\n new Map([\n [\"auto\", 10],\n [\"dashed\", 10],\n [\"dotted\", 10],\n [\"double\", 10],\n [\"groove\", 10],\n [\"inset\", 10],\n [\"none\", 10],\n [\"outset\", 10],\n [\"ridge\", 10],\n [\"solid\", 10],\n ]),\n ],\n [\n \"overflow-anchor\",\n new Map([\n [\"auto\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"overflow-clip-margin\",\n new Map([\n [\"border-box\", 0],\n [\"content-box\", 0],\n [\"padding-box\", 0],\n ]),\n ],\n [\n \"overflow-x\",\n new Map([\n [\"auto\", 5],\n [\"clip\", 5],\n [\"hidden\", 5],\n [\"scroll\", 5],\n [\"visible\", 5],\n ]),\n ],\n [\n \"overflow-y\",\n new Map([\n [\"auto\", 5],\n [\"clip\", 5],\n [\"hidden\", 5],\n [\"scroll\", 5],\n [\"visible\", 5],\n ]),\n ],\n [\n \"overflow\",\n new Map([\n [\"auto\", 5],\n [\"clip\", 5],\n [\"hidden\", 5],\n [\"scroll\", 5],\n [\"visible\", 5],\n ]),\n ],\n [\n \"overflow-wrap\",\n new Map([\n [\"anywhere\", 10],\n [\"break-word\", 10],\n [\"normal\", 10],\n ]),\n ],\n [\n \"overlay\",\n new Map([\n [\"auto\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"overscroll-behavior-block\",\n new Map([\n [\"auto\", 5],\n [\"contain\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"overscroll-behavior-inline\",\n new Map([\n [\"auto\", 5],\n [\"contain\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"overscroll-behavior-x\",\n new Map([\n [\"auto\", 5],\n [\"contain\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"overscroll-behavior-y\",\n new Map([\n [\"auto\", 5],\n [\"contain\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"overscroll-behavior\",\n new Map([\n [\"auto\", 5],\n [\"contain\", 5],\n [\"none\", 5],\n ]),\n ],\n [\n \"page-break-after\",\n new Map([\n [\"always\", 0],\n [\"auto\", 0],\n [\"avoid\", 0],\n [\"left\", 0],\n [\"right\", 0],\n ]),\n ],\n [\n \"page-break-before\",\n new Map([\n [\"always\", 0],\n [\"auto\", 0],\n [\"avoid\", 0],\n [\"left\", 0],\n [\"right\", 0],\n ]),\n ],\n [\n \"page-break-inside\",\n new Map([\n [\"auto\", 0],\n [\"avoid\", 0],\n ]),\n ],\n [\n \"print-color-adjust\",\n new Map([\n [\"economy\", 0],\n [\"exact\", 0],\n ]),\n ],\n [\n \"quotes\",\n new Map([\n [\"auto\", 10],\n [\"none\", 10],\n ]),\n ],\n [\n \"resize\",\n new Map([\n [\"block\", 0],\n [\"inline\", 0],\n ]),\n ],\n [\n \"ruby-align\",\n new Map([\n [\"center\", 5],\n [\"space-around\", 5],\n [\"space-between\", 5],\n [\"start\", 5],\n ]),\n ],\n [\n \"ruby-overhang\",\n new Map([\n [\"auto\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"ruby-position\",\n new Map([\n [\"alternate\", 5],\n [\"inter-character\", 5],\n [\"over\", 5],\n [\"under\", 5],\n ]),\n ],\n [\n \"scroll-behavior\",\n new Map([\n [\"auto\", 10],\n [\"smooth\", 10],\n ]),\n ],\n [\"animation-range-end\", new Map([[\"normal\", 0]])],\n [\"animation-range-start\", new Map([[\"normal\", 0]])],\n [\n \"animation-timeline\",\n new Map([\n [\"scroll\", 0],\n [\"view\", 0],\n ]),\n ],\n [\n \"scroll-timeline-axis\",\n new Map([\n [\"block\", 0],\n [\"inline\", 0],\n [\"x\", 0],\n [\"y\", 0],\n ]),\n ],\n [\n \"timeline-scope\",\n new Map([\n [\"all\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"view-timeline-axis\",\n new Map([\n [\"block\", 0],\n [\"inline\", 0],\n [\"x\", 0],\n [\"y\", 0],\n ]),\n ],\n [\"view-timeline-inset\", new Map([[\"auto\", 0]])],\n [\"scroll-padding-block-end\", new Map([[\"auto\", 10]])],\n [\"scroll-padding-block-start\", new Map([[\"auto\", 10]])],\n [\"scroll-padding-block\", new Map([[\"auto\", 10]])],\n [\"scroll-padding-inline-end\", new Map([[\"auto\", 10]])],\n [\"scroll-padding-inline-start\", new Map([[\"auto\", 10]])],\n [\"scroll-padding-inline\", new Map([[\"auto\", 10]])],\n [\"scroll-padding\", new Map([[\"auto\", 10]])],\n [\n \"scroll-snap-align\",\n new Map([\n [\"center\", 10],\n [\"end\", 10],\n [\"none\", 10],\n [\"start\", 10],\n ]),\n ],\n [\n \"scroll-snap-stop\",\n new Map([\n [\"always\", 10],\n [\"normal\", 10],\n ]),\n ],\n [\n \"scroll-snap-type\",\n new Map([\n [\"block\", 10],\n [\"both\", 10],\n [\"inline\", 10],\n [\"none\", 10],\n [\"x\", 10],\n [\"y\", 10],\n ]),\n ],\n [\"scrollbar-color\", new Map([[\"auto\", 0]])],\n [\n \"scrollbar-gutter\",\n new Map([\n [\"auto\", 5],\n [\"stable\", 5],\n ]),\n ],\n [\n \"scrollbar-width\",\n new Map([\n [\"auto\", 5],\n [\"none\", 5],\n [\"thin\", 5],\n ]),\n ],\n [\"shape-image-threshold\", new Map([[\"percentages\", 10]])],\n [\n \"shape-outside\",\n new Map([\n [\"circle\", 10],\n [\"gradient\", 10],\n [\"image\", 10],\n [\"inset\", 10],\n [\"none\", 10],\n [\"path\", 10],\n [\"polygon\", 10],\n ]),\n ],\n [\n \"speak-as\",\n new Map([\n [\"digits\", 0],\n [\"literal-punctuation\", 0],\n [\"no-punctuation\", 0],\n [\"normal\", 0],\n [\"spell-out\", 0],\n ]),\n ],\n [\n \"clip-rule\",\n new Map([\n [\"evenodd\", 10],\n [\"nonzero\", 10],\n ]),\n ],\n [\n \"color-interpolation\",\n new Map([\n [\"linearGradient\", 10],\n [\"sRGB\", 10],\n ]),\n ],\n [\n \"fill-rule\",\n new Map([\n [\"evenodd\", 10],\n [\"nonzero\", 10],\n ]),\n ],\n [\"stroke-dasharray\", new Map([[\"none\", 10]])],\n [\n \"stroke-linecap\",\n new Map([\n [\"butt\", 10],\n [\"round\", 10],\n [\"square\", 10],\n ]),\n ],\n [\n \"stroke-linejoin\",\n new Map([\n [\"bevel\", 10],\n [\"miter\", 10],\n [\"round\", 10],\n ]),\n ],\n [\n \"text-rendering\",\n new Map([\n [\"auto\", 10],\n [\"geometricPrecision\", 10],\n ]),\n ],\n [\n \"color-interpolation-filters\",\n new Map([\n [\"auto\", 10],\n [\"linearRGB\", 10],\n [\"sRGB\", 10],\n ]),\n ],\n [\"tab-size\", new Map([[\"length\", 10]])],\n [\n \"border-collapse\",\n new Map([\n [\"collapse\", 10],\n [\"separate\", 10],\n ]),\n ],\n [\n \"caption-side\",\n new Map([\n [\"bottom\", 10],\n [\"bottom-outside\", 10],\n [\"top\", 10],\n [\"top-outside\", 10],\n ]),\n ],\n [\n \"text-align\",\n new Map([\n [\"center\", 10],\n [\"end\", 10],\n [\"justify\", 10],\n [\"left\", 10],\n [\"match-parent\", 10],\n [\"right\", 10],\n [\"start\", 10],\n ]),\n ],\n [\"text-align-last\", new Map([[\"auto\", 5]])],\n [\n \"text-autospace\",\n new Map([\n [\"auto\", 0],\n [\"ideograph-alpha\", 0],\n [\"ideograph-numeric\", 0],\n [\"no-autospace\", 0],\n [\"normal\", 0],\n ]),\n ],\n [\"text-box-edge\", new Map([[\"auto\", 0]])],\n [\n \"text-box-trim\",\n new Map([\n [\"none\", 0],\n [\"trim-both\", 0],\n [\"trim-end\", 0],\n [\"trim-start\", 0],\n ]),\n ],\n [\"text-box\", new Map([[\"normal\", 0]])],\n [\n \"text-decoration-line\",\n new Map([\n [\"grammar-error\", 10],\n [\"line-through\", 10],\n [\"none\", 10],\n [\"overline\", 10],\n [\"spelling-error\", 10],\n [\"underline\", 10],\n [\"blink\", 0],\n ]),\n ],\n [\n \"text-decoration-skip-ink\",\n new Map([\n [\"all\", 10],\n [\"auto\", 10],\n [\"none\", 10],\n ]),\n ],\n [\n \"text-decoration-skip\",\n new Map([\n [\"auto\", 10],\n [\"none\", 10],\n ]),\n ],\n [\"text-decoration-style\", new Map([[\"wavy\", 10]])],\n [\n \"text-decoration-thickness\",\n new Map([\n [\"auto\", 10],\n [\"from-font\", 10],\n [\"percentage\", 10],\n ]),\n ],\n [\n \"text-emphasis-position\",\n new Map([\n [\"auto\", 10],\n [\"left\", 10],\n [\"over\", 10],\n [\"right\", 10],\n [\"under\", 10],\n ]),\n ],\n [\n \"text-emphasis-style\",\n new Map([\n [\"circle\", 10],\n [\"dot\", 10],\n [\"double-circle\", 10],\n [\"filled\", 10],\n [\"none\", 10],\n [\"sesame\", 10],\n [\"triangle\", 10],\n ]),\n ],\n [\n \"text-indent\",\n new Map([\n [\"each-line\", 0],\n [\"hanging\", 0],\n ]),\n ],\n [\n \"text-justify\",\n new Map([\n [\"auto\", 0],\n [\"inter-character\", 0],\n [\"inter-word\", 0],\n [\"none\", 0],\n ]),\n ],\n [\n \"text-orientation\",\n new Map([\n [\"mixed\", 10],\n [\"sideways\", 10],\n [\"upright\", 10],\n ]),\n ],\n [\n \"text-size-adjust\",\n new Map([\n [\"auto\", 0],\n [\"none\", 0],\n [\"percentages\", 0],\n ]),\n ],\n [\n \"text-spacing-trim\",\n new Map([\n [\"normal\", 0],\n [\"space-all\", 0],\n [\"space-first\", 0],\n [\"trim-start\", 0],\n ]),\n ],\n [\n \"text-underline-offset\",\n new Map([\n [\"auto\", 10],\n [\"percentage\", 10],\n ]),\n ],\n [\n \"text-underline-position\",\n new Map([\n [\"from-font\", 10],\n [\"left\", 10],\n [\"right\", 10],\n [\"under\", 10],\n ]),\n ],\n [\n \"text-wrap\",\n new Map([\n [\"wrap\", 5],\n [\"balance\", 5],\n [\"nowrap\", 5],\n [\"pretty\", 0],\n [\"stable\", 5],\n ]),\n ],\n [\n \"text-wrap-mode\",\n new Map([\n [\"nowrap\", 5],\n [\"wrap\", 5],\n ]),\n ],\n [\n \"text-wrap-style\",\n new Map([\n [\"auto\", 0],\n [\"balance\", 0],\n [\"pretty\", 0],\n [\"stable\", 0],\n ]),\n ],\n [\n \"touch-action\",\n new Map([\n [\"manipulation\", 10],\n [\"none\", 10],\n [\"pan-down\", 10],\n [\"pan-left\", 10],\n [\"pan-right\", 10],\n [\"pan-up\", 10],\n [\"pan-x\", 10],\n [\"pan-y\", 10],\n [\"pinch-zoom\", 10],\n ]),\n ],\n [\n \"transform-box\",\n new Map([\n [\"border-box\", 5],\n [\"content-box\", 5],\n [\"fill-box\", 5],\n [\"stroke-box\", 5],\n [\"view-box\", 5],\n ]),\n ],\n [\n \"transform-origin\",\n new Map([\n [\"bottom\", 10],\n [\"center\", 10],\n [\"left\", 10],\n [\"right\", 10],\n [\"top\", 10],\n ]),\n ],\n [\n \"perspective-origin\",\n new Map([\n [\"bottom\", 10],\n [\"center\", 10],\n [\"left\", 10],\n [\"right\", 10],\n [\"top\", 10],\n ]),\n ],\n [\"perspective\", new Map([[\"none\", 10]])],\n [\"transform\", new Map([[\"3d\", 10]])],\n [\"transition\", new Map([[\"transition-behavior\", 5]])],\n [\n \"transition-property\",\n new Map([\n [\"all\", 10],\n [\"none\", 10],\n ]),\n ],\n [\"transition-timing-function\", new Map([[\"jump\", 10]])],\n [\n \"user-select\",\n new Map([\n [\"all\", 0],\n [\"auto\", 0],\n [\"none\", 0],\n [\"text\", 0],\n ]),\n ],\n [\n \"vertical-align\",\n new Map([\n [\"baseline\", 10],\n [\"bottom\", 10],\n [\"middle\", 10],\n [\"sub\", 10],\n [\"super\", 10],\n [\"text-bottom\", 10],\n [\"text-top\", 10],\n [\"top\", 10],\n ]),\n ],\n [\"view-transition-class\", new Map([[\"none\", 0]])],\n [\"view-transition-name\", new Map([[\"none\", 0]])],\n [\n \"visibility\",\n new Map([\n [\"collapse\", 10],\n [\"hidden\", 10],\n [\"visible\", 10],\n ]),\n ],\n [\n \"white-space\",\n new Map([\n [\"break-spaces\", 10],\n [\"normal\", 10],\n [\"nowrap\", 10],\n [\"pre\", 10],\n [\"pre-line\", 10],\n [\"pre-wrap\", 10],\n ]),\n ],\n [\n \"white-space-collapse\",\n new Map([\n [\"break-spaces\", 5],\n [\"collapse\", 5],\n [\"preserve\", 5],\n [\"preserve-breaks\", 5],\n [\"preserve-spaces\", 5],\n ]),\n ],\n [\n \"will-change\",\n new Map([\n [\"auto\", 10],\n [\"contents\", 10],\n [\"scroll-position\", 10],\n ]),\n ],\n [\n \"word-break\",\n new Map([\n [\"break-all\", 10],\n [\"keep-all\", 10],\n [\"normal\", 10],\n [\"auto-phrase\", 0],\n [\"break-word\", 0],\n ]),\n ],\n [\"word-spacing\", new Map([[\"normal\", 10]])],\n [\n \"writing-mode\",\n new Map([\n [\"horizontal-tb\", 10],\n [\"sideways-lr\", 10],\n [\"sideways-rl\", 10],\n [\"vertical-lr\", 10],\n [\"vertical-rl\", 10],\n [\"lr\", 0],\n [\"lr-tb\", 0],\n [\"rl\", 0],\n [\"rl-tb\", 0],\n [\"tb\", 0],\n [\"tb-rl\", 0],\n ]),\n ],\n [\"z-index\", new Map([[\"auto\", 10]])],\n]);\n","/**\n * @fileoverview Color information for CSS.\n * @author Nicholas C. Zakas\n */\n\nexport const namedColors = new Set([\n \"aliceblue\",\n \"antiquewhite\",\n \"aqua\",\n \"aquamarine\",\n \"azure\",\n \"beige\",\n \"bisque\",\n \"black\",\n \"blanchedalmond\",\n \"blue\",\n \"blueviolet\",\n \"brown\",\n \"burlywood\",\n \"cadetblue\",\n \"chartreuse\",\n \"chocolate\",\n \"coral\",\n \"cornflowerblue\",\n \"cornsilk\",\n \"crimson\",\n \"cyan\",\n \"darkblue\",\n \"darkcyan\",\n \"darkgoldenrod\",\n \"darkgray\",\n \"darkgreen\",\n \"darkgrey\",\n \"darkkhaki\",\n \"darkmagenta\",\n \"darkolivegreen\",\n \"darkorange\",\n \"darkorchid\",\n \"darkred\",\n \"darksalmon\",\n \"darkseagreen\",\n \"darkslateblue\",\n \"darkslategray\",\n \"darkslategrey\",\n \"darkturquoise\",\n \"darkviolet\",\n \"deeppink\",\n \"deepskyblue\",\n \"dimgray\",\n \"dimgrey\",\n \"dodgerblue\",\n \"firebrick\",\n \"floralwhite\",\n \"forestgreen\",\n \"fuchsia\",\n \"gainsboro\",\n \"ghostwhite\",\n \"gold\",\n \"goldenrod\",\n \"gray\",\n \"green\",\n \"greenyellow\",\n \"grey\",\n \"honeydew\",\n \"hotpink\",\n \"indianred\",\n \"indigo\",\n \"ivory\",\n \"khaki\",\n \"lavender\",\n \"lavenderblush\",\n \"lawngreen\",\n \"lemonchiffon\",\n \"lightblue\",\n \"lightcoral\",\n \"lightcyan\",\n \"lightgoldenrodyellow\",\n \"lightgray\",\n \"lightgreen\",\n \"lightgrey\",\n \"lightpink\",\n \"lightsalmon\",\n \"lightseagreen\",\n \"lightskyblue\",\n \"lightslategray\",\n \"lightslategrey\",\n \"lightsteelblue\",\n \"lightyellow\",\n \"lime\",\n \"limegreen\",\n \"linen\",\n \"magenta\",\n \"maroon\",\n \"mediumaquamarine\",\n \"mediumblue\",\n \"mediumorchid\",\n \"mediumpurple\",\n \"mediumseagreen\",\n \"mediumslateblue\",\n \"mediumspringgreen\",\n \"mediumturquoise\",\n \"mediumvioletred\",\n \"midnightblue\",\n \"mintcream\",\n \"mistyrose\",\n \"moccasin\",\n \"navajowhite\",\n \"navy\",\n \"oldlace\",\n \"olive\",\n \"olivedrab\",\n \"orange\",\n \"orangered\",\n \"orchid\",\n \"palegoldenrod\",\n \"palegreen\",\n \"paleturquoise\",\n \"palevioletred\",\n \"papayawhip\",\n \"peachpuff\",\n \"peru\",\n \"pink\",\n \"plum\",\n \"powderblue\",\n \"purple\",\n \"rebeccapurple\",\n \"red\",\n \"rosybrown\",\n \"royalblue\",\n \"saddlebrown\",\n \"salmon\",\n \"sandybrown\",\n \"seagreen\",\n \"seashell\",\n \"sienna\",\n \"silver\",\n \"skyblue\",\n \"slateblue\",\n \"slategray\",\n \"slategrey\",\n \"snow\",\n \"springgreen\",\n \"steelblue\",\n \"tan\",\n \"teal\",\n \"thistle\",\n \"tomato\",\n \"turquoise\",\n \"violet\",\n \"wheat\",\n \"white\",\n \"whitesmoke\",\n \"yellow\",\n \"yellowgreen\",\n]);\n","import { parse, walk } from \"css-tree\";\nimport stylelint from \"stylelint\";\nimport valueParser from \"postcss-value-parser\";\n\nimport {\n BASELINE_HIGH,\n BASELINE_LOW,\n atRules,\n mediaConditions,\n properties,\n propertyValues,\n selectors,\n types,\n} from \"../data/baseline-data.js\";\nimport { namedColors } from \"../data/colors.js\";\n\n/** @typedef {import(\"css-tree\").Identifier} Identifier */\n/** @typedef {import(\"css-tree\").FunctionNodePlain} FunctionNodePlain */\n/** @typedef {import(\"css-tree\").Declaration} Declaration */\n/** @typedef {import(\"css-tree\").Rule} Rule */\n/** @typedef {import(\"postcss\").Node} Node */\n\nconst {\n createPlugin,\n utils: { report, ruleMessages, validateOptions },\n} = stylelint;\n\nconst ruleName = \"plugin/require-baseline\";\n\nconst messages = ruleMessages(ruleName, {\n notBaselineProperty: (property, availability) =>\n `Property \"${property}\" is not a ${availability} available baseline feature.`,\n notBaselinePropertyValue: (property, value, availability) =>\n `Value \"${value}\" of property \"${property}\" is not a ${availability} available baseline feature.`,\n notBaselineType: (type, availability) =>\n `Type \"${type}\" is not a ${availability} available baseline feature.`,\n notBaselineAtRule: (atRule, availability) =>\n `At-rule \"${atRule}\" is not a ${availability} available baseline feature.`,\n notBaselineMediaCondition: (condition, availability) =>\n `Media condition \"${condition}\" is not a ${availability} available baseline feature.`,\n notBaselineSelector: (selectorName, availability) =>\n `Selector \"${selectorName}\" is not a ${availability} available baseline feature.`,\n});\n\n/**\n * Represents a property that is supported via @supports.\n * This implementation is based on the @eslint/css project.\n * Source:\n * https://github.com/eslint/css/blob/css-v0.4.0/src/rules/require-baseline.js#L33-L306\n\n */\nclass SupportedProperty {\n /**\n * The name of the property.\n * @type {string}\n */\n name;\n\n /**\n * Supported identifier values.\n * @type {Set<string>}\n */\n #identifiers = new Set();\n\n /**\n * Supported function types.\n * @type {Set<string>}\n */\n #functions = new Set();\n\n /**\n * Creates a new instance.\n * @param {string} name The name of the property.\n */\n constructor(name) {\n this.name = name;\n }\n\n /**\n * Adds an identifier to the list of supported identifiers.\n * @param {string} identifier The identifier to add.\n * @returns {void}\n */\n addIdentifier(identifier) {\n this.#identifiers.add(identifier);\n }\n\n /**\n * Determines if an identifier is supported.\n * @param {string} identifier The identifier to check.\n * @returns {boolean} `true` if the identifier is supported, `false` if not.\n */\n hasIdentifier(identifier) {\n return this.#identifiers.has(identifier);\n }\n\n /**\n * Determines if any identifiers are supported.\n * @returns {boolean} `true` if any identifiers are supported, `false` if not.\n */\n hasIdentifiers() {\n return this.#identifiers.size > 0;\n }\n\n /**\n * Adds a function to the list of supported functions.\n * @param {string} func The function to add.\n * @returns {void}\n */\n addFunction(func) {\n this.#functions.add(func);\n }\n\n /**\n * Determines if a function is supported.\n * @param {string} func The function to check.\n * @returns {boolean} `true` if the function is supported, `false` if not.\n */\n hasFunction(func) {\n return this.#functions.has(func);\n }\n\n /**\n * Determines if any functions are supported.\n * @returns {boolean} `true` if any functions are supported, `false` if not.\n */\n hasFunctions() {\n return this.#functions.size > 0;\n }\n}\n\n/**\n * Represents an `@supports` rule and everything it enables.\n */\nclass SupportsRule {\n /**\n * The properties supported by this rule.\n * @type {Map<string, SupportedProperty>}\n */\n #properties = new Map();\n\n /**\n * The selectors supported by this rule.\n * @type {Set<string>}\n */\n #selectors = new Set();\n\n /**\n * Adds a property to the rule.\n * @param {string} property The name of the property.\n * @returns {SupportedProperty} The supported property object.\n */\n addProperty(property) {\n if (this.#properties.has(property)) {\n return this.#properties.get(property);\n }\n\n const supportedProperty = new SupportedProperty(property);\n\n this.#properties.set(property, supportedProperty);\n\n return supportedProperty;\n }\n\n /**\n * Determines if the rule supports a property.\n * @param {string} property The name of the property.\n * @returns {boolean} `true` if the property is supported, `false` if not.\n */\n hasProperty(property) {\n return this.#properties.has(property);\n }\n\n /**\n * Gets the supported property.\n * @param {string} property The name of the property.\n * @returns {SupportedProperty} The supported property.\n */\n getProperty(property) {\n return this.#properties.get(property);\n }\n\n /**\n * Determines if the rule supports a property value.\n * @param {string} property The name of the property.\n * @param {string} identifier The identifier to check.\n * @returns {boolean} `true` if the property value is supported, `false` if not.\n */\n hasPropertyIdentifier(property, identifier) {\n const supportedProperty = this.#properties.get(property);\n\n if (!supportedProperty) {\n return false;\n }\n\n return supportedProperty.hasIdentifier(identifier);\n }\n\n /**\n * Determines if the rule supports any property values.\n * @param {string} property The name of the property.\n * @returns {boolean} `true` if any property values are supported, `false` if not.\n */\n hasPropertyIdentifiers(property) {\n const supportedProperty = this.#properties.get(property);\n\n if (!supportedProperty) {\n return false;\n }\n\n return supportedProperty.hasIdentifiers();\n }\n\n /**\n * Determines if the rule supports a function.\n * @param {string} property The name of the property.\n * @param {string} func The function to check.\n * @returns {boolean} `true` if the function is supported, `false` if not.\n */\n hasFunction(property, func) {\n const supportedProperty = this.#properties.get(property);\n\n if (!supportedProperty) {\n return false;\n }\n\n return supportedProperty.hasFunction(func);\n }\n\n /**\n * Determines if the rule supports any functions.\n * @param {string} property The name of the property.\n * @returns {boolean} `true` if any functions are supported, `false` if not.\n */\n hasFunctions(property) {\n const supportedProperty = this.#properties.get(property);\n\n if (!supportedProperty) {\n return false;\n }\n\n return supportedProperty.hasFunctions();\n }\n\n /**\n * Adds a selector to the rule.\n * @param {string} selector The name of the selector.\n * @returns {void}\n */\n addSelector(selector) {\n this.#selectors.add(selector);\n }\n\n /**\n * Determines if the rule supports a selector.\n * @param {string} selector The name of the selector.\n * @returns {boolean} `true` if the selector is supported, `false` if not.\n */\n hasSelector(selector) {\n return this.#selectors.has(selector);\n }\n}\n\n/**\n * Represents a collection of supports rules.\n */\nclass SupportsRules {\n /**\n * A collection of supports rules.\n * @type {Array<SupportsRule>}\n */\n #rules = [];\n\n /**\n * Adds a rule to the collection.\n * @param {SupportsRule} rule The rule to add.\n * @returns {void}\n */\n push(rule) {\n this.#rules.push(rule);\n }\n\n /**\n * Removes the last rule from the collection.\n * @returns {SupportsRule} The last rule in the collection.\n */\n pop() {\n return this.#rules.pop();\n }\n\n /**\n * Retrieves the last rule in the collection.\n * @returns {SupportsRule} The last rule in the collection.\n */\n last() {\n return this.#rules.at(-1);\n }\n\n /**\n * Determines if any rule supports a property.\n * @param {string} property The name of the property.\n * @returns {boolean} `true` if any rule supports the property, `false` if not.\n */\n hasProperty(property) {\n return this.#rules.some((rule) => rule.hasProperty(property));\n }\n\n /**\n * Determines if any rule supports a property identifier.\n * @param {string} property The name of the property.\n * @param {string} identifier The identifier to check.\n * @returns {boolean} `true` if any rule supports the property value, `false` if not.\n */\n hasPropertyIdentifier(property, identifier) {\n return this.#rules.some((rule) =>\n rule.hasPropertyIdentifier(property, identifier),\n );\n }\n\n /**\n * Determines if any rule supports any property identifiers.\n * @param {string} property The name of the property.\n * @returns {boolean} `true` if any rule supports the property values, `false` if not.\n */\n hasPropertyIdentifiers(property) {\n return this.#rules.some((rule) => rule.hasPropertyIdentifiers(property));\n }\n\n /**\n * Determines if any rule supports a function.\n * @param {string} property The name of the property.\n * @param {string} func The function to check.\n * @returns {boolean} `true` if any rule supports the function, `false` if not.\n */\n hasPropertyFunction(property, func) {\n return this.#rules.some((rule) => rule.hasFunction(property, func));\n }\n\n /**\n * Determines if any rule supports any functions.\n * @param {string} property The name of the property.\n * @returns {boolean} `true` if any rule supports the functions, `false` if not.\n */\n hasPropertyFunctions(property) {\n return this.#rules.some((rule) => rule.hasFunctions(property));\n }\n\n /**\n * Determines if any rule supports a selector.\n * @param {string} selector The name of the selector.\n * @returns {boolean} `true` if any rule supports the selector, `false` if not.\n */\n hasSelector(selector) {\n return this.#rules.some((rule) => rule.hasSelector(selector));\n }\n}\n\nconst ruleFunction = (primary, secondaryOptions) => {\n return (root, result) => {\n if (!validateOptions(result, ruleName, { actual: primary })) return;\n\n const availability =\n secondaryOptions?.available === \"newly\" ? \"newly\" : \"widely\";\n const baselineLevel =\n availability === \"widely\" ? BASELINE_HIGH : BASELINE_LOW;\n\n const supportsRules = new SupportsRules();\n\n // Process @supports rules first\n // Skip nested @supports rules to avoid duplicate checks\n root.walkAtRules(/^supports$/i, (atRule) => {\n if (isInsideSupports(atRule)) return;\n\n checkSupports(atRule);\n });\n\n /**\n * Walk through all nodes except:\n * - @supports rules (already processed)\n * - Nodes inside any @supports (handled within checkSupports)\n */\n root.walk((node) => {\n if (node.type === \"atrule\" && node.name.toLowerCase() === \"supports\")\n return;\n\n if (isInsideSupports(node)) return;\n\n switch (node.type) {\n case \"atrule\": {\n handleAtRule(node);\n break;\n }\n case \"rule\": {\n checkSelector(node);\n break;\n }\n case \"decl\": {\n handleDeclaration(node);\n break;\n }\n }\n });\n\n /**\n * Recursively processes an @supports rule and its nested contents.\n * @param {AtRule} atRule\n */\n function checkSupports(atRule) {\n const supportsRule = new SupportsRule();\n\n supportsRules.push(supportsRule);\n\n try {\n const ast = parse(atRule.params, {\n context: \"atrulePrelude\",\n atrule: \"supports\",\n parseAtrulePrelude: true,\n positions: true,\n });\n\n /**\n * \"not\" applies only to the next node, which should be skipped.\n * Track depth using `negationDepth` and reset `negation` in `leave`\n * when the next node finishes processing.\n */\n let negation = false;\n let negationDepth = 0;\n\n walk(ast, {\n enter(node) {\n // if the negation flag is set, ignore the next node\n if (negation) {\n return;\n }\n\n if (node.type === \"Identifier\" && node.name === \"not\") {\n negation = true;\n negationDepth++;\n\n return;\n }\n\n // Store supported properties and values for this @supports rule.\n if (node.type === \"SupportsDeclaration\") {\n const { declaration } = node;\n const property = declaration.property;\n const supportedProperty = supportsRule.addProperty(property);\n\n declaration.value.children.forEach((child) => {\n if (child.type === \"Identifier\") {\n supportedProperty.addIdentifier(child.name);\n\n return;\n }\n\n if (child.type === \"Function\") {\n supportedProperty.addFunction(child.name);\n }\n });\n }\n\n if (\n node.type === \"FeatureFunction\" &&\n node.feature === \"selector\"\n ) {\n for (const selectorChild of node.value.children) {\n supportsRule.addSelector(selectorChild.name);\n }\n }\n },\n leave() {\n if (negation) {\n // Reset negation flag once the next node finishes processing.\n if (negationDepth === 0) {\n negation = false;\n } else {\n negationDepth--;\n }\n }\n },\n });\n } catch {\n // invalid @supports conditions are ignored\n }\n\n // Process nested nodes within @supports\n atRule.each((node) => {\n if (node.name === \"supports\") {\n checkSupports(node);\n\n return;\n }\n\n // Process the immediate child node\n switch (node.type) {\n case \"atrule\":\n handleAtRule(node);\n break;\n case \"decl\":\n handleDeclaration(node);\n break;\n case \"rule\":\n checkSelector(node);\n break;\n }\n\n if (typeof node.walk !== \"function\") return;\n\n // Process nested nodes within the child node\n node.walk((child) => {\n switch (child.type) {\n case \"atrule\":\n handleAtRule(child);\n break;\n case \"decl\":\n handleDeclaration(child);\n break;\n case \"rule\":\n checkSelector(child);\n break;\n }\n });\n });\n\n // pop when exiting the @supports scope\n supportsRules.pop();\n }\n\n /**\n * @param {Rule} node\n * @returns {void}\n */\n function handleAtRule(atRule) {\n const { name } = atRule;\n\n if (name.toLowerCase() === \"supports\") {\n checkSupports(atRule);\n\n return;\n }\n\n if (name === \"media\") {\n checkMediaConditions(atRule);\n\n return;\n }\n\n if (!atRules.has(name)) return;\n\n const atRuleLevel = atRules.get(name);\n\n if (atRuleLevel < baselineLevel) {\n report({\n message: messages.notBaselineAtRule,\n messageArgs: [`@${name}`, availability],\n result,\n node: atRule,\n index: 0,\n endIndex: name.length + 1,\n });\n }\n }\n\n /**\n * @param {import('postcss').Declaration} decl\n * @returns {void}\n */\n function handleDeclaration(decl) {\n const { prop, value } = decl;\n\n if (checkProperty(decl, prop)) {\n /**\n * If the property isn't in baseline, then don't go on to check the values.\n * There's no need to report multiple errors for the same property.\n */\n return;\n }\n\n const parsed = valueParser(value);\n\n parsed.walk((node) => {\n if (node.type === \"word\") {\n checkPropertyValueIdentifier(decl, prop, node.value);\n } else if (node.type === \"function\") {\n checkPropertyValueFunction(decl, node.value);\n }\n });\n }\n\n /**\n * Checks a property against baseline compatibility\n * @param {Declaration} decl\n * @param {string} property\n * @returns {boolean}\n */\n function checkProperty(decl, property) {\n if (supportsRules.hasProperty(property)) return;\n\n // If the property is not in the Baseline data, skip\n if (!properties.has(property)) return;\n\n const propLevel = properties.get(property);\n\n if (propLevel < baselineLevel) {\n report({\n message: messages.notBaselineProperty,\n messageArgs: [property, availability],\n result,\n node: decl,\n word: property,\n });\n\n return true;\n }\n\n return false;\n }\n\n /**\n * Checks a property value against baseline compatibility data.\n * @param {Declaration} decl\n * @param {string} property\n * @param {string} value\n * @returns {void}\n */\n function checkPropertyValueIdentifier(decl, property, value) {\n if (supportsRules.hasPropertyIdentifier(property, value)) return;\n\n // named colors are always valid\n if (namedColors.has(value)) return;\n\n if (!propertyValues.has(property)) return;\n\n const possiblePropertyValues = propertyValues.get(property);\n\n if (!possiblePropertyValues.has(value)) return;\n\n const propertyValueLevel = possiblePropertyValues.get(value);\n\n if (propertyValueLevel < baselineLevel) {\n report({\n message: messages.notBaselinePropertyValue,\n messageArgs: [property, value, availability],\n result,\n node: decl,\n word: value,\n });\n }\n }\n\n /**\n * Checks a function type against baseline compatibility data.\n * @param {Declaration} decl\n * @param {string} funcName\n */\n function checkPropertyValueFunction(decl, funcName) {\n if (supportsRules.hasPropertyFunction(decl.prop, funcName)) return;\n\n if (!types.has(funcName)) return;\n\n const propertyValueLevel = types.get(funcName);\n\n if (propertyValueLevel < baselineLevel) {\n report({\n message: messages.notBaselineType,\n messageArgs: [funcName, availability],\n result,\n node: decl,\n word: funcName,\n });\n }\n }\n\n /**\n * Checks media conditions against baseline compatibility data.\n * @param {AtRule} atRule\n */\n function checkMediaConditions(atRule) {\n const rawParams = atRule.params;\n\n try {\n const ast = parse(rawParams, {\n context: \"atrulePrelude\",\n atrule: \"media\",\n parseAtrulePrelude: true,\n positions: true,\n });\n\n walk(ast, (node) => {\n if (node.type === \"Feature\") {\n const featureName = node.name;\n\n if (!mediaConditions.has(featureName)) return;\n\n const featureLevel = mediaConditions.get(featureName);\n\n if (featureLevel < baselineLevel) {\n const atRuleIndex = atRuleParamIndex(atRule);\n\n const index = node.loc.start.column;\n const endIndex = index + featureName.length;\n\n report({\n ruleName,\n result,\n message: messages.notBaselineMediaCondition(\n featureName,\n availability,\n ),\n node: atRule,\n index: atRuleIndex + index,\n endIndex: atRuleIndex + endIndex,\n });\n }\n }\n });\n } catch {\n // Ignore invalid media queries\n }\n }\n\n /**\n * Checks selectors against baseline compatibility data.\n * @param {Rule} ruleNode\n * @returns {void}\n */\n function checkSelector(ruleNode) {\n const { selector } = ruleNode;\n\n try {\n const ast = parse(selector, {\n context: \"selector\",\n positions: true,\n });\n\n walk(ast, (node) => {\n const selectorName = node.name;\n\n if (supportsRules.hasSelector(selectorName)) return;\n\n if (!selectors.has(selectorName)) return;\n\n const selectorLevel = selectors.get(selectorName);\n\n if (selectorLevel < baselineLevel) {\n // some selectors are prefixed with the : or :: symbols\n let prefixSymbolLength = 0;\n\n if (node.type === \"PseudoClassSelector\") {\n prefixSymbolLength = 1;\n } else if (node.type === \"PseudoElementSelector\") {\n prefixSymbolLength = 2;\n }\n\n const index = node.loc.start.offset;\n const endIndex = index + selectorName.length + prefixSymbolLength;\n\n report({\n ruleName,\n result,\n message: messages.notBaselineSelector(selectorName, availability),\n node: ruleNode,\n index,\n endIndex,\n });\n }\n });\n } catch {\n // Ignore invalid selectors\n }\n }\n };\n};\n\n/**\n * Checks if a node is inside an @supports rule.\n * @param {Node} node\n * @returns {boolean}\n */\nfunction isInsideSupports(node) {\n let parent = node.parent;\n\n while (parent) {\n if (parent.type === \"atrule\" && parent.name === \"supports\") {\n return true;\n }\n\n parent = parent.parent;\n }\n\n return false;\n}\n\n/**\n * @param {AtRule} atRule\n * @returns {number}\n */\nfunction atRuleParamIndex(atRule) {\n const index = 1 + atRule.name.length;\n\n return index + (atRule.raws.afterName?.length ?? 0);\n}\n\nruleFunction.ruleName = ruleName;\nruleFunction.messages = messages;\n\nexport default createPlugin(ruleName, ruleFunction);\n"],"names":["properties","Map","atRules","mediaConditions","types","selectors","propertyValues","namedColors","Set","createPlugin","utils","report","ruleMessages","validateOptions","stylelint","ruleName","messages","notBaselineProperty","property","availability","notBaselinePropertyValue","value","notBaselineType","type","notBaselineAtRule","atRule","notBaselineMediaCondition","condition","notBaselineSelector","selectorName","SupportedProperty","name","identifiers","functions","constructor","this","addIdentifier","identifier","add","hasIdentifier","has","hasIdentifiers","size","addFunction","func","hasFunction","hasFunctions","SupportsRule","addProperty","get","supportedProperty","set","hasProperty","getProperty","hasPropertyIdentifier","hasPropertyIdentifiers","addSelector","selector","hasSelector","SupportsRules","rules","push","rule","pop","last","at","some","hasPropertyFunction","hasPropertyFunctions","ruleFunction","primary","secondaryOptions","root","result","actual","available","baselineLevel","supportsRules","checkSupports","supportsRule","ast","parse","params","context","atrule","parseAtrulePrelude","positions","negation","negationDepth","walk","enter","node","declaration","children","forEach","child","feature","selectorChild","leave","each","handleAtRule","handleDeclaration","checkSelector","toLowerCase","rawParams","featureName","atRuleIndex","index","length","raws","afterName","atRuleParamIndex","loc","start","column","endIndex","message","checkMediaConditions","messageArgs","decl","prop","word","checkProperty","valueParser","possiblePropertyValues","propertyValueLevel","checkPropertyValueIdentifier","funcName","checkPropertyValueFunction","ruleNode","prefixSymbolLength","offset","walkAtRules","isInsideSupports","parent"],"mappings":"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,CAAC,MAAO,IACR,CAAC,WAAY,IACb,CAAC,WAAY,OAGjB,CACE,uBACA,IAAIA,IAAI,CACN,CAAC,eAAgB,GACjB,CAAC,WAAY,GACb,CAAC,WAAY,GACb,CAAC,kBAAmB,GACpB,CAAC,kBAAmB,MAGxB,CACE,cACA,IAAIA,IAAI,CACN,CAAC,OAAQ,IACT,CAAC,WAAY,IACb,CAAC,kBAAmB,OAGxB,CACE,aACA,IAAIA,IAAI,CACN,CAAC,YAAa,IACd,CAAC,WAAY,IACb,CAAC,SAAU,IACX,CAAC,cAAe,GAChB,CAAC,aAAc,MAGnB,CAAC,eAAgB,IAAIA,IAAI,CAAC,CAAC,SAAU,OACrC,CACE,eACA,IAAIA,IAAI,CACN,CAAC,gBAAiB,IAClB,CAAC,cAAe,IAChB,CAAC,cAAe,IAChB,CAAC,cAAe,IAChB,CAAC,cAAe,IAChB,CAAC,KAAM,GACP,CAAC,QAAS,GACV,CAAC,KAAM,GACP,CAAC,QAAS,GACV,CAAC,KAAM,GACP,CAAC,QAAS,MAGd,CAAC,UAAW,IAAIA,IAAI,CAAC,CAAC,OAAQ,SCtrFnBM,EAAc,IAAIC,IAAI,CACjC,YACA,eACA,OACA,aACA,QACA,QACA,SACA,QACA,iBACA,OACA,aACA,QACA,YACA,YACA,aACA,YACA,QACA,iBACA,WACA,UACA,OACA,WACA,WACA,gBACA,WACA,YACA,WACA,YACA,cACA,iBACA,aACA,aACA,UACA,aACA,eACA,gBACA,gBACA,gBACA,gBACA,aACA,WACA,cACA,UACA,UACA,aACA,YACA,cACA,cACA,UACA,YACA,aACA,OACA,YACA,OACA,QACA,cACA,OACA,WACA,UACA,YACA,SACA,QACA,QACA,WACA,gBACA,YACA,eACA,YACA,aACA,YACA,uBACA,YACA,aACA,YACA,YACA,cACA,gBACA,eACA,iBACA,iBACA,iBACA,cACA,OACA,YACA,QACA,UACA,SACA,mBACA,aACA,eACA,eACA,iBACA,kBACA,oBACA,kBACA,kBACA,eACA,YACA,YACA,WACA,cACA,OACA,UACA,QACA,YACA,SACA,YACA,SAC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"}
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "stylelint-plugin-use-baseline",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "A Stylelint plugin that enforces CSS feature availability based on Baseline.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"baseline",
|
|
7
|
+
"css",
|
|
8
|
+
"lint",
|
|
9
|
+
"stylelint",
|
|
10
|
+
"stylelint-plugin"
|
|
11
|
+
],
|
|
12
|
+
"author": "ryo-manba",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"homepage": "https://github.com/ryo-manba/stylelint-plugin-use-baseline#readme",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/ryo-manba/stylelint-plugin-use-baseline"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/ryo-manba/stylelint-plugin-use-baseline/issues"
|
|
21
|
+
},
|
|
22
|
+
"main": "dist/index.js",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"files": [
|
|
25
|
+
"/dist",
|
|
26
|
+
"LICENSE",
|
|
27
|
+
"README.md",
|
|
28
|
+
"package.json"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"test": "node --test",
|
|
32
|
+
"build": "rollup -c",
|
|
33
|
+
"lint": "eslint .",
|
|
34
|
+
"format": "prettier --write .",
|
|
35
|
+
"watch": "rollup --config --watch",
|
|
36
|
+
"validate": "npm run lint && npm run test",
|
|
37
|
+
"build:baseline": "node tools/generate-baseline.js"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"css-tree": "^3.1.0",
|
|
41
|
+
"postcss": "^8.5.3",
|
|
42
|
+
"postcss-value-parser": "^4.2.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"stylelint": "^16.0.2"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
49
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
50
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
51
|
+
"@stylelint/prettier-config": "^3.0.0",
|
|
52
|
+
"common-tags": "^1.8.2",
|
|
53
|
+
"eslint": "^9.20.1",
|
|
54
|
+
"eslint-config-stylelint": "^23.0.0",
|
|
55
|
+
"eslint-plugin-import": "^2.31.0",
|
|
56
|
+
"prettier": "^3.5.2",
|
|
57
|
+
"rollup": "^4.35.0",
|
|
58
|
+
"stylelint": "^16.14.1",
|
|
59
|
+
"stylelint-test-rule-node": "^0.4.0",
|
|
60
|
+
"web-features": "^2.25.0"
|
|
61
|
+
}
|
|
62
|
+
}
|