@scalar/api-reference 1.17.14 → 1.17.16
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 +21 -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/Authentication/CardFormButton.vue.d.ts.map +1 -1
- package/dist/components/Content/Authentication/SecuritySchemeScopes.vue.d.ts.map +1 -1
- package/dist/components/Content/ClientLibraries/ClientSelector.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/MobileHeader.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-DuYygTDh.js → index-DB9G8SWm.js} +8390 -8193
- package/dist/index-DORwt0-2.js +227 -0
- package/dist/index.js +2 -2
- package/dist/types.d.ts +0 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +7 -7
- package/dist/index-C9XLhF-G.js +0 -415
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.17.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f39516c: chore: remove preparsed content
|
|
8
|
+
- 8b2558a: fix: custom operation security scheme is ignored
|
|
9
|
+
- ad80db9: fix: content not reactive
|
|
10
|
+
- 2e9218f: fix: deprecated operations are not striked through in the sidebar
|
|
11
|
+
|
|
12
|
+
## 1.17.15
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 3b672cc: fix: revert css changes to components lib
|
|
17
|
+
- 0f76d3d: style: fix padding and border for references
|
|
18
|
+
- Updated dependencies [3b672cc]
|
|
19
|
+
- @scalar/swagger-editor@0.10.15
|
|
20
|
+
- @scalar/swagger-parser@0.5.20
|
|
21
|
+
- @scalar/api-client@0.12.14
|
|
22
|
+
- @scalar/components@0.4.2
|
|
23
|
+
|
|
3
24
|
## 1.17.14
|
|
4
25
|
|
|
5
26
|
### 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.
|