@scalar/api-reference 1.17.15 → 1.18.0
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 +25 -0
- package/README.md +0 -8
- package/dist/browser/standalone.js +9 -9
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReferenceBase.vue.d.ts.map +1 -1
- package/dist/components/ApiReferenceLayout.vue.d.ts.map +1 -1
- package/dist/components/Content/ClientLibraries/ClientSelector.vue.d.ts.map +1 -1
- package/dist/components/Sidebar/SidebarElement.vue.d.ts.map +1 -1
- package/dist/helpers/getRequestFromAuthentication.d.ts +1 -1
- package/dist/helpers/getRequestFromAuthentication.d.ts.map +1 -1
- package/dist/hooks/useSpec.d.ts +1 -0
- package/dist/hooks/useSpec.d.ts.map +1 -1
- package/dist/{index-WyPUQrGJ.js → index-BNQlaahg.js} +7770 -7636
- package/dist/{index-D-6YXdFT.js → index-CDYgXzd-.js} +62 -63
- package/dist/index.js +7 -7
- package/dist/types.d.ts +0 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ad2b95a: fix: scope scrollbar styles
|
|
8
|
+
- ad2b95a: refactor: move reset component to themes package
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [ad2b95a]
|
|
13
|
+
- Updated dependencies [ad2b95a]
|
|
14
|
+
- @scalar/swagger-editor@0.11.0
|
|
15
|
+
- @scalar/themes@0.6.0
|
|
16
|
+
- @scalar/api-client@0.12.15
|
|
17
|
+
- @scalar/components@0.4.2
|
|
18
|
+
|
|
19
|
+
## 1.17.16
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- f39516c: chore: remove preparsed content
|
|
24
|
+
- 8b2558a: fix: custom operation security scheme is ignored
|
|
25
|
+
- ad80db9: fix: content not reactive
|
|
26
|
+
- 2e9218f: fix: deprecated operations are not striked through in the sidebar
|
|
27
|
+
|
|
3
28
|
## 1.17.15
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -58,14 +58,6 @@ Pass the URL of a spec file (JSON or Yaml).
|
|
|
58
58
|
<ApiReference :configuration="{ spec: { url: '/swagger.json' } }" />
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
#### spec.preparsedContent?: string
|
|
62
|
-
|
|
63
|
-
You can preprocess specs with `@scalar/swagger-parser` and directly pass the result.
|
|
64
|
-
|
|
65
|
-
```vue
|
|
66
|
-
<ApiReference :configuration="{ spec: { preparsedContent : '{ … }' } } />
|
|
67
|
-
```
|
|
68
|
-
|
|
69
61
|
#### proxyUrl?: string
|
|
70
62
|
|
|
71
63
|
Making requests to other domains is restricted in the browser and requires [CORS headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS). It’s recommended to use a proxy to send requests to other origins.
|