@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 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.