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. */
|
---|
9 | export declare const materialMixins: Record<string, string>;
|
---|
10 | /** Mapping of Material functions that should be renamed. */
|
---|
11 | export declare const materialFunctions: Record<string, string>;
|
---|
12 | /** Mapping of Material variables that should be renamed. */
|
---|
13 | export declare const materialVariables: Record<string, string>;
|
---|
14 | /** Mapping of CDK variables that should be renamed. */
|
---|
15 | export declare const cdkVariables: Record<string, string>;
|
---|
16 | /** Mapping of CDK mixins that should be renamed. */
|
---|
17 | export 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 | */
|
---|
22 | export 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 | */
|
---|
28 | export declare const unprefixedRemovedVariables: Record<string, string>;
|
---|