@chat21/chat21-ionic 3.0.5-9.1 → 3.0.6-2.2

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 (179) hide show
  1. package/CHANGELOG.md +203 -1
  2. package/LICENSE +661 -21
  3. package/README.md +13 -1
  4. package/angular.json +4 -0
  5. package/config.xml +4 -5
  6. package/deploy_pre.sh +44 -5
  7. package/deploy_prod.sh +36 -7
  8. package/env.sample +4 -2
  9. package/package.json +12 -8
  10. package/resources/{Android → android}/icon/drawable-hdpi-icon.png +0 -0
  11. package/resources/{Android → android}/icon/drawable-ldpi-icon.png +0 -0
  12. package/resources/{Android → android}/icon/drawable-mdpi-icon.png +0 -0
  13. package/resources/{Android → android}/icon/drawable-xhdpi-icon.png +0 -0
  14. package/resources/{Android → android}/icon/drawable-xxhdpi-icon.png +0 -0
  15. package/resources/{Android → android}/icon/drawable-xxxhdpi-icon.png +0 -0
  16. package/resources/{Android → android}/icon.png +0 -0
  17. package/resources/{Android → android}/splash/drawable-land-hdpi-screen.png +0 -0
  18. package/resources/{Android → android}/splash/drawable-land-ldpi-screen.png +0 -0
  19. package/resources/{Android → android}/splash/drawable-land-mdpi-screen.png +0 -0
  20. package/resources/{Android → android}/splash/drawable-land-xhdpi-screen.png +0 -0
  21. package/resources/{Android → android}/splash/drawable-land-xxhdpi-screen.png +0 -0
  22. package/resources/{Android → android}/splash/drawable-land-xxxhdpi-screen.png +0 -0
  23. package/resources/{Android → android}/splash/drawable-port-hdpi-screen.png +0 -0
  24. package/resources/{Android → android}/splash/drawable-port-ldpi-screen.png +0 -0
  25. package/resources/{Android → android}/splash/drawable-port-mdpi-screen.png +0 -0
  26. package/resources/{Android → android}/splash/drawable-port-xhdpi-screen.png +0 -0
  27. package/resources/{Android → android}/splash/drawable-port-xxhdpi-screen.png +0 -0
  28. package/resources/{Android → android}/splash/drawable-port-xxxhdpi-screen.png +0 -0
  29. package/resources/{Android → android}/splash.png +0 -0
  30. package/src/app/app-routing.module.ts +15 -0
  31. package/src/app/app.component.html +14 -4
  32. package/src/app/app.component.scss +18 -1
  33. package/src/app/app.component.ts +104 -75
  34. package/src/app/app.module.ts +14 -5
  35. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +36 -25
  36. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +160 -50
  37. package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +108 -18
  38. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +21 -36
  39. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +19 -7
  40. package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +63 -42
  41. package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +1 -1
  42. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +7 -2
  43. package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +141 -21
  44. package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +13 -10
  45. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +39 -36
  46. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +7 -1
  47. package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +148 -63
  48. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +101 -39
  49. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +73 -2
  50. package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +168 -98
  51. package/src/app/components/ddp-header/ddp-header.component.html +20 -6
  52. package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
  53. package/src/app/components/ddp-header/ddp-header.component.ts +104 -10
  54. package/src/app/components/image-viewer/image-viewer.component.scss +2 -2
  55. package/src/app/components/project-item/project-item.component.html +141 -118
  56. package/src/app/components/project-item/project-item.component.scss +173 -91
  57. package/src/app/components/project-item/project-item.component.ts +82 -28
  58. package/src/app/components/sidebar/sidebar.component.html +275 -0
  59. package/src/app/components/sidebar/sidebar.component.scss +79 -0
  60. package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
  61. package/src/app/components/sidebar/sidebar.component.ts +541 -0
  62. package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +137 -0
  63. package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +387 -0
  64. package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
  65. package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +530 -0
  66. package/src/app/pages/conversation-detail/conversation-detail.module.ts +9 -2
  67. package/src/app/pages/conversation-detail/conversation-detail.page.html +53 -49
  68. package/src/app/pages/conversation-detail/conversation-detail.page.scss +28 -0
  69. package/src/app/pages/conversation-detail/conversation-detail.page.ts +1258 -755
  70. package/src/app/pages/conversations-list/conversations-list.module.ts +2 -1
  71. package/src/app/pages/conversations-list/conversations-list.page.html +24 -11
  72. package/src/app/pages/conversations-list/conversations-list.page.scss +20 -1
  73. package/src/app/pages/conversations-list/conversations-list.page.ts +687 -420
  74. package/src/app/pages/create-canned-response/create-canned-response-routing.module.ts +17 -0
  75. package/src/app/pages/create-canned-response/create-canned-response.module.ts +30 -0
  76. package/src/app/pages/create-canned-response/create-canned-response.page.html +150 -0
  77. package/src/app/pages/create-canned-response/create-canned-response.page.scss +55 -0
  78. package/src/app/pages/create-canned-response/create-canned-response.page.spec.ts +24 -0
  79. package/src/app/pages/create-canned-response/create-canned-response.page.ts +319 -0
  80. package/src/app/pages/create-requester/create-requester-routing.module.ts +17 -0
  81. package/src/app/pages/create-requester/create-requester.module.ts +28 -0
  82. package/src/app/pages/create-requester/create-requester.page.html +67 -0
  83. package/src/app/pages/create-requester/create-requester.page.scss +30 -0
  84. package/src/app/pages/create-requester/create-requester.page.spec.ts +24 -0
  85. package/src/app/pages/create-requester/create-requester.page.ts +138 -0
  86. package/src/app/pages/create-ticket/create-ticket-routing.module.ts +17 -0
  87. package/src/app/pages/create-ticket/create-ticket.module.ts +28 -0
  88. package/src/app/pages/create-ticket/create-ticket.page.html +171 -0
  89. package/src/app/pages/create-ticket/create-ticket.page.scss +52 -0
  90. package/src/app/pages/create-ticket/create-ticket.page.spec.ts +24 -0
  91. package/src/app/pages/create-ticket/create-ticket.page.ts +432 -0
  92. package/src/app/pages/loader-preview/loader-preview.page.ts +226 -166
  93. package/src/app/pages/profile-info/profile-info.page.html +4 -4
  94. package/src/app/pages/profile-info/profile-info.page.scss +13 -2
  95. package/src/app/pages/profile-info/profile-info.page.ts +23 -21
  96. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +16 -11
  97. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +157 -63
  98. package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +51 -16
  99. package/src/app/services/app-config.ts +14 -14
  100. package/src/app/services/tiledesk/tiledesk.service.ts +209 -0
  101. package/src/app/services/websocket/websocket-js.ts +2 -2
  102. package/src/app/shared/shared.module.ts +21 -7
  103. package/src/app/utils/scrollbar-theme.directive.ts +58 -24
  104. package/src/assets/i18n/de.json +266 -0
  105. package/src/assets/i18n/en.json +85 -10
  106. package/src/assets/i18n/es.json +266 -0
  107. package/src/assets/i18n/fr.json +266 -0
  108. package/src/assets/i18n/it.json +104 -37
  109. package/src/assets/i18n/pt.json +266 -0
  110. package/src/assets/i18n/ru.json +266 -0
  111. package/src/assets/i18n/sr.json +266 -0
  112. package/src/assets/i18n/tr.json +266 -0
  113. package/src/assets/images/default-avatar-x-select.png +0 -0
  114. package/src/assets/images/language_flag/ar.png +0 -0
  115. package/src/assets/images/language_flag/bg.png +0 -0
  116. package/src/assets/images/language_flag/ca.png +0 -0
  117. package/src/assets/images/language_flag/cs.png +0 -0
  118. package/src/assets/images/language_flag/da.png +0 -0
  119. package/src/assets/images/language_flag/de.png +0 -0
  120. package/src/assets/images/language_flag/el.png +0 -0
  121. package/src/assets/images/language_flag/en.png +0 -0
  122. package/src/assets/images/language_flag/es.png +0 -0
  123. package/src/assets/images/language_flag/fa.png +0 -0
  124. package/src/assets/images/language_flag/fi.png +0 -0
  125. package/src/assets/images/language_flag/fr.png +0 -0
  126. package/src/assets/images/language_flag/he.png +0 -0
  127. package/src/assets/images/language_flag/hi.png +0 -0
  128. package/src/assets/images/language_flag/hr.png +0 -0
  129. package/src/assets/images/language_flag/hu.png +0 -0
  130. package/src/assets/images/language_flag/id.png +0 -0
  131. package/src/assets/images/language_flag/it.png +0 -0
  132. package/src/assets/images/language_flag/ja.png +0 -0
  133. package/src/assets/images/language_flag/ko.png +0 -0
  134. package/src/assets/images/language_flag/ml-IN.png +0 -0
  135. package/src/assets/images/language_flag/ne-NP.png +0 -0
  136. package/src/assets/images/language_flag/nl.png +0 -0
  137. package/src/assets/images/language_flag/no.png +0 -0
  138. package/src/assets/images/language_flag/pl.png +0 -0
  139. package/src/assets/images/language_flag/pt-BR.png +0 -0
  140. package/src/assets/images/language_flag/pt.png +0 -0
  141. package/src/assets/images/language_flag/ro.png +0 -0
  142. package/src/assets/images/language_flag/ru.png +0 -0
  143. package/src/assets/images/language_flag/sk.png +0 -0
  144. package/src/assets/images/language_flag/sl.png +0 -0
  145. package/src/assets/images/language_flag/sr.png +0 -0
  146. package/src/assets/images/language_flag/sv-SE.png +0 -0
  147. package/src/assets/images/language_flag/ta.png +0 -0
  148. package/src/assets/images/language_flag/th.png +0 -0
  149. package/src/assets/images/language_flag/tr.png +0 -0
  150. package/src/assets/images/language_flag/uk.png +0 -0
  151. package/src/assets/images/language_flag/vi.png +0 -0
  152. package/src/assets/images/language_flag/zh-CN.png +0 -0
  153. package/src/assets/images/language_flag/zh-TW.png +0 -0
  154. package/src/assets/images/no_image_user.png +0 -0
  155. package/src/assets/images/priority_icons/high.svg +3 -0
  156. package/src/assets/images/priority_icons/high_v2.svg +14 -0
  157. package/src/assets/images/priority_icons/low.svg +10 -0
  158. package/src/assets/images/priority_icons/low_v2.svg +14 -0
  159. package/src/assets/images/priority_icons/medium.svg +16 -0
  160. package/src/assets/images/priority_icons/medium_v2.svg +11 -0
  161. package/src/assets/images/priority_icons/urgent.svg +4 -0
  162. package/src/assets/images/priority_icons/urgent_v2.svg +16 -0
  163. package/src/assets/js/chat21client.js +16 -3
  164. package/src/assets/tiledesk-solo-logo.png +0 -0
  165. package/src/chat-config-mqtt.json +27 -17
  166. package/src/chat-config-pre-test.json +5 -1
  167. package/src/chat-config-pre.json +15 -3
  168. package/src/chat-config-template.json +6 -2
  169. package/src/chat-config.json +5 -1
  170. package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +61 -45
  171. package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +23 -0
  172. package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +1 -1
  173. package/src/chat21-core/utils/constants.ts +8 -1
  174. package/src/chat21-core/utils/utils-message.ts +19 -0
  175. package/src/chat21-core/utils/utils.ts +12 -1
  176. package/src/global.scss +408 -2
  177. package/src/index.html +7 -0
  178. package/publish_pre.sh +0 -33
  179. package/publish_prod.sh +0 -33
