fix(elements/appui): prevent scroll chaining on app UI components by adding overscroll-behavior: contain
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 2026-01-03 - 3.29.3 - fix(elements/appui)
|
||||
prevent scroll chaining on app UI components by adding overscroll-behavior: contain
|
||||
|
||||
- Added CSS overscroll-behavior: contain to activity log, main menu, secondary menu, profile dropdown, and tabs components to prevent scroll chaining and unintended body scrolling on touch/trackpad.
|
||||
- Styling-only change; no public API or behavioral changes beyond scroll handling.
|
||||
- Bump patch version from 3.29.2 to 3.29.3.
|
||||
|
||||
## 2026-01-03 - 3.29.2 - fix(dees-appui)
|
||||
set min-height: 0 on .maingrid > dees-appui-maincontent to prevent layout overflow in flex container
|
||||
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@design.estate/dees-catalog',
|
||||
version: '3.29.2',
|
||||
version: '3.29.3',
|
||||
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
|
||||
}
|
||||
|
||||
@@ -122,6 +122,7 @@ export class DeesAppuiActivitylog extends DeesElement implements IActivityLogAPI
|
||||
width: 100%;
|
||||
padding: 8px 0;
|
||||
overflow-y: auto;
|
||||
overscroll-behavior: contain;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: ${cssManager.bdTheme('#d4d4d4', '#333333')} transparent;
|
||||
}
|
||||
|
||||
@@ -164,6 +164,7 @@ export class DeesAppuiMainmenu extends DeesElement {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
overscroll-behavior: contain;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -285,6 +285,7 @@ export class DeesAppuiProfileDropdown extends DeesElement {
|
||||
max-width: calc(100vw - 32px);
|
||||
max-height: calc(100vh - 32px);
|
||||
overflow-y: auto;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
:host([isopen]) .dropdown {
|
||||
|
||||
@@ -201,6 +201,7 @@ export class DeesAppuiSecondarymenu extends DeesElement {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
overscroll-behavior: contain;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -116,6 +116,7 @@ export class DeesAppuiTabs extends DeesElement {
|
||||
font-size: 14px;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
overscroll-behavior: contain;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: transparent transparent;
|
||||
height: 100%;
|
||||
|
||||
Reference in New Issue
Block a user