38 lines
799 B
TypeScript
38 lines
799 B
TypeScript
/**
|
|
* @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 {UpgradeData} from '@angular/cdk/schematics';
|
|
import {
|
|
attributeSelectors,
|
|
classNames,
|
|
constructorChecks,
|
|
cssSelectors,
|
|
cssTokens,
|
|
elementSelectors,
|
|
inputNames,
|
|
methodCallChecks,
|
|
outputNames,
|
|
propertyNames,
|
|
symbolRemoval,
|
|
} from './data';
|
|
|
|
/** Upgrade data that will be used for the Angular Material ng-update schematic. */
|
|
export const materialUpgradeData: UpgradeData = {
|
|
attributeSelectors,
|
|
classNames,
|
|
constructorChecks,
|
|
cssSelectors,
|
|
cssTokens,
|
|
elementSelectors,
|
|
inputNames,
|
|
methodCallChecks,
|
|
outputNames,
|
|
propertyNames,
|
|
symbolRemoval,
|
|
};
|