feat(select): add disabled status in select options

This commit is contained in:
Víctor Oliva
2016-06-30 03:01:03 +02:00
committed by Adam Bradley
parent d993a1bfd8
commit 76619cf4d0
8 changed files with 41 additions and 3 deletions

View File

@ -290,7 +290,8 @@ export class Select {
type: (this._multi ? 'checkbox' : 'radio'),
label: input.text,
value: input.value,
checked: input.checked
checked: input.checked,
disabled: input.disabled
};
});