openapi-explorer 0.11.470 → 0.11.475
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/README.md +3 -1
- package/dist/browser/openapi-explorer.min.js +3 -3
- package/dist/es/openapi-explorer.js +1 -1
- package/dist/es/styles/font-styles.js +1 -1
- package/dist/es/templates/expanded-endpoint-template.js +4 -2
- package/dist/es/templates/focused-endpoint-template.js +2 -2
- package/dist/es/utils/spec-parser.js +1 -0
- package/dist/lib/openapi-explorer.js +1 -1
- package/dist/lib/styles/font-styles.js +1 -1
- package/dist/lib/templates/expanded-endpoint-template.js +4 -2
- package/dist/lib/templates/focused-endpoint-template.js +2 -2
- package/dist/lib/utils/spec-parser.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,9 +7,11 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
7
7
|
## 0.11 ##
|
|
8
8
|
* Fix `allOf` for response schema. #119
|
|
9
9
|
* Fixing handling of openapi paths that include url characters
|
|
10
|
+
* Add support for showing external docs
|
|
10
11
|
|
|
11
12
|
## 0.10 ##
|
|
12
13
|
* Internationalization support with languages `en` and `fr`
|
|
14
|
+
<<<<<<< HEAD
|
|
13
15
|
* Add a `slot` `nav-header` to the top of the navbar.
|
|
14
16
|
* Add ruby to available languages.
|
|
15
17
|
* Handle missing schema's for responses
|
package/README.md
CHANGED
|
@@ -20,7 +20,9 @@ Web Component Custom Element for Open-API spec viewing, with automatic integrati
|
|
|
20
20
|
## Beautiful and responsive API explorer and console
|
|
21
21
|
|
|
22
22
|
<p>
|
|
23
|
-
<
|
|
23
|
+
<a href="https://rhosys.github.io/openapi-explorer/#?route=get-/v1/users/-userId-/resources/-resourceUri-/permissions/-permission-" target="_blank">
|
|
24
|
+
<img src="./docs/desktop-view.png" alt="Desktop demo image" width="800px">
|
|
25
|
+
</a>
|
|
24
26
|
</p>
|
|
25
27
|
|
|
26
28
|
## Check out the Demo
|