@stainless-api/docs 0.1.0-beta.13 → 0.1.0-beta.130

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.
Files changed (188) hide show
  1. package/CHANGELOG.md +1102 -0
  2. package/ambient.d.ts +6 -0
  3. package/eslint-suppressions.json +90 -0
  4. package/{eslint.config.js → eslint.config.ts} +0 -2
  5. package/locals.d.ts +17 -0
  6. package/package.json +62 -44
  7. package/playground-virtual-modules.d.ts +96 -0
  8. package/plugin/assets/languages/cli.svg +14 -0
  9. package/plugin/assets/languages/csharp.svg +1 -0
  10. package/plugin/assets/languages/php.svg +4 -0
  11. package/plugin/buildAlgoliaIndex.ts +40 -39
  12. package/plugin/components/MethodDescription.tsx +54 -0
  13. package/plugin/components/RequestBuilder/ParamEditor.tsx +55 -0
  14. package/plugin/components/RequestBuilder/SnippetStainlessIsland.tsx +107 -0
  15. package/plugin/components/RequestBuilder/index.tsx +40 -0
  16. package/plugin/components/RequestBuilder/props.ts +9 -0
  17. package/plugin/components/RequestBuilder/spec-helpers.ts +47 -0
  18. package/plugin/components/RequestBuilder/styles.css +67 -0
  19. package/plugin/components/SDKSelect.astro +18 -111
  20. package/plugin/components/SnippetCode.tsx +112 -70
  21. package/plugin/components/StainlessIslands.tsx +126 -0
  22. package/plugin/components/search/SearchAlgolia.astro +46 -29
  23. package/plugin/components/search/SearchIsland.tsx +61 -37
  24. package/plugin/generateAPIReferenceLink.ts +0 -40
  25. package/plugin/globalJs/ai-dropdown-options.ts +248 -0
  26. package/plugin/globalJs/code-snippets.ts +45 -16
  27. package/plugin/globalJs/copy.ts +115 -27
  28. package/plugin/globalJs/create-playground.shim.ts +3 -0
  29. package/plugin/globalJs/method-descriptions.ts +33 -0
  30. package/plugin/globalJs/navigation.ts +24 -44
  31. package/plugin/globalJs/playground-data.shim.ts +1 -0
  32. package/plugin/globalJs/playground-data.ts +14 -0
  33. package/plugin/globalJs/summary-selection-tweak.ts +29 -0
  34. package/plugin/helpers/generateDocsRoutes.ts +59 -0
  35. package/plugin/helpers/multiSpec.ts +8 -0
  36. package/plugin/index.ts +317 -141
  37. package/plugin/languages.ts +8 -2
  38. package/plugin/loadPluginConfig.ts +284 -109
  39. package/plugin/markdown/highlighter.ts +100 -0
  40. package/plugin/markdown/index.ts +39 -0
  41. package/plugin/middlewareBuilder/stainlessMiddleware.d.ts +3 -1
  42. package/plugin/react/Routing.tsx +98 -263
  43. package/plugin/referencePlaceholderUtils.ts +17 -14
  44. package/plugin/replaceSidebarPlaceholderMiddleware.ts +39 -35
  45. package/plugin/routes/Docs.astro +72 -111
  46. package/plugin/routes/DocsStatic.astro +6 -5
  47. package/plugin/routes/Overview.astro +46 -22
  48. package/plugin/routes/llms.ts +186 -0
  49. package/plugin/routes/markdown.ts +13 -12
  50. package/plugin/{cms → sidebar-utils}/sidebar-builder.ts +84 -69
  51. package/plugin/specs/FileCache.ts +99 -0
  52. package/plugin/specs/fetchSpecSSR.ts +27 -0
  53. package/plugin/specs/generateSpec.ts +112 -0
  54. package/plugin/specs/index.ts +132 -0
  55. package/plugin/specs/inputResolver.ts +148 -0
  56. package/plugin/{cms → specs}/worker.ts +82 -5
  57. package/plugin/vendor/preview.worker.docs.js +27121 -16890
  58. package/plugin/vendor/templates/cli.md +1 -0
  59. package/plugin/vendor/templates/go.md +4 -2
  60. package/plugin/vendor/templates/java.md +5 -1
  61. package/plugin/vendor/templates/kotlin.md +5 -1
  62. package/plugin/vendor/templates/node.md +4 -2
  63. package/plugin/vendor/templates/python.md +4 -2
  64. package/plugin/vendor/templates/ruby.md +4 -2
  65. package/plugin/vendor/templates/terraform.md +1 -1
  66. package/plugin/vendor/templates/typescript.md +3 -1
  67. package/resolveSrcFile.ts +10 -0
  68. package/scripts/vendor_deps.ts +5 -5
  69. package/shared/conditionalIntegration.ts +28 -0
  70. package/shared/getProsePages.ts +41 -0
  71. package/shared/getSharedLogger.ts +15 -0
  72. package/shared/terminalUtils.ts +3 -0
  73. package/shared/virtualModule.ts +46 -1
  74. package/src/content.config.ts +9 -0
  75. package/stl-docs/aiChatExamples.ts +95 -0
  76. package/stl-docs/chat/docs-chat-handler.ts +18 -0
  77. package/stl-docs/chat/hook.ts +215 -0
  78. package/stl-docs/chat/schemas.ts +70 -0
  79. package/stl-docs/chat/stainless-handler/index.ts +126 -0
  80. package/stl-docs/chat/stream-util.ts +16 -0
  81. package/stl-docs/chat/ui/AiChat.module.css +591 -0
  82. package/stl-docs/chat/ui/AiChat.tsx +188 -0
  83. package/stl-docs/chat/ui/Trigger.tsx +154 -0
  84. package/stl-docs/chat/ui/components/ChatControls.tsx +51 -0
  85. package/stl-docs/chat/ui/components/ChatEmpty.tsx +42 -0
  86. package/stl-docs/chat/ui/components/ChatLog.tsx +96 -0
  87. package/stl-docs/chat/ui/components/ChatMessage.tsx +47 -0
  88. package/stl-docs/chat/ui/components/CodeBlock.tsx +33 -0
  89. package/stl-docs/chat/ui/components/MessageFeedback.tsx +109 -0
  90. package/stl-docs/chat/ui/components/Table.tsx +15 -0
  91. package/stl-docs/chat/ui/components/ToolCall.tsx +34 -0
  92. package/stl-docs/chat/ui/components/hljs-github.css +81 -0
  93. package/stl-docs/chat/ui/scroll-manager.ts +86 -0
  94. package/stl-docs/chat/ui/types.ts +45 -0
  95. package/stl-docs/components/AIDropdown.tsx +63 -0
  96. package/stl-docs/components/AiChatIsland.tsx +16 -0
  97. package/stl-docs/components/{content-panel/ContentBreadcrumbs.tsx → ContentBreadcrumbs.tsx} +2 -2
  98. package/stl-docs/components/ContentPanel.astro +9 -0
  99. package/stl-docs/components/Footer.astro +89 -0
  100. package/stl-docs/components/Head.astro +20 -0
  101. package/stl-docs/components/Header.astro +3 -9
  102. package/stl-docs/components/PageFrame.astro +37 -0
  103. package/stl-docs/components/PageSidebar.astro +11 -0
  104. package/stl-docs/components/PageTitle.astro +82 -0
  105. package/stl-docs/components/StainlessLogo.svg +4 -0
  106. package/stl-docs/components/ThemeProvider.astro +36 -0
  107. package/stl-docs/components/ThemeSelect.astro +84 -146
  108. package/stl-docs/components/TwoColumnContent.astro +2 -0
  109. package/stl-docs/components/headers/DefaultHeader.astro +6 -8
  110. package/stl-docs/components/headers/StackedHeader.astro +10 -53
  111. package/stl-docs/components/icons/chat-gpt.tsx +2 -2
  112. package/stl-docs/components/icons/cursor.tsx +10 -0
  113. package/stl-docs/components/icons/gemini.tsx +19 -0
  114. package/stl-docs/components/icons/markdown.tsx +1 -1
  115. package/stl-docs/components/index.ts +1 -0
  116. package/stl-docs/components/mintlify-compat/Accordion.astro +2 -2
  117. package/stl-docs/components/mintlify-compat/AccordionGroup.astro +0 -4
  118. package/stl-docs/components/mintlify-compat/Columns.astro +2 -2
  119. package/stl-docs/components/mintlify-compat/Frame.astro +6 -6
  120. package/stl-docs/components/mintlify-compat/Tab.astro +2 -2
  121. package/stl-docs/components/mintlify-compat/callouts/Callout.astro +2 -2
  122. package/stl-docs/components/mintlify-compat/callouts/Check.astro +0 -4
  123. package/stl-docs/components/mintlify-compat/callouts/Danger.astro +0 -4
  124. package/stl-docs/components/mintlify-compat/callouts/Info.astro +0 -4
  125. package/stl-docs/components/mintlify-compat/callouts/Note.astro +0 -4
  126. package/stl-docs/components/mintlify-compat/callouts/Tip.astro +0 -4
  127. package/stl-docs/components/mintlify-compat/callouts/Warning.astro +0 -4
  128. package/stl-docs/components/mintlify-compat/card.css +4 -4
  129. package/stl-docs/components/mintlify-compat/index.ts +2 -4
  130. package/stl-docs/components/nav-tabs/NavDropdown.astro +38 -77
  131. package/stl-docs/components/nav-tabs/NavTabs.astro +81 -81
  132. package/stl-docs/components/nav-tabs/SecondaryNavTabs.astro +1 -2
  133. package/stl-docs/components/nav-tabs/buildNavLinks.ts +5 -2
  134. package/stl-docs/components/pagination/HomeLink.astro +10 -0
  135. package/stl-docs/components/pagination/Pagination.astro +177 -0
  136. package/stl-docs/components/pagination/PaginationLinkEmphasized.astro +22 -0
  137. package/stl-docs/components/pagination/PaginationLinkQuiet.astro +13 -0
  138. package/stl-docs/components/pagination/util.ts +71 -0
  139. package/stl-docs/components/scripts.ts +1 -0
  140. package/stl-docs/components/sidebars/BaseSidebar.astro +80 -2
  141. package/stl-docs/components/sidebars/SidebarWithComponents.tsx +10 -0
  142. package/stl-docs/components/sidebars/convertAstroSidebarToStl.tsx +62 -0
  143. package/stl-docs/disableCalloutSyntax.ts +36 -0
  144. package/stl-docs/fonts.ts +186 -0
  145. package/stl-docs/index.ts +176 -58
  146. package/stl-docs/loadStlDocsConfig.ts +73 -8
  147. package/stl-docs/proseDocSync.test.ts +74 -0
  148. package/stl-docs/proseDocSync.ts +344 -0
  149. package/stl-docs/proseMarkdown/proseMarkdownIntegration.ts +53 -0
  150. package/stl-docs/proseMarkdown/proseMarkdownMiddleware.ts +41 -0
  151. package/stl-docs/proseMarkdown/toMarkdown.ts +158 -0
  152. package/stl-docs/proseSearchIndexing.ts +218 -0
  153. package/stl-docs/tabsMiddleware.ts +14 -5
  154. package/styles/code.css +53 -49
  155. package/styles/links.css +2 -37
  156. package/styles/method-descriptions.css +36 -0
  157. package/styles/overrides.css +28 -46
  158. package/styles/page.css +228 -38
  159. package/styles/sdk_select.css +9 -6
  160. package/styles/search.css +11 -21
  161. package/styles/sidebar.css +28 -215
  162. package/styles/{variables.css → sl-variables.css} +4 -8
  163. package/styles/stldocs-variables.css +6 -0
  164. package/styles/toc.css +19 -8
  165. package/theme.css +11 -9
  166. package/tsconfig.json +1 -4
  167. package/virtual-module.d.ts +66 -8
  168. package/components/variables.css +0 -112
  169. package/plugin/cms/client.ts +0 -62
  170. package/plugin/cms/server.ts +0 -268
  171. package/plugin/globalJs/ai-dropdown.ts +0 -57
  172. package/stl-docs/components/APIReferenceAIDropdown.tsx +0 -58
  173. package/stl-docs/components/ClientRouterHead.astro +0 -41
  174. package/stl-docs/components/content-panel/ContentPanel.astro +0 -69
  175. package/stl-docs/components/content-panel/ProseAIDropdown.tsx +0 -55
  176. package/stl-docs/components/headers/SplashMobileMenuToggle.astro +0 -49
  177. package/stl-docs/components/mintlify-compat/Step.astro +0 -56
  178. package/stl-docs/components/mintlify-compat/Steps.astro +0 -15
  179. package/styles/fonts.css +0 -68
  180. /package/{plugin/assets → assets}/fonts/geist/OFL.txt +0 -0
  181. /package/{plugin/assets → assets}/fonts/geist/geist-italic-latin-ext.woff2 +0 -0
  182. /package/{plugin/assets → assets}/fonts/geist/geist-italic-latin.woff2 +0 -0
  183. /package/{plugin/assets → assets}/fonts/geist/geist-latin-ext.woff2 +0 -0
  184. /package/{plugin/assets → assets}/fonts/geist/geist-latin.woff2 +0 -0
  185. /package/{plugin/assets → assets}/fonts/geist/geist-mono-italic-latin-ext.woff2 +0 -0
  186. /package/{plugin/assets → assets}/fonts/geist/geist-mono-italic-latin.woff2 +0 -0
  187. /package/{plugin/assets → assets}/fonts/geist/geist-mono-latin-ext.woff2 +0 -0
  188. /package/{plugin/assets → assets}/fonts/geist/geist-mono-latin.woff2 +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1107 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.130
