/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/schematics/ng-update/data/css-selectors.ts
30 строк
856 B
Naji
docs: replace angular.io links with angular.dev (#29734)
19 сен 2024, 13:57
Не верифицирован
19 сен 2024, 13:57
5782834
Код
Авторство
О чём код?
/** * @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 {VersionChanges} from '@angular/cdk/schematics'; export interface MaterialCssSelectorData { /** The CSS selector to replace. */ replace: string; /** The new CSS selector. */ replaceWith: string; /** * Controls which file types in which this replacement is made. If omitted, it is made in all * files. */ replaceIn?: { /** Replace this name in stylesheet files. */ stylesheet?: boolean; /** Replace this name in HTML files. */ html?: boolean; /** Replace this name in TypeScript strings. */ tsStringLiterals?: boolean; }; } export const cssSelectors: VersionChanges<MaterialCssSelectorData> = {};