Merge remote-tracking branch 'origin/main' into perf/fix-dom-widgets

This commit is contained in:
bymyself
2026-04-10 18:45:31 -07:00
889 changed files with 62487 additions and 19691 deletions

View File

@@ -113,7 +113,10 @@ function composeStyle() {
...positionStyle.value,
...(enableDomClipping.value ? clippingStyle.value : {}),
zIndex: widgetState.zIndex,
pointerEvents: widgetState.readonly || isDisabled ? 'none' : 'auto',
pointerEvents:
!widgetState.visible || widgetState.readonly || isDisabled
? 'none'
: 'auto',
opacity: isDisabled ? 0.5 : 1
}
}