Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions goldens/material/core/index.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,6 @@ import { Signal } from '@angular/core';
import { Subject } from 'rxjs';
import { Version } from '@angular/core';

// @public @deprecated (undocumented)
export class AnimationCurves {
// (undocumented)
static ACCELERATION_CURVE: string;
// (undocumented)
static DECELERATION_CURVE: string;
// (undocumented)
static SHARP_CURVE: string;
// (undocumented)
static STANDARD_CURVE: string;
}

// @public @deprecated (undocumented)
export class AnimationDurations {
// (undocumented)
static COMPLEX: string;
// (undocumented)
static ENTERING: string;
// (undocumented)
static EXITING: string;
}

// @public
export interface AnimationsConfig {
animationsDisabled?: boolean;
Expand Down Expand Up @@ -446,8 +424,6 @@ export class NativeDateAdapter extends DateAdapter<Date> {
today(): Date;
// (undocumented)
toIso8601(date: Date): string;
// @deprecated (undocumented)
useUtcForDisplay: boolean;
// (undocumented)
static ɵfac: i0.ɵɵFactoryDeclaration<NativeDateAdapter, never>;
// (undocumented)
Expand Down
23 changes: 0 additions & 23 deletions src/material/core/animation/animation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,6 @@ export interface AnimationsConfig {
/** Injection token used to configure the animations in Angular Material. */
export const MATERIAL_ANIMATIONS = new InjectionToken<AnimationsConfig>('MATERIAL_ANIMATIONS');

/**
* @deprecated No longer used, will be removed.
* @breaking-change 21.0.0
* @docs-private
*/
export class AnimationCurves {
static STANDARD_CURVE = 'cubic-bezier(0.4,0.0,0.2,1)';
static DECELERATION_CURVE = 'cubic-bezier(0.0,0.0,0.2,1)';
static ACCELERATION_CURVE = 'cubic-bezier(0.4,0.0,1,1)';
static SHARP_CURVE = 'cubic-bezier(0.4,0.0,0.6,1)';
}

/**
* @deprecated No longer used, will be removed.
* @breaking-change 21.0.0
* @docs-private
*/
export class AnimationDurations {
static COMPLEX = '375ms';
static ENTERING = '225ms';
static EXITING = '195ms';
}

let reducedMotion: boolean | null = null;

/**
Expand Down
6 changes: 0 additions & 6 deletions src/material/core/datetime/native-date-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@ function range<T>(length: number, valueFunction: (index: number) => T): T[] {
/** Adapts the native JS Date for use with cdk-based components that work with dates. */
@Injectable()
export class NativeDateAdapter extends DateAdapter<Date> {
/**
* @deprecated No longer being used. To be removed.
* @breaking-change 14.0.0
*/
useUtcForDisplay: boolean = false;

/** The injected locale. */
private readonly _matDateLocale = inject(MAT_DATE_LOCALE, {optional: true});

Expand Down
Loading