@chat21/chat21-ionic 3.0.60-rc8 → 3.0.61-rc3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/CHANGELOG.md +35 -1
  2. package/LICENSE +661 -21
  3. package/README.md +2 -0
  4. package/angular.json +2 -0
  5. package/env.sample +3 -1
  6. package/package.json +5 -1
  7. package/src/app/app.component.html +11 -2
  8. package/src/app/app.component.scss +13 -1
  9. package/src/app/app.component.ts +32 -9
  10. package/src/app/app.module.ts +2 -1
  11. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +2 -2
  12. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +22 -1
  13. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +2 -3
  14. package/src/app/components/ddp-header/ddp-header.component.html +14 -7
  15. package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
  16. package/src/app/components/ddp-header/ddp-header.component.ts +21 -2
  17. package/src/app/components/project-item/project-item.component.html +7 -6
  18. package/src/app/components/project-item/project-item.component.scss +35 -15
  19. package/src/app/components/project-item/project-item.component.ts +15 -2
  20. package/src/app/components/sidebar/sidebar.component.html +210 -0
  21. package/src/app/components/sidebar/sidebar.component.scss +11 -0
  22. package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
  23. package/src/app/components/sidebar/sidebar.component.ts +400 -0
  24. package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +102 -0
  25. package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +310 -0
  26. package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
  27. package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +421 -0
  28. package/src/app/pages/conversation-detail/conversation-detail.page.html +34 -46
  29. package/src/app/pages/conversation-detail/conversation-detail.page.ts +54 -20
  30. package/src/app/pages/conversations-list/conversations-list.page.html +11 -7
  31. package/src/app/pages/conversations-list/conversations-list.page.ts +33 -8
  32. package/src/app/pages/profile-info/profile-info.page.html +2 -2
  33. package/src/app/pages/profile-info/profile-info.page.ts +23 -21
  34. package/src/app/shared/shared.module.ts +13 -0
  35. package/src/assets/i18n/de.json +30 -12
  36. package/src/assets/i18n/en.json +22 -4
  37. package/src/assets/i18n/es.json +22 -4
  38. package/src/assets/i18n/fr.json +22 -4
  39. package/src/assets/i18n/it.json +22 -4
  40. package/src/assets/i18n/pt.json +23 -5
  41. package/src/assets/i18n/ru.json +23 -5
  42. package/src/assets/i18n/tr.json +24 -5
  43. package/src/assets/images/language_flag/ar.png +0 -0
  44. package/src/assets/images/language_flag/bg.png +0 -0
  45. package/src/assets/images/language_flag/ca.png +0 -0
  46. package/src/assets/images/language_flag/cs.png +0 -0
  47. package/src/assets/images/language_flag/da.png +0 -0
  48. package/src/assets/images/language_flag/de.png +0 -0
  49. package/src/assets/images/language_flag/el.png +0 -0
  50. package/src/assets/images/language_flag/en.png +0 -0
  51. package/src/assets/images/language_flag/es.png +0 -0
  52. package/src/assets/images/language_flag/fa.png +0 -0
  53. package/src/assets/images/language_flag/fi.png +0 -0
  54. package/src/assets/images/language_flag/fr.png +0 -0
  55. package/src/assets/images/language_flag/he.png +0 -0
  56. package/src/assets/images/language_flag/hi.png +0 -0
  57. package/src/assets/images/language_flag/hu.png +0 -0
  58. package/src/assets/images/language_flag/id.png +0 -0
  59. package/src/assets/images/language_flag/it.png +0 -0
  60. package/src/assets/images/language_flag/ja.png +0 -0
  61. package/src/assets/images/language_flag/ko.png +0 -0
  62. package/src/assets/images/language_flag/ml-IN.png +0 -0
  63. package/src/assets/images/language_flag/ne-NP.png +0 -0
  64. package/src/assets/images/language_flag/nl.png +0 -0
  65. package/src/assets/images/language_flag/no.png +0 -0
  66. package/src/assets/images/language_flag/pl.png +0 -0
  67. package/src/assets/images/language_flag/pt-BR.png +0 -0
  68. package/src/assets/images/language_flag/pt.png +0 -0
  69. package/src/assets/images/language_flag/ro.png +0 -0
  70. package/src/assets/images/language_flag/ru.png +0 -0
  71. package/src/assets/images/language_flag/sk.png +0 -0
  72. package/src/assets/images/language_flag/sl.png +0 -0
  73. package/src/assets/images/language_flag/sv-SE.png +0 -0
  74. package/src/assets/images/language_flag/ta.png +0 -0
  75. package/src/assets/images/language_flag/th.png +0 -0
  76. package/src/assets/images/language_flag/tr.png +0 -0
  77. package/src/assets/images/language_flag/uk.png +0 -0
  78. package/src/assets/images/language_flag/vi.png +0 -0
  79. package/src/assets/images/language_flag/zh-CN.png +0 -0
  80. package/src/assets/images/language_flag/zh-TW.png +0 -0
  81. package/src/assets/images/no_image_user.png +0 -0
  82. package/src/assets/tiledesk-solo-logo.png +0 -0
  83. package/src/chat-config-pre-test.json +3 -1
  84. package/src/chat-config-template.json +3 -1
  85. package/src/chat-config.json +4 -2
  86. package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +1 -1
  87. package/src/global.scss +451 -3
  88. package/src/index.html +7 -0
