From e8ed37a0e7420b32c78a952cc91b5c11c962a37f Mon Sep 17 00:00:00 2001 From: Sarun Intaralawan Date: Wed, 10 Oct 2018 14:06:42 +0700 Subject: [PATCH] docs(core): deprecate ViewEncapsulation.Native (#26361) (#28423) PR Close #26361 PR Close #28423 --- packages/core/src/metadata/directives.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/metadata/directives.ts b/packages/core/src/metadata/directives.ts index 8dc84d4236..6de1862ae4 100644 --- a/packages/core/src/metadata/directives.ts +++ b/packages/core/src/metadata/directives.ts @@ -517,12 +517,12 @@ export interface Component extends Directive { /** * An encapsulation policy for the template and CSS styles. One of: - * - `ViewEncapsulation.Native`: Use shadow roots. This works - * only if natively available on the platform. + * - `ViewEncapsulation.Native`: Deprecated. Use `ViewEncapsulation.ShadowDom` instead. * - `ViewEncapsulation.Emulated`: Use shimmed CSS that * emulates the native behavior. * - `ViewEncapsulation.None`: Use global CSS without any * encapsulation. + * - `ViewEncapsulation.ShadowDom`: Use Shadow DOM v1 to encapsulate styles. * * If not supplied, the value is taken from `CompilerOptions`. The default compiler option is * `ViewEncapsulation.Emulated`.