package/CHANGELOG.md CHANGED
@@ -1,9 +1,208 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ ### 3.0.62.2
4
+ - Fixed bug: if the teammate has the role of agent when switching from the dashboard to the chat and vice versa, the icons that only owners and admins have access to are displayed briefly in the left sidebar
5
+ - Adds the "Edit Profile" button and a link to the help center in the teammate details drawer
6
+
7
+ ### 3.0.62.1
8
+ - Allows agents to use the "Monitor" page
9
+
10
+ ### 3.0.62
11
+ - Deploys in production
12
+
13
+ ### 3.0.62-rc2
14
+ - Fixed bug: in the teammate drawer if the full name is too long it overlaps the email
15
+ - Fixed bug: in the teammate drawer if the email is too long it exceeds the width of the drawer
16
+
17
+ ### 3.0.62-rc1
18
+ - Change the URL of the environment variable "dashboardUrl" from absolute to relative
19
+
20
+ ### 3.0.61
21
+ - Deploys in production
22
+
23
+ ### 3.0.61-rc26
24
+ - Fixes the bug: the conversation detail is not opened if the URL contains round brackets
25
+
26
+ ### 3.0.61-rc25
27
+ - Handles the case that in the storage the value of the "last_project" key is undefined
28
+
29
+ ### 3.0.61-rc24
30
+ - Handles the "writeToButton" and the 'archivedButton' environment variables if are returned as a string
31
+ - Adds the "authPersistence" key in the chat-config-template.json, chat-config.json and env.sample files
32
+
33
+ ### 3.0.61-rc23
34
+ - Handles the "supportMode" environment variable if returned as a string (fixes the Docker image bugs: part of the conversation details go under the sidebar in mobile mode, the "add message as canned response" button is not displayed)
35
+ - Fixes the position of the emoji selection window pop up when the canned responses button is not visible
36
+
37
+ ### 3.0.61-rc22
38
+ - Minor improvements
39
+
40
+ ### 3.0.61-rc21
41
+ - Removes cordova-plugin-device
42
+
43
+ ### 3.0.61-rc20
44
+ - Updates dependencies
45
+
46
+ ### 3.0.61-rc19
47
+ - Merge branch 'features/new-sidebar'
48
+
49
+ ### 3.0.61-rc18
50
+ - Fix bugs: in the teammate settings drawer the logout button area is too large
51
+ - Fixed the bug: in the detail of the conversation the button messages are not aligned with the other messages
52
+
53
+ ### 3.0.61-rc16
54
+ - Does not allow teammates with agent role to access the "settings sidebar"
55
+
56
+ ### 3.0.61-rc15
57
+ - Increase the size of the emoji and remove the background color when it is sent or received without text
58
+ - Adds the ability to open sidebar menu items in a new tab by combining left mouse button + CMD keyboard key
59
+
60
+ ### 3.0.61-rc14
61
+ - Fixes the bug: the page to which the sidebar Settings menu item redirects is not correct for team members with agent role
62
+ - Fixes the bug: right clicking on the sidebar menu items doesn't show the context menu
63
+
64
+ ### 3.0.61-rc12
65
+ - Improves the alignment of left sidebar menu item icons
66
+ - Adds the ability to add a message as a canned response
67
+ - Hides the "Open canned responses" button if the "supportMode" environment variable is set to false
68
+ - Fixes the bug: "Settings" menu item in the left sidebar redirects to the "Canned responses" page instead of the "Widget" page
69
+ - Adds the ability to add a new canned response
70
+ - Fixes the bug: "Resolve conversation" from conversation detail header doesn't work on mobile
71
+ - Adds the ability to insert emoji in the message text
72
+ - Fixes the bug: on iOS mobile devices in the conversation detail the requester's avatar is not vertically aligned
73
+ - Fixes the bug: on mobile devices in the "info profile" modal window the version number is not visible because it is on a white background
74
+ - Fixes the bug: in the "Create canned response" modal window the "Add personalisation" menu does not always work
75
+ - Adds the chat version number to the teammate details drawer
76
+ - Makes the right sidebar "Settings" menu item visible to teammates with agent role
77
+
78
+ ### 3.0.61-rc11
79
+ - Fixed the bug: the "Resolve" button is displayed in the header of the details of the archived conversations
80
+ - Fixed the bug: in the header of the conversation detail the "Resolve" button remains active even after resolving the conversation
81
+ - Adds the ability to create a ticket
82
+ - Adds tooltips to the buttons available in the header of the conversation list
83
+ - Change the text of the "Conversations" menu item in the left sidebar to "Monitor"
84
+
85
+ ### 3.0.61-rc10
86
+ - Fixes the bug: the Analytics icon of the left sidebar is not displayed
87
+
88
+ ### 3.0.61-rc9
89
+ - Fixes the bug: the Apps icon of the left sidebar is not displayed
90
+
91
+ ### 3.0.61-rc8
92
+ - Changes the icon of the "Conversations" menu item to the left sidebar
93
+ - Adds Serbian language
94
+
95
+ ### 3.0.61-rc7
96
+ - Fixes the bug: while loading the app, the conversation list changes size and becomes wider
97
+ - Changes the style of the left sidebar
98
+ - Display in the "user data drawer" an avatar constructed with the initials of the logged in teammate if his profile picture is not available
99
+
100
+ ### 3.0.61-rc6
101
+ - Enhances the style of the sidebar tooltips
102
+ - Fixed bug: for direct conversations opening the "info sidebar" by clicking on the teammate avatar available in the conversation detail header does not work correctly
103
+ - Fixes the bug: not all chat strings are translated into the browser language or into the selected language
104
+ - Fixes the bug: Email is broken on dashes in user details sidebar
105
+ - Displays an alert when a teammate archives a conversation from a project they are no longer a part of
106
+ - Disable the "send message" textarea when a teammate replies to a support conversation of a project he is no longer a part of
107
+ - Adds, when an image is pasted in the "send message" text area, the text of the text area as a caption of the image preview modal window
108
+ - Adds, when an image is uploaded, the text of the "send message" text area as a caption of the image preview modal window
109
+
110
+ ### 3.0.61-rc5
111
+ - Fixes the bug: on mobile devices the chat content is shifted to the right
112
+ - Adds the ability to open and close the "user detail sidebar" by clicking on the avatar of the logged teammate present on the sidebar
113
+ - Fixes the bug: canned responses remain visible even if, after making a filter, the backslash is deleted
114
+ - Prevents the "open canned responses" button from inserting a backslash if another one exists before
115
+ - Hides the badge that displays the number of unassigned conversations if there are none
116
+ - Improves custom scrollbar displayed in the sidebar and in user detail sidebar
117
+ - Adds custom scrollbars to the conversation list and to the conversation detail
118
+
119
+ ### 3.0.61-rc4
120
+ - Hides the item showing unassigned conversations in the list of archived conversations
121
+ - Adds in the list of conversations to the "archive" button the tooltip "Resolve" if the conversation is of type "support" and the tooltip "Archive" if the conversation is of type "direct" or "group"
122
+ - Changes all occurrences of the "teammatesButton" environment variable to "writeToButton"
123
+ - Fixes the bug: if the sidebar is visible and the window width is less than 768px, the content of the conversation detail is not completely visible
124
+ - Moves for conversations of type "support" the "Resolve conversation" button from the dropdown menu to the header of the conversation detail
125
+
126
+ ### 3.0.61-rc3
127
+ - Replaces console.log with custom loggers
128
+ - Fixes the bug: the info support sidebar is no more displayed
129
+
130
+ ### 3.0.61-rc2
131
+ - Fixes the bug: Profile picture in the sidebar does not update when logged in with another user after logging out
132
+ - Bug Fix: in the "info-profile" page avoid the "uid of undefined" error
133
+ - Adds the "user details" sidebar
134
+ - Adds the languages flags images
135
+ - Allows to close the "user details" sidebar by clicking outside it
136
+ - Adds the tooltips to the links of the sidebar
137
+ - 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
138
+ - Hides in the item showing unassigned conversations the button to pin a project if the app is not on a mobile device
139
+ - Gets in the sidebar the feature tokens from the environment variables
140
+ - Install the "Roboto" font
141
+ - Changes font priority in global.scss: replace "Helvetica Neue" font with "Roboto" font
142
+ - Imports the "Poppins" font family into index.html
143
+ - Adds the "Resolve" tooltip to the "archive" button available in the conversation list
144
+ - 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
145
+ - Adds "teammatesButton" and "archivedButton" variables to the environments
146
+ - Adds the "TEAMMATES_BUTTON" and the "ARCHIVED_BUTTON" variables to the env.sample file
147
+ - Adds the "teammatesButton" and the "archivedButton" variables to the "chat-config-template.json" file and to "the chat-config.json" file
148
+ - Updates the section "Configuration" of the "README.md" file with the new variables "teammatesButton" and the "archivedButton"
149
+
150
+ ### 3.0.61-rc1
151
+ - Adds a sidebar that allows navigation to the dashboard
152
+
153
+ ### 3.0.60
154
+ - Deploys in production
155
+
156
+ ### 3.0.60-rc9
157
+ - Adds the message "All conversations served" in the conversation details section that appears when there are no active conversations
158
+ - 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
159
+
160
+ ### 3.0.60-rc8
161
+ - Fixes the bug: "info" messages sent by "SYSTEM" are not translated
162
+ - Adds the Portuguese language
163
+ - Adds the French language
164
+ - Adds the Russian language
165
+ - Adds the Turkish language
166
+
167
+ ### 3.0.60-rc7
168
+ - Adds German language
169
+ - Adds a method that translates chat texts based on the language of the browser settings if no preferred language is selected in the dashboard or based on the preferred language (ignoring the browser language)
170
+ - Manages the language used for translations from the "moment" library based on the language of the browser settings if no preferred language has been selected in the dashboard or on the preferred language selected (ignoring the browser language)
171
+ - Adds the ability to manage the visibility of canned responses in env.sample, chat-config-tempalte.json and chat-config.json
172
+ - Fixes the bug: in the 'item' that displays the pinned project and the number of the not assigned conversions the tooltip is not correctly displayed
173
+
174
+ ### 3.0.60-rc6
175
+ - Fixes the bug: push notifications are initialized even if the "pushEngine" configuration variable is set to "none"
176
+ - Adds spanish language
177
+
178
+ ### 3.0.60-rc5
179
+ - Change the icon and link of the "pin button" in the item at the top of the conversation list (now opens the list of projects and not the list of new conversations)
180
+ - Add a tooltip on the switch button to change the available/unavailable status
181
+ - Adds a link to the to the new conversations at the icon that display the number of new conversations
182
+
183
+ ### 3.0.60-rc4
184
+ - Translates the canned response displayed when there are not canned responses
185
+
186
+ ### 3.0.60-rc3
187
+ - Enhances the item at the top of the conversation list that displays the number of new conversations of a selected project
188
+ - Fixes the bug: the loading spinner is sometimes not displayed when loading the list of unassigned conversations
189
+ - Displays as canned response "Test" when no canned responses are available
190
+ - Adds the cursor to the "Send message" textarea after the "Canned responses" button has been clicked
191
+
192
+ ### 3.0.60-rc2
193
+ - Fixes the bug: in AppConfigProvider the "wsUrl" is incorrect (window.location.port is missing)
194
+
195
+ ### 3.0.60-rc1
196
+ - Adds the ability to view canned responses by clicking on the button with the "flash" icon located to the left of the "Enter a message" text area
197
+
198
+ ### 3.0.59.2
199
+ - Fixes the bug: when the agent refreshes the chat page and the chat is in mobile mode, the badge with the number of unassigned conversations does not work
200
+
3
201
  ### 3.0.59.1
