You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
BREAKING_CHANGE:
When asked for DirectiveInjector, ComponentDirectiveInjector injects
parent. When asked for ComponentDirectiveInjector it injects self.
Before:
MyComponent(DirectiveInjector di) { }
After:
MyComponent(ComponentDirectiveInjector cdi, DirectiveInjector di) { }
where before di = after cdi, before di.parent = after di.
Closes#1351
0 commit comments