constructor-checks.js 1.0 KB

123456789101112131415161718192021222324252627
  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 target_version_1 = require("../../update-tool/target-version");
  11. /**
  12. * List of class names for which the constructor signature has been changed. The new constructor
  13. * signature types don't need to be stored here because the signature will be determined
  14. * automatically through type checking.
  15. */
  16. exports.constructorChecks = {
  17. [target_version_1.TargetVersion.V8]: [{
  18. pr: 'https://github.com/angular/components/pull/15647',
  19. changes: [
  20. 'CdkDrag', 'CdkDropList', 'ConnectedPositionStrategy', 'FlexibleConnectedPositionStrategy',
  21. 'OverlayPositionBuilder', 'CdkTable'
  22. ]
  23. }],
  24. [target_version_1.TargetVersion.V7]: [],
  25. [target_version_1.TargetVersion.V6]: []
  26. };
  27. //# sourceMappingURL=constructor-checks.js.map