openapi-explorer 0.10.413 → 0.10.416
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/browser/openapi-explorer.min.js +4 -4
- package/dist/browser/openapi-explorer.min.js.map +1 -1
- package/dist/es/components/json-tree.js +6 -5
- package/dist/es/components/schema-tree.js +14 -5
- package/dist/es/languages/index.js +1 -1
- package/dist/es/styles/nav-styles.js +1 -1
- package/dist/es/styles/schema-styles.js +1 -1
- package/dist/es/templates/expanded-endpoint-template.js +1 -1
- package/dist/es/templates/navbar-template.js +4 -4
- package/dist/es/utils/schema-utils.js +26 -13
- package/dist/lib/components/json-tree.js +6 -5
- package/dist/lib/components/schema-tree.js +14 -5
- package/dist/lib/languages/index.js +1 -1
- package/dist/lib/styles/nav-styles.js +1 -1
- package/dist/lib/styles/schema-styles.js +1 -1
- package/dist/lib/templates/expanded-endpoint-template.js +1 -1
- package/dist/lib/templates/navbar-template.js +4 -4
- package/dist/lib/utils/schema-utils.js +27 -13
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,9 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
11
11
|
* Handle missing schema's for responses
|
|
12
12
|
* Update `request-body` slot to include `event` handler for `RequestCleared` for when the user clicks the `CLEAR` button in the API Request operation display.
|
|
13
13
|
* Ensure that `explorerLocation` is present in all `custom events` fired in the context of an operation.
|
|
14
|
+
* Fix expand/collapse transition effect
|
|
15
|
+
* Fix oneof examples display
|
|
16
|
+
* Fix navbar transition
|
|
14
17
|
|
|
15
18
|
## 0.9 ##
|
|
16
19
|
* OpenAPI 3.1 support using `APIDevTools/json-schema-ref-parser`
|