UNPKG

ngx-bootstrap

Version:
7 lines 345 B
import { animate, style } from '@angular/animations'; export const DROPDOWN_ANIMATION_TIMING = '220ms cubic-bezier(0, 0, 0.2, 1)'; export const dropdownAnimation = [ style({ height: 0, overflow: 'hidden' }), animate(DROPDOWN_ANIMATION_TIMING, style({ height: '*', overflow: 'hidden' })) ]; //# sourceMappingURL=dropdown-animations.js.map