@stainless-api/docs 0.1.0-beta.11 → 0.1.0-beta.110

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