[ADF-1586] Updated paths of import statements in docs (#2735)

This commit is contained in:
Andy Stark
2017-11-27 12:29:05 +00:00
committed by Eugenio Romano
parent 8834b0c2d2
commit 2f07fa339d
20 changed files with 33 additions and 63 deletions

View File

@@ -10,7 +10,7 @@ Defines how the input fields of [ADF Form](form.component.md) and
```
```ts
import { FORM_FIELD_VALIDATORS } from 'ng2-activiti-form';
import { FORM_FIELD_VALIDATORS } from 'lib/core/form/components/widgets/core';
@Component({...})
export class AppComponent {
@@ -85,7 +85,7 @@ The validator in the example
below simply checks that "admin" is not entered into a text field:
```ts
import { FormFieldModel, FormFieldTypes, FormFieldValidator } from 'ng2-activiti-form';
import { FormFieldModel, FormFieldTypes, FormFieldValidator } from 'lib/core/form/components/widgets/core';
export class DemoFieldValidator implements FormFieldValidator {