@chat21/chat21-ionic 3.0.61 → 3.0.63
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 +39 -0
- package/README.md +6 -2
- package/deploy_prod.sh +1 -1
- package/package.json +2 -1
- package/src/app/app.component.ts +103 -31
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html +2 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts +2 -1
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +33 -21
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +34 -12
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +2 -1
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +1 -1
- package/src/app/chatlib/conversation-detail/message/image/image.component.ts +5 -3
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss +1 -1
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +1 -1
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +4 -4
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +1 -1
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +3 -3
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +3 -3
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +10 -55
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +8 -2
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +2 -0
- package/src/app/components/image-viewer/image-viewer.component.ts +28 -10
- package/src/app/components/project-item/project-item.component.ts +6 -30
- package/src/app/components/sidebar/sidebar.component.html +2 -2
- package/src/app/components/sidebar/sidebar.component.ts +49 -83
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +17 -1
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +62 -8
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +81 -111
- package/src/app/pages/authentication/login/login.page.ts +20 -1
- package/src/app/pages/conversation-detail/conversation-detail.page.html +40 -19
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +15 -6
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +179 -244
- package/src/app/services/nav-proxy.service.ts +15 -13
- package/src/assets/i18n/de.json +2 -1
- package/src/assets/i18n/en.json +2 -1
- package/src/assets/i18n/es.json +2 -1
- package/src/assets/i18n/fr.json +2 -1
- package/src/assets/i18n/it.json +2 -1
- package/src/assets/i18n/pt.json +2 -1
- package/src/assets/i18n/ru.json +2 -1
- package/src/assets/i18n/sr.json +2 -1
- package/src/assets/i18n/tr.json +2 -1
- package/src/assets/js/chat21client.js +1 -1
- package/src/chat-config-pre-test.json +3 -2
- package/src/chat-config-pre.json +15 -3
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +2 -3
- package/src/chat21-core/providers/logger/customLogger.ts +2 -10
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +1 -1
- package/src/chat21-core/utils/utils-message.ts +102 -85
- package/src/variables.scss +4 -1
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
// display: inline-block;
|
|
198
198
|
// }
|
|
199
199
|
// .message {
|
|
200
|
-
// .
|
|
200
|
+
// .bubble-message {
|
|
201
201
|
// position: relative;
|
|
202
202
|
// border-radius: 15px;
|
|
203
203
|
// font-size: 15px;
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
// &.message-other {
|
|
223
223
|
// width: 100%;
|
|
224
224
|
// margin-top: 4px;
|
|
225
|
-
// .
|
|
225
|
+
// .bubble-message {
|
|
226
226
|
// background-color: var(--light-gray);
|
|
227
227
|
// color: var(--black);
|
|
228
228
|
// margin-left: 24px;
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
// }
|
|
245
245
|
// &.first-message {
|
|
246
246
|
// margin-top: 10px;
|
|
247
|
-
// .
|
|
247
|
+
// .bubble-message {
|
|
248
248
|
// border-top-left-radius: 12px;
|
|
249
249
|
// border-bottom-left-radius: 0px;
|
|
250
250
|
// }
|
|
@@ -256,8 +256,8 @@
|
|
|
256
256
|
// &.message-mine {
|
|
257
257
|
// width: 100%;
|
|
258
258
|
// margin-top: 4px;
|
|
259
|
-
// .
|
|
260
|
-
// background-color: var(--
|
|
259
|
+
// .bubble-message {
|
|
260
|
+
// background-color: var(--bubble-blue);
|
|
261
261
|
// color: white;
|
|
262
262
|
// margin-right: 24px;
|
|
263
263
|
// float: right;
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
// }
|
|
267
267
|
// &.first-message {
|
|
268
268
|
// margin-top: 10px;
|
|
269
|
-
// .
|
|
269
|
+
// .bubble-message {
|
|
270
270
|
// border-top-right-radius: 12px;
|
|
271
271
|
// border-bottom-right-radius: 0px;
|
|
272
272
|
// }
|
|
@@ -385,6 +385,15 @@ ion-content {
|
|
|
385
385
|
}
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
+
.chat-area-apps-sidebar-wide {
|
|
389
|
+
min-width: calc(100% - 600px) !important;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.info-convs-apps-sidebar-wide {
|
|
393
|
+
max-width: 600px !important;
|
|
394
|
+
min-width: 600px !important;
|
|
395
|
+
}
|
|
396
|
+
|
|
388
397
|
#buttonScrollToBottom {
|
|
389
398
|
position: absolute;
|
|
390
399
|
right: 0;
|