@scalar/api-reference 1.40.9 → 1.41.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 +35 -0
- package/dist/browser/standalone.js +3091 -3082
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.js +1 -1
- package/dist/components/Content/Schema/Schema.vue2.js +7 -1
- package/dist/components/Content/Schema/helpers/is-empty-schema-object.d.ts +8 -0
- package/dist/components/Content/Schema/helpers/is-empty-schema-object.d.ts.map +1 -0
- package/dist/components/Content/Schema/helpers/is-empty-schema-object.js +13 -0
- 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 +2 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue.js +1 -1
- package/dist/features/Operation/layouts/ClassicLayout.vue2.js +31 -21
- package/dist/features/Operation/layouts/ModernLayout.vue.d.ts.map +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue.js +1 -1
- package/dist/features/Operation/layouts/ModernLayout.vue2.js +12 -8
- package/dist/style.css +107 -95
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.41.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#7633](https://github.com/scalar/scalar/pull/7633): feat(api-reference): support rendering custom components for paths
|
|
8
|
+
- [#7583](https://github.com/scalar/scalar/pull/7583): feat: show empty schema message for object with no properties
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- [#7597](https://github.com/scalar/scalar/pull/7597): fix: show more button appears even if tags don't have any children
|
|
13
|
+
|
|
14
|
+
#### Updated Dependencies
|
|
15
|
+
|
|
16
|
+
- **@scalar/components@0.16.13**
|
|
17
|
+
- [#7584](https://github.com/scalar/scalar/pull/7584): fix: remove internal unused export
|
|
18
|
+
- `CARD_Heading_SYMBOL`
|
|
19
|
+
- `FORM_GROUP_SYMBOL`
|
|
20
|
+
- `formatHotKey#isDefault`
|
|
21
|
+
- `LoadingCompletionOptions`
|
|
22
|
+
- `MaybeElement`
|
|
23
|
+
- `ScalarComboBox#isGroup`
|
|
24
|
+
|
|
25
|
+
- [#7584](https://github.com/scalar/scalar/pull/7584): fix: remove unused `@scalar/use-toasts` dependency
|
|
26
|
+
- [#7604](https://github.com/scalar/scalar/pull/7604): fix(components): improve sidebar groups
|
|
27
|
+
- [#7589](https://github.com/scalar/scalar/pull/7589): chore(components): upgrade to Storybook 10
|
|
28
|
+
|
|
29
|
+
- **@scalar/workspace-store@0.24.2**
|
|
30
|
+
- [#7643](https://github.com/scalar/scalar/pull/7643): chore: update typebox
|
|
31
|
+
|
|
32
|
+
- **@scalar/api-client@2.17.2**
|
|
33
|
+
|
|
34
|
+
- **@scalar/sidebar@0.7.3**
|
|
35
|
+
|
|
36
|
+
- **@scalar/oas-utils@0.6.12**
|
|
37
|
+
|
|
3
38
|
## 1.40.9
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|