mobileIconsAliasesMap.ts 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. export default {
  3. 'vip-user': 'crown',
  4. 'vip-organization': 'crown-silver',
  5. 'input-cancel': 'close-small',
  6. tooltip: 'info',
  7. 'common-alert-danger': 'close-small',
  8. 'common-alert-dismiss': 'close',
  9. 'common-alert-info': 'info',
  10. 'common-alert-success': 'check-circle-outline',
  11. 'common-alert-warning': 'warning',
  12. 'common-notification-warn': 'info',
  13. 'common-notification-success': 'check',
  14. 'common-notification-error': 'warning',
  15. 'common-notification-info': 'info',
  16. 'ticket-escalating': 'warning-triangle',
  17. 'ticket-state-circle': 'check-circle-no',
  18. 'encryption-enabled': 'lock',
  19. 'encryption-disabled': 'unlock',
  20. 'sign-enabled': 'signed',
  21. 'sign-disabled': 'not-signed',
  22. 'remove-attachment': 'close-small',
  23. // editor, some of them are the same
  24. 'text-style-underline': 'text-style-underline',
  25. 'text-style-bold': 'text-style-bold',
  26. 'text-style-italic': 'text-style-italic',
  27. 'text-style-strikethrough': 'text-style-strikethrough',
  28. 'editor-inline-image': 'photos',
  29. 'editor-inline-link': 'link',
  30. 'text-style-h': 'text-style-h',
  31. 'text-style-h1': 'text-style-h1',
  32. 'text-style-h2': 'text-style-h2',
  33. 'text-style-h3': 'text-style-h3',
  34. 'editor-ordered-list': 'ordered-list',
  35. 'editor-bullet-list': 'list',
  36. 'editor-remove-formatting': 'remove-formatting',
  37. 'editor-mention-user': 'at-sign',
  38. 'editor-mention-knowledge-base': 'mention-kb',
  39. 'editor-mention-text-module': 'snippet',
  40. 'editor-table': 'table',
  41. 'editor-code': 'code',
  42. 'editor-code-block': 'code-square',
  43. 'editor-code-slash': 'code-slash',
  44. 'editor-indent-right': 'text-indent-right',
  45. 'editor-indent-left': 'text-indent-left',
  46. 'editor-text-color': 'text-style-color',
  47. 'editor-action-checkmark': 'check',
  48. '2fa-security-keys': 'security-key',
  49. '2fa-authenticator-app': 'mobile-code',
  50. 'form-field-link': 'external-link',
  51. 'mail-file': 'mail-out',
  52. // these aliases are used in shared context, but they refer to the same name
  53. search: 'search',
  54. loading: 'loading',
  55. show: 'show',
  56. hide: 'hide',
  57. // WhatsApp status icons
  58. read: 'check-double-circle',
  59. delivered: 'check-double',
  60. send: 'check',
  61. // Icons in shared article security composables
  62. 'signing-success': 'signed',
  63. 'signing-fail': 'not-signed',
  64. 'encryption-success': 'lock',
  65. 'encryption-fail': 'encryption-error',
  66. // Avatar indicator
  67. 'avatar-indicator-inactive': 'inactive-user',
  68. 'avatar-indicator-without-access': 'notification-unsubscribed',
  69. 'avatar-indicator-out-of-office': 'vacation-mode',
  70. 'avatar-indicator-editing-desktop': 'desktop-edit',
  71. 'avatar-indicator-editing-mobile': 'edit',
  72. 'avatar-indicator-desktop': 'desktop',
  73. 'avatar-indicator-mobile': 'avatar-indicator-mobile',
  74. 'avatar-indicator-idle': 'avatar-indicator-idle',
  75. }