@coinbase/cds-web 8.16.4 → 8.17.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/CHANGELOG.md CHANGED
@@ -8,6 +8,16 @@ All notable changes to this project will be documented in this file.
8
8
 
9
9
  <!-- template-start -->
10
10
 
11
+ ## 8.17.0 ((10/16/2025, 07:14 AM PST))
12
+
13
+ This is an artificial version bump with no new change.
14
+
15
+ ## 8.16.5 (10/16/2025 PST)
16
+
17
+ #### 🐞 Fixes
18
+
19
+ - Fix onMount Stepper animations when step other than first is initially active. [[#109](https://github.com/coinbase/cds/pull/109)]
20
+
11
21
  ## 8.16.4 ((10/15/2025, 07:38 AM PST))
12
22
 
13
23
  This is an artificial version bump with no new change.
@@ -54,7 +54,7 @@ const StepperBase = /*#__PURE__*/memo(/*#__PURE__*/forwardRef((_ref, ref) => {
54
54
  direction,
55
55
  activeStepId,
56
56
  steps,
57
- complete = false,
57
+ complete,
58
58
  style,
59
59
  className,
60
60
  completedStepAccessibilityLabel = 'Complete',
@@ -131,7 +131,7 @@ const StepperBase = /*#__PURE__*/memo(/*#__PURE__*/forwardRef((_ref, ref) => {
131
131
  let isAnimatingForward = false;
132
132
 
133
133
  // Case when going from not-complete to complete
134
- if (complete !== previousComplete) {
134
+ if (Boolean(complete) !== previousComplete) {
135
135
  if (complete) {
136
136
  // Going to complete: animate from activeStepIndex+1 to end
137
137
  stepsToAnimate = Array.from({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/cds-web",
3
- "version": "8.16.4",
3
+ "version": "8.17.0",
4
4
  "description": "Coinbase Design System - Web",
5
5
  "repository": {
6
6
  "type": "git",
@@ -147,7 +147,7 @@
147
147
  "react-dom": "^18.3.1"
148
148
  },
149
149
  "dependencies": {
150
- "@coinbase/cds-common": "^8.16.4",
150
+ "@coinbase/cds-common": "^8.17.0",
151
151
  "@coinbase/cds-icons": "^5.4.2",
152
152
  "@coinbase/cds-illustrations": "^4.24.0",
153
153
  "@coinbase/cds-lottie-files": "^3.3.2",