@agent-native/core 0.76.3 → 0.76.4

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 (421) hide show
  1. package/corpus/core/CHANGELOG.md +6 -0
  2. package/corpus/core/package.json +1 -1
  3. package/corpus/core/src/client/AgentPanel.tsx +3 -3
  4. package/corpus/core/src/client/AgentTaskCard.tsx +2 -1
  5. package/corpus/core/src/client/AppearancePicker.tsx +1 -1
  6. package/corpus/core/src/client/AssistantChat.tsx +3 -3
  7. package/corpus/core/src/client/CommandMenu.tsx +4 -4
  8. package/corpus/core/src/client/ErrorBoundary.tsx +1 -1
  9. package/corpus/core/src/client/MultiTabAssistantChat.tsx +11 -11
  10. package/corpus/core/src/client/NewWorkspaceAppFlow.tsx +5 -5
  11. package/corpus/core/src/client/components/ui/dropdown-menu.tsx +9 -9
  12. package/corpus/core/src/client/components/ui/sheet.tsx +1 -1
  13. package/corpus/core/src/client/composer/ComposerPlusMenu.tsx +6 -6
  14. package/corpus/core/src/client/composer/MentionPopover.tsx +4 -4
  15. package/corpus/core/src/client/composer/PastedTextChip.tsx +3 -3
  16. package/corpus/core/src/client/composer/PromptComposer.tsx +3 -3
  17. package/corpus/core/src/client/composer/TiptapComposer.tsx +16 -16
  18. package/corpus/core/src/client/guided-questions.tsx +6 -8
  19. package/corpus/core/src/client/i18n.tsx +2 -2
  20. package/corpus/core/src/client/integrations/IntegrationCard.tsx +2 -2
  21. package/corpus/core/src/client/integrations/IntegrationsPanel.tsx +4 -4
  22. package/corpus/core/src/client/notifications/NotificationsBell.tsx +3 -3
  23. package/corpus/core/src/client/onboarding/OnboardingBanner.tsx +3 -3
  24. package/corpus/core/src/client/onboarding/OnboardingPanel.tsx +17 -10
  25. package/corpus/core/src/client/org/OrgSwitcher.tsx +13 -11
  26. package/corpus/core/src/client/org/TeamPage.tsx +2 -2
  27. package/corpus/core/src/client/settings/AgentsSection.tsx +3 -3
  28. package/corpus/core/src/client/settings/AutomationsSection.tsx +3 -3
  29. package/corpus/core/src/client/settings/SecretsSection.tsx +2 -2
  30. package/corpus/core/src/client/settings/SettingsPanel.tsx +5 -7
  31. package/corpus/core/src/client/settings/SettingsSection.tsx +1 -1
  32. package/corpus/core/src/client/settings/UsageSection.tsx +3 -3
  33. package/corpus/core/src/client/settings/VoiceTranscriptionSection.tsx +3 -3
  34. package/corpus/core/src/client/sharing/ShareButton.tsx +7 -7
  35. package/corpus/core/src/client/sharing/ShareDialog.tsx +3 -3
  36. package/corpus/core/src/styles/agent-conversation.css +10 -10
  37. package/corpus/core/src/styles/blocks.css +2 -2
  38. package/corpus/core/src/styles/rich-markdown-editor.css +2 -2
  39. package/corpus/templates/analytics/app/components/layout/MobileNav.tsx +1 -1
  40. package/corpus/templates/analytics/app/components/ui/alert-dialog.tsx +1 -1
  41. package/corpus/templates/analytics/app/components/ui/alert.tsx +1 -1
  42. package/corpus/templates/analytics/app/components/ui/breadcrumb.tsx +1 -1
  43. package/corpus/templates/analytics/app/components/ui/calendar.tsx +6 -6
  44. package/corpus/templates/analytics/app/components/ui/carousel.tsx +6 -6
  45. package/corpus/templates/analytics/app/components/ui/command.tsx +2 -2
  46. package/corpus/templates/analytics/app/components/ui/context-menu.tsx +9 -9
  47. package/corpus/templates/analytics/app/components/ui/date-picker.tsx +1 -1
  48. package/corpus/templates/analytics/app/components/ui/dialog.tsx +2 -2
  49. package/corpus/templates/analytics/app/components/ui/drawer.tsx +1 -1
  50. package/corpus/templates/analytics/app/components/ui/dropdown-menu.tsx +9 -9
  51. package/corpus/templates/analytics/app/components/ui/input-otp.tsx +1 -1
  52. package/corpus/templates/analytics/app/components/ui/menubar.tsx +9 -9
  53. package/corpus/templates/analytics/app/components/ui/navigation-menu.tsx +3 -3
  54. package/corpus/templates/analytics/app/components/ui/pagination.tsx +4 -4
  55. package/corpus/templates/analytics/app/components/ui/scroll-area.tsx +1 -1
  56. package/corpus/templates/analytics/app/components/ui/select.tsx +3 -3
  57. package/corpus/templates/analytics/app/components/ui/sheet.tsx +2 -2
  58. package/corpus/templates/analytics/app/components/ui/sidebar.tsx +6 -6
  59. package/corpus/templates/analytics/app/components/ui/table.tsx +2 -2
  60. package/corpus/templates/analytics/app/components/ui/toast.tsx +3 -3
  61. package/corpus/templates/assets/app/components/layout/Layout.tsx +2 -2
  62. package/corpus/templates/assets/app/components/layout/Sidebar.tsx +12 -12
  63. package/corpus/templates/assets/app/components/ui/alert-dialog.tsx +1 -1
  64. package/corpus/templates/assets/app/components/ui/alert.tsx +1 -1
  65. package/corpus/templates/assets/app/components/ui/breadcrumb.tsx +1 -1
  66. package/corpus/templates/assets/app/components/ui/dialog.tsx +2 -2
  67. package/corpus/templates/assets/app/components/ui/dropdown-menu.tsx +9 -9
  68. package/corpus/templates/assets/app/components/ui/pagination.tsx +4 -4
  69. package/corpus/templates/assets/app/components/ui/scroll-area.tsx +1 -1
  70. package/corpus/templates/assets/app/components/ui/select.tsx +3 -3
  71. package/corpus/templates/assets/app/components/ui/sheet.tsx +2 -2
  72. package/corpus/templates/assets/app/components/ui/table.tsx +2 -2
  73. package/corpus/templates/assets/app/routes/library.tsx +3 -3
  74. package/corpus/templates/assets/app/routes/settings.tsx +1 -1
  75. package/corpus/templates/brain/app/components/layout/Sidebar.tsx +5 -5
  76. package/corpus/templates/brain/app/components/ui/dropdown-menu.tsx +9 -9
  77. package/corpus/templates/brain/app/components/ui/select.tsx +3 -3
  78. package/corpus/templates/brain/app/components/ui/sheet.tsx +2 -2
  79. package/corpus/templates/brain/app/components/ui/table.tsx +2 -2
  80. package/corpus/templates/calendar/app/components/calendar/GoogleConnectBanner.tsx +6 -6
  81. package/corpus/templates/calendar/app/components/calendar/GoogleSetupWizard.tsx +3 -3
  82. package/corpus/templates/calendar/app/components/layout/Sidebar.tsx +11 -9
  83. package/corpus/templates/calendar/app/components/ui/alert-dialog.tsx +1 -1
  84. package/corpus/templates/calendar/app/components/ui/alert.tsx +1 -1
  85. package/corpus/templates/calendar/app/components/ui/breadcrumb.tsx +1 -1
  86. package/corpus/templates/calendar/app/components/ui/calendar.tsx +5 -5
  87. package/corpus/templates/calendar/app/components/ui/carousel.tsx +6 -6
  88. package/corpus/templates/calendar/app/components/ui/command.tsx +2 -2
  89. package/corpus/templates/calendar/app/components/ui/context-menu.tsx +9 -9
  90. package/corpus/templates/calendar/app/components/ui/dialog.tsx +2 -2
  91. package/corpus/templates/calendar/app/components/ui/drawer.tsx +1 -1
  92. package/corpus/templates/calendar/app/components/ui/dropdown-menu.tsx +9 -9
  93. package/corpus/templates/calendar/app/components/ui/input-otp.tsx +1 -1
  94. package/corpus/templates/calendar/app/components/ui/menubar.tsx +9 -9
  95. package/corpus/templates/calendar/app/components/ui/navigation-menu.tsx +3 -3
  96. package/corpus/templates/calendar/app/components/ui/pagination.tsx +4 -4
  97. package/corpus/templates/calendar/app/components/ui/scroll-area.tsx +1 -1
  98. package/corpus/templates/calendar/app/components/ui/select.tsx +3 -3
  99. package/corpus/templates/calendar/app/components/ui/sheet.tsx +2 -2
  100. package/corpus/templates/calendar/app/components/ui/sidebar.tsx +6 -6
  101. package/corpus/templates/calendar/app/components/ui/sonner.tsx +1 -1
  102. package/corpus/templates/calendar/app/components/ui/table.tsx +2 -2
  103. package/corpus/templates/calendar/app/components/ui/toast.tsx +3 -3
  104. package/corpus/templates/calendar/app/pages/Settings.tsx +5 -5
  105. package/corpus/templates/chat/app/components/layout/Sidebar.tsx +9 -9
  106. package/corpus/templates/chat/app/components/ui/alert-dialog.tsx +1 -1
  107. package/corpus/templates/chat/app/components/ui/alert.tsx +1 -1
  108. package/corpus/templates/chat/app/components/ui/breadcrumb.tsx +1 -1
  109. package/corpus/templates/chat/app/components/ui/calendar.tsx +5 -5
  110. package/corpus/templates/chat/app/components/ui/carousel.tsx +6 -6
  111. package/corpus/templates/chat/app/components/ui/command.tsx +2 -2
  112. package/corpus/templates/chat/app/components/ui/context-menu.tsx +9 -9
  113. package/corpus/templates/chat/app/components/ui/dialog.tsx +2 -2
  114. package/corpus/templates/chat/app/components/ui/drawer.tsx +1 -1
  115. package/corpus/templates/chat/app/components/ui/dropdown-menu.tsx +9 -9
  116. package/corpus/templates/chat/app/components/ui/input-otp.tsx +1 -1
  117. package/corpus/templates/chat/app/components/ui/menubar.tsx +9 -9
  118. package/corpus/templates/chat/app/components/ui/navigation-menu.tsx +3 -3
  119. package/corpus/templates/chat/app/components/ui/pagination.tsx +4 -4
  120. package/corpus/templates/chat/app/components/ui/scroll-area.tsx +1 -1
  121. package/corpus/templates/chat/app/components/ui/select.tsx +3 -3
  122. package/corpus/templates/chat/app/components/ui/sheet.tsx +2 -2
  123. package/corpus/templates/chat/app/components/ui/sidebar.tsx +6 -6
  124. package/corpus/templates/chat/app/components/ui/table.tsx +2 -2
  125. package/corpus/templates/chat/app/components/ui/toast.tsx +3 -3
  126. package/corpus/templates/clips/app/components/capture-install-options.tsx +3 -3
  127. package/corpus/templates/clips/app/components/editable-recording-title.tsx +1 -1
  128. package/corpus/templates/clips/app/components/library/bulk-action-toolbar.tsx +3 -3
  129. package/corpus/templates/clips/app/components/library/folder-tree.tsx +5 -5
  130. package/corpus/templates/clips/app/components/library/library-layout.tsx +3 -3
  131. package/corpus/templates/clips/app/components/library/organization-switcher.tsx +4 -4
  132. package/corpus/templates/clips/app/components/library/recording-card.tsx +11 -11
  133. package/corpus/templates/clips/app/components/library/search-bar.tsx +4 -4
  134. package/corpus/templates/clips/app/components/library/space-card.tsx +1 -1
  135. package/corpus/templates/clips/app/components/library/tag-input.tsx +1 -1
  136. package/corpus/templates/clips/app/components/meetings/quick-ask-sidebar.tsx +2 -2
  137. package/corpus/templates/clips/app/components/recorder/camera-visualizer.tsx +2 -2
  138. package/corpus/templates/clips/app/components/recorder/microphone-visualizer.tsx +1 -1
  139. package/corpus/templates/clips/app/components/recorder/pre-record-panel.tsx +4 -4
  140. package/corpus/templates/clips/app/components/recorder/storage-setup-card.tsx +1 -1
  141. package/corpus/templates/clips/app/components/sharing/share-ui.tsx +2 -2
  142. package/corpus/templates/clips/app/components/ui/alert-dialog.tsx +1 -1
  143. package/corpus/templates/clips/app/components/ui/alert.tsx +1 -1
  144. package/corpus/templates/clips/app/components/ui/breadcrumb.tsx +1 -1
  145. package/corpus/templates/clips/app/components/ui/calendar.tsx +5 -5
  146. package/corpus/templates/clips/app/components/ui/carousel.tsx +6 -6
  147. package/corpus/templates/clips/app/components/ui/command.tsx +2 -2
  148. package/corpus/templates/clips/app/components/ui/context-menu.tsx +9 -9
  149. package/corpus/templates/clips/app/components/ui/dialog.tsx +2 -2
  150. package/corpus/templates/clips/app/components/ui/drawer.tsx +1 -1
  151. package/corpus/templates/clips/app/components/ui/dropdown-menu.tsx +9 -9
  152. package/corpus/templates/clips/app/components/ui/input-otp.tsx +1 -1
  153. package/corpus/templates/clips/app/components/ui/menubar.tsx +9 -9
  154. package/corpus/templates/clips/app/components/ui/navigation-menu.tsx +3 -3
  155. package/corpus/templates/clips/app/components/ui/pagination.tsx +4 -4
  156. package/corpus/templates/clips/app/components/ui/scroll-area.tsx +1 -1
  157. package/corpus/templates/clips/app/components/ui/select.tsx +3 -3
  158. package/corpus/templates/clips/app/components/ui/sheet.tsx +2 -2
  159. package/corpus/templates/clips/app/components/ui/sidebar.tsx +6 -6
  160. package/corpus/templates/clips/app/components/ui/table.tsx +2 -2
  161. package/corpus/templates/clips/app/components/ui/toast.tsx +3 -3
  162. package/corpus/templates/clips/app/components/workspace/branding-editor.tsx +1 -1
  163. package/corpus/templates/clips/app/components/workspace/insights-hub.tsx +2 -2
  164. package/corpus/templates/clips/app/components/workspace/invite-dialog.tsx +2 -2
  165. package/corpus/templates/clips/app/components/workspace/top-creators-table.tsx +6 -6
  166. package/corpus/templates/clips/app/components/workspace/top-videos-table.tsx +2 -2
  167. package/corpus/templates/clips/app/routes/_app.dictate.tsx +4 -4
  168. package/corpus/templates/clips/app/routes/_app.meetings._index.tsx +7 -7
  169. package/corpus/templates/clips/app/routes/_app.settings._index.tsx +1 -1
  170. package/corpus/templates/clips/app/routes/download.tsx +2 -2
  171. package/corpus/templates/clips/app/routes/invite.$token.tsx +2 -2
  172. package/corpus/templates/clips/app/routes/r.$recordingId.tsx +3 -3
  173. package/corpus/templates/clips/app/routes/record.tsx +5 -5
  174. package/corpus/templates/clips/app/routes/share.$shareId.tsx +7 -7
  175. package/corpus/templates/content/app/components/EmptyState.tsx +1 -1
  176. package/corpus/templates/content/app/components/editor/DocumentToolbar.tsx +17 -17
  177. package/corpus/templates/content/app/components/layout/Layout.tsx +2 -2
  178. package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +10 -9
  179. package/corpus/templates/content/app/components/sidebar/DocumentTreeItem.tsx +10 -6
  180. package/corpus/templates/content/app/components/sidebar/NotionButton.tsx +3 -3
  181. package/corpus/templates/content/app/components/ui/alert-dialog.tsx +1 -1
  182. package/corpus/templates/content/app/components/ui/dialog.tsx +2 -2
  183. package/corpus/templates/content/app/components/ui/dropdown-menu.tsx +9 -9
  184. package/corpus/templates/content/app/components/ui/scroll-area.tsx +1 -1
  185. package/corpus/templates/content/app/components/ui/sheet.tsx +2 -2
  186. package/corpus/templates/content/app/components/ui/table.tsx +2 -2
  187. package/corpus/templates/content/app/components/ui/toast.tsx +3 -3
  188. package/corpus/templates/design/app/components/layout/Layout.tsx +3 -3
  189. package/corpus/templates/design/app/components/layout/Sidebar.tsx +3 -3
  190. package/corpus/templates/design/app/components/ui/alert-dialog.tsx +1 -1
  191. package/corpus/templates/design/app/components/ui/alert.tsx +1 -1
  192. package/corpus/templates/design/app/components/ui/breadcrumb.tsx +1 -1
  193. package/corpus/templates/design/app/components/ui/calendar.tsx +5 -5
  194. package/corpus/templates/design/app/components/ui/carousel.tsx +6 -6
  195. package/corpus/templates/design/app/components/ui/command.tsx +2 -2
  196. package/corpus/templates/design/app/components/ui/context-menu.tsx +9 -9
  197. package/corpus/templates/design/app/components/ui/dialog.tsx +2 -2
  198. package/corpus/templates/design/app/components/ui/drawer.tsx +1 -1
  199. package/corpus/templates/design/app/components/ui/dropdown-menu.tsx +9 -9
  200. package/corpus/templates/design/app/components/ui/input-otp.tsx +1 -1
  201. package/corpus/templates/design/app/components/ui/menubar.tsx +9 -9
  202. package/corpus/templates/design/app/components/ui/navigation-menu.tsx +3 -3
  203. package/corpus/templates/design/app/components/ui/pagination.tsx +4 -4
  204. package/corpus/templates/design/app/components/ui/scroll-area.tsx +1 -1
  205. package/corpus/templates/design/app/components/ui/select.tsx +3 -3
  206. package/corpus/templates/design/app/components/ui/sheet.tsx +2 -2
  207. package/corpus/templates/design/app/components/ui/sidebar.tsx +6 -6
  208. package/corpus/templates/design/app/components/ui/table.tsx +2 -2
  209. package/corpus/templates/design/app/components/ui/toast.tsx +3 -3
  210. package/corpus/templates/design/app/pages/DesignSystems.tsx +6 -8
  211. package/corpus/templates/design/app/pages/Index.tsx +8 -8
  212. package/corpus/templates/design/app/pages/NotFound.tsx +1 -1
  213. package/corpus/templates/design/app/pages/Templates.tsx +2 -2
  214. package/corpus/templates/forms/app/components/layout/Sidebar.tsx +3 -3
  215. package/corpus/templates/forms/app/components/ui/alert-dialog.tsx +1 -1
  216. package/corpus/templates/forms/app/components/ui/alert.tsx +1 -1
  217. package/corpus/templates/forms/app/components/ui/breadcrumb.tsx +1 -1
  218. package/corpus/templates/forms/app/components/ui/calendar.tsx +9 -6
  219. package/corpus/templates/forms/app/components/ui/carousel.tsx +6 -6
  220. package/corpus/templates/forms/app/components/ui/command.tsx +2 -2
  221. package/corpus/templates/forms/app/components/ui/context-menu.tsx +9 -9
  222. package/corpus/templates/forms/app/components/ui/dialog.tsx +2 -2
  223. package/corpus/templates/forms/app/components/ui/drawer.tsx +1 -1
  224. package/corpus/templates/forms/app/components/ui/dropdown-menu.tsx +9 -9
  225. package/corpus/templates/forms/app/components/ui/input-otp.tsx +1 -1
  226. package/corpus/templates/forms/app/components/ui/menubar.tsx +9 -9
  227. package/corpus/templates/forms/app/components/ui/navigation-menu.tsx +3 -3
  228. package/corpus/templates/forms/app/components/ui/pagination.tsx +4 -4
  229. package/corpus/templates/forms/app/components/ui/scroll-area.tsx +1 -1
  230. package/corpus/templates/forms/app/components/ui/select.tsx +3 -3
  231. package/corpus/templates/forms/app/components/ui/sheet.tsx +2 -2
  232. package/corpus/templates/forms/app/components/ui/sidebar.tsx +6 -6
  233. package/corpus/templates/forms/app/components/ui/table.tsx +2 -2
  234. package/corpus/templates/forms/app/components/ui/toast.tsx +3 -3
  235. package/corpus/templates/forms/app/pages/FormBuilderPage.tsx +18 -18
  236. package/corpus/templates/forms/app/pages/FormsListPage.tsx +9 -9
  237. package/corpus/templates/macros/app/components/layout/AppLayout.tsx +4 -4
  238. package/corpus/templates/macros/app/components/ui/alert-dialog.tsx +1 -1
  239. package/corpus/templates/macros/app/components/ui/alert.tsx +1 -1
  240. package/corpus/templates/macros/app/components/ui/breadcrumb.tsx +1 -1
  241. package/corpus/templates/macros/app/components/ui/command.tsx +2 -2
  242. package/corpus/templates/macros/app/components/ui/context-menu.tsx +9 -9
  243. package/corpus/templates/macros/app/components/ui/dialog.tsx +2 -2
  244. package/corpus/templates/macros/app/components/ui/drawer.tsx +1 -1
  245. package/corpus/templates/macros/app/components/ui/dropdown-menu.tsx +9 -9
  246. package/corpus/templates/macros/app/components/ui/menubar.tsx +9 -9
  247. package/corpus/templates/macros/app/components/ui/navigation-menu.tsx +3 -3
  248. package/corpus/templates/macros/app/components/ui/pagination.tsx +4 -4
  249. package/corpus/templates/macros/app/components/ui/scroll-area.tsx +1 -1
  250. package/corpus/templates/macros/app/components/ui/select.tsx +3 -3
  251. package/corpus/templates/macros/app/components/ui/sheet.tsx +2 -2
  252. package/corpus/templates/macros/app/components/ui/table.tsx +2 -2
  253. package/corpus/templates/macros/app/components/ui/toast.tsx +3 -3
  254. package/corpus/templates/macros/app/routes/_index.tsx +2 -2
  255. package/corpus/templates/macros/app/routes/analytics.tsx +1 -1
  256. package/corpus/templates/mail/app/components/GoogleConnectBanner.tsx +6 -6
  257. package/corpus/templates/mail/app/components/email/AttachmentStrip.tsx +2 -2
  258. package/corpus/templates/mail/app/components/email/EmailListItem.tsx +5 -5
  259. package/corpus/templates/mail/app/components/email/IntegrationsSidebar.tsx +5 -5
  260. package/corpus/templates/mail/app/components/email/MobileActionBar.tsx +3 -3
  261. package/corpus/templates/mail/app/components/layout/AppLayout.tsx +10 -10
  262. package/corpus/templates/mail/app/components/layout/CommandPalette.tsx +1 -1
  263. package/corpus/templates/mail/app/components/layout/SearchBar.tsx +3 -3
  264. package/corpus/templates/mail/app/components/ui/alert-dialog.tsx +1 -1
  265. package/corpus/templates/mail/app/components/ui/alert.tsx +1 -1
  266. package/corpus/templates/mail/app/components/ui/breadcrumb.tsx +1 -1
  267. package/corpus/templates/mail/app/components/ui/calendar.tsx +4 -4
  268. package/corpus/templates/mail/app/components/ui/carousel.tsx +6 -6
  269. package/corpus/templates/mail/app/components/ui/command.tsx +2 -2
  270. package/corpus/templates/mail/app/components/ui/context-menu.tsx +9 -9
  271. package/corpus/templates/mail/app/components/ui/dialog.tsx +2 -2
  272. package/corpus/templates/mail/app/components/ui/drawer.tsx +1 -1
  273. package/corpus/templates/mail/app/components/ui/dropdown-menu.tsx +9 -9
  274. package/corpus/templates/mail/app/components/ui/input-otp.tsx +1 -1
  275. package/corpus/templates/mail/app/components/ui/menubar.tsx +9 -9
  276. package/corpus/templates/mail/app/components/ui/navigation-menu.tsx +3 -3
  277. package/corpus/templates/mail/app/components/ui/pagination.tsx +4 -4
  278. package/corpus/templates/mail/app/components/ui/scroll-area.tsx +1 -1
  279. package/corpus/templates/mail/app/components/ui/select.tsx +3 -3
  280. package/corpus/templates/mail/app/components/ui/sheet.tsx +2 -2
  281. package/corpus/templates/mail/app/components/ui/sidebar.tsx +6 -6
  282. package/corpus/templates/mail/app/components/ui/sonner.tsx +2 -2
  283. package/corpus/templates/mail/app/components/ui/table.tsx +2 -2
  284. package/corpus/templates/mail/app/components/ui/toast.tsx +3 -3
  285. package/corpus/templates/plan/app/components/layout/Sidebar.tsx +10 -10
  286. package/corpus/templates/plan/app/components/ui/alert-dialog.tsx +1 -1
  287. package/corpus/templates/plan/app/components/ui/alert.tsx +1 -1
  288. package/corpus/templates/plan/app/components/ui/breadcrumb.tsx +1 -1
  289. package/corpus/templates/plan/app/components/ui/calendar.tsx +5 -5
  290. package/corpus/templates/plan/app/components/ui/carousel.tsx +6 -6
  291. package/corpus/templates/plan/app/components/ui/command.tsx +2 -2
  292. package/corpus/templates/plan/app/components/ui/context-menu.tsx +9 -9
  293. package/corpus/templates/plan/app/components/ui/dialog.tsx +2 -2
  294. package/corpus/templates/plan/app/components/ui/drawer.tsx +1 -1
  295. package/corpus/templates/plan/app/components/ui/dropdown-menu.tsx +9 -9
  296. package/corpus/templates/plan/app/components/ui/input-otp.tsx +1 -1
  297. package/corpus/templates/plan/app/components/ui/menubar.tsx +9 -9
  298. package/corpus/templates/plan/app/components/ui/navigation-menu.tsx +3 -3
  299. package/corpus/templates/plan/app/components/ui/pagination.tsx +4 -4
  300. package/corpus/templates/plan/app/components/ui/scroll-area.tsx +1 -1
  301. package/corpus/templates/plan/app/components/ui/select.tsx +3 -3
  302. package/corpus/templates/plan/app/components/ui/sheet.tsx +2 -2
  303. package/corpus/templates/plan/app/components/ui/sidebar.tsx +6 -6
  304. package/corpus/templates/plan/app/components/ui/table.tsx +2 -2
  305. package/corpus/templates/plan/app/components/ui/toast.tsx +3 -3
  306. package/corpus/templates/slides/app/components/layout/Layout.tsx +1 -1
  307. package/corpus/templates/slides/app/components/ui/alert-dialog.tsx +1 -1
  308. package/corpus/templates/slides/app/components/ui/alert.tsx +1 -1
  309. package/corpus/templates/slides/app/components/ui/breadcrumb.tsx +1 -1
  310. package/corpus/templates/slides/app/components/ui/calendar.tsx +5 -5
  311. package/corpus/templates/slides/app/components/ui/carousel.tsx +6 -6
  312. package/corpus/templates/slides/app/components/ui/command.tsx +2 -2
  313. package/corpus/templates/slides/app/components/ui/context-menu.tsx +9 -9
  314. package/corpus/templates/slides/app/components/ui/dialog.tsx +2 -2
  315. package/corpus/templates/slides/app/components/ui/drawer.tsx +1 -1
  316. package/corpus/templates/slides/app/components/ui/dropdown-menu.tsx +9 -9
  317. package/corpus/templates/slides/app/components/ui/input-otp.tsx +1 -1
  318. package/corpus/templates/slides/app/components/ui/menubar.tsx +9 -9
  319. package/corpus/templates/slides/app/components/ui/navigation-menu.tsx +3 -3
  320. package/corpus/templates/slides/app/components/ui/pagination.tsx +4 -4
  321. package/corpus/templates/slides/app/components/ui/scroll-area.tsx +1 -1
  322. package/corpus/templates/slides/app/components/ui/select.tsx +3 -3
  323. package/corpus/templates/slides/app/components/ui/sheet.tsx +2 -2
  324. package/corpus/templates/slides/app/components/ui/sidebar.tsx +6 -6
  325. package/corpus/templates/slides/app/components/ui/table.tsx +2 -2
  326. package/corpus/templates/slides/app/components/ui/toast.tsx +3 -3
  327. package/corpus/templates/videos/app/components/ui/alert-dialog.tsx +1 -1
  328. package/corpus/templates/videos/app/components/ui/alert.tsx +1 -1
  329. package/corpus/templates/videos/app/components/ui/breadcrumb.tsx +1 -1
  330. package/corpus/templates/videos/app/components/ui/calendar.tsx +5 -5
  331. package/corpus/templates/videos/app/components/ui/carousel.tsx +6 -6
  332. package/corpus/templates/videos/app/components/ui/command.tsx +2 -2
  333. package/corpus/templates/videos/app/components/ui/context-menu.tsx +9 -9
  334. package/corpus/templates/videos/app/components/ui/dialog.tsx +2 -2
  335. package/corpus/templates/videos/app/components/ui/drawer.tsx +1 -1
  336. package/corpus/templates/videos/app/components/ui/dropdown-menu.tsx +9 -9
  337. package/corpus/templates/videos/app/components/ui/input-otp.tsx +1 -1
  338. package/corpus/templates/videos/app/components/ui/menubar.tsx +9 -9
  339. package/corpus/templates/videos/app/components/ui/navigation-menu.tsx +3 -3
  340. package/corpus/templates/videos/app/components/ui/pagination.tsx +4 -4
  341. package/corpus/templates/videos/app/components/ui/scroll-area.tsx +1 -1
  342. package/corpus/templates/videos/app/components/ui/select.tsx +3 -3
  343. package/corpus/templates/videos/app/components/ui/sheet.tsx +2 -2
  344. package/corpus/templates/videos/app/components/ui/sidebar.tsx +6 -6
  345. package/corpus/templates/videos/app/components/ui/table.tsx +2 -2
  346. package/corpus/templates/videos/app/components/ui/toast.tsx +3 -3
  347. package/dist/client/AgentPanel.js +3 -3
  348. package/dist/client/AgentPanel.js.map +1 -1
  349. package/dist/client/AgentTaskCard.d.ts.map +1 -1
  350. package/dist/client/AgentTaskCard.js +1 -1
  351. package/dist/client/AgentTaskCard.js.map +1 -1
  352. package/dist/client/AppearancePicker.js +1 -1
  353. package/dist/client/AppearancePicker.js.map +1 -1
  354. package/dist/client/AssistantChat.js +3 -3
  355. package/dist/client/AssistantChat.js.map +1 -1
  356. package/dist/client/CommandMenu.js +4 -4
  357. package/dist/client/CommandMenu.js.map +1 -1
  358. package/dist/client/ErrorBoundary.js +1 -1
  359. package/dist/client/ErrorBoundary.js.map +1 -1
  360. package/dist/client/MultiTabAssistantChat.js +9 -9
  361. package/dist/client/MultiTabAssistantChat.js.map +1 -1
  362. package/dist/client/NewWorkspaceAppFlow.js +5 -5
  363. package/dist/client/NewWorkspaceAppFlow.js.map +1 -1
  364. package/dist/client/components/ui/dropdown-menu.js +6 -6
  365. package/dist/client/components/ui/dropdown-menu.js.map +1 -1
  366. package/dist/client/components/ui/sheet.js +1 -1
  367. package/dist/client/components/ui/sheet.js.map +1 -1
  368. package/dist/client/composer/ComposerPlusMenu.js +5 -5
  369. package/dist/client/composer/ComposerPlusMenu.js.map +1 -1
  370. package/dist/client/composer/MentionPopover.js +4 -4
  371. package/dist/client/composer/MentionPopover.js.map +1 -1
  372. package/dist/client/composer/PastedTextChip.js +2 -2
  373. package/dist/client/composer/PastedTextChip.js.map +1 -1
  374. package/dist/client/composer/PromptComposer.js +3 -3
  375. package/dist/client/composer/PromptComposer.js.map +1 -1
  376. package/dist/client/composer/TiptapComposer.js +12 -12
  377. package/dist/client/composer/TiptapComposer.js.map +1 -1
  378. package/dist/client/guided-questions.d.ts.map +1 -1
  379. package/dist/client/guided-questions.js +5 -5
  380. package/dist/client/guided-questions.js.map +1 -1
  381. package/dist/client/i18n.js +2 -2
  382. package/dist/client/i18n.js.map +1 -1
  383. package/dist/client/integrations/IntegrationCard.js +1 -1
  384. package/dist/client/integrations/IntegrationCard.js.map +1 -1
  385. package/dist/client/integrations/IntegrationsPanel.js +4 -4
  386. package/dist/client/integrations/IntegrationsPanel.js.map +1 -1
  387. package/dist/client/notifications/NotificationsBell.js +3 -3
  388. package/dist/client/notifications/NotificationsBell.js.map +1 -1
  389. package/dist/client/onboarding/OnboardingBanner.js +3 -3
  390. package/dist/client/onboarding/OnboardingBanner.js.map +1 -1
  391. package/dist/client/onboarding/OnboardingPanel.d.ts.map +1 -1
  392. package/dist/client/onboarding/OnboardingPanel.js +15 -10
  393. package/dist/client/onboarding/OnboardingPanel.js.map +1 -1
  394. package/dist/client/org/OrgSwitcher.d.ts.map +1 -1
  395. package/dist/client/org/OrgSwitcher.js +7 -7
  396. package/dist/client/org/OrgSwitcher.js.map +1 -1
  397. package/dist/client/org/TeamPage.js +2 -2
  398. package/dist/client/org/TeamPage.js.map +1 -1
  399. package/dist/client/settings/AgentsSection.js +3 -3
  400. package/dist/client/settings/AgentsSection.js.map +1 -1
  401. package/dist/client/settings/AutomationsSection.js +2 -2
  402. package/dist/client/settings/AutomationsSection.js.map +1 -1
  403. package/dist/client/settings/SecretsSection.js +2 -2
  404. package/dist/client/settings/SecretsSection.js.map +1 -1
  405. package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
  406. package/dist/client/settings/SettingsPanel.js +4 -4
  407. package/dist/client/settings/SettingsPanel.js.map +1 -1
  408. package/dist/client/settings/SettingsSection.js +1 -1
  409. package/dist/client/settings/SettingsSection.js.map +1 -1
  410. package/dist/client/settings/UsageSection.js +2 -2
  411. package/dist/client/settings/UsageSection.js.map +1 -1
  412. package/dist/client/settings/VoiceTranscriptionSection.js +3 -3
  413. package/dist/client/settings/VoiceTranscriptionSection.js.map +1 -1
  414. package/dist/client/sharing/ShareButton.js +6 -6
  415. package/dist/client/sharing/ShareButton.js.map +1 -1
  416. package/dist/client/sharing/ShareDialog.js +3 -3
  417. package/dist/client/sharing/ShareDialog.js.map +1 -1
  418. package/dist/styles/agent-conversation.css +10 -10
  419. package/dist/styles/blocks.css +2 -2
  420. package/dist/styles/rich-markdown-editor.css +2 -2
  421. package/package.json +1 -1
