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 Jul 30, 2018. It is now read-only.
Essentially this allows injection to fail silently and doesn't allow getProperties to react. Instead, it would be useful to pass undefined to getProperties and allow it to handle an unregistered injector. It could then
throw an error
provide default property values
choose to ignore it as we do today
This is especially important for Container because it transforms all of a Widget's properties into optional. So while I may have a Widget where all of it's properties are required, when @Inject skips a call to getProperties I don't have an opportunity to deal with the missing properties and my Widget will expect for those properties to exist due to its properties typings.