openapi-explorer 0.10.452 → 0.11.461
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 +4 -0
- package/dist/browser/openapi-explorer.min.js +4 -4
- package/dist/es/openapi-explorer.js +2 -10
- package/dist/es/styles/nav-styles.js +1 -1
- package/dist/es/utils/schema-utils.js +1 -1
- package/dist/es/utils/spec-parser.js +3 -1
- package/dist/es/utils/theme.js +3 -3
- package/dist/lib/openapi-explorer.js +1 -9
- package/dist/lib/styles/nav-styles.js +1 -1
- package/dist/lib/utils/schema-utils.js +1 -1
- package/dist/lib/utils/spec-parser.js +3 -1
- package/dist/lib/utils/theme.js +6 -3
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
4
4
|
## 1.0 ##
|
|
5
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
6
|
|
|
7
|
+
## 0.11 ##
|
|
8
|
+
* Fix `allOf` for response schema. #119
|
|
9
|
+
|
|
7
10
|
## 0.10 ##
|
|
8
11
|
* Internationalization support with languages `en` and `fr`
|
|
9
12
|
* Add a `slot` `nav-header` to the top of the navbar.
|
|
@@ -25,6 +28,7 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
25
28
|
* Improve search to automatically update results
|
|
26
29
|
* Fix `servers` list not being used when `server-url` is not specified.
|
|
27
30
|
* Fix display of `integer` and `date-time` schema styling.
|
|
31
|
+
* Fix `font-size-small` and exposes these variables in the documentation for configuration.
|
|
28
32
|
|
|
29
33
|
## 0.9 ##
|
|
30
34
|
* OpenAPI 3.1 support using `APIDevTools/json-schema-ref-parser`
|