| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- "use strict";
- /**
- * @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.io/license
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- const schematics_1 = require("@angular/cdk/schematics");
- exports.outputNames = {
- [schematics_1.TargetVersion.V6]: [
- {
- pr: 'https://github.com/angular/components/pull/10163',
- changes: [
- {
- replace: 'change',
- replaceWith: 'selectionChange',
- whitelist: {
- elements: ['mat-select'],
- },
- },
- {
- replace: 'onClose',
- replaceWith: 'closed',
- whitelist: {
- elements: ['mat-select'],
- },
- },
- {
- replace: 'onOpen',
- replaceWith: 'opened',
- whitelist: {
- elements: ['mat-select'],
- },
- },
- ],
- },
- {
- pr: 'https://github.com/angular/components/pull/10279',
- changes: [
- {
- replace: 'align-changed',
- replaceWith: 'positionChanged',
- whitelist: {
- elements: ['mat-drawer', 'mat-sidenav'],
- },
- },
- {
- replace: 'close',
- replaceWith: 'closed',
- whitelist: {
- elements: ['mat-drawer', 'mat-sidenav'],
- },
- },
- {
- replace: 'open',
- replaceWith: 'opened',
- whitelist: {
- elements: ['mat-drawer', 'mat-sidenav'],
- },
- },
- ],
- },
- {
- pr: 'https://github.com/angular/components/pull/10309',
- changes: [
- {
- replace: 'selectChange',
- replaceWith: 'selectedTabChange',
- whitelist: {
- elements: ['mat-tab-group'],
- },
- },
- ],
- },
- {
- pr: 'https://github.com/angular/components/pull/10311',
- changes: [
- {
- replace: 'remove',
- replaceWith: 'removed',
- whitelist: {
- attributes: ['mat-chip', 'mat-basic-chip'],
- elements: ['mat-chip', 'mat-basic-chip'],
- },
- },
- {
- replace: 'destroy',
- replaceWith: 'destroyed',
- whitelist: {
- attributes: ['mat-chip', 'mat-basic-chip'],
- elements: ['mat-chip', 'mat-basic-chip'],
- },
- },
- ],
- },
- ],
- };
- //# sourceMappingURL=output-names.js.map
|