From b0581f311751c31aff5650da23759c35c920a23b Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Tue, 25 May 2021 09:29:34 -0700 Subject: [PATCH] docs: add link to the style precedence guide in ivy compatibility (#42317) fixes #36508 PR Close #42317 --- aio/content/guide/ivy-compatibility.md | 1 + 1 file changed, 1 insertion(+) diff --git a/aio/content/guide/ivy-compatibility.md b/aio/content/guide/ivy-compatibility.md index 34f78f60b1..a0a7a99c2b 100644 --- a/aio/content/guide/ivy-compatibility.md +++ b/aio/content/guide/ivy-compatibility.md @@ -63,6 +63,7 @@ Please note that these constants are not meant to be used by 3rd party library o * Forward references to directive inputs accessed through local refs are no longer supported by default. [details](guide/ivy-compatibility-examples#forward-refs-directive-inputs) * If there is both an unbound class attribute and a `[class]` binding, the classes in the unbound attribute will also be added (previously, the class binding would overwrite classes in the unbound attribute). +For more information about the updated style precedence in Ivy, refer to the [style precedence guide](guide/style-precedence). * It is now an error to assign values to template-only variables like `item` in `ngFor="let item of items"` (previously, the compiler would ignore these assignments).