output-names.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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.outputNames = {
  12. [schematics_1.TargetVersion.V6]: [
  13. {
  14. pr: 'https://github.com/angular/components/pull/10163',
  15. changes: [
  16. {
  17. replace: 'change',
  18. replaceWith: 'selectionChange',
  19. whitelist: {
  20. elements: ['mat-select'],
  21. },
  22. },
  23. {
  24. replace: 'onClose',
  25. replaceWith: 'closed',
  26. whitelist: {
  27. elements: ['mat-select'],
  28. },
  29. },
  30. {
  31. replace: 'onOpen',
  32. replaceWith: 'opened',
  33. whitelist: {
  34. elements: ['mat-select'],
  35. },
  36. },
  37. ],
  38. },
  39. {
  40. pr: 'https://github.com/angular/components/pull/10279',
  41. changes: [
  42. {
  43. replace: 'align-changed',
  44. replaceWith: 'positionChanged',
  45. whitelist: {
  46. elements: ['mat-drawer', 'mat-sidenav'],
  47. },
  48. },
  49. {
  50. replace: 'close',
  51. replaceWith: 'closed',
  52. whitelist: {
  53. elements: ['mat-drawer', 'mat-sidenav'],
  54. },
  55. },
  56. {
  57. replace: 'open',
  58. replaceWith: 'opened',
  59. whitelist: {
  60. elements: ['mat-drawer', 'mat-sidenav'],
  61. },
  62. },
  63. ],
  64. },
  65. {
  66. pr: 'https://github.com/angular/components/pull/10309',
  67. changes: [
  68. {
  69. replace: 'selectChange',
  70. replaceWith: 'selectedTabChange',
  71. whitelist: {
  72. elements: ['mat-tab-group'],
  73. },
  74. },
  75. ],
  76. },
  77. {
  78. pr: 'https://github.com/angular/components/pull/10311',
  79. changes: [
  80. {
  81. replace: 'remove',
  82. replaceWith: 'removed',
  83. whitelist: {
  84. attributes: ['mat-chip', 'mat-basic-chip'],
  85. elements: ['mat-chip', 'mat-basic-chip'],
  86. },
  87. },
  88. {
  89. replace: 'destroy',
  90. replaceWith: 'destroyed',
  91. whitelist: {
  92. attributes: ['mat-chip', 'mat-basic-chip'],
  93. elements: ['mat-chip', 'mat-basic-chip'],
  94. },
  95. },
  96. ],
  97. },
  98. ],
  99. };
  100. //# sourceMappingURL=output-names.js.map