@scalar/api-reference 1.20.25 → 1.20.26
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 +10 -0
- package/dist/browser/standalone.js +6 -6
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReferenceLayout.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/DownloadSpec.vue.d.ts.map +1 -1
- package/dist/helpers/provideSymbols.d.ts +1 -0
- package/dist/helpers/provideSymbols.d.ts.map +1 -1
- package/dist/index.cjs +85 -85
- package/dist/index.css +1 -1
- package/dist/index.js +4262 -4253
- package/dist/types.d.ts +6 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -91,6 +91,16 @@ Whether models (components.schemas) should be shown in the sidebar, search and c
|
|
|
91
91
|
<ApiReference :configuration="{ hideModels: true } />
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
+
#### hideDownloadButton?: boolean
|
|
95
|
+
|
|
96
|
+
Whether to show the "Download OpenAPI Specification" button
|
|
97
|
+
|
|
98
|
+
`@default false`
|
|
99
|
+
|
|
100
|
+
```vue
|
|
101
|
+
<ApiReference :configuration="{ hideDownloadButton: true } />
|
|
102
|
+
```
|
|
103
|
+
|
|
94
104
|
### customCss?: string
|
|
95
105
|
|
|
96
106
|
You can pass custom CSS directly to the component. This is helpful for the integrations for Fastify, Express, Hono and others where you it’s easier to add CSS to the configuration.
|