/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/dev-app/tabs/tabs-demo.ts
47 строк
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 { TabGroupAlignExample, TabGroupAnimationsExample, TabGroupAsyncExample, TabGroupBasicExample, TabGroupCustomLabelExample, TabGroupDynamicExample, TabGroupDynamicHeightExample, TabGroupHeaderBelowExample, TabGroupInkBarExample, TabGroupLazyLoadedExample, TabGroupPaginatedExample, TabGroupStretchedExample, TabNavBarBasicExample, } from '@angular/components-examples/material/tabs'; import {Component} from '@angular/core'; import {MatTabsModule} from '@angular/material/tabs'; @Component({ selector: 'tabs-demo', templateUrl: 'tabs-demo.html', imports: [ TabGroupInkBarExample, TabGroupPaginatedExample, TabNavBarBasicExample, TabGroupStretchedExample, TabGroupLazyLoadedExample, TabGroupHeaderBelowExample, TabGroupDynamicExample, TabGroupAlignExample, TabGroupAnimationsExample, TabGroupAsyncExample, TabGroupBasicExample, TabGroupCustomLabelExample, TabGroupDynamicHeightExample, MatTabsModule, ], }) export class TabsDemo {}