@angular/material
Advanced tools
Comparing version 19.0.0-next.2 to 19.0.0-next.3
@@ -26,9 +26,3 @@ import { AbstractControl } from '@angular/forms'; | ||
/** | ||
* This is a permissive type for abstract class constructors. | ||
* @docs-private | ||
*/ | ||
export declare type _AbstractConstructor<T = object> = abstract new (...args: any[]) => T; | ||
/** @docs-private */ | ||
@@ -50,60 +44,2 @@ export declare class AnimationCurves { | ||
/** | ||
* @docs-private | ||
* @deprecated Will be removed together with `mixinColor`. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare interface CanColor { | ||
/** Theme color palette for the component. */ | ||
color: ThemePalette; | ||
/** Default color to fall back to if no value is set. */ | ||
defaultColor: ThemePalette | undefined; | ||
} | ||
declare type CanColorCtor = _Constructor<CanColor> & _AbstractConstructor<CanColor>; | ||
/** | ||
* @docs-private | ||
* @deprecated Will be removed together with `mixinDisabled`. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare interface CanDisable { | ||
/** Whether the component is disabled. */ | ||
disabled: boolean; | ||
} | ||
declare type CanDisableCtor = _Constructor<CanDisable> & _AbstractConstructor<CanDisable>; | ||
/** | ||
* @docs-private | ||
* @deprecated Will be removed together with `mixinDisableRipple`. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare interface CanDisableRipple { | ||
/** Whether ripples are disabled. */ | ||
disableRipple: boolean; | ||
} | ||
declare type CanDisableRippleCtor = _Constructor<CanDisableRipple> & _AbstractConstructor<CanDisableRipple>; | ||
/** | ||
* @docs-private | ||
* @deprecated Will be removed together with `mixinErrorState`. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare interface CanUpdateErrorState { | ||
/** Updates the error state based on the provided error state matcher. */ | ||
updateErrorState(): void; | ||
/** Whether the component is in an error state. */ | ||
errorState: boolean; | ||
/** An object used to control the error state of the component. */ | ||
errorStateMatcher: ErrorStateMatcher_2; | ||
} | ||
declare type CanUpdateErrorStateCtor = _Constructor<CanUpdateErrorState> & _AbstractConstructor<CanUpdateErrorState>; | ||
/** @docs-private */ | ||
export declare type _Constructor<T> = new (...args: any[]) => T; | ||
/** | ||
* Counts the amount of option group labels that precede the specified option. | ||
@@ -375,52 +311,2 @@ * @param optionIndex Index of the option at which to start counting. | ||
/** @docs-private */ | ||
declare interface HasElementRef { | ||
_elementRef: ElementRef; | ||
} | ||
/** @docs-private */ | ||
declare interface HasErrorState { | ||
_parentFormGroup: FormGroupDirective | null; | ||
_parentForm: NgForm | null; | ||
_defaultErrorStateMatcher: ErrorStateMatcher_2; | ||
ngControl: NgControl | null; | ||
stateChanges: Subject<void>; | ||
} | ||
/** | ||
* Mixin that adds an initialized property to a directive which, when subscribed to, will emit a | ||
* value once markInitialized has been called, which should be done during the ngOnInit function. | ||
* If the subscription is made after it has already been marked as initialized, then it will trigger | ||
* an emit immediately. | ||
* @docs-private | ||
* @deprecated Will be removed together with `mixinInitializer`. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare interface HasInitialized { | ||
/** Stream that emits once during the directive/component's ngOnInit. */ | ||
initialized: Observable<void>; | ||
/** | ||
* Sets the state as initialized and must be called during ngOnInit to notify subscribers that | ||
* the directive has been initialized. | ||
* @docs-private | ||
*/ | ||
_markInitialized: () => void; | ||
} | ||
declare type HasInitializedCtor = _Constructor<HasInitialized>; | ||
/** | ||
* @docs-private | ||
* @deprecated Will be removed together with `mixinTabIndex`. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare interface HasTabIndex { | ||
/** Tabindex of the component. */ | ||
tabIndex: number; | ||
/** Tabindex to which to fall back to if no value is set. */ | ||
defaultTabIndex: number; | ||
} | ||
declare type HasTabIndexCtor = _Constructor<HasTabIndex> & _AbstractConstructor<HasTabIndex>; | ||
declare namespace i1_2 { | ||
@@ -857,2 +743,3 @@ export { | ||
private _ngZone; | ||
private _injector; | ||
private _hosts; | ||
@@ -892,45 +779,2 @@ constructor(); | ||
/** | ||
* Mixin to augment a directive with a `color` property. | ||
* @deprecated Use a plain input and host bindings instead. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare function mixinColor<T extends _AbstractConstructor<HasElementRef>>(base: T, defaultColor?: ThemePalette): CanColorCtor & T; | ||
/** | ||
* Mixin to augment a directive with a `disabled` property. | ||
* @deprecated Use an input with a transform instead. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare function mixinDisabled<T extends _AbstractConstructor<{}>>(base: T): CanDisableCtor & T; | ||
/** | ||
* Mixin to augment a directive with a `disableRipple` property. | ||
* @deprecated Use an input with a transform instead. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare function mixinDisableRipple<T extends _AbstractConstructor<{}>>(base: T): CanDisableRippleCtor & T; | ||
/** | ||
* Mixin to augment a directive with updateErrorState method. | ||
* For component with `errorState` and need to update `errorState`. | ||
* @deprecated Implement the `updateErrorState` method directly. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare function mixinErrorState<T extends _AbstractConstructor<HasErrorState>>(base: T): CanUpdateErrorStateCtor & T; | ||
/** | ||
* Mixin to augment a directive with an initialized property that will emits when ngOnInit ends. | ||
* @deprecated Track the initialized state manually. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare function mixinInitialized<T extends _Constructor<{}>>(base: T): HasInitializedCtor & T; | ||
/** | ||
* Mixin to augment a directive with a `tabIndex` property. | ||
* @deprecated Use an input with a transform instead. | ||
* @breaking-change 19.0.0 | ||
*/ | ||
export declare function mixinTabIndex<T extends _AbstractConstructor<CanDisable>>(base: T, defaultTabIndex?: number): HasTabIndexCtor & T; | ||
/** Adapts the native JS Date for use with cdk-based components that work with dates. */ | ||
@@ -1195,2 +1039,3 @@ export declare class NativeDateAdapter extends DateAdapter<Date> { | ||
/** Possible color palette values. */ | ||
@@ -1197,0 +1042,0 @@ export declare type ThemePalette = 'primary' | 'accent' | 'warn' | undefined; |
{ | ||
"name": "@angular/material", | ||
"version": "19.0.0-next.2", | ||
"version": "19.0.0-next.3", | ||
"description": "Angular Material", | ||
@@ -349,3 +349,3 @@ "repository": { | ||
"@angular/animations": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0", | ||
"@angular/cdk": "19.0.0-next.2", | ||
"@angular/cdk": "19.0.0-next.3", | ||
"@angular/core": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0", | ||
@@ -352,0 +352,0 @@ "@angular/common": "^19.0.0-0 || ^19.1.0-0 || ^19.2.0-0 || ^19.3.0-0 || ^20.0.0-0", |
@@ -22,3 +22,3 @@ "use strict"; | ||
*/ | ||
const fallbackMaterialVersionRange = `~19.0.0-next.2`; | ||
const fallbackMaterialVersionRange = `~19.0.0-next.3`; | ||
/** | ||
@@ -25,0 +25,0 @@ * Schematic factory entry-point for the `ng-add` schematic. The ng-add schematic will be |
@@ -264,4 +264,4 @@ import { AfterContentInit } from '@angular/core'; | ||
viewContainer: ViewContainerRef; | ||
_node?: any | undefined; | ||
constructor(viewContainer: ViewContainerRef, _node?: any | undefined); | ||
_node?: any; | ||
constructor(viewContainer: ViewContainerRef, _node?: any); | ||
static ɵfac: i0.ɵɵFactoryDeclaration<MatTreeNodeOutlet, [null, { optional: true; }]>; | ||
@@ -268,0 +268,0 @@ static ɵdir: i0.ɵɵDirectiveDeclaration<MatTreeNodeOutlet, "[matTreeNodeOutlet]", 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
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
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
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
9308007
64890