4
+
5
+ ### Minor Changes
6
+
7
+ - da5debb: Move ai chat packages into stl-starlight, and extract to a generic interface
8
+
9
+ ### Patch Changes
10
+
11
+ - 3019a8b: Adds support for generating an llms.txt
12
+ - 4d3b938: Remove dead code flagged by knip
13
+ - b887dbb: Fix off-axis rotation of loading spinner in safari
14
+ - cfd8ea1: Minor fixes for Python and Ruby
15
+ - Updated dependencies [3019a8b]
16
+ - Updated dependencies [4d3b938]
17
+ - Updated dependencies [0791fb6]
18
+ - Updated dependencies [01b77d0]
19
+ - Updated dependencies [15e07d8]
20
+ - Updated dependencies [ebc039a]
21
+ - Updated dependencies [cfd8ea1]
22
+ - Updated dependencies [68a7bf8]
23
+ - @stainless-api/docs-ui@0.1.0-beta.93
24
+ - @stainless-api/ui-primitives@0.1.0-beta.53
25
+ - @stainless-api/docs-search@0.1.0-beta.46
26
+
27
+ ## 0.1.0-beta.129
28
+
29
+ ### Minor Changes
30
+
31
+ - 966ec34: Fixes nav dropdown logic
32
+
33
+ ### Patch Changes
34
+
35
+ - Updated dependencies [966ec34]
36
+ - @stainless-api/ui-primitives@0.1.0-beta.52
37
+ - @stainless-api/docs-search@0.1.0-beta.45
38
+ - @stainless-api/docs-ui@0.1.0-beta.92
39
+
40
+ ## 0.1.0-beta.128
41
+
42
+ ### Patch Changes
43
+
44
+ - e8a95f4: Revert “Fix getProsePages treating all pages as prose when API reference basePath is empty”
45
+
46
+ ## 0.1.0-beta.127
47
+
48
+ ### Patch Changes
49
+
50
+ - e0d595f: Fix snippet copy button click handler
51
+ - 8752b4e: Fix getProsePages treating all pages as prose when API reference basePath is ""
52
+ - Updated dependencies [871f3c0]
53
+ - Updated dependencies [871f3c0]
54
+ - @stainless-api/docs-ui@0.1.0-beta.91
55
+ - @stainless-api/docs-search@0.1.0-beta.44
56
+
57
+ ## 0.1.0-beta.126
58
+
59
+ ### Patch Changes
60
+
61
+ - 992a07a: Update vendored preview worker
62
+ - 1d1fa35: Use astro remark instead of `marked` to process api reference markdown
63
+ - Updated dependencies [374c0e4]
64
+ - @stainless-api/ui-primitives@0.1.0-beta.51
65
+ - @stainless-api/docs-ui@0.1.0-beta.90
66
+ - @stainless-api/docs-search@0.1.0-beta.43
67
+
68
+ ## 0.1.0-beta.125
69
+
70
+ ### Patch Changes
71
+
72
+ - 975ba51: cap prose indexing batches to 30MB
73
+ - Updated dependencies [005419c]
74
+ - @stainless-api/docs-ui@0.1.0-beta.89
75
+ - @stainless-api/docs-search@0.1.0-beta.42
76
+
77
+ ## 0.1.0-beta.124
78
+
79
+ ### Patch Changes
80
+
81
+ - 152c864: don’t try to load github themes unconditionally
82
+ - Updated dependencies [af5a5d7]
83
+ - @stainless-api/docs-ui@0.1.0-beta.88
84
+ - @stainless-api/docs-search@0.1.0-beta.41
85
+
86
+ ## 0.1.0-beta.123
87
+
88
+ ### Patch Changes
89
+
90
+ - 813b223: Fix base path appending to header links like mailto:
91
+
92
+ ## 0.1.0-beta.122
93
+
94
+ ### Minor Changes
95
+
96
+ - f22893c: Add interactive examples to ai chat
97
+
98
+ ### Patch Changes
99
+
100
+ - 3fbf5d8: Updates preview worker
101
+
102
+ ## 0.1.0-beta.121
103
+
104
+ ### Minor Changes
105
+
106
+ - 9cb2166: Join base path with HEADER_LINKS and TABS
107
+
108
+ ### Patch Changes
109
+
110
+ - 7701d8f: Clean up console warnings loading DocsSearch markdown renderer
111
+ - Updated dependencies [7701d8f]
112
+ - Updated dependencies [5460e81]
113
+ - @stainless-api/docs-ui@0.1.0-beta.87
114
+ - @stainless-api/docs-search@0.1.0-beta.40
115
+
116
+ ## 0.1.0-beta.120
117
+
118
+ ### Patch Changes
119
+
120
+ - fe6cd04: Improves sidebar item rendering in Terraform
121
+
122
+ ## 0.1.0-beta.119
123
+
124
+ ### Patch Changes
125
+
126
+ - 403c097: Export additional components
127
+ - Updated dependencies [848cff4]
128
+ - Updated dependencies [ea2b90c]
129
+ - @stainless-api/ui-primitives@0.1.0-beta.50
130
+ - @stainless-api/docs-ui@0.1.0-beta.86
131
+ - @stainless-api/docs-search@0.1.0-beta.39
132
+
133
+ ## 0.1.0-beta.118
134
+
135
+ ### Minor Changes
136
+
137
+ - 9599de4: Updates preview worker to improve response snippets
138
+
139
+ ### Patch Changes
140
+
141
+ - 7901fd4: fix astro scoping for language-block style?
142
+ - Updated dependencies [93a3767]
143
+ - @stainless-api/docs-ui@0.1.0-beta.85
144
+ - @stainless-api/docs-search@0.1.0-beta.38
145
+
146
+ ## 0.1.0-beta.117
147
+
148
+ ### Patch Changes
149
+
150
+ - af60696: ensure splash pages aren't uncentered from ghost sidebar
151
+
152
+ ## 0.1.0-beta.116
153
+
154
+ ### Patch Changes
155
+
156
+ - ad9552c: don’t let toc shrink to its intrinisc size
157
+
158
+ ## 0.1.0-beta.115
159
+
160
+ ### Minor Changes
161
+
162
+ - 2a9da30: Update to Astro 6
163
+
164
+ ## 0.1.0-beta.114
165
+
166
+ ### Patch Changes
167
+
168
+ - Updated dependencies [eab438f]
169
+ - Updated dependencies [438a593]
170
+ - @stainless-api/docs-search@0.1.0-beta.37
171
+ - @stainless-api/docs-ui@0.1.0-beta.84
172
+
173
+ ## 0.1.0-beta.113
174
+
175
+ ### Patch Changes
176
+
177
+ - aeda757: Handles cases where pagefind does not exist
178
+ - Updated dependencies [1c38511]
179
+ - Updated dependencies [aeda757]
180
+ - @stainless-api/docs-ui@0.1.0-beta.83
181
+ - @stainless-api/docs-search@0.1.0-beta.36
182
+
183
+ ## 0.1.0-beta.112
184
+
185
+ ### Patch Changes
186
+
187
+ - Updated dependencies [37cc2ac]
188
+ - @stainless-api/docs-ui@0.1.0-beta.82
189
+ - @stainless-api/docs-search@0.1.0-beta.35
190
+
191
+ ## 0.1.0-beta.111
192
+
193
+ ### Patch Changes
194
+
195
+ - 6cab196: prevent summary elements from toggling when users are selecting text
196
+ - Updated dependencies [134885b]
197
+ - Updated dependencies [5ba9135]
198
+ - Updated dependencies [df0c958]
199
+ - Updated dependencies [e641d33]
200
+ - @stainless-api/docs-ui@0.1.0-beta.81
201
+ - @stainless-api/docs-search@0.1.0-beta.34
202
+
203
+ ## 0.1.0-beta.110
204
+
205
+ ### Minor Changes
206
+
207
+ - c1723f0: Updates preview worker
208
+ - 05cd046: Adds support for overriding components
209
+
210
+ ### Patch Changes
211
+
212
+ - f38f92f: fix scroll-padding-top
213
+ - Updated dependencies [05cd046]
214
+ - @stainless-api/docs-ui@0.1.0-beta.80
215
+ - @stainless-api/docs-search@0.1.0-beta.33
216
+
217
+ ## 0.1.0-beta.109
218
+
219
+ ### Patch Changes
220
+
221
+ - b45d8e2: clean up empty state on Overview when there are no “Libraries”
222
+
223
+ ## 0.1.0-beta.108
224
+
225
+ ### Patch Changes
226
+
227
+ - 27d2130: add powered by stainless to footer
228
+
229
+ ## 0.1.0-beta.107
230
+
231
+ ### Minor Changes
232
+
233
+ - 971a12f: Adds an experimental flag to disable indexing
234
+
235
+ ## 0.1.0-beta.106
236
+
237
+ ### Patch Changes
238
+
239
+ - a8ed299: Adds the ability for AI chat to move into a sidebar “panel” position.
240
+
241
+ ## 0.1.0-beta.105
242
+
243
+ ### Patch Changes
244
+
245
+ - 46956c1: update preview worker
246
+ - 04d04c1: update preview worker
247
+
248
+ ## 0.1.0-beta.104
249
+
250
+ ### Minor Changes
251
+
252
+ - 6d9933d: Replace starlight page frame with top-level CSS grid layout
253
+ - 1a150ee: Updates preview worker
254
+
255
+ ### Patch Changes
256
+
257
+ - Updated dependencies [6d9933d]
258
+ - @stainless-api/ui-primitives@0.1.0-beta.49
259
+ - @stainless-api/docs-ui@0.1.0-beta.79
260
+ - @stainless-api/docs-search@0.1.0-beta.32
261
+
262
+ ## 0.1.0-beta.103
263
+
264
+ ### Patch Changes
265
+
266
+ - Updated dependencies [54add64]
267
+ - @stainless-api/docs-ui@0.1.0-beta.78
268
+ - @stainless-api/docs-search@0.1.0-beta.31
269
+
270
+ ## 0.1.0-beta.102
271
+
272
+ ### Minor Changes
273
+
274
+ - a1b8e83: adds starlight passthrough option for configuring pagefind
275
+
276
+ ## 0.1.0-beta.101
277
+
278
+ ### Patch Changes
279
+
280
+ - f81fade: Fix false negatives detecting prose pages to convert to markdown
281
+ - Updated dependencies [21e50d3]
282
+ - @stainless-api/docs-ui@0.1.0-beta.77
283
+ - @stainless-api/docs-search@0.1.0-beta.30
284
+
285
+ ## 0.1.0-beta.100
286
+
287
+ ### Minor Changes
288
+
289
+ - 5701494: Improves sidebar perf + new experimental option to link group titles to overview pages for the group
290
+
291
+ ### Patch Changes
292
+
293
+ - Updated dependencies [7ea23ef]
294
+ - Updated dependencies [95fe66c]
295
+ - Updated dependencies [5701494]
296
+ - @stainless-api/ui-primitives@0.1.0-beta.48
297
+ - @stainless-api/docs-ui@0.1.0-beta.76
298
+ - @stainless-api/docs-search@0.1.0-beta.29
299
+
300
+ ## 0.1.0-beta.99
301
+
302
+ ### Minor Changes
303
+
304
+ - e005e5c: Adds PHP to the docs
305
+
306
+ ### Patch Changes
307
+
308
+ - e7d3aaa: defer references to `navigator` until browser time
309
+ - Updated dependencies [2919b0a]
310
+ - Updated dependencies [e005e5c]
311
+ - @stainless-api/docs-ui@0.1.0-beta.75
312
+ - @stainless-api/docs-search@0.1.0-beta.28
313
+
314
+ ## 0.1.0-beta.98
315
+
316
+ ### Minor Changes
317
+
318
+ - ba39673: Makes sidebar keys truly unique
319
+
320
+ ## 0.1.0-beta.97
321
+
322
+ ### Patch Changes
323
+
324
+ - 415629f: Allow displaying a user-provided snippet as the “default” in single-snippet
325
+ - Updated dependencies [415629f]
326
+ - @stainless-api/docs-ui@0.1.0-beta.74
327
+ - @stainless-api/docs-search@0.1.0-beta.27
328
+
329
+ ## 0.1.0-beta.96
330
+
331
+ ### Patch Changes
332
+
333
+ - 5c36876: type updates
334
+ - Updated dependencies [5c36876]
335
+ - @stainless-api/docs-ui@0.1.0-beta.73
336
+ - @stainless-api/docs-search@0.1.0-beta.26
337
+
338
+ ## 0.1.0-beta.95
339
+
340
+ ### Minor Changes
341
+
342
+ - 6b86a8b: Support multiple snippet examples
343
+
344
+ ### Patch Changes
345
+
346
+ - Updated dependencies [6b86a8b]
347
+ - @stainless-api/docs-ui@0.1.0-beta.72
348
+ - @stainless-api/docs-search@0.1.0-beta.25
349
+
350
+ ## 0.1.0-beta.94
351
+
352
+ ### Minor Changes
353
+
354
+ - beff534: Adds support for multiple sdkjsons
355
+
356
+ ### Patch Changes
357
+
358
+ - Updated dependencies [cd578b7]
359
+ - Updated dependencies [beff534]
360
+ - @stainless-api/docs-ui@0.1.0-beta.71
361
+ - @stainless-api/docs-search@0.1.0-beta.24
362
+
363
+ ## 0.1.0-beta.93
364
+
365
+ ### Patch Changes
366
+
367
+ - Updated dependencies [93c8f94]
368
+ - @stainless-api/docs-ui@0.1.0-beta.70
369
+ - @stainless-api/docs-search@0.1.0-beta.23
370
+
371
+ ## 0.1.0-beta.92
372
+
373
+ ### Patch Changes
374
+
375
+ - 61ba36f: add support for form data bodies
376
+ - Updated dependencies [61ba36f]
377
+ - @stainless-api/docs-ui@0.1.0-beta.69
378
+ - @stainless-api/docs-search@0.1.0-beta.22
379
+
380
+ ## 0.1.0-beta.91
381
+
382
+ ### Patch Changes
383
+
384
+ - c083afe: chore: update preview worker
385
+ - Updated dependencies [a3f1ede]
386
+ - @stainless-api/docs-ui@0.1.0-beta.68
387
+ - @stainless-api/docs-search@0.1.0-beta.21
388
+
389
+ ## 0.1.0-beta.90
390
+
391
+ ### Minor Changes
392
+
393
+ - b8f1f3c: improve prose chunking
394
+
395
+ ### Patch Changes
396
+
397
+ - 3de4232: support additional extra custom fonts
398
+ - c77e607: fixes issue where sdk select wasnt showing on readme pages
399
+
400
+ ## 0.1.0-beta.89
401
+
402
+ ### Minor Changes
403
+
404
+ - 4b2bd1c: Adds Webhook events overview page
405
+
406
+ ### Patch Changes
407
+
408
+ - 7bda782: fix bug when detecting current sidebar item
409
+ - de83f02: fix api reference base path
410
+ - 31457f3: support for setting custom fonts
411
+ - Updated dependencies [31457f3]
412
+ - @stainless-api/ui-primitives@0.1.0-beta.47
413
+ - @stainless-api/docs-search@0.1.0-beta.20
414
+ - @stainless-api/docs-ui@0.1.0-beta.67
415
+
416
+ ## 0.1.0-beta.88
417
+
418
+ ### Minor Changes
419
+
420
+ - c1fb4e5: remove CMS server; refactor and simplify spec generation pipeline
421
+
422
+ ### Patch Changes
423
+
424
+ - Updated dependencies [65a1c9b]
425
+ - Updated dependencies [4f1cee7]
426
+ - Updated dependencies [4c72a83]
427
+ - Updated dependencies [068469b]
428
+ - @stainless-api/docs-ui@0.1.0-beta.66
429
+ - @stainless-api/docs-search@0.1.0-beta.19
430
+
431
+ ## 0.1.0-beta.87
432
+
433
+ ### Patch Changes
434
+
435
+ - b62eb05: improved support for webhooks and functions
436
+ - Updated dependencies [b62eb05]
437
+ - Updated dependencies [d42dd8f]
438
+ - @stainless-api/ui-primitives@0.1.0-beta.46
439
+ - @stainless-api/docs-ui@0.1.0-beta.65
440
+ - @stainless-api/docs-search@0.1.0-beta.18
441
+
442
+ ## 0.1.0-beta.86
443
+
444
+ ### Minor Changes
445
+
446
+ - 7439be7: Adds Terraform rendering to docs
447
+
448
+ ### Patch Changes
449
+
450
+ - c8fb9b3: fix layout shift on api pages
451
+ - 3411ffe: Add underlying capabilities to the sidebar: collapsible/icon
452
+ - 509a074: bump astro & starlight for pagefind fix
453
+ - Updated dependencies [3411ffe]
454
+ - Updated dependencies [7439be7]
455
+ - @stainless-api/docs-ui@0.1.0-beta.64
456
+ - @stainless-api/docs-search@0.1.0-beta.17
457
+
458
+ ## 0.1.0-beta.85
459
+
460
+ ### Patch Changes
461
+
462
+ - 4b1a91d: pagefind-ignore for breadcrumbs & ai dropdown
463
+ - Updated dependencies [274cefc]
464
+ - @stainless-api/docs-ui@0.1.0-beta.63
465
+ - @stainless-api/docs-search@0.1.0-beta.16
466
+
467
+ ## 0.1.0-beta.84
468
+
469
+ ### Minor Changes
470
+
471
+ - 6ef241e: Sidebar improvements; rename Sidebar to SDKSidebar
472
+
473
+ ### Patch Changes
474
+
475
+ - d3a85b5: feat: improve not implemented fallback ui
476
+ - 5156697: include markdown alt link for all pages
477
+ - dedd93b: fix incorrect link rel=alternate markdown URLs
478
+ - b532d45: use method summary as page title
479
+ - Updated dependencies [6ef241e]
480
+ - Updated dependencies [d3a85b5]
481
+ - Updated dependencies [d3a85b5]
482
+ - Updated dependencies [2dcb5fb]
483
+ - @stainless-api/docs-ui@0.1.0-beta.62
484
+ - @stainless-api/docs-search@0.1.0-beta.15
485
+
486
+ ## 0.1.0-beta.83
487
+
488
+ ### Patch Changes
489
+
490
+ - 96e974e: clean up n^2 calls to generateDocsRoutes by passing props
491
+ - a0301a2: Improves build speed by up to 8x for large APIs
492
+ - b6b9d30: fix: should hide skipped resources in sidebar
493
+ - Updated dependencies [3037a19]
494
+ - @stainless-api/ui-primitives@0.1.0-beta.45
495
+ - @stainless-api/docs-search@0.1.0-beta.14
496
+ - @stainless-api/docs-ui@0.1.0-beta.61
497
+
498
+ ## 0.1.0-beta.82
499
+
500
+ ### Patch Changes
501
+
502
+ - 29089a7: add experimental support for prerender flag
503
+
504
+ ## 0.1.0-beta.81
505
+
506
+ ### Patch Changes
507
+
508
+ - 5c257e2: separate steelie into separate packages
509
+
510
+ ## 0.1.0-beta.80
511
+
512
+ ### Patch Changes
513
+
514
+ - Updated dependencies [b4b51f7]
515
+ - @stainless-api/ui-primitives@0.1.0-beta.44
516
+ - @stainless-api/docs-search@0.1.0-beta.13
517
+ - @stainless-api/docs-ui@0.1.0-beta.60
518
+
519
+ ## 0.1.0-beta.79
520
+
521
+ ### Minor Changes
522
+
523
+ - 32b2c88: add simple request fields to request builder
524
+ - 6fd3625: Introduce experimentalRequestBuilder to hydrate within code snippets
525
+ - 98166fd: Adds CLI docs
526
+
527
+ ### Patch Changes
528
+
529
+ - 7a79858: more aggressively suppress dev-server waterfalls through ai-chat
530
+ - Updated dependencies [32b2c88]
531
+ - Updated dependencies [6fd3625]
532
+ - Updated dependencies [98166fd]
533
+ - @stainless-api/docs-ui@0.1.0-beta.59
534
+ - @stainless-api/docs-search@0.1.0-beta.12
535
+
536
+ ## 0.1.0-beta.78
537
+
538
+ ### Patch Changes
539
+
540
+ - Updated dependencies [1b04416]
541
+ - Updated dependencies [905cdac]
542
+ - @stainless-api/docs-ui@0.1.0-beta.58
543
+ - @stainless-api/docs-search@0.1.0-beta.11
544
+
545
+ ## 0.1.0-beta.77
546
+
547
+ ### Patch Changes
548
+
549
+ - 5c8fef8: fixes pagefind path
550
+
551
+ ## 0.1.0-beta.76
552
+
553
+ ### Patch Changes
554
+
555
+ - 5a6d886: fix searchbar styles
556
+ - d79718a: should use base url when resolving pagefind
557
+
558
+ ## 0.1.0-beta.75
559
+
560
+ ### Patch Changes
561
+
562
+ - b1ff7b3: write manifest file after build
563
+
564
+ ## 0.1.0-beta.74
565
+
566
+ ### Patch Changes
567
+
568
+ - d0d1122: support astro config base param
569
+ - Updated dependencies [6eb6d38]
570
+ - Updated dependencies [7bc8f4e]
571
+ - Updated dependencies [2f6b86d]
572
+ - @stainless-api/docs-ui@0.1.0-beta.57
573
+ - @stainless-api/ui-primitives@0.1.0-beta.43
574
+ - @stainless-api/docs-search@0.1.0-beta.10
575
+
576
+ ## 0.1.0-beta.73
577
+
578
+ ### Patch Changes
579
+
580
+ - 6adf1c6: fixes show more button background opacity
581
+
582
+ ## 0.1.0-beta.72
583
+
584
+ ### Patch Changes
585
+
586
+ - Updated dependencies [2d82e2e]
587
+ - @stainless-api/ui-primitives@0.1.0-beta.42
588
+ - @stainless-api/docs-search@0.1.0-beta.9
589
+ - @stainless-api/docs-ui@0.1.0-beta.56
590
+
591
+ ## 0.1.0-beta.71
592
+
593
+ ### Patch Changes
594
+
595
+ - Updated dependencies [0a84207]
596
+ - @stainless-api/docs-search@0.1.0-beta.8
597
+
598
+ ## 0.1.0-beta.70
599
+
600
+ ### Patch Changes
601
+
602
+ - Updated dependencies [750c348]
603
+ - @stainless-api/ui-primitives@0.1.0-beta.41
604
+ - @stainless-api/docs-search@0.1.0-beta.7
605
+ - @stainless-api/docs-ui@0.1.0-beta.55
606
+
607
+ ## 0.1.0-beta.69
608
+
609
+ ### Patch Changes
610
+
611
+ - 67aa6b5: improves UI for algolia search on desktop and mobile
612
+ - bf9bdd4: Remove old/broken mintlify-compat Steps implementation in favor of the new component
613
+ - 68f4528: Adds support for opengraph images
614
+ - Updated dependencies [67aa6b5]
615
+ - @stainless-api/docs-search@0.1.0-beta.6
616
+ - @stainless-api/docs-ui@0.1.0-beta.54
617
+
618
+ ## 0.1.0-beta.68
619
+
620
+ ### Patch Changes
621
+
622
+ - add prose docs vector indexing
623
+
624
+ ## 0.1.0-beta.67
625
+
626
+ ### Patch Changes
627
+
628
+ - a59d5f7: Pass current page context through as “intent”
629
+ - Updated dependencies [e9567b0]
630
+ - @stainless-api/ui-primitives@0.1.0-beta.40
631
+ - @stainless-api/docs-ui@0.1.0-beta.53
632
+ - @stainless-api/docs-search@0.1.0-beta.5
633
+
634
+ ## 0.1.0-beta.66
635
+
636
+ ### Patch Changes
637
+
638
+ - af54129: fix: index missing prose docs for search
639
+
640
+ ## 0.1.0-beta.65
641
+
642
+ ### Patch Changes
643
+
644
+ - 22a19ed: exporting Head component to support custom head implements
645
+
646
+ ## 0.1.0-beta.64
647
+
648
+ ### Patch Changes
649
+
650
+ - add markdown indexing functionality
651
+
652
+ ## 0.1.0-beta.63
653
+
654
+ ### Patch Changes
655
+
656
+ - d2e3686: add a success state to the copy markdown action
657
+ - Updated dependencies [5d6e5fa]
658
+ - @stainless-api/ui-primitives@0.1.0-beta.39
659
+ - @stainless-api/docs-ui@0.1.0-beta.52
660
+ - @stainless-api/docs-search@0.1.0-beta.4
661
+
662
+ ## 0.1.0-beta.62
663
+
664
+ ### Patch Changes
665
+
666
+ - 3c4a030: increase minimum starlight depdendency version
667
+ - cd86726: Fix a crash when stl-starlight plugin isn’t being loaded
668
+ - aa9d333: fixes for markdown rendering when astro integrations override the starlight html entrypoint
669
+ - 07a2c87: Should override ThemeProvider for setting theme within the html head
670
+ - @stainless-api/docs-search@0.1.0-beta.3
671
+ - @stainless-api/docs-ui@0.1.0-beta.51
672
+ - @stainless-api/ui-primitives@0.1.0-beta.38
673
+
674
+ ## 0.1.0-beta.61
675
+
676
+ ### Patch Changes
677
+
678
+ - 88a9894: patch vite optimizeDeps for docs-ai-chat
679
+ - Updated dependencies [2a79bae]
680
+ - @stainless-api/ui-primitives@0.1.0-beta.38
681
+ - @stainless-api/docs-ui@0.1.0-beta.51
682
+ - @stainless-api/docs-search@0.1.0-beta.3
683
+
684
+ ## 0.1.0-beta.60
685
+
686
+ ### Patch Changes
687
+
688
+ - 2d00f0d: compatibility with the first alpha version of docs-ai-chat
689
+ - Updated dependencies [2d00f0d]
690
+ - @stainless-api/docs-ui@0.1.0-beta.50
691
+ - @stainless-api/ui-primitives@0.1.0-beta.37
692
+ - @stainless-api/docs-search@0.1.0-beta.2
693
+
694
+ ## 0.1.0-beta.59
695
+
696
+ ### Patch Changes
697
+
698
+ - 23bbd6d: fix search input layout on default header layout
699
+
700
+ ## 0.1.0-beta.58
701
+
702
+ ### Minor Changes
703
+
704
+ - af090c3: refactor: extract search to @stainless-api/docs-search package
705
+
706
+ ### Patch Changes
707
+
708
+ - e79d6c3: fix an issue where the search bar would overflow over nav elements
709
+ - 2d372fb: feat: support for stainless docs plugins
710
+ - Updated dependencies [af090c3]
711
+ - Updated dependencies [4cf4aa5]
712
+ - Updated dependencies [8886c7c]
713
+ - @stainless-api/docs-search@0.1.0-beta.1
714
+ - @stainless-api/docs-ui@0.1.0-beta.49
715
+ - @stainless-api/ui-primitives@0.1.0-beta.36
716
+
717
+ ## 0.1.0-beta.57
718
+
719
+ ### Patch Changes
720
+
721
+ - Updated dependencies [ada37ee]
722
+ - @stainless-api/docs-ui@0.1.0-beta.48
723
+
724
+ ## 0.1.0-beta.56
725
+
726
+ ### Minor Changes
727
+
728
+ - d75a72f: Adds C# language support
729
+
730
+ ### Patch Changes
731
+
732
+ - Updated dependencies [d75a72f]
733
+ - Updated dependencies [2464347]
734
+ - @stainless-api/docs-ui@0.1.0-beta.47
735
+
736
+ ## 0.1.0-beta.55
737
+
738
+ ### Patch Changes
739
+
740
+ - ae56b3c: ensure changeset release commit doesn’t include [skip ci]
741
+ - Updated dependencies [ae56b3c]
742
+ - @stainless-api/docs-ui@0.1.0-beta.46
743
+ - @stainless-api/ui-primitives@0.1.0-beta.35
744
+
745
+ ## 0.1.0-beta.54
746
+
747
+ ### Minor Changes
748
+
749
+ - a70f60c: Adds the title property
750
+
751
+ ### Patch Changes
752
+
753
+ - 2ebf696: enable trusted publishing
754
+ - Updated dependencies [2ebf696]
755
+ - Updated dependencies [a70f60c]
756
+ - @stainless-api/docs-ui@0.1.0-beta.45
757
+ - @stainless-api/ui-primitives@0.1.0-beta.34
758
+
759
+ ## 0.1.0-beta.53
760
+
761
+ ### Patch Changes
762
+
763
+ - 2e1639a: Updated preview worker and added experimental playgrounds feature.
764
+ - Updated dependencies [239e28c]
765
+ - Updated dependencies [ddc4593]
766
+ - Updated dependencies [2e1639a]
767
+ - Updated dependencies [2e1639a]
768
+ - @stainless-api/docs-ui@0.1.0-beta.44
769
+ - @stainless-api/ui-primitives@0.1.0-beta.33
770
+
771
+ ## 0.1.0-beta.52
772
+
773
+ ### Patch Changes
774
+
775
+ - 72c7604: include default themes in stainlessStarlight plugin
776
+ - Updated dependencies [8a32bbb]
777
+ - @stainless-api/ui-primitives@0.1.0-beta.32
778
+ - @stainless-api/docs-ui@0.1.0-beta.43
779
+
780
+ ## 0.1.0-beta.51
781
+
782
+ ### Patch Changes
783
+
784
+ - 4fc191c: standardize accent border colors
785
+ - Updated dependencies [3d2179f]
786
+ - @stainless-api/ui-primitives@0.1.0-beta.31
787
+ - @stainless-api/docs-ui@0.1.0-beta.42
788
+
789
+ ## 0.1.0-beta.50
790
+
791
+ ### Patch Changes
792
+
793
+ - 6de051d: update vendored preview worker
794
+
795
+ ## 0.1.0-beta.49
796
+
797
+ ### Patch Changes
798
+
799
+ - Updated dependencies [b9e4b82]
800
+ - Updated dependencies [6d12e06]
801
+ - Updated dependencies [5051795]
802
+ - @stainless-api/ui-primitives@0.1.0-beta.30
803
+ - @stainless-api/docs-ui@0.1.0-beta.41
804
+
805
+ ## 0.1.0-beta.48
806
+
807
+ ### Patch Changes
808
+
809
+ - Updated dependencies [81b5b21]
810
+ - Updated dependencies [ba269f9]
811
+ - Updated dependencies [e2a7098]
812
+ - Updated dependencies [589b13d]
813
+ - @stainless-api/ui-primitives@0.1.0-beta.29
814
+ - @stainless-api/docs-ui@0.1.0-beta.40
815
+
816
+ ## 0.1.0-beta.47
817
+
818
+ ### Patch Changes
819
+
820
+ - 466285c: Fixes for expressive code styles
821
+ - Ensure expressive code styles are applied to docs sites that do not include API reference
822
+ - Use correct red & green palettes for ins/del diff annotations
823
+
824
+ - Updated dependencies [d2d5d51]
825
+ - @stainless-api/ui-primitives@0.1.0-beta.28
826
+ - @stainless-api/docs-ui@0.1.0-beta.39
827
+
828
+ ## 0.1.0-beta.46
829
+
830
+ ### Minor Changes
831
+
832
+ - b61b7c1: New theming system
833
+
834
+ A whole new set of design system variables used throughout docs, docs-ui, and ui-primitives
835
+
836
+ Improves customizability & uniformness compared to the old set of variables.
837
+
838
+ ### Patch Changes
839
+
840
+ - Updated dependencies [b61b7c1]
841
+ - Updated dependencies [262f201]
842
+ - @stainless-api/docs-ui@0.1.0-beta.38
843
+ - @stainless-api/ui-primitives@0.1.0-beta.27
844
+
845
+ ## 0.1.0-beta.45
846
+
847
+ ### Patch Changes
848
+
849
+ - 00b33d9: syntax highlighting for markdown renderer
850
+ - fa43cff: json brackets should use muted foreground color
851
+ - c06e5c3: update marked dependency
852
+ - 32d1735: experimental support for collapsible method descriptions
853
+ - Updated dependencies [00b33d9]
854
+ - Updated dependencies [32d1735]
855
+ - Updated dependencies [23254d1]
856
+ - @stainless-api/ui-primitives@0.1.0-beta.26
857
+ - @stainless-api/docs-ui@0.1.0-beta.37
858
+
859
+ ## 0.1.0-beta.44
860
+
861
+ ### Patch Changes
862
+
863
+ - Updated dependencies [38b7030]
864
+ - @stainless-api/docs-ui@0.1.0-beta.36
865
+
866
+ ## 0.1.0-beta.43
867
+
868
+ ### Patch Changes
869
+
870
+ - a44a012: Remove debug code
871
+
872
+ ## 0.1.0-beta.42
873
+
874
+ ### Patch Changes
875
+
876
+ - Updated dependencies [3817ff5]
877
+ - Updated dependencies [391a7ce]
878
+ - Updated dependencies [945d4f3]
879
+ - @stainless-api/docs-ui@0.1.0-beta.35
880
+
881
+ ## 0.1.0-beta.41
882
+
883
+ ### Patch Changes
884
+
885
+ - 6557889: temporarily remove experimental AI search feature
886
+ - Updated dependencies [6557889]
887
+ - @stainless-api/docs-ui@0.1.0-beta.34
888
+
889
+ ## 0.1.0-beta.40
890
+
891
+ ### Patch Changes
892
+
893
+ - Updated dependencies [8670d73]
894
+ - @stainless-api/docs-ui@0.1.0-beta.33
895
+
896
+ ## 0.1.0-beta.39
897
+
898
+ ### Patch Changes
899
+
900
+ - 242deef: fix mobile menu on splash pages
901
+ - Updated dependencies [242deef]
902
+ - @stainless-api/ui-primitives@0.1.0-beta.25
903
+ - @stainless-api/docs-ui@0.1.0-beta.32
904
+
905
+ ## 0.1.0-beta.38
906
+
907
+ ### Patch Changes
908
+
909
+ - Updated dependencies [c28b0a6]
910
+ - Updated dependencies [f23c6bc]
911
+ - Updated dependencies [2cd1b33]
912
+ - @stainless-api/docs-ui@0.1.0-beta.31
913
+ - @stainless-api/ui-primitives@0.1.0-beta.24
914
+
915
+ ## 0.1.0-beta.37
916
+
917
+ ### Patch Changes
918
+
919
+ - 5f14e53: Render page descriptions as part of page header by default
920
+ - Updated dependencies [49e1b93]
921
+ - @stainless-api/docs-ui@0.1.0-beta.30
922
+ - @stainless-api/ui-primitives@0.1.0-beta.23
923
+
924
+ ## 0.1.0-beta.36
925
+
926
+ ### Patch Changes
927
+
928
+ - Updated dependencies [7897575]
929
+ - @stainless-api/ui-primitives@0.1.0-beta.22
930
+ - @stainless-api/docs-ui@0.1.0-beta.29
931
+
932
+ ## 0.1.0-beta.35
933
+
934
+ ### Patch Changes
935
+
936
+ - Updated dependencies [344761e]
937
+ - @stainless-api/ui-primitives@0.1.0-beta.21
938
+ - @stainless-api/docs-ui@0.1.0-beta.28
939
+
940
+ ## 0.1.0-beta.34
941
+
942
+ ### Patch Changes
943
+
944
+ - f5173e9: fix: theme flickering
945
+
946
+ ## 0.1.0-beta.33
947
+
948
+ ### Patch Changes
949
+
950
+ - 7ef572c: feat: updated dropdowns
951
+ - Updated dependencies [7ef572c]
952
+ - @stainless-api/docs-ui@0.1.0-beta.27
953
+ - @stainless-api/ui-primitives@0.1.0-beta.20
954
+
955
+ ## 0.1.0-beta.32
956
+
957
+ ### Patch Changes
958
+
959
+ - 58040d8: feat: ui primitives updates, cursor support
960
+ - Updated dependencies [58040d8]
961
+ - @stainless-api/docs-ui@0.1.0-beta.26
962
+ - @stainless-api/ui-primitives@0.1.0-beta.19
963
+
964
+ ## 0.1.0-beta.31
965
+
966
+ ### Patch Changes
967
+
968
+ - Updated dependencies [afd1f8e]
969
+ - Updated dependencies [279fa0e]
970
+ - @stainless-api/docs-ui@0.1.0-beta.25
971
+
972
+ ## 0.1.0-beta.30
973
+
974
+ ### Patch Changes
975
+
976
+ - Updated dependencies [ab570bc]
977
+ - @stainless-api/docs-ui@0.1.0-beta.24
978
+
979
+ ## 0.1.0-beta.29
980
+
981
+ ### Patch Changes
982
+
983
+ - Updated dependencies [279fa0e]
984
+ - @stainless-api/docs-ui@0.1.0-beta.23
985
+
986
+ ## 0.1.0-beta.28
987
+
988
+ ### Minor Changes
989
+
990
+ - c635741: Updated worker and fixed docs-ui jsx issue
991
+
992
+ ### Patch Changes
993
+
994
+ - Updated dependencies [c635741]
995
+ - @stainless-api/docs-ui@0.1.0-beta.22
996
+ - @stainless-api/ui-primitives@0.1.0-beta.18
997
+
998
+ ## 0.1.0-beta.27
999
+
1000
+ ### Patch Changes
1001
+
1002
+ - de189ee: remove max width on site title
1003
+
1004
+ ## 0.1.0-beta.26
1005
+
1006
+ ### Patch Changes
1007
+
1008
+ - 1517484: fixing font loading, updating nav bar height
1009
+ - Updated dependencies [1517484]
1010
+ - @stainless-api/docs-ui@0.1.0-beta.21
1011
+ - @stainless-api/ui-primitives@0.1.0-beta.17
1012
+
1013
+ ## 0.1.0-beta.25
1014
+
1015
+ ### Patch Changes
1016
+
1017
+ - Updated dependencies [b9ce1b6]
1018
+ - @stainless-api/docs-ui@0.1.0-beta.20
1019
+
1020
+ ## 0.1.0-beta.24
1021
+
1022
+ ### Patch Changes
1023
+
1024
+ - Updated dependencies [402222a]
1025
+ - @stainless-api/docs-ui@0.1.0-beta.19
1026
+
1027
+ ## 0.1.0-beta.23
1028
+
1029
+ ### Patch Changes
1030
+
1031
+ - Updated dependencies [2150eee]
1032
+ - @stainless-api/docs-ui@0.1.0-beta.18
1033
+
1034
+ ## 0.1.0-beta.22
1035
+
1036
+ ### Patch Changes
1037
+
1038
+ - Updated dependencies [f7ba067]
1039
+ - @stainless-api/docs-ui@0.1.0-beta.17
1040
+
1041
+ ## 0.1.0-beta.21
1042
+
1043
+ ### Patch Changes
1044
+
1045
+ - 41e87cb: fix virtual module imports
1046
+
1047
+ ## 0.1.0-beta.20
1048
+
1049
+ ### Patch Changes
1050
+
1051
+ - 9cdb24d: Update pagination components, fix search modal
1052
+ - Updated dependencies [9cdb24d]
1053
+ - @stainless-api/docs-ui@0.1.0-beta.16
1054
+ - @stainless-api/ui-primitives@0.1.0-beta.16
1055
+
1056
+ ## 0.1.0-beta.19
1057
+
1058
+ ### Patch Changes
1059
+
1060
+ - 15c003d: fix react peer dependencies
1061
+ - Updated dependencies [15c003d]
1062
+ - @stainless-api/docs-ui@0.1.0-beta.15
1063
+ - @stainless-api/ui-primitives@0.1.0-beta.15
1064
+
1065
+ ## 0.1.0-beta.18
1066
+
1067
+ ### Patch Changes
1068
+
1069
+ - Updated dependencies [0572f60]
1070
+ - @stainless-api/docs-ui@0.1.0-beta.14
1071
+
1072
+ ## 0.1.0-beta.17
1073
+
1074
+ ### Patch Changes
1075
+
1076
+ - a925bb4: fix markdown icon color in dark mode
1077
+
1078
+ ## 0.1.0-beta.16
1079
+
1080
+ ### Patch Changes
1081
+
1082
+ - 0618d05: Markdown rendering of prose pages, ai context menu, auth via cli, minor fixes
1083
+ - Updated dependencies [0618d05]
1084
+ - @stainless-api/docs-ui@0.1.0-beta.13
1085
+ - @stainless-api/ui-primitives@0.1.0-beta.14
1086
+
1087
+ ## 0.1.0-beta.15
1088
+
1089
+ ### Patch Changes
1090
+
1091
+ - e35360f: include ui-primitive packages
1092
+ - Updated dependencies [e35360f]
1093
+ - @stainless-api/docs-ui@0.1.0-beta.12
1094
+ - @stainless-api/ui-primitives@0.1.0-beta.13
1095
+
1096
+ ## 0.1.0-beta.14
1097
+
1098
+ ### Patch Changes
1099
+
1100
+ - a529fd4: fix: site title height
1101
+ - Updated dependencies [a529fd4]
1102
+ - @stainless-api/docs-ui@0.1.0-beta.11
1103
+ - @stainless-api/ui-primitives@0.1.0-beta.12
1104
+
3
1105
  ## 0.1.0-beta.13
4
1106
 
5
1107
  ### Patch Changes