Skip to content

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented May 26, 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 40c4be5.

🧐 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.21.1. Merging this pull request will release v6.21.2. 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-animations-2.json packages/css/css-animations-2.json
--- webref/node_modules/@webref/css/css-animations-2.json
+++ packages/css/css-animations-2.json
@@ -69,9 +69,9 @@
       ]
     },
     {
-      "name": "animation-trigger-type",
-      "href": "https://drafts.csswg.org/css-animations-2/#propdef-animation-trigger-type",
-      "value": "<single-animation-trigger-type>#",
+      "name": "animation-trigger-behavior",
+      "href": "https://drafts.csswg.org/css-animations-2/#propdef-animation-trigger-behavior",
+      "value": "<single-animation-trigger-behavior>#",
       "initial": "once",
       "appliesTo": "all elements",
       "inherited": "no",
@@ -83,35 +83,35 @@
         {
           "name": "once",
           "prose": "The animation is triggered and played once and only once.",
-          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-type-once",
+          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-behavior-once",
           "type": "value",
           "value": "once"
         },
         {
           "name": "repeat",
           "prose": "The animation is played from the beginning each time it is triggered. When the trigger’s active interval is exited the animation is reset.",
-          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-type-repeat",
+          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-behavior-repeat",
           "type": "value",
           "value": "repeat"
         },
         {
           "name": "alternate",
           "prose": "The animation is played forwards, according to its playback direction, each time it is triggered. When the trigger’s active interval is exited the animation is reversed.",
-          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-type-alternate",
+          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-behavior-alternate",
           "type": "value",
           "value": "alternate"
         },
         {
           "name": "state",
           "prose": "The animation is triggered and played once. When the trigger’s active interval is exited the animation is paused. When the trigger’s active interval is re-entered the animation is resumed.",
-          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-type-state",
+          "href": "https://drafts.csswg.org/css-animations-2/#valdef-animation-trigger-behavior-state",
           "type": "value",
           "value": "state"
         }
       ],
       "styleDeclaration": [
-        "animation-trigger-type",
-        "animationTriggerType"
+        "animation-trigger-behavior",
+        "animationTriggerBehavior"
       ]
     },
     {
@@ -362,16 +362,16 @@
       "type": "type"
     },
     {
-      "name": "<single-animation-trigger-type>",
+      "name": "<single-animation-trigger-behavior>",
       "value": "once | repeat | alternate | state",
-      "href": "https://drafts.csswg.org/css-animations-2/#typedef-single-animation-trigger-type",
+      "href": "https://drafts.csswg.org/css-animations-2/#typedef-single-animation-trigger-behavior",
       "type": "type"
     },
     {
       "name": "<single-animation-trigger>",
       "href": "https://drafts.csswg.org/css-animations-2/#typedef-single-animation-trigger",
       "type": "type",
-      "value": "<single-animation-trigger-type> || [ none | auto | [ [ <dashed-ident> | <scroll()> | <view()> ] [ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]{0,4} ] ]"
+      "value": "<single-animation-trigger-behavior> || [ none | auto | [ [ <dashed-ident> | <scroll()> | <view()> ] [ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]{0,4} ] ]"
     }
   ]
 }

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/css/css-overflow-5.json packages/css/css-overflow-5.json
--- webref/node_modules/@webref/css/css-overflow-5.json
+++ packages/css/css-overflow-5.json
@@ -5,6 +5,38 @@
   },
   "properties": [
     {
+      "name": "scroll-target-group",
+      "href": "https://drafts.csswg.org/css-overflow-5/#propdef-scroll-target-group",
+      "value": "none | auto",
+      "initial": "none",
+      "appliesTo": "all elements",
+      "inherited": "no",
+      "percentages": "n/a",
+      "computedValue": "specified value",
+      "canonicalOrder": "per grammar",
+      "animationType": "discrete",
+      "values": [
+        {
+          "name": "none",
+          "prose": "The element does not establish a scroll marker group container.",
+          "href": "https://drafts.csswg.org/css-overflow-5/#valdef-scroll-target-group-none",
+          "type": "value",
+          "value": "none"
+        },
+        {
+          "name": "auto",
+          "prose": "The element establishes a scroll marker group container forming a scroll marker group containing all of the scroll marker elements for which this is the nearest ancestor scroll marker group container.",
+          "href": "https://drafts.csswg.org/css-overflow-5/#valdef-scroll-target-group-auto",
+          "type": "value",
+          "value": "auto"
+        }
+      ],
+      "styleDeclaration": [
+        "scroll-target-group",
+        "scrollTargetGroup"
+      ]
+    },
+    {
       "name": "scroll-marker-group",
       "href": "https://drafts.csswg.org/css-overflow-5/#propdef-scroll-marker-group",
       "value": "none | before | after",

diff --ignore-trailing-space '--exclude=package.json' '--exclude=README.md' '--exclude=CHANGELOG.md' '--unified=3' webref/node_modules/@webref/css/css-text-4.json packages/css/css-text-4.json
--- webref/node_modules/@webref/css/css-text-4.json
+++ packages/css/css-text-4.json
@@ -60,7 +60,7 @@
         },
         {
           "name": "math-auto",
-          "prose": "See MathML Core § 4.2 New text-transform value.",
+          "prose": "See .",
           "href": "https://drafts.csswg.org/css-text-4/#valdef-text-transform-math-auto",
           "type": "value",
           "value": "math-auto"

@github-actions github-actions bot force-pushed the release-css-20250526130208505 branch 6 times, most recently from 7a0eeb6 to b7c6d40 Compare May 28, 2025 01:01
@github-actions github-actions bot force-pushed the release-css-20250526130208505 branch from b7c6d40 to 17f963e Compare May 28, 2025 06:48
@tidoust tidoust merged commit 47f8d9c into main May 28, 2025
@tidoust tidoust deleted the release-css-20250526130208505 branch May 28, 2025 07:54
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