I peep into ng2-dropdown
and I can see (ng2-dropdown-menu.ts)
among other things
transition('hidden => visible', [
animate(150, keyframes([
style({opacity: 0, offset: 0, height: '0', width: '0'}),
style({opacity: 1, offset: 1, height: '*', width: '*'}),
]))
])
what does * (asterisk) mean in height value ?