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

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