Skip to content

Commit 712d5e2

Browse files
committedFeb 3, 2025
fix(material/sidenav): remove remaining animation dependencies
Removes the remaning dependencies on `@angular/animations` from the package.
1 parent 5eeade7 commit 712d5e2

File tree

3 files changed

+71
-38
lines changed

3 files changed

+71
-38
lines changed
 

‎src/material/sidenav/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ ng_module(
2626
"//src/cdk/keycodes",
2727
"//src/cdk/scrolling",
2828
"//src/material/core",
29-
"@npm//@angular/animations",
3029
"@npm//@angular/core",
3130
"@npm//@angular/platform-browser",
3231
"@npm//rxjs",

‎src/material/sidenav/drawer-animations.ts

+70-35
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.dev/license
77
*/
8-
import {
9-
animate,
10-
state,
11-
style,
12-
transition,
13-
trigger,
14-
AnimationTriggerMetadata,
15-
} from '@angular/animations';
168

179
/**
1810
* Animations used by the Material drawers.
@@ -21,33 +13,76 @@ import {
2113
* @breaking-change 21.0.0
2214
*/
2315
export const matDrawerAnimations: {
24-
readonly transformDrawer: AnimationTriggerMetadata;
16+
readonly transformDrawer: any;
2517
} = {
18+
// Represents
19+
// trigger('transform', [
20+
// // We remove the `transform` here completely, rather than setting it to zero, because:
21+
// // 1. Having a transform can cause elements with ripples or an animated
22+
// // transform to shift around in Chrome with an RTL layout (see #10023).
23+
// // 2. 3d transforms causes text to appear blurry on IE and Edge.
24+
// state(
25+
// 'open, open-instant',
26+
// style({
27+
// 'transform': 'none',
28+
// 'visibility': 'visible',
29+
// }),
30+
// ),
31+
// state(
32+
// 'void',
33+
// style({
34+
// // Avoids the shadow showing up when closed in SSR.
35+
// 'box-shadow': 'none',
36+
// 'visibility': 'hidden',
37+
// }),
38+
// ),
39+
// transition('void => open-instant', animate('0ms')),
40+
// transition(
41+
// 'void <=> open, open-instant => void',
42+
// animate('400ms cubic-bezier(0.25, 0.8, 0.25, 1)'),
43+
// ),
44+
// ])
45+
2646
/** Animation that slides a drawer in and out. */
27-
transformDrawer: trigger('transform', [
28-
// We remove the `transform` here completely, rather than setting it to zero, because:
29-
// 1. Having a transform can cause elements with ripples or an animated
30-
// transform to shift around in Chrome with an RTL layout (see #10023).
31-
// 2. 3d transforms causes text to appear blurry on IE and Edge.
32-
state(
33-
'open, open-instant',
34-
style({
35-
'transform': 'none',
36-
'visibility': 'visible',
37-
}),
38-
),
39-
state(
40-
'void',
41-
style({
42-
// Avoids the shadow showing up when closed in SSR.
43-
'box-shadow': 'none',
44-
'visibility': 'hidden',
45-
}),
46-
),
47-
transition('void => open-instant', animate('0ms')),
48-
transition(
49-
'void <=> open, open-instant => void',
50-
animate('400ms cubic-bezier(0.25, 0.8, 0.25, 1)'),
51-
),
52-
]),
47+
transformDrawer: {
48+
type: 7,
49+
name: 'transform',
50+
definitions: [
51+
{
52+
type: 0,
53+
name: 'open, open-instant',
54+
styles: {
55+
type: 6,
56+
styles: {transform: 'none', visibility: 'visible'},
57+
offset: null,
58+
},
59+
},
60+
{
61+
type: 0,
62+
name: 'void',
63+
styles: {
64+
type: 6,
65+
styles: {'box-shadow': 'none', visibility: 'hidden'},
66+
offset: null,
67+
},
68+
},
69+
{
70+
type: 1,
71+
expr: 'void => open-instant',
72+
animation: {type: 4, styles: null, timings: '0ms'},
73+
options: null,
74+
},
75+
{
76+
type: 1,
77+
expr: 'void <=> open, open-instant => void',
78+
animation: {
79+
type: 4,
80+
styles: null,
81+
timings: '400ms cubic-bezier(0.25, 0.8, 0.25, 1)',
82+
},
83+
options: null,
84+
},
85+
],
86+
options: {},
87+
},
5388
};

‎tools/public_api_guard/material/sidenav.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import { AfterContentInit } from '@angular/core';
88
import { AfterViewInit } from '@angular/core';
9-
import { AnimationTriggerMetadata } from '@angular/animations';
109
import { BooleanInput } from '@angular/cdk/coercion';
1110
import { CdkScrollable } from '@angular/cdk/scrolling';
1211
import { DoCheck } from '@angular/core';
@@ -72,7 +71,7 @@ export class MatDrawer implements AfterViewInit, OnDestroy {
7271

7372
// @public @deprecated
7473
export const matDrawerAnimations: {
75-
readonly transformDrawer: AnimationTriggerMetadata;
74+
readonly transformDrawer: any;
7675
};
7776

7877
// @public

0 commit comments

Comments
 (0)
Please sign in to comment.