@vllnt/ui 0.2.1 → 0.3.0-canary.0572c35

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 (331) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/README.md +59 -30
  3. package/dist/components/accordion/accordion.js +2 -2
  4. package/dist/components/activity-heatmap/activity-heatmap.js +17 -14
  5. package/dist/components/activity-log/activity-log.js +12 -11
  6. package/dist/components/agent-activity/agent-activity.js +317 -0
  7. package/dist/components/agent-activity/index.js +18 -0
  8. package/dist/components/ai-artifact/ai-artifact.js +439 -0
  9. package/dist/components/ai-artifact/index.js +24 -0
  10. package/dist/components/ai-chat-input/ai-chat-input.js +6 -4
  11. package/dist/components/ai-message-bubble/ai-message-bubble.js +3 -3
  12. package/dist/components/ai-sidebar/ai-sidebar.js +255 -0
  13. package/dist/components/ai-sidebar/index.js +22 -0
  14. package/dist/components/ai-source-citation/ai-source-citation.js +2 -2
  15. package/dist/components/ai-tool-call-display/ai-tool-call-display.js +5 -5
  16. package/dist/components/alert-pulse/alert-pulse.js +93 -0
  17. package/dist/components/alert-pulse/index.js +6 -0
  18. package/dist/components/anchor-port/anchor-port.js +51 -0
  19. package/dist/components/anchor-port/index.js +4 -0
  20. package/dist/components/animated-text/animated-text.js +8 -7
  21. package/dist/components/annotation/annotation.js +1 -1
  22. package/dist/components/auto-reload/auto-reload.js +401 -0
  23. package/dist/components/auto-reload/index.js +6 -0
  24. package/dist/components/avatar/avatar.js +1 -1
  25. package/dist/components/avatar-group/avatar-group.js +5 -5
  26. package/dist/components/banner/banner.js +155 -0
  27. package/dist/components/banner/index.js +10 -0
  28. package/dist/components/blog-card/blog-card.js +5 -3
  29. package/dist/components/border-beam/border-beam.js +2 -2
  30. package/dist/components/bottom-activity-strip/bottom-activity-strip.js +91 -0
  31. package/dist/components/bottom-activity-strip/index.js +6 -0
  32. package/dist/components/bottom-bar/bottom-bar.js +25 -0
  33. package/dist/components/bottom-bar/index.js +4 -0
  34. package/dist/components/breadcrumb/breadcrumb.js +33 -26
  35. package/dist/components/button/button.js +1 -1
  36. package/dist/components/calendar/calendar.js +6 -6
  37. package/dist/components/callout/callout.js +1 -1
  38. package/dist/components/candlestick-chart/candlestick-chart.js +13 -12
  39. package/dist/components/canvas-shell/canvas-foundation-demo.js +183 -0
  40. package/dist/components/canvas-shell/canvas-shell-route-config.js +0 -0
  41. package/dist/components/canvas-shell/canvas-shell.js +264 -0
  42. package/dist/components/canvas-shell/index.js +4 -0
  43. package/dist/components/canvas-view/canvas-view.js +504 -0
  44. package/dist/components/canvas-view/index.js +6 -0
  45. package/dist/components/carousel/carousel.js +18 -10
  46. package/dist/components/category-filter/category-filter.js +1 -1
  47. package/dist/components/chain-of-thought/chain-of-thought.js +77 -0
  48. package/dist/components/chain-of-thought/index.js +6 -0
  49. package/dist/components/chart/area-chart.js +1 -0
  50. package/dist/components/chart/line-chart.js +1 -0
  51. package/dist/components/chat-dock-section/chat-dock-section.js +56 -0
  52. package/dist/components/chat-dock-section/index.js +6 -0
  53. package/dist/components/checkbox/checkbox.js +2 -2
  54. package/dist/components/checklist/checklist.js +45 -10
  55. package/dist/components/checklist/index.js +10 -2
  56. package/dist/components/choropleth-map/choropleth-map.js +378 -0
  57. package/dist/components/choropleth-map/index.js +10 -0
  58. package/dist/components/chronological-timeline/chronological-timeline.js +343 -0
  59. package/dist/components/chronological-timeline/index.js +8 -0
  60. package/dist/components/civilization-card/civilization-card.js +275 -0
  61. package/dist/components/civilization-card/index.js +8 -0
  62. package/dist/components/code-block/code-block.js +43 -22
  63. package/dist/components/code-playground/code-playground.js +16 -10
  64. package/dist/components/combobox/combobox.js +49 -30
  65. package/dist/components/command/command.js +1 -1
  66. package/dist/components/comment-pin/comment-pin.js +104 -0
  67. package/dist/components/comment-pin/index.js +6 -0
  68. package/dist/components/comparison/comparison.js +11 -10
  69. package/dist/components/completion-dialog/completion-dialog.js +20 -12
  70. package/dist/components/connector-edge/connector-edge.js +66 -0
  71. package/dist/components/connector-edge/index.js +6 -0
  72. package/dist/components/content-intro/content-intro.js +29 -22
  73. package/dist/components/context-lens/context-lens.js +98 -0
  74. package/dist/components/context-lens/index.js +6 -0
  75. package/dist/components/context-menu/context-menu.js +4 -4
  76. package/dist/components/conversation-thread/conversation-thread.js +348 -0
  77. package/dist/components/conversation-thread/index.js +20 -0
  78. package/dist/components/cookie-consent/cookie-consent.js +1 -1
  79. package/dist/components/copy-button/copy-button.js +189 -0
  80. package/dist/components/copy-button/index.js +8 -0
  81. package/dist/components/countdown-timer/countdown-timer.js +10 -9
  82. package/dist/components/credit-badge/credit-badge.js +1 -7
  83. package/dist/components/curriculum/curriculum.js +349 -0
  84. package/dist/components/curriculum/index.js +10 -0
  85. package/dist/components/data-list/data-list.js +2 -1
  86. package/dist/components/data-table/data-table.js +10 -9
  87. package/dist/components/date-picker/date-picker.js +4 -9
  88. package/dist/components/dialog/dialog.js +1 -1
  89. package/dist/components/document-sibling-nav/document-sibling-nav.js +111 -0
  90. package/dist/components/document-sibling-nav/index.js +8 -0
  91. package/dist/components/dropdown-menu/dropdown-menu.js +3 -3
  92. package/dist/components/edge-label/edge-label.js +26 -0
  93. package/dist/components/edge-label/index.js +4 -0
  94. package/dist/components/empty-state/empty-state.js +93 -0
  95. package/dist/components/empty-state/index.js +8 -0
  96. package/dist/components/era-comparison/era-comparison.js +216 -0
  97. package/dist/components/era-comparison/index.js +16 -0
  98. package/dist/components/exercise/exercise.js +15 -7
  99. package/dist/components/faq/faq.js +8 -4
  100. package/dist/components/file-upload/file-upload.js +4 -9
  101. package/dist/components/filter-bar/filter-bar.js +9 -8
  102. package/dist/components/flashcard/flashcard.js +10 -4
  103. package/dist/components/floating-action-button/floating-action-button.js +1 -1
  104. package/dist/components/floating-toolbar/floating-toolbar.js +66 -0
  105. package/dist/components/floating-toolbar/index.js +6 -0
  106. package/dist/components/flow-diagram/flow-controls.js +9 -9
  107. package/dist/components/flow-diagram/flow-error-boundary.js +2 -2
  108. package/dist/components/flow-diagram/flow-fullscreen.js +2 -2
  109. package/dist/components/follow-mode/follow-mode.js +89 -0
  110. package/dist/components/follow-mode/index.js +6 -0
  111. package/dist/components/form/form.js +432 -0
  112. package/dist/components/form/index.js +20 -0
  113. package/dist/components/gantt-chart/gantt-chart.js +334 -0
  114. package/dist/components/gantt-chart/index.js +6 -0
  115. package/dist/components/geography-quiz-map/geography-quiz-map.js +344 -0
  116. package/dist/components/geography-quiz-map/index.js +12 -0
  117. package/dist/components/glass-panel/glass-panel.js +21 -0
  118. package/dist/components/glass-panel/index.js +4 -0
  119. package/dist/components/globe-3d/globe-3d.js +429 -0
  120. package/dist/components/globe-3d/index.js +10 -0
  121. package/dist/components/group-hull/group-hull.js +29 -0
  122. package/dist/components/group-hull/index.js +4 -0
  123. package/dist/components/handoff-beacon/handoff-beacon.js +78 -0
  124. package/dist/components/handoff-beacon/index.js +6 -0
  125. package/dist/components/heat-map-overlay/heat-map-overlay.js +215 -0
  126. package/dist/components/heat-map-overlay/index.js +6 -0
  127. package/dist/components/heat-overlay/heat-overlay.js +92 -0
  128. package/dist/components/heat-overlay/index.js +6 -0
  129. package/dist/components/historic-timeline/historic-timeline.js +342 -0
  130. package/dist/components/historic-timeline/index.js +6 -0
  131. package/dist/components/historical-figure-card/historical-figure-card.js +270 -0
  132. package/dist/components/historical-figure-card/index.js +6 -0
  133. package/dist/components/horizontal-scroll-row/horizontal-scroll-row.js +6 -5
  134. package/dist/components/index.js +578 -1
  135. package/dist/components/infinite-plane/index.js +6 -0
  136. package/dist/components/infinite-plane/infinite-plane.js +75 -0
  137. package/dist/components/inline-input/inline-input.js +1 -1
  138. package/dist/components/input-otp/input-otp.js +1 -1
  139. package/dist/components/interactive-timeline/index.js +16 -0
  140. package/dist/components/interactive-timeline/interactive-timeline.js +724 -0
  141. package/dist/components/jarvis-dock/index.js +6 -0
  142. package/dist/components/jarvis-dock/jarvis-dock.js +98 -0
  143. package/dist/components/kbd/index.js +5 -0
  144. package/dist/components/kbd/kbd.js +125 -0
  145. package/dist/components/key-concept/key-concept.js +6 -5
  146. package/dist/components/keyboard-shortcuts-help/keyboard-shortcuts-help.js +4 -3
  147. package/dist/components/knowledge-check/index.js +6 -0
  148. package/dist/components/knowledge-check/knowledge-check.js +473 -0
  149. package/dist/components/lang-provider/lang-provider.js +3 -3
  150. package/dist/components/learning-objectives/learning-objectives.js +14 -13
  151. package/dist/components/left-rail/index.js +4 -0
  152. package/dist/components/left-rail/left-rail.js +25 -0
  153. package/dist/components/live-cursor/index.js +6 -0
  154. package/dist/components/live-cursor/live-cursor.js +62 -0
  155. package/dist/components/live-feed/live-feed.js +18 -16
  156. package/dist/components/map-2d/index.js +20 -0
  157. package/dist/components/map-2d/map-2d.js +455 -0
  158. package/dist/components/map-timeline/index.js +16 -0
  159. package/dist/components/map-timeline/map-timeline.js +506 -0
  160. package/dist/components/market-treemap/market-treemap.js +3 -3
  161. package/dist/components/mdx-content/mdx-content.js +25 -11
  162. package/dist/components/menubar/menubar.js +4 -4
  163. package/dist/components/metric-cluster/index.js +6 -0
  164. package/dist/components/metric-cluster/metric-cluster.js +96 -0
  165. package/dist/components/metric-gauge/metric-gauge.js +3 -3
  166. package/dist/components/mini-map-panel/index.js +6 -0
  167. package/dist/components/mini-map-panel/mini-map-panel.js +74 -0
  168. package/dist/components/model-comparison/index.js +12 -0
  169. package/dist/components/model-comparison/model-comparison.js +230 -0
  170. package/dist/components/model-selector/model-selector.js +8 -8
  171. package/dist/components/multi-select/index.js +6 -0
  172. package/dist/components/multi-select/multi-select.js +258 -0
  173. package/dist/components/multi-select-lasso/index.js +6 -0
  174. package/dist/components/multi-select-lasso/multi-select-lasso.js +76 -0
  175. package/dist/components/navbar-saas/navbar-saas.js +11 -10
  176. package/dist/components/navigation-menu/navigation-menu.js +2 -2
  177. package/dist/components/newsletter-signup/index.js +8 -0
  178. package/dist/components/newsletter-signup/newsletter-signup.js +269 -0
  179. package/dist/components/number-input/number-input.js +2 -2
  180. package/dist/components/number-ticker/number-ticker.js +11 -4
  181. package/dist/components/object-card/index.js +6 -0
  182. package/dist/components/object-card/object-card.js +126 -0
  183. package/dist/components/object-handle/index.js +4 -0
  184. package/dist/components/object-handle/object-handle.js +38 -0
  185. package/dist/components/object-inspector/index.js +6 -0
  186. package/dist/components/object-inspector/object-inspector.js +136 -0
  187. package/dist/components/order-book/order-book.js +2 -2
  188. package/dist/components/overview-board/index.js +8 -0
  189. package/dist/components/overview-board/overview-board.js +127 -0
  190. package/dist/components/parallel-timeline/index.js +6 -0
  191. package/dist/components/parallel-timeline/parallel-timeline.js +251 -0
  192. package/dist/components/password-input/password-input.js +1 -1
  193. package/dist/components/plan-badge/plan-badge.js +1 -7
  194. package/dist/components/playback-ghost/index.js +6 -0
  195. package/dist/components/playback-ghost/playback-ghost.js +83 -0
  196. package/dist/components/policy-delivery-panel/index.js +6 -0
  197. package/dist/components/policy-delivery-panel/policy-delivery-panel.js +99 -0
  198. package/dist/components/presence-stack/index.js +6 -0
  199. package/dist/components/presence-stack/presence-stack.js +108 -0
  200. package/dist/components/presence-sync-indicator/index.js +6 -0
  201. package/dist/components/presence-sync-indicator/presence-sync-indicator.js +73 -0
  202. package/dist/components/pricing-table/index.js +8 -0
  203. package/dist/components/pricing-table/pricing-table.js +284 -0
  204. package/dist/components/primary-source-viewer/index.js +26 -0
  205. package/dist/components/primary-source-viewer/primary-source-viewer.js +439 -0
  206. package/dist/components/pro-tip/pro-tip.js +6 -6
  207. package/dist/components/profile-section/profile-section.js +3 -2
  208. package/dist/components/progress-card/progress-card.js +6 -5
  209. package/dist/components/progress-tracker/index.js +20 -0
  210. package/dist/components/progress-tracker/progress-tracker.js +537 -0
  211. package/dist/components/prompt-input/index.js +4 -0
  212. package/dist/components/prompt-input/prompt-input.js +186 -0
  213. package/dist/components/prompt-templates/index.js +6 -0
  214. package/dist/components/prompt-templates/prompt-templates.js +395 -0
  215. package/dist/components/property-section/index.js +6 -0
  216. package/dist/components/property-section/property-section.js +101 -0
  217. package/dist/components/quiz/quiz.js +7 -6
  218. package/dist/components/radio-group/radio-group.js +2 -2
  219. package/dist/components/rating/rating.js +3 -3
  220. package/dist/components/reasoning/index.js +4 -0
  221. package/dist/components/reasoning/reasoning.js +118 -0
  222. package/dist/components/relationship-inspector/index.js +6 -0
  223. package/dist/components/relationship-inspector/relationship-inspector.js +102 -0
  224. package/dist/components/resizable/resizable.js +1 -1
  225. package/dist/components/right-dock/index.js +4 -0
  226. package/dist/components/right-dock/right-dock.js +28 -0
  227. package/dist/components/route-map/index.js +6 -0
  228. package/dist/components/route-map/route-map.js +339 -0
  229. package/dist/components/routing-assignment-panel/index.js +6 -0
  230. package/dist/components/routing-assignment-panel/routing-assignment-panel.js +122 -0
  231. package/dist/components/run-timeline/index.js +6 -0
  232. package/dist/components/run-timeline/run-timeline.js +221 -0
  233. package/dist/components/runtime-overview-panel/index.js +6 -0
  234. package/dist/components/runtime-overview-panel/runtime-overview-panel.js +89 -0
  235. package/dist/components/scope-selector/scope-selector.js +13 -13
  236. package/dist/components/search-bar/search-bar.js +24 -2
  237. package/dist/components/search-dialog/search-dialog.js +485 -52
  238. package/dist/components/segmented-control/index.js +12 -0
  239. package/dist/components/segmented-control/segmented-control.js +61 -0
  240. package/dist/components/select/select.js +5 -5
  241. package/dist/components/selection-halo/index.js +6 -0
  242. package/dist/components/selection-halo/selection-halo.js +72 -0
  243. package/dist/components/selection-presence/index.js +6 -0
  244. package/dist/components/selection-presence/selection-presence.js +50 -0
  245. package/dist/components/severity-badge/severity-badge.js +2 -2
  246. package/dist/components/share-dialog/share-dialog.js +2 -2
  247. package/dist/components/share-section/share-section.js +2 -1
  248. package/dist/components/sheet/sheet.js +1 -1
  249. package/dist/components/sidebar/sidebar.js +31 -26
  250. package/dist/components/sidebar-toggle/sidebar-toggle.js +5 -3
  251. package/dist/components/slider/slider.js +1 -1
  252. package/dist/components/slideshow/slideshow.js +356 -275
  253. package/dist/components/snap-guides/index.js +6 -0
  254. package/dist/components/snap-guides/snap-guides.js +45 -0
  255. package/dist/components/social-fab/social-fab.js +12 -11
  256. package/dist/components/sparkline-grid/sparkline-grid.js +4 -3
  257. package/dist/components/spinner/spinner.js +4 -4
  258. package/dist/components/spinner/unicode-spinner.js +5 -2
  259. package/dist/components/stat-card/stat-card.js +5 -5
  260. package/dist/components/state-badge-overlay/index.js +6 -0
  261. package/dist/components/state-badge-overlay/state-badge-overlay.js +90 -0
  262. package/dist/components/static-code/index.js +4 -0
  263. package/dist/components/static-code/static-code-copy.js +24 -0
  264. package/dist/components/static-code/static-code.js +41 -0
  265. package/dist/components/status-board/status-board.js +15 -8
  266. package/dist/components/status-indicator/status-indicator.js +3 -3
  267. package/dist/components/step-by-step/step-by-step.js +10 -8
  268. package/dist/components/step-navigation/step-navigation.js +2 -2
  269. package/dist/components/stepper/stepper.js +3 -3
  270. package/dist/components/sticky-metric/index.js +6 -0
  271. package/dist/components/sticky-metric/sticky-metric.js +83 -0
  272. package/dist/components/story-map/index.js +8 -0
  273. package/dist/components/story-map/story-map.js +414 -0
  274. package/dist/components/subscription-card/subscription-card.js +1 -1
  275. package/dist/components/switch/switch.js +1 -1
  276. package/dist/components/table-of-contents/table-of-contents.js +5 -2
  277. package/dist/components/table-of-contents-panel/table-of-contents-panel.js +8 -6
  278. package/dist/components/tabs/tabs.js +26 -8
  279. package/dist/components/tags-input/index.js +4 -0
  280. package/dist/components/tags-input/tags-input.js +186 -0
  281. package/dist/components/terminal/terminal.js +61 -37
  282. package/dist/components/theme-preset-provider/index.js +4 -0
  283. package/dist/components/theme-preset-provider/theme-preset-provider.js +55 -0
  284. package/dist/components/theme-switcher/index.js +4 -0
  285. package/dist/components/theme-switcher/theme-switcher.js +43 -0
  286. package/dist/components/theme-toggle/theme-toggle.js +2 -2
  287. package/dist/components/thinking-block/thinking-block.js +3 -3
  288. package/dist/components/thread-bubble/index.js +6 -0
  289. package/dist/components/thread-bubble/thread-bubble.js +85 -0
  290. package/dist/components/threshold-ring/index.js +6 -0
  291. package/dist/components/threshold-ring/threshold-ring.js +160 -0
  292. package/dist/components/ticker-tape/ticker-tape.js +4 -4
  293. package/dist/components/timeline/index.js +12 -0
  294. package/dist/components/timeline/timeline.js +239 -0
  295. package/dist/components/timeline-scrubber/index.js +6 -0
  296. package/dist/components/timeline-scrubber/timeline-scrubber.js +179 -0
  297. package/dist/components/tldr-section/tldr-section.js +11 -9
  298. package/dist/components/top-bar/index.js +4 -0
  299. package/dist/components/top-bar/top-bar.js +31 -0
  300. package/dist/components/tour/tour.js +10 -4
  301. package/dist/components/transaction-list/index.js +14 -0
  302. package/dist/components/transaction-list/transaction-list.js +253 -0
  303. package/dist/components/tree-view/index.js +6 -0
  304. package/dist/components/tree-view/tree-view.js +298 -0
  305. package/dist/components/tutorial-card/tutorial-card.js +2 -2
  306. package/dist/components/tutorial-complete/tutorial-complete.js +18 -16
  307. package/dist/components/tutorial-filters/tutorial-filters.js +2 -2
  308. package/dist/components/tutorial-intro-content/tutorial-intro-content.js +5 -5
  309. package/dist/components/tutorial-mdx/tutorial-mdx.js +20 -20
  310. package/dist/components/usage-breakdown/usage-breakdown.js +12 -7
  311. package/dist/components/video-embed/video-embed.js +2 -2
  312. package/dist/components/viewport-bookmarks/index.js +6 -0
  313. package/dist/components/viewport-bookmarks/viewport-bookmarks.js +118 -0
  314. package/dist/components/wallet-card/wallet-card.js +1 -1
  315. package/dist/components/watchlist/watchlist.js +7 -6
  316. package/dist/components/workspace-switcher/index.js +6 -0
  317. package/dist/components/workspace-switcher/workspace-switcher.js +61 -0
  318. package/dist/components/world-breadcrumbs/index.js +6 -0
  319. package/dist/components/world-breadcrumbs/world-breadcrumbs.js +114 -0
  320. package/dist/components/world-clock-bar/world-clock-bar.js +35 -14
  321. package/dist/components/zoom-hud/index.js +4 -0
  322. package/dist/components/zoom-hud/zoom-hud.js +61 -0
  323. package/dist/index.d.ts +8176 -202
  324. package/dist/index.js +27 -1
  325. package/dist/lib/theme-presets.js +32 -0
  326. package/dist/lib/use-theme-preset.js +95 -0
  327. package/dist/tailwind-preset.js +19 -19
  328. package/package.json +15 -10
  329. package/styles.css +38 -38
  330. package/themes/default.css +39 -39
  331. package/themes/presets.css +547 -0
