@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.
- package/CHANGELOG.md +35 -1
- package/LICENSE +661 -21
- package/README.md +2 -0
- package/angular.json +2 -0
- package/env.sample +3 -1
- package/package.json +5 -1
- package/src/app/app.component.html +11 -2
- package/src/app/app.component.scss +13 -1
- package/src/app/app.component.ts +32 -9
- package/src/app/app.module.ts +2 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +2 -2
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +22 -1
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +2 -3
- package/src/app/components/ddp-header/ddp-header.component.html +14 -7
- package/src/app/components/ddp-header/ddp-header.component.scss +4 -0
- package/src/app/components/ddp-header/ddp-header.component.ts +21 -2
- package/src/app/components/project-item/project-item.component.html +7 -6
- package/src/app/components/project-item/project-item.component.scss +35 -15
- package/src/app/components/project-item/project-item.component.ts +15 -2
- package/src/app/components/sidebar/sidebar.component.html +210 -0
- package/src/app/components/sidebar/sidebar.component.scss +11 -0
- package/src/app/components/sidebar/sidebar.component.spec.ts +24 -0
- package/src/app/components/sidebar/sidebar.component.ts +400 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +102 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +310 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.spec.ts +24 -0
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +421 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.html +34 -46
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +54 -20
- package/src/app/pages/conversations-list/conversations-list.page.html +11 -7
- package/src/app/pages/conversations-list/conversations-list.page.ts +33 -8
- package/src/app/pages/profile-info/profile-info.page.html +2 -2
- package/src/app/pages/profile-info/profile-info.page.ts +23 -21
- package/src/app/shared/shared.module.ts +13 -0
- package/src/assets/i18n/de.json +30 -12
- package/src/assets/i18n/en.json +22 -4
- package/src/assets/i18n/es.json +22 -4
- package/src/assets/i18n/fr.json +22 -4
- package/src/assets/i18n/it.json +22 -4
- package/src/assets/i18n/pt.json +23 -5
- package/src/assets/i18n/ru.json +23 -5
- package/src/assets/i18n/tr.json +24 -5
- package/src/assets/images/language_flag/ar.png +0 -0
- package/src/assets/images/language_flag/bg.png +0 -0
- package/src/assets/images/language_flag/ca.png +0 -0
- package/src/assets/images/language_flag/cs.png +0 -0
- package/src/assets/images/language_flag/da.png +0 -0
- package/src/assets/images/language_flag/de.png +0 -0
- package/src/assets/images/language_flag/el.png +0 -0
- package/src/assets/images/language_flag/en.png +0 -0
- package/src/assets/images/language_flag/es.png +0 -0
- package/src/assets/images/language_flag/fa.png +0 -0
- package/src/assets/images/language_flag/fi.png +0 -0
- package/src/assets/images/language_flag/fr.png +0 -0
- package/src/assets/images/language_flag/he.png +0 -0
- package/src/assets/images/language_flag/hi.png +0 -0
- package/src/assets/images/language_flag/hu.png +0 -0
- package/src/assets/images/language_flag/id.png +0 -0
- package/src/assets/images/language_flag/it.png +0 -0
- package/src/assets/images/language_flag/ja.png +0 -0
- package/src/assets/images/language_flag/ko.png +0 -0
- package/src/assets/images/language_flag/ml-IN.png +0 -0
- package/src/assets/images/language_flag/ne-NP.png +0 -0
- package/src/assets/images/language_flag/nl.png +0 -0
- package/src/assets/images/language_flag/no.png +0 -0
- package/src/assets/images/language_flag/pl.png +0 -0
- package/src/assets/images/language_flag/pt-BR.png +0 -0
- package/src/assets/images/language_flag/pt.png +0 -0
- package/src/assets/images/language_flag/ro.png +0 -0
- package/src/assets/images/language_flag/ru.png +0 -0
- package/src/assets/images/language_flag/sk.png +0 -0
- package/src/assets/images/language_flag/sl.png +0 -0
- package/src/assets/images/language_flag/sv-SE.png +0 -0
- package/src/assets/images/language_flag/ta.png +0 -0
- package/src/assets/images/language_flag/th.png +0 -0
- package/src/assets/images/language_flag/tr.png +0 -0
- package/src/assets/images/language_flag/uk.png +0 -0
- package/src/assets/images/language_flag/vi.png +0 -0
- package/src/assets/images/language_flag/zh-CN.png +0 -0
- package/src/assets/images/language_flag/zh-TW.png +0 -0
- package/src/assets/images/no_image_user.png +0 -0
- package/src/assets/tiledesk-solo-logo.png +0 -0
- package/src/chat-config-pre-test.json +3 -1
- package/src/chat-config-template.json +3 -1
- package/src/chat-config.json +4 -2
- package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +1 -1
- package/src/global.scss +451 -3
- 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
|
|
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
|