@scalar/api-reference 1.20.25 → 1.20.27

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @scalar/api-reference
2
2
 
3
+ ## 1.20.27
4
+
5
+ ### Patch Changes
6
+
7
+ - 605f522: feat: support tags with no operations
8
+
9
+ ## 1.20.26
10
+
11
+ ### Patch Changes
12
+
13
+ - 050410a: feat: add config to hide download button
14
+
3
15
  ## 1.20.25
4
16
 
5
17
  ### Patch Changes
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.