@scalar/api-reference 0.8.3 → 0.8.5

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,25 @@
1
1
  # @scalar/api-reference
2
2
 
3
+ ## 0.8.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 2f0b2f01: fix: add deprecated footerBelowSidebar again (use configuration object instead)
8
+ - 2f0b2f01: feat: add download spec button
9
+ - 2f0b2f01: refactor: improve the data flow between the reference and the swagger editor
10
+ - 2f0b2f01: refactor: move json helpers to separate files
11
+ - Updated dependencies [2f0b2f01]
12
+ - Updated dependencies [2f0b2f01]
13
+ - @scalar/swagger-editor@0.6.28
14
+ - @scalar/api-client@0.7.24
15
+
16
+ ## 0.8.4
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [a73ee9d8]
21
+ - @scalar/swagger-editor@0.6.27
22
+
3
23
  ## 0.8.3
4
24
 
5
25
  ### Patch Changes
package/README.md CHANGED
@@ -31,7 +31,7 @@ You can even [mount the component in React](https://github.com/scalar/scalar/blo
31
31
 
32
32
  ## Configuration
33
33
 
34
- There’s an configuration object, which can use on all platforms. In Vue.js you’re using it like this:
34
+ There’s a configuration object that can be used on all platforms. In Vue.js, you use it like this:
35
35
 
36
36
  #### isEditable?: boolean
37
37
 
@@ -101,7 +101,7 @@ Whether the sidebar should be shown.
101
101
 
102
102
  #### footerBelowSidebar?: boolean
103
103
 
104
- Whether the footer should below the content or below the content _and_ the sidebar.
104
+ Whether the footer should be below the content or below both the content _and_ the sidebar.
105
105
 
106
106
  ```vue
107
107
  <ApiReference :configuration="{ footerBelowSidebar: true} />