@stainless-api/docs 0.1.0-beta.1 → 0.1.0-beta.100

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 (158) hide show
  1. package/CHANGELOG.md +917 -0
  2. package/eslint-suppressions.json +27 -0
  3. package/locals.d.ts +17 -0
  4. package/package.json +50 -40
  5. package/playground-virtual-modules.d.ts +96 -0
  6. package/plugin/assets/languages/cli.svg +14 -0
  7. package/plugin/assets/languages/csharp.svg +1 -0
  8. package/plugin/assets/languages/php.svg +4 -0
  9. package/plugin/buildAlgoliaIndex.ts +40 -39
  10. package/plugin/components/MethodDescription.tsx +54 -0
  11. package/plugin/components/RequestBuilder/ParamEditor.tsx +55 -0
  12. package/plugin/components/RequestBuilder/SnippetStainlessIsland.tsx +107 -0
  13. package/plugin/components/RequestBuilder/index.tsx +37 -0
  14. package/plugin/components/RequestBuilder/props.ts +9 -0
  15. package/plugin/components/RequestBuilder/spec-helpers.ts +47 -0
  16. package/plugin/components/RequestBuilder/styles.css +67 -0
  17. package/plugin/components/SDKSelect.astro +18 -105
  18. package/plugin/components/SnippetCode.tsx +111 -66
  19. package/plugin/components/StainlessIslands.tsx +126 -0
  20. package/plugin/components/search/SearchAlgolia.astro +45 -35
  21. package/plugin/components/search/SearchIsland.tsx +47 -29
  22. package/plugin/generateAPIReferenceLink.ts +2 -2
  23. package/plugin/globalJs/ai-dropdown-options.ts +243 -0
  24. package/plugin/globalJs/code-snippets.ts +40 -11
  25. package/plugin/globalJs/copy.ts +95 -17
  26. package/plugin/globalJs/create-playground.shim.ts +3 -0
  27. package/plugin/globalJs/method-descriptions.ts +33 -0
  28. package/plugin/globalJs/navigation.ts +12 -33
  29. package/plugin/globalJs/playground-data.shim.ts +1 -0
  30. package/plugin/globalJs/playground-data.ts +14 -0
  31. package/plugin/helpers/generateDocsRoutes.ts +59 -0
  32. package/plugin/helpers/getPageLoadEvent.ts +1 -1
  33. package/plugin/helpers/multiSpec.ts +8 -0
  34. package/plugin/index.ts +299 -117
  35. package/plugin/languages.ts +8 -2
  36. package/plugin/loadPluginConfig.ts +254 -102
  37. package/plugin/middlewareBuilder/stainlessMiddleware.d.ts +1 -1
  38. package/plugin/react/Routing.tsx +210 -140
  39. package/plugin/referencePlaceholderUtils.ts +18 -15
  40. package/plugin/replaceSidebarPlaceholderMiddleware.ts +40 -32
  41. package/plugin/routes/Docs.astro +70 -119
  42. package/plugin/routes/DocsStatic.astro +6 -5
  43. package/plugin/routes/Overview.astro +37 -27
  44. package/plugin/routes/markdown.ts +13 -12
  45. package/plugin/{cms → sidebar-utils}/sidebar-builder.ts +49 -60
  46. package/plugin/specs/FileCache.ts +99 -0
  47. package/plugin/specs/fetchSpecSSR.ts +27 -0
  48. package/plugin/specs/generateSpec.ts +112 -0
  49. package/plugin/specs/index.ts +132 -0
  50. package/plugin/specs/inputResolver.ts +146 -0
  51. package/plugin/{cms → specs}/worker.ts +82 -5
  52. package/plugin/vendor/preview.worker.docs.js +22406 -17955
  53. package/plugin/vendor/templates/cli.md +1 -0
  54. package/plugin/vendor/templates/go.md +4 -2
  55. package/plugin/vendor/templates/java.md +3 -1
  56. package/plugin/vendor/templates/kotlin.md +3 -1
  57. package/plugin/vendor/templates/node.md +4 -2
  58. package/plugin/vendor/templates/python.md +4 -2
  59. package/plugin/vendor/templates/ruby.md +4 -2
  60. package/plugin/vendor/templates/terraform.md +1 -1
  61. package/plugin/vendor/templates/typescript.md +3 -1
  62. package/resolveSrcFile.ts +10 -0
  63. package/scripts/vendor_deps.ts +5 -5
  64. package/shared/getProsePages.ts +42 -0
  65. package/shared/getSharedLogger.ts +15 -0
  66. package/shared/terminalUtils.ts +3 -0
  67. package/shared/virtualModule.ts +54 -1
  68. package/src/content.config.ts +9 -0
  69. package/stl-docs/components/AIDropdown.tsx +63 -0
  70. package/stl-docs/components/AiChatIsland.tsx +14 -0
  71. package/stl-docs/components/{content-panel/ContentBreadcrumbs.tsx → ContentBreadcrumbs.tsx} +2 -2
  72. package/stl-docs/components/Head.astro +20 -0
  73. package/stl-docs/components/Header.astro +7 -9
  74. package/stl-docs/components/PageFrame.astro +18 -0
  75. package/stl-docs/components/PageTitle.astro +82 -0
  76. package/stl-docs/components/TableOfContents.astro +34 -0
  77. package/stl-docs/components/ThemeProvider.astro +36 -0
  78. package/stl-docs/components/ThemeSelect.astro +84 -144
  79. package/stl-docs/components/content-panel/ContentPanel.astro +16 -46
  80. package/stl-docs/components/headers/DefaultHeader.astro +1 -1
  81. package/stl-docs/components/headers/HeaderLinks.astro +1 -1
  82. package/stl-docs/components/headers/SplashMobileMenuToggle.astro +17 -1
  83. package/stl-docs/components/headers/StackedHeader.astro +29 -24
  84. package/stl-docs/components/icons/chat-gpt.tsx +17 -0
  85. package/stl-docs/components/icons/claude.tsx +10 -0
  86. package/stl-docs/components/icons/cursor.tsx +10 -0
  87. package/stl-docs/components/icons/gemini.tsx +19 -0
  88. package/stl-docs/components/icons/markdown.tsx +10 -0
  89. package/stl-docs/components/index.ts +1 -0
  90. package/stl-docs/components/mintlify-compat/Accordion.astro +7 -38
  91. package/stl-docs/components/mintlify-compat/AccordionGroup.astro +9 -23
  92. package/stl-docs/components/mintlify-compat/Columns.astro +40 -42
  93. package/stl-docs/components/mintlify-compat/Frame.astro +16 -18
  94. package/stl-docs/components/mintlify-compat/callouts/Callout.astro +10 -3
  95. package/stl-docs/components/mintlify-compat/callouts/Check.astro +7 -3
  96. package/stl-docs/components/mintlify-compat/callouts/Danger.astro +7 -3
  97. package/stl-docs/components/mintlify-compat/callouts/Info.astro +7 -3
  98. package/stl-docs/components/mintlify-compat/callouts/Note.astro +7 -3
  99. package/stl-docs/components/mintlify-compat/callouts/Tip.astro +7 -3
  100. package/stl-docs/components/mintlify-compat/callouts/Warning.astro +7 -3
  101. package/stl-docs/components/mintlify-compat/card.css +33 -35
  102. package/stl-docs/components/mintlify-compat/index.ts +2 -4
  103. package/stl-docs/components/nav-tabs/NavDropdown.astro +31 -75
  104. package/stl-docs/components/nav-tabs/NavTabs.astro +78 -80
  105. package/stl-docs/components/nav-tabs/SecondaryNavTabs.astro +15 -8
  106. package/stl-docs/components/nav-tabs/buildNavLinks.ts +4 -3
  107. package/stl-docs/components/pagination/HomeLink.astro +10 -0
  108. package/stl-docs/components/pagination/Pagination.astro +175 -0
  109. package/stl-docs/components/pagination/PaginationLinkEmphasized.astro +22 -0
  110. package/stl-docs/components/pagination/PaginationLinkQuiet.astro +13 -0
  111. package/stl-docs/components/pagination/util.ts +71 -0
  112. package/stl-docs/components/scripts.ts +1 -0
  113. package/stl-docs/components/sidebars/BaseSidebar.astro +87 -0
  114. package/stl-docs/components/sidebars/SDKSelectSidebar.astro +8 -0
  115. package/stl-docs/components/sidebars/SidebarWithComponents.tsx +10 -0
  116. package/stl-docs/components/sidebars/convertAstroSidebarToStl.tsx +62 -0
  117. package/stl-docs/disableCalloutSyntax.ts +36 -0
  118. package/stl-docs/fonts.ts +186 -0
  119. package/stl-docs/index.ts +159 -43
  120. package/stl-docs/loadStlDocsConfig.ts +60 -9
  121. package/stl-docs/proseMarkdown/proseMarkdownIntegration.ts +61 -0
  122. package/stl-docs/proseMarkdown/proseMarkdownMiddleware.ts +41 -0
  123. package/stl-docs/proseMarkdown/toMarkdown.ts +158 -0
  124. package/stl-docs/proseSearchIndexing.ts +606 -0
  125. package/stl-docs/tabsMiddleware.ts +14 -5
  126. package/styles/code.css +133 -136
  127. package/styles/links.css +11 -48
  128. package/styles/method-descriptions.css +36 -0
  129. package/styles/overrides.css +49 -57
  130. package/styles/page.css +100 -59
  131. package/styles/sdk_select.css +9 -7
  132. package/styles/search.css +57 -69
  133. package/styles/sidebar.css +26 -156
  134. package/styles/{variables.css → sl-variables.css} +3 -2
  135. package/styles/stldocs-variables.css +6 -0
  136. package/styles/toc.css +41 -34
  137. package/theme.css +13 -3
  138. package/tsconfig.json +2 -5
  139. package/virtual-module.d.ts +65 -7
  140. package/components/variables.css +0 -139
  141. package/plugin/cms/client.ts +0 -62
  142. package/plugin/cms/server.ts +0 -268
  143. package/plugin/globalJs/ai-dropdown.ts +0 -57
  144. package/stl-docs/components/APIReferenceAIDropdown.tsx +0 -86
  145. package/stl-docs/components/Sidebar.astro +0 -11
  146. package/stl-docs/components/content-panel/ProseAIDropdown.tsx +0 -64
  147. package/stl-docs/components/mintlify-compat/Step.astro +0 -58
  148. package/stl-docs/components/mintlify-compat/Steps.astro +0 -17
  149. package/styles/fonts.css +0 -68
  150. /package/{plugin/assets → assets}/fonts/geist/OFL.txt +0 -0
  151. /package/{plugin/assets → assets}/fonts/geist/geist-italic-latin-ext.woff2 +0 -0
  152. /package/{plugin/assets → assets}/fonts/geist/geist-italic-latin.woff2 +0 -0
  153. /package/{plugin/assets → assets}/fonts/geist/geist-latin-ext.woff2 +0 -0
  154. /package/{plugin/assets → assets}/fonts/geist/geist-latin.woff2 +0 -0
  155. /package/{plugin/assets → assets}/fonts/geist/geist-mono-italic-latin-ext.woff2 +0 -0
  156. /package/{plugin/assets → assets}/fonts/geist/geist-mono-italic-latin.woff2 +0 -0
  157. /package/{plugin/assets → assets}/fonts/geist/geist-mono-latin-ext.woff2 +0 -0
  158. /package/{plugin/assets → assets}/fonts/geist/geist-mono-latin.woff2 +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,922 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.100
