Skip to content

Commit

Permalink
regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed May 3, 2024
1 parent da3d289 commit 7f8d6c3
Show file tree
Hide file tree
Showing 151 changed files with 304 additions and 304 deletions.
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-A-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, A could be accessed via the `Ember` import:
Previously, `A` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.A
```

If needed, A can be imported:
If needed, `A` can be imported:
```js
import { A } from '@ember/array';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-ActionHandler-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ since: 5.10.0
---


Previously, ActionHandler could be accessed via the `Ember` import:
Previously, `ActionHandler` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.ActionHandler
```
ActionHandler is also private.
`ActionHandler` is also private.

There is no replacement for this API.
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Application-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Application could be accessed via the `Ember` import:
Previously, `Application` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Application
```

If needed, Application can be imported:
If needed, `Application` can be imported:
```js
import Application from '@ember/application';
```
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, ApplicationInstance could be accessed via the `Ember` import:
Previously, `ApplicationInstance` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.ApplicationInstance
```

If needed, ApplicationInstance can be imported:
If needed, `ApplicationInstance` can be imported:
```js
import ApplicationInstance from '@ember/application/instance';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Array-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Array could be accessed via the `Ember` import:
Previously, `Array` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Array
```

If needed, Array can be imported:
If needed, `Array` can be imported:
```js
import Array from '@ember/array';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-ArrayProxy-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, ArrayProxy could be accessed via the `Ember` import:
Previously, `ArrayProxy` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.ArrayProxy
```

If needed, ArrayProxy can be imported:
If needed, `ArrayProxy` can be imported:
```js
import ArrayProxy from '@ember/array/proxy';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-BOOTED-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ since: 5.10.0
---


Previously, BOOTED could be accessed via the `Ember` import:
Previously, `BOOTED` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.BOOTED
```
BOOTED is also private.
`BOOTED` is also private.

There is no replacement for this API.
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Comparable-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ since: 5.10.0
---


Previously, Comparable could be accessed via the `Ember` import:
Previously, `Comparable` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Comparable
```
Comparable is also private.
`Comparable` is also private.

There is no replacement for this API.
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Component-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Component could be accessed via the `Ember` import:
Previously, `Component` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Component
```

If needed, Component can be imported:
If needed, `Component` can be imported:
```js
import Component from '@ember/component';
```
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ since: 5.10.0
---


Previously, ComputedProperty could be accessed via the `Ember` import:
Previously, `ComputedProperty` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Expand Down
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Container-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ since: 5.10.0
---


Previously, Container could be accessed via the `Ember` import:
Previously, `Container` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Container
```
Container is also private.
`Container` is also private.

There is no replacement for this API.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, ContainerDebugAdapter could be accessed via the `Ember` import:
Previously, `ContainerDebugAdapter` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.ContainerDebugAdapter
```

If needed, ContainerDebugAdapter can be imported:
If needed, `ContainerDebugAdapter` can be imported:
```js
import ContainerDebugAdapter from '@ember/debug/container-debug-adapter';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Controller-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Controller could be accessed via the `Ember` import:
Previously, `Controller` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Controller
```

If needed, Controller can be imported:
If needed, `Controller` can be imported:
```js
import Controller from '@ember/controller';
```
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ since: 5.10.0
---


Previously, ControllerMixin could be accessed via the `Ember` import:
Previously, `ControllerMixin` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.ControllerMixin
```
ControllerMixin is also private.
`ControllerMixin` is also private.

If needed, ControllerMixin can be imported:
If needed, `ControllerMixin` can be imported:
```js
import { ControllerMixin } from '@ember/controller';
```

However, due to ControllerMixin being private, it is not recommended, nor supported.
However, due to `ControllerMixin` being private, it is not recommended, nor supported.
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-CoreObject-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, CoreObject could be accessed via the `Ember` import:
Previously, `CoreObject` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.CoreObject
```

If needed, CoreObject can be imported:
If needed, `CoreObject` can be imported:
```js
import EmberObject from '@ember/object';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-DataAdapter-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, DataAdapter could be accessed via the `Ember` import:
Previously, `DataAdapter` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.DataAdapter
```

If needed, DataAdapter can be imported:
If needed, `DataAdapter` can be imported:
```js
import DataAdapter from '@ember/debug/data-adapter';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Debug-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Debug could be accessed via the `Ember` import:
Previously, `Debug` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Debug
```

If needed, Debug can be imported:
If needed, `Debug` can be imported:
```js
import { registerDeprecationHandler } from '@ember/debug';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-ENV-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, ENV could be accessed via the `Ember` import:
Previously, `ENV` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.ENV
```

If needed, ENV can be imported:
If needed, `ENV` can be imported:
```js
import MyEnv from '<my-app>/config/environment';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Engine-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Engine could be accessed via the `Ember` import:
Previously, `Engine` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Engine
```

If needed, Engine can be imported:
If needed, `Engine` can be imported:
```js
import Engine from '@ember/engine';
```
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, EngineInstance could be accessed via the `Ember` import:
Previously, `EngineInstance` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.EngineInstance
```

If needed, EngineInstance can be imported:
If needed, `EngineInstance` can be imported:
```js
import Engine from '@ember/engine/instance';
```
8 changes: 4 additions & 4 deletions content/ember/v5/deprecate-import-Enumerable-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ since: 5.10.0
---


Previously, Enumerable could be accessed via the `Ember` import:
Previously, `Enumerable` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Enumerable
```
Enumerable is also private.
`Enumerable` is also private.

If needed, Enumerable can be imported:
If needed, `Enumerable` can be imported:
```js
import Enumerable from '@ember/enumerable';
```

However, due to Enumerable being private, it is not recommended, nor supported.
However, due to `Enumerable` being private, it is not recommended, nor supported.
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-Evented-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, Evented could be accessed via the `Ember` import:
Previously, `Evented` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.Evented
```

If needed, Evented can be imported:
If needed, `Evented` can be imported:
```js
import Evented from '@ember/object/evented';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-FEATURES-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ since: 5.10.0
---


Previously, FEATURES could be accessed via the `Ember` import:
Previously, `FEATURES` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.FEATURES
```

If needed, FEATURES can be imported:
If needed, `FEATURES` can be imported:
```js
import { isEnabled, FEATURES } from '@ember/canary-features';
```
4 changes: 2 additions & 2 deletions content/ember/v5/deprecate-import-GUID_KEY-from-ember.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ since: 5.10.0
---


Previously, GUID_KEY could be accessed via the `Ember` import:
Previously, `GUID_KEY` could be accessed via the `Ember` import:
```js
import Ember from 'ember';

Ember.GUID_KEY
```
GUID_KEY is also private.
`GUID_KEY` is also private.

There is no replacement for this API.
Loading

0 comments on commit 7f8d6c3

Please sign in to comment.