support for supportedSubmitMethods property in react component (#5376)
* support for supportedSubmitMethods property in react component * update react README Co-authored-by: Radek <radek.miazio@skysanner.net> Co-authored-by: kyle shockey <kyle.shockey1@gmail.com>
This commit is contained in:
@@ -18,6 +18,7 @@ export default class SwaggerUI extends React.Component {
|
||||
responseInterceptor: this.responseInterceptor,
|
||||
onComplete: this.onComplete,
|
||||
docExpansion: this.props.docExpansion,
|
||||
supportedSubmitMethods: this.props.supportedSubmitMethods,
|
||||
defaultModelExpandDepth: this.props.defaultModelExpandDepth,
|
||||
})
|
||||
|
||||
@@ -84,6 +85,9 @@ SwaggerUI.propTypes = {
|
||||
responseInterceptor: PropTypes.func,
|
||||
onComplete: PropTypes.func,
|
||||
docExpansion: PropTypes.oneOf(['list', 'full', 'none']),
|
||||
supportedSubmitMethods: PropTypes.arrayOf(
|
||||
PropTypes.oneOf(['get', 'put', 'post', 'delete', 'options', 'head', 'patch', 'trace'])
|
||||
),
|
||||
defaultModelExpandDepth: PropTypes.number,
|
||||
plugins: PropTypes.arrayOf(PropTypes.object),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user