openapi-explorer 0.9.342 → 0.9.348
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 +5 -5
- package/dist/es/components/schema-table.js +10 -0
- package/dist/es/openapi-explorer.js +45 -38
- package/dist/es/templates/endpoint-template.js +1 -7
- package/dist/es/templates/focused-endpoint-template.js +1 -1
- package/dist/es/templates/navbar-template.js +25 -16
- package/dist/es/utils/common-utils.js +5 -1
- package/dist/es/utils/spec-parser.js +5 -6
- package/dist/lib/components/schema-table.js +10 -0
- package/dist/lib/openapi-explorer.js +44 -37
- package/dist/lib/templates/endpoint-template.js +1 -7
- package/dist/lib/templates/focused-endpoint-template.js +1 -1
- package/dist/lib/templates/navbar-template.js +26 -15
- package/dist/lib/utils/common-utils.js +5 -1
- package/dist/lib/utils/spec-parser.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,7 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
11
11
|
* `collapse` add new switch to automatically start the operations and components in collapsed mode.
|
|
12
12
|
* Support root level `security` field.
|
|
13
13
|
* `hide-components` attribute to disable showing the components.
|
|
14
|
+
* Fix components to actually collapse when `collapse` is set.
|
|
14
15
|
|
|
15
16
|
## 0.8 ##
|
|
16
17
|
* 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.
|