@ascentgl/ads-ui 21.112.0 → 21.114.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ascentgl/ads-ui",
3
- "version": "21.112.0",
3
+ "version": "21.114.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=21.0.0",
6
6
  "date-fns": ">=4.1.0",
@@ -2172,13 +2172,32 @@ declare class AdsDatepickerComponent extends AdsDatetimepickerComponent implemen
2172
2172
  /** @ignore */
2173
2173
  private elementRef;
2174
2174
  /** @ignore */
2175
+ private readonly overlayContainerRef;
2176
+ /** @ignore */
2175
2177
  private intersectionObserver?;
2178
+ /** @ignore - Cleanup for scroll passthrough (pointerdown + scroll listeners) */
2179
+ private scrollPassthroughCleanup?;
2176
2180
  /** @ignore */
2177
2181
  ngOnInit(): void;
2178
2182
  /** @ignore */
2179
2183
  ngOnDestroy(): void;
2180
2184
  /** @ignore */
2181
2185
  private setupIntersectionObserver;
2186
+ /**
2187
+ * @ignore
2188
+ * The CDK overlay backdrop has `pointer-events: auto` which intercepts all
2189
+ * pointer / wheel events, preventing native scroll on underlying containers.
2190
+ * Disabling pointer events on the backdrop lets the browser handle scrolling
2191
+ * natively (preserving momentum / inertia). A document-level pointerdown
2192
+ * listener replaces the lost backdrop click-to-close behaviour.
2193
+ */
2194
+ onOpened(): void;
2195
+ /** @ignore */
2196
+ onClosed(): void;
2197
+ /** @ignore */
2198
+ private setupScrollPassthrough;
2199
+ /** @ignore - Walk up the DOM to find the first ancestor with overflow-y: auto|scroll */
2200
+ private findScrollableAncestor;
2182
2201
  /** @ignore - Override to dispatch change event on blur when input was modified programmatically */
2183
2202
  touchControls(): void;
2184
2203
  /** @ignore */