Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(tabs): remove 6.0.0 deletion targets #10309

Merged
merged 1 commit into from
Mar 12, 2018
Merged
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
15 changes: 0 additions & 15 deletions src/lib/tabs/tab-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ export class MatTabGroup extends _MatTabGroupMixinBase implements AfterContentIn
set dynamicHeight(value: boolean) { this._dynamicHeight = coerceBooleanProperty(value); }
private _dynamicHeight: boolean = false;

/**
* @deprecated
* @deletion-target 6.0.0
*/
@Input('mat-dynamic-height')
get _dynamicHeightDeprecated(): boolean { return this._dynamicHeight; }
set _dynamicHeightDeprecated(value: boolean) { this._dynamicHeight = value; }

/** The index of the active tab. */
@Input()
get selectedIndex(): number | null { return this._selectedIndex; }
Expand Down Expand Up @@ -151,13 +143,6 @@ export class MatTabGroup extends _MatTabGroupMixinBase implements AfterContentIn
@Output() readonly selectedTabChange: EventEmitter<MatTabChangeEvent> =
new EventEmitter<MatTabChangeEvent>(true);

/**
* Event emitted when the tab selection has changed.
* @deprecated Use `selectedTabChange` instead.
* @deletion-target 6.0.0
*/
@Output() readonly selectChange: EventEmitter<MatTabChangeEvent> = this.selectedTabChange;

private _groupId: number;

constructor(elementRef: ElementRef,
Expand Down