input-names.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google LLC All Rights Reserved.
  5. *
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://angular.io/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. const schematics_1 = require("@angular/cdk/schematics");
  11. exports.inputNames = {
  12. [schematics_1.TargetVersion.V6]: [
  13. {
  14. pr: 'https://github.com/angular/components/pull/10218',
  15. changes: [{
  16. replace: 'align',
  17. replaceWith: 'labelPosition',
  18. whitelist: { elements: ['mat-radio-group', 'mat-radio-button'] }
  19. }]
  20. },
  21. {
  22. pr: 'https://github.com/angular/components/pull/10279',
  23. changes: [{
  24. replace: 'align',
  25. replaceWith: 'position',
  26. whitelist: { elements: ['mat-drawer', 'mat-sidenav'] }
  27. }]
  28. },
  29. {
  30. pr: 'https://github.com/angular/components/pull/10294',
  31. changes: [
  32. { replace: 'dividerColor', replaceWith: 'color', whitelist: { elements: ['mat-form-field'] } },
  33. {
  34. replace: 'floatPlaceholder',
  35. replaceWith: 'floatLabel',
  36. whitelist: { elements: ['mat-form-field'] }
  37. }
  38. ]
  39. },
  40. {
  41. pr: 'https://github.com/angular/components/pull/10309',
  42. changes: [{
  43. replace: 'mat-dynamic-height',
  44. replaceWith: 'dynamicHeight',
  45. whitelist: { elements: ['mat-tab-group'] }
  46. }]
  47. },
  48. {
  49. pr: 'https://github.com/angular/components/pull/10342',
  50. changes: [
  51. { replace: 'align', replaceWith: 'labelPosition', whitelist: { elements: ['mat-checkbox'] } }
  52. ]
  53. },
  54. {
  55. pr: 'https://github.com/angular/components/pull/10344',
  56. changes: [{
  57. replace: 'tooltip-position',
  58. replaceWith: 'matTooltipPosition',
  59. whitelist: { attributes: ['matTooltip'] }
  60. }]
  61. },
  62. {
  63. pr: 'https://github.com/angular/components/pull/10373',
  64. changes: [
  65. { replace: 'thumb-label', replaceWith: 'thumbLabel', whitelist: { elements: ['mat-slider'] } },
  66. {
  67. replace: 'tick-interval',
  68. replaceWith: 'tickInterval',
  69. whitelist: { elements: ['mat-slider'] }
  70. }
  71. ]
  72. }
  73. ]
  74. };
  75. //# sourceMappingURL=input-names.js.map