@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
@@ -73,7 +73,7 @@ const TableHead = React.forwardRef<
73
73
  <th
74
74
  ref={ref}
75
75
  className={cn(
76
- "h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
76
+ "h-12 px-4 text-start align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pe-0",
77
77
  className,
78
78
  )}
79
79
  {...props}
@@ -87,7 +87,7 @@ const TableCell = React.forwardRef<
87
87
  >(({ className, ...props }, ref) => (
88
88
  <td
89
89
  ref={ref}
90
- className={cn("p-4 align-middle [&:has([role=checkbox])]:pr-0", className)}
90
+ className={cn("p-4 align-middle [&:has([role=checkbox])]:pe-0", className)}
91
91
  {...props}
92
92
  />
93
93
  ));
@@ -14,7 +14,7 @@ const ToastViewport = React.forwardRef<
14
14
  <ToastPrimitives.Viewport
15
15
  ref={ref}
16
16
  className={cn(
17
- "fixed top-0 z-[100] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col sm:max-w-[36rem]",
17
+ "fixed top-0 z-[100] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:end-0 sm:top-auto sm:flex-col sm:max-w-[36rem]",
18
18
  className,
19
19
  )}
20
20
  {...props}
@@ -23,7 +23,7 @@ const ToastViewport = React.forwardRef<
23
23
  ToastViewport.displayName = ToastPrimitives.Viewport.displayName;
24
24
 
