[ADF-1769] Added prop tables and JSDocs (#2906)

This commit is contained in:
Andy Stark
2018-02-02 14:56:59 +00:00
committed by Eugenio Romano
parent 819274301b
commit 5ee9b09a21
14 changed files with 132 additions and 42 deletions

View File

@@ -34,15 +34,19 @@ import { TagService } from './services/tag.service';
})
export class TagActionsComponent implements OnChanges {
/** The identifier of a node. */
@Input()
nodeId: string;
/** Emitted when a tag is added successfully. */
@Output()
successAdd: EventEmitter<any> = new EventEmitter();
/** Emitted when an error occurs. */
@Output()
error: EventEmitter<any> = new EventEmitter();
/** Emitted when an action is chosen. */
@Output()
result = new EventEmitter();

View File

@@ -35,6 +35,7 @@ export class TagListComponent implements OnInit {
tagsEntries: any;
/** Emitted when a tag is selected. */
@Output()
result = new EventEmitter();

View File

@@ -32,12 +32,13 @@ import { TagService } from './services/tag.service';
encapsulation: ViewEncapsulation.None
})
export class TagNodeListComponent implements OnChanges {
/** The identifier of a node. */
@Input()
nodeId: string;
tagsEntries: any;
/** Emitted when a tag is selected. */
@Output()
results = new EventEmitter();