@chat21/chat21-ionic 3.4.14-rc1 → 3.4.14-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
@@ -1,5 +1,8 @@
1
1
  # chat21-ionic ver 3.0
2
2
 
3
+ # 3.4.14-rc2
4
+ - **changed**: minor improvement sendemail modal textarea
5
+
3
6
  # 3.4.14-rc1
4
7
  - **added**: moved copilot from message-text-area to header-conversaion-detail
5
8
  - **changed**: 'open/close conversation info' icon
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.14-rc1",
4
+ "version": "3.4.14-rc2",
5
5
  "license": "MIT License",
6
6
  "homepage": "https://tiledesk.com/",
7
7
  "repository": {
@@ -28,7 +28,7 @@
28
28
  <ion-textarea
29
29
  formControlName="text"
30
30
  autosize="false"
31
- auto-grow="true"
31
+ autoGrow="true"
32
32
  autofocus="true"
33
33
  rows="2"
34
34
  placeholder="{{translationMap?.get('EMAIL.MESSAGE_PLACEHOLDER')}}">
@@ -26,12 +26,16 @@ ion-content{
26
26
  }
27
27
  .field-wrapper-email{
28
28
  height: 75%;
29
+ display: flex;
30
+ flex-direction: column;
29
31
  ion-textarea{
30
32
  min-height: calc(100% - 70px);
31
33
  max-height: calc(100% - 70px);
32
34
 
33
- &::ng-deep textarea {
34
- height: 100% !important;
35
+ &::ng-deep {
36
+ textarea {
37
+ height: 100% !important;
38
+ }
35
39
  }
36
40
  }
37
41
  }