@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 +20 -0
- package/README.md +2 -2
- package/dist/browser/standalone.js +604 -856
- package/dist/components/ApiReference.vue.d.ts +9 -0
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.d.ts +10 -2
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/DownloadSpec.vue.d.ts +13 -0
- package/dist/components/Content/Introduction/DownloadSpec.vue.d.ts.map +1 -0
- package/dist/components/Content/Introduction/Introduction.vue.d.ts +10 -2
- package/dist/components/Content/Introduction/Introduction.vue.d.ts.map +1 -1
- package/dist/components/Content/ReferenceEndpoint/ExampleResponses/ExampleResponses.vue.d.ts.map +1 -1
- package/dist/components/Content/SpecDownload.vue.d.ts +13 -0
- package/dist/components/Content/SpecDownload.vue.d.ts.map +1 -0
- package/dist/helpers/deepMerge.d.ts +5 -0
- package/dist/helpers/deepMerge.d.ts.map +1 -0
- package/dist/helpers/index.d.ts +3 -0
- package/dist/helpers/index.d.ts.map +1 -1
- package/dist/helpers/isJsonString.d.ts +5 -0
- package/dist/helpers/isJsonString.d.ts.map +1 -0
- package/dist/helpers/prettyPrintJson.d.ts +5 -0
- package/dist/helpers/prettyPrintJson.d.ts.map +1 -0
- package/dist/index.js +10020 -10531
- package/dist/types.d.ts +3 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +3 -3
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
|
|
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} />
|