Skip to content

Commit 620c193

Browse files
committed
[chore] Merge branch 'release/v16' into UIK-4327/recursively-check-sidebar-in-wizard
2 parents eb0d4e5 + 16028e6 commit 620c193

File tree

5 files changed

+27
-1
lines changed

5 files changed

+27
-1
lines changed

semcore/wizard/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
88

99
- Improve types, added `WizardContentProps` with `noSidebar` property, component rewritten in TypeScript.
1010

11+
## [16.1.11] - 2025-10-24
12+
13+
### Changed
14+
15+
- `z-index` value for `Stepper` in `hover` state.
16+
1117
## [16.1.10] - 2025-10-06
1218

1319
### Changed

semcore/wizard/__tests__/wizard.browser-test.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,3 +619,23 @@ test.describe('Focus Next Prev', () => {
619619
await expect(locators.button(page, 'Keywords')).toBeFocused();
620620
});
621621
});
622+
623+
test.describe('z-index', () => {
624+
test('Verify tabs hover elements in content ', async ({ page, browserName }) => {
625+
if (browserName == 'firefox') test.skip();
626+
const standPath = 'stories/components/wizard/docs/examples/custom_stepper.tsx';
627+
const htmlContent = await e2eStandToHtml(standPath, 'en');
628+
await page.setContent(htmlContent);
629+
await page.setViewportSize({ width: 800, height: 600 });
630+
631+
const { trigger, modal, steps, nextButton, prevButton, input } = locators;
632+
const stepperTabs = steps(page);
633+
const firstStep = stepperTabs.nth(0);
634+
635+
await page.keyboard.press('Tab');
636+
await page.keyboard.press('Enter');
637+
await nextButton(page, 'Close').waitFor({ state: 'visible' });
638+
await firstStep.hover();
639+
await expect(page).toHaveScreenshot();
640+
});
641+
});
13.4 KB
Loading
14 KB
Loading

semcore/wizard/src/style/wizard.shadow.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ SSidebar {
3939

4040
&:hover {
4141
background: var(--intergalactic-control-primary-advertising-hover, #421983);
42-
z-index: 1;
42+
z-index: 2;
4343
}
4444
&[active] {
4545
background: var(--intergalactic-control-primary-advertising-active, #8649e1);

0 commit comments

Comments
 (0)