[ADF-1586] Fixed incorrect import declarations in docs (#2738)

This commit is contained in:
Andy Stark
2017-11-27 16:47:50 +00:00
committed by Eugenio Romano
parent 57234cd348
commit 6843a6adfd
20 changed files with 30 additions and 31 deletions

View File

@@ -80,7 +80,7 @@ When designing a component you want to work this directive with, you have two im
The component has to implement the NodePermissionSubject interface which basically means it has to have a boolean **disabled** property. This is the property which will be set by the directive.
```js
import { NodePermissionSubject } from 'lib/core/directives';
import { NodePermissionSubject } from '@alfresco/adf-core';
@Component({...})
export class UploadDragAreaComponent implements NodePermissionSubject {
@@ -98,7 +98,7 @@ The directive will look up the component in the dependency injection tree, up to
- because of the emphasized second sentence you have to provide your component as a viewProvider.
```js
import { EXTENDIBLE_COMPONENT } from 'lib/core/interface';
import { EXTENDIBLE_COMPONENT } from '@alfresco/adf-core';
@Component({
...