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

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