@stainless-api/docs 0.1.0-beta.84 → 0.1.0-beta.85

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,14 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.85
4
+
5
+ ### Patch Changes
6
+
7
+ - 4b1a91d: pagefind-ignore for breadcrumbs & ai dropdown
8
+ - Updated dependencies [274cefc]
9
+ - @stainless-api/docs-ui@0.1.0-beta.63
10
+ - @stainless-api/docs-search@0.1.0-beta.16
11
+
3
12
  ## 0.1.0-beta.84
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.84",
3
+ "version": "0.1.0-beta.85",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -30,7 +30,7 @@
30
30
  "node": ">=18.17.1"
31
31
  },
32
32
  "peerDependencies": {
33
- "@astrojs/starlight": ">=0.37.0",
33
+ "@astrojs/starlight": ">=0.37.4",
34
34
  "astro": ">=5.15.3",
35
35
  "react": ">=19.0.0",
36
36
  "react-dom": ">=19.0.0",
@@ -58,8 +58,8 @@
58
58
  "vite-plugin-prebundle-workers": "^0.2.0",
59
59
  "web-worker": "^1.5.0",
60
60
  "yaml": "^2.8.2",
61
- "@stainless-api/docs-search": "0.1.0-beta.15",
62
- "@stainless-api/docs-ui": "0.1.0-beta.62",
61
+ "@stainless-api/docs-search": "0.1.0-beta.16",
62
+ "@stainless-api/docs-ui": "0.1.0-beta.63",
63
63
  "@stainless-api/ui-primitives": "0.1.0-beta.45"
64
64
  },
65
65
  "devDependencies": {
@@ -61,7 +61,7 @@ const shouldRenderDescription = RENDER_PAGE_DESCRIPTIONS;
61
61
  {
62
62
  skipRenderingStarlightTitle ? null : (
63
63
  <>
64
- <div class="stl-ui-not-prose stl-page-nav-container stl-prose-page-nav-container">
64
+ <div class="stl-ui-not-prose stl-page-nav-container stl-prose-page-nav-container" data-pagefind-ignore>
65
65
  <ContentBreadcrumbs currentPath={currentPath} sidebarEntry={Astro.locals.starlightRoute.sidebar} />
66
66
  {showAIDropdown && <AIDropdown />}
67
67
  </div>