@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.
- package/corpus/core/CHANGELOG.md +6 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/client/AgentPanel.tsx +3 -3
- package/corpus/core/src/client/AgentTaskCard.tsx +2 -1
- package/corpus/core/src/client/AppearancePicker.tsx +1 -1
- package/corpus/core/src/client/AssistantChat.tsx +3 -3
- package/corpus/core/src/client/CommandMenu.tsx +4 -4
- package/corpus/core/src/client/ErrorBoundary.tsx +1 -1
- package/corpus/core/src/client/MultiTabAssistantChat.tsx +11 -11
- package/corpus/core/src/client/NewWorkspaceAppFlow.tsx +5 -5
- package/corpus/core/src/client/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/core/src/client/components/ui/sheet.tsx +1 -1
- package/corpus/core/src/client/composer/ComposerPlusMenu.tsx +6 -6
- package/corpus/core/src/client/composer/MentionPopover.tsx +4 -4
- package/corpus/core/src/client/composer/PastedTextChip.tsx +3 -3
- package/corpus/core/src/client/composer/PromptComposer.tsx +3 -3
- package/corpus/core/src/client/composer/TiptapComposer.tsx +16 -16
- package/corpus/core/src/client/guided-questions.tsx +6 -8
- package/corpus/core/src/client/i18n.tsx +2 -2
- package/corpus/core/src/client/integrations/IntegrationCard.tsx +2 -2
- package/corpus/core/src/client/integrations/IntegrationsPanel.tsx +4 -4
- package/corpus/core/src/client/notifications/NotificationsBell.tsx +3 -3
- package/corpus/core/src/client/onboarding/OnboardingBanner.tsx +3 -3
- package/corpus/core/src/client/onboarding/OnboardingPanel.tsx +17 -10
- package/corpus/core/src/client/org/OrgSwitcher.tsx +13 -11
- package/corpus/core/src/client/org/TeamPage.tsx +2 -2
- package/corpus/core/src/client/settings/AgentsSection.tsx +3 -3
- package/corpus/core/src/client/settings/AutomationsSection.tsx +3 -3
- package/corpus/core/src/client/settings/SecretsSection.tsx +2 -2
- package/corpus/core/src/client/settings/SettingsPanel.tsx +5 -7
- package/corpus/core/src/client/settings/SettingsSection.tsx +1 -1
- package/corpus/core/src/client/settings/UsageSection.tsx +3 -3
- package/corpus/core/src/client/settings/VoiceTranscriptionSection.tsx +3 -3
- package/corpus/core/src/client/sharing/ShareButton.tsx +7 -7
- package/corpus/core/src/client/sharing/ShareDialog.tsx +3 -3
- package/corpus/core/src/styles/agent-conversation.css +10 -10
- package/corpus/core/src/styles/blocks.css +2 -2
- package/corpus/core/src/styles/rich-markdown-editor.css +2 -2
- package/corpus/templates/analytics/app/components/layout/MobileNav.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/calendar.tsx +6 -6
- package/corpus/templates/analytics/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/analytics/app/components/ui/command.tsx +2 -2
- package/corpus/templates/analytics/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/analytics/app/components/ui/date-picker.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/analytics/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/analytics/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/analytics/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/analytics/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/analytics/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/analytics/app/components/ui/select.tsx +3 -3
- package/corpus/templates/analytics/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/analytics/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/analytics/app/components/ui/table.tsx +2 -2
- package/corpus/templates/analytics/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/assets/app/components/layout/Layout.tsx +2 -2
- package/corpus/templates/assets/app/components/layout/Sidebar.tsx +12 -12
- package/corpus/templates/assets/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/assets/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/assets/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/assets/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/assets/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/assets/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/assets/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/assets/app/components/ui/select.tsx +3 -3
- package/corpus/templates/assets/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/assets/app/components/ui/table.tsx +2 -2
- package/corpus/templates/assets/app/routes/library.tsx +3 -3
- package/corpus/templates/assets/app/routes/settings.tsx +1 -1
- package/corpus/templates/brain/app/components/layout/Sidebar.tsx +5 -5
- package/corpus/templates/brain/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/brain/app/components/ui/select.tsx +3 -3
- package/corpus/templates/brain/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/brain/app/components/ui/table.tsx +2 -2
- package/corpus/templates/calendar/app/components/calendar/GoogleConnectBanner.tsx +6 -6
- package/corpus/templates/calendar/app/components/calendar/GoogleSetupWizard.tsx +3 -3
- package/corpus/templates/calendar/app/components/layout/Sidebar.tsx +11 -9
- package/corpus/templates/calendar/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/calendar/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/calendar/app/components/ui/command.tsx +2 -2
- package/corpus/templates/calendar/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/calendar/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/calendar/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/calendar/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/calendar/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/calendar/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/calendar/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/select.tsx +3 -3
- package/corpus/templates/calendar/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/calendar/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/calendar/app/components/ui/sonner.tsx +1 -1
- package/corpus/templates/calendar/app/components/ui/table.tsx +2 -2
- package/corpus/templates/calendar/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/calendar/app/pages/Settings.tsx +5 -5
- package/corpus/templates/chat/app/components/layout/Sidebar.tsx +9 -9
- package/corpus/templates/chat/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/chat/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/chat/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/chat/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/chat/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/chat/app/components/ui/command.tsx +2 -2
- package/corpus/templates/chat/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/chat/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/chat/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/chat/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/chat/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/chat/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/chat/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/chat/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/chat/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/chat/app/components/ui/select.tsx +3 -3
- package/corpus/templates/chat/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/chat/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/chat/app/components/ui/table.tsx +2 -2
- package/corpus/templates/chat/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/clips/app/components/capture-install-options.tsx +3 -3
- package/corpus/templates/clips/app/components/editable-recording-title.tsx +1 -1
- package/corpus/templates/clips/app/components/library/bulk-action-toolbar.tsx +3 -3
- package/corpus/templates/clips/app/components/library/folder-tree.tsx +5 -5
- package/corpus/templates/clips/app/components/library/library-layout.tsx +3 -3
- package/corpus/templates/clips/app/components/library/organization-switcher.tsx +4 -4
- package/corpus/templates/clips/app/components/library/recording-card.tsx +11 -11
- package/corpus/templates/clips/app/components/library/search-bar.tsx +4 -4
- package/corpus/templates/clips/app/components/library/space-card.tsx +1 -1
- package/corpus/templates/clips/app/components/library/tag-input.tsx +1 -1
- package/corpus/templates/clips/app/components/meetings/quick-ask-sidebar.tsx +2 -2
- package/corpus/templates/clips/app/components/recorder/camera-visualizer.tsx +2 -2
- package/corpus/templates/clips/app/components/recorder/microphone-visualizer.tsx +1 -1
- package/corpus/templates/clips/app/components/recorder/pre-record-panel.tsx +4 -4
- package/corpus/templates/clips/app/components/recorder/storage-setup-card.tsx +1 -1
- package/corpus/templates/clips/app/components/sharing/share-ui.tsx +2 -2
- package/corpus/templates/clips/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/clips/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/clips/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/clips/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/clips/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/clips/app/components/ui/command.tsx +2 -2
- package/corpus/templates/clips/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/clips/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/clips/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/clips/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/clips/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/clips/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/clips/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/clips/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/clips/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/clips/app/components/ui/select.tsx +3 -3
- package/corpus/templates/clips/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/clips/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/clips/app/components/ui/table.tsx +2 -2
- package/corpus/templates/clips/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/clips/app/components/workspace/branding-editor.tsx +1 -1
- package/corpus/templates/clips/app/components/workspace/insights-hub.tsx +2 -2
- package/corpus/templates/clips/app/components/workspace/invite-dialog.tsx +2 -2
- package/corpus/templates/clips/app/components/workspace/top-creators-table.tsx +6 -6
- package/corpus/templates/clips/app/components/workspace/top-videos-table.tsx +2 -2
- package/corpus/templates/clips/app/routes/_app.dictate.tsx +4 -4
- package/corpus/templates/clips/app/routes/_app.meetings._index.tsx +7 -7
- package/corpus/templates/clips/app/routes/_app.settings._index.tsx +1 -1
- package/corpus/templates/clips/app/routes/download.tsx +2 -2
- package/corpus/templates/clips/app/routes/invite.$token.tsx +2 -2
- package/corpus/templates/clips/app/routes/r.$recordingId.tsx +3 -3
- package/corpus/templates/clips/app/routes/record.tsx +5 -5
- package/corpus/templates/clips/app/routes/share.$shareId.tsx +7 -7
- package/corpus/templates/content/app/components/EmptyState.tsx +1 -1
- package/corpus/templates/content/app/components/editor/DocumentToolbar.tsx +17 -17
- package/corpus/templates/content/app/components/layout/Layout.tsx +2 -2
- package/corpus/templates/content/app/components/sidebar/DocumentSidebar.tsx +10 -9
- package/corpus/templates/content/app/components/sidebar/DocumentTreeItem.tsx +10 -6
- package/corpus/templates/content/app/components/sidebar/NotionButton.tsx +3 -3
- package/corpus/templates/content/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/content/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/content/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/content/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/content/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/content/app/components/ui/table.tsx +2 -2
- package/corpus/templates/content/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/design/app/components/layout/Layout.tsx +3 -3
- package/corpus/templates/design/app/components/layout/Sidebar.tsx +3 -3
- package/corpus/templates/design/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/design/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/design/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/design/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/design/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/design/app/components/ui/command.tsx +2 -2
- package/corpus/templates/design/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/design/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/design/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/design/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/design/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/design/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/design/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/design/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/design/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/design/app/components/ui/select.tsx +3 -3
- package/corpus/templates/design/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/design/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/design/app/components/ui/table.tsx +2 -2
- package/corpus/templates/design/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/design/app/pages/DesignSystems.tsx +6 -8
- package/corpus/templates/design/app/pages/Index.tsx +8 -8
- package/corpus/templates/design/app/pages/NotFound.tsx +1 -1
- package/corpus/templates/design/app/pages/Templates.tsx +2 -2
- package/corpus/templates/forms/app/components/layout/Sidebar.tsx +3 -3
- package/corpus/templates/forms/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/forms/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/forms/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/forms/app/components/ui/calendar.tsx +9 -6
- package/corpus/templates/forms/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/forms/app/components/ui/command.tsx +2 -2
- package/corpus/templates/forms/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/forms/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/forms/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/forms/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/forms/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/forms/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/forms/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/forms/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/forms/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/forms/app/components/ui/select.tsx +3 -3
- package/corpus/templates/forms/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/forms/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/forms/app/components/ui/table.tsx +2 -2
- package/corpus/templates/forms/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/forms/app/pages/FormBuilderPage.tsx +18 -18
- package/corpus/templates/forms/app/pages/FormsListPage.tsx +9 -9
- package/corpus/templates/macros/app/components/layout/AppLayout.tsx +4 -4
- package/corpus/templates/macros/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/macros/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/macros/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/macros/app/components/ui/command.tsx +2 -2
- package/corpus/templates/macros/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/macros/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/macros/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/macros/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/macros/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/macros/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/macros/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/macros/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/macros/app/components/ui/select.tsx +3 -3
- package/corpus/templates/macros/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/macros/app/components/ui/table.tsx +2 -2
- package/corpus/templates/macros/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/macros/app/routes/_index.tsx +2 -2
- package/corpus/templates/macros/app/routes/analytics.tsx +1 -1
- package/corpus/templates/mail/app/components/GoogleConnectBanner.tsx +6 -6
- package/corpus/templates/mail/app/components/email/AttachmentStrip.tsx +2 -2
- package/corpus/templates/mail/app/components/email/EmailListItem.tsx +5 -5
- package/corpus/templates/mail/app/components/email/IntegrationsSidebar.tsx +5 -5
- package/corpus/templates/mail/app/components/email/MobileActionBar.tsx +3 -3
- package/corpus/templates/mail/app/components/layout/AppLayout.tsx +10 -10
- package/corpus/templates/mail/app/components/layout/CommandPalette.tsx +1 -1
- package/corpus/templates/mail/app/components/layout/SearchBar.tsx +3 -3
- package/corpus/templates/mail/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/mail/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/mail/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/mail/app/components/ui/calendar.tsx +4 -4
- package/corpus/templates/mail/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/mail/app/components/ui/command.tsx +2 -2
- package/corpus/templates/mail/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/mail/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/mail/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/mail/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/mail/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/mail/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/mail/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/mail/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/mail/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/mail/app/components/ui/select.tsx +3 -3
- package/corpus/templates/mail/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/mail/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/mail/app/components/ui/sonner.tsx +2 -2
- package/corpus/templates/mail/app/components/ui/table.tsx +2 -2
- package/corpus/templates/mail/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/plan/app/components/layout/Sidebar.tsx +10 -10
- package/corpus/templates/plan/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/plan/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/plan/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/plan/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/plan/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/plan/app/components/ui/command.tsx +2 -2
- package/corpus/templates/plan/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/plan/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/plan/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/plan/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/plan/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/plan/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/plan/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/plan/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/plan/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/plan/app/components/ui/select.tsx +3 -3
- package/corpus/templates/plan/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/plan/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/plan/app/components/ui/table.tsx +2 -2
- package/corpus/templates/plan/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/slides/app/components/layout/Layout.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/slides/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/slides/app/components/ui/command.tsx +2 -2
- package/corpus/templates/slides/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/slides/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/slides/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/slides/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/slides/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/slides/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/slides/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/slides/app/components/ui/select.tsx +3 -3
- package/corpus/templates/slides/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/slides/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/slides/app/components/ui/table.tsx +2 -2
- package/corpus/templates/slides/app/components/ui/toast.tsx +3 -3
- package/corpus/templates/videos/app/components/ui/alert-dialog.tsx +1 -1
- package/corpus/templates/videos/app/components/ui/alert.tsx +1 -1
- package/corpus/templates/videos/app/components/ui/breadcrumb.tsx +1 -1
- package/corpus/templates/videos/app/components/ui/calendar.tsx +5 -5
- package/corpus/templates/videos/app/components/ui/carousel.tsx +6 -6
- package/corpus/templates/videos/app/components/ui/command.tsx +2 -2
- package/corpus/templates/videos/app/components/ui/context-menu.tsx +9 -9
- package/corpus/templates/videos/app/components/ui/dialog.tsx +2 -2
- package/corpus/templates/videos/app/components/ui/drawer.tsx +1 -1
- package/corpus/templates/videos/app/components/ui/dropdown-menu.tsx +9 -9
- package/corpus/templates/videos/app/components/ui/input-otp.tsx +1 -1
- package/corpus/templates/videos/app/components/ui/menubar.tsx +9 -9
- package/corpus/templates/videos/app/components/ui/navigation-menu.tsx +3 -3
- package/corpus/templates/videos/app/components/ui/pagination.tsx +4 -4
- package/corpus/templates/videos/app/components/ui/scroll-area.tsx +1 -1
- package/corpus/templates/videos/app/components/ui/select.tsx +3 -3
- package/corpus/templates/videos/app/components/ui/sheet.tsx +2 -2
- package/corpus/templates/videos/app/components/ui/sidebar.tsx +6 -6
- package/corpus/templates/videos/app/components/ui/table.tsx +2 -2
- package/corpus/templates/videos/app/components/ui/toast.tsx +3 -3
- package/dist/client/AgentPanel.js +3 -3
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/AgentTaskCard.d.ts.map +1 -1
- package/dist/client/AgentTaskCard.js +1 -1
- package/dist/client/AgentTaskCard.js.map +1 -1
- package/dist/client/AppearancePicker.js +1 -1
- package/dist/client/AppearancePicker.js.map +1 -1
- package/dist/client/AssistantChat.js +3 -3
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/CommandMenu.js +4 -4
- package/dist/client/CommandMenu.js.map +1 -1
- package/dist/client/ErrorBoundary.js +1 -1
- package/dist/client/ErrorBoundary.js.map +1 -1
- package/dist/client/MultiTabAssistantChat.js +9 -9
- package/dist/client/MultiTabAssistantChat.js.map +1 -1
- package/dist/client/NewWorkspaceAppFlow.js +5 -5
- package/dist/client/NewWorkspaceAppFlow.js.map +1 -1
- package/dist/client/components/ui/dropdown-menu.js +6 -6
- package/dist/client/components/ui/dropdown-menu.js.map +1 -1
- package/dist/client/components/ui/sheet.js +1 -1
- package/dist/client/components/ui/sheet.js.map +1 -1
- package/dist/client/composer/ComposerPlusMenu.js +5 -5
- package/dist/client/composer/ComposerPlusMenu.js.map +1 -1
- package/dist/client/composer/MentionPopover.js +4 -4
- package/dist/client/composer/MentionPopover.js.map +1 -1
- package/dist/client/composer/PastedTextChip.js +2 -2
- package/dist/client/composer/PastedTextChip.js.map +1 -1
- package/dist/client/composer/PromptComposer.js +3 -3
- package/dist/client/composer/PromptComposer.js.map +1 -1
- package/dist/client/composer/TiptapComposer.js +12 -12
- package/dist/client/composer/TiptapComposer.js.map +1 -1
- package/dist/client/guided-questions.d.ts.map +1 -1
- package/dist/client/guided-questions.js +5 -5
- package/dist/client/guided-questions.js.map +1 -1
- package/dist/client/i18n.js +2 -2
- package/dist/client/i18n.js.map +1 -1
- package/dist/client/integrations/IntegrationCard.js +1 -1
- package/dist/client/integrations/IntegrationCard.js.map +1 -1
- package/dist/client/integrations/IntegrationsPanel.js +4 -4
- package/dist/client/integrations/IntegrationsPanel.js.map +1 -1
- package/dist/client/notifications/NotificationsBell.js +3 -3
- package/dist/client/notifications/NotificationsBell.js.map +1 -1
- package/dist/client/onboarding/OnboardingBanner.js +3 -3
- package/dist/client/onboarding/OnboardingBanner.js.map +1 -1
- package/dist/client/onboarding/OnboardingPanel.d.ts.map +1 -1
- package/dist/client/onboarding/OnboardingPanel.js +15 -10
- package/dist/client/onboarding/OnboardingPanel.js.map +1 -1
- package/dist/client/org/OrgSwitcher.d.ts.map +1 -1
- package/dist/client/org/OrgSwitcher.js +7 -7
- package/dist/client/org/OrgSwitcher.js.map +1 -1
- package/dist/client/org/TeamPage.js +2 -2
- package/dist/client/org/TeamPage.js.map +1 -1
- package/dist/client/settings/AgentsSection.js +3 -3
- package/dist/client/settings/AgentsSection.js.map +1 -1
- package/dist/client/settings/AutomationsSection.js +2 -2
- package/dist/client/settings/AutomationsSection.js.map +1 -1
- package/dist/client/settings/SecretsSection.js +2 -2
- package/dist/client/settings/SecretsSection.js.map +1 -1
- package/dist/client/settings/SettingsPanel.d.ts.map +1 -1
- package/dist/client/settings/SettingsPanel.js +4 -4
- package/dist/client/settings/SettingsPanel.js.map +1 -1
- package/dist/client/settings/SettingsSection.js +1 -1
- package/dist/client/settings/SettingsSection.js.map +1 -1
- package/dist/client/settings/UsageSection.js +2 -2
- package/dist/client/settings/UsageSection.js.map +1 -1
- package/dist/client/settings/VoiceTranscriptionSection.js +3 -3
- package/dist/client/settings/VoiceTranscriptionSection.js.map +1 -1
- package/dist/client/sharing/ShareButton.js +6 -6
- package/dist/client/sharing/ShareButton.js.map +1 -1
- package/dist/client/sharing/ShareDialog.js +3 -3
- package/dist/client/sharing/ShareDialog.js.map +1 -1
- package/dist/styles/agent-conversation.css +10 -10
- package/dist/styles/blocks.css +2 -2
- package/dist/styles/rich-markdown-editor.css +2 -2
- package/package.json +1 -1
|
@@ -315,7 +315,7 @@ export function FormBuilderPage() {
|
|
|
315
315
|
return (
|
|
316
316
|
<div className="flex flex-col h-full">
|
|
317
317
|
{/* Top bar */}
|
|
318
|
-
<div className="flex items-center justify-between border-b border-border
|
|
318
|
+
<div className="flex items-center justify-between border-b border-border ps-12 pe-2 sm:px-4 md:ps-4 h-14 shrink-0 min-w-0">
|
|
319
319
|
<div className="flex items-center gap-3 min-w-0 flex-1">
|
|
320
320
|
<Skeleton className="h-5 w-48" />
|
|
321
321
|
<Skeleton className="h-4 w-14 rounded-full" />
|
|
@@ -344,7 +344,7 @@ export function FormBuilderPage() {
|
|
|
344
344
|
</div>
|
|
345
345
|
</div>
|
|
346
346
|
</div>
|
|
347
|
-
<div className="hidden lg:block w-72 border-
|
|
347
|
+
<div className="hidden lg:block w-72 border-s border-border p-4 space-y-4">
|
|
348
348
|
<Skeleton className="h-4 w-32" />
|
|
349
349
|
<Skeleton className="h-9 w-full" />
|
|
350
350
|
<Skeleton className="h-9 w-full" />
|
|
@@ -519,8 +519,8 @@ export function FormBuilderPage() {
|
|
|
519
519
|
<div className="flex flex-col h-full">
|
|
520
520
|
{codeRequiredDialog}
|
|
521
521
|
{/* Top bar */}
|
|
522
|
-
<div className="flex items-center justify-between border-b border-border
|
|
523
|
-
<div className="flex items-center gap-2 sm:gap-3 relative min-w-0 flex-1
|
|
522
|
+
<div className="flex items-center justify-between border-b border-border ps-12 pe-2 sm:px-4 md:ps-4 h-14 shrink-0 min-w-0">
|
|
523
|
+
<div className="flex items-center gap-2 sm:gap-3 relative min-w-0 flex-1 me-2">
|
|
524
524
|
<span
|
|
525
525
|
ref={titleMeasureRef}
|
|
526
526
|
aria-hidden
|
|
@@ -646,7 +646,7 @@ export function FormBuilderPage() {
|
|
|
646
646
|
disabled={pendingStatus !== null}
|
|
647
647
|
>
|
|
648
648
|
{pendingStatus !== null && (
|
|
649
|
-
<IconLoader2 className="h-3.5 w-3.5
|
|
649
|
+
<IconLoader2 className="h-3.5 w-3.5 me-1.5 animate-spin" />
|
|
650
650
|
)}
|
|
651
651
|
{pendingStatus === "published"
|
|
652
652
|
? "Publishing…"
|
|
@@ -678,15 +678,15 @@ export function FormBuilderPage() {
|
|
|
678
678
|
onClick={handleTogglePublish}
|
|
679
679
|
>
|
|
680
680
|
{pendingStatus === "draft" ? (
|
|
681
|
-
<IconLoader2 className="h-4 w-4
|
|
681
|
+
<IconLoader2 className="h-4 w-4 me-2 animate-spin" />
|
|
682
682
|
) : (
|
|
683
|
-
<IconLock className="h-4 w-4
|
|
683
|
+
<IconLock className="h-4 w-4 me-2" />
|
|
684
684
|
)}
|
|
685
685
|
{pendingStatus === "draft" ? "Unpublishing…" : "Unpublish"}
|
|
686
686
|
</DropdownMenuItem>
|
|
687
687
|
{canArchive && (
|
|
688
688
|
<DropdownMenuItem onClick={handleArchiveForm}>
|
|
689
|
-
<IconArchive className="h-4 w-4
|
|
689
|
+
<IconArchive className="h-4 w-4 me-2" />
|
|
690
690
|
Move to Archive
|
|
691
691
|
</DropdownMenuItem>
|
|
692
692
|
)}
|
|
@@ -717,7 +717,7 @@ export function FormBuilderPage() {
|
|
|
717
717
|
{(form.responseCount ?? 0) > 0 && (
|
|
718
718
|
<Badge
|
|
719
719
|
variant="secondary"
|
|
720
|
-
className="
|
|
720
|
+
className="ms-1.5 text-[9px] px-1 py-0 h-4 min-w-4"
|
|
721
721
|
>
|
|
722
722
|
{form.responseCount}
|
|
723
723
|
</Badge>
|
|
@@ -941,7 +941,7 @@ function BuilderContent({
|
|
|
941
941
|
)}
|
|
942
942
|
>
|
|
943
943
|
<div
|
|
944
|
-
className="absolute -
|
|
944
|
+
className="absolute -start-3 top-1/2 -translate-y-1/2 opacity-0 group-hover:opacity-100 cursor-grab hidden sm:block"
|
|
945
945
|
aria-label="Drag to reorder"
|
|
946
946
|
>
|
|
947
947
|
<IconGripVertical className="h-4 w-4 text-muted-foreground" />
|
|
@@ -1264,13 +1264,13 @@ function ResultsContent({ formId, form }: { formId: string; form: any }) {
|
|
|
1264
1264
|
</div>
|
|
1265
1265
|
<div className="flex items-center gap-2">
|
|
1266
1266
|
<div className="relative">
|
|
1267
|
-
<IconSearch className="absolute
|
|
1267
|
+
<IconSearch className="absolute start-2 top-1/2 -translate-y-1/2 h-3.5 w-3.5 text-muted-foreground pointer-events-none" />
|
|
1268
1268
|
<Input
|
|
1269
1269
|
type="search"
|
|
1270
1270
|
placeholder="Search responses…"
|
|
1271
1271
|
value={search}
|
|
1272
1272
|
onChange={(e) => setSearch(e.target.value)}
|
|
1273
|
-
className="h-8
|
|
1273
|
+
className="h-8 ps-7 text-xs w-44 sm:w-56"
|
|
1274
1274
|
/>
|
|
1275
1275
|
</div>
|
|
1276
1276
|
<Button
|
|
@@ -1302,13 +1302,13 @@ function ResultsContent({ formId, form }: { formId: string; form: any }) {
|
|
|
1302
1302
|
<tr className="border-b border-border bg-muted/30">
|
|
1303
1303
|
<th
|
|
1304
1304
|
scope="col"
|
|
1305
|
-
className="min-w-16 px-4 py-2.5 text-
|
|
1305
|
+
className="min-w-16 px-4 py-2.5 text-start text-xs font-medium text-muted-foreground whitespace-nowrap"
|
|
1306
1306
|
>
|
|
1307
1307
|
#
|
|
1308
1308
|
</th>
|
|
1309
1309
|
<th
|
|
1310
1310
|
scope="col"
|
|
1311
|
-
className="min-w-36 px-4 py-2.5 text-
|
|
1311
|
+
className="min-w-36 px-4 py-2.5 text-start text-xs font-medium text-muted-foreground whitespace-nowrap"
|
|
1312
1312
|
>
|
|
1313
1313
|
<ResultsSortableHeader
|
|
1314
1314
|
label="Submitted"
|
|
@@ -1320,7 +1320,7 @@ function ResultsContent({ formId, form }: { formId: string; form: any }) {
|
|
|
1320
1320
|
{hasSubmitterEmail && (
|
|
1321
1321
|
<th
|
|
1322
1322
|
scope="col"
|
|
1323
|
-
className="px-4 py-2.5 text-
|
|
1323
|
+
className="px-4 py-2.5 text-start text-xs font-medium text-muted-foreground whitespace-nowrap"
|
|
1324
1324
|
>
|
|
1325
1325
|
<ResultsSortableHeader
|
|
1326
1326
|
label="Email"
|
|
@@ -1334,7 +1334,7 @@ function ResultsContent({ formId, form }: { formId: string; form: any }) {
|
|
|
1334
1334
|
<th
|
|
1335
1335
|
key={f.id}
|
|
1336
1336
|
scope="col"
|
|
1337
|
-
className="px-4 py-2.5 text-
|
|
1337
|
+
className="px-4 py-2.5 text-start text-xs font-medium text-muted-foreground whitespace-nowrap"
|
|
1338
1338
|
>
|
|
1339
1339
|
<ResultsSortableHeader
|
|
1340
1340
|
label={f.label}
|
|
@@ -1660,7 +1660,7 @@ function IntegrationsEditor({
|
|
|
1660
1660
|
key={type}
|
|
1661
1661
|
type="button"
|
|
1662
1662
|
onClick={() => addIntegration(type)}
|
|
1663
|
-
className="cursor-pointer rounded-lg border bg-background p-3 text-
|
|
1663
|
+
className="cursor-pointer rounded-lg border bg-background p-3 text-start hover:bg-muted/40 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring min-h-[44px]"
|
|
1664
1664
|
>
|
|
1665
1665
|
<div className="flex items-center gap-3">
|
|
1666
1666
|
<IntegrationBrandMark type={type} className="h-9 w-9" />
|
|
@@ -1771,7 +1771,7 @@ function IntegrationsEditor({
|
|
|
1771
1771
|
size="sm"
|
|
1772
1772
|
className="h-11 w-full rounded-xl"
|
|
1773
1773
|
>
|
|
1774
|
-
<IconPlus className="h-3.5 w-3.5
|
|
1774
|
+
<IconPlus className="h-3.5 w-3.5 me-1.5" />
|
|
1775
1775
|
{hasIntegrations ? "Add Another Integration" : "Add Integration"}
|
|
1776
1776
|
</Button>
|
|
1777
1777
|
</DropdownMenuTrigger>
|
|
@@ -394,7 +394,7 @@ export function FormsListPage() {
|
|
|
394
394
|
<Button
|
|
395
395
|
variant="ghost"
|
|
396
396
|
size="icon"
|
|
397
|
-
className="
|
|
397
|
+
className="ms-auto h-8 w-8"
|
|
398
398
|
onClick={clearSelection}
|
|
399
399
|
aria-label="Exit selection mode"
|
|
400
400
|
>
|
|
@@ -526,7 +526,7 @@ export function FormsListPage() {
|
|
|
526
526
|
navigate(`/forms/${form.id}/responses`);
|
|
527
527
|
}}
|
|
528
528
|
>
|
|
529
|
-
<IconChartBar className="h-4 w-4
|
|
529
|
+
<IconChartBar className="h-4 w-4 me-2" />
|
|
530
530
|
View Responses
|
|
531
531
|
</DropdownMenuItem>
|
|
532
532
|
<DropdownMenuItem
|
|
@@ -535,7 +535,7 @@ export function FormsListPage() {
|
|
|
535
535
|
handleRestore(form.id);
|
|
536
536
|
}}
|
|
537
537
|
>
|
|
538
|
-
<IconArchiveOff className="h-4 w-4
|
|
538
|
+
<IconArchiveOff className="h-4 w-4 me-2" />
|
|
539
539
|
Restore
|
|
540
540
|
</DropdownMenuItem>
|
|
541
541
|
<DropdownMenuItem
|
|
@@ -545,7 +545,7 @@ export function FormsListPage() {
|
|
|
545
545
|
setPurgeId(form.id);
|
|
546
546
|
}}
|
|
547
547
|
>
|
|
548
|
-
<IconTrash className="h-4 w-4
|
|
548
|
+
<IconTrash className="h-4 w-4 me-2" />
|
|
549
549
|
Delete forever
|
|
550
550
|
</DropdownMenuItem>
|
|
551
551
|
</>
|
|
@@ -574,7 +574,7 @@ export function FormsListPage() {
|
|
|
574
574
|
navigate(`/forms/${form.id}`);
|
|
575
575
|
}}
|
|
576
576
|
>
|
|
577
|
-
<IconExternalLink className="h-4 w-4
|
|
577
|
+
<IconExternalLink className="h-4 w-4 me-2" />
|
|
578
578
|
Open
|
|
579
579
|
</DropdownMenuItem>
|
|
580
580
|
);
|
|
@@ -587,7 +587,7 @@ export function FormsListPage() {
|
|
|
587
587
|
navigate(`/forms/${form.id}/responses`);
|
|
588
588
|
}}
|
|
589
589
|
>
|
|
590
|
-
<IconChartBar className="h-4 w-4
|
|
590
|
+
<IconChartBar className="h-4 w-4 me-2" />
|
|
591
591
|
View Responses
|
|
592
592
|
</DropdownMenuItem>
|
|
593
593
|
<DropdownMenuItem
|
|
@@ -596,7 +596,7 @@ export function FormsListPage() {
|
|
|
596
596
|
handleTogglePublish(form);
|
|
597
597
|
}}
|
|
598
598
|
>
|
|
599
|
-
<IconExternalLink className="h-4 w-4
|
|
599
|
+
<IconExternalLink className="h-4 w-4 me-2" />
|
|
600
600
|
{form.status === "published"
|
|
601
601
|
? "Unpublish"
|
|
602
602
|
: "Publish"}
|
|
@@ -607,7 +607,7 @@ export function FormsListPage() {
|
|
|
607
607
|
handleDuplicate(form);
|
|
608
608
|
}}
|
|
609
609
|
>
|
|
610
|
-
<IconCopy className="h-4 w-4
|
|
610
|
+
<IconCopy className="h-4 w-4 me-2" />
|
|
611
611
|
Duplicate
|
|
612
612
|
</DropdownMenuItem>
|
|
613
613
|
<DropdownMenuItem
|
|
@@ -617,7 +617,7 @@ export function FormsListPage() {
|
|
|
617
617
|
handleDelete(form.id);
|
|
618
618
|
}}
|
|
619
619
|
>
|
|
620
|
-
<IconTrash className="h-4 w-4
|
|
620
|
+
<IconTrash className="h-4 w-4 me-2" />
|
|
621
621
|
Delete
|
|
622
622
|
</DropdownMenuItem>
|
|
623
623
|
</>
|
|
@@ -135,7 +135,7 @@ export function AppLayout({ children }: { children: React.ReactNode }) {
|
|
|
135
135
|
{/* Desktop sidebar */}
|
|
136
136
|
<aside
|
|
137
137
|
className={cn(
|
|
138
|
-
"hidden shrink-0 flex-col border-
|
|
138
|
+
"hidden shrink-0 flex-col border-e border-border bg-sidebar text-sidebar-foreground transition-[width] duration-200 md:flex",
|
|
139
139
|
desktopSidebarCollapsed ? "w-14" : "w-56",
|
|
140
140
|
)}
|
|
141
141
|
>
|
|
@@ -331,10 +331,10 @@ function SyncIndicator({ sidebarCollapsed }: { sidebarCollapsed: boolean }) {
|
|
|
331
331
|
return (
|
|
332
332
|
<div
|
|
333
333
|
className={cn(
|
|
334
|
-
"pointer-events-none fixed bottom-10
|
|
334
|
+
"pointer-events-none fixed bottom-10 start-4 z-50 flex h-8 items-center gap-2 rounded-full border border-white/[0.06] bg-muted/80 px-3 text-xs text-muted-foreground shadow-sm backdrop-blur-sm md:bottom-8",
|
|
335
335
|
sidebarCollapsed
|
|
336
|
-
? "md:
|
|
337
|
-
: "md:
|
|
336
|
+
? "md:start-[calc(3.5rem+1rem)]"
|
|
337
|
+
: "md:start-[calc(14rem+1rem)]",
|
|
338
338
|
)}
|
|
339
339
|
>
|
|
340
340
|
<IconLoader2 className="h-3.5 w-3.5 animate-spin" />
|
|
@@ -4,7 +4,7 @@ import { cva, type VariantProps } from "class-variance-authority";
|
|
|
4
4
|
import { cn } from "@/lib/utils";
|
|
5
5
|
|
|
6
6
|
const alertVariants = cva(
|
|
7
|
-
"relative w-full rounded-lg border p-4 [&>svg~*]:
|
|
7
|
+
"relative w-full rounded-lg border p-4 [&>svg~*]:ps-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:start-4 [&>svg]:top-4 [&>svg]:text-foreground",
|
|
8
8
|
{
|
|
9
9
|
variants: {
|
|
10
10
|
variant: {
|
|
@@ -83,7 +83,7 @@ const BreadcrumbSeparator = ({
|
|
|
83
83
|
className={cn("[&>svg]:size-3.5", className)}
|
|
84
84
|
{...props}
|
|
85
85
|
>
|
|
86
|
-
{children ?? <IconChevronRight />}
|
|
86
|
+
{children ?? <IconChevronRight className="rtl:-scale-x-100" />}
|
|
87
87
|
</li>
|
|
88
88
|
);
|
|
89
89
|
BreadcrumbSeparator.displayName = "BreadcrumbSeparator";
|
|
@@ -41,7 +41,7 @@ const CommandInput = React.forwardRef<
|
|
|
41
41
|
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input>
|
|
42
42
|
>(({ className, ...props }, ref) => (
|
|
43
43
|
<div className="flex items-center border-b px-3" cmdk-input-wrapper="">
|
|
44
|
-
<IconSearch className="
|
|
44
|
+
<IconSearch className="me-2 h-4 w-4 shrink-0 opacity-50" />
|
|
45
45
|
<CommandPrimitive.Input
|
|
46
46
|
ref={ref}
|
|
47
47
|
className={cn(
|
|
@@ -132,7 +132,7 @@ const CommandShortcut = ({
|
|
|
132
132
|
return (
|
|
133
133
|
<span
|
|
134
134
|
className={cn(
|
|
135
|
-
"
|
|
135
|
+
"ms-auto text-xs tracking-widest text-muted-foreground",
|
|
136
136
|
className,
|
|
137
137
|
)}
|
|
138
138
|
{...props}
|
|
@@ -30,13 +30,13 @@ const ContextMenuSubTrigger = React.forwardRef<
|
|
|
30
30
|
ref={ref}
|
|
31
31
|
className={cn(
|
|
32
32
|
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
|
|
33
|
-
inset && "
|
|
33
|
+
inset && "ps-8",
|
|
34
34
|
className,
|
|
35
35
|
)}
|
|
36
36
|
{...props}
|
|
37
37
|
>
|
|
38
38
|
{children}
|
|
39
|
-
<IconChevronRight className="
|
|
39
|
+
<IconChevronRight className="ms-auto h-4 w-4 rtl:-scale-x-100" />
|
|
40
40
|
</ContextMenuPrimitive.SubTrigger>
|
|
41
41
|
));
|
|
42
42
|
ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
|
|
@@ -83,7 +83,7 @@ const ContextMenuItem = React.forwardRef<
|
|
|
83
83
|
ref={ref}
|
|
84
84
|
className={cn(
|
|
85
85
|
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
86
|
-
inset && "
|
|
86
|
+
inset && "ps-8",
|
|
87
87
|
className,
|
|
88
88
|
)}
|
|
89
89
|
{...props}
|
|
@@ -98,13 +98,13 @@ const ContextMenuCheckboxItem = React.forwardRef<
|
|
|
98
98
|
<ContextMenuPrimitive.CheckboxItem
|
|
99
99
|
ref={ref}
|
|
100
100
|
className={cn(
|
|
101
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5
|
|
101
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
102
102
|
className,
|
|
103
103
|
)}
|
|
104
104
|
checked={checked}
|
|
105
105
|
{...props}
|
|
106
106
|
>
|
|
107
|
-
<span className="absolute
|
|
107
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
108
108
|
<ContextMenuPrimitive.ItemIndicator>
|
|
109
109
|
<IconCheck className="h-4 w-4" />
|
|
110
110
|
</ContextMenuPrimitive.ItemIndicator>
|
|
@@ -122,12 +122,12 @@ const ContextMenuRadioItem = React.forwardRef<
|
|
|
122
122
|
<ContextMenuPrimitive.RadioItem
|
|
123
123
|
ref={ref}
|
|
124
124
|
className={cn(
|
|
125
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5
|
|
125
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
126
126
|
className,
|
|
127
127
|
)}
|
|
128
128
|
{...props}
|
|
129
129
|
>
|
|
130
|
-
<span className="absolute
|
|
130
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
131
131
|
<ContextMenuPrimitive.ItemIndicator>
|
|
132
132
|
<IconCircleFilled className="h-2 w-2" />
|
|
133
133
|
</ContextMenuPrimitive.ItemIndicator>
|
|
@@ -147,7 +147,7 @@ const ContextMenuLabel = React.forwardRef<
|
|
|
147
147
|
ref={ref}
|
|
148
148
|
className={cn(
|
|
149
149
|
"px-2 py-1.5 text-sm font-semibold text-foreground",
|
|
150
|
-
inset && "
|
|
150
|
+
inset && "ps-8",
|
|
151
151
|
className,
|
|
152
152
|
)}
|
|
153
153
|
{...props}
|
|
@@ -174,7 +174,7 @@ const ContextMenuShortcut = ({
|
|
|
174
174
|
return (
|
|
175
175
|
<span
|
|
176
176
|
className={cn(
|
|
177
|
-
"
|
|
177
|
+
"ms-auto text-xs tracking-widest text-muted-foreground",
|
|
178
178
|
className,
|
|
179
179
|
)}
|
|
180
180
|
{...props}
|
|
@@ -45,7 +45,7 @@ const DialogContent = React.forwardRef<
|
|
|
45
45
|
{...props}
|
|
46
46
|
>
|
|
47
47
|
{children}
|
|
48
|
-
<DialogPrimitive.Close className="absolute
|
|
48
|
+
<DialogPrimitive.Close className="absolute end-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
|
|
49
49
|
<IconX className="h-4 w-4" />
|
|
50
50
|
<span className="sr-only">Close</span>
|
|
51
51
|
</DialogPrimitive.Close>
|
|
@@ -60,7 +60,7 @@ const DialogHeader = ({
|
|
|
60
60
|
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
61
61
|
<div
|
|
62
62
|
className={cn(
|
|
63
|
-
"flex flex-col space-y-1.5 text-center sm:text-
|
|
63
|
+
"flex flex-col space-y-1.5 text-center sm:text-start",
|
|
64
64
|
className,
|
|
65
65
|
)}
|
|
66
66
|
{...props}
|
|
@@ -58,7 +58,7 @@ const DrawerHeader = ({
|
|
|
58
58
|
...props
|
|
59
59
|
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
60
60
|
<div
|
|
61
|
-
className={cn("grid gap-1.5 p-4 text-center sm:text-
|
|
61
|
+
className={cn("grid gap-1.5 p-4 text-center sm:text-start", className)}
|
|
62
62
|
{...props}
|
|
63
63
|
/>
|
|
64
64
|
);
|
|
@@ -30,13 +30,13 @@ const DropdownMenuSubTrigger = React.forwardRef<
|
|
|
30
30
|
ref={ref}
|
|
31
31
|
className={cn(
|
|
32
32
|
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent",
|
|
33
|
-
inset && "
|
|
33
|
+
inset && "ps-8",
|
|
34
34
|
className,
|
|
35
35
|
)}
|
|
36
36
|
{...props}
|
|
37
37
|
>
|
|
38
38
|
{children}
|
|
39
|
-
<IconChevronRight className="
|
|
39
|
+
<IconChevronRight className="ms-auto h-4 w-4 rtl:-scale-x-100" />
|
|
40
40
|
</DropdownMenuPrimitive.SubTrigger>
|
|
41
41
|
));
|
|
42
42
|
DropdownMenuSubTrigger.displayName =
|
|
@@ -96,7 +96,7 @@ const DropdownMenuItem = React.forwardRef<
|
|
|
96
96
|
ref={ref}
|
|
97
97
|
className={cn(
|
|
98
98
|
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
99
|
-
inset && "
|
|
99
|
+
inset && "ps-8",
|
|
100
100
|
className,
|
|
101
101
|
)}
|
|
102
102
|
{...props}
|
|
@@ -111,13 +111,13 @@ const DropdownMenuCheckboxItem = React.forwardRef<
|
|
|
111
111
|
<DropdownMenuPrimitive.CheckboxItem
|
|
112
112
|
ref={ref}
|
|
113
113
|
className={cn(
|
|
114
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5
|
|
114
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
115
115
|
className,
|
|
116
116
|
)}
|
|
117
117
|
checked={checked}
|
|
118
118
|
{...props}
|
|
119
119
|
>
|
|
120
|
-
<span className="absolute
|
|
120
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
121
121
|
<DropdownMenuPrimitive.ItemIndicator>
|
|
122
122
|
<IconCheck className="h-4 w-4" />
|
|
123
123
|
</DropdownMenuPrimitive.ItemIndicator>
|
|
@@ -135,12 +135,12 @@ const DropdownMenuRadioItem = React.forwardRef<
|
|
|
135
135
|
<DropdownMenuPrimitive.RadioItem
|
|
136
136
|
ref={ref}
|
|
137
137
|
className={cn(
|
|
138
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5
|
|
138
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
139
139
|
className,
|
|
140
140
|
)}
|
|
141
141
|
{...props}
|
|
142
142
|
>
|
|
143
|
-
<span className="absolute
|
|
143
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
144
144
|
<DropdownMenuPrimitive.ItemIndicator>
|
|
145
145
|
<IconCircleFilled className="h-2 w-2" />
|
|
146
146
|
</DropdownMenuPrimitive.ItemIndicator>
|
|
@@ -160,7 +160,7 @@ const DropdownMenuLabel = React.forwardRef<
|
|
|
160
160
|
ref={ref}
|
|
161
161
|
className={cn(
|
|
162
162
|
"px-2 py-1.5 text-sm font-semibold",
|
|
163
|
-
inset && "
|
|
163
|
+
inset && "ps-8",
|
|
164
164
|
className,
|
|
165
165
|
)}
|
|
166
166
|
{...props}
|
|
@@ -186,7 +186,7 @@ const DropdownMenuShortcut = ({
|
|
|
186
186
|
}: React.HTMLAttributes<HTMLSpanElement>) => {
|
|
187
187
|
return (
|
|
188
188
|
<span
|
|
189
|
-
className={cn("
|
|
189
|
+
className={cn("ms-auto text-xs tracking-widest opacity-60", className)}
|
|
190
190
|
{...props}
|
|
191
191
|
/>
|
|
192
192
|
);
|
|
@@ -58,13 +58,13 @@ const MenubarSubTrigger = React.forwardRef<
|
|
|
58
58
|
ref={ref}
|
|
59
59
|
className={cn(
|
|
60
60
|
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
|
|
61
|
-
inset && "
|
|
61
|
+
inset && "ps-8",
|
|
62
62
|
className,
|
|
63
63
|
)}
|
|
64
64
|
{...props}
|
|
65
65
|
>
|
|
66
66
|
{children}
|
|
67
|
-
<IconChevronRight className="
|
|
67
|
+
<IconChevronRight className="ms-auto h-4 w-4 rtl:-scale-x-100" />
|
|
68
68
|
</MenubarPrimitive.SubTrigger>
|
|
69
69
|
));
|
|
70
70
|
MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
|
|
@@ -119,7 +119,7 @@ const MenubarItem = React.forwardRef<
|
|
|
119
119
|
ref={ref}
|
|
120
120
|
className={cn(
|
|
121
121
|
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
122
|
-
inset && "
|
|
122
|
+
inset && "ps-8",
|
|
123
123
|
className,
|
|
124
124
|
)}
|
|
125
125
|
{...props}
|
|
@@ -134,13 +134,13 @@ const MenubarCheckboxItem = React.forwardRef<
|
|
|
134
134
|
<MenubarPrimitive.CheckboxItem
|
|
135
135
|
ref={ref}
|
|
136
136
|
className={cn(
|
|
137
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5
|
|
137
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
138
138
|
className,
|
|
139
139
|
)}
|
|
140
140
|
checked={checked}
|
|
141
141
|
{...props}
|
|
142
142
|
>
|
|
143
|
-
<span className="absolute
|
|
143
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
144
144
|
<MenubarPrimitive.ItemIndicator>
|
|
145
145
|
<IconCheck className="h-4 w-4" />
|
|
146
146
|
</MenubarPrimitive.ItemIndicator>
|
|
@@ -157,12 +157,12 @@ const MenubarRadioItem = React.forwardRef<
|
|
|
157
157
|
<MenubarPrimitive.RadioItem
|
|
158
158
|
ref={ref}
|
|
159
159
|
className={cn(
|
|
160
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5
|
|
160
|
+
"relative flex cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
161
161
|
className,
|
|
162
162
|
)}
|
|
163
163
|
{...props}
|
|
164
164
|
>
|
|
165
|
-
<span className="absolute
|
|
165
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
166
166
|
<MenubarPrimitive.ItemIndicator>
|
|
167
167
|
<IconCircleFilled className="h-2 w-2" />
|
|
168
168
|
</MenubarPrimitive.ItemIndicator>
|
|
@@ -182,7 +182,7 @@ const MenubarLabel = React.forwardRef<
|
|
|
182
182
|
ref={ref}
|
|
183
183
|
className={cn(
|
|
184
184
|
"px-2 py-1.5 text-sm font-semibold",
|
|
185
|
-
inset && "
|
|
185
|
+
inset && "ps-8",
|
|
186
186
|
className,
|
|
187
187
|
)}
|
|
188
188
|
{...props}
|
|
@@ -209,7 +209,7 @@ const MenubarShortcut = ({
|
|
|
209
209
|
return (
|
|
210
210
|
<span
|
|
211
211
|
className={cn(
|
|
212
|
-
"
|
|
212
|
+
"ms-auto text-xs tracking-widest text-muted-foreground",
|
|
213
213
|
className,
|
|
214
214
|
)}
|
|
215
215
|
{...props}
|
|
@@ -55,7 +55,7 @@ const NavigationMenuTrigger = React.forwardRef<
|
|
|
55
55
|
>
|
|
56
56
|
{children}{" "}
|
|
57
57
|
<IconChevronDown
|
|
58
|
-
className="relative top-[1px]
|
|
58
|
+
className="relative top-[1px] ms-1 h-3 w-3 transition duration-200 group-data-[state=open]:rotate-180"
|
|
59
59
|
aria-hidden="true"
|
|
60
60
|
/>
|
|
61
61
|
</NavigationMenuPrimitive.Trigger>
|
|
@@ -69,7 +69,7 @@ const NavigationMenuContent = React.forwardRef<
|
|
|
69
69
|
<NavigationMenuPrimitive.Content
|
|
70
70
|
ref={ref}
|
|
71
71
|
className={cn(
|
|
72
|
-
"
|
|
72
|
+
"start-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ",
|
|
73
73
|
className,
|
|
74
74
|
)}
|
|
75
75
|
{...props}
|
|
@@ -83,7 +83,7 @@ const NavigationMenuViewport = React.forwardRef<
|
|
|
83
83
|
React.ElementRef<typeof NavigationMenuPrimitive.Viewport>,
|
|
84
84
|
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport>
|
|
85
85
|
>(({ className, ...props }, ref) => (
|
|
86
|
-
<div className={cn("absolute
|
|
86
|
+
<div className={cn("absolute start-0 top-full flex justify-center")}>
|
|
87
87
|
<NavigationMenuPrimitive.Viewport
|
|
88
88
|
className={cn(
|
|
89
89
|
"origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",
|
|
@@ -70,10 +70,10 @@ const PaginationPrevious = ({
|
|
|
70
70
|
<PaginationLink
|
|
71
71
|
aria-label="Go to previous page"
|
|
72
72
|
size="default"
|
|
73
|
-
className={cn("gap-1
|
|
73
|
+
className={cn("gap-1 ps-2.5", className)}
|
|
74
74
|
{...props}
|
|
75
75
|
>
|
|
76
|
-
<IconChevronLeft className="h-4 w-4" />
|
|
76
|
+
<IconChevronLeft className="h-4 w-4 rtl:-scale-x-100" />
|
|
77
77
|
<span>Previous</span>
|
|
78
78
|
</PaginationLink>
|
|
79
79
|
);
|
|
@@ -86,11 +86,11 @@ const PaginationNext = ({
|
|
|
86
86
|
<PaginationLink
|
|
87
87
|
aria-label="Go to next page"
|
|
88
88
|
size="default"
|
|
89
|
-
className={cn("gap-1
|
|
89
|
+
className={cn("gap-1 pe-2.5", className)}
|
|
90
90
|
{...props}
|
|
91
91
|
>
|
|
92
92
|
<span>Next</span>
|
|
93
|
-
<IconChevronRight className="h-4 w-4" />
|
|
93
|
+
<IconChevronRight className="h-4 w-4 rtl:-scale-x-100" />
|
|
94
94
|
</PaginationLink>
|
|
95
95
|
);
|
|
96
96
|
PaginationNext.displayName = "PaginationNext";
|
|
@@ -31,7 +31,7 @@ const ScrollBar = React.forwardRef<
|
|
|
31
31
|
className={cn(
|
|
32
32
|
"flex touch-none select-none transition-colors",
|
|
33
33
|
orientation === "vertical" &&
|
|
34
|
-
"h-full w-2.5 border-
|
|
34
|
+
"h-full w-2.5 border-s border-s-transparent p-[1px]",
|
|
35
35
|
orientation === "horizontal" &&
|
|
36
36
|
"h-2.5 flex-col border-t border-t-transparent p-[1px]",
|
|
37
37
|
className,
|
|
@@ -103,7 +103,7 @@ const SelectLabel = React.forwardRef<
|
|
|
103
103
|
>(({ className, ...props }, ref) => (
|
|
104
104
|
<SelectPrimitive.Label
|
|
105
105
|
ref={ref}
|
|
106
|
-
className={cn("py-1.5
|
|
106
|
+
className={cn("py-1.5 ps-8 pe-2 text-sm font-semibold", className)}
|
|
107
107
|
{...props}
|
|
108
108
|
/>
|
|
109
109
|
));
|
|
@@ -116,12 +116,12 @@ const SelectItem = React.forwardRef<
|
|
|
116
116
|
<SelectPrimitive.Item
|
|
117
117
|
ref={ref}
|
|
118
118
|
className={cn(
|
|
119
|
-
"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5
|
|
119
|
+
"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 ps-8 pe-2 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
120
120
|
className,
|
|
121
121
|
)}
|
|
122
122
|
{...props}
|
|
123
123
|
>
|
|
124
|
-
<span className="absolute
|
|
124
|
+
<span className="absolute start-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
125
125
|
<SelectPrimitive.ItemIndicator>
|
|
126
126
|
<IconCheck className="h-4 w-4" />
|
|
127
127
|
</SelectPrimitive.ItemIndicator>
|