/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/core/focus-indicators/structural-styles.ts
21 строка
539 B
Kristiyan Kostadinov
refactor(material/core): remove explicit change detection
09 май 2026, 06:37
09 май 2026, 06:37
b3f24e3
Код
Авторство
О чём код?
/** * @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'; /** * Component used to load structural styles for focus indicators. * @docs-private */ @Component({ selector: 'structural-styles', styleUrl: 'structural-styles.css', encapsulation: ViewEncapsulation.None, template: '', }) export class _StructuralStylesLoader {}