Skip to content

📦 Release @webref/[email protected] #1521

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2025
Merged

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Apr 11, 2025

⚠ NEVER add commits to this pull request.

🤖 This pull request was automatically created to facilitate human review of @webref/css changes triggered by curated data at c2c38a1.

🧐 Please review the diff below and version numbers. If all looks good, merge this pull request to release the changes to npm.

📦 Latest released @webref/css package was v6.20.7. Merging this pull request will release v6.20.8. Make sure that the bump is the right one for the changes.

✍ If any change needs to be made before release, do not add a commit to this pull request. Changes should rather be handled in a separate pull request and pushed to the main branch. You may leave this pull request open in the meantime, or close it. The pre-release job will automatically update this pull request or create a new one once the updates have made their way to the main branch.

🛈 The actual change introduced by this pull request is a version bump in packages/css/package.json. You do not need to review that change. The bumped version is not the version that will be released when this pull request is merged, but rather the version that will be released next time.

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/css/css-fonts.json packages/css/css-fonts.json
--- webref/node_modules/@webref/css/css-fonts.json
+++ packages/css/css-fonts.json
@@ -155,7 +155,7 @@
     {
       "name": "font-style",
       "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-style",
-      "value": "normal | italic | oblique <angle [-90deg,90deg]>?",
+      "value": "normal | italic | left | right | oblique <angle [-90deg,90deg]>?",
       "initial": "normal",
       "appliesTo": "all elements and text",
       "inherited": "yes",
@@ -173,12 +173,26 @@
         },
         {
           "name": "italic",
-          "prose": "Matches against a font that is labeled as an italic face, or an oblique face if one does not exist.",
+          "prose": "Matches against a font that is labeled as an italic face, or an oblique face if one does not exist. The angle and direction of slant is unspecified.",
           "href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-italic",
           "type": "value",
           "value": "italic"
         },
         {
+          "name": "left",
+          "prose": "Matches against a font that is labeled as an italic face, with a positive (clockwise) slant; or an oblique face with positive slant, if one does not exist.",
+          "href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-left",
+          "type": "value",
+          "value": "left"
+        },
+        {
+          "name": "right",
+          "prose": "Matches against a font that is labeled as an italic face, with a negative (counter-clockwise) slant; or an oblique face with negative slant, if one does not exist.",
+          "href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-right",
+          "type": "value",
+          "value": "right"
+        },
+        {
           "name": "oblique <angle [-90deg,90deg]>?",
           "prose": "Controls matching against an oblique face. Positive angles represent a clockwise slant; negative angles represent a counter-clockwise slant. The lack of an <angle> represents 14deg. (Note that a font might internally provide its own mapping for \"oblique\", but the mapping within the font is disregarded.) Fractional and negative values are accepted; however, values less than -90deg or values greater than 90deg are invalid. If no oblique faces exist, and font-synthesis-style has the value auto, a synthetic oblique face will be generated.",
           "href": "https://drafts.csswg.org/css-fonts-4/#valdef-font-style-oblique-angle--90deg-90deg",
@@ -1215,7 +1229,7 @@
           "name": "font-style",
           "href": "https://drafts.csswg.org/css-fonts-4/#descdef-font-face-font-style",
           "for": "@font-face",
-          "value": "auto | normal | italic | oblique [ <angle [-90deg,90deg]>{1,2} ]?",
+          "value": "auto | normal | italic | left | right | oblique [ <angle [-90deg,90deg]>{1,2} ]?",
           "initial": "auto"
         },
         {

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/css/css-forms.json packages/css/css-forms.json
--- webref/node_modules/@webref/css/css-forms.json
+++ packages/css/css-forms.json
@@ -21,6 +21,38 @@
       ]
     },
     {
+      "name": "field-sizing",
+      "href": "https://drafts.csswg.org/css-forms-1/#propdef-field-sizing",
+      "value": "fixed | content",
+      "initial": "fixed",
+      "appliesTo": "elements with default preferred size",
+      "inherited": "no",
+      "percentages": "N/A",
+      "computedValue": "as specified",
+      "canonicalOrder": "per grammar",
+      "animationType": "discrete",
+      "values": [
+        {
+          "name": "fixed",
+          "prose": "For element with default preferred size, the UA must set the intrinsic size to the default preferred size defined by the host language for that element. Otherwise, the UA must behave the same as content.",
+          "href": "https://drafts.csswg.org/css-forms-1/#valdef-field-sizing-fixed",
+          "type": "value",
+          "value": "fixed"
+        },
+        {
+          "name": "content",
+          "prose": "The UA must determine the element’s intrinsic size based on its content, and must ignore any default preferred size defined by the host language for that element. If the element is an element with default preferred size and is listed in compressible replaced elements, the UA must stop treating the element as a replaced element for min-content contribution.",
+          "href": "https://drafts.csswg.org/css-forms-1/#valdef-field-sizing-content",
+          "type": "value",
+          "value": "content"
+        }
+      ],
+      "styleDeclaration": [
+        "field-sizing",
+        "fieldSizing"
+      ]
+    },
+    {
       "name": "slider-orientation",
       "href": "https://drafts.csswg.org/css-forms-1/#propdef-slider-orientation",
       "value": "auto | left-to-right | right-to-left | top-to-bottom | bottom-to-top",
@@ -41,28 +73,28 @@
         },
         {
           "name": "left-to-right",
-          "prose": "The slider-like control is rendered horizontally and ::fill is left-aligned within the control.",
+          "prose": "The slider-like control is rendered horizontally and ::slider-fill is left-aligned within the control.",
           "href": "https://drafts.csswg.org/css-forms-1/#valdef-slider-orientation-left-to-right",
           "type": "value",
           "value": "left-to-right"
         },
         {
           "name": "right-to-left",
-          "prose": "The slider-like control is rendered horizontally and ::fill is right-aligned within the control.",
+          "prose": "The slider-like control is rendered horizontally and ::slider-fill is right-aligned within the control.",
           "href": "https://drafts.csswg.org/css-forms-1/#valdef-slider-orientation-right-to-left",
           "type": "value",
           "value": "right-to-left"
         },
         {
           "name": "top-to-bottom",
-          "prose": "The slider-like control is rendered vertically and ::fill is top-aligned within the control.",
+          "prose": "The slider-like control is rendered vertically and ::slider-fill is top-aligned within the control.",
           "href": "https://drafts.csswg.org/css-forms-1/#valdef-slider-orientation-top-to-bottom",
           "type": "value",
           "value": "top-to-bottom"
         },
         {
           "name": "bottom-to-top",
-          "prose": "The slider-like control is rendered vertically and ::fill is bottom-aligned within the control.",
+          "prose": "The slider-like control is rendered vertically and ::slider-fill is bottom-aligned within the control.",
           "href": "https://drafts.csswg.org/css-forms-1/#valdef-slider-orientation-bottom-to-top",
           "type": "value",
           "value": "bottom-to-top"
@@ -72,6 +104,38 @@
         "slider-orientation",
         "sliderOrientation"
       ]
