docs(ivy): document breaking change with <select> and binding order (#34709)

Closes #34470

PR Close #34709
This commit is contained in:
Kara Erickson
2020-01-09 12:08:11 -08:00
committed by atscott
parent 6315acae94
commit 9c5510b28e
2 changed files with 66 additions and 1 deletions

View File

@ -60,4 +60,6 @@ If the errors are gone, switch back to Ivy by removing the changes to the `tscon
* `DebugElement.attributes` returns `undefined` for attributes that were added and then subsequently removed (previously, attributes added and later removed would have a value of `null`).
* `DebugElement.classes` returns `undefined` for classes that were added and then subsequently removed (previously, classes added and later removed would have a value of `false`).
* `DebugElement.classes` returns `undefined` for classes that were added and then subsequently removed (previously, classes added and later removed would have a value of `false`).
* If selecting the native `<option>` element in a `<select>` where the `<option>`s are created via `*ngFor`, use the `[selected]` property of an `<option>` instead of binding to the `[value]` property of the `<select>` element (previously, you could bind to either.) [details](guide/ivy-compatibility-examples#select-value-binding)