| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- "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.inputNames = {
- [schematics_1.TargetVersion.V6]: [
- {
- pr: 'https://github.com/angular/components/pull/10218',
- changes: [{
- replace: 'align',
- replaceWith: 'labelPosition',
- whitelist: { elements: ['mat-radio-group', 'mat-radio-button'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10279',
- changes: [{
- replace: 'align',
- replaceWith: 'position',
- whitelist: { elements: ['mat-drawer', 'mat-sidenav'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10294',
- changes: [
- { replace: 'dividerColor', replaceWith: 'color', whitelist: { elements: ['mat-form-field'] } },
- {
- replace: 'floatPlaceholder',
- replaceWith: 'floatLabel',
- whitelist: { elements: ['mat-form-field'] }
- }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10309',
- changes: [{
- replace: 'mat-dynamic-height',
- replaceWith: 'dynamicHeight',
- whitelist: { elements: ['mat-tab-group'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10342',
- changes: [
- { replace: 'align', replaceWith: 'labelPosition', whitelist: { elements: ['mat-checkbox'] } }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10344',
- changes: [{
- replace: 'tooltip-position',
- replaceWith: 'matTooltipPosition',
- whitelist: { attributes: ['matTooltip'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10373',
- changes: [
- { replace: 'thumb-label', replaceWith: 'thumbLabel', whitelist: { elements: ['mat-slider'] } },
- {
- replace: 'tick-interval',
- replaceWith: 'tickInterval',
- whitelist: { elements: ['mat-slider'] }
- }
- ]
- }
- ]
- };
- //# sourceMappingURL=input-names.js.map
|