@stainless-api/docs 0.1.0-beta.50 → 0.1.0-beta.51

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.51
4
+
5
+ ### Patch Changes
6
+
7
+ - 4fc191c: standardize accent border colors
8
+ - Updated dependencies [3d2179f]
9
+ - @stainless-api/ui-primitives@0.1.0-beta.31
10
+ - @stainless-api/docs-ui@0.1.0-beta.42
11
+
3
12
  ## 0.1.0-beta.50
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.50",
3
+ "version": "0.1.0-beta.51",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,7 +39,7 @@
39
39
  "clsx": "^2.1.1",
40
40
  "dotenv": "17.2.3",
41
41
  "get-port": "^7.1.0",
42
- "lucide-react": "^0.554.0",
42
+ "lucide-react": "^0.555.0",
43
43
  "marked": "^17.0.1",
44
44
  "node-html-parser": "^7.0.1",
45
45
  "rehype-parse": "^9.0.1",
@@ -47,30 +47,30 @@
47
47
  "remark-gfm": "^4.0.1",
48
48
  "remark-github-alerts": "^0.1.1",
49
49
  "remark-stringify": "^11.0.0",
50
- "shiki": "^3.15.0",
50
+ "shiki": "^3.18.0",
51
51
  "unified": "^11.0.5",
52
52
  "web-worker": "^1.5.0",
53
- "yaml": "^2.8.1",
54
- "@stainless-api/docs-ui": "0.1.0-beta.41",
55
- "@stainless-api/ui-primitives": "0.1.0-beta.30"
53
+ "yaml": "^2.8.2",
54
+ "@stainless-api/ui-primitives": "0.1.0-beta.31",
55
+ "@stainless-api/docs-ui": "0.1.0-beta.42"
56
56
  },
57
57
  "devDependencies": {
58
- "@astrojs/check": "^0.9.5",
58
+ "@astrojs/check": "^0.9.6",
59
59
  "@markdoc/markdoc": "^0.5.4",
60
60
  "@types/node": "24.10.1",
61
61
  "@types/react": "^19.2.7",
62
62
  "@types/react-dom": "^19.2.3",
63
63
  "react": "^19.2.0",
64
64
  "react-dom": "^19.2.0",
65
- "tsx": "^4.20.6",
65
+ "tsx": "^4.21.0",
66
66
  "typescript": "5.9.3",
67
67
  "vite": "^6.4.1",
68
68
  "zod": "^4.1.13",
69
- "@stainless/sdk-json": "^0.1.0-beta.0",
70
- "@stainless/eslint-config": "0.1.0-beta.0"
69
+ "@stainless/eslint-config": "0.1.0-beta.0",
70
+ "@stainless/sdk-json": "^0.1.0-beta.0"
71
71
  },
72
72
  "scripts": {
73
- "vendor-deps": "pnpm tsx scripts/vendor_deps.ts",
73
+ "vendor-deps": "tsx scripts/vendor_deps.ts",
74
74
  "lint": "eslint . --max-warnings 0",
75
75
  "sync": "astro sync",
76
76
  "check:types": "astro check"
@@ -42,7 +42,7 @@ const navLinks = buildNavLinks(Astro.locals.starlightRoute);
42
42
  border-bottom: 2px solid transparent;
43
43
 
44
44
  &.active {
45
- border-color: var(--stl-color-accent-inverse-background);
45
+ border-color: var(--stl-color-accent-border-strong);
46
46
  }
47
47
 
48
48
  .stl-ui-button {
@@ -98,7 +98,7 @@
98
98
  border-inline-start: 1px solid var(--stl-color-border-faint);
99
99
  margin-inline-start: var(--stl-sidebar-indent);
100
100
  &:has(> a[aria-current='page']) {
101
- border-inline-start: 2px solid var(--stl-color-accent-foreground);
101
+ border-inline-start: 2px solid var(--stl-color-accent-border-strong);
102
102
  & > a {
103
103
  margin-left: -1px;
104
104
  }
package/styles/toc.css CHANGED
@@ -32,7 +32,7 @@
32
32
  position: absolute;
33
33
  height: 100%;
34
34
  width: 2px;
35
- background-color: var(--stl-color-accent-foreground);
35
+ background-color: var(--stl-color-accent-border-strong);
36
36
  left: -1px;
37
37
  top: 0;
38
38
  }