@@ -1,4 +1,9 @@
1
1
  import { Badge, badgeVariants } from "./badge";
2
+ import {
3
+ Banner,
4
+ BannerAction,
5
+ bannerVariants
6
+ } from "./banner";
2
7
  import { Breadcrumb } from "./breadcrumb";
3
8
  import { Button, buttonVariants } from "./button";
4
9
  import {
@@ -56,12 +61,37 @@ import {
56
61
  DropdownMenuTrigger
57
62
  } from "./dropdown-menu";
58
63
  import { Input } from "./input";
64
+ import { Kbd, kbdVariants } from "./kbd";
59
65
  import { Checkbox } from "./checkbox";
60
66
  import { FileUpload } from "./file-upload";
61
67
  import { Label } from "./label";
68
+ import {
69
+ NewsletterSignup,
70
+ newsletterSignupReducer
71
+ } from "./newsletter-signup";
62
72
  import { NumberInput } from "./number-input";
63
73
  import { PasswordInput } from "./password-input";
64
74
  import { Switch } from "./switch";
75
+ import {
76
+ Form,
77
+ FormControl,
78
+ FormDescription,
79
+ FormField,
80
+ FormItem,
81
+ FormLabel,
82
+ FormMessage,
83
+ useFormField
84
+ } from "./form";
85
+ import {
86
+ MultiSelect
87
+ } from "./multi-select";
88
+ import { TagsInput } from "./tags-input";
89
+ import {
90
+ SegmentedControl,
91
+ SegmentedControlItem,
92
+ segmentedControlItemVariants,
93
+ segmentedControlVariants
94
+ } from "./segmented-control";
65
95
  import {
66
96
  toast,
67
97
  Toast,
@@ -71,6 +101,18 @@ import {
71
101
  Toaster,
72
102
  ToastTitle
73
103
  } from "./toast";
104
+ import {
105
+ AIArtifact,
106
+ AIArtifactContent,
107
+ AIArtifactCopyButton,
108
+ AIArtifactDownloadButton,
109
+ AIArtifactEditButton,
110
+ AIArtifactFullscreenButton,
111
+ AIArtifactToolbar,
112
+ AIArtifactVersion,
113
+ AIArtifactVersions,
114
+ useAIArtifact
115
+ } from "./ai-artifact";
74
116
  import { AIChatInput } from "./ai-chat-input";
75
117
  import {
76
118
  AIMessageBubble
@@ -84,6 +126,17 @@ import {
84
126
  import {
85
127
  AIToolCallDisplay
86
128
  } from "./ai-tool-call-display";
129
+ import {
130
+ AISidebar,
131
+ AISidebarClose,
132
+ AISidebarContent,
133
+ AISidebarFooter,
134
+ AISidebarHeader,
135
+ AISidebarProvider,
136
+ AISidebarTitle,
137
+ AISidebarTrigger,
138
+ useAISidebar
139
+ } from "./ai-sidebar";
87
140
  import { Textarea } from "./textarea";
88
141
  import {
89
142
  Select,
@@ -101,6 +154,9 @@ import { RadioGroup, RadioGroupItem } from "./radio-group";
101
154
  import { Slider } from "./slider";
102
155
  import { Toggle, toggleVariants } from "./toggle";
103
156
  import { ToggleGroup, ToggleGroupItem } from "./toggle-group";
157
+ import {
158
+ TreeView
159
+ } from "./tree-view";
104
160
  import {
105
161
  InputOTP,
106
162
  InputOTPGroup,
@@ -143,6 +199,10 @@ import {
143
199
  DrawerTitle,
144
200
  DrawerTrigger
145
201
  } from "./drawer";
202
+ import {
203
+ DocumentSiblingNav,
204
+ documentSiblingNavVariants
205
+ } from "./document-sibling-nav";
146
206
  import {
147
207
  AlertDialog,
148
208
  AlertDialogAction,
@@ -156,7 +216,13 @@ import {
156
216
  AlertDialogTitle,
157
217
  AlertDialogTrigger
158
218
  } from "./alert-dialog";
219
+ import {
220
+ HistoricTimeline
221
+ } from "./historic-timeline";
159
222
  import { HoverCard, HoverCardContent, HoverCardTrigger } from "./hover-card";
223
+ import {
224
+ HistoricalFigureCard
225
+ } from "./historical-figure-card";
160
226
  import {
161
227
  ContextMenu,
162
228
  ContextMenuCheckboxItem,
@@ -224,6 +290,22 @@ import {
224
290
  TableHeader,
225
291
  TableRow
226
292
  } from "./table";
293
+ import {
294
+ AutoReload
295
+ } from "./auto-reload";
296
+ import {
297
+ Timeline,
298
+ TimelineItem,
299
+ timelineVariants,
300
+ useTimelineOrientation
301
+ } from "./timeline";
302
+ import {
303
+ formatTransactionAmount,
304
+ formatTransactionDate,
305
+ TransactionList,
306
+ TransactionListPinned,
307
+ TransactionListSubscriptionRow
308
+ } from "./transaction-list";
227
309
  import { Avatar, AvatarFallback, AvatarImage } from "./avatar";
228
310
  import {
229
311
  AvatarGroup,
@@ -233,7 +315,17 @@ import {
233
315
  import { Skeleton } from "./skeleton";
234
316
  import { Separator } from "./separator";
235
317
  import { Alert, AlertDescription, AlertTitle, alertVariants } from "./alert";
318
+ import {
319
+ AgentActivity,
320
+ AgentStep,
321
+ AgentStepDetail,
322
+ AgentStepDuration,
323
+ AgentStepProgress,
324
+ AgentStepTitle,
325
+ useAgentStepStatus
326
+ } from "./agent-activity";
236
327
  import { StatCard, statCardVariants } from "./stat-card";
328
+ import { StaticCode } from "./static-code";
237
329
  import {
238
330
  dotVariants,
239
331
  StatusIndicator,
@@ -263,8 +355,35 @@ import {
263
355
  ActivityHeatmap
264
356
  } from "./activity-heatmap";
265
357
  import { Calendar } from "./calendar";
358
+ import {
359
+ ChoroplethLegend,
360
+ ChoroplethMap,
361
+ ChoroplethTooltip
362
+ } from "./choropleth-map";
363
+ import {
364
+ ChronoEvent,
365
+ ChronologicalTimeline
366
+ } from "./chronological-timeline";
266
367
  import { CountdownTimer } from "./countdown-timer";
368
+ import {
369
+ Map2D,
370
+ MapControls,
371
+ MapLayer,
372
+ MapMarker,
373
+ MapMarkerIcon,
374
+ MapPopup,
375
+ MapZoomIn,
376
+ MapZoomOut
377
+ } from "./map-2d";
267
378
  import { Marquee } from "./marquee";
379
+ import {
380
+ MapTimeline,
381
+ MapTimelineControls,
382
+ MapTimelineEvent,
383
+ MapTimelineLayer,
384
+ MapTimelinePlayButton,
385
+ MapTimelineSlider
386
+ } from "./map-timeline";
268
387
  import { NumberTicker } from "./number-ticker";
269
388
  import {
270
389
  Spinner,
@@ -274,20 +393,69 @@ import {
274
393
  WorldClockBar
275
394
  } from "./world-clock-bar";
276
395
  import { CodeBlock } from "./code-block";
396
+ import {
397
+ CopyButton,
398
+ useCopyToClipboard
399
+ } from "./copy-button";
277
400
  import { MDXContent } from "./mdx-content";
401
+ import {
402
+ CanvasShell
403
+ } from "./canvas-shell";
404
+ import {
405
+ CanvasView
406
+ } from "./canvas-view";
407
+ import { BottomBar } from "./bottom-bar";
408
+ import {
409
+ ChatDockSection
410
+ } from "./chat-dock-section";
411
+ import {
412
+ Globe3D,
413
+ GlobeArc,
414
+ GlobeMarker
415
+ } from "./globe-3d";
416
+ import { GlassPanel } from "./glass-panel";
417
+ import {
418
+ GeographyQuizMap,
419
+ GeographyQuizMapPrompt,
420
+ GeographyQuizMapResults,
421
+ GeographyQuizMapScore
422
+ } from "./geography-quiz-map";
423
+ import {
424
+ InfinitePlane
425
+ } from "./infinite-plane";
426
+ import { LeftRail } from "./left-rail";
427
+ import {
428
+ MiniMapPanel
429
+ } from "./mini-map-panel";
430
+ import {
431
+ OverviewBoard,
432
+ OverviewCard
433
+ } from "./overview-board";
278
434
  import {
279
435
  NavbarSaas,
280
436
  useMobile
281
437
  } from "./navbar-saas";
438
+ import { RightDock } from "./right-dock";
282
439
  import { Sidebar } from "./sidebar";
283
440
  import { SidebarProvider, useSidebar } from "./sidebar-provider";
284
441
  import { TableOfContents } from "./table-of-contents";
442
+ import { TopBar } from "./top-bar";
443
+ import {
444
+ ViewportBookmarks
445
+ } from "./viewport-bookmarks";
446
+ import {
447
+ WorldBreadcrumbs
448
+ } from "./world-breadcrumbs";
449
+ import { ZoomHUD } from "./zoom-hud";
285
450
  import {
286
451
  ActivityLog
287
452
  } from "./activity-log";
288
453
  import { BlogCard, ContentCard } from "./blog-card";
289
454
  import { CategoryFilter } from "./category-filter";
290
455
  import { Pagination } from "./pagination";
456
+ import {
457
+ ParallelTimeline
458
+ } from "./parallel-timeline";
291
459
  import { SearchBar } from "./search-bar";
292
460
  import {
293
461
  ScopeSelector
@@ -300,7 +468,9 @@ import {
300
468
  } from "./share-section";
301
469
  import { SearchDialog } from "./search-dialog";
302
470
  import { LangProvider } from "./lang-provider";
471
+ import { ThemePresetProvider } from "./theme-preset-provider";
303
472
  import { ThemeProvider } from "./theme-provider";
473
+ import { ThemeSwitcher } from "./theme-switcher";
304
474
  import { ThemeToggle } from "./theme-toggle";
305
475
  import {
306
476
  CandlestickChart
@@ -315,15 +485,29 @@ import {
315
485
  OrderBook
316
486
  } from "./order-book";
317
487
  import { ProfileSection } from "./profile-section";
488
+ import {
489
+ PromptTemplates
490
+ } from "./prompt-templates";
318
491
  import {
319
492
  PlanBadge
320
493
  } from "./plan-badge";
494
+ import {
495
+ PricingPlan,
496
+ PricingTable
497
+ } from "./pricing-table";
321
498
  import {
322
499
  RoleBadge
323
500
  } from "./role-badge";
501
+ import {
502
+ RouteMap
503
+ } from "./route-map";
324
504
  import {
325
505
  SparklineGrid
326
506
  } from "./sparkline-grid";
507
+ import {
508
+ StoryMap,
509
+ StoryMapChapter
510
+ } from "./story-map";
327
511
  import {
328
512
  SubscriptionCard
329
513
  } from "./subscription-card";
@@ -341,6 +525,12 @@ import { LiveFeed } from "./live-feed";
341
525
  import {
342
526
  MetricGauge
343
527
  } from "./metric-gauge";
528
+ import {
529
+ ModelComparison,
530
+ ModelComparisonColumn,
531
+ ModelComparisonMeta,
532
+ ModelComparisonVote
533
+ } from "./model-comparison";
344
534
  import {
345
535
  SeverityBadge,
346
536
  severityBadgeVariants
@@ -364,6 +554,10 @@ import {
364
554
  import {
365
555
  Checklist
366
556
  } from "./checklist";
557
+ import {
558
+ CivilizationCard,
559
+ CivilizationComparison
560
+ } from "./civilization-card";
367
561
  import {
368
562
  CodePlayground,
369
563
  FileTree
@@ -372,6 +566,18 @@ import {
372
566
  BeforeAfter,
373
567
  Comparison
374
568
  } from "./comparison";
569
+ import {
570
+ EmptyState,
571
+ emptyStateVariants
572
+ } from "./empty-state";
573
+ import {
574
+ EraColumn,
575
+ EraComparison,
576
+ EraDomain,
577
+ EraFigure,
578
+ EraHighlight,
579
+ useEraColumnColor
580
+ } from "./era-comparison";
375
581
  import { Exercise } from "./exercise";
376
582
  import { FAQ, FAQItem } from "./faq";
377
583
  import { Flashcard } from "./flashcard";
@@ -384,10 +590,38 @@ import {
384
590
  Prerequisites,
385
591
  Summary
386
592
  } from "./learning-objectives";
593
+ import {
594
+ Curriculum,
595
+ CurriculumLesson,
596
+ CurriculumModule
597
+ } from "./curriculum";
598
+ import {
599
+ PrimarySourceAnnotation,
600
+ PrimarySourceAnnotations,
601
+ PrimarySourceContext,
602
+ PrimarySourceMetadata,
603
+ PrimarySourceQuestions,
604
+ PrimarySourceRotate,
605
+ PrimarySourceToolbar,
606
+ PrimarySourceTranscription,
607
+ PrimarySourceViewer,
608
+ PrimarySourceZoomIn,
609
+ PrimarySourceZoomOut
610
+ } from "./primary-source-viewer";
387
611
  import { ProgressBar } from "./progress-bar";
388
612
  import {
389
613
  ProgressCard
390
614
  } from "./progress-card";
615
+ import {
616
+ ProgressTracker,
617
+ ProgressTrackerBadge,
618
+ ProgressTrackerModule,
619
+ ProgressTrackerModules,
620
+ ProgressTrackerOverview,
621
+ ProgressTrackerStat,
622
+ ProgressTrackerStats,
623
+ useProgressTrackerContext
624
+ } from "./progress-tracker";
391
625
  import {
392
626
  CommonMistake,
393
627
  ProTip
@@ -439,9 +673,21 @@ import {
439
673
  import {
440
674
  FloatingActionButton
441
675
  } from "./floating-action-button";
676
+ import {
677
+ FloatingToolbar
678
+ } from "./floating-toolbar";
679
+ import {
680
+ SelectionHalo
681
+ } from "./selection-halo";
682
+ import {
683
+ SnapGuides
684
+ } from "./snap-guides";
442
685
  import {
443
686
  KeyboardShortcutsHelp
444
687
  } from "./keyboard-shortcuts-help";
688
+ import {
689
+ KnowledgeCheck
690
+ } from "./knowledge-check";
445
691
  import {
446
692
  Slideshow
447
693
  } from "./slideshow";
@@ -459,9 +705,21 @@ import {
459
705
  import {
460
706
  HorizontalScrollRow
461
707
  } from "./horizontal-scroll-row";
708
+ import {
709
+ FollowMode
710
+ } from "./follow-mode";
711
+ import {
712
+ HandoffBeacon
713
+ } from "./handoff-beacon";
714
+ import {
715
+ HeatMapOverlay
716
+ } from "./heat-map-overlay";
462
717
  import {
463
718
  ViewSwitcher
464
719
  } from "./view-switcher";
720
+ import {
721
+ WorkspaceSwitcher
722
+ } from "./workspace-switcher";
465
723
  import {
466
724
  FlowControls,
467
725
  FlowDiagram,
@@ -469,15 +727,143 @@ import {
469
727
  FlowFullscreen,
470
728
  useFlowDiagram
471
729
  } from "./flow-diagram";
730
+ import {
731
+ GanttChart
732
+ } from "./gantt-chart";
733
+ import {
734
+ AlertPulse
735
+ } from "./alert-pulse";
736
+ import { AnchorPort } from "./anchor-port";
737
+ import {
738
+ BottomActivityStrip
739
+ } from "./bottom-activity-strip";
740
+ import {
741
+ CommentPin
742
+ } from "./comment-pin";
743
+ import {
744
+ ConnectorEdge
745
+ } from "./connector-edge";
746
+ import {
747
+ ContextLens
748
+ } from "./context-lens";
749
+ import { EdgeLabel } from "./edge-label";
750
+ import { GroupHull } from "./group-hull";
751
+ import {
752
+ HeatOverlay
753
+ } from "./heat-overlay";
754
+ import {
755
+ JarvisDock
756
+ } from "./jarvis-dock";
757
+ import {
758
+ LiveCursor
759
+ } from "./live-cursor";
760
+ import {
761
+ MetricCluster
762
+ } from "./metric-cluster";
763
+ import {
764
+ MultiSelectLasso
765
+ } from "./multi-select-lasso";
766
+ import {
767
+ ObjectCard
768
+ } from "./object-card";
769
+ import { ObjectHandle } from "./object-handle";
770
+ import {
771
+ ObjectInspector
772
+ } from "./object-inspector";
773
+ import {
774
+ PlaybackGhost
775
+ } from "./playback-ghost";
776
+ import {
777
+ PolicyDeliveryPanel
778
+ } from "./policy-delivery-panel";
779
+ import {
780
+ PresenceStack
781
+ } from "./presence-stack";
782
+ import {
783
+ PresenceSyncIndicator
784
+ } from "./presence-sync-indicator";
785
+ import {
786
+ PropertySection
787
+ } from "./property-section";
788
+ import {
789
+ RelationshipInspector
790
+ } from "./relationship-inspector";
791
+ import {
792
+ RoutingAssignmentPanel
793
+ } from "./routing-assignment-panel";
794
+ import {
795
+ RunTimeline
796
+ } from "./run-timeline";
797
+ import {
798
+ RuntimeOverviewPanel
799
+ } from "./runtime-overview-panel";
800
+ import {
801
+ SelectionPresence
802
+ } from "./selection-presence";
803
+ import {
804
+ StateBadgeOverlay
805
+ } from "./state-badge-overlay";
806
+ import {
807
+ StickyMetric
808
+ } from "./sticky-metric";
809
+ import {
810
+ ThreadBubble
811
+ } from "./thread-bubble";
812
+ import {
813
+ ThresholdRing
814
+ } from "./threshold-ring";
815
+ import {
816
+ TimelineScrubber
817
+ } from "./timeline-scrubber";
818
+ import {
819
+ ConversationEmpty,
820
+ ConversationHeader,
821
+ ConversationLoading,
822
+ ConversationMessages,
823
+ ConversationScrollButton,
824
+ ConversationSuggestions,
825
+ ConversationThread,
826
+ ConversationTitle
827
+ } from "./conversation-thread";
472
828
  import { InlineInput } from "./inline-input";
829
+ import {
830
+ InteractiveTimeline,
831
+ InteractiveTimelineFilter,
832
+ InteractiveTimelineToday,
833
+ InteractiveTimelineToolbar,
834
+ InteractiveTimelineZoomIn,
835
+ InteractiveTimelineZoomOut
836
+ } from "./interactive-timeline";
473
837
  import {
474
838
  ModelSelector
475
839
  } from "./model-selector";
476
840
  import { SidebarToggle } from "./sidebar-toggle";
477
841
  import { ThinkingBlock } from "./thinking-block";
842
+ import { Reasoning } from "./reasoning";
843
+ import {
844
+ ChainOfThought
845
+ } from "./chain-of-thought";
846
+ import { PromptInput } from "./prompt-input";
478
847
  export {
848
+ AIArtifact,
849
+ AIArtifactContent,
850
+ AIArtifactCopyButton,
851
+ AIArtifactDownloadButton,
852
+ AIArtifactEditButton,
853
+ AIArtifactFullscreenButton,
854
+ AIArtifactToolbar,
855
+ AIArtifactVersion,
856
+ AIArtifactVersions,
479
857
  AIChatInput,
480
858
  AIMessageBubble,
859
+ AISidebar,
860
+ AISidebarClose,
861
+ AISidebarContent,
862
+ AISidebarFooter,
863
+ AISidebarHeader,
864
+ AISidebarProvider,
865
+ AISidebarTitle,
866
+ AISidebarTrigger,
481
867
  AISourceCitation,
482
868
  AIStreamingText,
483
869
  AIToolCallDisplay,
@@ -487,6 +873,12 @@ export {
487
873
  AccordionTrigger,
488
874
  ActivityHeatmap,
489
875
  ActivityLog,
876
+ AgentActivity,
877
+ AgentStep,
878
+ AgentStepDetail,
879
+ AgentStepDuration,
880
+ AgentStepProgress,
881
+ AgentStepTitle,
490
882
  Alert,
491
883
  AlertDescription,
492
884
  AlertDialog,
@@ -500,25 +892,34 @@ export {
500
892
  AlertDialogPortal,
501
893
  AlertDialogTitle,
502
894
  AlertDialogTrigger,
895
+ AlertPulse,
503
896
  AlertTitle,
897
+ AnchorPort,
504
898
  AnimatedText,
505
899
  Annotation,
506
900
  AreaChart,
507
901
  AspectRatio,
902
+ AutoReload,
508
903
  Avatar,
509
904
  AvatarFallback,
510
905
  AvatarGroup,
511
906
  AvatarImage,
512
907
  Badge,
908
+ Banner,
909
+ BannerAction,
513
910
  BarChart,
514
911
  BeforeAfter,
515
912
  BlogCard,
516
913
  BorderBeam,
914
+ BottomActivityStrip,
915
+ BottomBar,
517
916
  Breadcrumb,
518
917
  Button,
519
918
  Calendar,
520
919
  Callout,
521
920
  CandlestickChart,
921
+ CanvasShell,
922
+ CanvasView,
522
923
  Card,
523
924
  CardContent,
524
925
  CardDescription,
@@ -531,8 +932,17 @@ export {
531
932
  CarouselNext,
532
933
  CarouselPrevious,
533
934
  CategoryFilter,
935
+ ChainOfThought,
936
+ ChatDockSection,
534
937
  Checkbox,
535
938
  Checklist,
939
+ ChoroplethLegend,
940
+ ChoroplethMap,
941
+ ChoroplethTooltip,
942
+ ChronoEvent,
943
+ ChronologicalTimeline,
944
+ CivilizationCard,
945
+ CivilizationComparison,
536
946
  CodeBlock,
537
947
  CodePlayground,
538
948
  Collapsible,
@@ -548,11 +958,14 @@ export {
548
958
  CommandList,
549
959
  CommandSeparator,
550
960
  CommandShortcut,
961
+ CommentPin,
551
962
  CommonMistake,
552
963
  Comparison,
553
964
  CompletionDialog,
965
+ ConnectorEdge,
554
966
  ContentCard,
555
967
  ContentIntro,
968
+ ContextLens,
556
969
  ContextMenu,
557
970
  ContextMenuCheckboxItem,
558
971
  ContextMenuContent,
@@ -568,9 +981,21 @@ export {
568
981
  ContextMenuSubContent,
569
982
  ContextMenuSubTrigger,
570
983
  ContextMenuTrigger,
984
+ ConversationEmpty,
985
+ ConversationHeader,
986
+ ConversationLoading,
987
+ ConversationMessages,
988
+ ConversationScrollButton,
989
+ ConversationSuggestions,
990
+ ConversationThread,
991
+ ConversationTitle,
571
992
  CookieConsent,
993
+ CopyButton,
572
994
  CountdownTimer,
573
995
  CreditBadge,
996
+ Curriculum,
997
+ CurriculumLesson,
998
+ CurriculumModule,
574
999
  DataList,
575
1000
  DataListItem,
576
1001
  DataListLabel,
@@ -587,6 +1012,7 @@ export {
587
1012
  DialogPortal,
588
1013
  DialogTitle,
589
1014
  DialogTrigger,
1015
+ DocumentSiblingNav,
590
1016
  Drawer,
591
1017
  DrawerClose,
592
1018
  DrawerContent,
@@ -612,6 +1038,13 @@ export {
612
1038
  DropdownMenuSubContent,
613
1039
  DropdownMenuSubTrigger,
614
1040
  DropdownMenuTrigger,
1041
+ EdgeLabel,
1042
+ EmptyState,
1043
+ EraColumn,
1044
+ EraComparison,
1045
+ EraDomain,
1046
+ EraFigure,
1047
+ EraHighlight,
615
1048
  Exercise,
616
1049
  FAQ,
617
1050
  FAQItem,
@@ -620,30 +1053,80 @@ export {
620
1053
  FilterBar,
621
1054
  Flashcard,
622
1055
  FloatingActionButton,
1056
+ FloatingToolbar,
623
1057
  FlowControls,
624
1058
  FlowDiagram,
625
1059
  FlowErrorBoundary,
626
1060
  FlowFullscreen,
1061
+ FollowMode,
1062
+ Form,
1063
+ FormControl,
1064
+ FormDescription,
1065
+ FormField,
1066
+ FormItem,
1067
+ FormLabel,
1068
+ FormMessage,
1069
+ GanttChart,
1070
+ GeographyQuizMap,
1071
+ GeographyQuizMapPrompt,
1072
+ GeographyQuizMapResults,
1073
+ GeographyQuizMapScore,
1074
+ GlassPanel,
1075
+ Globe3D,
1076
+ GlobeArc,
1077
+ GlobeMarker,
627
1078
  Glossary,
1079
+ GroupHull,
1080
+ HandoffBeacon,
1081
+ HeatMapOverlay,
1082
+ HeatOverlay,
628
1083
  Highlight,
1084
+ HistoricTimeline,
1085
+ HistoricalFigureCard,
629
1086
  HorizontalScrollRow,
630
1087
  HoverCard,
631
1088
  HoverCardContent,
632
1089
  HoverCardTrigger,
1090
+ InfinitePlane,
633
1091
  InlineInput,
634
1092
  Input,
635
1093
  InputOTP,
636
1094
  InputOTPGroup,
637
1095
  InputOTPSeparator,
638
1096
  InputOTPSlot,
1097
+ InteractiveTimeline,
1098
+ InteractiveTimelineFilter,
1099
+ InteractiveTimelineToday,
1100
+ InteractiveTimelineToolbar,
1101
+ InteractiveTimelineZoomIn,
1102
+ InteractiveTimelineZoomOut,
1103
+ JarvisDock,
1104
+ Kbd,
639
1105
  KeyConcept,
640
1106
  KeyboardShortcutsHelp,
1107
+ KnowledgeCheck,
641
1108
  Label,
642
1109
  LangProvider,
643
1110
  LearningObjectives,
1111
+ LeftRail,
644
1112
  LineChart,
1113
+ LiveCursor,
645
1114
  LiveFeed,
646
1115
  MDXContent,
1116
+ Map2D,
1117
+ MapControls,
1118
+ MapLayer,
1119
+ MapMarker,
1120
+ MapMarkerIcon,
1121
+ MapPopup,
1122
+ MapTimeline,
1123
+ MapTimelineControls,
1124
+ MapTimelineEvent,
1125
+ MapTimelineLayer,
1126
+ MapTimelinePlayButton,
1127
+ MapTimelineSlider,
1128
+ MapZoomIn,
1129
+ MapZoomOut,
647
1130
  MarketTreemap,
648
1131
  Marquee,
649
1132
  Menubar,
@@ -662,8 +1145,16 @@ export {
662
1145
  MenubarSubContent,
663
1146
  MenubarSubTrigger,
664
1147
  MenubarTrigger,
1148
+ MetricCluster,
665
1149
  MetricGauge,
1150
+ MiniMapPanel,
1151
+ ModelComparison,
1152
+ ModelComparisonColumn,
1153
+ ModelComparisonMeta,
1154
+ ModelComparisonVote,
666
1155
  ModelSelector,
1156
+ MultiSelect,
1157
+ MultiSelectLasso,
667
1158
  NavbarSaas,
668
1159
  NavigationMenu,
669
1160
  NavigationMenuContent,
@@ -673,34 +1164,77 @@ export {
673
1164
  NavigationMenuList,
674
1165
  NavigationMenuTrigger,
675
1166
  NavigationMenuViewport,
1167
+ NewsletterSignup,
676
1168
  NumberInput,
677
1169
  NumberTicker,
1170
+ ObjectCard,
1171
+ ObjectHandle,
1172
+ ObjectInspector,
678
1173
  OrderBook,
1174
+ OverviewBoard,
1175
+ OverviewCard,
679
1176
  Pagination,
1177
+ ParallelTimeline,
680
1178
  PasswordInput,
681
1179
  PlanBadge,
1180
+ PlaybackGhost,
1181
+ PolicyDeliveryPanel,
682
1182
  Popover,
683
1183
  PopoverAnchor,
684
1184
  PopoverContent,
685
1185
  PopoverTrigger,
686
1186
  Prerequisites,
1187
+ PresenceStack,
1188
+ PresenceSyncIndicator,
1189
+ PricingPlan,
1190
+ PricingTable,
1191
+ PrimarySourceAnnotation,
1192
+ PrimarySourceAnnotations,
1193
+ PrimarySourceContext,
1194
+ PrimarySourceMetadata,
1195
+ PrimarySourceQuestions,
1196
+ PrimarySourceRotate,
1197
+ PrimarySourceToolbar,
1198
+ PrimarySourceTranscription,
1199
+ PrimarySourceViewer,
1200
+ PrimarySourceZoomIn,
1201
+ PrimarySourceZoomOut,
687
1202
  ProTip,
688
1203
  ProfileSection,
689
1204
  ProgressBar,
690
1205
  ProgressCard,
1206
+ ProgressTracker,
1207
+ ProgressTrackerBadge,
1208
+ ProgressTrackerModule,
1209
+ ProgressTrackerModules,
1210
+ ProgressTrackerOverview,
1211
+ ProgressTrackerStat,
1212
+ ProgressTrackerStats,
1213
+ PromptInput,
1214
+ PromptTemplates,
1215
+ PropertySection,
691
1216
  Quiz,
692
1217
  RadioGroup,
693
1218
  RadioGroupItem,
694
1219
  Rating,
1220
+ Reasoning,
1221
+ RelationshipInspector,
695
1222
  ResizableHandle,
696
1223
  ResizablePanel,
697
1224
  ResizablePanelGroup,
1225
+ RightDock,
698
1226
  RoleBadge,
1227
+ RouteMap,
1228
+ RoutingAssignmentPanel,
1229
+ RunTimeline,
1230
+ RuntimeOverviewPanel,
699
1231
  ScopeSelector,
700
1232
  ScrollArea,
701
1233
  ScrollBar,
702
1234
  SearchBar,
703
1235
  SearchDialog,
1236
+ SegmentedControl,
1237
+ SegmentedControlItem,
704
1238
  Select,
705
1239
  SelectContent,
706
1240
  SelectGroup,
@@ -711,6 +1245,8 @@ export {
711
1245
  SelectSeparator,
712
1246
  SelectTrigger,
713
1247
  SelectValue,
1248
+ SelectionHalo,
1249
+ SelectionPresence,
714
1250
  Separator,
715
1251
  SeverityBadge,
716
1252
  ShareDialog,
@@ -732,16 +1268,22 @@ export {
732
1268
  Skeleton,
733
1269
  Slider,
734
1270
  Slideshow,
1271
+ SnapGuides,
735
1272
  SocialFAB,
736
1273
  SparklineGrid,
737
1274
  Spinner,
738
1275
  StatCard,
1276
+ StateBadgeOverlay,
1277
+ StaticCode,
739
1278
  StatusBoard,
740
1279
  StatusIndicator,
741
1280
  Step,
742
1281
  StepByStep,
743
1282
  StepNavigation,
744
1283
  Stepper,
1284
+ StickyMetric,
1285
+ StoryMap,
1286
+ StoryMapChapter,
745
1287
  SubscriptionCard,
746
1288
  Summary,
747
1289
  Switch,
@@ -760,12 +1302,20 @@ export {
760
1302
  TabsContent,
761
1303
  TabsList,
762
1304
  TabsTrigger,
1305
+ TagsInput,
763
1306
  Terminal,
764
1307
  Textarea,
1308
+ ThemePresetProvider,
765
1309
  ThemeProvider,
1310
+ ThemeSwitcher,
766
1311
  ThemeToggle,
767
1312
  ThinkingBlock,
1313
+ ThreadBubble,
1314
+ ThresholdRing,
768
1315
  TickerTape,
1316
+ Timeline,
1317
+ TimelineItem,
1318
+ TimelineScrubber,
769
1319
  Toast,
770
1320
  ToastAction,
771
1321
  ToastClose,
@@ -779,7 +1329,12 @@ export {
779
1329
  TooltipContent,
780
1330
  TooltipProvider,
781
1331
  TooltipTrigger,
1332
+ TopBar,
782
1333
  Tour,
1334
+ TransactionList,
1335
+ TransactionListPinned,
1336
+ TransactionListSubscriptionRow,
1337
+ TreeView,
783
1338
  TruncatedText,
784
1339
  TutorialCard,
785
1340
  TutorialComplete,
@@ -790,27 +1345,49 @@ export {
790
1345
  UsageBreakdown,
791
1346
  VideoEmbed,
792
1347
  ViewSwitcher,
1348
+ ViewportBookmarks,
793
1349
  WalletCard,
794
1350
  Watchlist,
1351
+ WorkspaceSwitcher,
1352
+ WorldBreadcrumbs,
795
1353
  WorldClockBar,
1354
+ ZoomHUD,
796
1355
  alertVariants,
797
1356
  avatarGroupVariants,
798
1357
  avatarItemVariants,
799
1358
  badgeVariants,
1359
+ bannerVariants,
800
1360
  buttonVariants,
801
1361
  cookieConsentVariants,
802
1362
  dataListItemVariants,
803
1363
  dataListVariants,
1364
+ documentSiblingNavVariants,
804
1365
  dotVariants,
1366
+ emptyStateVariants,
1367
+ formatTransactionAmount,
1368
+ formatTransactionDate,
1369
+ kbdVariants,
805
1370
  mdxComponents,
806
1371
  navigationMenuTriggerStyle,
1372
+ newsletterSignupReducer,
1373
+ segmentedControlItemVariants,
1374
+ segmentedControlVariants,
807
1375
  severityBadgeVariants,
808
1376
  statCardVariants,
809
1377
  statusIndicatorVariants,
1378
+ timelineVariants,
810
1379
  toast,
811
1380
  toggleVariants,
1381
+ useAIArtifact,
1382
+ useAISidebar,
1383
+ useAgentStepStatus,
1384
+ useCopyToClipboard,
1385
+ useEraColumnColor,
812
1386
  useFlowDiagram,
1387
+ useFormField,
813
1388
  useMobile,
1389
+ useProgressTrackerContext,
814
1390
  useSidebar,
815
- useSocialFab
1391
+ useSocialFab,
1392
+ useTimelineOrientation
816
1393
  };