ember-source 5.8.0-alpha.2 → 5.8.0-alpha.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.
- package/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +15 -2
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +1 -1
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +19 -3
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/@ember/-internals/environment/index.js +13 -0
- package/dist/packages/@ember/routing/route.js +4 -0
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +76 -63
- package/package.json +2 -2
- package/types/stable/@ember/-internals/environment/lib/env.d.ts +15 -0
|
@@ -130,6 +130,21 @@ declare module '@ember/-internals/environment/lib/env' {
|
|
|
130
130
|
@private
|
|
131
131
|
*/
|
|
132
132
|
_DEFAULT_ASYNC_OBSERVERS: boolean;
|
|
133
|
+
/**
|
|
134
|
+
Whether the app still has default record-loading behavior in the model
|
|
135
|
+
hook from RFC https://rfcs.emberjs.com/id/0774-implicit-record-route-loading
|
|
136
|
+
This will also remove the default store property from the route.
|
|
137
|
+
|
|
138
|
+
This is not intended to be set directly, as the implementation may change in
|
|
139
|
+
the future. Use `@ember/optional-features` instead.
|
|
140
|
+
|
|
141
|
+
@property _NO_IMPLICIT_ROUTE_MODEL
|
|
142
|
+
@for EmberENV
|
|
143
|
+
@type Boolean
|
|
144
|
+
@default false
|
|
145
|
+
@private
|
|
146
|
+
*/
|
|
147
|
+
_NO_IMPLICIT_ROUTE_MODEL: boolean;
|
|
133
148
|
/**
|
|
134
149
|
Controls the maximum number of scheduled rerenders without "settling". In general,
|
|
135
150
|
applications should not need to modify this environment variable, but please
|