您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.ts 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * Thresholds for displaying toolbox buttons.
  3. */
  4. export const THRESHOLDS = [
  5. {
  6. width: 565,
  7. order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'reactions', 'participants', 'tileview' ]
  8. },
  9. {
  10. width: 520,
  11. order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants', 'tileview' ]
  12. },
  13. {
  14. width: 470,
  15. order: [ 'microphone', 'camera', 'desktop', 'chat', 'raisehand', 'participants' ]
  16. },
  17. {
  18. width: 420,
  19. order: [ 'microphone', 'camera', 'desktop', 'chat', 'participants' ]
  20. },
  21. {
  22. width: 370,
  23. order: [ 'microphone', 'camera', 'chat', 'participants' ]
  24. },
  25. {
  26. width: 225,
  27. order: [ 'microphone', 'camera', 'chat' ]
  28. },
  29. {
  30. width: 200,
  31. order: [ 'microphone', 'camera' ]
  32. }
  33. ];
  34. export const NOT_APPLICABLE = 'N/A';
  35. export const TOOLBAR_TIMEOUT = 4000;
  36. export const DRAWER_MAX_HEIGHT = '80dvh - 64px';
  37. export const NOTIFY_CLICK_MODE = {
  38. ONLY_NOTIFY: 'ONLY_NOTIFY',
  39. PREVENT_AND_NOTIFY: 'PREVENT_AND_NOTIFY'
  40. };
  41. // Around 300 to be displayed above components like chat
  42. export const ZINDEX_DIALOG_PORTAL = 302;
  43. /**
  44. * Color for spinner displayed in the toolbar.
  45. */
  46. export const SPINNER_COLOR = '#929292';