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

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