@stainless-api/docs 0.1.0-beta.12 → 0.1.0-beta.120

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