@chat21/chat21-ionic 3.4.23-rc1 → 3.4.23-rc2

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
@@ -8,6 +8,9 @@
8
8
  ### **Copyrigth**:
9
9
  *Tiledesk SRL*
10
10
 
11
+ # 3.4.23-rc2
12
+ - **bug-fixed**: cannot upload xlsx files
13
+
11
14
  # 3.4.23-rc1
12
15
  - **bug-fixed**: cannot click to change user status
13
16
  - **bug-fixed**: tooltip not hided alfter click on it
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-ionic",
3
3
  "author": "Tiledesk SRL",
4
- "version": "3.4.23-rc1",
4
+ "version": "3.4.23-rc2",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -903,6 +903,8 @@ function getMimeTypeFromExtension(extension: string): string {
903
903
  '.txt': 'text/plain',
904
904
  '.doc': 'application/msword',
905
905
  '.docx': 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
906
+ '.xlsx': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
907
+ '.xls': 'application/vnd.ms-excel',
906
908
  '.wav' : 'audio/wav'
907
909
  // Aggiungi altri tipi MIME se necessario
908
910
  };