@stainless-api/docs 0.1.0-beta.103 → 0.1.0-beta.104

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,19 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.104
4
+
5
+ ### Minor Changes
6
+
7
+ - 6d9933d: Replace starlight page frame with top-level CSS grid layout
8
+ - 1a150ee: Updates preview worker
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [6d9933d]
13
+ - @stainless-api/ui-primitives@0.1.0-beta.49
14
+ - @stainless-api/docs-ui@0.1.0-beta.79
15
+ - @stainless-api/docs-search@0.1.0-beta.32
16
+
3
17
  ## 0.1.0-beta.103
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.103",
3
+ "version": "0.1.0-beta.104",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -56,9 +56,9 @@
56
56
  "vite-plugin-prebundle-workers": "^0.2.0",
57
57
  "web-worker": "^1.5.0",
58
58
  "yaml": "^2.8.2",
59
- "@stainless-api/docs-search": "0.1.0-beta.31",
60
- "@stainless-api/docs-ui": "0.1.0-beta.78",
61
- "@stainless-api/ui-primitives": "0.1.0-beta.48"
59
+ "@stainless-api/docs-search": "0.1.0-beta.32",
60
+ "@stainless-api/docs-ui": "0.1.0-beta.79",
61
+ "@stainless-api/ui-primitives": "0.1.0-beta.49"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@astrojs/check": "^0.9.6",
@@ -73,7 +73,7 @@
73
73
  "vite": "^6.4.1",
74
74
  "zod": "^4.3.6",
75
75
  "@stainless/eslint-config": "0.1.0-beta.1",
76
- "@stainless/sdk-json": "^0.1.0-beta.7"
76
+ "@stainless/sdk-json": "^0.1.0-beta.8"
77
77
  },
78
78
  "scripts": {
79
79
  "vendor-deps": "tsx scripts/vendor_deps.ts",
@@ -28,12 +28,6 @@ const options = getDocsLanguages().map((value) => ({
28
28
  const readmeSlug = language === 'http' ? API_REFERENCE_BASE_PATH : `${API_REFERENCE_BASE_PATH}/${language}`;
29
29
  ---
30
30
 
31
- <span
32
- hidden
33
- id="stldocs-data"
34
- data-stldocs-basepath={data.basePath}
35
- data-stldocs-defaultLanguage={data.defaultLanguage}></span>
36
-
37
31
  {
38
32
  (data.stainlessPath || slug === readmeSlug) && (
39
33
  <div class="stldocs-root stl-sdk-select">
@@ -4,7 +4,7 @@ import { Button } from '@stainless-api/ui-primitives';
4
4
  import { SearchIcon, XIcon } from 'lucide-react';
5
5
  ---
6
6
 
7
- <site-search>
7
+ <site-search class={Astro.props.class}>
8
8
  <Button
9
9
  popoverTarget="stldocs-search"
10
10
  data-open-modal
@@ -63,7 +63,8 @@ Astro.locals._stlStarlightPage = {
63
63
  margin-top: 2rem;
64
64
 
65
65
  .stldocs-language-block {
66
- width: 350px;
66
+ width: 0;
67
+ flex: 1 1 350px;
67
68
  }
68
69
  }
69
70