@stainless-api/docs 0.1.0-beta.108 → 0.1.0-beta.109

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.109
4
+
5
+ ### Patch Changes
6
+
7
+ - b45d8e2: clean up empty state on Overview when there are no “Libraries”
8
+
3
9
  ## 0.1.0-beta.108
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.108",
3
+ "version": "0.1.0-beta.109",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -41,11 +41,17 @@ Astro.locals._stlStarlightPage = {
41
41
  }}
42
42
  >
43
43
  <div class="stl-overview">
44
- <h3>Libraries</h3>
44
+ {
45
+ metadata.length > 0 && (
46
+ <>
47
+ <h3>Libraries</h3>
45
48
 
46
- <div class="stldocs-root language-blocks stl-ui-not-prose not-content">
47
- <RenderLibraries metadata={metadata} />
48
- </div>
49
+ <div class="stldocs-root language-blocks stl-ui-not-prose not-content">
50
+ <RenderLibraries metadata={metadata} />
51
+ </div>
52
+ </>
53
+ )
54
+ }
49
55
 
50
56
  <h3>API Overview</h3>
51
57