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
committed by Eugenio Romano
parent e944b92fc7
commit 8c28daf2cd
211 changed files with 1413 additions and 9463 deletions

View File

@@ -19,7 +19,7 @@ import { Component, HostListener } from '@angular/core';
import { ContextMenuService } from './context-menu.service';
@Component({
selector: 'context-menu-holder',
selector: 'adf-context-menu-holder, context-menu-holder',
styles: [
`
.menu-container {

View File

@@ -15,8 +15,8 @@
* limitations under the License.
*/
import {Injectable} from '@angular/core';
import {Subject} from 'rxjs/Rx';
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs/Rx';
@Injectable()
export class ContextMenuService {

View File

@@ -15,6 +15,8 @@
* limitations under the License.
*/
/* tslint:disable:component-selector */
import { Component, ContentChildren, QueryList } from '@angular/core';
import { DataColumnComponent } from './data-column.component';

View File

@@ -15,6 +15,8 @@
* limitations under the License.
*/
/* tslint:disable:component-selector */
import { Component, ContentChild, Input, OnInit, TemplateRef } from '@angular/core';
@Component({

View File

@@ -15,6 +15,8 @@
* limitations under the License.
*/
/* tslint:disable:component-selector */
import { Component, Input } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';

View File

@@ -76,7 +76,7 @@ export class CardViewItemDispatcherComponent implements OnChanges {
className = `CardView${upperCamelCasedType}ItemComponent`;
const factories = Array.from(this.resolver['_factories'].keys());
const factoryClass = <Type<any>>factories.find((x: any) => x.name === className);
const factoryClass = <Type<any>> factories.find((x: any) => x.name === className);
const factory = this.resolver.resolveComponentFactory(factoryClass);
this.componentReference = this.content.viewContainerRef.createComponent(factory);