/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/stepper/step-label.ts
15 строк
393 B
Kristiyan Kostadinov
refactor(multiple): remove standalone flag from Material
17 окт 2024, 17:40
17 окт 2024, 17:40
b84ebdc
Код
Авторство
О чём код?
/** * @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 {Directive} from '@angular/core'; import {CdkStepLabel} from '@angular/cdk/stepper'; @Directive({ selector: '[matStepLabel]', }) export class MatStepLabel extends CdkStepLabel {}