@chat21/chat21-web-widget 5.0.91 → 5.0.93

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
@@ -6,6 +6,12 @@
6
6
  ### **Copyrigth**:
7
7
  *Tiledesk SRL*
8
8
 
9
+ # 5.0.93
10
+ - **changed**: disabled sound on chatbot-panel.html
11
+
12
+ # 5.0.92
13
+ - **added**: displayOnDesktop and displayOnMobile parameters in test mode with true value
14
+
9
15
  # 5.0.91
10
16
 
11
17
  # 5.0.91-rc4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-web-widget",
3
3
  "author": "Tiledesk SRL",
4
- "version": "5.0.91",
4
+ "version": "5.0.93",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.tiledesk.com",
7
7
  "repository": {
@@ -292,7 +292,7 @@ export class ConversationFooterComponent implements OnInit, OnChanges {
292
292
  }else if ((metadata.type.startsWith('image') && metadata.type.includes('svg')) || !metadata.type.startsWith('image')){
293
293
  /** CASE FILE */
294
294
  type_message = TYPE_MSG_FILE
295
- message = message + '\n' + messageText
295
+ message = message + '\n' + messageText
296
296
  } else if (!metadata.type.startsWith('image')){
297
297
  /** CASE FILE */
298
298
  type_message = TYPE_MSG_FILE
@@ -156,6 +156,8 @@
156
156
  window.tiledeskSettings = {
157
157
  marginX: "100px",
158
158
  marginY: "50px",
159
+ displayOnDesktop: true,
160
+ displayOnMobile: true
159
161
  // calloutTimer: 1
160
162
  // autostart: false
161
163
 
@@ -468,7 +468,10 @@
468
468
  hideHeaderCloseButton: true,
469
469
  hideCloseConversationOptionMenu: true,
470
470
  isLogEnabled:true,
471
- customAttributes: { sound: false }
471
+ customAttributes: { sound: false },
472
+ displayOnDesktop: true,
473
+ displayOnMobile: true,
474
+ soundEnabled: false
472
475
  // autostart: false
473
476
 
474
477
  };
@@ -479,6 +479,8 @@
479
479
  window.tiledeskSettings = {
480
480
  marginX: "100px",
481
481
  marginY: "50px",
482
+ displayOnDesktop: true,
483
+ displayOnMobile: true
482
484
  // calloutTimer: 1,
483
485
  };
484
486
 
@@ -257,6 +257,8 @@
257
257
  window.tiledeskSettings = {
258
258
  marginX: "100px",
259
259
  marginY: "50px",
260
+ displayOnDesktop: true,
261
+ displayOnMobile: true
260
262
  // calloutTimer: 1
261
263
  // autostart: false
262
264