From 46147dac264d590c9b5cb4bad35454ceeeb9476e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 13:50:25 +0000 Subject: [PATCH 1/2] fix(ProgressBar): fix vertical alignment and spacing in aside mode - Added 'progress-bar--aside' class to main container when 'textAside' is true - Applied 'gap: 4px' to the aside container for proper spacing - Added 'progress-bar__text--aside' class to text when 'textAside' is true - Set 'margin: 0 !important' for the aside text to ensure vertical centering - Restricted 'progress-bar__left' class to only apply when not in aside mode - Added unit test to verify the application of the new classes Co-authored-by: lucasn4s <17988272+lucasn4s@users.noreply.github.com> --- package-lock.json | 4 ++-- package.json | 2 +- src/components/ProgressBar.vue | 12 ++++++++++-- src/tests/ProgressBar.spec.ts | 14 ++++++++++++++ 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9174bb30a..cff882a09 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sysvale/cuida", - "version": "3.154.7", + "version": "3.154.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@sysvale/cuida", - "version": "3.154.7", + "version": "3.154.8", "dependencies": { "@popperjs/core": "^2.11.6", "@sysvale/cuida-icons": "^1.18.0", diff --git a/package.json b/package.json index 06bef20bb..20077d378 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sysvale/cuida", - "version": "3.154.7", + "version": "3.154.8", "description": "A design system built by Sysvale, using storybook and Vue components", "repository": { "type": "git", diff --git a/src/components/ProgressBar.vue b/src/components/ProgressBar.vue index 55a27767b..dbc00c63c 100644 --- a/src/components/ProgressBar.vue +++ b/src/components/ProgressBar.vue @@ -1,11 +1,15 @@