Compare commits

...

5 Commits
v3.6.1 ... main

Author SHA1 Message Date
a778ad6855 v3.7.1
Some checks failed
Default (tags) / security (push) Failing after 13s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 17:07:41 +00:00
24a1f064ba fix(sidebar): increase scrolled sidebar header box-shadow intensity and size to improve visual separation 2026-01-04 17:07:41 +00:00
203a53a45d v3.7.0
Some checks failed
Default (tags) / security (push) Failing after 13s
Default (tags) / test (push) Failing after 12s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 17:02:15 +00:00
349d4ba320 feat(wcc-sidebar): add header shadow and scrolled state for sidebar menu to show elevation when content is scrolled 2026-01-04 17:02:15 +00:00
399ef3d508 v3.6.2
Some checks failed
Default (tags) / security (push) Failing after 14s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-01-04 16:59:18 +00:00
5 changed files with 71 additions and 17 deletions

View File

@@ -1,5 +1,27 @@
# Changelog
## 2026-01-04 - 3.7.1 - fix(sidebar)
increase scrolled sidebar header box-shadow intensity and size to improve visual separation
- Changed .sidebar-header.scrolled box-shadow from `0 4px 12px -2px rgba(0, 0, 0, 0.4)` to `0 8px 24px -2px rgba(0, 0, 0, 1)`
- File modified: ts_web/elements/wcc-sidebar.ts — stronger, larger, and fully opaque shadow for better contrast when scrolled
## 2026-01-04 - 3.7.0 - feat(wcc-sidebar)
add header shadow and scrolled state for sidebar menu to show elevation when content is scrolled
- Introduce isMenuScrolled state to track whether the menu has been scrolled
- Add handleMenuScroll handler and bind it to the menu scroll event
- Apply a 'scrolled' class to .sidebar-header to add box-shadow and border-bottom color with transitions
- Update template to conditionally add scrolled class and attach scroll listener
## 2026-01-04 - 3.6.2 - fix(wcc-sidebar)
use sidebar's internal .menu element for scroll management and expose scrollableContainer getter
- Add public scrollableContainer getter to wcc-sidebar that returns the .menu element for external scroll control
- Update wcc-dashboard to query wcc-sidebar as WccSidebar and attach scroll listeners to sidebar.scrollableContainer instead of the host element
- Restore sidebar scroll position by setting scrollTop on the scrollableContainer when applying saved positions
- TypeScript casting added to avoid nullable/implicit any issues when querying the sidebar element
## 2026-01-04 - 3.6.1 - fix(wcc-sidebar)
sort sidebar items alphabetically and unify grouped and ungrouped items for consistent ordering

View File

@@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-wcctools",
"version": "3.6.1",
"version": "3.7.1",
"private": false,
"description": "A set of web component tools for creating element catalogues, enabling the structured development and documentation of custom elements and pages.",
"exports": {

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-wcctools',
version: '3.6.1',
version: '3.7.1',
description: 'A set of web component tools for creating element catalogues, enabling the structured development and documentation of custom elements and pages.'
}

View File

@@ -12,6 +12,7 @@ import './wcc-properties.js';
import { type TTheme } from './wcc-properties.js';
import { breakpoints } from '@design.estate/dees-domtools';
import { WccFrame } from './wcc-frame.js';
import { WccSidebar } from './wcc-sidebar.js';
/**
* Get filtered and sorted items from a section
@@ -491,10 +492,10 @@ export class WccDashboard extends DeesElement {
if (this.scrollListenersAttached) {
return;
}
const wccFrame = await this.wccFrame;
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar');
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar') as WccSidebar | null;
if (wccFrame) {
// The frame element itself is the scrollable container
wccFrame.addEventListener('scroll', () => {
@@ -505,11 +506,14 @@ export class WccDashboard extends DeesElement {
}
if (wccSidebar) {
// The sidebar element itself is the scrollable container
wccSidebar.addEventListener('scroll', () => {
this.sidebarScrollY = wccSidebar.scrollTop;
this.debouncedScrollUpdate();
});
// Use the sidebar's scrollable container (.menu element)
const scrollContainer = wccSidebar.scrollableContainer;
if (scrollContainer) {
scrollContainer.addEventListener('scroll', () => {
this.sidebarScrollY = scrollContainer.scrollTop;
this.debouncedScrollUpdate();
});
}
}
}
@@ -555,18 +559,21 @@ export class WccDashboard extends DeesElement {
if (this.scrollPositionsApplied) {
return;
}
const wccFrame = await this.wccFrame;
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar');
const wccSidebar = this.shadowRoot.querySelector('wcc-sidebar') as WccSidebar | null;
if (wccFrame && this.frameScrollY > 0) {
// The frame element itself is the scrollable container
wccFrame.scrollTop = this.frameScrollY;
}
if (wccSidebar && this.sidebarScrollY > 0) {
// The sidebar element itself is the scrollable container
wccSidebar.scrollTop = this.sidebarScrollY;
// Use the sidebar's scrollable container (.menu element)
const scrollContainer = wccSidebar.scrollableContainer;
if (scrollContainer) {
scrollContainer.scrollTop = this.sidebarScrollY;
}
}
this.scrollPositionsApplied = true;

View File

@@ -48,8 +48,19 @@ export class WccSidebar extends DeesElement {
@state()
accessor isHidden: boolean = false;
// Track if menu is scrolled for header shadow
@state()
accessor isMenuScrolled: boolean = false;
private sectionsInitialized = false;
/**
* Returns the scrollable container element (.menu) for external scroll management
*/
public get scrollableContainer(): HTMLElement | null {
return this.shadowRoot?.querySelector('.menu') as HTMLElement | null;
}
public render(): TemplateResult {
return html`
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" rel="stylesheet" />
@@ -89,6 +100,15 @@ export class WccSidebar extends DeesElement {
.sidebar-header {
flex-shrink: 0;
transition: box-shadow 0.2s ease, border-color 0.2s ease;
border-bottom: 1px solid transparent;
position: relative;
z-index: 1;
}
.sidebar-header.scrolled {
box-shadow: 0 8px 24px -2px rgba(0, 0, 0, 1);
border-bottom-color: var(--border);
}
.menu {
@@ -430,7 +450,7 @@ export class WccSidebar extends DeesElement {
background: var(--primary);
}
</style>
<div class="sidebar-header">
<div class="sidebar-header ${this.isMenuScrolled ? 'scrolled' : ''}">
<div class="search-container">
<input
type="text"
@@ -447,7 +467,7 @@ export class WccSidebar extends DeesElement {
</div>
${this.renderPinnedSection()}
</div>
<div class="menu">
<div class="menu" @scroll=${this.handleMenuScroll}>
${this.renderSections()}
</div>
<div
@@ -780,6 +800,11 @@ export class WccSidebar extends DeesElement {
this.dispatchEvent(new CustomEvent('searchChanged', { detail: this.searchQuery }));
}
private handleMenuScroll(e: Event) {
const target = e.target as HTMLElement;
this.isMenuScrolled = target.scrollTop > 0;
}
private matchesSearch(name: string): boolean {
if (!this.searchQuery) return true;
return name.toLowerCase().includes(this.searchQuery.toLowerCase());