select-animations.d.ts 991 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. import { AnimationTriggerMetadata } from '@angular/animations';
  9. /**
  10. * The following are all the animations for the mat-select component, with each
  11. * const containing the metadata for one animation.
  12. *
  13. * The values below match the implementation of the AngularJS Material mat-select animation.
  14. * @docs-private
  15. */
  16. export declare const matSelectAnimations: {
  17. readonly transformPanelWrap: AnimationTriggerMetadata;
  18. readonly transformPanel: AnimationTriggerMetadata;
  19. readonly fadeInContent: AnimationTriggerMetadata;
  20. };
  21. /**
  22. * @deprecated
  23. * @breaking-change 8.0.0
  24. * @docs-private
  25. */
  26. export declare const transformPanel: AnimationTriggerMetadata;
  27. /**
  28. * @deprecated
  29. * @breaking-change 8.0.0
  30. * @docs-private
  31. */
  32. export declare const fadeInContent: AnimationTriggerMetadata;