constants.ts 632 B

123456789101112
  1. export const NO_ID_SECTIONS = ['Recent', 'Starred'];
  2. // Height of the search result item
  3. export const SEARCH_ITEM_HEIGHT = 58;
  4. export const SEARCH_ITEM_MARGIN = 8;
  5. export const DEFAULT_SORT = { label: 'A\u2013Z', value: 'alpha-asc' };
  6. export const SECTION_STORAGE_KEY = 'search.sections';
  7. export const GENERAL_FOLDER_ID = 0;
  8. export const GENERAL_FOLDER_UID = 'general';
  9. export const GENERAL_FOLDER_TITLE = 'General';
  10. export const PREVIEWS_LOCAL_STORAGE_KEY = 'grafana.dashboard.previews';
  11. export const SEARCH_PANELS_LOCAL_STORAGE_KEY = 'grafana.search.include.panels';
  12. export const SEARCH_SELECTED_LAYOUT = 'grafana.search.layout';