Skip to content

Commit 4d05cda

Browse files
crisbetommalerba
authored andcommitted
refactor(tabs): remove 6.0.0 deletion targets (#10309)
Removes the deletion targets for 6.0.0 from the `material/tabs` entry point. BREAKING CHANGES: * `mat-dynamic-height` which was deprecated in 5.0.0 has been removed. Use `dynamicHeight` instead. * `selectChange` which was deprecated in 5.0.0 has been removed. Use `selectedTabChange`.
1 parent 9f8eec1 commit 4d05cda

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/lib/tabs/tab-group.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,6 @@ export class MatTabGroup extends _MatTabGroupMixinBase implements AfterContentIn
102102
set dynamicHeight(value: boolean) { this._dynamicHeight = coerceBooleanProperty(value); }
103103
private _dynamicHeight: boolean = false;
104104

105-
/**
106-
* @deprecated
107-
* @deletion-target 6.0.0
108-
*/
109-
@Input('mat-dynamic-height')
110-
get _dynamicHeightDeprecated(): boolean { return this._dynamicHeight; }
111-
set _dynamicHeightDeprecated(value: boolean) { this._dynamicHeight = value; }
112-
113105
/** The index of the active tab. */
114106
@Input()
115107
get selectedIndex(): number | null { return this._selectedIndex; }
@@ -151,13 +143,6 @@ export class MatTabGroup extends _MatTabGroupMixinBase implements AfterContentIn
151143
@Output() readonly selectedTabChange: EventEmitter<MatTabChangeEvent> =
152144
new EventEmitter<MatTabChangeEvent>(true);
153145

154-
/**
155-
* Event emitted when the tab selection has changed.
156-
* @deprecated Use `selectedTabChange` instead.
157-
* @deletion-target 6.0.0
158-
*/
159-
@Output() readonly selectChange: EventEmitter<MatTabChangeEvent> = this.selectedTabChange;
160-
161146
private _groupId: number;
162147

163148
constructor(elementRef: ElementRef,

0 commit comments

Comments
 (0)