4
+
5
+ ### Minor Changes
6
+
7
+ - 5701494: Improves sidebar perf + new experimental option to link group titles to overview pages for the group
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [7ea23ef]
12
+ - Updated dependencies [95fe66c]
13
+ - Updated dependencies [5701494]
14
+ - @stainless-api/ui-primitives@0.1.0-beta.48
15
+ - @stainless-api/docs-ui@0.1.0-beta.76
16
+ - @stainless-api/docs-search@0.1.0-beta.29
17
+
18
+ ## 0.1.0-beta.99
19
+
20
+ ### Minor Changes
21
+
22
+ - e005e5c: Adds PHP to the docs
23
+
24
+ ### Patch Changes
25
+
26
+ - e7d3aaa: defer references to `navigator` until browser time
27
+ - Updated dependencies [2919b0a]
28
+ - Updated dependencies [e005e5c]
29
+ - @stainless-api/docs-ui@0.1.0-beta.75
30
+ - @stainless-api/docs-search@0.1.0-beta.28
31
+
32
+ ## 0.1.0-beta.98
33
+
34
+ ### Minor Changes
35
+
36
+ - ba39673: Makes sidebar keys truly unique
37
+
38
+ ## 0.1.0-beta.97
39
+
40
+ ### Patch Changes
41
+
42
+ - 415629f: Allow displaying a user-provided snippet as the “default” in single-snippet
43
+ - Updated dependencies [415629f]
44
+ - @stainless-api/docs-ui@0.1.0-beta.74
45
+ - @stainless-api/docs-search@0.1.0-beta.27
46
+
47
+ ## 0.1.0-beta.96
48
+
49
+ ### Patch Changes
50
+
51
+ - 5c36876: type updates
52
+ - Updated dependencies [5c36876]
53
+ - @stainless-api/docs-ui@0.1.0-beta.73
54
+ - @stainless-api/docs-search@0.1.0-beta.26
55
+
56
+ ## 0.1.0-beta.95
57
+
58
+ ### Minor Changes
59
+
60
+ - 6b86a8b: Support multiple snippet examples
61
+
62
+ ### Patch Changes
63
+
64
+ - Updated dependencies [6b86a8b]
65
+ - @stainless-api/docs-ui@0.1.0-beta.72
66
+ - @stainless-api/docs-search@0.1.0-beta.25
67
+
68
+ ## 0.1.0-beta.94
69
+
70
+ ### Minor Changes
71
+
72
+ - beff534: Adds support for multiple sdkjsons
73
+
74
+ ### Patch Changes
75
+
76
+ - Updated dependencies [cd578b7]
77
+ - Updated dependencies [beff534]
78
+ - @stainless-api/docs-ui@0.1.0-beta.71
79
+ - @stainless-api/docs-search@0.1.0-beta.24
80
+
81
+ ## 0.1.0-beta.93
82
+
83
+ ### Patch Changes
84
+
85
+ - Updated dependencies [93c8f94]
86
+ - @stainless-api/docs-ui@0.1.0-beta.70
87
+ - @stainless-api/docs-search@0.1.0-beta.23
88
+
89
+ ## 0.1.0-beta.92
90
+
91
+ ### Patch Changes
92
+
93
+ - 61ba36f: add support for form data bodies
94
+ - Updated dependencies [61ba36f]
95
+ - @stainless-api/docs-ui@0.1.0-beta.69
96
+ - @stainless-api/docs-search@0.1.0-beta.22
97
+
98
+ ## 0.1.0-beta.91
99
+
100
+ ### Patch Changes
101
+
102
+ - c083afe: chore: update preview worker
103
+ - Updated dependencies [a3f1ede]
104
+ - @stainless-api/docs-ui@0.1.0-beta.68
105
+ - @stainless-api/docs-search@0.1.0-beta.21
106
+
107
+ ## 0.1.0-beta.90
108
+
109
+ ### Minor Changes
110
+
111
+ - b8f1f3c: improve prose chunking
112
+
113
+ ### Patch Changes
114
+
115
+ - 3de4232: support additional extra custom fonts
116
+ - c77e607: fixes issue where sdk select wasnt showing on readme pages
117
+
118
+ ## 0.1.0-beta.89
119
+
120
+ ### Minor Changes
121
+
122
+ - 4b2bd1c: Adds Webhook events overview page
123
+
124
+ ### Patch Changes
125
+
126
+ - 7bda782: fix bug when detecting current sidebar item
127
+ - de83f02: fix api reference base path
128
+ - 31457f3: support for setting custom fonts
129
+ - Updated dependencies [31457f3]
130
+ - @stainless-api/ui-primitives@0.1.0-beta.47
131
+ - @stainless-api/docs-search@0.1.0-beta.20
132
+ - @stainless-api/docs-ui@0.1.0-beta.67
133
+
134
+ ## 0.1.0-beta.88
135
+
136
+ ### Minor Changes
137
+
138
+ - c1fb4e5: remove CMS server; refactor and simplify spec generation pipeline
139
+
140
+ ### Patch Changes
141
+
142
+ - Updated dependencies [65a1c9b]
143
+ - Updated dependencies [4f1cee7]
144
+ - Updated dependencies [4c72a83]
145
+ - Updated dependencies [068469b]
146
+ - @stainless-api/docs-ui@0.1.0-beta.66
147
+ - @stainless-api/docs-search@0.1.0-beta.19
148
+
149
+ ## 0.1.0-beta.87
150
+
151
+ ### Patch Changes
152
+
153
+ - b62eb05: improved support for webhooks and functions
154
+ - Updated dependencies [b62eb05]
155
+ - Updated dependencies [d42dd8f]
156
+ - @stainless-api/ui-primitives@0.1.0-beta.46
157
+ - @stainless-api/docs-ui@0.1.0-beta.65
158
+ - @stainless-api/docs-search@0.1.0-beta.18
159
+
160
+ ## 0.1.0-beta.86
161
+
162
+ ### Minor Changes
163
+
164
+ - 7439be7: Adds Terraform rendering to docs
165
+
166
+ ### Patch Changes
167
+
168
+ - c8fb9b3: fix layout shift on api pages
169
+ - 3411ffe: Add underlying capabilities to the sidebar: collapsible/icon
170
+ - 509a074: bump astro & starlight for pagefind fix
171
+ - Updated dependencies [3411ffe]
172
+ - Updated dependencies [7439be7]
173
+ - @stainless-api/docs-ui@0.1.0-beta.64
174
+ - @stainless-api/docs-search@0.1.0-beta.17
175
+
176
+ ## 0.1.0-beta.85
177
+
178
+ ### Patch Changes
179
+
180
+ - 4b1a91d: pagefind-ignore for breadcrumbs & ai dropdown
181
+ - Updated dependencies [274cefc]
182
+ - @stainless-api/docs-ui@0.1.0-beta.63
183
+ - @stainless-api/docs-search@0.1.0-beta.16
184
+
185
+ ## 0.1.0-beta.84
186
+
187
+ ### Minor Changes
188
+
189
+ - 6ef241e: Sidebar improvements; rename Sidebar to SDKSidebar
190
+
191
+ ### Patch Changes
192
+
193
+ - d3a85b5: feat: improve not implemented fallback ui
194
+ - 5156697: include markdown alt link for all pages
195
+ - dedd93b: fix incorrect link rel=alternate markdown URLs
196
+ - b532d45: use method summary as page title
197
+ - Updated dependencies [6ef241e]
198
+ - Updated dependencies [d3a85b5]
199
+ - Updated dependencies [d3a85b5]
200
+ - Updated dependencies [2dcb5fb]
201
+ - @stainless-api/docs-ui@0.1.0-beta.62
202
+ - @stainless-api/docs-search@0.1.0-beta.15
203
+
204
+ ## 0.1.0-beta.83
205
+
206
+ ### Patch Changes
207
+
208
+ - 96e974e: clean up n^2 calls to generateDocsRoutes by passing props
209
+ - a0301a2: Improves build speed by up to 8x for large APIs
210
+ - b6b9d30: fix: should hide skipped resources in sidebar
211
+ - Updated dependencies [3037a19]
212
+ - @stainless-api/ui-primitives@0.1.0-beta.45
213
+ - @stainless-api/docs-search@0.1.0-beta.14
214
+ - @stainless-api/docs-ui@0.1.0-beta.61
215
+
216
+ ## 0.1.0-beta.82
217
+
218
+ ### Patch Changes
219
+
220
+ - 29089a7: add experimental support for prerender flag
221
+
222
+ ## 0.1.0-beta.81
223
+
224
+ ### Patch Changes
225
+
226
+ - 5c257e2: separate steelie into separate packages
227
+
228
+ ## 0.1.0-beta.80
229
+
230
+ ### Patch Changes
231
+
232
+ - Updated dependencies [b4b51f7]
233
+ - @stainless-api/ui-primitives@0.1.0-beta.44
234
+ - @stainless-api/docs-search@0.1.0-beta.13
235
+ - @stainless-api/docs-ui@0.1.0-beta.60
236
+
237
+ ## 0.1.0-beta.79
238
+
239
+ ### Minor Changes
240
+
241
+ - 32b2c88: add simple request fields to request builder
242
+ - 6fd3625: Introduce experimentalRequestBuilder to hydrate within code snippets
243
+ - 98166fd: Adds CLI docs
244
+
245
+ ### Patch Changes
246
+
247
+ - 7a79858: more aggressively suppress dev-server waterfalls through ai-chat
248
+ - Updated dependencies [32b2c88]
249
+ - Updated dependencies [6fd3625]
250
+ - Updated dependencies [98166fd]
251
+ - @stainless-api/docs-ui@0.1.0-beta.59
252
+ - @stainless-api/docs-search@0.1.0-beta.12
253
+
254
+ ## 0.1.0-beta.78
255
+
256
+ ### Patch Changes
257
+
258
+ - Updated dependencies [1b04416]
259
+ - Updated dependencies [905cdac]
260
+ - @stainless-api/docs-ui@0.1.0-beta.58
261
+ - @stainless-api/docs-search@0.1.0-beta.11
262
+
263
+ ## 0.1.0-beta.77
264
+
265
+ ### Patch Changes
266
+
267
+ - 5c8fef8: fixes pagefind path
268
+
269
+ ## 0.1.0-beta.76
270
+
271
+ ### Patch Changes
272
+
273
+ - 5a6d886: fix searchbar styles
274
+ - d79718a: should use base url when resolving pagefind
275
+
276
+ ## 0.1.0-beta.75
277
+
278
+ ### Patch Changes
279
+
280
+ - b1ff7b3: write manifest file after build
281
+
282
+ ## 0.1.0-beta.74
283
+
284
+ ### Patch Changes
285
+
286
+ - d0d1122: support astro config base param
287
+ - Updated dependencies [6eb6d38]
288
+ - Updated dependencies [7bc8f4e]
289
+ - Updated dependencies [2f6b86d]
290
+ - @stainless-api/docs-ui@0.1.0-beta.57
291
+ - @stainless-api/ui-primitives@0.1.0-beta.43
292
+ - @stainless-api/docs-search@0.1.0-beta.10
293
+
294
+ ## 0.1.0-beta.73
295
+
296
+ ### Patch Changes
297
+
298
+ - 6adf1c6: fixes show more button background opacity
299
+
300
+ ## 0.1.0-beta.72
301
+
302
+ ### Patch Changes
303
+
304
+ - Updated dependencies [2d82e2e]
305
+ - @stainless-api/ui-primitives@0.1.0-beta.42
306
+ - @stainless-api/docs-search@0.1.0-beta.9
307
+ - @stainless-api/docs-ui@0.1.0-beta.56
308
+
309
+ ## 0.1.0-beta.71
310
+
311
+ ### Patch Changes
312
+
313
+ - Updated dependencies [0a84207]
314
+ - @stainless-api/docs-search@0.1.0-beta.8
315
+
316
+ ## 0.1.0-beta.70
317
+
318
+ ### Patch Changes
319
+
320
+ - Updated dependencies [750c348]
321
+ - @stainless-api/ui-primitives@0.1.0-beta.41
322
+ - @stainless-api/docs-search@0.1.0-beta.7
323
+ - @stainless-api/docs-ui@0.1.0-beta.55
324
+
325
+ ## 0.1.0-beta.69
326
+
327
+ ### Patch Changes
328
+
329
+ - 67aa6b5: improves UI for algolia search on desktop and mobile
330
+ - bf9bdd4: Remove old/broken mintlify-compat Steps implementation in favor of the new component
331
+ - 68f4528: Adds support for opengraph images
332
+ - Updated dependencies [67aa6b5]
333
+ - @stainless-api/docs-search@0.1.0-beta.6
334
+ - @stainless-api/docs-ui@0.1.0-beta.54
335
+
336
+ ## 0.1.0-beta.68
337
+
338
+ ### Patch Changes
339
+
340
+ - add prose docs vector indexing
341
+
342
+ ## 0.1.0-beta.67
343
+
344
+ ### Patch Changes
345
+
346
+ - a59d5f7: Pass current page context through as “intent”
347
+ - Updated dependencies [e9567b0]
348
+ - @stainless-api/ui-primitives@0.1.0-beta.40
349
+ - @stainless-api/docs-ui@0.1.0-beta.53
350
+ - @stainless-api/docs-search@0.1.0-beta.5
351
+
352
+ ## 0.1.0-beta.66
353
+
354
+ ### Patch Changes
355
+
356
+ - af54129: fix: index missing prose docs for search
357
+
358
+ ## 0.1.0-beta.65
359
+
360
+ ### Patch Changes
361
+
362
+ - 22a19ed: exporting Head component to support custom head implements
363
+
364
+ ## 0.1.0-beta.64
365
+
366
+ ### Patch Changes
367
+
368
+ - add markdown indexing functionality
369
+
370
+ ## 0.1.0-beta.63
371
+
372
+ ### Patch Changes
373
+
374
+ - d2e3686: add a success state to the copy markdown action
375
+ - Updated dependencies [5d6e5fa]
376
+ - @stainless-api/ui-primitives@0.1.0-beta.39
377
+ - @stainless-api/docs-ui@0.1.0-beta.52
378
+ - @stainless-api/docs-search@0.1.0-beta.4
379
+
380
+ ## 0.1.0-beta.62
381
+
382
+ ### Patch Changes
383
+
384
+ - 3c4a030: increase minimum starlight depdendency version
385
+ - cd86726: Fix a crash when stl-starlight plugin isn’t being loaded
386
+ - aa9d333: fixes for markdown rendering when astro integrations override the starlight html entrypoint
387
+ - 07a2c87: Should override ThemeProvider for setting theme within the html head
388
+ - @stainless-api/docs-search@0.1.0-beta.3
389
+ - @stainless-api/docs-ui@0.1.0-beta.51
390
+ - @stainless-api/ui-primitives@0.1.0-beta.38
391
+
392
+ ## 0.1.0-beta.61
393
+
394
+ ### Patch Changes
395
+
396
+ - 88a9894: patch vite optimizeDeps for docs-ai-chat
397
+ - Updated dependencies [2a79bae]
398
+ - @stainless-api/ui-primitives@0.1.0-beta.38
399
+ - @stainless-api/docs-ui@0.1.0-beta.51
400
+ - @stainless-api/docs-search@0.1.0-beta.3
401
+
402
+ ## 0.1.0-beta.60
403
+
404
+ ### Patch Changes
405
+
406
+ - 2d00f0d: compatibility with the first alpha version of docs-ai-chat
407
+ - Updated dependencies [2d00f0d]
408
+ - @stainless-api/docs-ui@0.1.0-beta.50
409
+ - @stainless-api/ui-primitives@0.1.0-beta.37
410
+ - @stainless-api/docs-search@0.1.0-beta.2
411
+
412
+ ## 0.1.0-beta.59
413
+
414
+ ### Patch Changes
415
+
416
+ - 23bbd6d: fix search input layout on default header layout
417
+
418
+ ## 0.1.0-beta.58
419
+
420
+ ### Minor Changes
421
+
422
+ - af090c3: refactor: extract search to @stainless-api/docs-search package
423
+
424
+ ### Patch Changes
425
+
426
+ - e79d6c3: fix an issue where the search bar would overflow over nav elements
427
+ - 2d372fb: feat: support for stainless docs plugins
428
+ - Updated dependencies [af090c3]
429
+ - Updated dependencies [4cf4aa5]
430
+ - Updated dependencies [8886c7c]
431
+ - @stainless-api/docs-search@0.1.0-beta.1
432
+ - @stainless-api/docs-ui@0.1.0-beta.49
433
+ - @stainless-api/ui-primitives@0.1.0-beta.36
434
+
435
+ ## 0.1.0-beta.57
436
+
437
+ ### Patch Changes
438
+
439
+ - Updated dependencies [ada37ee]
440
+ - @stainless-api/docs-ui@0.1.0-beta.48
441
+
442
+ ## 0.1.0-beta.56
443
+
444
+ ### Minor Changes
445
+
446
+ - d75a72f: Adds C# language support
447
+
448
+ ### Patch Changes
449
+
450
+ - Updated dependencies [d75a72f]
451
+ - Updated dependencies [2464347]
452
+ - @stainless-api/docs-ui@0.1.0-beta.47
453
+
454
+ ## 0.1.0-beta.55
455
+
456
+ ### Patch Changes
457
+
458
+ - ae56b3c: ensure changeset release commit doesn’t include [skip ci]
459
+ - Updated dependencies [ae56b3c]
460
+ - @stainless-api/docs-ui@0.1.0-beta.46
461
+ - @stainless-api/ui-primitives@0.1.0-beta.35
462
+
463
+ ## 0.1.0-beta.54
464
+
465
+ ### Minor Changes
466
+
467
+ - a70f60c: Adds the title property
468
+
469
+ ### Patch Changes
470
+
471
+ - 2ebf696: enable trusted publishing
472
+ - Updated dependencies [2ebf696]
473
+ - Updated dependencies [a70f60c]
474
+ - @stainless-api/docs-ui@0.1.0-beta.45
475
+ - @stainless-api/ui-primitives@0.1.0-beta.34
476
+
477
+ ## 0.1.0-beta.53
478
+
479
+ ### Patch Changes
480
+
481
+ - 2e1639a: Updated preview worker and added experimental playgrounds feature.
482
+ - Updated dependencies [239e28c]
483
+ - Updated dependencies [ddc4593]
484
+ - Updated dependencies [2e1639a]
485
+ - Updated dependencies [2e1639a]
486
+ - @stainless-api/docs-ui@0.1.0-beta.44
487
+ - @stainless-api/ui-primitives@0.1.0-beta.33
488
+
489
+ ## 0.1.0-beta.52
490
+
491
+ ### Patch Changes
492
+
493
+ - 72c7604: include default themes in stainlessStarlight plugin
494
+ - Updated dependencies [8a32bbb]
495
+ - @stainless-api/ui-primitives@0.1.0-beta.32
496
+ - @stainless-api/docs-ui@0.1.0-beta.43
497
+
498
+ ## 0.1.0-beta.51
499
+
500
+ ### Patch Changes
501
+
502
+ - 4fc191c: standardize accent border colors
503
+ - Updated dependencies [3d2179f]
504
+ - @stainless-api/ui-primitives@0.1.0-beta.31
505
+ - @stainless-api/docs-ui@0.1.0-beta.42
506
+
507
+ ## 0.1.0-beta.50
508
+
509
+ ### Patch Changes
510
+
511
+ - 6de051d: update vendored preview worker
512
+
513
+ ## 0.1.0-beta.49
514
+
515
+ ### Patch Changes
516
+
517
+ - Updated dependencies [b9e4b82]
518
+ - Updated dependencies [6d12e06]
519
+ - Updated dependencies [5051795]
520
+ - @stainless-api/ui-primitives@0.1.0-beta.30
521
+ - @stainless-api/docs-ui@0.1.0-beta.41
522
+
523
+ ## 0.1.0-beta.48
524
+
525
+ ### Patch Changes
526
+
527
+ - Updated dependencies [81b5b21]
528
+ - Updated dependencies [ba269f9]
529
+ - Updated dependencies [e2a7098]
530
+ - Updated dependencies [589b13d]
531
+ - @stainless-api/ui-primitives@0.1.0-beta.29
532
+ - @stainless-api/docs-ui@0.1.0-beta.40
533
+
534
+ ## 0.1.0-beta.47
535
+
536
+ ### Patch Changes
537
+
538
+ - 466285c: Fixes for expressive code styles
539
+ - Ensure expressive code styles are applied to docs sites that do not include API reference
540
+ - Use correct red & green palettes for ins/del diff annotations
541
+
542
+ - Updated dependencies [d2d5d51]
543
+ - @stainless-api/ui-primitives@0.1.0-beta.28
544
+ - @stainless-api/docs-ui@0.1.0-beta.39
545
+
546
+ ## 0.1.0-beta.46
547
+
548
+ ### Minor Changes
549
+
550
+ - b61b7c1: New theming system
551
+
552
+ A whole new set of design system variables used throughout docs, docs-ui, and ui-primitives
553
+
554
+ Improves customizability & uniformness compared to the old set of variables.
555
+
556
+ ### Patch Changes
557
+
558
+ - Updated dependencies [b61b7c1]
559
+ - Updated dependencies [262f201]
560
+ - @stainless-api/docs-ui@0.1.0-beta.38
561
+ - @stainless-api/ui-primitives@0.1.0-beta.27
562
+
563
+ ## 0.1.0-beta.45
564
+
565
+ ### Patch Changes
566
+
567
+ - 00b33d9: syntax highlighting for markdown renderer
568
+ - fa43cff: json brackets should use muted foreground color
569
+ - c06e5c3: update marked dependency
570
+ - 32d1735: experimental support for collapsible method descriptions
571
+ - Updated dependencies [00b33d9]
572
+ - Updated dependencies [32d1735]
573
+ - Updated dependencies [23254d1]
574
+ - @stainless-api/ui-primitives@0.1.0-beta.26
575
+ - @stainless-api/docs-ui@0.1.0-beta.37
576
+
577
+ ## 0.1.0-beta.44
578
+
579
+ ### Patch Changes
580
+
581
+ - Updated dependencies [38b7030]
582
+ - @stainless-api/docs-ui@0.1.0-beta.36
583
+
584
+ ## 0.1.0-beta.43
585
+
586
+ ### Patch Changes
587
+
588
+ - a44a012: Remove debug code
589
+
590
+ ## 0.1.0-beta.42
591
+
592
+ ### Patch Changes
593
+
594
+ - Updated dependencies [3817ff5]
595
+ - Updated dependencies [391a7ce]
596
+ - Updated dependencies [945d4f3]
597
+ - @stainless-api/docs-ui@0.1.0-beta.35
598
+
599
+ ## 0.1.0-beta.41
600
+
601
+ ### Patch Changes
602
+
603
+ - 6557889: temporarily remove experimental AI search feature
604
+ - Updated dependencies [6557889]
605
+ - @stainless-api/docs-ui@0.1.0-beta.34
606
+
607
+ ## 0.1.0-beta.40
608
+
609
+ ### Patch Changes
610
+
611
+ - Updated dependencies [8670d73]
612
+ - @stainless-api/docs-ui@0.1.0-beta.33
613
+
614
+ ## 0.1.0-beta.39
615
+
616
+ ### Patch Changes
617
+
618
+ - 242deef: fix mobile menu on splash pages
619
+ - Updated dependencies [242deef]
620
+ - @stainless-api/ui-primitives@0.1.0-beta.25
621
+ - @stainless-api/docs-ui@0.1.0-beta.32
622
+
623
+ ## 0.1.0-beta.38
624
+
625
+ ### Patch Changes
626
+
627
+ - Updated dependencies [c28b0a6]
628
+ - Updated dependencies [f23c6bc]
629
+ - Updated dependencies [2cd1b33]
630
+ - @stainless-api/docs-ui@0.1.0-beta.31
631
+ - @stainless-api/ui-primitives@0.1.0-beta.24
632
+
633
+ ## 0.1.0-beta.37
634
+
635
+ ### Patch Changes
636
+
637
+ - 5f14e53: Render page descriptions as part of page header by default
638
+ - Updated dependencies [49e1b93]
639
+ - @stainless-api/docs-ui@0.1.0-beta.30
640
+ - @stainless-api/ui-primitives@0.1.0-beta.23
641
+
642
+ ## 0.1.0-beta.36
643
+
644
+ ### Patch Changes
645
+
646
+ - Updated dependencies [7897575]
647
+ - @stainless-api/ui-primitives@0.1.0-beta.22
648
+ - @stainless-api/docs-ui@0.1.0-beta.29
649
+
650
+ ## 0.1.0-beta.35
651
+
652
+ ### Patch Changes
653
+
654
+ - Updated dependencies [344761e]
655
+ - @stainless-api/ui-primitives@0.1.0-beta.21
656
+ - @stainless-api/docs-ui@0.1.0-beta.28
657
+
658
+ ## 0.1.0-beta.34
659
+
660
+ ### Patch Changes
661
+
662
+ - f5173e9: fix: theme flickering
663
+
664
+ ## 0.1.0-beta.33
665
+
666
+ ### Patch Changes
667
+
668
+ - 7ef572c: feat: updated dropdowns
669
+ - Updated dependencies [7ef572c]
670
+ - @stainless-api/docs-ui@0.1.0-beta.27
671
+ - @stainless-api/ui-primitives@0.1.0-beta.20
672
+
673
+ ## 0.1.0-beta.32
674
+
675
+ ### Patch Changes
676
+
677
+ - 58040d8: feat: ui primitives updates, cursor support
678
+ - Updated dependencies [58040d8]
679
+ - @stainless-api/docs-ui@0.1.0-beta.26
680
+ - @stainless-api/ui-primitives@0.1.0-beta.19
681
+
682
+ ## 0.1.0-beta.31
683
+
684
+ ### Patch Changes
685
+
686
+ - Updated dependencies [afd1f8e]
687
+ - Updated dependencies [279fa0e]
688
+ - @stainless-api/docs-ui@0.1.0-beta.25
689
+
690
+ ## 0.1.0-beta.30
691
+
692
+ ### Patch Changes
693
+
694
+ - Updated dependencies [ab570bc]
695
+ - @stainless-api/docs-ui@0.1.0-beta.24
696
+
697
+ ## 0.1.0-beta.29
698
+
699
+ ### Patch Changes
700
+
701
+ - Updated dependencies [279fa0e]
702
+ - @stainless-api/docs-ui@0.1.0-beta.23
703
+
704
+ ## 0.1.0-beta.28
705
+
706
+ ### Minor Changes
707
+
708
+ - c635741: Updated worker and fixed docs-ui jsx issue
709
+
710
+ ### Patch Changes
711
+
712
+ - Updated dependencies [c635741]
713
+ - @stainless-api/docs-ui@0.1.0-beta.22
714
+ - @stainless-api/ui-primitives@0.1.0-beta.18
715
+
716
+ ## 0.1.0-beta.27
717
+
718
+ ### Patch Changes
719
+
720
+ - de189ee: remove max width on site title
721
+
722
+ ## 0.1.0-beta.26
723
+
724
+ ### Patch Changes
725
+
726
+ - 1517484: fixing font loading, updating nav bar height
727
+ - Updated dependencies [1517484]
728
+ - @stainless-api/docs-ui@0.1.0-beta.21
729
+ - @stainless-api/ui-primitives@0.1.0-beta.17
730
+
731
+ ## 0.1.0-beta.25
732
+
733
+ ### Patch Changes
734
+
735
+ - Updated dependencies [b9ce1b6]
736
+ - @stainless-api/docs-ui@0.1.0-beta.20
737
+
738
+ ## 0.1.0-beta.24
739
+
740
+ ### Patch Changes
741
+
742
+ - Updated dependencies [402222a]
743
+ - @stainless-api/docs-ui@0.1.0-beta.19
744
+
745
+ ## 0.1.0-beta.23
746
+
747
+ ### Patch Changes
748
+
749
+ - Updated dependencies [2150eee]
750
+ - @stainless-api/docs-ui@0.1.0-beta.18
751
+
752
+ ## 0.1.0-beta.22
753
+
754
+ ### Patch Changes
755
+
756
+ - Updated dependencies [f7ba067]
757
+ - @stainless-api/docs-ui@0.1.0-beta.17
758
+
759
+ ## 0.1.0-beta.21
760
+
761
+ ### Patch Changes
762
+
763
+ - 41e87cb: fix virtual module imports
764
+
765
+ ## 0.1.0-beta.20
766
+
767
+ ### Patch Changes
768
+
769
+ - 9cdb24d: Update pagination components, fix search modal
770
+ - Updated dependencies [9cdb24d]
771
+ - @stainless-api/docs-ui@0.1.0-beta.16
772
+ - @stainless-api/ui-primitives@0.1.0-beta.16
773
+
774
+ ## 0.1.0-beta.19
775
+
776
+ ### Patch Changes
777
+
778
+ - 15c003d: fix react peer dependencies
779
+ - Updated dependencies [15c003d]
780
+ - @stainless-api/docs-ui@0.1.0-beta.15
781
+ - @stainless-api/ui-primitives@0.1.0-beta.15
782
+
783
+ ## 0.1.0-beta.18
784
+
785
+ ### Patch Changes
786
+
787
+ - Updated dependencies [0572f60]
788
+ - @stainless-api/docs-ui@0.1.0-beta.14
789
+
790
+ ## 0.1.0-beta.17
791
+
792
+ ### Patch Changes
793
+
794
+ - a925bb4: fix markdown icon color in dark mode
795
+
796
+ ## 0.1.0-beta.16
797
+
798
+ ### Patch Changes
799
+
800
+ - 0618d05: Markdown rendering of prose pages, ai context menu, auth via cli, minor fixes
801
+ - Updated dependencies [0618d05]
802
+ - @stainless-api/docs-ui@0.1.0-beta.13
803
+ - @stainless-api/ui-primitives@0.1.0-beta.14
804
+
805
+ ## 0.1.0-beta.15
806
+
807
+ ### Patch Changes
808
+
809
+ - e35360f: include ui-primitive packages
810
+ - Updated dependencies [e35360f]
811
+ - @stainless-api/docs-ui@0.1.0-beta.12
812
+ - @stainless-api/ui-primitives@0.1.0-beta.13
813
+
814
+ ## 0.1.0-beta.14
815
+
816
+ ### Patch Changes
817
+
818
+ - a529fd4: fix: site title height
819
+ - Updated dependencies [a529fd4]
820
+ - @stainless-api/docs-ui@0.1.0-beta.11
821
+ - @stainless-api/ui-primitives@0.1.0-beta.12
822
+
823
+ ## 0.1.0-beta.13
824
+
825
+ ### Patch Changes
826
+
827
+ - 26a4786: fix: include missing starlight config options
828
+ - Updated dependencies [26a4786]
829
+ - @stainless-api/docs-ui@0.1.0-beta.10
830
+ - @stainless-api/ui-primitives@0.1.0-beta.11
831
+
832
+ ## 0.1.0-beta.12
833
+
834
+ ### Patch Changes
835
+
836
+ - Updated dependencies [3e44a9c]
837
+ - @stainless-api/ui-primitives@0.1.0-beta.10
838
+ - @stainless-api/docs-ui@0.1.0-beta.9
839
+
840
+ ## 0.1.0-beta.11
841
+
842
+ ### Patch Changes
843
+
844
+ - c96f895: Remove css layers, update sidebar styles, add new prose elements
845
+ - Updated dependencies [c96f895]
846
+ - @stainless-api/docs-ui@0.1.0-beta.8
847
+ - @stainless-api/ui-primitives@0.1.0-beta.9
848
+
849
+ ## 0.1.0-beta.10
850
+
851
+ ### Patch Changes
852
+
853
+ - dc059d2: should include option in stl-docs virtual module
854
+
855
+ ## 0.1.0-beta.9
856
+
857
+ ### Patch Changes
858
+
859
+ - d15a520: fix initialization of dropdown buttons
860
+ - Updated dependencies [d15a520]
861
+ - @stainless-api/ui-primitives@0.1.0-beta.8
862
+ - @stainless-api/docs-ui@0.1.0-beta.7
863
+
864
+ ## 0.1.0-beta.8
865
+
866
+ ### Minor Changes
867
+
868
+ - 917493d: move stainlessDocs into default export
869
+
870
+ ## 0.1.0-beta.7
871
+
872
+ ### Patch Changes
873
+
874
+ - Updated dependencies [34e7c61]
875
+ - @stainless-api/ui-primitives@0.1.0-beta.7
876
+ - @stainless-api/docs-ui@0.1.0-beta.6
877
+
878
+ ## 0.1.0-beta.6
879
+
880
+ ### Patch Changes
881
+
882
+ - 34cbd12: verify publishing
883
+ - Updated dependencies [f664b4d]
884
+ - Updated dependencies [34cbd12]
885
+ - @stainless-api/ui-primitives@0.1.0-beta.6
886
+ - @stainless-api/docs-ui@0.1.0-beta.5
887
+
888
+ ## 0.1.0-beta.5
889
+
890
+ ### Patch Changes
891
+
892
+ - Updated dependencies [e7a2a96]
893
+ - @stainless-api/ui-primitives@0.1.0-beta.5
894
+ - @stainless-api/docs-ui@0.1.0-beta.4
895
+
896
+ ## 0.1.0-beta.4
897
+
898
+ ### Patch Changes
899
+
900
+ - Updated dependencies [2853ae8]
901
+ - @stainless-api/ui-primitives@0.1.0-beta.4
902
+ - @stainless-api/docs-ui@0.1.0-beta.3
903
+
904
+ ## 0.1.0-beta.3
905
+
906
+ ### Patch Changes
907
+
908
+ - Updated dependencies [870af8d]
909
+ - @stainless-api/ui-primitives@0.1.0-beta.3
910
+ - @stainless-api/docs-ui@0.1.0-beta.2
911
+
912
+ ## 0.1.0-beta.2
913
+
914
+ ### Patch Changes
915
+
916
+ - Updated dependencies [7a5c841]
917
+ - @stainless-api/docs-ui@0.1.0-beta.2
918
+ - @stainless-api/ui-primitives@0.1.0-beta.2
919
+
3
920
  ## 0.1.0-beta.1
4
921
 
5
922
  ### Patch Changes