diff --git a/bower.json b/bower.json index 5e33c388..e21e0317 100644 --- a/bower.json +++ b/bower.json @@ -11,9 +11,12 @@ }, "license": "MIT", "keywords": [ + "OpenAPI", + "OpenAPI Specification", "Swagger", "JSON-Schema", "API", + "REST", "documentation", "Angular 2" ], @@ -25,6 +28,10 @@ "tests", "lib", "demo", - "build" + "build", + "docs", + "gulpfile.js", + "*.conf.js", + "*.config.js" ] } diff --git a/lib/components/JsonSchema/json-schema.js b/lib/components/JsonSchema/json-schema.js index 0e8a4009..b8d0dbb1 100644 --- a/lib/components/JsonSchema/json-schema.js +++ b/lib/components/JsonSchema/json-schema.js @@ -144,7 +144,7 @@ export default class JsonSchema extends BaseComponent { // TODO handle internal schemes differently let names = [].slice.call(this.$element.querySelectorAll('.param-name-content')); - let widths = [144];//names.map(el => el.offsetWidth); + let widths = names.map(el => el.offsetWidth); let maxWidth = Math.max(...widths); if (!maxWidth) return; names.forEach(el => { diff --git a/package.json b/package.json index 9881d8c5..3941db64 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "redoc", "description": "Swagger-generated API Reference Documentation", - "version": "0.6.1", + "version": "0.6.2", "repository": { "type": "git", "url": "git://github.com/Rebilly/ReDoc" @@ -18,9 +18,12 @@ "deploy": "build/prepare_deploy.sh && deploy-to-gh-pages demo" }, "keywords": [ + "OpenAPI", + "OpenAPI Specification", "Swagger", "JSON-Schema", "API", + "REST", "documentation", "Angular 2" ],