mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commits adds a new NgTemplateOutlet directive that can be used to create embeded views from a supplied TemplateRef. Closes #7615 Closes #8021
14 lines
594 B
TypeScript
14 lines
594 B
TypeScript
/**
|
|
* @module
|
|
* @description
|
|
* Common directives shipped with Angular.
|
|
*/
|
|
export {NgClass} from './directives/ng_class';
|
|
export {NgFor} from './directives/ng_for';
|
|
export {NgIf} from './directives/ng_if';
|
|
export {NgTemplateOutlet} from './directives/ng_template_outlet';
|
|
export {NgStyle} from './directives/ng_style';
|
|
export {NgSwitch, NgSwitchWhen, NgSwitchDefault} from './directives/ng_switch';
|
|
export {NgPlural, NgPluralCase, NgLocalization} from './directives/ng_plural';
|
|
export * from './directives/observable_list_diff';
|
|
export {CORE_DIRECTIVES} from './directives/core_directives';
|