@stainless-api/docs 0.1.0-beta.9 → 0.1.0-beta.90

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