@scalar/api-reference 1.20.24 → 1.20.25
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 +6 -0
- package/README.md +11 -1
- package/dist/browser/standalone.js +3 -3
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReferenceLayout.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/SearchModal.vue.d.ts.map +1 -1
- package/dist/hooks/useSidebar.d.ts +1 -0
- package/dist/hooks/useSidebar.d.ts.map +1 -1
- package/dist/index.cjs +114 -114
- package/dist/index.css +1 -1
- package/dist/index.js +5460 -5456
- package/dist/types.d.ts +6 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -78,7 +78,17 @@ Making requests to other domains is restricted in the browser and requires [CORS
|
|
|
78
78
|
Whether the sidebar should be shown.
|
|
79
79
|
|
|
80
80
|
```vue
|
|
81
|
-
<ApiReference :configuration="{ showSidebar: true} />
|
|
81
|
+
<ApiReference :configuration="{ showSidebar: true } />
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
#### hideModels?: boolean
|
|
85
|
+
|
|
86
|
+
Whether models (components.schemas) should be shown in the sidebar, search and content.
|
|
87
|
+
|
|
88
|
+
`@default false`
|
|
89
|
+
|
|
90
|
+
```vue
|
|
91
|
+
<ApiReference :configuration="{ hideModels: true } />
|
|
82
92
|
```
|
|
83
93
|
|
|
84
94
|
### customCss?: string
|