@stainless-api/docs 0.1.0-beta.10 → 0.1.0-beta.101

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