+    },
+    {
+      "name": "input-security",
+      "href": "https://drafts.csswg.org/css-forms-1/#propdef-input-security",
+      "value": "auto | none",
+      "initial": "auto",
+      "appliesTo": "sensitive text inputs",
+      "inherited": "no",
+      "percentages": "N/A",
+      "computedValue": "as specified",
+      "canonicalOrder": "per grammar",
+      "animationType": "by computed value type",
+      "values": [
+        {
+          "name": "none",
+          "prose": "The UA must not obscure the text in the control, so that it can be read by the user.",
+          "href": "https://drafts.csswg.org/css-forms-1/#valdef-input-security-none",
+          "type": "value",
+          "value": "none"
+        },
+        {
+          "name": "auto",
+          "prose": "The UA should obscure the text in the control, so that it cannot be read by the user.",
+          "href": "https://drafts.csswg.org/css-forms-1/#valdef-input-security-auto",
+          "type": "value",
+          "value": "auto"
+        }
+      ],
+      "styleDeclaration": [
+        "input-security",
+        "inputSecurity"
+      ]
     }
   ],
   "atrules": [],
@@ -106,19 +170,19 @@
       "href": "https://drafts.csswg.org/css-forms-1/#selectordef-checkmark"
     },
     {
-      "name": "::thumb",
-      "prose": "The ::thumb pseudo-element represents the portion that allows the user to adjust the progress of the control.",
-      "href": "https://drafts.csswg.org/css-forms-1/#selectordef-thumb"
+      "name": "::slider-thumb",
+      "prose": "The ::slider-thumb pseudo-element represents the portion that allows the user to adjust the progress of the control.",
+      "href": "https://drafts.csswg.org/css-forms-1/#selectordef-slider-thumb"
     },
     {
-      "name": "::track",
-      "prose": "The ::track pseudo-element represents the portion containing both the progressed and unprogressed portions of the control.",
-      "href": "https://drafts.csswg.org/css-forms-1/#selectordef-track"
+      "name": "::slider-track",
+      "prose": "The ::slider-track pseudo-element represents the portion containing both the progressed and unprogressed portions of the control.",
+      "href": "https://drafts.csswg.org/css-forms-1/#selectordef-slider-track"
     },
     {
-      "name": "::fill",
-      "prose": "The ::fill pseudo-element represents the portion containing the progressed portion of the control. When the progress of control is undetermined (like with <progress indeterminate>), the user agent must give this portion an inline-size of zero.",
-      "href": "https://drafts.csswg.org/css-forms-1/#selectordef-fill"
+      "name": "::slider-fill",
+      "prose": "The ::slider-fill pseudo-element represents the portion containing the progressed portion of the control. When the progress of control is indeterminate (like with <progress>), the user agent must give this portion an inline-size of zero.",
+      "href": "https://drafts.csswg.org/css-forms-1/#selectordef-slider-fill"
     },
     {
       "name": "::placeholder",

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/css/css-gaps.json packages/css/css-gaps.json
--- webref/node_modules/@webref/css/css-gaps.json
+++ packages/css/css-gaps.json
@@ -508,37 +508,37 @@
       "name": "<gap-rule-list>",
       "href": "https://drafts.csswg.org/css-gaps-1/#typedef-gap-rule-list",
       "type": "type",
-      "value": "<gap-rule-or-repeat> [ / <gap-rule-or-repeat> ]*"
+      "value": "<gap-rule-or-repeat>#"
     },
     {
       "name": "<gap-auto-rule-list>",
       "href": "https://drafts.csswg.org/css-gaps-1/#typedef-gap-auto-rule-list",
       "type": "type",
-      "value": "[ [ <gap-rule-or-repeat> ] / ]* <gap-auto-repeat-rule> [ / [ <gap-rule-or-repeat> ] ]*"
+      "value": "<gap-rule-or-repeat>#? , <gap-auto-repeat-rule> , <gap-rule-or-repeat>#?"
     },
     {
       "name": "<gap-rule-or-repeat>",
       "href": "https://drafts.csswg.org/css-gaps-1/#typedef-gap-rule-or-repeat",
       "type": "type",
-      "value": "[ <gap-rule> | <gap-repeat-rule> ]"
+      "value": "<gap-rule> | <gap-repeat-rule>"
     },
     {
       "name": "<gap-repeat-rule>",
       "href": "https://drafts.csswg.org/css-gaps-1/#typedef-gap-repeat-rule",
       "type": "type",
-      "value": "repeat( [ <integer [1,∞]> ] , [ <gap-rule> ]# )"
+      "value": "repeat( <integer [1,∞]> , <gap-rule># )"
     },
     {
       "name": "<gap-auto-repeat-rule>",
       "href": "https://drafts.csswg.org/css-gaps-1/#typedef-gap-auto-repeat-rule",
       "type": "type",
-      "value": "repeat( auto , [ <gap-rule> ]# )"
+      "value": "repeat( auto , <gap-rule># )"
     },
     {
       "name": "<gap-rule>",
       "href": "https://drafts.csswg.org/css-gaps-1/#typedef-gap-rule",
       "type": "type",
-      "value": "[ <line-width> || <line-style> || <color> ]"
+      "value": "<line-width> || <line-style> || <color>"
     }
   ]
 }

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/css/css-ui.json packages/css/css-ui.json
--- webref/node_modules/@webref/css/css-ui.json
+++ packages/css/css-ui.json
@@ -774,70 +774,6 @@
       ]
     },
     {
-      "name": "field-sizing",
-      "href": "https://drafts.csswg.org/css-ui-4/#propdef-field-sizing",
-      "value": "fixed | content",
-      "initial": "fixed",
-      "appliesTo": "elements with default preferred size",
-      "inherited": "no",
-      "percentages": "N/A",
-      "computedValue": "as specified",
-      "canonicalOrder": "per grammar",
-      "animationType": "discrete",
-      "values": [
-        {
-          "name": "fixed",
-          "prose": "For element with default preferred size, the UA must set the intrinsic size to the default preferred size defined by the host language for that element. Otherwise, the UA must behave the same as content.",
-          "href": "https://drafts.csswg.org/css-ui-4/#valdef-field-sizing-fixed",
-          "type": "value",
-          "value": "fixed"
-        },
-        {
-          "name": "content",
-          "prose": "The UA must determine the element’s intrinsic size based on its content, and must ignore any default preferred size defined by the host language for that element. If the element is an element with default preferred size and is listed in compressible replaced elements, the UA must stop treating the element as a replaced element for min-content contribution.",
-          "href": "https://drafts.csswg.org/css-ui-4/#valdef-field-sizing-content",
-          "type": "value",
-          "value": "content"
-        }
-      ],
-      "styleDeclaration": [
-        "field-sizing",
-        "fieldSizing"
-      ]
-    },
-    {
-      "name": "input-security",
-      "href": "https://drafts.csswg.org/css-ui-4/#propdef-input-security",
-      "value": "auto | none",
-      "initial": "auto",
-      "appliesTo": "sensitive text inputs",
-      "inherited": "no",
-      "percentages": "N/A",
-      "computedValue": "as specified",
-      "canonicalOrder": "per grammar",
-      "animationType": "by computed value type",
-      "values": [
-        {
-          "name": "none",
-          "prose": "The UA must not obscure the text in the control, so that it can be read by the user.",
-          "href": "https://drafts.csswg.org/css-ui-4/#valdef-input-security-none",
-          "type": "value",
-          "value": "none"
-        },
-        {
-          "name": "auto",
-          "prose": "The UA should obscure the text in the control, so that it cannot be read by the user.",
-          "href": "https://drafts.csswg.org/css-ui-4/#valdef-input-security-auto",
-          "type": "value",
-          "value": "auto"
-        }
-      ],
-      "styleDeclaration": [
-        "input-security",
-        "inputSecurity"
-      ]
-    },
-    {
       "name": "-webkit-appearance",
       "href": "https://drafts.csswg.org/css-ui-4/#propdef--webkit-appearance",
       "legacyAliasOf": "appearance",

@github-actions github-actions bot force-pushed the release-css-20250411005950805 branch 12 times, most recently from a4d75cd to d725b6e Compare April 14, 2025 01:05
@github-actions github-actions bot force-pushed the release-css-20250411005950805 branch 8 times, most recently from 062fa84 to a5d7df5 Compare April 16, 2025 18:47
@github-actions github-actions bot force-pushed the release-css-20250411005950805 branch from a5d7df5 to e8d2c99 Compare April 17, 2025 01:00
@tidoust tidoust merged commit 02fb5c7 into main Apr 17, 2025
@tidoust tidoust deleted the release-css-20250411005950805 branch April 17, 2025 06:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants