From 32f2d9fb306d58e01612adcb75c9ba0d5ed49c49 Mon Sep 17 00:00:00 2001 From: Sam Severance Date: Sat, 12 Jan 2019 09:27:07 -0500 Subject: [PATCH] refactor(list): refactor component inputs * remove `disabled` and `tabIndex` from `MatSelectionList` array of inputs. `disabled` and `tabIndex` properties of the component are already decorated with `@Input()` decorator --- src/lib/list/selection-list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/list/selection-list.ts b/src/lib/list/selection-list.ts index 06934817a224..69fa3133188c 100644 --- a/src/lib/list/selection-list.ts +++ b/src/lib/list/selection-list.ts @@ -272,7 +272,7 @@ export class MatListOption extends _MatListOptionMixinBase moduleId: module.id, selector: 'mat-selection-list', exportAs: 'matSelectionList', - inputs: ['disabled', 'disableRipple', 'tabIndex'], + inputs: ['disableRipple'], host: { 'role': 'listbox', '[tabIndex]': 'tabIndex',