/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/dev-app/aria-tree/tree-demo.ts
42 строки
1 KB
Kristiyan Kostadinov
build: remove explicit OnPush from dev app
18 май 2026, 10:44
18 май 2026, 10:44
40d7c5a
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {Component, ViewEncapsulation} from '@angular/core'; import { TreeConfigurableExample, TreeActiveDescendantExample, TreeDisabledExample, TreeDisabledFocusableExample, TreeDisabledSkippedExample, TreeMultiSelectExample, TreeMultiSelectFollowFocusExample, TreeNavExample, TreeSingleSelectExample, TreeSingleSelectFollowFocusExample, TreeNavRtlExample, } from '@angular/components-examples/aria/tree'; @Component({ templateUrl: 'tree-demo.html', imports: [ TreeConfigurableExample, TreeActiveDescendantExample, TreeDisabledExample, TreeDisabledFocusableExample, TreeDisabledSkippedExample, TreeMultiSelectExample, TreeMultiSelectFollowFocusExample, TreeNavExample, TreeNavRtlExample, TreeSingleSelectExample, TreeSingleSelectFollowFocusExample, ], styleUrl: 'tree-demo.css', encapsulation: ViewEncapsulation.None, }) export class TreeDemo {}