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