@chat21/chat21-ionic 3.0.91-rc.1 → 3.0.91

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,5 +1,7 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ ### 3.0.91 in PROD
4
+
3
5
  ### 3.0.91-rc.1
4
6
  - added: pin-unpin canned (starting)
5
7
  - bug-fixed: undefined in conversationsHandlerService firebase env with TOUCHING_OPERATOR info message
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-ionic",
3
3
  "author": "Tiledesk SRL",
4
- "version": "3.0.91-rc.1",
4
+ "version": "3.0.91",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -57,7 +57,7 @@
57
57
 
58
58
 
59
59
  <!-- [tooltip]="timeTooltipLeft" [options]="tooltipOptions" placement="left" content-type="template" (click)="handleTooltipEvents($event)" -->
60
- <div *ngIf="message?.text">
60
+ <div *ngIf="message?.text" style="display: flex; margin: 0px 0px 0px 0px;">
61
61
 
62
62
  <!-- <ng-template #timeTooltipLeft>
63
63
  <span>{{message.timestamp | amTimeAgo}} ({{message.timestamp | amLocal | amDateFormat: 'L HH:mm:ss'}})</span>
@@ -7,6 +7,10 @@
7
7
  padding:8px;
8
8
  margin-block-start: -1em!important;
9
9
  margin-block-end: -1em!important;
10
+
11
+ a {
12
+ word-break: break-all
13
+ }
10
14
  }
11
15
  }
12
16
 
@@ -23,4 +27,8 @@ p {
23
27
  overflow: hidden;
24
28
  }
25
29
 
30
+ p ::ng-deep a {
31
+ word-break: break-all
32
+ }
33
+
26
34