@angular/cdk 21.0.0-next.3 → 21.0.0-next.5
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/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/menu.mjs +3 -5
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/scrolling.mjs +3 -5
- package/fesm2022/scrolling.mjs.map +1 -1
- package/fesm2022/table.mjs +8 -2
- package/fesm2022/table.mjs.map +1 -1
- package/menu/index.d.ts +3 -5
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/table/index.d.ts +3 -1
- package/overlay/_index-deprecated.scss +0 -13
package/menu/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ElementRef, Renderer2, QueryList, InjectionToken,
|
|
2
|
+
import { ElementRef, Renderer2, QueryList, InjectionToken, OnDestroy, Injector, ViewContainerRef, EventEmitter, TemplateRef, OnChanges, SimpleChanges, NgZone, AfterContentInit } from '@angular/core';
|
|
3
3
|
import { ScrollStrategy, ConnectedPosition, OverlayRef, OverlayModule } from '../overlay-module.d.js';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, Subject } from 'rxjs';
|
|
@@ -63,14 +63,12 @@ declare const MENU_STACK: InjectionToken<MenuStack>;
|
|
|
63
63
|
/** Provider that provides the parent menu stack, or a new menu stack if there is no parent one. */
|
|
64
64
|
declare const PARENT_OR_NEW_MENU_STACK_PROVIDER: {
|
|
65
65
|
provide: InjectionToken<MenuStack>;
|
|
66
|
-
|
|
67
|
-
useFactory: (parentMenuStack?: MenuStack) => MenuStack;
|
|
66
|
+
useFactory: () => MenuStack;
|
|
68
67
|
};
|
|
69
68
|
/** Provider that provides the parent menu stack, or a new inline menu stack if there is no parent one. */
|
|
70
69
|
declare const PARENT_OR_NEW_INLINE_MENU_STACK_PROVIDER: (orientation: "vertical" | "horizontal") => {
|
|
71
70
|
provide: InjectionToken<MenuStack>;
|
|
72
|
-
|
|
73
|
-
useFactory: (parentMenuStack?: MenuStack) => MenuStack;
|
|
71
|
+
useFactory: () => MenuStack;
|
|
74
72
|
};
|
|
75
73
|
/** Options that can be provided to the close or closeAll methods. */
|
|
76
74
|
interface CloseOptions {
|
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-next.
|
|
29
|
+
return (0, utility_1.addDependency)('@angular/cdk', `~21.0.0-next.5`, { existing: utility_1.ExistingBehavior.Skip });
|
|
30
30
|
}
|
|
31
31
|
//# sourceMappingURL=index.js.map
|
package/table/index.d.ts
CHANGED
|
@@ -316,7 +316,9 @@ declare class CdkRow {
|
|
|
316
316
|
/** Row that can be used to display a message when no data is shown in the table. */
|
|
317
317
|
declare class CdkNoDataRow {
|
|
318
318
|
templateRef: TemplateRef<any>;
|
|
319
|
-
|
|
319
|
+
_contentClassNames: string[];
|
|
320
|
+
_cellClassNames: string[];
|
|
321
|
+
_cellSelector: string;
|
|
320
322
|
constructor(...args: unknown[]);
|
|
321
323
|
static ɵfac: i0.ɵɵFactoryDeclaration<CdkNoDataRow, never>;
|
|
322
324
|
static ɵdir: i0.ɵɵDirectiveDeclaration<CdkNoDataRow, "ng-template[cdkNoDataRow]", never, {}, {}, never, never, true, never>;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
@use './index' as overlay;
|
|
2
|
-
|
|
3
|
-
// @deprecated Use `$overlay-container-z-index`.
|
|
4
|
-
$z-index-overlay-container: overlay.$overlay-container-z-index;
|
|
5
|
-
|
|
6
|
-
// @deprecated Use `$overlay-z-index`.
|
|
7
|
-
$z-index-overlay: overlay.$overlay-z-index;
|
|
8
|
-
|
|
9
|
-
// @deprecated Use `$overlay-backdrop-color`.
|
|
10
|
-
$dark-backdrop-background: overlay.$overlay-backdrop-color;
|
|
11
|
-
|
|
12
|
-
// @deprecated Use `$overlay-backdrop-z-index`.
|
|
13
|
-
$z-index-overlay-backdrop: overlay.$overlay-backdrop-z-index;
|