Is something like this possible?
I want to pass an "hasfocus" variable from cjc-box through ng-content attributes to the cjc-input component.
app.component.html
<div cjc-box><div cjc-input></div></div>
cic-box.component.html
<div class="cjc-box">
<div><ng-content hasfocus="focus"></ng-content></div>
</div>
cic-input.component.html
<input class="cjc-input" type="text" focus="{{hasfocus}}" />
Is this even possible with projections in ng2?