redoc/lib/components/ParamsList/params-list.html

27 lines
1001 B
HTML
Raw Normal View History

<h2 class="param-list-header" *ngIf="data.params.length"> Parameters </h2>
2015-11-17 02:12:42 +03:00
<div class="params-wrap">
<div *ngFor="#param of data.params" class="param">
2015-11-22 21:04:18 +03:00
<div class="param-name">
<span> {{param.name}} </span>
</div>
<div class="param-info">
<div>
2016-02-04 12:49:00 +03:00
<span class="param-type {{param.type}}" [ngClass]="{'with-hint': param._displayTypeHint}"
title="{{param._displayTypeHint}}"> {{param._displayType}} {{param._displayFormat}}</span>
<span *ngIf="param.required" class="param-required">Required</span>
2015-11-22 21:04:18 +03:00
</div>
<div class="param-description" innerHtml="{{param.description | marked}}"></div>
2015-11-17 02:12:42 +03:00
</div>
</div>
</div>
<div *ngIf="data.bodyParam">
<h2 class="param-list-header" *ngIf="data.bodyParam"> Request Body </h2>
2015-11-17 02:12:42 +03:00
<div class="body-param-description" innerHtml="{{data.bodyParam.description | marked}}"></div>
2015-11-17 02:12:42 +03:00
<div>
2015-11-19 00:23:18 +03:00
<json-schema pointer="{{data.bodyParam.pointer}}/schema">
</json-schema>
2015-11-17 02:12:42 +03:00
</div>
</div>