CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/components/index.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import { Typography } from "antd";
7
8
import AIAvatar from "./ai-avatar";
9
import CopyToClipBoard from "./copy-to-clipboard";
10
import Delay from "./delay";
11
12
export type { MenuItems } from "./dropdown-menu";
13
14
export { MarkdownInput } from "../markdown/markdown-input/main";
15
export { A } from "./A";
16
export { ActivityDisplay } from "./activity-display";
17
export { CloseX } from "./close-x";
18
export { CloseX2 } from "./close-x2";
19
export { UNIT, build_date, smc_git_rev, smc_version } from "./constants";
20
export { DateTimePicker } from "./date-time-picker";
21
export { DropdownMenu, MenuDivider, MenuItem } from "./dropdown-menu";
22
export { ErrorDisplay } from "./error-display";
23
export { Gap } from "./gap";
24
export { HelpIcon } from "./help-icon";
25
export * from "./hidden-visible";
26
export { HTML } from "./html";
27
export { Icon, IconName, isIconName } from "./icon";
28
export { LabeledRow } from "./labeled-row";
29
export { LLMNameLink } from "./llm-plain-link";
30
export { Loading, Estimate as LoadingEstimate } from "./loading";
31
export { LoginLink } from "./login-link";
32
export { MarkAll } from "./mark-all";
33
export { Markdown } from "./markdown";
34
export { NoWrap } from "./nowrap";
35
export { NumberInput } from "./number-input";
36
export { PathLink } from "./path-link";
37
export { ProfileIcon } from "./profile-icon";
38
export { ProjectState } from "./project-state";
39
export { QuestionMarkText } from "./question-mark-text";
40
export { r_human_list } from "./r_human_list";
41
export { r_join } from "./r_join";
42
export { RawPrompt } from "./raw-prompt";
43
export { Saving } from "./saving";
44
export { SearchInput } from "./search-input";
45
export { SelectorInput } from "./selector-input";
46
export { SettingBox } from "./setting-box";
47
export { SimpleX } from "./simple-x";
48
export { SkinnyError } from "./skinny-error";
49
export * from "./table-of-contents";
50
export { TextInput } from "./text-input";
51
export { TimeAgo, TimeAgoElement, is_different_date } from "./time-ago";
52
export { TimeElapsed } from "./time-elapsed";
53
export { Tip } from "./tip";
54
export { UncommittedChanges } from "./uncommited-changes";
55
export { UPGRADE_ERROR_STYLE, UpgradeAdjustor } from "./upgrade-adjustor";
56
57
export { AIAvatar, CopyToClipBoard, Delay };
58
59
export const { Text, Title, Paragraph } = Typography;
60
61