@angular/cdk 21.0.0-rc.0 → 21.0.0-rc.2
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/fesm2022/_a11y-module-chunk.mjs.map +1 -1
- package/fesm2022/_activedescendant-key-manager-chunk.mjs.map +1 -1
- package/fesm2022/_array-chunk.mjs.map +1 -1
- package/fesm2022/_breakpoints-observer-chunk.mjs.map +1 -1
- package/fesm2022/_css-pixel-value-chunk.mjs.map +1 -1
- package/fesm2022/_data-source-chunk.mjs.map +1 -1
- package/fesm2022/_directionality-chunk.mjs.map +1 -1
- package/fesm2022/_dispose-view-repeater-strategy-chunk.mjs.map +1 -1
- package/fesm2022/_element-chunk.mjs.map +1 -1
- package/fesm2022/_fake-event-detection-chunk.mjs.map +1 -1
- package/fesm2022/_focus-key-manager-chunk.mjs.map +1 -1
- package/fesm2022/_focus-monitor-chunk.mjs.map +1 -1
- package/fesm2022/_id-generator-chunk.mjs +3 -2
- package/fesm2022/_id-generator-chunk.mjs.map +1 -1
- package/fesm2022/_keycodes-chunk.mjs.map +1 -1
- package/fesm2022/_list-key-manager-chunk.mjs.map +1 -1
- package/fesm2022/_overlay-module-chunk.mjs +50 -33
- package/fesm2022/_overlay-module-chunk.mjs.map +1 -1
- package/fesm2022/_passive-listeners-chunk.mjs.map +1 -1
- package/fesm2022/_platform-chunk.mjs.map +1 -1
- package/fesm2022/_recycle-view-repeater-strategy-chunk.mjs.map +1 -1
- package/fesm2022/_scrolling-chunk.mjs.map +1 -1
- package/fesm2022/_selection-model-chunk.mjs.map +1 -1
- package/fesm2022/_shadow-dom-chunk.mjs.map +1 -1
- package/fesm2022/_style-loader-chunk.mjs.map +1 -1
- package/fesm2022/_test-environment-chunk.mjs.map +1 -1
- package/fesm2022/_tree-key-manager-chunk.mjs.map +1 -1
- package/fesm2022/_typeahead-chunk.mjs.map +1 -1
- package/fesm2022/_unique-selection-dispatcher-chunk.mjs.map +1 -1
- package/fesm2022/a11y.mjs.map +1 -1
- package/fesm2022/accordion.mjs.map +1 -1
- package/fesm2022/bidi.mjs.map +1 -1
- package/fesm2022/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/clipboard.mjs.map +1 -1
- package/fesm2022/coercion-private.mjs.map +1 -1
- package/fesm2022/coercion.mjs.map +1 -1
- package/fesm2022/dialog.mjs +1 -1
- package/fesm2022/dialog.mjs.map +1 -1
- package/fesm2022/drag-drop.mjs.map +1 -1
- package/fesm2022/keycodes.mjs.map +1 -1
- package/fesm2022/layout.mjs.map +1 -1
- package/fesm2022/listbox.mjs.map +1 -1
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/observers-private.mjs.map +1 -1
- package/fesm2022/observers.mjs.map +1 -1
- package/fesm2022/overlay.mjs +1 -1
- package/fesm2022/overlay.mjs.map +1 -1
- package/fesm2022/platform.mjs.map +1 -1
- package/fesm2022/portal.mjs.map +1 -1
- package/fesm2022/private.mjs.map +1 -1
- package/fesm2022/scrolling.mjs.map +1 -1
- package/fesm2022/stepper.mjs.map +1 -1
- package/fesm2022/table.mjs.map +1 -1
- package/fesm2022/testing-selenium-webdriver.mjs.map +1 -1
- package/fesm2022/testing-testbed.mjs.map +1 -1
- package/fesm2022/testing.mjs.map +1 -1
- package/fesm2022/text-field.mjs.map +1 -1
- package/fesm2022/tree.mjs.map +1 -1
- package/overlay/_index.scss +8 -1
- package/overlay-prebuilt.css +1 -1
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/types/_overlay-module-chunk.d.ts +16 -6
- package/types/a11y.d.ts +3 -1
- package/types/overlay.d.ts +11 -9
package/overlay/_index.scss
CHANGED
|
@@ -190,11 +190,13 @@ $backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
|
|
|
190
190
|
background: none;
|
|
191
191
|
border: none;
|
|
192
192
|
padding: 0;
|
|
193
|
-
color: inherit;
|
|
194
193
|
outline: 0;
|
|
195
194
|
overflow: visible;
|
|
196
195
|
position: fixed;
|
|
197
196
|
pointer-events: none;
|
|
197
|
+
white-space: normal;
|
|
198
|
+
color: inherit;
|
|
199
|
+
text-decoration: none;
|
|
198
200
|
|
|
199
201
|
// These are important so the overlay can be measured before it's fully inserted.
|
|
200
202
|
width: 100%;
|
|
@@ -204,6 +206,10 @@ $backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
|
|
|
204
206
|
// with `align-self` can break the positioning (see #29809).
|
|
205
207
|
inset: auto;
|
|
206
208
|
|
|
209
|
+
// Some older versions of Chrome won't render the popover properly without these.
|
|
210
|
+
top: 0;
|
|
211
|
+
left: 0;
|
|
212
|
+
|
|
207
213
|
// For the time being we're using our `.cdk-overlay-backdrop` element instead of the native one.
|
|
208
214
|
&::backdrop {
|
|
209
215
|
display: none;
|
|
@@ -211,6 +217,7 @@ $backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
|
|
|
211
217
|
|
|
212
218
|
.cdk-overlay-backdrop {
|
|
213
219
|
position: fixed;
|
|
220
|
+
z-index: auto;
|
|
214
221
|
}
|
|
215
222
|
}
|
|
216
223
|
}
|
package/overlay-prebuilt.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;display:flex;max-width:100%;max-height:100%;z-index:1000}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0;touch-action:manipulation;z-index:1000;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}@media(prefers-reduced-motion){.cdk-overlay-backdrop{transition-duration:1ms}}.cdk-overlay-backdrop-showing{opacity:1}@media(forced-colors: active){.cdk-overlay-backdrop-showing{opacity:.6}}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,.cdk-high-contrast-active .cdk-overlay-transparent-backdrop{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;display:flex;flex-direction:column;min-width:1px;min-height:1px;z-index:1000}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.cdk-overlay-popover{background:none;border:none;padding:0;
|
|
1
|
+
.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;display:flex;max-width:100%;max-height:100%;z-index:1000}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0;touch-action:manipulation;z-index:1000;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}@media(prefers-reduced-motion){.cdk-overlay-backdrop{transition-duration:1ms}}.cdk-overlay-backdrop-showing{opacity:1}@media(forced-colors: active){.cdk-overlay-backdrop-showing{opacity:.6}}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,.cdk-high-contrast-active .cdk-overlay-transparent-backdrop{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;display:flex;flex-direction:column;min-width:1px;min-height:1px;z-index:1000}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.cdk-overlay-popover{background:none;border:none;padding:0;outline:0;overflow:visible;position:fixed;pointer-events:none;white-space:normal;color:inherit;text-decoration:none;width:100%;height:100%;inset:auto;top:0;left:0}.cdk-overlay-popover::backdrop{display:none}.cdk-overlay-popover .cdk-overlay-backdrop{position:fixed;z-index:auto}
|
package/package.json
CHANGED
|
@@ -26,6 +26,6 @@ function default_1() {
|
|
|
26
26
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
27
27
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
28
28
|
// dependencies in new CLI projects.
|
|
29
|
-
return (0, utility_1.addDependency)('@angular/cdk', `~21.0.0-rc.
|
|
29
|
+
return (0, utility_1.addDependency)('@angular/cdk', `~21.0.0-rc.2`, { existing: utility_1.ExistingBehavior.Skip });
|
|
30
30
|
}
|
|
31
31
|
//# sourceMappingURL=index.js.map
|
|
@@ -235,7 +235,7 @@ interface PositionStrategy {
|
|
|
235
235
|
* Gets the element in the DOM after which to insert
|
|
236
236
|
* the overlay when it is rendered out as a popover.
|
|
237
237
|
*/
|
|
238
|
-
getPopoverInsertionPoint?(): Element;
|
|
238
|
+
getPopoverInsertionPoint?(): Element | null;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
241
|
/** Initial configuration used when creating an overlay. */
|
|
@@ -423,6 +423,8 @@ type FlexibleConnectedPositionStrategyOrigin = ElementRef | Element | (Point & {
|
|
|
423
423
|
* @param origin Origin relative to which to position the overlay.
|
|
424
424
|
*/
|
|
425
425
|
declare function createFlexibleConnectedPositionStrategy(injector: Injector, origin: FlexibleConnectedPositionStrategyOrigin): FlexibleConnectedPositionStrategy;
|
|
426
|
+
/** Supported locations in the DOM for connected overlays. */
|
|
427
|
+
type FlexibleOverlayPopoverLocation = 'global' | 'inline';
|
|
426
428
|
/**
|
|
427
429
|
* A strategy for positioning overlays. Using this strategy, an overlay is given an
|
|
428
430
|
* implicit position relative some origin element. The relative position is defined in terms of
|
|
@@ -494,6 +496,8 @@ declare class FlexibleConnectedPositionStrategy implements PositionStrategy {
|
|
|
494
496
|
private _appliedPanelClasses;
|
|
495
497
|
/** Amount by which the overlay was pushed in each axis during the last time it was positioned. */
|
|
496
498
|
private _previousPushAmount;
|
|
499
|
+
/** Configures where in the DOM to insert the overlay when popovers are enabled. */
|
|
500
|
+
private _popoverLocation;
|
|
497
501
|
/** Observable sequence of position changes. */
|
|
498
502
|
positionChanges: Observable<ConnectedOverlayPositionChange>;
|
|
499
503
|
/** Ordered list of preferred positions, from most to least desirable. */
|
|
@@ -582,8 +586,15 @@ declare class FlexibleConnectedPositionStrategy implements PositionStrategy {
|
|
|
582
586
|
* elements onto which to set the transform origin.
|
|
583
587
|
*/
|
|
584
588
|
withTransformOriginOn(selector: string): this;
|
|
589
|
+
/**
|
|
590
|
+
* Determines where in the DOM the overlay will be rendered when popover mode is enabled.
|
|
591
|
+
* @param location Configures the location in the DOM. Supports the following values:
|
|
592
|
+
* - `global` - The default which inserts the overlay inside the overlay container.
|
|
593
|
+
* - `inline` - Inserts the overlay next to the trigger.
|
|
594
|
+
*/
|
|
595
|
+
withPopoverLocation(location: FlexibleOverlayPopoverLocation): this;
|
|
585
596
|
/** @docs-private */
|
|
586
|
-
getPopoverInsertionPoint(): Element;
|
|
597
|
+
getPopoverInsertionPoint(): Element | null;
|
|
587
598
|
/**
|
|
588
599
|
* Gets the (x, y) coordinate of a connection point on the origin based on a relative position.
|
|
589
600
|
*/
|
|
@@ -748,7 +759,7 @@ interface CdkConnectedOverlayConfig {
|
|
|
748
759
|
growAfterOpen?: boolean;
|
|
749
760
|
push?: boolean;
|
|
750
761
|
disposeOnNavigation?: boolean;
|
|
751
|
-
usePopover?:
|
|
762
|
+
usePopover?: FlexibleOverlayPopoverLocation | null;
|
|
752
763
|
matchWidth?: boolean;
|
|
753
764
|
}
|
|
754
765
|
/**
|
|
@@ -819,7 +830,7 @@ declare class CdkConnectedOverlay implements OnDestroy, OnChanges {
|
|
|
819
830
|
/** Whether the overlay should be disposed of when the user goes backwards/forwards in history. */
|
|
820
831
|
disposeOnNavigation: boolean;
|
|
821
832
|
/** Whether the connected overlay should be rendered inside a popover element or the overlay container. */
|
|
822
|
-
usePopover:
|
|
833
|
+
usePopover: FlexibleOverlayPopoverLocation | null;
|
|
823
834
|
/** Whether the overlay should match the trigger's width. */
|
|
824
835
|
matchWidth: boolean;
|
|
825
836
|
/** Shorthand for setting multiple overlay options at once. */
|
|
@@ -867,7 +878,6 @@ declare class CdkConnectedOverlay implements OnDestroy, OnChanges {
|
|
|
867
878
|
static ngAcceptInputType_growAfterOpen: unknown;
|
|
868
879
|
static ngAcceptInputType_push: unknown;
|
|
869
880
|
static ngAcceptInputType_disposeOnNavigation: unknown;
|
|
870
|
-
static ngAcceptInputType_usePopover: unknown;
|
|
871
881
|
static ngAcceptInputType_matchWidth: unknown;
|
|
872
882
|
}
|
|
873
883
|
|
|
@@ -878,4 +888,4 @@ declare class OverlayModule {
|
|
|
878
888
|
}
|
|
879
889
|
|
|
880
890
|
export { CDK_CONNECTED_OVERLAY_DEFAULT_CONFIG, CdkConnectedOverlay, CdkOverlayOrigin, ConnectedOverlayPositionChange, ConnectionPositionPair, FlexibleConnectedPositionStrategy, OverlayConfig, OverlayContainer, OverlayKeyboardDispatcher, OverlayModule, OverlayOutsideClickDispatcher, OverlayRef, STANDARD_DROPDOWN_ADJACENT_POSITIONS, STANDARD_DROPDOWN_BELOW_POSITIONS, ScrollingVisibility, createFlexibleConnectedPositionStrategy, validateHorizontalPosition, validateVerticalPosition };
|
|
881
|
-
export type { CdkConnectedOverlayConfig, ConnectedPosition, FlexibleConnectedPositionStrategyOrigin, HorizontalConnectionPos, OriginConnectionPosition, OverlayConnectionPosition, OverlaySizeConfig, PositionStrategy, ScrollStrategy, VerticalConnectionPos, ViewportMargin };
|
|
891
|
+
export type { CdkConnectedOverlayConfig, ConnectedPosition, FlexibleConnectedPositionStrategyOrigin, FlexibleOverlayPopoverLocation, HorizontalConnectionPos, OriginConnectionPosition, OverlayConnectionPosition, OverlaySizeConfig, PositionStrategy, ScrollStrategy, VerticalConnectionPos, ViewportMargin };
|
package/types/a11y.d.ts
CHANGED
|
@@ -506,11 +506,13 @@ declare class HighContrastModeDetector implements OnDestroy {
|
|
|
506
506
|
/** Service that generates unique IDs for DOM nodes. */
|
|
507
507
|
declare class _IdGenerator {
|
|
508
508
|
private _appId;
|
|
509
|
+
private static _infix;
|
|
509
510
|
/**
|
|
510
511
|
* Generates a unique ID with a specific prefix.
|
|
511
512
|
* @param prefix Prefix to add to the ID.
|
|
513
|
+
* @param randomize Add a randomized infix string.
|
|
512
514
|
*/
|
|
513
|
-
getId(prefix: string): string;
|
|
515
|
+
getId(prefix: string, randomize?: boolean): string;
|
|
514
516
|
static ɵfac: i0.ɵɵFactoryDeclaration<_IdGenerator, never>;
|
|
515
517
|
static ɵprov: i0.ɵɵInjectableDeclaration<_IdGenerator>;
|
|
516
518
|
}
|
package/types/overlay.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ScrollStrategy, OverlayRef, PositionStrategy, FlexibleConnectedPositionStrategyOrigin, FlexibleConnectedPositionStrategy, OverlayConfig, OverlayContainer } from './_overlay-module-chunk.js';
|
|
2
|
-
export { CDK_CONNECTED_OVERLAY_DEFAULT_CONFIG, CdkConnectedOverlay, CdkConnectedOverlayConfig, CdkOverlayOrigin, ConnectedOverlayPositionChange, ConnectedPosition, ConnectionPositionPair, HorizontalConnectionPos, OriginConnectionPosition, OverlayConnectionPosition, OverlayKeyboardDispatcher, OverlayModule, OverlayOutsideClickDispatcher, OverlaySizeConfig, STANDARD_DROPDOWN_ADJACENT_POSITIONS, STANDARD_DROPDOWN_BELOW_POSITIONS, ScrollingVisibility, VerticalConnectionPos, ViewportMargin, createFlexibleConnectedPositionStrategy, validateHorizontalPosition, validateVerticalPosition } from './_overlay-module-chunk.js';
|
|
2
|
+
export { CDK_CONNECTED_OVERLAY_DEFAULT_CONFIG, CdkConnectedOverlay, CdkConnectedOverlayConfig, CdkOverlayOrigin, ConnectedOverlayPositionChange, ConnectedPosition, ConnectionPositionPair, FlexibleOverlayPopoverLocation, HorizontalConnectionPos, OriginConnectionPosition, OverlayConnectionPosition, OverlayKeyboardDispatcher, OverlayModule, OverlayOutsideClickDispatcher, OverlaySizeConfig, STANDARD_DROPDOWN_ADJACENT_POSITIONS, STANDARD_DROPDOWN_BELOW_POSITIONS, ScrollingVisibility, VerticalConnectionPos, ViewportMargin, createFlexibleConnectedPositionStrategy, validateHorizontalPosition, validateVerticalPosition } from './_overlay-module-chunk.js';
|
|
3
3
|
import { ScrollDispatcher } from './_scrolling-module-chunk.js';
|
|
4
4
|
export { CdkScrollable, CdkFixedSizeVirtualScroll as ɵɵCdkFixedSizeVirtualScroll, CdkScrollableModule as ɵɵCdkScrollableModule, CdkVirtualForOf as ɵɵCdkVirtualForOf, CdkVirtualScrollViewport as ɵɵCdkVirtualScrollViewport, CdkVirtualScrollableElement as ɵɵCdkVirtualScrollableElement, CdkVirtualScrollableWindow as ɵɵCdkVirtualScrollableWindow } from './_scrolling-module-chunk.js';
|
|
5
5
|
import { ViewportRuler } from './scrolling.js';
|
|
6
6
|
import * as i0 from '@angular/core';
|
|
7
|
-
import { Injector, NgZone, OnDestroy } from '@angular/core';
|
|
7
|
+
import { Injector, NgZone, InjectionToken, OnDestroy } from '@angular/core';
|
|
8
8
|
export { ComponentType } from './_portal-directives-chunk.js';
|
|
9
9
|
export { Dir as ɵɵDir } from './_bidi-module-chunk.js';
|
|
10
10
|
import '@angular/common';
|
|
@@ -154,7 +154,7 @@ declare class ScrollStrategyOptions {
|
|
|
154
154
|
* Creates a global position strategy.
|
|
155
155
|
* @param injector Injector used to resolve dependencies for the strategy.
|
|
156
156
|
*/
|
|
157
|
-
declare function createGlobalPositionStrategy(
|
|
157
|
+
declare function createGlobalPositionStrategy(_injector: Injector): GlobalPositionStrategy;
|
|
158
158
|
/**
|
|
159
159
|
* A strategy for positioning overlays. Using this strategy, an overlay is given an
|
|
160
160
|
* explicit position relative to the browser's viewport. We use flexbox, instead of
|
|
@@ -173,8 +173,6 @@ declare class GlobalPositionStrategy implements PositionStrategy {
|
|
|
173
173
|
private _width;
|
|
174
174
|
private _height;
|
|
175
175
|
private _isDisposed;
|
|
176
|
-
private _document;
|
|
177
|
-
constructor(injector?: Injector);
|
|
178
176
|
attach(overlayRef: OverlayRef): void;
|
|
179
177
|
/**
|
|
180
178
|
* Sets the top position of the overlay. Clears any previously set vertical position.
|
|
@@ -246,8 +244,6 @@ declare class GlobalPositionStrategy implements PositionStrategy {
|
|
|
246
244
|
* @docs-private
|
|
247
245
|
*/
|
|
248
246
|
dispose(): void;
|
|
249
|
-
/** @docs-private */
|
|
250
|
-
getPopoverInsertionPoint(): Element;
|
|
251
247
|
}
|
|
252
248
|
|
|
253
249
|
/** Builder for overlay position strategy. */
|
|
@@ -267,6 +263,12 @@ declare class OverlayPositionBuilder {
|
|
|
267
263
|
static ɵprov: i0.ɵɵInjectableDeclaration<OverlayPositionBuilder>;
|
|
268
264
|
}
|
|
269
265
|
|
|
266
|
+
/** Object used to configure the default options for overlays. */
|
|
267
|
+
interface OverlayDefaultConfig {
|
|
268
|
+
usePopover?: boolean;
|
|
269
|
+
}
|
|
270
|
+
/** Injection token used to configure the default options for CDK overlays. */
|
|
271
|
+
declare const OVERLAY_DEFAULT_CONFIG: InjectionToken<OverlayDefaultConfig>;
|
|
270
272
|
/**
|
|
271
273
|
* Creates an overlay.
|
|
272
274
|
* @param injector Injector to use when resolving the overlay's dependencies.
|
|
@@ -328,5 +330,5 @@ declare class FullscreenOverlayContainer extends OverlayContainer implements OnD
|
|
|
328
330
|
static ɵprov: i0.ɵɵInjectableDeclaration<FullscreenOverlayContainer>;
|
|
329
331
|
}
|
|
330
332
|
|
|
331
|
-
export { BlockScrollStrategy, CloseScrollStrategy, FlexibleConnectedPositionStrategy, FlexibleConnectedPositionStrategyOrigin, FullscreenOverlayContainer, GlobalPositionStrategy, NoopScrollStrategy, Overlay, OverlayConfig, OverlayContainer, OverlayPositionBuilder, OverlayRef, PositionStrategy, RepositionScrollStrategy, ScrollDispatcher, ScrollStrategy, ScrollStrategyOptions, ViewportRuler, createBlockScrollStrategy, createCloseScrollStrategy, createGlobalPositionStrategy, createNoopScrollStrategy, createOverlayRef, createRepositionScrollStrategy };
|
|
332
|
-
export type { RepositionScrollStrategyConfig };
|
|
333
|
+
export { BlockScrollStrategy, CloseScrollStrategy, FlexibleConnectedPositionStrategy, FlexibleConnectedPositionStrategyOrigin, FullscreenOverlayContainer, GlobalPositionStrategy, NoopScrollStrategy, OVERLAY_DEFAULT_CONFIG, Overlay, OverlayConfig, OverlayContainer, OverlayPositionBuilder, OverlayRef, PositionStrategy, RepositionScrollStrategy, ScrollDispatcher, ScrollStrategy, ScrollStrategyOptions, ViewportRuler, createBlockScrollStrategy, createCloseScrollStrategy, createGlobalPositionStrategy, createNoopScrollStrategy, createOverlayRef, createRepositionScrollStrategy };
|
|
334
|
+
export type { OverlayDefaultConfig, RepositionScrollStrategyConfig };
|