/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45/**6* User Interface specific constants7*/89// icon name used for shared files, only accessible for authenticated users10export const SHARE_AUTHENTICATED_ICON = "user";11export const SHARE_AUTHENTICATED_EXPLANATION =12"only visible to those who are signed in";1314// boolean flags for various shared files visibility modes15export const SHARE_FLAGS = {16LISTED: { unlisted: false, disabled: false, authenticated: false }, // aka PUBLIC17UNLISTED: { unlisted: true, disabled: false, authenticated: false },18DISABLED: { unlisted: false, disabled: true, authenticated: false }, // aka PRIVATE19AUTHENTICATED: { unlisted: false, disabled: false, authenticated: true },20} as const;2122// documentation pages23export const DOC_AI = "https://doc.cocalc.com/ai.html";2425// How we call Posit's RStudio (rserver) IDE. They trademark "RStudio"26// see https://posit.co/about/trademark-guidelines/27// and a core principle of our company is to be as respectful as possible28// to all legal requirements. We thus don't use their trademark29// anywhere in our frontend.30export const R_IDE = "R IDE";3132// Default font size for account settings and UI elements33export const DEFAULT_FONT_SIZE = 14;3435// Icon unicode character for dark mode toggle (☽ - first quarter moon)36export const DARK_MODE_ICON = 0x263d;3738// Icon unicode character for accessibility (♿ - wheelchair symbol)39export const ACCESSIBILITY_ICON = 0x267f;4041// Keyword for accessibility settings, in account settings and URL query parameter42export const A11Y = "accessibility";4344// Icon unicode characters for auto-sync arrows in LaTeX editor45export const SYNC_FORWARD_ICON = 0x21a6; // ↦ - rightwards arrow $mapto$46export const SYNC_INVERSE_ICON = 0x21a4; // ↤ - leftwards arrow $mapfrom$474849