mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-1769] Added prop tables and JSDocs (#2906)
This commit is contained in:
committed by
Eugenio Romano
parent
819274301b
commit
5ee9b09a21
@@ -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();
|
||||
|
||||
|
@@ -35,6 +35,7 @@ export class TagListComponent implements OnInit {
|
||||
|
||||
tagsEntries: any;
|
||||
|
||||
/** Emitted when a tag is selected. */
|
||||
@Output()
|
||||
result = new EventEmitter();
|
||||
|
||||
|
@@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user