@angular/cdk
Advanced tools
Comparing version 19.0.0-next.2 to 19.0.0-next.3
@@ -944,3 +944,3 @@ import { _CdkPrivateStyleLoader } from '@angular/cdk/private'; | ||
private _afterRenderRef; | ||
constructor(_portalOutlet: PortalOutlet, _host: HTMLElement, _pane: HTMLElement, _config: ImmutableObject<OverlayConfig>, _ngZone: NgZone, _keyboardDispatcher: OverlayKeyboardDispatcher, _document: Document, _location: Location_2, _outsideClickDispatcher: OverlayOutsideClickDispatcher, _animationsDisabled: boolean, _injector: EnvironmentInjector); | ||
constructor(_portalOutlet: PortalOutlet, _host: HTMLElement, _pane: HTMLElement, _config: ImmutableObject<OverlayConfig>, _ngZone: NgZone, _keyboardDispatcher: OverlayKeyboardDispatcher, _document: Document, _location: Location_2, _outsideClickDispatcher: OverlayOutsideClickDispatcher, _animationsDisabled: boolean | undefined, _injector: EnvironmentInjector); | ||
/** The overlay's HTML element */ | ||
@@ -947,0 +947,0 @@ get overlayElement(): HTMLElement; |
{ | ||
"name": "@angular/cdk", | ||
"version": "19.0.0-next.2", | ||
"version": "19.0.0-next.3", | ||
"description": "Angular Material Component Development Kit", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -32,3 +32,3 @@ "use strict"; | ||
// dependencies in new CLI projects. | ||
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.0.0-next.2`); | ||
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.0.0-next.3`); | ||
// Add a task to run the package manager. This is necessary because we updated the | ||
@@ -35,0 +35,0 @@ // workspace "package.json" file and we want lock files to reflect the new version range. |
@@ -187,2 +187,3 @@ import { ChangeDetectorRef } from '@angular/core'; | ||
private _getEmbeddedViewArgs; | ||
static ngTemplateContextGuard<T>(directive: CdkVirtualForOf<T>, context: unknown): context is CdkVirtualForOfContext<T>; | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CdkVirtualForOf<any>, [null, null, null, null, { skipSelf: true; }, null]>; | ||
@@ -189,0 +190,0 @@ static ɵdir: i0.ɵɵDirectiveDeclaration<CdkVirtualForOf<any>, "[cdkVirtualFor][cdkVirtualForOf]", never, { "cdkVirtualForOf": { "alias": "cdkVirtualForOf"; "required": false; }; "cdkVirtualForTrackBy": { "alias": "cdkVirtualForTrackBy"; "required": false; }; "cdkVirtualForTemplate": { "alias": "cdkVirtualForTemplate"; "required": false; }; "cdkVirtualForTemplateCacheSize": { "alias": "cdkVirtualForTemplateCacheSize"; "required": false; }; }, {}, never, never, true, never>; |
@@ -187,3 +187,3 @@ import { AfterContentChecked } from '@angular/core'; | ||
export declare class CdkColumnDef implements CanStick { | ||
_table?: any | undefined; | ||
_table?: any; | ||
private _hasStickyChanged; | ||
@@ -223,3 +223,3 @@ /** Unique name for this column. */ | ||
_columnCssClassName: string[]; | ||
constructor(_table?: any | undefined); | ||
constructor(_table?: any); | ||
/** Whether the sticky state has changed. */ | ||
@@ -279,3 +279,3 @@ hasStickyChanged(): boolean; | ||
export declare class CdkFooterRowDef extends BaseRowDef implements CanStick, OnChanges { | ||
_table?: any | undefined; | ||
_table?: any; | ||
private _hasStickyChanged; | ||
@@ -286,3 +286,3 @@ /** Whether the row is sticky. */ | ||
private _sticky; | ||
constructor(template: TemplateRef<any>, _differs: IterableDiffers, _table?: any | undefined); | ||
constructor(template: TemplateRef<any>, _differs: IterableDiffers, _table?: any); | ||
ngOnChanges(changes: SimpleChanges): void; | ||
@@ -327,3 +327,3 @@ /** Whether the sticky state has changed. */ | ||
export declare class CdkHeaderRowDef extends BaseRowDef implements CanStick, OnChanges { | ||
_table?: any | undefined; | ||
_table?: any; | ||
private _hasStickyChanged; | ||
@@ -334,3 +334,3 @@ /** Whether the row is sticky. */ | ||
private _sticky; | ||
constructor(template: TemplateRef<any>, _differs: IterableDiffers, _table?: any | undefined); | ||
constructor(template: TemplateRef<any>, _differs: IterableDiffers, _table?: any); | ||
ngOnChanges(changes: SimpleChanges): void; | ||
@@ -376,3 +376,3 @@ /** Whether the sticky state has changed. */ | ||
export declare class CdkRowDef<T> extends BaseRowDef { | ||
_table?: any | undefined; | ||
_table?: any; | ||
/** | ||
@@ -385,3 +385,3 @@ * Function that should return true if this row template should be used for the provided index | ||
when: (index: number, rowData: T) => boolean; | ||
constructor(template: TemplateRef<any>, _differs: IterableDiffers, _table?: any | undefined); | ||
constructor(template: TemplateRef<any>, _differs: IterableDiffers, _table?: any); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CdkRowDef<any>, [null, null, { optional: true; }]>; | ||
@@ -388,0 +388,0 @@ static ɵdir: i0.ɵɵDirectiveDeclaration<CdkRowDef<any>, "[cdkRowDef]", never, { "columns": { "alias": "cdkRowDefColumns"; "required": false; }; "when": { "alias": "cdkRowDefWhen"; "required": false; }; }, {}, never, never, true, never>; |
@@ -285,3 +285,3 @@ import { AfterContentChecked } from '@angular/core'; | ||
/** Children accessor, used for compatibility between the old Tree and new Tree */ | ||
_getChildrenAccessor(): ((dataNode: T) => Observable<T[]> | T[] | undefined | null) | undefined; | ||
_getChildrenAccessor(): ((dataNode: T) => T[] | Observable<T[]> | null | undefined) | undefined; | ||
/** | ||
@@ -517,4 +517,4 @@ * Gets the direct children of a node; used for compatibility between the old tree and the | ||
viewContainer: ViewContainerRef; | ||
_node?: any | undefined; | ||
constructor(viewContainer: ViewContainerRef, _node?: any | undefined); | ||
_node?: any; | ||
constructor(viewContainer: ViewContainerRef, _node?: any); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<CdkTreeNodeOutlet, [null, { optional: true; }]>; | ||
@@ -521,0 +521,0 @@ static ɵdir: i0.ɵɵDirectiveDeclaration<CdkTreeNodeOutlet, "[cdkTreeNodeOutlet]", never, {}, {}, never, never, true, never>; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44802
4700658