@chat21/chat21-ionic 3.0.5-9.2 → 3.0.6-2.3

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