@scalar/api-reference 1.25.79 → 1.25.81
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/dist/browser/standalone.js +13239 -14204
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Anchor/Anchor.vue.d.ts.map +1 -1
- package/dist/components/Anchor/Anchor.vue.js +1 -1
- package/dist/components/Anchor/Anchor.vue2.js +19 -21
- package/dist/components/ApiReferenceLayout.vue.d.ts.map +1 -1
- package/dist/components/ApiReferenceLayout.vue.js +2 -2
- package/dist/components/ApiReferenceLayout.vue2.js +97 -92
- package/dist/components/Content/ClientLibraries/ClientSelector.vue.d.ts.map +1 -1
- package/dist/components/Content/ClientLibraries/ClientSelector.vue.js +1 -1
- package/dist/components/Content/ClientLibraries/ClientSelector.vue2.js +22 -20
- package/dist/components/Content/Introduction/Description.vue.d.ts.map +1 -1
- package/dist/components/Content/Introduction/Description.vue.js +2 -2
- package/dist/components/Content/Introduction/Description.vue2.js +30 -33
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.js +2 -2
- package/dist/components/Content/Schema/SchemaProperty.vue2.js +106 -102
- package/dist/components/Section/CompactSection.vue.js +2 -2
- package/dist/components/Section/CompactSection.vue2.js +14 -14
- package/dist/components/Section/Section.vue.d.ts.map +1 -1
- package/dist/components/Section/Section.vue.js +1 -1
- package/dist/components/Section/Section.vue2.js +16 -19
- package/dist/components/Sidebar/SidebarElement.vue.d.ts.map +1 -1
- package/dist/components/Sidebar/SidebarElement.vue.js +2 -2
- package/dist/components/Sidebar/SidebarElement.vue2.js +42 -46
- package/dist/embeds/OpenApiDocument/OpenApiDocument.vue.d.ts +4 -4
- package/dist/features/ApiClientModal/ApiClientModal.vue.d.ts.map +1 -1
- package/dist/features/ApiClientModal/ApiClientModal.vue.js +12 -12
- package/dist/features/ApiClientModal/useApiClient.d.ts +28 -28
- package/dist/features/ApiClientModal/useApiClient.d.ts.map +1 -1
- package/dist/features/ExampleRequest/ExampleRequest.vue.js +2 -2
- package/dist/features/ExampleRequest/ExampleRequest.vue2.js +1 -1
- package/dist/features/Operation/hooks/useRequestExample.js +22 -22
- package/dist/helpers/convertRequestToHarRequest.d.ts +1 -1
- package/dist/helpers/convertRequestToHarRequest.d.ts.map +1 -1
- package/dist/helpers/getExampleCode.d.ts +3 -4
- package/dist/helpers/getExampleCode.d.ts.map +1 -1
- package/dist/helpers/getExampleCode.js +12 -31
- package/dist/hooks/useNavState.d.ts +22 -0
- package/dist/hooks/useNavState.d.ts.map +1 -1
- package/dist/hooks/useNavState.js +57 -34
- package/dist/index.js +1 -1
- package/dist/stores/useHttpClientStore.d.ts +3 -4
- package/dist/stores/useHttpClientStore.d.ts.map +1 -1
- package/dist/stores/useHttpClientStore.js +45 -58
- package/dist/style.css +1 -1
- package/dist/types.d.ts +2 -5
- package/dist/types.d.ts.map +1 -1
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.25.81
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fbef0c3: feat: increases visible enum value item number
|
|
8
|
+
- fbef0c3: Adds support for hash prefixing. Requires manual control of useNavState.
|
|
9
|
+
- fbef0c3: fix(api-reference): correct anchor id encoding to ensure correct page scrolling #4173
|
|
10
|
+
- fbef0c3: fix: sets server variables values in client
|
|
11
|
+
- fbef0c3: chore: remove httpsnippet-lite
|
|
12
|
+
- Updated dependencies [fbef0c3]
|
|
13
|
+
- Updated dependencies [fbef0c3]
|
|
14
|
+
- Updated dependencies [fbef0c3]
|
|
15
|
+
- Updated dependencies [fbef0c3]
|
|
16
|
+
- Updated dependencies [fbef0c3]
|
|
17
|
+
- @scalar/openapi-parser@0.10.0
|
|
18
|
+
- @scalar/api-client@2.2.12
|
|
19
|
+
- @scalar/snippetz@0.2.9
|
|
20
|
+
- @scalar/types@0.0.24
|
|
21
|
+
- @scalar/oas-utils@0.2.88
|
|
22
|
+
- @scalar/themes@0.9.55
|
|
23
|
+
- @scalar/code-highlight@0.0.18
|
|
24
|
+
- @scalar/components@0.13.5
|
|
25
|
+
- @scalar/use-hooks@0.1.8
|
|
26
|
+
|
|
27
|
+
## 1.25.80
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- a109244: fix: operation server null check
|
|
32
|
+
|
|
3
33
|
## 1.25.79
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|