Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

constants.ts 1.0KB

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