BDEVEXP-1200 - Updating bundles and set the version to 21.1.0

This commit is contained in:
akumarsingh 2020-02-14 12:15:45 -05:00
parent e2c9cfd542
commit ecd6e2b00f
9 changed files with 1004 additions and 1075 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "otx-redoc",
"version": "20.1.0",
"version": "21.1.0",
"description": "ReDoc",
"repository": {
"type": "git",

View File

@ -50,14 +50,13 @@ export class Operation extends React.Component<OperationProps> {
<div style={{zoom: '125%'}}>
<OperationBadge type={operation.httpVerb}>{shortenHTTPVerb(operation.httpVerb)}</OperationBadge>
</div>
<div style={{margin: '-24px 0 0 7px'}}>
<div style={{margin: '-5px 0 0 7px'}}>
<div style={{fontWeight: 'bolder'}}>
<H2>
{/*<ShareLink to={operation.id}/>*/}
{summary} {deprecated && <Badge type="warning"> Deprecated </Badge>}
</H2>
</div>
<div style={{marginTop: '-20px'}}>
<div>
{options.pathInMiddlePanel && <Endpoint operation={operation} inverted={true}/>}
{hasDescription && (
<Description>
@ -68,18 +67,6 @@ export class Operation extends React.Component<OperationProps> {
</div>
</div>
</div>
{/*<OperationBadge type={operation.httpVerb}>{shortenHTTPVerb(operation.httpVerb)}</OperationBadge>
<H2>
<ShareLink to={operation.id}/>
{summary} {deprecated && <Badge type="warning"> Deprecated </Badge>}
</H2>
{options.pathInMiddlePanel && <Endpoint operation={operation} inverted={true}/>}
{hasDescription && (
<Description>
{description !== undefined && <Markdown source={description}/>}
{externalDocs && <ExternalDocumentation externalDocs={externalDocs}/>}
</Description>
)}*/}
<Extensions extensions={operation.extensions}/>
<SecurityRequirements securities={operation.security}/>
<Parameters parameters={operation.parameters} body={operation.requestBody}/>