@@ -475,7 +475,7 @@ export function GuidedQuestionFlow({
475
475
  </div>
476
476
  </div>
477
477
 
478
- <div className="min-h-0 flex-1 space-y-4 overflow-y-auto pr-1">
478
+ <div className="min-h-0 flex-1 space-y-4 overflow-y-auto pe-1">
479
479
  {questions.map((question, index) => (
480
480
  <QuestionCard
481
481
  key={question.id}
@@ -516,7 +516,7 @@ export function GuidedQuestionFlow({
516
516
  className="inline-flex cursor-pointer items-center gap-2 rounded-md bg-primary px-3.5 py-2 text-sm font-medium text-primary-foreground transition-colors hover:bg-primary/90 disabled:cursor-not-allowed disabled:opacity-45"
517
517
  >
518
518
  {submitLabel}
519
- <IconChevronRight className="h-4 w-4" />
519
+ <IconChevronRight className="h-4 w-4 rtl:-scale-x-100" />
520
520
  </button>
521
521
  </div>
522
522
  </div>
@@ -551,7 +551,7 @@ function QuestionCard({
551
551
  <h3 className="text-sm font-medium leading-5 text-foreground">
552
552
  {question.question}
553
553
  {question.required && (
554
- <span className="ml-1 text-destructive">*</span>
554
+ <span className="ms-1 text-destructive">*</span>
555
555
  )}
556
556
  </h3>
557
557
  {question.description && (
@@ -700,7 +700,7 @@ function OptionButton({
700
700
  onClick={onClick}
701
701
  aria-pressed={selected}
702
702
  className={cn(
703
- "group flex min-h-[56px] cursor-pointer items-start gap-2 rounded-md border px-3 py-2 text-left transition-colors",
703
+ "group flex min-h-[56px] cursor-pointer items-start gap-2 rounded-md border px-3 py-2 text-start transition-colors",
704
704
  selected
705
705
  ? "border-primary bg-primary/10 text-foreground ring-2 ring-primary/25"
706
706
  : "border-border bg-muted/30 text-muted-foreground hover:border-muted-foreground/50 hover:bg-muted/45 hover:text-foreground",
@@ -831,10 +831,8 @@ function SliderQuestion({
831
831
  onChange={(event) => onChange(Number(event.target.value))}
832
832
  className="h-2 flex-1 cursor-pointer accent-primary"
833
833
  />
834
- <span className="w-8 text-right text-xs text-muted-foreground">
835
- {max}
836
- </span>
837
- <span className="min-w-10 text-right text-sm font-medium tabular-nums text-foreground">
834
+ <span className="w-8 text-end text-xs text-muted-foreground">{max}</span>
835
+ <span className="min-w-10 text-end text-sm font-medium tabular-nums text-foreground">
838
836
  {current}
839
837
  </span>
840
838
  </div>
@@ -543,7 +543,7 @@ export function LanguagePicker({
543
543
  className={
544
544
  variant === "icon"
545
545
  ? "flex h-8 w-8 items-center justify-center rounded-md border border-border bg-background text-foreground outline-none transition-colors hover:bg-accent/40 data-[placeholder]:text-muted-foreground"
546
- : "flex h-9 w-full items-center justify-between rounded-md border border-border bg-background px-3 text-left text-[12px] text-foreground outline-none transition-colors hover:bg-accent/40 data-[placeholder]:text-muted-foreground"
546
+ : "flex h-9 w-full items-center justify-between rounded-md border border-border bg-background px-3 text-start text-[12px] text-foreground outline-none transition-colors hover:bg-accent/40 data-[placeholder]:text-muted-foreground"
547
547
  }
548
548
  aria-label={resolvedLabel}
549
549
  title={selected?.label ?? resolvedLabel}
@@ -581,7 +581,7 @@ export function LanguagePicker({
581
581
  value={option.value}
582
582
  className="relative flex w-full cursor-pointer select-none items-start gap-2 rounded-md px-8 py-2.5 text-[12px] outline-none data-[highlighted]:bg-accent/60 data-[state=checked]:bg-accent/40"
583
583
  >
584
- <span className="absolute left-2 top-2.5 flex h-4 w-4 items-center justify-center text-muted-foreground">
584
+ <span className="absolute start-2 top-2.5 flex h-4 w-4 items-center justify-center text-muted-foreground">
585
585
  <SelectPrimitive.ItemIndicator>
586
586
  <IconCheck className="h-3.5 w-3.5" />
587
587
  </SelectPrimitive.ItemIndicator>
@@ -99,7 +99,7 @@ export function IntegrationCard({
99
99
  <div className="rounded-md border border-border bg-background">
100
100
  <button
101
101
  onClick={() => setExpanded(!expanded)}
102
- className="flex w-full items-center gap-2 px-2.5 py-2 text-left hover:bg-accent/50"
102
+ className="flex w-full items-center gap-2 px-2.5 py-2 text-start hover:bg-accent/50"
103
103
  >
104
104
  {expanded ? (
105
105
  <IconChevronDown
@@ -109,7 +109,7 @@ export function IntegrationCard({
109
109
  ) : (
110
110
  <IconChevronRight
111
111
  size={12}
112
- className="text-muted-foreground shrink-0"
112
+ className="text-muted-foreground shrink-0 rtl:-scale-x-100"
113
113
  />
114
114
  )}
115
115
  <Icon size={16} className="text-muted-foreground shrink-0" />
@@ -243,7 +243,7 @@ function IntegrationDetail({
243
243
  onClick={onBack}
244
244
  className="flex items-center gap-1 text-[10px] text-muted-foreground hover:text-foreground mb-2"
245
245
  >
246
- <IconChevronLeft size={12} />
246
+ <IconChevronLeft size={12} className="rtl:-scale-x-100" />
247
247
  Back
248
248
  </button>
249
249
 
@@ -444,7 +444,7 @@ function AddIntegrationPicker({
444
444
  <button
445
445
  key={platform.id}
446
446
  onClick={() => onSelect(platform)}
447
- className="flex w-full items-center gap-2 rounded-md px-2 py-1.5 text-left hover:bg-accent/50"
447
+ className="flex w-full items-center gap-2 rounded-md px-2 py-1.5 text-start hover:bg-accent/50"
448
448
  >
449
449
  <platform.icon size={14} className="shrink-0 text-muted-foreground" />
450
450
  <div className="flex-1 min-w-0">
@@ -498,7 +498,7 @@ export function IntegrationsPanel() {
498
498
  onClick={() => setShowPicker(false)}
499
499
  className="flex items-center gap-1 text-[10px] text-muted-foreground hover:text-foreground mb-2"
500
500
  >
501
- <IconChevronLeft size={12} />
501
+ <IconChevronLeft size={12} className="rtl:-scale-x-100" />
502
502
  Back
503
503
  </button>
504
504
  <div className="text-[10px] font-medium text-muted-foreground mb-1.5">
@@ -575,7 +575,7 @@ export function IntegrationsPanel() {
575
575
  <button
576
576
  key={platform.id}
577
577
  onClick={() => setSelectedPlatform(platform)}
578
- className="flex w-full items-center gap-2 rounded-md px-2 py-1.5 text-left hover:bg-accent/50"
578
+ className="flex w-full items-center gap-2 rounded-md px-2 py-1.5 text-start hover:bg-accent/50"
579
579
  >
580
580
  <platform.icon
581
581
  size={14}
@@ -244,7 +244,7 @@ export function NotificationsBell({
244
244
  {hasUnread ? (
245
245
  <span
246
246
  aria-hidden
247
- className="an-notifications-bell__badge absolute -right-0.5 -top-0.5 rounded-full bg-destructive px-1 text-[10px] leading-[14px] font-medium text-destructive-foreground"
247
+ className="an-notifications-bell__badge absolute -end-0.5 -top-0.5 rounded-full bg-destructive px-1 text-[10px] leading-[14px] font-medium text-destructive-foreground"
248
248
  >
249
249
  {unreadCount > 99 ? "99+" : unreadCount}
250
250
  </span>
@@ -314,7 +314,7 @@ export function NotificationsBell({
314
314
  type="button"
315
315
  onClick={onItemClick}
316
316
  className={
317
- "flex w-full flex-col items-start gap-0.5 px-3 py-2 pr-8 text-left" +
317
+ "flex w-full flex-col items-start gap-0.5 px-3 py-2 pe-8 text-start" +
318
318
  (link ? " cursor-pointer" : "")
319
319
  }
320
320
  >
@@ -340,7 +340,7 @@ export function NotificationsBell({
340
340
  e.stopPropagation();
341
341
  void dismiss(n.id);
342
342
  }}
343
- className="absolute right-2 top-2 hidden rounded p-0.5 text-muted-foreground hover:bg-accent hover:text-foreground group-hover:flex"
343
+ className="absolute end-2 top-2 hidden rounded p-0.5 text-muted-foreground hover:bg-accent hover:text-foreground group-hover:flex"
344
344
  >
345
345
  <IconX size={12} />
346
346
  </button>
@@ -38,7 +38,7 @@ export function OnboardingBanner({
38
38
  </span>
39
39
  <span style={styles.cta}>
40
40
  Continue
41
- <IconChevronRight size={12} />
41
+ <IconChevronRight size={12} className="rtl:-scale-x-100" />
42
42
  </span>
43
43
  </button>
44
44
  );
@@ -57,11 +57,11 @@ const styles: Record<string, React.CSSProperties> = {
57
57
  color: "inherit",
58
58
  fontSize: 12,
59
59
  cursor: "pointer",
60
- textAlign: "left" as const,
60
+ textAlign: "start" as const,
61
61
  },
62
62
  left: { display: "flex", alignItems: "center", gap: 6 },
63
63
  title: { fontWeight: 600 },
64
- counter: { opacity: 0.65, marginLeft: 4 },
64
+ counter: { opacity: 0.65, marginInlineStart: 4 },
65
65
  cta: {
66
66
  display: "flex",
67
67
  alignItems: "center",
@@ -108,7 +108,11 @@ export function OnboardingPanel({
108
108
  {completeCount} of {totalCount}
109
109
  </span>
110
110
  <span
111
- style={{ marginLeft: "auto", opacity: 0.5, display: "flex" }}
111
+ style={{
112
+ marginInlineStart: "auto",
113
+ opacity: 0.5,
114
+ display: "flex",
115
+ }}
112
116
  >
113
117
  <IconChevronDown size={14} />
114
118
  </span>
@@ -226,7 +230,7 @@ function StepCard({
226
230
  {expanded ? (
227
231
  <IconChevronDown size={14} />
228
232
  ) : (
229
- <IconChevronRight size={14} />
233
+ <IconChevronRight size={14} className="rtl:-scale-x-100" />
230
234
  )}
231
235
  </span>
232
236
  </button>
@@ -360,7 +364,7 @@ function ManagedProviderMethodGroup({
360
364
  {showKeyForm ? (
361
365
  <IconChevronDown size={14} />
362
366
  ) : (
363
- <IconChevronRight size={14} />
367
+ <IconChevronRight size={14} className="rtl:-scale-x-100" />
364
368
  )}
365
369
  </span>
366
370
  </button>
@@ -550,7 +554,9 @@ function LinkMethod({
550
554
  style={{ ...buttonPrimary(method.primary), textDecoration: "none" }}
551
555
  >
552
556
  Continue
553
- {external && <IconExternalLink size={12} style={{ marginLeft: 4 }} />}
557
+ {external && (
558
+ <IconExternalLink size={12} style={{ marginInlineStart: 4 }} />
559
+ )}
554
560
  </a>
555
561
  );
556
562
  }
@@ -657,7 +663,7 @@ function BuilderCliAuthMethod({
657
663
  <>
658
664
  <IconLoader2
659
665
  size={12}
660
- style={{ marginRight: 4 }}
666
+ style={{ marginInlineEnd: 4 }}
661
667
  className="animate-spin"
662
668
  />
663
669
  Waiting for Builder...
@@ -740,7 +746,7 @@ function badgeStyle(
740
746
  soon: { bg: "rgba(148,163,184,0.15)", fg: "#cbd5e1" },
741
747
  }[kind];
742
748
  return {
743
- marginLeft: 6,
749
+ marginInlineStart: 6,
744
750
  fontSize: 10,
745
751
  padding: "1px 6px",
746
752
  borderRadius: 4,
@@ -798,7 +804,7 @@ const styles: Record<string, React.CSSProperties> = {
798
804
  headerCounter: {
799
805
  opacity: 0.5,
800
806
  fontSize: 11,
801
- marginLeft: 4,
807
+ marginInlineStart: 4,
802
808
  },
803
809
  dismissBtn: {
804
810
  background: "transparent",
@@ -837,7 +843,7 @@ const styles: Record<string, React.CSSProperties> = {
837
843
  color: "inherit",
838
844
  padding: "7px 9px",
839
845
  cursor: "pointer",
840
- textAlign: "left" as const,
846
+ textAlign: "start" as const,
841
847
  },
842
848
  cardHeaderLeft: {
843
849
  display: "flex",
@@ -880,7 +886,8 @@ const styles: Record<string, React.CSSProperties> = {
880
886
  border: "1px solid rgba(255,255,255,0.2)",
881
887
  },
882
888
  cardBody: {
883
- padding: "0 10px 10px 34px",
889
+ paddingBlock: "0 10px",
890
+ paddingInline: "34px 10px",
884
891
  display: "flex",
885
892
  flexDirection: "column",
886
893
  gap: 8,
@@ -934,7 +941,7 @@ const styles: Record<string, React.CSSProperties> = {
934
941
  cursor: "pointer",
935
942
  fontSize: 11,
936
943
  fontWeight: 500,
937
- textAlign: "left" as const,
944
+ textAlign: "start" as const,
938
945
  },
939
946
  secondaryToggleLeft: {
940
947
  display: "flex",
@@ -208,7 +208,7 @@ function AppsSubmenu({
208
208
  <PopoverPrimitive.Trigger asChild>
209
209
  <button type="button" className={`${ITEM_CLASS} cursor-pointer`}>
210
210
  <IconApps className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
211
- <span className="flex-1 text-left">Apps</span>
211
+ <span className="flex-1 text-start">Apps</span>
212
212
  <span className="text-[11px] text-muted-foreground">
213
213
  {isLoading ? (
214
214
  <IconLoader2 className="h-3 w-3 animate-spin" />
@@ -216,7 +216,7 @@ function AppsSubmenu({
216
216
  apps.length
217
217
  )}
218
218
  </span>
219
- <IconChevronRight className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
219
+ <IconChevronRight className="h-3.5 w-3.5 shrink-0 text-muted-foreground rtl:-scale-x-100" />
220
220
  </button>
221
221
  </PopoverPrimitive.Trigger>
222
222
  <PopoverPrimitive.Portal>
@@ -366,7 +366,7 @@ export function OrgSwitcher({
366
366
  className={`flex w-full items-center gap-2 rounded-md border border-border/50 px-2.5 py-1.5 text-xs font-medium text-muted-foreground hover:bg-accent/50 hover:text-foreground focus:outline-none focus-visible:ring-2 focus-visible:ring-ring cursor-pointer ${className ?? ""}`}
367
367
  >
368
368
  <ButtonIcon className="h-3.5 w-3.5 shrink-0" />
369
- <span className="truncate flex-1 text-left">{buttonLabel}</span>
369
+ <span className="truncate flex-1 text-start">{buttonLabel}</span>
370
370
  <IconSelector className="h-3 w-3 shrink-0 opacity-50" />
371
371
  </button>
372
372
  </PopoverPrimitive.Trigger>
@@ -390,7 +390,7 @@ export function OrgSwitcher({
390
390
  aria-disabled="true"
391
391
  >
392
392
  <IconUser className="h-3.5 w-3.5 shrink-0" />
393
- <span className="truncate flex-1 text-left">
393
+ <span className="truncate flex-1 text-start">
394
394
  Personal ({personalLabel})
395
395
  </span>
396
396
  </div>
@@ -418,7 +418,9 @@ export function OrgSwitcher({
418
418
  className={`${ITEM_CLASS} cursor-pointer`}
419
419
  >
420
420
  <IconBuilding className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
421
- <span className="truncate flex-1 text-left">{o.orgName}</span>
421
+ <span className="truncate flex-1 text-start">
422
+ {o.orgName}
423
+ </span>
422
424
  {o.orgId === org.orgId && (
423
425
  <IconCheck className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
424
426
  )}
@@ -535,7 +537,7 @@ export function OrgSwitcher({
535
537
  className={`${ITEM_CLASS} cursor-pointer`}
536
538
  >
537
539
  <IconSettings className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
538
- <span className="flex-1 text-left">
540
+ <span className="flex-1 text-start">
539
541
  Organization settings
540
542
  </span>
541
543
  </button>
@@ -552,7 +554,7 @@ export function OrgSwitcher({
552
554
  className={`${ITEM_CLASS} cursor-pointer`}
553
555
  >
554
556
  <IconPlus className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
555
- <span className="flex-1 text-left">Create organization</span>
557
+ <span className="flex-1 text-start">Create organization</span>
556
558
  </button>
557
559
  {canInvite && (
558
560
  <button
@@ -564,7 +566,7 @@ export function OrgSwitcher({
564
566
  className={`${ITEM_CLASS} cursor-pointer`}
565
567
  >
566
568
  <IconUserPlus className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
567
- <span className="flex-1 text-left">Invite member</span>
569
+ <span className="flex-1 text-start">Invite member</span>
568
570
  </button>
569
571
  )}
570
572
 
@@ -578,12 +580,12 @@ export function OrgSwitcher({
578
580
  {signingOut ? (
579
581
  <IconLoader2 className="h-3.5 w-3.5 shrink-0 animate-spin text-muted-foreground" />
580
582
  ) : (
581
- <IconLogout className="h-3.5 w-3.5 shrink-0 text-muted-foreground" />
583
+ <IconLogout className="h-3.5 w-3.5 shrink-0 text-muted-foreground rtl:-scale-x-100" />
582
584
  )}
583
- <span className="flex-1 text-left">
585
+ <span className="flex-1 text-start">
584
586
  Sign out
585
587
  {org.email ? (
586
- <span className="ml-1 text-muted-foreground">
588
+ <span className="ms-1 text-muted-foreground">
587
589
  ({org.email})
588
590
  </span>
589
591
  ) : null}
@@ -866,7 +866,7 @@ function BulkInviteForm({
866
866
  <ul className="space-y-0.5 text-[11px] text-red-500">
867
867
  {resultBanner.failed.map((f) => (
868
868
  <li key={f.email}>
869
- <IconAlertTriangle className="inline h-3 w-3 -mt-0.5 mr-1" />
869
+ <IconAlertTriangle className="inline h-3 w-3 -mt-0.5 me-1" />
870
870
  {f.email}: {f.error}
871
871
  </li>
872
872
  ))}
@@ -1176,7 +1176,7 @@ function A2ASecretSection({ secret }: { secret: string | null | undefined }) {
1176
1176
  {syncResult.failed > 0 ? ` (${syncResult.failed} failed)` : ""}.
1177
1177
  </p>
1178
1178
  {syncResult.failed > 0 && (
1179
- <ul className="text-[11px] text-red-500 list-disc pl-5 space-y-0.5">
1179
+ <ul className="text-[11px] text-red-500 list-disc ps-5 space-y-0.5">
1180
1180
  {syncResult.results
1181
1181
  .filter((r) => !r.ok)
1182
1182
  .map((r) => (
@@ -62,7 +62,7 @@ function AgentEditPopover({
62
62
  return (
63
63
  <div
64
64
  ref={popoverRef}
65
- className="absolute right-0 top-full z-50 mt-1 w-64 rounded-lg border border-border bg-popover p-2.5 shadow-lg"
65
+ className="absolute end-0 top-full z-50 mt-1 w-64 rounded-lg border border-border bg-popover p-2.5 shadow-lg"
66
66
  >
67
67
  <div className="flex flex-col gap-1.5">
68
68
  <input
@@ -163,7 +163,7 @@ function AgentAddPopover({
163
163
  return (
164
164
  <div
165
165
  ref={popoverRef}
166
- className="absolute right-0 top-full z-50 mt-1 w-64 rounded-lg border border-border bg-popover p-2.5 shadow-lg"
166
+ className="absolute end-0 top-full z-50 mt-1 w-64 rounded-lg border border-border bg-popover p-2.5 shadow-lg"
167
167
  >
168
168
  <div className="flex flex-col gap-1.5">
169
169
  <input
@@ -393,7 +393,7 @@ export function AgentsSection() {
393
393
  <span className="text-[11px] font-medium text-foreground truncate shrink-0">
394
394
  {agent.name}
395
395
  </span>
396
- <span className="flex-1 text-[10px] text-muted-foreground/60 truncate text-right">
396
+ <span className="flex-1 text-[10px] text-muted-foreground/60 truncate text-end">
397
397
  {agent.url}
398
398
  </span>
399
399
  <Tooltip>
@@ -354,12 +354,12 @@ export function AutomationsSection() {
354
354
  </span>
355
355
  </div>
356
356
  {item.scheduleDescription && (
357
- <p className="text-[10px] text-muted-foreground mt-0.5 ml-[17px]">
357
+ <p className="text-[10px] text-muted-foreground mt-0.5 ms-[17px]">
358
358
  {item.scheduleDescription}
359
359
  </p>
360
360
  )}
361
361
  {item.schedule && !item.scheduleDescription && (
362
- <p className="text-[10px] text-muted-foreground mt-0.5 ml-[17px] font-mono">
362
+ <p className="text-[10px] text-muted-foreground mt-0.5 ms-[17px] font-mono">
363
363
  {item.schedule}
364
364
  </p>
365
365
  )}
@@ -430,7 +430,7 @@ export function AutomationsSection() {
430
430
  </div>
431
431
  </div>
432
432
  {item.lastRun && (
433
- <p className="text-[10px] text-muted-foreground mt-1 ml-[17px]">
433
+ <p className="text-[10px] text-muted-foreground mt-1 ms-[17px]">
434
434
  Last run:{" "}
435
435
  {new Date(item.lastRun).toLocaleString(undefined, {
436
436
  month: "short",
@@ -370,7 +370,7 @@ function SecretCard({ secret, onChanged, focusInput }: SecretCardProps) {
370
370
  href={secret.docsUrl}
371
371
  target="_blank"
372
372
  rel="noopener noreferrer"
373
- className="inline-flex items-center gap-1 rounded border border-border px-2 py-1 text-[10px] no-underline text-muted-foreground hover:text-foreground ml-auto"
373
+ className="inline-flex items-center gap-1 rounded border border-border px-2 py-1 text-[10px] no-underline text-muted-foreground hover:text-foreground ms-auto"
374
374
  >
375
375
  Get key
376
376
  <IconExternalLink size={10} />
@@ -626,7 +626,7 @@ function AdHocKeysSection() {
626
626
  <option value="user">Personal</option>
627
627
  <option value="workspace">Workspace</option>
628
628
  </select>
629
- <div className="ml-auto flex items-center gap-1.5">
629
+ <div className="ms-auto flex items-center gap-1.5">
630
630
  <button
631
631
  type="button"
632
632
  onClick={resetForm}
@@ -116,7 +116,7 @@ function SettingsSelect({
116
116
  </div>
117
117
  <SelectPrimitive.Root value={value} onValueChange={onValueChange}>
118
118
  <SelectPrimitive.Trigger
119
- className="flex h-9 w-full items-center justify-between rounded-md border border-border bg-background px-3 text-left text-[12px] text-foreground outline-none transition-colors hover:bg-accent/40 data-[placeholder]:text-muted-foreground"
119
+ className="flex h-9 w-full items-center justify-between rounded-md border border-border bg-background px-3 text-start text-[12px] text-foreground outline-none transition-colors hover:bg-accent/40 data-[placeholder]:text-muted-foreground"
120
120
  aria-label={label}
121
121
  style={CONTROL_STYLE}
122
122
  >
@@ -141,7 +141,7 @@ function SettingsSelect({
141
141
  className="relative flex w-full cursor-pointer select-none items-start gap-2 rounded-md px-8 py-2.5 text-[12px] outline-none data-[highlighted]:bg-accent/60 data-[state=checked]:bg-accent/40"
142
142
  style={CONTROL_STYLE}
143
143
  >
144
- <span className="absolute left-2 top-2.5 flex h-4 w-4 items-center justify-center text-muted-foreground">
144
+ <span className="absolute start-2 top-2.5 flex h-4 w-4 items-center justify-center text-muted-foreground">
145
145
  <SelectPrimitive.ItemIndicator>
146
146
  <IconCheck size={14} />
147
147
  </SelectPrimitive.ItemIndicator>
@@ -406,7 +406,7 @@ function UseBuilderCard({
406
406
  type="button"
407
407
  onClick={() => builderFlow.start({ trackingSource, trackingFlow })}
408
408
  disabled={builderFlow.connecting}
409
- className={`block w-full rounded-md border border-border px-3 py-3 text-left no-underline bg-gradient-to-br from-teal-500/10 via-transparent to-transparent hover:border-foreground/30 transition-colors disabled:cursor-wait disabled:opacity-70`}
409
+ className={`block w-full rounded-md border border-border px-3 py-3 text-start no-underline bg-gradient-to-br from-teal-500/10 via-transparent to-transparent hover:border-foreground/30 transition-colors disabled:cursor-wait disabled:opacity-70`}
410
410
  >
411
411
  <div className="flex items-start gap-2.5">
412
412
  <div className="flex h-7 w-7 shrink-0 items-center justify-center rounded-md bg-foreground text-background">
@@ -980,7 +980,7 @@ function LLMSectionInner({
980
980
  <TooltipTrigger asChild>
981
981
  <button
982
982
  onClick={handleDisconnect}
983
- className="ml-auto rounded border border-border px-2.5 py-1 text-[10px] font-medium text-muted-foreground hover:bg-destructive/10 hover:text-destructive hover:border-destructive/40"
983
+ className="ms-auto rounded border border-border px-2.5 py-1 text-[10px] font-medium text-muted-foreground hover:bg-destructive/10 hover:text-destructive hover:border-destructive/40"
984
984
  >
985
985
  Disconnect
986
986
  </button>
@@ -1955,9 +1955,7 @@ function CapabilityStatusRow({
1955
1955
  />
1956
1956
  {label}
1957
1957
  </span>
1958
- <span className="min-w-0 truncate text-right text-foreground">
1959
- {value}
1960
- </span>
1958
+ <span className="min-w-0 truncate text-end text-foreground">{value}</span>
1961
1959
  </div>
1962
1960
  );
1963
1961
  }
@@ -35,7 +35,7 @@ export function SettingsSection({
35
35
  <button
36
36
  type="button"
37
37
  onClick={onToggle}
38
- className="flex w-full cursor-pointer items-center justify-between px-3 py-2.5 text-left rounded-lg hover:bg-accent/40 transition-colors"
38
+ className="flex w-full cursor-pointer items-center justify-between px-3 py-2.5 text-start rounded-lg hover:bg-accent/40 transition-colors"
39
39
  >
40
40
  <div className="flex items-center gap-2 min-w-0">
41
41
  <span className="shrink-0 text-muted-foreground">{icon}</span>
@@ -139,7 +139,7 @@ function BucketBars({
139
139
  </span>
140
140
  <span className="shrink-0 text-muted-foreground tabular-nums">
141
141
  {formatSpend(b.cents, billing)}
142
- <span className="ml-1 opacity-60">
142
+ <span className="ms-1 opacity-60">
143
143
  · {formatTokens(b.inputTokens + b.outputTokens)} tok
144
144
  </span>
145
145
  </span>
@@ -268,7 +268,7 @@ export function UsageSection() {
268
268
  {formatSpend(data.totalCents, billing)}
269
269
  </div>
270
270
  </div>
271
- <div className="text-right">
271
+ <div className="text-end">
272
272
  <div className="text-[10px] text-muted-foreground">
273
273
  {data.totalCalls} calls
274
274
  </div>
@@ -350,7 +350,7 @@ export function UsageSection() {
350
350
  {new Date(r.createdAt).toLocaleString()} · {r.model}
351
351
  </div>
352
352
  </div>
353
- <div className="shrink-0 text-right tabular-nums text-muted-foreground">
353
+ <div className="shrink-0 text-end tabular-nums text-muted-foreground">
354
354
  {formatSpend(r.cents, billing)}
355
355
  </div>
356
356
  </div>
@@ -506,7 +506,7 @@ export function VoiceTranscriptionSection() {
506
506
  {showAdvanced ? (
507
507
  <IconChevronDown size={12} />
508
508
  ) : (
509
- <IconChevronRight size={12} />
509
+ <IconChevronRight size={12} className="rtl:-scale-x-100" />
510
510
  )}
511
511
  Add API keys
512
512
  </span>
@@ -763,7 +763,7 @@ function ProviderOption({
763
763
  aria-pressed={selected}
764
764
  aria-disabled={disabled || undefined}
765
765
  // Theme tokens; streaming agent owns layout.
766
- className={`w-full text-left rounded-md border px-2.5 py-2 flex items-start gap-2 ${
766
+ className={`w-full text-start rounded-md border px-2.5 py-2 flex items-start gap-2 ${
767
767
  selected
768
768
  ? "border-primary bg-primary/10"
769
769
  : "border-border bg-accent/30 hover:bg-accent/50"
@@ -944,7 +944,7 @@ function SystemAudioStatus() {
944
944
  <button
945
945
  type="button"
946
946
  onClick={openPrivacy}
947
- className="ml-1 inline-flex items-center gap-1 rounded border border-border px-1.5 py-0.5 text-[10px] text-muted-foreground hover:bg-accent/40 hover:text-foreground"
947
+ className="ms-1 inline-flex items-center gap-1 rounded border border-border px-1.5 py-0.5 text-[10px] text-muted-foreground hover:bg-accent/40 hover:text-foreground"
948
948
  >
949
949
  <IconLockOpen size={10} />
950
950
  Open System Settings
@@ -1028,7 +1028,7 @@ function AdvancedAccessPopover({
1028
1028
  disabled={!canManage || control.pending}
1029
1029
  onClick={onToggle}
1030
1030
  className={cn(
1031
- "flex w-full items-start gap-3 rounded-md border border-border/70 bg-background px-3 py-2.5 text-left transition-colors hover:bg-accent/45 disabled:cursor-not-allowed disabled:opacity-60",
1031
+ "flex w-full items-start gap-3 rounded-md border border-border/70 bg-background px-3 py-2.5 text-start transition-colors hover:bg-accent/45 disabled:cursor-not-allowed disabled:opacity-60",
1032
1032
  control.checked && "border-border bg-accent/35 text-foreground",
1033
1033
  )}
1034
1034
  >
@@ -1181,7 +1181,7 @@ function MemberAutocomplete({
1181
1181
  aria-hidden
1182
1182
  size={15}
1183
1183
  strokeWidth={1.8}
1184
- className="pointer-events-none absolute left-2.5 top-1/2 -translate-y-1/2 text-muted-foreground"
1184
+ className="pointer-events-none absolute start-2.5 top-1/2 -translate-y-1/2 text-muted-foreground"
1185
1185
  />
1186
1186
  <input
1187
1187
  ref={inputRef}
@@ -1209,14 +1209,14 @@ function MemberAutocomplete({
1209
1209
  }}
1210
1210
  onKeyDown={handleKeyDown}
1211
1211
  autoComplete="off"
1212
- className="h-9 w-full min-w-0 rounded-md border border-input bg-background pl-8 pr-8 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 focus:ring-offset-background"
1212
+ className="h-9 w-full min-w-0 rounded-md border border-input bg-background ps-8 pe-8 text-sm text-foreground placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 focus:ring-offset-background"
1213
1213
  />
1214
1214
  {search.isLoading ? (
1215
1215
  <IconLoader2
1216
1216
  aria-hidden
1217
1217
  size={15}
1218
1218
  strokeWidth={1.8}
1219
- className="pointer-events-none absolute right-2.5 top-1/2 -translate-y-1/2 animate-spin text-muted-foreground"
1219
+ className="pointer-events-none absolute end-2.5 top-1/2 -translate-y-1/2 animate-spin text-muted-foreground"
1220
1220
  />
1221
1221
  ) : null}
1222
1222
  </div>
@@ -1377,7 +1377,7 @@ function CopyLinkField({
1377
1377
  const selectContentClass =
1378
1378
  "z-[2100] min-w-[12rem] overflow-hidden rounded-md border border-border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0";
1379
1379
  const selectItemClass =
1380
- "relative flex w-full cursor-pointer select-none items-start gap-2 rounded-sm py-2 pl-8 pr-3 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50";
1380
+ "relative flex w-full cursor-pointer select-none items-start gap-2 rounded-sm py-2 ps-8 pe-3 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50";
1381
1381
 
1382
1382
  interface ShadSelectItemProps {
1383
1383
  value: string;
@@ -1394,7 +1394,7 @@ function SelectItems({ items }: { items: ShadSelectItemProps[] }) {
1394
1394
  value={it.value}
1395
1395
  className={selectItemClass}
1396
1396
  >
1397
- <span className="absolute left-2 top-2 flex h-4 w-4 items-center justify-center">
1397
+ <span className="absolute start-2 top-2 flex h-4 w-4 items-center justify-center">
1398
1398
  <Select.ItemIndicator>
1399
1399
  <IconCheck size={14} />
1400
1400
  </Select.ItemIndicator>
@@ -1485,7 +1485,7 @@ function VisibilitySelect(props: {
1485
1485
  <Select.Trigger
1486
1486
  className={cn(
1487
1487
  BUTTON_BASE,
1488
- "h-7 px-1 -ml-1 bg-transparent text-foreground hover:bg-accent hover:text-accent-foreground",
1488
+ "h-7 px-1 -ms-1 bg-transparent text-foreground hover:bg-accent hover:text-accent-foreground",
1489
1489
  )}
1490
1490
  aria-label="General access"
1491
1491
  >