package/CHANGELOG.md CHANGED
@@ -1,7 +1,41 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ ### 3.0.61-rc3
4
+ - Replaces console.log with custom loggers
5
+ - Fixes the bug: the info support sidebar is no more displayed
6
+
7
+ ### 3.0.61-rc2
8
+ - Fixes the bug: Profile picture in the sidebar does not update when logged in with another user after logging out
9
+ - Bug Fix: in the "info-profile" page avoid the "uid of undefined" error
10
+ - Adds the "user details" sidebar
11
+ - Adds the languages flags images
12
+ - Allows to close the "user details" sidebar by clicking outside it
13
+ - Adds the tooltips to the links of the sidebar
14
+ - Hides the sidebar when the teammate logs out, if the app is on a mobile device and if the environment variable "supportMode" is set to false
15
+ - Hides in the item showing unassigned conversations the button to pin a project if the app is not on a mobile device
16
+ - Gets in the sidebar the feature tokens from the environment variables
17
+ - Install the "Roboto" font
18
+ - Changes font priority in global.scss: replace "Helvetica Neue" font with "Roboto" font
19
+ - Imports the "Poppins" font family into index.html
20
+ - Adds the "Resolve" tooltip to the "archive" button available in the conversation list
21
+ - Displays the "Resolved Conversations" button and the "Teammates" button in the header of the conversation list based on how the "teammatesButton" and "archivedButton" environment variables are set
22
+ - Adds "teammatesButton" and "archivedButton" variables to the environments
23
+ - Adds the "TEAMMATES_BUTTON" and the "ARCHIVED_BUTTON" variables to the env.sample file
24
+ - Adds the "teammatesButton" and the "archivedButton" variables to the "chat-config-template.json" file and to "the chat-config.json" file
25
+ - Updates the section "Configuration" of the "README.md" file with the new variables "teammatesButton" and the "archivedButton"
26
+
27
+ ### 3.0.61-rc1
28
+ - Adds a sidebar that allows navigation to the dashboard
29
+
30
+ ### 3.0.60
31
+ - Deploys in production
32
+
33
+ ### 3.0.60-rc9
34
+ - Adds the message "All conversations served" in the conversation details section that appears when there are no active conversations
35
+ - Fixes the bug: in the item that displays the number of unassigned conversations the button "fix a project" does not go to the right in mobile mode
36
+
3
37
  ### 3.0.60-rc8
4
- - Fixes the bug:: "info" messages sent by "SYSTEM" are not translated
38
+ - Fixes the bug: "info" messages sent by "SYSTEM" are not translated
5
39
  - Adds the Portuguese language
6
40
  - Adds the French language
7
41
  - Adds the Russian language