source: trip-planner-front/node_modules/@angular/material/schematics/ng-update/migrations/theming-api-v12/config.d.ts

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8/** Mapping of Material mixins that should be renamed. */
9export declare const materialMixins: Record<string, string>;
10/** Mapping of Material functions that should be renamed. */
11export declare const materialFunctions: Record<string, string>;
12/** Mapping of Material variables that should be renamed. */
13export declare const materialVariables: Record<string, string>;
14/** Mapping of CDK variables that should be renamed. */
15export declare const cdkVariables: Record<string, string>;
16/** Mapping of CDK mixins that should be renamed. */
17export declare const cdkMixins: Record<string, string>;
18/**
19 * Material variables that have been removed from the public API
20 * and which should be replaced with their values.
21 */
22export declare const removedMaterialVariables: Record<string, string>;
23/**
24 * Material variables **without a `mat-` prefix** that have been removed from the public API
25 * and which should be replaced with their values. These should be migrated only when there's a
26 * Material import, because their names could conflict with other variables in the user's app.
27 */
28export declare const unprefixedRemovedVariables: Record<string, string>;
Note: See TracBrowser for help on using the repository browser.