From 36e23db090bd4ba1117341e02f69dc62f341f1f2 Mon Sep 17 00:00:00 2001 From: tjshiu <35056071+tjshiu@users.noreply.github.com> Date: Mon, 17 Nov 2025 13:41:59 -0800 Subject: [PATCH] fix(cdk/overlay): update golden file --- goldens/cdk/overlay/index.api.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/goldens/cdk/overlay/index.api.md b/goldens/cdk/overlay/index.api.md index b40fc7e0ea37..5f83c88501c8 100644 --- a/goldens/cdk/overlay/index.api.md +++ b/goldens/cdk/overlay/index.api.md @@ -284,7 +284,10 @@ export class FlexibleConnectedPositionStrategy implements PositionStrategy { // (undocumented) detach(): void; dispose(): void; - getPopoverInsertionPoint(): Element | null | {type: 'parent', element: Element}; + getPopoverInsertionPoint(): Element | null | { + type: 'parent'; + element: Element; + }; _origin: FlexibleConnectedPositionStrategyOrigin; positionChanges: Observable; get positions(): ConnectionPositionPair[]; @@ -311,7 +314,10 @@ export type FlexibleConnectedPositionStrategyOrigin = ElementRef | Element | (Po }); // @public -export type FlexibleOverlayPopoverLocation = 'global' | 'inline' | {type: 'parent', element: Element }; +export type FlexibleOverlayPopoverLocation = 'global' | 'inline' | { + type: 'parent'; + element: Element; +}; // @public export class FullscreenOverlayContainer extends OverlayContainer implements OnDestroy { @@ -534,7 +540,10 @@ export interface PositionStrategy { attach(overlayRef: OverlayRef): void; detach?(): void; dispose(): void; - getPopoverInsertionPoint?(): Element | null | {type: 'parent', element: Element}; + getPopoverInsertionPoint?(): Element | null | { + type: 'parent'; + element: Element; + }; } // @public