@scalar/api-reference 0.6.19 → 0.6.21
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 +30 -0
- package/README.md +5 -1
- package/dist/browser/standalone.js +209 -167
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/Card/CardContent.vue.d.ts +9 -0
- package/dist/components/Card/CardContent.vue.d.ts.map +1 -1
- package/dist/components/Content/EndpointsOverview.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/BaseUrl.vue.d.ts +3 -8
- package/dist/components/Content/Introduction/BaseUrl.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/ClientSelector.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/Introduction.vue.d.ts.map +1 -1
- package/dist/components/Content/ReferenceEndpoint/Copy.vue.d.ts.map +1 -1
- package/dist/components/Content/ReferenceEndpoint/ExampleRequest.vue.d.ts.map +1 -1
- package/dist/components/Content/ReferenceEndpoint/ExampleResponses/ExampleResponses.vue.d.ts.map +1 -1
- package/dist/components/DarkModeToggle.vue.d.ts.map +1 -1
- package/dist/components/SearchModal.vue.d.ts.map +1 -1
- package/dist/components/Sidebar.vue.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +522 -493
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 0.6.21
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ea110ca0: feat: export SearchModal component
|
|
8
|
+
- 1cbcabd7: lots of amazing fixes from when we missed last patch
|
|
9
|
+
- 9d22b4ca: fix: make the base urls reactive
|
|
10
|
+
- 437c4b01: amazing sprint fixes
|
|
11
|
+
- Updated dependencies [33604a1b]
|
|
12
|
+
- Updated dependencies [1cbcabd7]
|
|
13
|
+
- Updated dependencies [d7b12610]
|
|
14
|
+
- @scalar/swagger-parser@0.5.2
|
|
15
|
+
- @scalar/api-client@0.7.15
|
|
16
|
+
- @scalar/use-keyboard-event@0.5.2
|
|
17
|
+
- @scalar/swagger-editor@0.6.19
|
|
18
|
+
- @scalar/use-codemirror@0.7.7
|
|
19
|
+
- @scalar/use-clipboard@0.5.4
|
|
20
|
+
- @scalar/use-tooltip@0.5.3
|
|
21
|
+
- @scalar/use-toasts@0.5.4
|
|
22
|
+
- @scalar/use-modal@0.1.4
|
|
23
|
+
- @scalar/themes@0.3.10
|
|
24
|
+
|
|
25
|
+
## 0.6.20
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 37353dd1: feat: add `data-proxy-url` to the HTML API
|
|
30
|
+
- Updated dependencies [a7f776ba]
|
|
31
|
+
- @scalar/swagger-editor@0.6.18
|
|
32
|
+
|
|
3
33
|
## 0.6.19
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -67,7 +67,11 @@ Making requests to other domains is restricted in the browser and requires [CORS
|
|
|
67
67
|
<ApiReference proxyUrl="https://proxy.example.com" />
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
ℹ️ You can use [@scalar/api-client-proxy](https://github.com/scalar/scalar/tree/main/packages/api-client-proxy) to host your own proxy
|
|
70
|
+
ℹ️ You can use [@scalar/api-client-proxy](https://github.com/scalar/scalar/tree/main/packages/api-client-proxy) to host your own proxy or you can just use ours:
|
|
71
|
+
|
|
72
|
+
```vue
|
|
73
|
+
<ApiReference proxyUrl="https://api.scalar.com/request-proxy" />
|
|
74
|
+
```
|
|
71
75
|
|
|
72
76
|
#### initialTabState?: string
|
|
73
77
|
|