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

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