@scalar/api-reference 1.25.37 → 1.25.39
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 +33 -0
- package/README.md +8 -0
- package/dist/browser/standalone.js +9521 -9253
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReferenceLayout.vue.d.ts.map +1 -1
- package/dist/components/ApiReferenceLayout.vue.js +3 -3
- package/dist/components/ApiReferenceLayout.vue2.js +85 -82
- package/dist/embeds/OpenApiDocument/OpenApiDocument.vue.d.ts.map +1 -1
- package/dist/helpers/provideSymbols.d.ts +2 -0
- package/dist/helpers/provideSymbols.d.ts.map +1 -1
- package/dist/helpers/provideSymbols.js +5 -4
- package/dist/index.js +55 -54
- package/dist/legacy/fixtures/index.d.ts +0 -1
- package/dist/legacy/fixtures/index.d.ts.map +1 -1
- package/dist/legacy/stores/useOpenApiStore.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +10 -13
- package/dist/components/HelpfulLink.vue.d.ts +0 -16
- package/dist/components/HelpfulLink.vue.d.ts.map +0 -1
- package/dist/legacy/fixtures/httpHeaders.d.ts +0 -6
- package/dist/legacy/fixtures/httpHeaders.d.ts.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.25.39
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8f4b4a2]
|
|
8
|
+
- @scalar/api-client@2.1.24
|
|
9
|
+
|
|
10
|
+
## 1.25.38
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- dbbe38f: feat: add framework identifier for debugging purposes
|
|
15
|
+
- 59d3931: chore: remove unused dependencies
|
|
16
|
+
- Updated dependencies [5cb5cdf]
|
|
17
|
+
- Updated dependencies [971c04c]
|
|
18
|
+
- Updated dependencies [75f84f8]
|
|
19
|
+
- Updated dependencies [3800b54]
|
|
20
|
+
- Updated dependencies [6394a5d]
|
|
21
|
+
- Updated dependencies [dbbe38f]
|
|
22
|
+
- Updated dependencies [59d3931]
|
|
23
|
+
- Updated dependencies [2173073]
|
|
24
|
+
- Updated dependencies [c379e5a]
|
|
25
|
+
- Updated dependencies [aebac4e]
|
|
26
|
+
- Updated dependencies [4b8b611]
|
|
27
|
+
- Updated dependencies [4738228]
|
|
28
|
+
- @scalar/api-client@2.1.23
|
|
29
|
+
- @scalar/components@0.12.55
|
|
30
|
+
- @scalar/openapi-parser@0.8.7
|
|
31
|
+
- @scalar/types@0.0.16
|
|
32
|
+
- @scalar/themes@0.9.38
|
|
33
|
+
- @scalar/oas-utils@0.2.57
|
|
34
|
+
- @scalar/code-highlight@0.0.13
|
|
35
|
+
|
|
3
36
|
## 1.25.37
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -145,3 +145,11 @@ import '@scalar/api-reference/style.css'
|
|
|
145
145
|
```
|
|
146
146
|
|
|
147
147
|
You can [pass props to customize the API reference](https://github.com/scalar/scalar/tree/main/documentation/configuration.md).
|
|
148
|
+
|
|
149
|
+
## Community
|
|
150
|
+
|
|
151
|
+
We are API nerds. You too? Let’s chat on Discord: <https://discord.gg/scalar>
|
|
152
|
+
|
|
153
|
+
## License
|
|
154
|
+
|
|
155
|
+
The source code in this repository is licensed under [MIT](https://github.com/scalar/scalar/blob/main/LICENSE).
|