@chat21/chat21-ionic 3.0.71-rc.1 → 3.0.71
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
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
# chat21-ionic ver 3.0
|
|
2
2
|
|
|
3
|
+
### 3.0.71 in PROD
|
|
4
|
+
|
|
3
5
|
### 3.0.71-rc.1
|
|
4
6
|
- changed: native downloadURL on new file uploaded
|
|
5
7
|
- added: update lead info in conversation-detail and conversation-header when agent updates
|
|
6
8
|
- added: private message UI when agent receive a private message from other agents
|
|
9
|
+
- removed: scroll-bar from conversation-list page
|
|
7
10
|
|
|
8
11
|
### 3.0.70 in PROD
|
|
9
12
|
|
package/package.json
CHANGED
|
@@ -16,6 +16,17 @@ export class InfoMessageComponent implements OnInit, OnChanges {
|
|
|
16
16
|
|
|
17
17
|
public message_text: string
|
|
18
18
|
private logger: LoggerService = LoggerInstance.getInstance()
|
|
19
|
+
|
|
20
|
+
tooltipOptions = {
|
|
21
|
+
'show-delay': 500,
|
|
22
|
+
'tooltip-class': 'chat-tooltip',
|
|
23
|
+
'theme': 'light',
|
|
24
|
+
'shadow': false,
|
|
25
|
+
'hide-delay-mobile': 0,
|
|
26
|
+
'hideDelayAfterClick': 3000,
|
|
27
|
+
'hide-delay': 200
|
|
28
|
+
};
|
|
29
|
+
|
|
19
30
|
constructor() { }
|
|
20
31
|
|
|
21
32
|
ngOnInit() {
|