openapi-explorer 0.8.277 → 0.8.281
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 +4 -4
- 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 +1 -1
- package/src/components/json-tree.js +1 -1
- package/src/components/schema-table.js +1 -1
- package/src/components/schema-tree.js +3 -3
- package/src/openapi-explorer.js +1 -8
- package/src/styles/schema-styles.js +14 -2
- package/src/templates/expanded-endpoint-template.js +1 -7
- package/src/templates/focused-endpoint-template.js +1 -7
- package/src/templates/navbar-template.js +4 -41
- package/src/templates/overview-template.js +4 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Changelog #
|
|
2
2
|
This package follows standard semvar, `<major>.<minor>.<build>`. No breaking changes will be introduced to existing `<minor>` versions.
|
|
3
3
|
|
|
4
|
+
## 1.0 ##
|
|
5
|
+
* By default uses the `info.title` property of the open api specification for the `overview` section name in the navbar. Falls back to the default when not specified.
|
|
6
|
+
|
|
4
7
|
## 0.8 ##
|
|
5
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.
|
|
6
9
|
* Arrays and Objects read-only indicator is now present at the top level, and these objects are hidden from POST/UPDATE/PATCH bodies.
|