@scalar/api-reference 1.37.0 → 1.38.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 +34 -0
- package/dist/browser/standalone.js +19983 -17826
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/GettingStarted.vue.d.ts.map +1 -1
- package/dist/components/GettingStarted.vue.js +2 -2
- package/dist/components/GettingStarted.vue2.js +22 -22
- package/dist/esm.d.ts +2 -2
- package/dist/esm.d.ts.map +1 -1
- package/dist/features/api-client-modal/ApiClientModal.vue.d.ts.map +1 -1
- package/dist/features/api-client-modal/useApiClient.d.ts +32 -32
- package/dist/features/document-source/hooks/useDocumentFetcher.d.ts +2 -2
- package/dist/features/document-source/hooks/useDocumentFetcher.d.ts.map +1 -1
- package/dist/features/document-source/hooks/useDocumentSource.d.ts +2 -2
- package/dist/features/document-source/hooks/useDocumentSource.d.ts.map +1 -1
- package/dist/features/document-source/hooks/useDocumentSource.js +38 -34
- package/dist/features/multiple-documents/DocumentSelector.vue.d.ts +2 -2
- package/dist/features/multiple-documents/DocumentSelector.vue.d.ts.map +1 -1
- package/dist/features/multiple-documents/useMultipleDocuments.d.ts +4 -4
- package/dist/features/multiple-documents/useMultipleDocuments.d.ts.map +1 -1
- package/dist/features/multiple-documents/useMultipleDocuments.js +2 -2
- package/dist/index.js +1 -1
- package/dist/standalone/lib/html-api.d.ts +3 -3
- package/dist/standalone/lib/html-api.d.ts.map +1 -1
- package/dist/standalone/lib/register-globals.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/types.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.js +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue2.js +18 -19
- package/dist/v2/helpers/map-configuration.d.ts +2 -2
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.38.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1e01464: Adds a new ApiReferenceConfigWithSource type and make the base ApiReferenceConfig type agnostic of any document sources.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- debdcf6: Correctly handle additionalProperties when set to false
|
|
12
|
+
- a747da6: feat(components): overhaul and polish ScalarButton ✨
|
|
13
|
+
- 90d54b6: fix(components): use border to table instead of box shadow
|
|
14
|
+
- Updated dependencies [15c4240]
|
|
15
|
+
- Updated dependencies [debdcf6]
|
|
16
|
+
- Updated dependencies [13dcd89]
|
|
17
|
+
- Updated dependencies [63ff417]
|
|
18
|
+
- Updated dependencies [5d99cad]
|
|
19
|
+
- Updated dependencies [e0cdd9a]
|
|
20
|
+
- Updated dependencies [a747da6]
|
|
21
|
+
- Updated dependencies [1e01464]
|
|
22
|
+
- Updated dependencies [c69cb71]
|
|
23
|
+
- Updated dependencies [90d54b6]
|
|
24
|
+
- Updated dependencies [b998d57]
|
|
25
|
+
- @scalar/openapi-types@0.4.1
|
|
26
|
+
- @scalar/api-client@2.8.0
|
|
27
|
+
- @scalar/oas-utils@0.5.1
|
|
28
|
+
- @scalar/themes@0.13.21
|
|
29
|
+
- @scalar/workspace-store@0.17.0
|
|
30
|
+
- @scalar/components@0.15.0
|
|
31
|
+
- @scalar/snippetz@0.5.0
|
|
32
|
+
- @scalar/types@0.3.1
|
|
33
|
+
- @scalar/openapi-parser@0.22.2
|
|
34
|
+
- @scalar/openapi-upgrader@0.1.2
|
|
35
|
+
- @scalar/code-highlight@0.2.0
|
|
36
|
+
|
|
3
37
|
## 1.37.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|