[ADF-2451] Reviewed component docs (#3072)

This commit is contained in:
Andy Stark
2018-03-13 15:47:59 +00:00
committed by Eugenio Romano
parent d563dbbd77
commit 6c56d164ec
9 changed files with 185 additions and 102 deletions

View File

@@ -45,14 +45,20 @@ export class DropdownSitesComponent implements OnInit {
@Input()
siteList: SitePaging = null;
/** Id of the select site */
/** Id of the selected site */
@Input()
value: string = null;
/** Text or a translation key to act as a placeholder. */
/** Text or a translation key to act as a placeholder. Default value is the
* key "DROPDOWN.PLACEHOLDER_LABEL".
*/
@Input()
placeholder: string = 'DROPDOWN.PLACEHOLDER_LABEL';
/** Filter for the results of the sites query. Possible values are
* "members" and "containers". When "members" is used, the site list
* will be restricted to the sites that the user is a member of.
*/
@Input()
relations: string;