4
202
  - Fixes the bug: "Unable to read uid of undefined" error occurs when agent logs out
5
203
  - Fixes the bug: When the agent logs into the chat and the chat is in mobile mode, no conversations are displayed
6
- - Conditions the opening of the websocket to retrieve the number of conversations not assigned to the "supportMode" property set to true
204
+ - Fixes the bug: the websocket is initialized even if the supportMode property is set to false
205
+ - Fixes the bug: when the agent refreshes the chat page and the chat is in mobile mode, the badge with the number of unassigned conversations does not work
7
206
 
8
207
  ### 3.0.59
9
208
  - Deploys in production
@@ -105,6 +304,9 @@
105
304
  - Fixes the bug: in the avatar-profile component the properties 'avatarUrl', 'color' and 'avatar' are private and accessible only within the class
106
305
  - Fixes the bug: on ios platforms the back button in the conversation details header overlaps the avatar
107
306
 
307
+ ### 3.0.58.1
308
+ - Fix the bug: if the "chatEngine" property value is set to "mqtt "the login modal window does not disappear even if the agent is logged in
309
+
108
310
  ### 3.0.58
109
311
  - Changes the logic with which the 'online' / 'offline' event is published (done before by the onAuthStateChanged() method)
110
312
  - Removes the setTimeout set for displaying the login window