Services list in readme and in the doc generator (#2091)

* add services list in readme and in the autogenerator

* update tslint 5.5.0
This commit is contained in:
Eugenio Romano
2017-07-17 11:38:10 +01:00
parent b1d2ec9e9e
commit 3a76027fe3
211 changed files with 1413 additions and 9463 deletions

View File

@@ -39,7 +39,7 @@ import { WidgetComponent } from './../widgets/widget.component';
declare var adf: any;
@Component({
selector: 'form-field',
selector: 'adf-form-field, form-field',
template: `
<div [hidden]="!field?.isVisible">
<div #container></div>
@@ -78,7 +78,7 @@ export class FormFieldComponent implements OnInit, OnDestroy {
if (componentType) {
let factory = this.componentFactoryResolver.resolveComponentFactory(componentType);
this.componentRef = this.container.createComponent(factory);
let instance = <WidgetComponent>this.componentRef.instance;
let instance = <WidgetComponent> this.componentRef.instance;
instance.field = this.field;
instance.fieldChanged.subscribe(field => {
if (field && field.form) {