25
25
  const toastVariants = cva(
26
- "group pointer-events-auto relative flex w-full items-center justify-between gap-3 overflow-hidden rounded-md border p-6 pr-8 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
26
+ "group pointer-events-auto relative flex w-full items-center justify-between gap-3 overflow-hidden rounded-md border p-6 pe-8 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
27
27
  {
28
28
  variants: {
29
29
  variant: {
@@ -75,7 +75,7 @@ const ToastClose = React.forwardRef<
75
75
  <ToastPrimitives.Close
76
76
  ref={ref}
77
77
  className={cn(
78
- "absolute right-2 top-2 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-2 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",
78
+ "absolute end-2 top-2 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-2 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",
79
79
  className,
80
80
  )}
81
81
  toast-close=""
@@ -142,7 +142,7 @@ export function BrandingEditor({
142
142
  disabled={disabled}
143
143
  className="max-w-[120px] tabular-nums uppercase"
144
144
  />
145
- <div className="flex items-center gap-1 ml-2">
145
+ <div className="flex items-center gap-1 ms-2">
146
146
  {PRESETS.map((c) => (
147
147
  <button
148
148
  key={c}
@@ -71,7 +71,7 @@ export function InsightsHub() {
71
71
  <h1 className="text-base font-semibold tracking-tight truncate">
72
72
  Insights
73
73
  </h1>
74
- <div className="ml-auto flex items-center gap-2">
74
+ <div className="ms-auto flex items-center gap-2">
75
75
  <Select value={days} onValueChange={setDays}>
76
76
  <SelectTrigger className="h-8 w-36">
77
77
  <SelectValue placeholder="Period" />
@@ -85,7 +85,7 @@ export function InsightsHub() {
85
85
  </Select>
86
86
  <Button variant="outline" size="sm" className="h-8" asChild>
87
87
  <a href={csvUrl} download>
88
- <IconDownload className="size-4 mr-1.5" />
88
+ <IconDownload className="size-4 me-1.5" />
89
89
  Export CSV
90
90
  </a>
91
91
  </Button>
@@ -100,7 +100,7 @@ export function InviteDialog({ organizationId, disabled }: InviteDialogProps) {
100
100
  disabled={disabled}
101
101
  className="bg-primary hover:bg-primary/90 text-primary-foreground"
102
102
  >
103
- <IconUserPlus className="size-4 mr-1.5" />
103
+ <IconUserPlus className="size-4 me-1.5" />
104
104
  Invite members
105
105
  </Button>
106
106
  </DialogTrigger>
@@ -157,7 +157,7 @@ export function InviteDialog({ organizationId, disabled }: InviteDialogProps) {
157
157
  disabled={invite.isPending}
158
158
  className="bg-primary hover:bg-primary/90 text-primary-foreground"
159
159
  >
160
- <IconMailFast className="size-4 mr-1.5" />
160
+ <IconMailFast className="size-4 me-1.5" />
161
161
  {invite.isPending ? "Sending…" : "Send invites"}
162
162
  </Button>
163
163
  </DialogFooter>
@@ -39,9 +39,9 @@ export function TopCreatorsTable({ rows }: TopCreatorsTableProps) {
39
39
  <TableHeader>
40
40
  <TableRow>
41
41
  <TableHead>Creator</TableHead>
42
- <TableHead className="text-right w-24">Recordings</TableHead>
43
- <TableHead className="text-right w-20">Views</TableHead>
44
- <TableHead className="text-right w-28">Engagement</TableHead>
42
+ <TableHead className="text-end w-24">Recordings</TableHead>
43
+ <TableHead className="text-end w-20">Views</TableHead>
44
+ <TableHead className="text-end w-28">Engagement</TableHead>
45
45
  </TableRow>
46
46
  </TableHeader>
47
47
  <TableBody>
@@ -57,13 +57,13 @@ export function TopCreatorsTable({ rows }: TopCreatorsTableProps) {
57
57
  <span className="truncate">{row.email}</span>
58
58
  </div>
59
59
  </TableCell>
60
- <TableCell className="text-right tabular-nums">
60
+ <TableCell className="text-end tabular-nums">
61
61
  {row.recordings.toLocaleString()}
62
62
  </TableCell>
63
- <TableCell className="text-right tabular-nums">
63
+ <TableCell className="text-end tabular-nums">
64
64
  {row.views.toLocaleString()}
65
65
  </TableCell>
66
- <TableCell className="text-right tabular-nums">
66
+ <TableCell className="text-end tabular-nums">
67
67
  {row.engagement.toLocaleString()}
68
68
  </TableCell>
69
69
  </TableRow>
@@ -39,7 +39,7 @@ export function TopVideosTable({
39
39
  <TableHeader>
40
40
  <TableRow>
41
41
  <TableHead>Recording</TableHead>
42
- <TableHead className="text-right w-24">{metricLabel}</TableHead>
42
+ <TableHead className="text-end w-24">{metricLabel}</TableHead>
43
43
  </TableRow>
44
44
  </TableHeader>
45
45
  <TableBody>
@@ -53,7 +53,7 @@ export function TopVideosTable({
53
53
  {row.title || "Untitled"}
54
54
  </Link>
55
55
  </TableCell>
56
- <TableCell className="text-right tabular-nums">
56
+ <TableCell className="text-end tabular-nums">
57
57
  {row.count.toLocaleString()}
58
58
  </TableCell>
59
59
  </TableRow>
@@ -213,7 +213,7 @@ function HowToCard({ defaultOpen = true }: { defaultOpen?: boolean }) {
213
213
  {open ? (
214
214
  <IconChevronDown className="h-4 w-4 text-muted-foreground" />
215
215
  ) : (
216
- <IconChevronRight className="h-4 w-4 text-muted-foreground" />
216
+ <IconChevronRight className="h-4 w-4 text-muted-foreground rtl:-scale-x-100" />
217
217
  )}
218
218
  </CollapsibleTrigger>
219
219
  <CollapsibleContent>
@@ -439,7 +439,7 @@ function DictationRow({ dictation }: { dictation: Dictation }) {
439
439
  {expanded ? (
440
440
  <IconChevronDown className="h-3.5 w-3.5" />
441
441
  ) : (
442
- <IconChevronRight className="h-3.5 w-3.5" />
442
+ <IconChevronRight className="h-3.5 w-3.5 rtl:-scale-x-100" />
443
443
  )}
444
444
  {formatTime(dictation.createdAt)}
445
445
  </div>
@@ -454,7 +454,7 @@ function DictationRow({ dictation }: { dictation: Dictation }) {
454
454
  <span className="text-muted-foreground italic">No text</span>
455
455
  )}
456
456
  </div>
457
- <div className="col-span-1 text-right text-xs text-muted-foreground tabular-nums">
457
+ <div className="col-span-1 text-end text-xs text-muted-foreground tabular-nums">
458
458
  {formatDuration(dictation.durationMs)}
459
459
  </div>
460
460
  <div className="col-span-1 flex justify-end">
@@ -946,7 +946,7 @@ export default function DictateRoute() {
946
946
  <div className="col-span-2">When</div>
947
947
  <div className="col-span-2">Source</div>
948
948
  <div className="col-span-6">Text</div>
949
- <div className="col-span-1 text-right">Duration</div>
949
+ <div className="col-span-1 text-end">Duration</div>
950
950
  <div className="col-span-1" />
951
951
  </div>
952
952
  <div>
@@ -556,9 +556,9 @@ function CalendarAccountMenu({
556
556
  disabled={connectPending}
557
557
  >
558
558
  {connectPending ? (
559
- <IconLoader2 className="mr-2 h-4 w-4 animate-spin" />
559
+ <IconLoader2 className="me-2 h-4 w-4 animate-spin" />
560
560
  ) : (
561
- <IconExternalLink className="mr-2 h-4 w-4" />
561
+ <IconExternalLink className="me-2 h-4 w-4" />
562
562
  )}
563
563
  {primaryAccount ? "Reconnect calendar" : "Connect calendar"}
564
564
  </DropdownMenuItem>
@@ -574,7 +574,7 @@ function CalendarAccountMenu({
574
574
  }}
575
575
  className="text-destructive focus:text-destructive"
576
576
  >
577
- <IconPlugOff className="mr-2 h-4 w-4" />
577
+ <IconPlugOff className="me-2 h-4 w-4" />
578
578
  Disconnect {calendarAccountLabel(account)}
579
579
  </DropdownMenuItem>
580
580
  ))}
@@ -634,7 +634,7 @@ function MeetingsHeader({
634
634
  <h1 className="text-base font-semibold tracking-tight truncate">
635
635
  Meetings
636
636
  </h1>
637
- <div className="ml-auto flex items-center gap-2">
637
+ <div className="ms-auto flex items-center gap-2">
638
638
  <CalendarAccountMenu
639
639
  accounts={calendarAccounts}
640
640
  onConnected={onConnected}
@@ -648,18 +648,18 @@ function MeetingsHeader({
648
648
  Upcoming calendar meetings and your recorded notes.
649
649
  </p>
650
650
  <div className="relative max-w-sm">
651
- <IconSearch className="absolute left-2.5 top-1/2 -translate-y-1/2 h-3.5 w-3.5 text-muted-foreground" />
651
+ <IconSearch className="absolute start-2.5 top-1/2 -translate-y-1/2 h-3.5 w-3.5 text-muted-foreground" />
652
652
  <Input
653
653
  value={query}
654
654
  onChange={(e) => onQueryChange(e.target.value)}
655
655
  placeholder="Search meetings..."
656
- className="pl-8 pr-8 h-9 text-sm"
656
+ className="ps-8 pe-8 h-9 text-sm"
657
657
  />
658
658
  {query && (
659
659
  <button
660
660
  type="button"
661
661
  onClick={() => onQueryChange("")}
662
- className="absolute right-2 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground cursor-pointer"
662
+ className="absolute end-2 top-1/2 -translate-y-1/2 text-muted-foreground hover:text-foreground cursor-pointer"
663
663
  aria-label="Clear search"
664
664
  >
665
665
  <IconX className="h-3.5 w-3.5" />
@@ -1016,7 +1016,7 @@ export default function SettingsIndexRoute() {
1016
1016
  <CollapsibleTrigger asChild>
1017
1017
  <button
1018
1018
  type="button"
1019
- className="flex w-full items-center justify-between gap-3 px-3 py-3 text-left"
1019
+ className="flex w-full items-center justify-between gap-3 px-3 py-3 text-start"
1020
1020
  >
1021
1021
  <div className="min-w-0">
1022
1022
  <div className="flex items-center gap-2 text-sm font-medium">
@@ -204,7 +204,7 @@ export default function DownloadPage() {
204
204
  </a>
205
205
  <a
206
206
  href={appPath("/library")}
207
- className="ml-auto text-sm text-muted-foreground hover:text-foreground"
207
+ className="ms-auto text-sm text-muted-foreground hover:text-foreground"
208
208
  >
209
209
  Back to library
210
210
  </a>
@@ -245,7 +245,7 @@ export default function DownloadPage() {
245
245
  </div>
246
246
 
247
247
  {clipsChromeExtensionEnabled && (
248
- <section className="mt-10 w-full max-w-xl rounded-2xl border border-border bg-card p-4 text-left shadow-sm">
248
+ <section className="mt-10 w-full max-w-xl rounded-2xl border border-border bg-card p-4 text-start shadow-sm">
249
249
  <div className="flex items-start gap-3">
250
250
  <div className="flex h-9 w-9 shrink-0 items-center justify-center rounded-xl bg-primary/10 text-primary">
251
251
  <IconBrandChrome className="h-4 w-4" />
@@ -194,7 +194,7 @@ export default function InviteAcceptRoute() {
194
194
  onClick={() => setDeclineOpen(true)}
195
195
  disabled={accepting}
196
196
  >
197
- <IconX className="size-4 mr-1.5" />
197
+ <IconX className="size-4 me-1.5" />
198
198
  Decline
199
199
  </Button>
200
200
  <Button
@@ -202,7 +202,7 @@ export default function InviteAcceptRoute() {
202
202
  disabled={accepting}
203
203
  className="bg-primary hover:bg-primary/90"
204
204
  >
205
- <IconCheck className="size-4 mr-1.5" />
205
+ <IconCheck className="size-4 me-1.5" />
206
206
  {accepting ? "Joining…" : "Accept invite"}
207
207
  </Button>
208
208
  </div>
@@ -544,7 +544,7 @@ export default function RecordingPage() {
544
544
  detail &&
545
545
  role &&
546
546
  role !== "viewer" ? (
547
- <div className="mb-4 w-full max-w-xl rounded-md border border-border bg-card p-4 text-left shadow-sm">
547
+ <div className="mb-4 w-full max-w-xl rounded-md border border-border bg-card p-4 text-start shadow-sm">
548
548
  <div className="mb-2 text-xs font-medium uppercase tracking-wide text-muted-foreground">
549
549
  Details
550
550
  </div>
@@ -638,7 +638,7 @@ export default function RecordingPage() {
638
638
  onClick={() => navigate("/")}
639
639
  aria-label="Back"
640
640
  >
641
- <IconArrowLeft className="h-4 w-4" />
641
+ <IconArrowLeft className="h-4 w-4 rtl:-scale-x-100" />
642
642
  </Button>
643
643
  <div className="flex-1 min-w-0">
644
644
  <EditableRecordingTitle
@@ -912,7 +912,7 @@ export default function RecordingPage() {
912
912
 
913
913
  {/* Side panel */}
914
914
  {!editing ? (
915
- <aside className="w-[380px] border-l border-border flex flex-col shrink-0 bg-background">
915
+ <aside className="w-[380px] border-s border-border flex flex-col shrink-0 bg-background">
916
916
  <Tabs
917
917
  value={panel}
918
918
  onValueChange={(v) => setPanel(v as SidePanel)}
@@ -661,7 +661,7 @@ function RecordingErrorCard({
661
661
  {friendlyMessage}
662
662
  </p>
663
663
  {showTechnicalDetails && (
664
- <details className="mt-3 text-left text-xs text-muted-foreground">
664
+ <details className="mt-3 text-start text-xs text-muted-foreground">
665
665
  <summary className="cursor-pointer font-medium text-foreground">
666
666
  Technical details
667
667
  </summary>
@@ -673,7 +673,7 @@ function RecordingErrorCard({
673
673
  </div>
674
674
 
675
675
  {guidance && (
676
- <div className="border-b border-border bg-muted/25 px-6 py-4 text-left">
676
+ <div className="border-b border-border bg-muted/25 px-6 py-4 text-start">
677
677
  <div className="text-xs font-medium text-foreground">
678
678
  What to check
679
679
  </div>
@@ -2107,9 +2107,9 @@ export default function RecordRoute() {
2107
2107
  void doCancel();
2108
2108
  navigate("/library");
2109
2109
  }}
2110
- className="fixed left-4 top-4 z-30 inline-flex h-9 w-9 items-center justify-center rounded-full text-muted-foreground hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
2110
+ className="fixed start-4 top-4 z-30 inline-flex h-9 w-9 items-center justify-center rounded-full text-muted-foreground hover:bg-muted hover:text-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
2111
2111
  >
2112
- <IconArrowLeft className="h-5 w-5" />
2112
+ <IconArrowLeft className="h-5 w-5 rtl:-scale-x-100" />
2113
2113
  </button>
2114
2114
  )}
2115
2115
 
@@ -2151,7 +2151,7 @@ export default function RecordRoute() {
2151
2151
  )}
2152
2152
  </div>
2153
2153
  {!isDesktopApp && (
2154
- <div className="mx-auto mt-4 w-full max-w-md xl:absolute xl:left-[calc(50%+18rem)] xl:top-0 xl:mt-0 xl:w-72">
2154
+ <div className="mx-auto mt-4 w-full max-w-md xl:absolute xl:start-[calc(50%+18rem)] xl:top-0 xl:mt-0 xl:w-72">
2155
2155
  <DesktopRecorderCallout />
2156
2156
  </div>
2157
2157
  )}
@@ -567,7 +567,7 @@ export default function ShareRoute() {
567
567
  shareId ? (
568
568
  <Button asChild size="sm">
569
569
  <a href={buildSignInHref(`/r/${shareId}`)} className="gap-1.5">
570
- <IconLogin2 className="h-4 w-4" />
570
+ <IconLogin2 className="h-4 w-4 rtl:-scale-x-100" />
571
571
  Sign in
572
572
  </a>
573
573
  </Button>
@@ -642,7 +642,7 @@ export default function ShareRoute() {
642
642
  {message}
643
643
  </p>
644
644
  {isFailure && detail && canManageStorage ? (
645
- <div className="mb-4 w-full max-w-xl rounded-md border border-border bg-card p-4 text-left shadow-sm">
645
+ <div className="mb-4 w-full max-w-xl rounded-md border border-border bg-card p-4 text-start shadow-sm">
646
646
  <div className="mb-2 text-xs font-medium uppercase tracking-wide text-muted-foreground">
647
647
  Details
648
648
  </div>
@@ -675,14 +675,14 @@ export default function ShareRoute() {
675
675
  {!session && isFailure ? (
676
676
  <Button asChild size="sm">
677
677
  <a href={signInHref} className="gap-1.5">
678
- <IconLogin2 className="h-4 w-4" />
678
+ <IconLogin2 className="h-4 w-4 rtl:-scale-x-100" />
679
679
  Sign in to finish
680
680
  </a>
681
681
  </Button>
682
682
  ) : !session && !sessionLoading && !isFailure ? (
683
683
  <Button asChild variant="ghost" size="sm">
684
684
  <a href={signInHref} className="gap-1.5">
685
- <IconLogin2 className="h-4 w-4" />
685
+ <IconLogin2 className="h-4 w-4 rtl:-scale-x-100" />
686
686
  Sign in if this is yours
687
687
  </a>
688
688
  </Button>
@@ -724,7 +724,7 @@ export default function ShareRoute() {
724
724
  onClick={() => navigate("/")}
725
725
  aria-label="Back to home"
726
726
  >
727
- <IconArrowLeft className="h-4 w-4" />
727
+ <IconArrowLeft className="h-4 w-4 rtl:-scale-x-100" />
728
728
  </Button>
729
729
  ) : null}
730
730
  <div className="min-w-0 flex-1">
@@ -906,7 +906,7 @@ export default function ShareRoute() {
906
906
  </div>
907
907
  </div>
908
908
 
909
- <aside className="flex min-h-[420px] w-full shrink-0 flex-col border-t border-border bg-background lg:min-h-0 lg:w-[380px] lg:border-l lg:border-t-0">
909
+ <aside className="flex min-h-[420px] w-full shrink-0 flex-col border-t border-border bg-background lg:min-h-0 lg:w-[380px] lg:border-s lg:border-t-0">
910
910
  <Tabs defaultValue="agent" className="flex h-full flex-col">
911
911
  <TabsList className="mx-3 mt-3 grid w-auto grid-cols-4">
912
912
  <TabsTrigger value="agent" className="text-xs">
@@ -915,7 +915,7 @@ export default function ShareRoute() {
915
915
  <TabsTrigger value="comments" className="text-xs gap-1">
916
916
  Comments
917
917
  {comments.length > 0 ? (
918
- <span className="ml-0.5 rounded-full bg-accent px-1.5 text-[10px] tabular-nums">
918
+ <span className="ms-0.5 rounded-full bg-accent px-1.5 text-[10px] tabular-nums">
919
919
  {comments.length}
920
920
  </span>
921
921
  ) : null}
@@ -77,7 +77,7 @@ export function EmptyState() {
77
77
  {t("empty.noPageDescription")}
78
78
  </p>
79
79
  <Button onClick={handleCreate} size="sm">
80
- <IconPlus size={14} className="mr-1.5" />
80
+ <IconPlus size={14} className="me-1.5" />
81
81
  {t("empty.newPage")}
82
82
  </Button>
83
83
  </div>
@@ -507,14 +507,14 @@ export function DocumentToolbar({
507
507
 
508
508
  return (
509
509
  <>
510
- <div className="absolute top-2 right-2 z-10 flex items-center gap-0.5 rounded-xl border border-border/70 bg-background/95 p-1 shadow-sm backdrop-blur supports-[backdrop-filter]:bg-background/85 sm:top-3 sm:right-4 sm:gap-1">
510
+ <div className="absolute top-2 end-2 z-10 flex items-center gap-0.5 rounded-xl border border-border/70 bg-background/95 p-1 shadow-sm backdrop-blur supports-[backdrop-filter]:bg-background/85 sm:top-3 sm:end-4 sm:gap-1">
511
511
  {/* Presence — shared PresenceBar (agent + collaborator avatars) */}
512
512
  <PresenceBar
513
513
  activeUsers={activeUsers ?? []}
514
514
  agentPresent={agentPresent}
515
515
  agentActive={agentActive}
516
516
  currentUserEmail={currentUserEmail}
517
- className="mr-1"
517
+ className="me-1"
518
518
  />
519
519
  {isLocalFileDocument ? (
520
520
  <Button
@@ -589,24 +589,24 @@ export function DocumentToolbar({
589
589
  Local file
590
590
  </DropdownMenuLabel>
591
591
  <DropdownMenuItem disabled className="min-w-0">
592
- <IconFileText className="mr-2 h-4 w-4 shrink-0" />
592
+ <IconFileText className="me-2 h-4 w-4 shrink-0" />
593
593
  <span className="truncate">{source?.path}</span>
594
594
  </DropdownMenuItem>
595
595
  <DropdownMenuItem
596
596
  disabled={revealLocalSource.isPending}
597
597
  onSelect={() => void handleRevealLocalPath()}
598
598
  >
599
- <IconFolderOpen className="mr-2 h-4 w-4" />
599
+ <IconFolderOpen className="me-2 h-4 w-4" />
600
600
  Reveal in Finder
601
601
  </DropdownMenuItem>
602
602
  <DropdownMenuItem onSelect={handleCopyLocalRelativePath}>
603
- <IconCopy className="mr-2 h-4 w-4" />
603
+ <IconCopy className="me-2 h-4 w-4" />
604
604
  Copy relative path
605
605
  </DropdownMenuItem>
606
606
  <DropdownMenuItem
607
607
  onSelect={() => void handleCopyLocalAbsolutePath()}
608
608
  >
609
- <IconCopy className="mr-2 h-4 w-4" />
609
+ <IconCopy className="me-2 h-4 w-4" />
610
610
  Copy absolute path
611
611
  </DropdownMenuItem>
612
612
  </DropdownMenuGroup>
@@ -614,7 +614,7 @@ export function DocumentToolbar({
614
614
  <>
615
615
  <DropdownMenuGroup>
616
616
  <DropdownMenuItem onSelect={() => setHistoryOpen(true)}>
617
- <IconHistory className="mr-2 h-4 w-4" />
617
+ <IconHistory className="me-2 h-4 w-4" />
618
618
  Version history
619
619
  </DropdownMenuItem>
620
620
  </DropdownMenuGroup>
@@ -622,9 +622,9 @@ export function DocumentToolbar({
622
622
  <DropdownMenuSub>
623
623
  <DropdownMenuSubTrigger disabled={exportDocument.isPending}>
624
624
  {exportDocument.isPending ? (
625
- <IconLoader2 className="mr-2 h-4 w-4 animate-spin" />
625
+ <IconLoader2 className="me-2 h-4 w-4 animate-spin" />
626
626
  ) : (
627
- <IconDownload className="mr-2 h-4 w-4" />
627
+ <IconDownload className="me-2 h-4 w-4" />
628
628
  )}
629
629
  Export
630
630
  </DropdownMenuSubTrigger>
@@ -633,21 +633,21 @@ export function DocumentToolbar({
633
633
  disabled={exportDocument.isPending}
634
634
  onSelect={() => void handleExport("pdf")}
635
635
  >
636
- <IconFileTypePdf className="mr-2 h-4 w-4" />
636
+ <IconFileTypePdf className="me-2 h-4 w-4" />
637
637
  PDF
638
638
  </DropdownMenuItem>
639
639
  <DropdownMenuItem
640
640
  disabled={exportDocument.isPending}
641
641
  onSelect={() => void handleExport("markdown")}
642
642
  >
643
- <IconMarkdown className="mr-2 h-4 w-4" />
643
+ <IconMarkdown className="me-2 h-4 w-4" />
644
644
  Markdown
645
645
  </DropdownMenuItem>
646
646
  <DropdownMenuItem
647
647
  disabled={exportDocument.isPending}
648
648
  onSelect={() => void handleExport("html")}
649
649
  >
650
- <IconFileTypeHtml className="mr-2 h-4 w-4" />
650
+ <IconFileTypeHtml className="me-2 h-4 w-4" />
651
651
  HTML
652
652
  </DropdownMenuItem>
653
653
  </DropdownMenuSubContent>
@@ -666,25 +666,25 @@ export function DocumentToolbar({
666
666
  isLinked ? "text-foreground" : "text-muted-foreground",
667
667
  )}
668
668
  >
669
- <span className="mr-2 flex h-4 w-4 shrink-0 items-center justify-center">
669
+ <span className="me-2 flex h-4 w-4 shrink-0 items-center justify-center">
670
670
  {hasConflict ? (
671
671
  <span className="relative">
672
672
  <NotionIcon className="h-4 w-4" />
673
673
  <IconAlertTriangle
674
674
  size={8}
675
- className="absolute -right-1 -top-1 text-amber-500"
675
+ className="absolute -end-1 -top-1 text-amber-500"
676
676
  />
677
677
  </span>
678
678
  ) : isLinked && autoSync ? (
679
679
  <span className="relative">
680
680
  <NotionIcon className="h-4 w-4" />
681
- <span className="absolute -right-0.5 -top-0.5 h-2 w-2 rounded-full bg-emerald-500" />
681
+ <span className="absolute -end-0.5 -top-0.5 h-2 w-2 rounded-full bg-emerald-500" />
682
682
  </span>
683
683
  ) : (
684
684
  <NotionIcon className="h-4 w-4" />
685
685
  )}
686
686
  </span>
687
- <span className="min-w-0 flex-1 truncate text-left">
687
+ <span className="min-w-0 flex-1 truncate text-start">
688
688
  {isLinked
689
689
  ? "Notion sync"
690
690
  : isConnected
@@ -994,7 +994,7 @@ export function DocumentToolbar({
994
994
  ) : null}
995
995
  <div className="group relative">
996
996
  <NotificationsBell className="!h-8 !w-full !justify-start !rounded-sm !px-2 !py-1.5 !text-sm hover:!bg-accent hover:!text-accent-foreground focus-visible:!ring-0" />
997
- <span className="pointer-events-none absolute left-8 top-1/2 -translate-y-1/2 text-sm text-muted-foreground group-hover:text-accent-foreground">
997
+ <span className="pointer-events-none absolute start-8 top-1/2 -translate-y-1/2 text-sm text-muted-foreground group-hover:text-accent-foreground">
998
998
  Notifications
999
999
  </span>
1000
1000
  </div>
@@ -129,7 +129,7 @@ export function Layout({ children }: LayoutProps) {
129
129
  <button
130
130
  type="button"
131
131
  aria-label={t("navigation.openSidebar")}
132
- className="fixed left-3 top-3 z-30 flex h-10 w-10 items-center justify-center rounded-lg border border-border bg-background text-muted-foreground shadow-sm transition-colors hover:bg-accent hover:text-foreground md:hidden"
132
+ className="fixed start-3 top-3 z-30 flex h-10 w-10 items-center justify-center rounded-lg border border-border bg-background text-muted-foreground shadow-sm transition-colors hover:bg-accent hover:text-foreground md:hidden"
133
133
  onClick={() => setMobileSidebarOpen(true)}
134
134
  >
135
135
  <IconMenu2 size={18} />
@@ -169,7 +169,7 @@ export function Layout({ children }: LayoutProps) {
169
169
  <Header sidebarTrigger={mobileSidebarTrigger} />
170
170
  ) : null}
171
171
  <InvitationBanner
172
- className={`${showHeader ? "pl-4" : "pl-16"} sm:pl-4 [&>div]:flex-wrap [&>div]:items-start [&>div>span]:min-w-0 [&>div>span]:flex-1`}
172
+ className={`${showHeader ? "ps-4" : "ps-16"} sm:ps-4 [&>div]:flex-wrap [&>div]:items-start [&>div>span]:min-w-0 [&>div>span]:flex-1`}
173
173
  />
174
174
  {children}
175
175
  </main>