Please read the Feature Flag Guide for a detailed explanation.
-
ember-libraries-isregisteredAdd
isRegisteredtoEmber.libraries. This convenience method checks whether a library is registered with Ember or not. -
ember-application-visitProvides an API for creating an application instance and specifying an initial URL that it should route to. This is useful for testing (you can have multiple instances of an app without having to run serially and call
reset()each time), as well as being critical to for FastBoot. -
ember-htmlbars-component-generationEnables HTMLBars compiler to interpret
<x-foo></x-foo>as a component invocation (instead of a standard HTML5 style element). -
ember-debug-handlersImplements RFC emberjs/rfcs#65, adding support for custom deprecation and warning handlers.
-
ember-routing-routable-componentsImplements RFC emberjs/rfcs#38, adding support for routable components.
-
ember-metal-ember-assignAdd
Ember.assignthat is polyfill forObject.assign. -
ember-contextual-componentsIntroduce a helper that creates closures over attrs and its own path, then allow the closed over cell to be invoked via the
{{componenthelper or any reference with a dot in the path.For example:
{{#with (hash profile=(component "user-profile")) as |userComponents|}} {{userComponents.profile}} {{/with}}
Implements RFC #64
-
ember-htmlbars-local-lookupProvides the ability for component lookup to be relative to the source template.
When the proper API's are implemented by the resolver in use this feature allows
{{x-foo}}in a given routes template (say thepostroute) to lookup a component nested underpost.