@fleetbase/ember-core 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -607,6 +607,7 @@ export default class UniverseService extends Service.extend(Evented) {
|
|
|
607
607
|
const items = this._getOption(options, 'items');
|
|
608
608
|
const component = this._getOption(options, 'component');
|
|
609
609
|
const componentParams = this._getOption(options, 'componentParams', {});
|
|
610
|
+
const renderComponentInPlace = this._getOption(options, 'renderComponentInPlace', false);
|
|
610
611
|
const slug = this._getOption(options, 'slug', dasherize(title));
|
|
611
612
|
const view = this._getOption(options, 'view');
|
|
612
613
|
const queryParams = this._getOption(options, 'queryParams', {});
|
|
@@ -631,6 +632,7 @@ export default class UniverseService extends Service.extend(Evented) {
|
|
|
631
632
|
items,
|
|
632
633
|
component,
|
|
633
634
|
componentParams,
|
|
635
|
+
renderComponentInPlace,
|
|
634
636
|
slug,
|
|
635
637
|
queryParams,
|
|
636
638
|
view,
|
package/package.json
CHANGED