1import command_palette from "./command_palette"
2import project_panel from "./project_panel"
3import search from "./search"
4import picker from "./picker"
5import workspace from "./workspace"
6import context_menu from "./context_menu"
7import shared_screen from "./shared_screen"
8import project_diagnostics from "./project_diagnostics"
9import contact_notification from "./contact_notification"
10import update_notification from "./update_notification"
11import simple_message_notification from "./simple_message_notification"
12import project_shared_notification from "./project_shared_notification"
13import tooltip from "./tooltip"
14import terminal from "./terminal"
15import contact_finder from "./contact_finder"
16import collab_panel from "./collab_panel"
17import toolbar_dropdown_menu from "./toolbar_dropdown_menu"
18import incoming_call_notification from "./incoming_call_notification"
19import welcome from "./welcome"
20import copilot from "./copilot"
21import assistant from "./assistant"
22import { titlebar } from "./titlebar"
23import editor from "./editor"
24import feedback from "./feedback"
25import { useTheme } from "../common"
26import channels_panel from "./channels_panel"
27
28export default function app(): any {
29 const theme = useTheme()
30
31 return {
32 meta: {
33 name: theme.name,
34 is_light: theme.is_light,
35 },
36 command_palette: command_palette(),
37 contact_notification: contact_notification(),
38 project_shared_notification: project_shared_notification(),
39 incoming_call_notification: incoming_call_notification(),
40 picker: picker(),
41 workspace: workspace(),
42 titlebar: titlebar(),
43 copilot: copilot(),
44 welcome: welcome(),
45 context_menu: context_menu(),
46 editor: editor(),
47 project_diagnostics: project_diagnostics(),
48 project_panel: project_panel(),
49 channels_panel: channels_panel(),
50 collab_panel: collab_panel(),
51 contact_finder: contact_finder(),
52 toolbar_dropdown_menu: toolbar_dropdown_menu(),
53 search: search(),
54 shared_screen: shared_screen(),
55 update_notification: update_notification(),
56 simple_message_notification: simple_message_notification(),
57 tooltip: tooltip(),
58 terminal: terminal(),
59 assistant: assistant(),
60 feedback: feedback(),
61 }
62}