openapi-explorer 0.8.290 → 0.8.293
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 +3 -0
- package/dist/openapi-explorer.min.js +5 -5
- package/dist/openapi-explorer.min.js.LICENSE.txt +1 -1
- package/dist/openapi-explorer.min.js.LICENSE.txt.gz +0 -0
- package/dist/openapi-explorer.min.js.gz +0 -0
- package/dist/openapi-explorer.min.js.map +1 -1
- package/dist/openapi-explorer.min.js.map.gz +0 -0
- package/dist/report.html +2 -2
- package/package.json +1 -1
- package/src/components/api-request.js +4 -4
- package/src/components/api-response.js +3 -3
- package/src/openapi-explorer.js +4 -5
- package/src/templates/security-scheme-template.js +2 -2
- package/src/templates/server-template.js +1 -1
- package/src/utils/spec-parser.js +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,9 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
8
8
|
* Removing the `RESET` button as it is confusing for users to see. It only repopulated the defaults, and to do that, you can easily switch tabs and come back.
|
|
9
9
|
* Arrays and Objects read-only indicator is now present at the top level, and these objects are hidden from POST/UPDATE/PATCH bodies.
|
|
10
10
|
* Support $refs to load markdown files into the spec and render them appropriately.
|
|
11
|
+
* Correctly show deprecated arrays and hide deprecated elements from examples.
|
|
12
|
+
* Add aria labels and roles to `<select>` and `<table>` elements.
|
|
13
|
+
* [Bug] - don't force adding the spec url to the list of servers if the server list is already populated
|
|
11
14
|
|
|
12
15
|
## 0.7 ##
|
|
13
16
|
* Introduce `setAuthenticationConfiguration` to set any all configuration related to token management, including clientIds and explicit tokens.
|