@ascentgl/ads-ui 21.112.0 → 21.113.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
|
@@ -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 function for backdrop wheel event listener */
|
|
2179
|
+
private backdropWheelCleanup?;
|
|
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
|
+
* When the calendar overlay opens, the CDK backdrop (pointer-events: auto)
|
|
2189
|
+
* covers the entire viewport and intercepts wheel events, preventing scroll
|
|
2190
|
+
* on underlying containers. Forward those events to the nearest scrollable ancestor.
|
|
2191
|
+
*/
|
|
2192
|
+
onOpened(): void;
|
|
2193
|
+
/** @ignore */
|
|
2194
|
+
onClosed(): void;
|
|
2195
|
+
/** @ignore */
|
|
2196
|
+
private setupBackdropScrollPassthrough;
|
|
2197
|
+
/** @ignore */
|
|
2198
|
+
private teardownBackdropScrollPassthrough;
|
|
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 */
|