/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/ng_elements/src/elements.ts
44 строки
1 KB
Matthieu Riegler
ci: reformat files
17 дек 2025, 01:44
17 дек 2025, 01:44
6270bba
Код
Авторство
О чём код?
import {ChangeDetectionStrategy, Component, Input, ViewEncapsulation} from '@angular/core'; @Component({ selector: 'hello-world-el', template: 'Hello {{name}}!', standalone: false, }) export class HelloWorldComponent { @Input() name: string = 'World'; } @Component({ selector: 'hello-world-onpush-el', template: 'Hello {{name}}!', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, }) export class HelloWorldOnpushComponent { @Input() name: string = 'World'; } @Component({ selector: 'hello-world-shadow-el', template: 'Hello {{name}}!', encapsulation: ViewEncapsulation.ShadowDom, standalone: false, }) export class HelloWorldShadowComponent { @Input() name: string = 'World'; } @Component({ selector: 'test-card', template: ` <header> <slot name="card-header"></slot> </header> <slot></slot> <footer> <slot name="card-footer"></slot> </footer>`, encapsulation: ViewEncapsulation.ShadowDom, standalone: false, }) export class TestCardComponent {}