5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.dev/license
7
7
*/
8
- import {
9
- animate ,
10
- state ,
11
- style ,
12
- transition ,
13
- trigger ,
14
- AnimationTriggerMetadata ,
15
- } from '@angular/animations' ;
16
8
17
9
/**
18
10
* Animations used by the Material drawers.
@@ -21,33 +13,76 @@ import {
21
13
* @breaking -change 21.0.0
22
14
*/
23
15
export const matDrawerAnimations : {
24
- readonly transformDrawer : AnimationTriggerMetadata ;
16
+ readonly transformDrawer : any ;
25
17
} = {
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
+
26
46
/** 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
+ } ,
53
88
} ;
0 commit comments