@scalar/api-reference 1.48.7 → 1.49.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 +62 -0
- package/dist/browser/standalone.js +9910 -9857
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReference.vue.d.ts +0 -1
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/ApiReference.vue.js +1 -1
- package/dist/components/ApiReference.vue2.js +8 -9
- package/dist/components/Content/Auth/helpers/get-default-security.d.ts.map +1 -1
- package/dist/components/Content/Auth/helpers/get-default-security.js +13 -1
- package/dist/components/Content/Content.vue.d.ts +2 -4
- package/dist/components/Content/Content.vue.d.ts.map +1 -1
- package/dist/components/Content/Content.vue.js +77 -83
- package/dist/components/Content/Models/ModelTag.vue.d.ts +3 -3
- package/dist/components/Content/Models/ModelTag.vue.d.ts.map +1 -1
- package/dist/components/Content/Models/ModelTag.vue.js +42 -48
- package/dist/components/Content/Operations/TraversedEntry.vue.d.ts.map +1 -1
- package/dist/components/Content/Operations/TraversedEntry.vue.js +3 -2
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue2.js +9 -1
- package/dist/components/Content/Schema/helpers/should-display-description.js +1 -1
- package/dist/components/Content/Tags/components/ModernLayout.vue.d.ts +2 -2
- package/dist/components/Content/Tags/components/ModernLayout.vue.d.ts.map +1 -1
- package/dist/components/Content/Tags/components/ModernLayout.vue.js +1 -1
- package/dist/components/Content/Tags/components/ModernLayout.vue2.js +18 -26
- package/dist/components/Lazy/Lazy.vue.d.ts +3 -0
- package/dist/components/Lazy/Lazy.vue.d.ts.map +1 -1
- package/dist/components/Lazy/Lazy.vue.js +93 -4
- package/dist/features/ask-agent-button/AskAgentButton.vue.d.ts.map +1 -1
- package/dist/features/ask-agent-button/AskAgentButton.vue.js +1 -1
- package/dist/features/ask-agent-button/AskAgentButton.vue2.js +18 -14
- package/dist/helpers/id-routing.d.ts +4 -0
- package/dist/helpers/id-routing.d.ts.map +1 -1
- package/dist/helpers/id-routing.js +51 -5
- package/dist/helpers/lazy-bus.d.ts +19 -19
- package/dist/helpers/lazy-bus.d.ts.map +1 -1
- package/dist/helpers/lazy-bus.js +63 -28
- package/dist/helpers/storage.d.ts +4 -4
- package/dist/ssr.d.ts +22 -0
- package/dist/ssr.d.ts.map +1 -0
- package/dist/ssr.js +14 -0
- package/dist/style.css +130 -125
- package/package.json +16 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,67 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.49.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#8409](https://github.com/scalar/scalar/pull/8409): feat: lazy rendering
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#8443](https://github.com/scalar/scalar/pull/8443): fix hash-prefixed basePath routing
|
|
12
|
+
- [#8467](https://github.com/scalar/scalar/pull/8467): feat(api-reference): improve Ask AI button consistency and a11y
|
|
13
|
+
- [#8442](https://github.com/scalar/scalar/pull/8442): fix object schema descriptions in parameter rendering
|
|
14
|
+
|
|
15
|
+
#### Updated Dependencies
|
|
16
|
+
|
|
17
|
+
- **@scalar/workspace-store@0.40.2**
|
|
18
|
+
- [#8468](https://github.com/scalar/scalar/pull/8468): fix: ignore response examples when generating navigation
|
|
19
|
+
|
|
20
|
+
- **@scalar/api-client@2.38.1**
|
|
21
|
+
- [#8468](https://github.com/scalar/scalar/pull/8468): fix: example extraction, environment navigation and general UI fixes
|
|
22
|
+
- [#8451](https://github.com/scalar/scalar/pull/8451): fix(api-client): default-close auth when not required
|
|
23
|
+
|
|
24
|
+
- **@scalar/openapi-parser@0.25.4**
|
|
25
|
+
- [#8448](https://github.com/scalar/scalar/pull/8448): fix parser validation for unused path parameters
|
|
26
|
+
|
|
27
|
+
- **@scalar/components@0.20.9**
|
|
28
|
+
- [#8453](https://github.com/scalar/scalar/pull/8453): refactor: remove @ts-expect-error from ScalarTextArea
|
|
29
|
+
|
|
30
|
+
- **@scalar/agent-chat@0.9.9**
|
|
31
|
+
|
|
32
|
+
- **@scalar/oas-utils@0.10.8**
|
|
33
|
+
|
|
34
|
+
- **@scalar/sidebar@0.8.9**
|
|
35
|
+
|
|
36
|
+
## 1.48.8
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- [#8425](https://github.com/scalar/scalar/pull/8425): fix auth default OAuth scope fallback
|
|
41
|
+
- [#8416](https://github.com/scalar/scalar/pull/8416): fix: direct css import breaks build in react, vitepress and others
|
|
42
|
+
- [#8417](https://github.com/scalar/scalar/pull/8417): fix: document not defined in SSR environments
|
|
43
|
+
|
|
44
|
+
#### Updated Dependencies
|
|
45
|
+
|
|
46
|
+
- **@scalar/api-client@2.38.0**
|
|
47
|
+
- [#8444](https://github.com/scalar/scalar/pull/8444): feat: cache last response for an example
|
|
48
|
+
- [#8424](https://github.com/scalar/scalar/pull/8424): fix(api-client): persist oauth credentials location
|
|
49
|
+
- [#8428](https://github.com/scalar/scalar/pull/8428): fix: overflow issues for mac app version
|
|
50
|
+
- [#8447](https://github.com/scalar/scalar/pull/8447): fix: propagate schema to request body form-data table
|
|
51
|
+
|
|
52
|
+
- **@scalar/agent-chat@0.9.8**
|
|
53
|
+
- [#8416](https://github.com/scalar/scalar/pull/8416): fix: direct css import breaks build in react, vitepress and others
|
|
54
|
+
|
|
55
|
+
- **@scalar/workspace-store@0.40.1**
|
|
56
|
+
- [#8424](https://github.com/scalar/scalar/pull/8424): feat: export XScalarCredentialsLocation
|
|
57
|
+
- [#8445](https://github.com/scalar/scalar/pull/8445): fix: generate unique id for models
|
|
58
|
+
|
|
59
|
+
- **@scalar/oas-utils@0.10.7**
|
|
60
|
+
|
|
61
|
+
- **@scalar/sidebar@0.8.8**
|
|
62
|
+
|
|
63
|
+
- **@scalar/components@0.20.8**
|
|
64
|
+
|
|
3
65
|
## 1.48.7
|
|
4
66
|
|
|
5
67
|
### Patch Changes
|