openapi-explorer 0.9.350 → 0.9.357
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 +1 -0
- package/dist/browser/openapi-explorer.min.js +3 -3
- package/dist/browser/openapi-explorer.min.js.map +1 -1
- package/dist/es/openapi-explorer.js +5 -4
- package/dist/es/styles/nav-styles.js +1 -1
- package/dist/es/templates/components-template.js +1 -1
- package/dist/es/templates/endpoint-template.js +1 -4
- package/dist/es/templates/expanded-endpoint-template.js +7 -5
- package/dist/es/templates/focused-endpoint-template.js +2 -8
- package/dist/es/templates/navbar-template.js +2 -1
- package/dist/es/utils/spec-parser.js +11 -8
- package/dist/lib/openapi-explorer.js +5 -4
- package/dist/lib/styles/nav-styles.js +1 -1
- package/dist/lib/templates/components-template.js +1 -1
- package/dist/lib/templates/endpoint-template.js +1 -4
- package/dist/lib/templates/expanded-endpoint-template.js +8 -6
- package/dist/lib/templates/focused-endpoint-template.js +1 -7
- package/dist/lib/templates/navbar-template.js +3 -1
- package/dist/lib/utils/spec-parser.js +11 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,7 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
12
12
|
* Support root level `security` field.
|
|
13
13
|
* `hide-components` attribute to disable showing the components.
|
|
14
14
|
* Fix components to actually collapse when `collapse` is set.
|
|
15
|
+
* Fix displaying tag descriptions correctly and add supporting slot for subsections.
|
|
15
16
|
|
|
16
17
|
## 0.8 ##
|
|
17
18
|
* 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.
|