Skip to content

Commit db090ca

Browse files
committed
fix(material/select): breaking changes for v20
Removes the deprecated symbols for v20 from the select. BREAKING CHANGE: * `matSelectAnimations.transformPanelWrap` has been removed.
1 parent 227e83d commit db090ca

File tree

2 files changed

+0
-35
lines changed

2 files changed

+0
-35
lines changed

src/material/select/select-animations.ts

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -16,42 +16,8 @@
1616
* @breaking-change 21.0.0
1717
*/
1818
export const matSelectAnimations: {
19-
/**
20-
* @deprecated No longer being used. To be removed.
21-
* @breaking-change 12.0.0
22-
*/
23-
readonly transformPanelWrap: any;
2419
readonly transformPanel: any;
2520
} = {
26-
// Represents
27-
// trigger('transformPanelWrap', [
28-
// transition('* => void', query('@transformPanel', [animateChild()], {optional: true})),
29-
// ])
30-
31-
/**
32-
* This animation ensures the select's overlay panel animation (transformPanel) is called when
33-
* closing the select.
34-
* This is needed due to https://github.com/angular/angular/issues/23302
35-
*/
36-
transformPanelWrap: {
37-
type: 7,
38-
name: 'transformPanelWrap',
39-
definitions: [
40-
{
41-
type: 1,
42-
expr: '* => void',
43-
animation: {
44-
type: 11,
45-
selector: '@transformPanel',
46-
animation: [{type: 9, options: null}],
47-
options: {optional: true},
48-
},
49-
options: null,
50-
},
51-
],
52-
options: {},
53-
},
54-
5521
// Represents
5622
// trigger('transformPanel', [
5723
// state(

tools/public_api_guard/material/select.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,6 @@ export class MatSelect implements AfterContentInit, OnChanges, OnDestroy, OnInit
218218

219219
// @public @deprecated
220220
export const matSelectAnimations: {
221-
readonly transformPanelWrap: any;
222221
readonly transformPanel: any;
223222
};
224223

0 commit comments

Comments
 (0)