
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
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* This module provides advanced support for extending dom strategy.
|
|
*/
|
|
|
|
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/dom_tokens';
|
|
export * from './api';
|