refactor(shadow_dom): remove ShadowDomStrategy in favor of @View(encapsulation)
BREAKING CHANGES: - `ShadowDomStrategy` was removed. To specify the encapsulation of a component use `@View(encapsulation: ViewEncapsulation.NONE | ViewEncapsulation.EMULATED | ViewEncapsulation.NATIVE)` - The default encapsulation strategy is now `ViewEncapsulation.EMULATED` if a component contains styles and `ViewEncapsulation.NONE` if it does not. Before this was always `NONE`. - `ViewLoader` now returns the template as a string and the styles as a separate array
This commit is contained in:
@@ -5,9 +5,8 @@
|
||||
*/
|
||||
|
||||
export * from './dom/compiler/view_loader';
|
||||
export * from './dom/view/shared_styles_host';
|
||||
export * from './dom/compiler/compiler';
|
||||
export * from './dom/dom_renderer';
|
||||
export * from './dom/shadow_dom/shadow_dom_strategy';
|
||||
export * from './dom/shadow_dom/native_shadow_dom_strategy';
|
||||
export * from './dom/shadow_dom/emulated_scoped_shadow_dom_strategy';
|
||||
export * from './dom/shadow_dom/emulated_unscoped_shadow_dom_strategy';
|
||||
export * from './dom/dom_tokens';
|
||||
export * from './api';
|
||||
|
||||
Reference in New Issue
Block a user