| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- "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.propertyNames = {
- [schematics_1.TargetVersion.V6]: [
- {
- pr: 'https://github.com/angular/components/pull/10163',
- changes: [
- { replace: 'change', replaceWith: 'selectionChange', whitelist: { classes: ['MatSelect'] } }, {
- replace: 'onOpen',
- replaceWith: 'openedChange.pipe(filter(isOpen => isOpen))',
- whitelist: { classes: ['MatSelect'] }
- },
- {
- replace: 'onClose',
- replaceWith: 'openedChange.pipe(filter(isOpen => !isOpen))',
- whitelist: { classes: ['MatSelect'] }
- }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10218',
- changes: [{
- replace: 'align',
- replaceWith: 'labelPosition',
- whitelist: { classes: ['MatRadioGroup', 'MatRadioButton'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10253',
- changes: [{
- replace: 'extraClasses',
- replaceWith: 'panelClass',
- whitelist: { classes: ['MatSnackBarConfig'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10279',
- changes: [
- {
- replace: 'align',
- replaceWith: 'position',
- whitelist: { classes: ['MatDrawer', 'MatSidenav'] }
- },
- {
- replace: 'onAlignChanged',
- replaceWith: 'onPositionChanged',
- whitelist: { classes: ['MatDrawer', 'MatSidenav'] }
- },
- {
- replace: 'onOpen',
- replaceWith: 'openedChange.pipe(filter(isOpen => isOpen))',
- whitelist: { classes: ['MatDrawer', 'MatSidenav'] }
- },
- {
- replace: 'onClose',
- replaceWith: 'openedChange.pipe(filter(isOpen => !isOpen))',
- whitelist: { classes: ['MatDrawer', 'MatSidenav'] }
- }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10293',
- changes: [{
- replace: 'shouldPlaceholderFloat',
- replaceWith: 'shouldLabelFloat',
- whitelist: { classes: ['MatFormFieldControl', 'MatSelect'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10294',
- changes: [
- { replace: 'dividerColor', replaceWith: 'color', whitelist: { classes: ['MatFormField'] } }, {
- replace: 'floatPlaceholder',
- replaceWith: 'floatLabel',
- whitelist: { classes: ['MatFormField'] }
- }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10309',
- changes: [
- {
- replace: 'selectChange',
- replaceWith: 'selectedTabChange',
- whitelist: { classes: ['MatTabGroup'] }
- },
- {
- replace: '_dynamicHeightDeprecated',
- replaceWith: 'dynamicHeight',
- whitelist: { classes: ['MatTabGroup'] }
- }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10311',
- changes: [
- { replace: 'destroy', replaceWith: 'destroyed', whitelist: { classes: ['MatChip'] } },
- { replace: 'onRemove', replaceWith: 'removed', whitelist: { classes: ['MatChip'] } }
- ]
- },
- {
- pr: 'https://github.com/angular/components/pull/10342',
- changes: [{ replace: 'align', replaceWith: 'labelPosition', whitelist: { classes: ['MatCheckbox'] } }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10344',
- changes: [{
- replace: '_positionDeprecated',
- replaceWith: 'position',
- whitelist: { classes: ['MatTooltip'] }
- }]
- },
- {
- pr: 'https://github.com/angular/components/pull/10373',
- changes: [
- {
- replace: '_thumbLabelDeprecated',
- replaceWith: 'thumbLabel',
- whitelist: { classes: ['MatSlider'] }
- },
- {
- replace: '_tickIntervalDeprecated',
- replaceWith: 'tickInterval',
- whitelist: { classes: ['MatSlider'] }
- }
- ]
- },
- ]
- };
- //# sourceMappingURL=property-names.js.map
|