@scalar/api-reference 1.48.8 → 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 +33 -0
- package/dist/browser/standalone.js +9866 -9838
- package/dist/browser/webpack-stats.json +1 -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 +2 -4
- 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/style.css +126 -124
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
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
|
+
|
|
3
36
|
## 1.48.8
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|