Skip to content

Commit 3e84cf7

Browse files
authored
fix(cdk/overlay): update golden file (#32367)
1 parent a3b985f commit 3e84cf7

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

goldens/cdk/overlay/index.api.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,10 @@ export class FlexibleConnectedPositionStrategy implements PositionStrategy {
284284
// (undocumented)
285285
detach(): void;
286286
dispose(): void;
287-
getPopoverInsertionPoint(): Element | null | {type: 'parent', element: Element};
287+
getPopoverInsertionPoint(): Element | null | {
288+
type: 'parent';
289+
element: Element;
290+
};
288291
_origin: FlexibleConnectedPositionStrategyOrigin;
289292
positionChanges: Observable<ConnectedOverlayPositionChange>;
290293
get positions(): ConnectionPositionPair[];
@@ -311,7 +314,10 @@ export type FlexibleConnectedPositionStrategyOrigin = ElementRef | Element | (Po
311314
});
312315

313316
// @public
314-
export type FlexibleOverlayPopoverLocation = 'global' | 'inline' | {type: 'parent', element: Element };
317+
export type FlexibleOverlayPopoverLocation = 'global' | 'inline' | {
318+
type: 'parent';
319+
element: Element;
320+
};
315321

316322
// @public
317323
export class FullscreenOverlayContainer extends OverlayContainer implements OnDestroy {
@@ -534,7 +540,10 @@ export interface PositionStrategy {
534540
attach(overlayRef: OverlayRef): void;
535541
detach?(): void;
536542
dispose(): void;
537-
getPopoverInsertionPoint?(): Element | null | {type: 'parent', element: Element};
543+
getPopoverInsertionPoint?(): Element | null | {
544+
type: 'parent';
545+
element: Element;
546+
};
538547
}
539548

540549
// @public

0 commit comments

Comments
 (0)